blob: 3934941565fdb1d894597bfa401e5dcfc2acd2d4 [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 Moolenaar7fd73202010-07-25 16:58:46 +020062#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
63static 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 Moolenaarf9e687e2016-09-04 21:33:09 +0200461# ifdef FEAT_WINDOWS
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100462 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200463 win_T *the_curwin = curwin;
464 tabpage_T *the_curtab = curtab;
465# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466#endif
467 int unload_buf = (action != 0);
468 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
469 int wipe_buf = (action == DOBUF_WIPE);
470
Bram Moolenaar94053a52017-08-01 21:44:33 +0200471#ifdef FEAT_TERMINAL
472 if (bt_terminal(buf))
473 {
474 if (term_job_running(buf->b_term))
475 {
476 if (wipe_buf)
477 /* Wiping out a terminal buffer kills the job. */
478 free_terminal(buf);
479 else
480 {
481 /* The job keeps running, hide the buffer. */
482 del_buf = FALSE;
483 unload_buf = FALSE;
484 }
485 }
486 else
487 {
488 /* A terminal buffer is wiped out if the job has finished. */
489 del_buf = TRUE;
490 unload_buf = TRUE;
491 wipe_buf = TRUE;
492 }
493 }
494 else
495#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 /*
497 * Force unloading or deleting when 'bufhidden' says so.
498 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
499 * "hide" (otherwise we could never free or delete a buffer).
500 */
501 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
502 {
503 del_buf = TRUE;
504 unload_buf = TRUE;
505 }
506 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
507 {
508 del_buf = TRUE;
509 unload_buf = TRUE;
510 wipe_buf = TRUE;
511 }
512 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
513 unload_buf = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514
Bram Moolenaar30180b82016-09-04 19:57:56 +0200515#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200516 /* Disallow deleting the buffer when it is locked (already being closed or
517 * halfway a command that relies on it). Unloading is allowed. */
518 if (buf->b_locked > 0 && (del_buf || wipe_buf))
519 {
520 EMSG(_("E937: Attempt to delete a buffer that is in use"));
521 return;
522 }
Bram Moolenaar30180b82016-09-04 19:57:56 +0200523#endif
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200524
Bram Moolenaar3be85852014-06-12 14:01:31 +0200525 if (win != NULL
526#ifdef FEAT_WINDOWS
Bram Moolenaare59215c2016-08-14 19:08:45 +0200527 && win_valid_any_tab(win) /* in case autocommands closed the window */
Bram Moolenaar3be85852014-06-12 14:01:31 +0200528#endif
529 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 {
531 /* Set b_last_cursor when closing the last window for the buffer.
532 * Remember the last cursor position and window options of the buffer.
533 * This used to be only for the current window, but then options like
534 * 'foldmethod' may be lost with a ":only" command. */
535 if (buf->b_nwindows == 1)
536 set_last_cursor(win);
537 buflist_setfpos(buf, win,
538 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
539 win->w_cursor.col, TRUE);
540 }
541
542#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200543 set_bufref(&bufref, buf);
544
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 /* When the buffer is no longer in a window, trigger BufWinLeave */
546 if (buf->b_nwindows == 1)
547 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200548 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200549 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
550 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200551 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100552 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200553 /* Autocommands deleted the buffer. */
554aucmd_abort:
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100555 EMSG(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100557 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200558 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200559 if (abort_if_last && one_window())
560 /* Autocommands made this the only window. */
561 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562
563 /* When the buffer becomes hidden, but is not unloaded, trigger
564 * BufHidden */
565 if (!unload_buf)
566 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200567 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200568 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
569 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200570 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200571 /* Autocommands deleted the buffer. */
572 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200573 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200574 if (abort_if_last && one_window())
575 /* Autocommands made this the only window. */
576 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 }
578# ifdef FEAT_EVAL
579 if (aborting()) /* autocmds may abort script processing */
580 return;
581# endif
582 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200583
584# ifdef FEAT_WINDOWS
585 /* If the buffer was in curwin and the window has changed, go back to that
586 * window, if it still exists. This avoids that ":edit x" triggering a
587 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
588 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
589 {
590 block_autocmds();
591 goto_tabpage_win(the_curtab, the_curwin);
592 unblock_autocmds();
593 }
594# endif
595
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 nwindows = buf->b_nwindows;
597#endif
598
599 /* decrease the link count from windows (unless not in any window) */
600 if (buf->b_nwindows > 0)
601 --buf->b_nwindows;
602
603 /* Return when a window is displaying the buffer or when it's not
604 * unloaded. */
605 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607
608 /* Always remove the buffer when there is no file name. */
609 if (buf->b_ffname == NULL)
610 del_buf = TRUE;
611
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200612 /* When closing the current buffer stop Visual mode before freeing
613 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200614 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200615#if defined(EXITFREE)
616 && !entered_free_all_mem
617#endif
618 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200619 end_visual_mode();
620
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 /*
622 * Free all things allocated for this buffer.
623 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
624 */
625#ifdef FEAT_AUTOCMD
626 /* Remember if we are closing the current buffer. Restore the number of
627 * windows, so that autocommands in buf_freeall() don't get confused. */
628 is_curbuf = (buf == curbuf);
629 buf->b_nwindows = nwindows;
630#endif
631
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200632 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633
634#ifdef FEAT_AUTOCMD
635 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200636 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637 return;
638# ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000639 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 return;
641# endif
642
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 /*
644 * It's possible that autocommands change curbuf to the one being deleted.
645 * This might cause the previous curbuf to be deleted unexpectedly. But
646 * in some cases it's OK to delete the curbuf, because a new one is
647 * obtained anyway. Therefore only return if curbuf changed to the
648 * deleted buffer.
649 */
650 if (buf == curbuf && !is_curbuf)
651 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200652
653 if (
654#ifdef FEAT_WINDOWS
Bram Moolenaare59215c2016-08-14 19:08:45 +0200655 win_valid_any_tab(win) &&
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200656#else
657 win != NULL &&
658#endif
659 win->w_buffer == buf)
660 win->w_buffer = NULL; /* make sure we don't use the buffer now */
661
662 /* Autocommands may have opened or closed windows for this buffer.
663 * Decrement the count for the close we do here. */
664 if (buf->b_nwindows > 0)
665 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666#endif
667
Bram Moolenaar498efdb2006-09-05 14:31:54 +0000668 /* Change directories when the 'acd' option is set. */
669 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670
671 /*
672 * Remove the buffer from the list.
673 */
674 if (wipe_buf)
675 {
676#ifdef FEAT_SUN_WORKSHOP
677 if (usingSunWorkShop)
678 workshop_file_closed_lineno((char *)buf->b_ffname,
679 (int)buf->b_last_cursor.lnum);
680#endif
681 vim_free(buf->b_ffname);
682 vim_free(buf->b_sfname);
683 if (buf->b_prev == NULL)
684 firstbuf = buf->b_next;
685 else
686 buf->b_prev->b_next = buf->b_next;
687 if (buf->b_next == NULL)
688 lastbuf = buf->b_prev;
689 else
690 buf->b_next->b_prev = buf->b_prev;
691 free_buffer(buf);
692 }
693 else
694 {
695 if (del_buf)
696 {
697 /* Free all internal variables and reset option values, to make
698 * ":bdel" compatible with Vim 5.7. */
699 free_buffer_stuff(buf, TRUE);
700
701 /* Make it look like a new buffer. */
702 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
703
704 /* Init the options when loaded again. */
705 buf->b_p_initialized = FALSE;
706 }
707 buf_clear_file(buf);
708 if (del_buf)
709 buf->b_p_bl = FALSE;
710 }
711}
712
713/*
714 * Make buffer not contain a file.
715 */
716 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100717buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718{
719 buf->b_ml.ml_line_count = 1;
720 unchanged(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 buf->b_p_eol = TRUE;
723 buf->b_start_eol = TRUE;
724#ifdef FEAT_MBYTE
725 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000726 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727#endif
728 buf->b_ml.ml_mfp = NULL;
729 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
730#ifdef FEAT_NETBEANS_INTG
731 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732#endif
733}
734
735/*
736 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200737 * the file. Careful: get here with "curwin" NULL when exiting.
738 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200739 * BFA_DEL buffer is going to be deleted
740 * BFA_WIPE buffer is going to be wiped out
741 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100744buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745{
746#ifdef FEAT_AUTOCMD
747 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200748 bufref_T bufref;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200749# ifdef FEAT_WINDOWS
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200750 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200751 win_T *the_curwin = curwin;
752 tabpage_T *the_curtab = curtab;
753# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
Bram Moolenaar5a497892016-09-03 16:29:04 +0200755 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200756 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200757 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200758 if (buf->b_ml.ml_mfp != NULL)
759 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200760 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
761 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200762 && !bufref_valid(&bufref))
763 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200764 return;
765 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200766 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200768 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
769 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200770 && !bufref_valid(&bufref))
771 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 return;
773 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200774 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200776 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
777 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200778 && !bufref_valid(&bufref))
779 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 return;
781 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200782 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200783
784# ifdef FEAT_WINDOWS
785 /* If the buffer was in curwin and the window has changed, go back to that
786 * window, if it still exists. This avoids that ":edit x" triggering a
787 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
788 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
789 {
790 block_autocmds();
791 goto_tabpage_win(the_curtab, the_curwin);
792 unblock_autocmds();
793 }
794# endif
795
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000797 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 return;
799# endif
800
801 /*
802 * It's possible that autocommands change curbuf to the one being deleted.
803 * This might cause curbuf to be deleted unexpectedly. But in some cases
804 * it's OK to delete the curbuf, because a new one is obtained anyway.
805 * Therefore only return if curbuf changed to the deleted buffer.
806 */
807 if (buf == curbuf && !is_curbuf)
808 return;
809#endif
810#ifdef FEAT_DIFF
811 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
812#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200813#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100814 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200815 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100816 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200817#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000818
819#ifdef FEAT_FOLDING
820 /* No folds in an empty buffer. */
821# ifdef FEAT_WINDOWS
822 {
823 win_T *win;
824 tabpage_T *tp;
825
826 FOR_ALL_TAB_WINDOWS(tp, win)
827 if (win->w_buffer == buf)
828 clearFolding(win);
829 }
830# else
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200831 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000832 clearFolding(curwin);
833# endif
834#endif
835
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836#ifdef FEAT_TCL
837 tcl_buffer_free(buf);
838#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 ml_close(buf, TRUE); /* close and delete the memline/memfile */
840 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200841 if ((flags & BFA_KEEP_UNDO) == 0)
842 {
843 u_blockfree(buf); /* free the memory allocated for undo */
844 u_clearall(buf); /* reset all undo information */
845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200847 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000849 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850}
851
852/*
853 * Free a buffer structure and the things it contains related to the buffer
854 * itself (not the file, that must have been done already).
855 */
856 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100857free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200859 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200861#ifdef FEAT_EVAL
862 unref_var_dict(buf->b_vars);
863#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200864#ifdef FEAT_LUA
865 lua_buffer_free(buf);
866#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000867#ifdef FEAT_MZSCHEME
868 mzscheme_buffer_free(buf);
869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870#ifdef FEAT_PERL
871 perl_buf_free(buf);
872#endif
873#ifdef FEAT_PYTHON
874 python_buffer_free(buf);
875#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200876#ifdef FEAT_PYTHON3
877 python3_buffer_free(buf);
878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879#ifdef FEAT_RUBY
880 ruby_buffer_free(buf);
881#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200882#ifdef FEAT_JOB_CHANNEL
883 channel_buffer_free(buf);
884#endif
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200885#ifdef FEAT_TERMINAL
Bram Moolenaard85f2712017-07-28 21:51:57 +0200886 free_terminal(buf);
Bram Moolenaar96ca27a2017-07-17 23:20:24 +0200887#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200888
889 buf_hashtab_remove(buf);
890
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200891#ifdef FEAT_AUTOCMD
892 aubuflocal_remove(buf);
893
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200894 if (autocmd_busy)
895 {
896 /* Do not free the buffer structure while autocommands are executing,
897 * it's still needed. Free it when autocmd_busy is reset. */
898 buf->b_next = au_pending_free_buf;
899 au_pending_free_buf = buf;
900 }
901 else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000902#endif
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200903 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904}
905
906/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100907 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100908 */
909 static void
910init_changedtick(buf_T *buf)
911{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100912 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100913
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100914 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
915 di->di_tv.v_type = VAR_NUMBER;
916 di->di_tv.v_lock = VAR_FIXED;
917 di->di_tv.vval.v_number = 0;
918
Bram Moolenaar92769c32017-02-25 15:41:37 +0100919#ifdef FEAT_EVAL
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100920 STRCPY(buf->b_ct_di.di_key, "changedtick");
921 (void)dict_add(buf->b_vars, di);
Bram Moolenaar92769c32017-02-25 15:41:37 +0100922#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +0100923}
924
925/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
927 */
928 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100929free_buffer_stuff(
930 buf_T *buf,
931 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932{
933 if (free_options)
934 {
935 clear_wininfo(buf); /* including window-local options */
936 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200937#ifdef FEAT_SPELL
938 ga_clear(&buf->b_s.b_langp);
939#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 }
941#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100942 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100943 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100944
945 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
946 hash_init(&buf->b_vars->dv_hashtab);
947 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100948 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100949 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950#endif
951#ifdef FEAT_USR_CMDS
952 uc_clear(&buf->b_ucmds); /* clear local user commands */
953#endif
954#ifdef FEAT_SIGNS
955 buf_delete_signs(buf); /* delete any signs */
956#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000957#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200958 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000959#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960#ifdef FEAT_LOCALMAP
961 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
962 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
963#endif
964#ifdef FEAT_MBYTE
965 vim_free(buf->b_start_fenc);
966 buf->b_start_fenc = NULL;
967#endif
968}
969
970/*
971 * Free the b_wininfo list for buffer "buf".
972 */
973 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100974clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975{
976 wininfo_T *wip;
977
978 while (buf->b_wininfo != NULL)
979 {
980 wip = buf->b_wininfo;
981 buf->b_wininfo = wip->wi_next;
982 if (wip->wi_optset)
983 {
984 clear_winopt(&wip->wi_opt);
985#ifdef FEAT_FOLDING
986 deleteFoldRecurse(&wip->wi_folds);
987#endif
988 }
989 vim_free(wip);
990 }
991}
992
993#if defined(FEAT_LISTCMDS) || defined(PROTO)
994/*
995 * Go to another buffer. Handles the result of the ATTENTION dialog.
996 */
997 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100998goto_buffer(
999 exarg_T *eap,
1000 int start,
1001 int dir,
1002 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003{
Bram Moolenaare64ac772005-12-07 20:54:59 +00001004# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001005 bufref_T old_curbuf;
1006
1007 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008
1009 swap_exists_action = SEA_DIALOG;
1010# endif
1011 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
1012 start, dir, count, eap->forceit);
Bram Moolenaare64ac772005-12-07 20:54:59 +00001013# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
1015 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001016# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1017 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001018
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001019 /* Reset the error/interrupt/exception state here so that
1020 * aborting() returns FALSE when closing a window. */
1021 enter_cleanup(&cs);
1022# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001023
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001024 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 win_close(curwin, TRUE);
1026 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001027 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001028
1029# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1030 /* Restore the error/interrupt/exception state if not discarded by a
1031 * new aborting error, interrupt, or uncaught exception. */
1032 leave_cleanup(&cs);
1033# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 }
1035 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001036 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037# endif
1038}
1039#endif
1040
Bram Moolenaare64ac772005-12-07 20:54:59 +00001041#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042/*
1043 * Handle the situation of swap_exists_action being set.
1044 * It is allowed for "old_curbuf" to be NULL or invalid.
1045 */
1046 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001047handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048{
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001049# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1050 cleanup_T cs;
1051# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001052#ifdef FEAT_SYN_HL
1053 long old_tw = curbuf->b_p_tw;
1054#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001055 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001056
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 if (swap_exists_action == SEA_QUIT)
1058 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001059# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1060 /* Reset the error/interrupt/exception state here so that
1061 * aborting() returns FALSE when closing a buffer. */
1062 enter_cleanup(&cs);
1063# endif
1064
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 /* User selected Quit at ATTENTION prompt. Go back to previous
1066 * buffer. If that buffer is gone or the same as the current one,
1067 * open a new, empty buffer. */
1068 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001069 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001070 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001071 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1072 || old_curbuf->br_buf == curbuf)
1073 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1074 else
1075 buf = old_curbuf->br_buf;
1076 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001077 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001078 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001079#ifdef FEAT_SYN_HL
1080 if (old_tw != curbuf->b_p_tw)
1081 check_colorcolumn(curwin);
1082#endif
1083 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001085
1086# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1087 /* Restore the error/interrupt/exception state if not discarded by a
1088 * new aborting error, interrupt, or uncaught exception. */
1089 leave_cleanup(&cs);
1090# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 }
1092 else if (swap_exists_action == SEA_RECOVER)
1093 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001094# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1095 /* Reset the error/interrupt/exception state here so that
1096 * aborting() returns FALSE when closing a buffer. */
1097 enter_cleanup(&cs);
1098# endif
1099
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 /* User selected Recover at ATTENTION prompt. */
1101 msg_scroll = TRUE;
1102 ml_recover();
1103 MSG_PUTS("\n"); /* don't overwrite the last message */
1104 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001105 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001106
1107# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1108 /* Restore the error/interrupt/exception state if not discarded by a
1109 * new aborting error, interrupt, or uncaught exception. */
1110 leave_cleanup(&cs);
1111# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 }
1113 swap_exists_action = SEA_NONE;
1114}
1115#endif
1116
1117#if defined(FEAT_LISTCMDS) || defined(PROTO)
1118/*
1119 * do_bufdel() - delete or unload buffer(s)
1120 *
1121 * addr_count == 0: ":bdel" - delete current buffer
1122 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1123 * buffer "end_bnr", then any other arguments.
1124 * addr_count == 2: ":N,N bdel" - delete buffers in range
1125 *
1126 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1127 * DOBUF_DEL (":bdel")
1128 *
1129 * Returns error message or NULL
1130 */
1131 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001132do_bufdel(
1133 int command,
1134 char_u *arg, /* pointer to extra arguments */
1135 int addr_count,
1136 int start_bnr, /* first buffer number in a range */
1137 int end_bnr, /* buffer nr or last buffer nr in a range */
1138 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139{
1140 int do_current = 0; /* delete current buffer? */
1141 int deleted = 0; /* number of buffers deleted */
1142 char_u *errormsg = NULL; /* return value */
1143 int bnr; /* buffer number */
1144 char_u *p;
1145
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 if (addr_count == 0)
1147 {
1148 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1149 }
1150 else
1151 {
1152 if (addr_count == 2)
1153 {
1154 if (*arg) /* both range and argument is not allowed */
1155 return (char_u *)_(e_trailing);
1156 bnr = start_bnr;
1157 }
1158 else /* addr_count == 1 */
1159 bnr = end_bnr;
1160
1161 for ( ;!got_int; ui_breakcheck())
1162 {
1163 /*
1164 * delete the current buffer last, otherwise when the
1165 * current buffer is deleted, the next buffer becomes
1166 * the current one and will be loaded, which may then
1167 * also be deleted, etc.
1168 */
1169 if (bnr == curbuf->b_fnum)
1170 do_current = bnr;
1171 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1172 forceit) == OK)
1173 ++deleted;
1174
1175 /*
1176 * find next buffer number to delete/unload
1177 */
1178 if (addr_count == 2)
1179 {
1180 if (++bnr > end_bnr)
1181 break;
1182 }
1183 else /* addr_count == 1 */
1184 {
1185 arg = skipwhite(arg);
1186 if (*arg == NUL)
1187 break;
1188 if (!VIM_ISDIGIT(*arg))
1189 {
1190 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001191 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1192 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 if (bnr < 0) /* failed */
1194 break;
1195 arg = p;
1196 }
1197 else
1198 bnr = getdigits(&arg);
1199 }
1200 }
1201 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1202 FORWARD, do_current, forceit) == OK)
1203 ++deleted;
1204
1205 if (deleted == 0)
1206 {
1207 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001208 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001210 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001212 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 errormsg = IObuff;
1214 }
1215 else if (deleted >= p_report)
1216 {
1217 if (command == DOBUF_UNLOAD)
1218 {
1219 if (deleted == 1)
1220 MSG(_("1 buffer unloaded"));
1221 else
1222 smsg((char_u *)_("%d buffers unloaded"), deleted);
1223 }
1224 else if (command == DOBUF_DEL)
1225 {
1226 if (deleted == 1)
1227 MSG(_("1 buffer deleted"));
1228 else
1229 smsg((char_u *)_("%d buffers deleted"), deleted);
1230 }
1231 else
1232 {
1233 if (deleted == 1)
1234 MSG(_("1 buffer wiped out"));
1235 else
1236 smsg((char_u *)_("%d buffers wiped out"), deleted);
1237 }
1238 }
1239 }
1240
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241
1242 return errormsg;
1243}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001244#endif /* FEAT_LISTCMDS */
1245
1246#if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \
1247 || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001249static int empty_curbuf(int close_others, int forceit, int action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001250
1251/*
1252 * Make the current buffer empty.
1253 * Used when it is wiped out and it's the last buffer.
1254 */
1255 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001256empty_curbuf(
1257 int close_others,
1258 int forceit,
1259 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001260{
1261 int retval;
1262 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001263 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001264
1265 if (action == DOBUF_UNLOAD)
1266 {
1267 EMSG(_("E90: Cannot unload last buffer"));
1268 return FAIL;
1269 }
1270
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001271 set_bufref(&bufref, buf);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001272#ifdef FEAT_WINDOWS
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001273 if (close_others)
1274 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001275 close_windows(buf, TRUE);
1276#endif
Bram Moolenaara02471e2014-01-10 16:43:14 +01001277
1278 setpcmark();
1279 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1280 forceit ? ECMD_FORCEIT : 0, curwin);
1281
1282 /*
1283 * do_ecmd() may create a new buffer, then we have to delete
1284 * the old one. But do_ecmd() may have done that already, check
1285 * if the buffer still exists.
1286 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001287 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001288 close_buffer(NULL, buf, action, FALSE);
1289 if (!close_others)
1290 need_fileinfo = FALSE;
1291 return retval;
1292}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293/*
1294 * Implementation of the commands for the buffer list.
1295 *
1296 * action == DOBUF_GOTO go to specified buffer
1297 * action == DOBUF_SPLIT split window and go to specified buffer
1298 * action == DOBUF_UNLOAD unload specified buffer(s)
1299 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1300 * action == DOBUF_WIPE delete specified buffer(s) really
1301 *
1302 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1303 * start == DOBUF_FIRST go to "count" buffer from first buffer
1304 * start == DOBUF_LAST go to "count" buffer from last buffer
1305 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1306 *
1307 * Return FAIL or OK.
1308 */
1309 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001310do_buffer(
1311 int action,
1312 int start,
1313 int dir, /* FORWARD or BACKWARD */
1314 int count, /* buffer number or number of buffers */
1315 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316{
1317 buf_T *buf;
1318 buf_T *bp;
1319 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1320 || action == DOBUF_WIPE);
1321
1322 switch (start)
1323 {
1324 case DOBUF_FIRST: buf = firstbuf; break;
1325 case DOBUF_LAST: buf = lastbuf; break;
1326 default: buf = curbuf; break;
1327 }
1328 if (start == DOBUF_MOD) /* find next modified buffer */
1329 {
1330 while (count-- > 0)
1331 {
1332 do
1333 {
1334 buf = buf->b_next;
1335 if (buf == NULL)
1336 buf = firstbuf;
1337 }
1338 while (buf != curbuf && !bufIsChanged(buf));
1339 }
1340 if (!bufIsChanged(buf))
1341 {
1342 EMSG(_("E84: No modified buffer found"));
1343 return FAIL;
1344 }
1345 }
1346 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1347 {
1348 while (buf != NULL && buf->b_fnum != count)
1349 buf = buf->b_next;
1350 }
1351 else
1352 {
1353 bp = NULL;
1354 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1355 {
1356 /* remember the buffer where we start, we come back there when all
1357 * buffers are unlisted. */
1358 if (bp == NULL)
1359 bp = buf;
1360 if (dir == FORWARD)
1361 {
1362 buf = buf->b_next;
1363 if (buf == NULL)
1364 buf = firstbuf;
1365 }
1366 else
1367 {
1368 buf = buf->b_prev;
1369 if (buf == NULL)
1370 buf = lastbuf;
1371 }
1372 /* don't count unlisted buffers */
1373 if (unload || buf->b_p_bl)
1374 {
1375 --count;
1376 bp = NULL; /* use this buffer as new starting point */
1377 }
1378 if (bp == buf)
1379 {
1380 /* back where we started, didn't find anything. */
1381 EMSG(_("E85: There is no listed buffer"));
1382 return FAIL;
1383 }
1384 }
1385 }
1386
1387 if (buf == NULL) /* could not find it */
1388 {
1389 if (start == DOBUF_FIRST)
1390 {
1391 /* don't warn when deleting */
1392 if (!unload)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01001393 EMSGN(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 }
1395 else if (dir == FORWARD)
1396 EMSG(_("E87: Cannot go beyond last buffer"));
1397 else
1398 EMSG(_("E88: Cannot go before first buffer"));
1399 return FAIL;
1400 }
1401
1402#ifdef FEAT_GUI
1403 need_mouse_correct = TRUE;
1404#endif
1405
1406#ifdef FEAT_LISTCMDS
1407 /*
1408 * delete buffer buf from memory and/or the list
1409 */
1410 if (unload)
1411 {
1412 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001413# if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS)
1414 bufref_T bufref;
1415
1416 set_bufref(&bufref, buf);
1417# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418
1419 /* When unloading or deleting a buffer that's already unloaded and
1420 * unlisted: fail silently. */
1421 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1422 return FAIL;
1423
1424 if (!forceit && bufIsChanged(buf))
1425 {
1426#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1427 if ((p_confirm || cmdmod.confirm) && p_write)
1428 {
1429 dialog_changed(buf, FALSE);
1430# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001431 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 /* Autocommand deleted buffer, oops! It's not changed
1433 * now. */
1434 return FAIL;
1435# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001436 /* If it's still changed fail silently, the dialog already
1437 * mentioned why it fails. */
1438 if (bufIsChanged(buf))
1439 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001441 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442#endif
1443 {
1444 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1445 buf->b_fnum);
1446 return FAIL;
1447 }
1448 }
1449
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001450 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001451 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001452 end_visual_mode();
1453
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 /*
1455 * If deleting the last (listed) buffer, make it empty.
1456 * The last (listed) buffer cannot be unloaded.
1457 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001458 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 if (bp->b_p_bl && bp != buf)
1460 break;
1461 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001462 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463
1464#ifdef FEAT_WINDOWS
1465 /*
1466 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001467 * (unless it's the only window). Repeat this so long as we end up in
1468 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001470 while (buf == curbuf
Bram Moolenaar362ce482012-06-06 19:02:45 +02001471# ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001472 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02001473# endif
Bram Moolenaar459ca562016-11-10 18:16:33 +01001474 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001475 {
1476 if (win_close(curwin, FALSE) == FAIL)
1477 break;
1478 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479#endif
1480
1481 /*
1482 * If the buffer to be deleted is not the current one, delete it here.
1483 */
1484 if (buf != curbuf)
1485 {
1486#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00001487 close_windows(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001488 if (buf != curbuf && bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489#endif
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001490 if (buf->b_nwindows <= 0)
1491 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 return OK;
1493 }
1494
1495 /*
1496 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001497 * There should be another, otherwise it would have been handled
1498 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001499 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 * Then prefer the buffer we most recently visited.
1501 * Else try to find one that is loaded, after the current buffer,
1502 * then before the current buffer.
1503 * Finally use any buffer.
1504 */
1505 buf = NULL; /* selected buffer */
1506 bp = NULL; /* used when no loaded buffer found */
1507#ifdef FEAT_AUTOCMD
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001508 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1509 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510# ifdef FEAT_JUMPLIST
1511 else
1512# endif
1513#endif
1514#ifdef FEAT_JUMPLIST
1515 if (curwin->w_jumplistlen > 0)
1516 {
1517 int jumpidx;
1518
1519 jumpidx = curwin->w_jumplistidx - 1;
1520 if (jumpidx < 0)
1521 jumpidx = curwin->w_jumplistlen - 1;
1522
1523 forward = jumpidx;
1524 while (jumpidx != curwin->w_jumplistidx)
1525 {
1526 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1527 if (buf != NULL)
1528 {
1529 if (buf == curbuf || !buf->b_p_bl)
1530 buf = NULL; /* skip current and unlisted bufs */
1531 else if (buf->b_ml.ml_mfp == NULL)
1532 {
1533 /* skip unloaded buf, but may keep it for later */
1534 if (bp == NULL)
1535 bp = buf;
1536 buf = NULL;
1537 }
1538 }
1539 if (buf != NULL) /* found a valid buffer: stop searching */
1540 break;
1541 /* advance to older entry in jump list */
1542 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1543 break;
1544 if (--jumpidx < 0)
1545 jumpidx = curwin->w_jumplistlen - 1;
1546 if (jumpidx == forward) /* List exhausted for sure */
1547 break;
1548 }
1549 }
1550#endif
1551
1552 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1553 {
1554 forward = TRUE;
1555 buf = curbuf->b_next;
1556 for (;;)
1557 {
1558 if (buf == NULL)
1559 {
1560 if (!forward) /* tried both directions */
1561 break;
1562 buf = curbuf->b_prev;
1563 forward = FALSE;
1564 continue;
1565 }
1566 /* in non-help buffer, try to skip help buffers, and vv */
1567 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1568 {
1569 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1570 break;
1571 if (bp == NULL) /* remember unloaded buf for later */
1572 bp = buf;
1573 }
1574 if (forward)
1575 buf = buf->b_next;
1576 else
1577 buf = buf->b_prev;
1578 }
1579 }
1580 if (buf == NULL) /* No loaded buffer, use unloaded one */
1581 buf = bp;
1582 if (buf == NULL) /* No loaded buffer, find listed one */
1583 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001584 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 if (buf->b_p_bl && buf != curbuf)
1586 break;
1587 }
1588 if (buf == NULL) /* Still no buffer, just take one */
1589 {
1590 if (curbuf->b_next != NULL)
1591 buf = curbuf->b_next;
1592 else
1593 buf = curbuf->b_prev;
1594 }
1595 }
1596
Bram Moolenaara02471e2014-01-10 16:43:14 +01001597 if (buf == NULL)
1598 {
1599 /* Autocommands must have wiped out all other buffers. Only option
1600 * now is to make the current buffer empty. */
1601 return empty_curbuf(FALSE, forceit, action);
1602 }
1603
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 /*
1605 * make buf current buffer
1606 */
1607 if (action == DOBUF_SPLIT) /* split window first */
1608 {
1609# ifdef FEAT_WINDOWS
Bram Moolenaarf2330482008-06-24 20:19:36 +00001610 /* If 'switchbuf' contains "useopen": jump to first window containing
1611 * "buf" if one exists */
1612 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001613 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001614 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001615 * page containing "buf" if one exists */
1616 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 return OK;
1618 if (win_split(0, 0) == FAIL)
1619# endif
1620 return FAIL;
1621 }
1622#endif
1623
1624 /* go to current buffer - nothing to do */
1625 if (buf == curbuf)
1626 return OK;
1627
1628 /*
1629 * Check if the current buffer may be abandoned.
1630 */
1631 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1632 {
1633#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1634 if ((p_confirm || cmdmod.confirm) && p_write)
1635 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001636# ifdef FEAT_AUTOCMD
1637 bufref_T bufref;
1638
1639 set_bufref(&bufref, buf);
1640# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 dialog_changed(curbuf, FALSE);
1642# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001643 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 /* Autocommand deleted buffer, oops! */
1645 return FAIL;
1646# endif
1647 }
1648 if (bufIsChanged(curbuf))
1649#endif
1650 {
1651 EMSG(_(e_nowrtmsg));
1652 return FAIL;
1653 }
1654 }
1655
1656 /* Go to the other buffer. */
1657 set_curbuf(buf, action);
1658
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001659#if defined(FEAT_LISTCMDS) \
1660 && (defined(FEAT_SCROLLBIND) || defined(FEAT_CURSORBIND))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001662 {
1663 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1664 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665#endif
1666
1667#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1668 if (aborting()) /* autocmds may abort script processing */
1669 return FAIL;
1670#endif
1671
1672 return OK;
1673}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001674#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675
1676/*
1677 * Set current buffer to "buf". Executes autocommands and closes current
1678 * buffer. "action" tells how to close the current buffer:
1679 * DOBUF_GOTO free or hide it
1680 * DOBUF_SPLIT nothing
1681 * DOBUF_UNLOAD unload it
1682 * DOBUF_DEL delete it
1683 * DOBUF_WIPE wipe it out
1684 */
1685 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001686set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687{
1688 buf_T *prevbuf;
1689 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1690 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001691#ifdef FEAT_SYN_HL
1692 long old_tw = curbuf->b_p_tw;
1693#endif
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001694 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695
1696 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001697 if (!cmdmod.keepalt)
1698 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001699 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 /* Don't restart Select mode after switching to another buffer. */
1702 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703
1704 /* close_windows() or apply_autocmds() may change curbuf */
1705 prevbuf = curbuf;
Bram Moolenaar453f37d2016-07-10 18:33:59 +02001706 set_bufref(&bufref, prevbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707
1708#ifdef FEAT_AUTOCMD
Bram Moolenaar82404332016-07-10 17:00:38 +02001709 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710# ifdef FEAT_EVAL
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001711 || (bufref_valid(&bufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712# else
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001713 || bufref_valid(&bufref)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714# endif
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001715 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716#endif
1717 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001718#ifdef FEAT_SYN_HL
1719 if (prevbuf == curwin->w_buffer)
1720 reset_synblock(curwin);
1721#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722#ifdef FEAT_WINDOWS
1723 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001724 close_windows(prevbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725#endif
1726#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001727 if (bufref_valid(&bufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728#else
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001729 if (bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001731 {
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001732#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001733 win_T *previouswin = curwin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001734#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001735 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001736 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1738 unload ? action : (action == DOBUF_GOTO
Bram Moolenaareb44a682017-08-03 22:44:55 +02001739 && !buf_hide(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001740 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001741#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001742 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001743 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001744 curwin = previouswin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001745#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001746 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 }
1748#ifdef FEAT_AUTOCMD
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001749 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001750 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001751 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1752 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001753# ifdef FEAT_EVAL
Bram Moolenaar9e931222012-06-20 11:55:01 +02001754 && !aborting()
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001755# endif
1756# ifdef FEAT_WINDOWS
Bram Moolenaar9e931222012-06-20 11:55:01 +02001757 ) || curwin->w_buffer == NULL
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001758# endif
Bram Moolenaar9e931222012-06-20 11:55:01 +02001759 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001761 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001763#ifdef FEAT_SYN_HL
1764 if (old_tw != curbuf->b_p_tw)
1765 check_colorcolumn(curwin);
1766#endif
1767 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768}
1769
1770/*
1771 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001772 * Old curbuf must have been abandoned already! This also means "curbuf" may
1773 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 */
1775 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001776enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777{
1778 /* Copy buffer and window local option values. Not for a help buffer. */
1779 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1780 if (!buf->b_help)
1781 get_winopts(buf);
1782#ifdef FEAT_FOLDING
1783 else
1784 /* Remove all folds in the window. */
1785 clearFolding(curwin);
1786 foldUpdateAll(curwin); /* update folds (later). */
1787#endif
1788
1789 /* Get the buffer in the current window. */
1790 curwin->w_buffer = buf;
1791 curbuf = buf;
1792 ++curbuf->b_nwindows;
1793
1794#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001795 if (curwin->w_p_diff)
1796 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797#endif
1798
Bram Moolenaara971b822011-09-14 14:43:25 +02001799#ifdef FEAT_SYN_HL
Bram Moolenaar96ca27a2017-07-17 23:20:24 +02001800 curwin->w_s = &(curbuf->b_s);
Bram Moolenaara971b822011-09-14 14:43:25 +02001801#endif
1802
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 /* Cursor on first line by default. */
1804 curwin->w_cursor.lnum = 1;
1805 curwin->w_cursor.col = 0;
1806#ifdef FEAT_VIRTUALEDIT
1807 curwin->w_cursor.coladd = 0;
1808#endif
1809 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001810#ifdef FEAT_AUTOCMD
1811 curwin->w_topline_was_set = FALSE;
1812#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001814 /* mark cursor position as being invalid */
1815 curwin->w_valid = 0;
1816
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 /* Make sure the buffer is loaded. */
1818 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001819 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001820#ifdef FEAT_AUTOCMD
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001821 /* If there is no filetype, allow for detecting one. Esp. useful for
1822 * ":ball" used in a autocommand. If there already is a filetype we
1823 * might prefer to keep it. */
1824 if (*curbuf->b_p_ft == NUL)
1825 did_filetype = FALSE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001826#endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001827
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001828 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001829 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 else
1831 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001832 if (!msg_silent)
1833 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1835#ifdef FEAT_AUTOCMD
1836 curwin->w_topline = 1;
1837# ifdef FEAT_DIFF
1838 curwin->w_topfill = 0;
1839# endif
1840 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1841 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1842#endif
1843 }
1844
1845 /* If autocommands did not change the cursor position, restore cursor lnum
1846 * and possibly cursor col. */
1847 if (curwin->w_cursor.lnum == 1 && inindent(0))
1848 buflist_getfpos();
1849
1850 check_arg_idx(curwin); /* check for valid arg_idx */
1851#ifdef FEAT_TITLE
1852 maketitle();
1853#endif
1854#ifdef FEAT_AUTOCMD
Bram Moolenaard4153d42008-11-15 15:06:17 +00001855 /* when autocmds didn't change it */
1856 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857#endif
1858 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1859
Bram Moolenaar009b2592004-10-24 19:18:58 +00001860#ifdef FEAT_NETBEANS_INTG
1861 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001862 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001863#endif
1864
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001865 /* Change directories when the 'acd' option is set. */
1866 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867
1868#ifdef FEAT_KEYMAP
1869 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001870 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001872#ifdef FEAT_SPELL
1873 /* May need to set the spell language. Can only do this after the buffer
1874 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001875 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1876 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001877#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001878#ifdef FEAT_VIMINFO
1879 curbuf->b_last_used = vim_time();
1880#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001881
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 redraw_later(NOT_VALID);
1883}
1884
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001885#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1886/*
1887 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001888 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001889 */
1890 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001891do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001892{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001893 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001894 && curbuf->b_ffname != NULL
1895 && vim_chdirfile(curbuf->b_ffname) == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001896 shorten_fnames(TRUE);
1897}
1898#endif
1899
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900/*
1901 * functions for dealing with the buffer list
1902 */
1903
Bram Moolenaar480778b2016-07-14 22:09:39 +02001904static int top_file_num = 1; /* highest file number */
1905
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906/*
1907 * Add a file name to the buffer list. Return a pointer to the buffer.
1908 * If the same file name already exists return a pointer to that buffer.
1909 * If it does not exist, or if fname == NULL, a new entry is created.
1910 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1911 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1912 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001913 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001914 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1915 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 * This is the ONLY way to create a new buffer.
1917 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001919buflist_new(
1920 char_u *ffname, /* full path of fname or relative */
1921 char_u *sfname, /* short fname or NULL */
1922 linenr_T lnum, /* preferred cursor line */
1923 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924{
1925 buf_T *buf;
1926#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001927 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928#endif
1929
Bram Moolenaar480778b2016-07-14 22:09:39 +02001930 if (top_file_num == 1)
1931 hash_init(&buf_hashtab);
1932
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1934
1935 /*
1936 * If file name already exists in the list, update the entry.
1937 */
1938#ifdef UNIX
1939 /* On Unix we can use inode numbers when the file exists. Works better
1940 * for hard links. */
1941 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1942 st.st_dev = (dev_T)-1;
1943#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001944 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945#ifdef UNIX
1946 buflist_findname_stat(ffname, &st)
1947#else
1948 buflist_findname(ffname)
1949#endif
1950 ) != NULL)
1951 {
1952 vim_free(ffname);
1953 if (lnum != 0)
1954 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001955
1956 if ((flags & BLN_NOOPT) == 0)
1957 /* copy the options now, if 'cpo' doesn't have 's' and not done
1958 * already */
1959 buf_copy_options(buf, 0);
1960
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1962 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001963#ifdef FEAT_AUTOCMD
1964 bufref_T bufref;
1965#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 buf->b_p_bl = TRUE;
1967#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001968 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001970 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001971 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001972 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001973 return NULL;
1974 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975#endif
1976 }
1977 return buf;
1978 }
1979
1980 /*
1981 * If the current buffer has no name and no contents, use the current
1982 * buffer. Otherwise: Need to allocate a new buffer structure.
1983 *
1984 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001985 * (A spell file buffer is allocated in spell.c, but that's not a normal
1986 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 */
1988 buf = NULL;
1989 if ((flags & BLN_CURBUF)
1990 && curbuf != NULL
1991 && curbuf->b_ffname == NULL
1992 && curbuf->b_nwindows <= 1
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001993 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 {
1995 buf = curbuf;
1996#ifdef FEAT_AUTOCMD
1997 /* It's like this buffer is deleted. Watch out for autocommands that
1998 * change curbuf! If that happens, allocate a new buffer anyway. */
1999 if (curbuf->b_p_bl)
2000 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
2001 if (buf == curbuf)
2002 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
2003# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002004 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 return NULL;
2006# endif
2007#endif
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02002008#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 if (buf == curbuf)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02002010#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 {
2012 /* Make sure 'bufhidden' and 'buftype' are empty */
2013 clear_string_option(&buf->b_p_bh);
2014 clear_string_option(&buf->b_p_bt);
2015 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 }
2017 if (buf != curbuf || curbuf == NULL)
2018 {
2019 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
2020 if (buf == NULL)
2021 {
2022 vim_free(ffname);
2023 return NULL;
2024 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02002025#ifdef FEAT_EVAL
2026 /* init b: variables */
2027 buf->b_vars = dict_alloc();
2028 if (buf->b_vars == NULL)
2029 {
2030 vim_free(ffname);
2031 vim_free(buf);
2032 return NULL;
2033 }
2034 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2035#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002036 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 }
2038
2039 if (ffname != NULL)
2040 {
2041 buf->b_ffname = ffname;
2042 buf->b_sfname = vim_strsave(sfname);
2043 }
2044
2045 clear_wininfo(buf);
2046 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2047
2048 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2049 || buf->b_wininfo == NULL)
2050 {
2051 vim_free(buf->b_ffname);
2052 buf->b_ffname = NULL;
2053 vim_free(buf->b_sfname);
2054 buf->b_sfname = NULL;
2055 if (buf != curbuf)
2056 free_buffer(buf);
2057 return NULL;
2058 }
2059
2060 if (buf == curbuf)
2061 {
2062 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002063 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 if (buf != curbuf) /* autocommands deleted the buffer! */
2065 return NULL;
2066#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002067 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 return NULL;
2069#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002071
2072 /* Init the options. */
2073 buf->b_p_initialized = FALSE;
2074 buf_copy_options(buf, BCO_ENTER);
2075
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076#ifdef FEAT_KEYMAP
2077 /* need to reload lmaps and set b:keymap_name */
2078 curbuf->b_kmap_state |= KEYMAP_INIT;
2079#endif
2080 }
2081 else
2082 {
2083 /*
2084 * put new buffer at the end of the buffer list
2085 */
2086 buf->b_next = NULL;
2087 if (firstbuf == NULL) /* buffer list is empty */
2088 {
2089 buf->b_prev = NULL;
2090 firstbuf = buf;
2091 }
2092 else /* append new buffer at end of list */
2093 {
2094 lastbuf->b_next = buf;
2095 buf->b_prev = lastbuf;
2096 }
2097 lastbuf = buf;
2098
2099 buf->b_fnum = top_file_num++;
2100 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2101 {
2102 EMSG(_("W14: Warning: List of file names overflow"));
2103 if (emsg_silent == 0)
2104 {
2105 out_flush();
2106 ui_delay(3000L, TRUE); /* make sure it is noticed */
2107 }
2108 top_file_num = 1;
2109 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002110 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111
2112 /*
2113 * Always copy the options from the current buffer.
2114 */
2115 buf_copy_options(buf, BCO_ALWAYS);
2116 }
2117
2118 buf->b_wininfo->wi_fpos.lnum = lnum;
2119 buf->b_wininfo->wi_win = curwin;
2120
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002121#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002122 hash_init(&buf->b_s.b_keywtab);
2123 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124#endif
2125
2126 buf->b_fname = buf->b_sfname;
2127#ifdef UNIX
2128 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002129 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 else
2131 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002132 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 buf->b_dev = st.st_dev;
2134 buf->b_ino = st.st_ino;
2135 }
2136#endif
2137 buf->b_u_synced = TRUE;
2138 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002139 if (flags & BLN_DUMMY)
2140 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 buf_clear_file(buf);
2142 clrallmarks(buf); /* clear marks */
2143 fmarks_check_names(buf); /* check file marks for this file */
2144 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
2145#ifdef FEAT_AUTOCMD
2146 if (!(flags & BLN_DUMMY))
2147 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002148 bufref_T bufref;
2149
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002150 /* Tricky: these autocommands may change the buffer list. They could
2151 * also split the window with re-using the one empty buffer. This may
2152 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002153 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002154 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002155 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002156 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002158 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002159 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002160 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002161 return NULL;
2162 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002164 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 return NULL;
2166# endif
2167 }
2168#endif
2169
2170 return buf;
2171}
2172
2173/*
2174 * Free the memory for the options of a buffer.
2175 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2176 * 'fileencoding'.
2177 */
2178 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002179free_buf_options(
2180 buf_T *buf,
2181 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182{
2183 if (free_p_ff)
2184 {
2185#ifdef FEAT_MBYTE
2186 clear_string_option(&buf->b_p_fenc);
2187#endif
2188 clear_string_option(&buf->b_p_ff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 clear_string_option(&buf->b_p_bh);
2190 clear_string_option(&buf->b_p_bt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 }
2192#ifdef FEAT_FIND_ID
2193 clear_string_option(&buf->b_p_def);
2194 clear_string_option(&buf->b_p_inc);
2195# ifdef FEAT_EVAL
2196 clear_string_option(&buf->b_p_inex);
2197# endif
2198#endif
2199#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2200 clear_string_option(&buf->b_p_inde);
2201 clear_string_option(&buf->b_p_indk);
2202#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002203#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2204 clear_string_option(&buf->b_p_bexpr);
2205#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002206#if defined(FEAT_CRYPT)
2207 clear_string_option(&buf->b_p_cm);
2208#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002209 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002210#if defined(FEAT_EVAL)
2211 clear_string_option(&buf->b_p_fex);
2212#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213#ifdef FEAT_CRYPT
2214 clear_string_option(&buf->b_p_key);
2215#endif
2216 clear_string_option(&buf->b_p_kp);
2217 clear_string_option(&buf->b_p_mps);
2218 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002219 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 clear_string_option(&buf->b_p_isk);
2221#ifdef FEAT_KEYMAP
2222 clear_string_option(&buf->b_p_keymap);
2223 ga_clear(&buf->b_kmap_ga);
2224#endif
2225#ifdef FEAT_COMMENTS
2226 clear_string_option(&buf->b_p_com);
2227#endif
2228#ifdef FEAT_FOLDING
2229 clear_string_option(&buf->b_p_cms);
2230#endif
2231 clear_string_option(&buf->b_p_nf);
2232#ifdef FEAT_SYN_HL
2233 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002234 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002235#endif
2236#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002237 clear_string_option(&buf->b_s.b_p_spc);
2238 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002239 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002240 buf->b_s.b_cap_prog = NULL;
2241 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242#endif
2243#ifdef FEAT_SEARCHPATH
2244 clear_string_option(&buf->b_p_sua);
2245#endif
2246#ifdef FEAT_AUTOCMD
2247 clear_string_option(&buf->b_p_ft);
2248#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249#ifdef FEAT_CINDENT
2250 clear_string_option(&buf->b_p_cink);
2251 clear_string_option(&buf->b_p_cino);
2252#endif
2253#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2254 clear_string_option(&buf->b_p_cinw);
2255#endif
2256#ifdef FEAT_INS_EXPAND
2257 clear_string_option(&buf->b_p_cpt);
2258#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002259#ifdef FEAT_COMPL_FUNC
2260 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002261 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002262#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263#ifdef FEAT_QUICKFIX
2264 clear_string_option(&buf->b_p_gp);
2265 clear_string_option(&buf->b_p_mp);
2266 clear_string_option(&buf->b_p_efm);
2267#endif
2268 clear_string_option(&buf->b_p_ep);
2269 clear_string_option(&buf->b_p_path);
2270 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002271 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272#ifdef FEAT_INS_EXPAND
2273 clear_string_option(&buf->b_p_dict);
2274 clear_string_option(&buf->b_p_tsr);
2275#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002276#ifdef FEAT_TEXTOBJ
2277 clear_string_option(&buf->b_p_qe);
2278#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002280 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002281#ifdef FEAT_LISP
2282 clear_string_option(&buf->b_p_lw);
2283#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002284 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01002285#ifdef FEAT_MBYTE
2286 clear_string_option(&buf->b_p_menc);
2287#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288}
2289
2290/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002291 * Get alternate file "n".
2292 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0.
2293 * Also set cursor column to altfpos.col if 'startofline' is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 * if (options & GETF_SETMARK) call setpcmark()
2295 * if (options & GETF_ALT) we are jumping to an alternate file.
2296 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2297 *
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02002298 * Return FAIL for failure, OK for success.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 */
2300 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002301buflist_getfile(
2302 int n,
2303 linenr_T lnum,
2304 int options,
2305 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306{
2307 buf_T *buf;
2308#ifdef FEAT_WINDOWS
2309 win_T *wp = NULL;
2310#endif
2311 pos_T *fpos;
2312 colnr_T col;
2313
2314 buf = buflist_findnr(n);
2315 if (buf == NULL)
2316 {
2317 if ((options & GETF_ALT) && n == 0)
2318 EMSG(_(e_noalt));
2319 else
2320 EMSGN(_("E92: Buffer %ld not found"), n);
2321 return FAIL;
2322 }
2323
2324 /* if alternate file is the current buffer, nothing to do */
2325 if (buf == curbuf)
2326 return OK;
2327
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002328 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002329 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002330 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002332 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002333#ifdef FEAT_AUTOCMD
2334 if (curbuf_locked())
2335 return FAIL;
2336#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337
2338 /* altfpos may be changed by getfile(), get it now */
2339 if (lnum == 0)
2340 {
2341 fpos = buflist_findfpos(buf);
2342 lnum = fpos->lnum;
2343 col = fpos->col;
2344 }
2345 else
2346 col = 0;
2347
2348#ifdef FEAT_WINDOWS
2349 if (options & GETF_SWITCH)
2350 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002351 /* If 'switchbuf' contains "useopen": jump to first window containing
2352 * "buf" if one exists */
2353 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002355
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002356 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002357 * page containing "buf" if one exists */
2358 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002359 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002360
2361 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2362 * current buffer isn't empty: open new tab or window */
2363 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002364 && !BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002366 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002367 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002368 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2369 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002371 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 }
2373 }
2374#endif
2375
2376 ++RedrawingDisabled;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02002377 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
2378 (options & GETF_SETMARK), lnum, forceit)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 {
2380 --RedrawingDisabled;
2381
2382 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2383 if (!p_sol && col != 0)
2384 {
2385 curwin->w_cursor.col = col;
2386 check_cursor_col();
2387#ifdef FEAT_VIRTUALEDIT
2388 curwin->w_cursor.coladd = 0;
2389#endif
2390 curwin->w_set_curswant = TRUE;
2391 }
2392 return OK;
2393 }
2394 --RedrawingDisabled;
2395 return FAIL;
2396}
2397
2398/*
2399 * go to the last know line number for the current buffer
2400 */
2401 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002402buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403{
2404 pos_T *fpos;
2405
2406 fpos = buflist_findfpos(curbuf);
2407
2408 curwin->w_cursor.lnum = fpos->lnum;
2409 check_cursor_lnum();
2410
2411 if (p_sol)
2412 curwin->w_cursor.col = 0;
2413 else
2414 {
2415 curwin->w_cursor.col = fpos->col;
2416 check_cursor_col();
2417#ifdef FEAT_VIRTUALEDIT
2418 curwin->w_cursor.coladd = 0;
2419#endif
2420 curwin->w_set_curswant = TRUE;
2421 }
2422}
2423
Bram Moolenaar81695252004-12-29 20:58:21 +00002424#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2425/*
2426 * Find file in buffer list by name (it has to be for the current window).
2427 * Returns NULL if not found.
2428 */
2429 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002430buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002431{
2432 char_u *ffname;
2433 buf_T *buf = NULL;
2434
2435 /* First make the name into a full path name */
2436 ffname = FullName_save(fname,
2437#ifdef UNIX
2438 TRUE /* force expansion, get rid of symbolic links */
2439#else
2440 FALSE
2441#endif
2442 );
2443 if (ffname != NULL)
2444 {
2445 buf = buflist_findname(ffname);
2446 vim_free(ffname);
2447 }
2448 return buf;
2449}
2450#endif
2451
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452/*
2453 * Find file in buffer list by name (it has to be for the current window).
2454 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002455 * Skips dummy buffers.
2456 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 */
2458 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002459buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460{
2461#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002462 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463
2464 if (mch_stat((char *)ffname, &st) < 0)
2465 st.st_dev = (dev_T)-1;
2466 return buflist_findname_stat(ffname, &st);
2467}
2468
2469/*
2470 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2471 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002472 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 */
2474 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002475buflist_findname_stat(
2476 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002477 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478{
2479#endif
2480 buf_T *buf;
2481
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002482 /* Start at the last buffer, expect to find a match sooner. */
2483 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002484 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485#ifdef UNIX
2486 , stp
2487#endif
2488 ))
2489 return buf;
2490 return NULL;
2491}
2492
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002493#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
2494 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495/*
2496 * Find file in buffer list by a regexp pattern.
2497 * Return fnum of the found buffer.
2498 * Return < 0 for error.
2499 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002501buflist_findpat(
2502 char_u *pattern,
2503 char_u *pattern_end, /* pointer to first char after pattern */
2504 int unlisted, /* find unlisted buffers */
2505 int diffmode UNUSED, /* find diff-mode buffers only */
2506 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507{
2508 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 int match = -1;
2510 int find_listed;
2511 char_u *pat;
2512 char_u *patend;
2513 int attempt;
2514 char_u *p;
2515 int toggledollar;
2516
2517 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2518 {
2519 if (*pattern == '%')
2520 match = curbuf->b_fnum;
2521 else
2522 match = curwin->w_alt_fnum;
2523#ifdef FEAT_DIFF
2524 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2525 match = -1;
2526#endif
2527 }
2528
2529 /*
2530 * Try four ways of matching a listed buffer:
2531 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002532 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 * attempt == 2: with '$' at end (only match at end)
2534 * attempt == 3: with '^' at start and '$' at end (only full match)
2535 * Repeat this for finding an unlisted buffer if there was no matching
2536 * listed buffer.
2537 */
2538 else
2539 {
2540 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2541 if (pat == NULL)
2542 return -1;
2543 patend = pat + STRLEN(pat) - 1;
2544 toggledollar = (patend > pat && *patend == '$');
2545
2546 /* First try finding a listed buffer. If not found and "unlisted"
2547 * is TRUE, try finding an unlisted buffer. */
2548 find_listed = TRUE;
2549 for (;;)
2550 {
2551 for (attempt = 0; attempt <= 3; ++attempt)
2552 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002553 regmatch_T regmatch;
2554
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 /* may add '^' and '$' */
2556 if (toggledollar)
2557 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2558 p = pat;
2559 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2560 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002561 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2562 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 {
2564 vim_free(pat);
2565 return -1;
2566 }
2567
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002568 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 if (buf->b_p_bl == find_listed
2570#ifdef FEAT_DIFF
2571 && (!diffmode || diff_mode_buf(buf))
2572#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002573 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002575 if (curtab_only)
2576 {
2577 /* Ignore the match if the buffer is not open in
2578 * the current tab. */
2579#ifdef FEAT_WINDOWS
2580 win_T *wp;
2581
Bram Moolenaar29323592016-07-24 22:04:11 +02002582 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002583 if (wp->w_buffer == buf)
2584 break;
2585 if (wp == NULL)
2586 continue;
2587#else
2588 if (curwin->w_buffer != buf)
2589 continue;
2590#endif
2591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 if (match >= 0) /* already found a match */
2593 {
2594 match = -2;
2595 break;
2596 }
2597 match = buf->b_fnum; /* remember first match */
2598 }
2599
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002600 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 if (match >= 0) /* found one match */
2602 break;
2603 }
2604
2605 /* Only search for unlisted buffers if there was no match with
2606 * a listed buffer. */
2607 if (!unlisted || !find_listed || match != -1)
2608 break;
2609 find_listed = FALSE;
2610 }
2611
2612 vim_free(pat);
2613 }
2614
2615 if (match == -2)
2616 EMSG2(_("E93: More than one match for %s"), pattern);
2617 else if (match < 0)
2618 EMSG2(_("E94: No matching buffer for %s"), pattern);
2619 return match;
2620}
2621#endif
2622
2623#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2624
2625/*
2626 * Find all buffer names that match.
2627 * For command line expansion of ":buf" and ":sbuf".
2628 * Return OK if matches found, FAIL otherwise.
2629 */
2630 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002631ExpandBufnames(
2632 char_u *pat,
2633 int *num_file,
2634 char_u ***file,
2635 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636{
2637 int count = 0;
2638 buf_T *buf;
2639 int round;
2640 char_u *p;
2641 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002642 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643
2644 *num_file = 0; /* return values in case of FAIL */
2645 *file = NULL;
2646
Bram Moolenaar05159a02005-02-26 23:04:13 +00002647 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2648 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002650 patc = alloc((unsigned)STRLEN(pat) + 11);
2651 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002653 STRCPY(patc, "\\(^\\|[\\/]\\)");
2654 STRCPY(patc + 11, pat + 1);
2655 }
2656 else
2657 patc = pat;
2658
2659 /*
2660 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002661 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002662 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002663 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002664 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002665 regmatch_T regmatch;
2666
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002667 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002668 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002669 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2670 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002671 {
2672 if (patc != pat)
2673 vim_free(patc);
2674 return FAIL;
2675 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676
2677 /*
2678 * round == 1: Count the matches.
2679 * round == 2: Build the array to keep the matches.
2680 */
2681 for (round = 1; round <= 2; ++round)
2682 {
2683 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002684 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 {
2686 if (!buf->b_p_bl) /* skip unlisted buffers */
2687 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002688 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 if (p != NULL)
2690 {
2691 if (round == 1)
2692 ++count;
2693 else
2694 {
2695 if (options & WILD_HOME_REPLACE)
2696 p = home_replace_save(buf, p);
2697 else
2698 p = vim_strsave(p);
2699 (*file)[count++] = p;
2700 }
2701 }
2702 }
2703 if (count == 0) /* no match found, break here */
2704 break;
2705 if (round == 1)
2706 {
2707 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2708 if (*file == NULL)
2709 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002710 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002711 if (patc != pat)
2712 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 return FAIL;
2714 }
2715 }
2716 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002717 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 if (count) /* match(es) found, break here */
2719 break;
2720 }
2721
Bram Moolenaar05159a02005-02-26 23:04:13 +00002722 if (patc != pat)
2723 vim_free(patc);
2724
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 *num_file = count;
2726 return (count == 0 ? FAIL : OK);
2727}
2728
2729#endif /* FEAT_CMDL_COMPL */
2730
2731#ifdef HAVE_BUFLIST_MATCH
2732/*
2733 * Check for a match on the file name for buffer "buf" with regprog "prog".
2734 */
2735 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002736buflist_match(
2737 regmatch_T *rmp,
2738 buf_T *buf,
2739 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740{
2741 char_u *match;
2742
2743 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002744 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002746 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747
2748 return match;
2749}
2750
2751/*
2752 * Try matching the regexp in "prog" with file name "name".
2753 * Return "name" when there is a match, NULL when not.
2754 */
2755 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002756fname_match(
2757 regmatch_T *rmp,
2758 char_u *name,
2759 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760{
2761 char_u *match = NULL;
2762 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763
2764 if (name != NULL)
2765 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002766 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002767 rmp->rm_ic = p_fic || ignore_case;
2768 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 match = name;
2770 else
2771 {
2772 /* Replace $(HOME) with '~' and try matching again. */
2773 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002774 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 match = name;
2776 vim_free(p);
2777 }
2778 }
2779
2780 return match;
2781}
2782#endif
2783
2784/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002785 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 */
2787 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002788buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002790 char_u key[VIM_SIZEOF_INT * 2 + 1];
2791 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792
2793 if (nr == 0)
2794 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002795 sprintf((char *)key, "%x", nr);
2796 hi = hash_find(&buf_hashtab, key);
2797
2798 if (!HASHITEM_EMPTY(hi))
2799 return (buf_T *)(hi->hi_key
2800 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 return NULL;
2802}
2803
2804/*
2805 * Get name of file 'n' in the buffer list.
2806 * When the file has no name an empty string is returned.
2807 * home_replace() is used to shorten the file name (used for marks).
2808 * Returns a pointer to allocated memory, of NULL when failed.
2809 */
2810 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002811buflist_nr2name(
2812 int n,
2813 int fullname,
2814 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815{
2816 buf_T *buf;
2817
2818 buf = buflist_findnr(n);
2819 if (buf == NULL)
2820 return NULL;
2821 return home_replace_save(helptail ? buf : NULL,
2822 fullname ? buf->b_ffname : buf->b_fname);
2823}
2824
2825/*
2826 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2827 * When "copy_options" is TRUE save the local window option values.
2828 * When "lnum" is 0 only do the options.
2829 */
2830 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002831buflist_setfpos(
2832 buf_T *buf,
2833 win_T *win,
2834 linenr_T lnum,
2835 colnr_T col,
2836 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837{
2838 wininfo_T *wip;
2839
2840 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2841 if (wip->wi_win == win)
2842 break;
2843 if (wip == NULL)
2844 {
2845 /* allocate a new entry */
2846 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2847 if (wip == NULL)
2848 return;
2849 wip->wi_win = win;
2850 if (lnum == 0) /* set lnum even when it's 0 */
2851 lnum = 1;
2852 }
2853 else
2854 {
2855 /* remove the entry from the list */
2856 if (wip->wi_prev)
2857 wip->wi_prev->wi_next = wip->wi_next;
2858 else
2859 buf->b_wininfo = wip->wi_next;
2860 if (wip->wi_next)
2861 wip->wi_next->wi_prev = wip->wi_prev;
2862 if (copy_options && wip->wi_optset)
2863 {
2864 clear_winopt(&wip->wi_opt);
2865#ifdef FEAT_FOLDING
2866 deleteFoldRecurse(&wip->wi_folds);
2867#endif
2868 }
2869 }
2870 if (lnum != 0)
2871 {
2872 wip->wi_fpos.lnum = lnum;
2873 wip->wi_fpos.col = col;
2874 }
2875 if (copy_options)
2876 {
2877 /* Save the window-specific option values. */
2878 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2879#ifdef FEAT_FOLDING
2880 wip->wi_fold_manual = win->w_fold_manual;
2881 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2882#endif
2883 wip->wi_optset = TRUE;
2884 }
2885
2886 /* insert the entry in front of the list */
2887 wip->wi_next = buf->b_wininfo;
2888 buf->b_wininfo = wip;
2889 wip->wi_prev = NULL;
2890 if (wip->wi_next)
2891 wip->wi_next->wi_prev = wip;
2892
2893 return;
2894}
2895
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002896#ifdef FEAT_DIFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01002897static int wininfo_other_tab_diff(wininfo_T *wip);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002898
2899/*
2900 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2901 * page. That's because a diff is local to a tab page.
2902 */
2903 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002904wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002905{
2906 win_T *wp;
2907
2908 if (wip->wi_opt.wo_diff)
2909 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002910 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002911 /* return FALSE when it's a window in the current tab page, thus
2912 * the buffer was in diff mode here */
2913 if (wip->wi_win == wp)
2914 return FALSE;
2915 return TRUE;
2916 }
2917 return FALSE;
2918}
2919#endif
2920
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921/*
2922 * Find info for the current window in buffer "buf".
2923 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002924 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2925 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 * Returns NULL when there isn't any info.
2927 */
2928 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002929find_wininfo(
2930 buf_T *buf,
2931 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932{
2933 wininfo_T *wip;
2934
2935 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002936 if (wip->wi_win == curwin
2937#ifdef FEAT_DIFF
2938 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2939#endif
2940 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002942
2943 /* If no wininfo for curwin, use the first in the list (that doesn't have
2944 * 'diff' set and is in another tab page). */
2945 if (wip == NULL)
2946 {
2947#ifdef FEAT_DIFF
2948 if (skip_diff_buffer)
2949 {
2950 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2951 if (!wininfo_other_tab_diff(wip))
2952 break;
2953 }
2954 else
2955#endif
2956 wip = buf->b_wininfo;
2957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 return wip;
2959}
2960
2961/*
2962 * Reset the local window options to the values last used in this window.
2963 * If the buffer wasn't used in this window before, use the values from
2964 * the most recently used window. If the values were never set, use the
2965 * global values for the window.
2966 */
2967 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002968get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969{
2970 wininfo_T *wip;
2971
2972 clear_winopt(&curwin->w_onebuf_opt);
2973#ifdef FEAT_FOLDING
2974 clearFolding(curwin);
2975#endif
2976
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002977 wip = find_wininfo(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 if (wip != NULL && wip->wi_optset)
2979 {
2980 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2981#ifdef FEAT_FOLDING
2982 curwin->w_fold_manual = wip->wi_fold_manual;
2983 curwin->w_foldinvalid = TRUE;
2984 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2985#endif
2986 }
2987 else
2988 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2989
2990#ifdef FEAT_FOLDING
2991 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2992 if (p_fdls >= 0)
2993 curwin->w_p_fdl = p_fdls;
2994#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002995#ifdef FEAT_SYN_HL
2996 check_colorcolumn(curwin);
2997#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998}
2999
3000/*
3001 * Find the position (lnum and col) for the buffer 'buf' for the current
3002 * window.
3003 * Returns a pointer to no_position if no position is found.
3004 */
3005 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003006buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007{
3008 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003009 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003011 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 if (wip != NULL)
3013 return &(wip->wi_fpos);
3014 else
3015 return &no_position;
3016}
3017
3018/*
3019 * Find the lnum for the buffer 'buf' for the current window.
3020 */
3021 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01003022buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023{
3024 return buflist_findfpos(buf)->lnum;
3025}
3026
3027#if defined(FEAT_LISTCMDS) || defined(PROTO)
3028/*
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02003029 * List all known file names (for :files and :buffers command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003032buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033{
3034 buf_T *buf;
3035 int len;
3036 int i;
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003037 int ro_char;
3038 int changed_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039
3040 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
3041 {
3042 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02003043 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3044 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3045 || (vim_strchr(eap->arg, '+')
3046 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3047 || (vim_strchr(eap->arg, 'a')
3048 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
3049 || (vim_strchr(eap->arg, 'h')
3050 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3051 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3052 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3053 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3054 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3055 || (vim_strchr(eap->arg, '#')
3056 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003059 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 else
3061 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003062 if (message_filtered(NameBuff))
3063 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003065 changed_char = (buf->b_flags & BF_READERR) ? 'x'
3066 : (bufIsChanged(buf) ? '+' : ' ');
3067#ifdef FEAT_TERMINAL
3068 if (term_job_running(buf->b_term))
3069 {
3070 ro_char = 'R';
3071 changed_char = ' '; /* bufIsChanged() returns TRUE to avoid
3072 * closing, but it's not actually changed. */
3073 }
3074 else if (buf->b_term != NULL)
3075 ro_char = 'F';
3076 else
3077#endif
3078 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' ');
3079
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003080 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003081 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 buf->b_fnum,
3083 buf->b_p_bl ? ' ' : 'u',
3084 buf == curbuf ? '%' :
3085 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3086 buf->b_ml.ml_mfp == NULL ? ' ' :
3087 (buf->b_nwindows == 0 ? 'h' : 'a'),
Bram Moolenaar304b64c2017-08-13 20:43:48 +02003088 ro_char,
3089 changed_char,
Bram Moolenaar51485f02005-06-04 21:55:20 +00003090 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003091 if (len > IOSIZE - 20)
3092 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093
3094 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095 i = 40 - vim_strsize(IObuff);
3096 do
3097 {
3098 IObuff[len++] = ' ';
3099 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003100 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3101 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003102 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 msg_outtrans(IObuff);
3104 out_flush(); /* output one line at a time */
3105 ui_breakcheck();
3106 }
3107}
3108#endif
3109
3110/*
3111 * Get file name and line number for file 'fnum'.
3112 * Used by DoOneCmd() for translating '%' and '#'.
3113 * Used by insert_reg() and cmdline_paste() for '#' register.
3114 * Return FAIL if not found, OK for success.
3115 */
3116 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003117buflist_name_nr(
3118 int fnum,
3119 char_u **fname,
3120 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121{
3122 buf_T *buf;
3123
3124 buf = buflist_findnr(fnum);
3125 if (buf == NULL || buf->b_fname == NULL)
3126 return FAIL;
3127
3128 *fname = buf->b_fname;
3129 *lnum = buflist_findlnum(buf);
3130
3131 return OK;
3132}
3133
3134/*
3135 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3136 * The file name with the full path is also remembered, for when :cd is used.
3137 * Returns FAIL for failure (file name already in use by other buffer)
3138 * OK otherwise.
3139 */
3140 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003141setfname(
3142 buf_T *buf,
3143 char_u *ffname,
3144 char_u *sfname,
3145 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146{
Bram Moolenaar81695252004-12-29 20:58:21 +00003147 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003149 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150#endif
3151
3152 if (ffname == NULL || *ffname == NUL)
3153 {
3154 /* Removing the name. */
3155 vim_free(buf->b_ffname);
3156 vim_free(buf->b_sfname);
3157 buf->b_ffname = NULL;
3158 buf->b_sfname = NULL;
3159#ifdef UNIX
3160 st.st_dev = (dev_T)-1;
3161#endif
3162 }
3163 else
3164 {
3165 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3166 if (ffname == NULL) /* out of memory */
3167 return FAIL;
3168
3169 /*
3170 * if the file name is already used in another buffer:
3171 * - if the buffer is loaded, fail
3172 * - if the buffer is not loaded, delete it from the list
3173 */
3174#ifdef UNIX
3175 if (mch_stat((char *)ffname, &st) < 0)
3176 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003177#endif
3178 if (!(buf->b_flags & BF_DUMMY))
3179#ifdef UNIX
3180 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003182 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183#endif
3184 if (obuf != NULL && obuf != buf)
3185 {
3186 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3187 {
3188 if (message)
3189 EMSG(_("E95: Buffer with this name already exists"));
3190 vim_free(ffname);
3191 return FAIL;
3192 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003193 /* delete from the list */
3194 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 }
3196 sfname = vim_strsave(sfname);
3197 if (ffname == NULL || sfname == NULL)
3198 {
3199 vim_free(sfname);
3200 vim_free(ffname);
3201 return FAIL;
3202 }
3203#ifdef USE_FNAME_CASE
3204# ifdef USE_LONG_FNAME
3205 if (USE_LONG_FNAME)
3206# endif
3207 fname_case(sfname, 0); /* set correct case for short file name */
3208#endif
3209 vim_free(buf->b_ffname);
3210 vim_free(buf->b_sfname);
3211 buf->b_ffname = ffname;
3212 buf->b_sfname = sfname;
3213 }
3214 buf->b_fname = buf->b_sfname;
3215#ifdef UNIX
3216 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003217 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 else
3219 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003220 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 buf->b_dev = st.st_dev;
3222 buf->b_ino = st.st_ino;
3223 }
3224#endif
3225
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227
3228 buf_name_changed(buf);
3229 return OK;
3230}
3231
3232/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003233 * Crude way of changing the name of a buffer. Use with care!
3234 * The name should be relative to the current directory.
3235 */
3236 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003237buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003238{
3239 buf_T *buf;
3240
3241 buf = buflist_findnr(fnum);
3242 if (buf != NULL)
3243 {
3244 vim_free(buf->b_sfname);
3245 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003246 buf->b_ffname = vim_strsave(name);
3247 buf->b_sfname = NULL;
3248 /* Allocate ffname and expand into full path. Also resolves .lnk
3249 * files on Win32. */
3250 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003251 buf->b_fname = buf->b_sfname;
3252 }
3253}
3254
3255/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 * Take care of what needs to be done when the name of buffer "buf" has
3257 * changed.
3258 */
3259 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003260buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261{
3262 /*
3263 * If the file name changed, also change the name of the swapfile
3264 */
3265 if (buf->b_ml.ml_mfp != NULL)
3266 ml_setname(buf);
3267
3268 if (curwin->w_buffer == buf)
3269 check_arg_idx(curwin); /* check file name for arg list */
3270#ifdef FEAT_TITLE
3271 maketitle(); /* set window title */
3272#endif
3273#ifdef FEAT_WINDOWS
3274 status_redraw_all(); /* status lines need to be redrawn */
3275#endif
3276 fmarks_check_names(buf); /* check named file marks */
3277 ml_timestamp(buf); /* reset timestamp */
3278}
3279
3280/*
3281 * set alternate file name for current window
3282 *
3283 * Used by do_one_cmd(), do_write() and do_ecmd().
3284 * Return the buffer.
3285 */
3286 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003287setaltfname(
3288 char_u *ffname,
3289 char_u *sfname,
3290 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291{
3292 buf_T *buf;
3293
3294 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3295 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003296 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 curwin->w_alt_fnum = buf->b_fnum;
3298 return buf;
3299}
3300
3301/*
3302 * Get alternate file name for current window.
3303 * Return NULL if there isn't any, and give error message if requested.
3304 */
3305 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003306getaltfname(
3307 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308{
3309 char_u *fname;
3310 linenr_T dummy;
3311
3312 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3313 {
3314 if (errmsg)
3315 EMSG(_(e_noalt));
3316 return NULL;
3317 }
3318 return fname;
3319}
3320
3321/*
3322 * Add a file name to the buflist and return its number.
3323 * Uses same flags as buflist_new(), except BLN_DUMMY.
3324 *
3325 * used by qf_init(), main() and doarglist()
3326 */
3327 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003328buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329{
3330 buf_T *buf;
3331
3332 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3333 if (buf != NULL)
3334 return buf->b_fnum;
3335 return 0;
3336}
3337
3338#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3339/*
3340 * Adjust slashes in file names. Called after 'shellslash' was set.
3341 */
3342 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003343buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344{
3345 buf_T *bp;
3346
Bram Moolenaar29323592016-07-24 22:04:11 +02003347 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 {
3349 if (bp->b_ffname != NULL)
3350 slash_adjust(bp->b_ffname);
3351 if (bp->b_sfname != NULL)
3352 slash_adjust(bp->b_sfname);
3353 }
3354}
3355#endif
3356
3357/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003358 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 * Also save the local window option values.
3360 */
3361 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003362buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003364 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365}
3366
3367/*
3368 * Return TRUE if 'ffname' is not the same file as current file.
3369 * Fname must have a full path (expanded by mch_FullName()).
3370 */
3371 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003372otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373{
3374 return otherfile_buf(curbuf, ffname
3375#ifdef UNIX
3376 , NULL
3377#endif
3378 );
3379}
3380
3381 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003382otherfile_buf(
3383 buf_T *buf,
3384 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003386 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003388 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389{
3390 /* no name is different */
3391 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3392 return TRUE;
3393 if (fnamecmp(ffname, buf->b_ffname) == 0)
3394 return FALSE;
3395#ifdef UNIX
3396 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003397 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398
Bram Moolenaar8767f522016-07-01 17:17:39 +02003399 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 if (stp == NULL)
3401 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003402 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 st.st_dev = (dev_T)-1;
3404 stp = &st;
3405 }
3406 /* Use dev/ino to check if the files are the same, even when the names
3407 * are different (possible with links). Still need to compare the
3408 * name above, for when the file doesn't exist yet.
3409 * Problem: The dev/ino changes when a file is deleted (and created
3410 * again) and remains the same when renamed/moved. We don't want to
3411 * mch_stat() each buffer each time, that would be too slow. Get the
3412 * dev/ino again when they appear to match, but not when they appear
3413 * to be different: Could skip a buffer when it's actually the same
3414 * file. */
3415 if (buf_same_ino(buf, stp))
3416 {
3417 buf_setino(buf);
3418 if (buf_same_ino(buf, stp))
3419 return FALSE;
3420 }
3421 }
3422#endif
3423 return TRUE;
3424}
3425
3426#if defined(UNIX) || defined(PROTO)
3427/*
3428 * Set inode and device number for a buffer.
3429 * Must always be called when b_fname is changed!.
3430 */
3431 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003432buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003434 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435
3436 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3437 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003438 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 buf->b_dev = st.st_dev;
3440 buf->b_ino = st.st_ino;
3441 }
3442 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003443 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444}
3445
3446/*
3447 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3448 */
3449 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003450buf_same_ino(
3451 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003452 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003454 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 && stp->st_dev == buf->b_dev
3456 && stp->st_ino == buf->b_ino);
3457}
3458#endif
3459
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003460/*
3461 * Print info about the current buffer.
3462 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003464fileinfo(
3465 int fullname, /* when non-zero print full path */
3466 int shorthelp,
3467 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468{
3469 char_u *name;
3470 int n;
3471 char_u *p;
3472 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003473 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474
3475 buffer = alloc(IOSIZE);
3476 if (buffer == NULL)
3477 return;
3478
3479 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3480 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003481 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 p = buffer + STRLEN(buffer);
3483 }
3484 else
3485 p = buffer;
3486
3487 *p++ = '"';
3488 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003489 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 else
3491 {
3492 if (!fullname && curbuf->b_fname != NULL)
3493 name = curbuf->b_fname;
3494 else
3495 name = curbuf->b_ffname;
3496 home_replace(shorthelp ? curbuf : NULL, name, p,
3497 (int)(IOSIZE - (p - buffer)), TRUE);
3498 }
3499
Bram Moolenaara800b422010-06-27 01:15:55 +02003500 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 curbufIsChanged() ? (shortmess(SHM_MOD)
3502 ? " [+]" : _(" [Modified]")) : " ",
3503 (curbuf->b_flags & BF_NOTEDITED)
3504#ifdef FEAT_QUICKFIX
3505 && !bt_dontwrite(curbuf)
3506#endif
3507 ? _("[Not edited]") : "",
3508 (curbuf->b_flags & BF_NEW)
3509#ifdef FEAT_QUICKFIX
3510 && !bt_dontwrite(curbuf)
3511#endif
3512 ? _("[New file]") : "",
3513 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003514 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 : _("[readonly]")) : "",
3516 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3517 || curbuf->b_p_ro) ?
3518 " " : "");
3519 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3520 * causes an overflow, thus for large numbers divide instead. */
3521 if (curwin->w_cursor.lnum > 1000000L)
3522 n = (int)(((long)curwin->w_cursor.lnum) /
3523 ((long)curbuf->b_ml.ml_line_count / 100L));
3524 else
3525 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3526 (long)curbuf->b_ml.ml_line_count);
3527 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3528 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003529 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 }
3531#ifdef FEAT_CMDL_INFO
3532 else if (p_ru)
3533 {
3534 /* Current line and column are already on the screen -- webb */
3535 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003536 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003538 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 (long)curbuf->b_ml.ml_line_count, n);
3540 }
3541#endif
3542 else
3543 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003544 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 _("line %ld of %ld --%d%%-- col "),
3546 (long)curwin->w_cursor.lnum,
3547 (long)curbuf->b_ml.ml_line_count,
3548 n);
3549 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003550 len = STRLEN(buffer);
3551 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3553 }
3554
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003555 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556
3557 if (dont_truncate)
3558 {
3559 /* Temporarily set msg_scroll to avoid the message being truncated.
3560 * First call msg_start() to get the message in the right place. */
3561 msg_start();
3562 n = msg_scroll;
3563 msg_scroll = TRUE;
3564 msg(buffer);
3565 msg_scroll = n;
3566 }
3567 else
3568 {
3569 p = msg_trunc_attr(buffer, FALSE, 0);
3570 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 /* Need to repeat the message after redrawing when:
3572 * - When restart_edit is set (otherwise there will be a delay
3573 * before redrawing).
3574 * - When the screen was scrolled but there is no wait-return
3575 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003576 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 }
3578
3579 vim_free(buffer);
3580}
3581
3582 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003583col_print(
3584 char_u *buf,
3585 size_t buflen,
3586 int col,
3587 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588{
3589 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003590 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003592 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593}
3594
3595#if defined(FEAT_TITLE) || defined(PROTO)
3596/*
3597 * put file name in title bar of window and in icon title
3598 */
3599
3600static char_u *lasttitle = NULL;
3601static char_u *lasticon = NULL;
3602
3603 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003604maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605{
3606 char_u *p;
3607 char_u *t_str = NULL;
3608 char_u *i_name;
3609 char_u *i_str = NULL;
3610 int maxlen = 0;
3611 int len;
3612 int mustset;
3613 char_u buf[IOSIZE];
3614 int off;
3615
3616 if (!redrawing())
3617 {
3618 /* Postpone updating the title when 'lazyredraw' is set. */
3619 need_maketitle = TRUE;
3620 return;
3621 }
3622
3623 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003624 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 return;
3626
3627 if (p_title)
3628 {
3629 if (p_titlelen > 0)
3630 {
3631 maxlen = p_titlelen * Columns / 100;
3632 if (maxlen < 10)
3633 maxlen = 10;
3634 }
3635
3636 t_str = buf;
3637 if (*p_titlestring != NUL)
3638 {
3639#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003640 if (stl_syntax & STL_IN_TITLE)
3641 {
3642 int use_sandbox = FALSE;
3643 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003644
3645# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003646 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003647# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003648 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003650 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003651 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003652 if (called_emsg)
3653 set_string_option_direct((char_u *)"titlestring", -1,
3654 (char_u *)"", OPT_FREE, SID_ERROR);
3655 called_emsg |= save_called_emsg;
3656 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 else
3658#endif
3659 t_str = p_titlestring;
3660 }
3661 else
3662 {
3663 /* format: "fname + (path) (1 of 2) - VIM" */
3664
Bram Moolenaar2c666692012-09-05 13:30:40 +02003665#define SPACE_FOR_FNAME (IOSIZE - 100)
3666#define SPACE_FOR_DIR (IOSIZE - 20)
3667#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003669 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar21554412017-07-24 21:44:43 +02003670#ifdef FEAT_TERMINAL
3671 else if (curbuf->b_term != NULL)
3672 {
3673 vim_strncpy(buf, term_get_status_text(curbuf->b_term),
3674 SPACE_FOR_FNAME);
3675 }
3676#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 else
3678 {
3679 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003680 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 }
3683
Bram Moolenaar21554412017-07-24 21:44:43 +02003684#ifdef FEAT_TERMINAL
3685 if (curbuf->b_term == NULL)
3686#endif
3687 switch (bufIsChanged(curbuf)
3688 + (curbuf->b_p_ro * 2)
3689 + (!curbuf->b_p_ma * 4))
3690 {
3691 case 1: STRCAT(buf, " +"); break;
3692 case 2: STRCAT(buf, " ="); break;
3693 case 3: STRCAT(buf, " =+"); break;
3694 case 4:
3695 case 6: STRCAT(buf, " -"); break;
3696 case 5:
3697 case 7: STRCAT(buf, " -+"); break;
3698 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699
Bram Moolenaar21554412017-07-24 21:44:43 +02003700 if (curbuf->b_fname != NULL
3701#ifdef FEAT_TERMINAL
3702 && curbuf->b_term == NULL
3703#endif
3704 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 {
3706 /* Get path of file, replace home dir with ~ */
3707 off = (int)STRLEN(buf);
3708 buf[off++] = ' ';
3709 buf[off++] = '(';
3710 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003711 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712#ifdef BACKSLASH_IN_FILENAME
3713 /* avoid "c:/name" to be reduced to "c" */
3714 if (isalpha(buf[off]) && buf[off + 1] == ':')
3715 off += 2;
3716#endif
3717 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003718 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 if (p == buf + off)
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003720 {
Bram Moolenaar21554412017-07-24 21:44:43 +02003721 /* must be a help buffer */
3722 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003723 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02003724 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003727
Bram Moolenaar2c666692012-09-05 13:30:40 +02003728 /* Translate unprintable chars and concatenate. Keep some
3729 * room for the server name. When there is no room (very long
3730 * file name) use (...). */
3731 if (off < SPACE_FOR_DIR)
3732 {
3733 p = transstr(buf + off);
3734 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3735 vim_free(p);
3736 }
3737 else
3738 {
3739 vim_strncpy(buf + off, (char_u *)"...",
3740 (size_t)(SPACE_FOR_ARGNR - off));
3741 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 STRCAT(buf, ")");
3743 }
3744
Bram Moolenaar2c666692012-09-05 13:30:40 +02003745 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746
3747#if defined(FEAT_CLIENTSERVER)
3748 if (serverName != NULL)
3749 {
3750 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003751 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 }
3753 else
3754#endif
3755 STRCAT(buf, " - VIM");
3756
3757 if (maxlen > 0)
3758 {
3759 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003760 if (vim_strsize(buf) > maxlen)
3761 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 }
3763 }
3764 }
3765 mustset = ti_change(t_str, &lasttitle);
3766
3767 if (p_icon)
3768 {
3769 i_str = buf;
3770 if (*p_iconstring != NUL)
3771 {
3772#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003773 if (stl_syntax & STL_IN_ICON)
3774 {
3775 int use_sandbox = FALSE;
3776 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003777
3778# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003779 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003780# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003781 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003783 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003784 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003785 if (called_emsg)
3786 set_string_option_direct((char_u *)"iconstring", -1,
3787 (char_u *)"", OPT_FREE, SID_ERROR);
3788 called_emsg |= save_called_emsg;
3789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 else
3791#endif
3792 i_str = p_iconstring;
3793 }
3794 else
3795 {
3796 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003797 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 else /* use file name only in icon */
3799 i_name = gettail(curbuf->b_ffname);
3800 *i_str = NUL;
3801 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003802 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 if (len > 100)
3804 {
3805 len -= 100;
3806#ifdef FEAT_MBYTE
3807 if (has_mbyte)
3808 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3809#endif
3810 i_name += len;
3811 }
3812 STRCPY(i_str, i_name);
3813 trans_characters(i_str, IOSIZE);
3814 }
3815 }
3816
3817 mustset |= ti_change(i_str, &lasticon);
3818
3819 if (mustset)
3820 resettitle();
3821}
3822
3823/*
3824 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3825 * from "str" if it does.
3826 * Return TRUE when "*last" changed.
3827 */
3828 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003829ti_change(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830{
3831 if ((str == NULL) != (*last == NULL)
3832 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3833 {
3834 vim_free(*last);
3835 if (str == NULL)
3836 *last = NULL;
3837 else
3838 *last = vim_strsave(str);
3839 return TRUE;
3840 }
3841 return FALSE;
3842}
3843
3844/*
3845 * Put current window title back (used after calling a shell)
3846 */
3847 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003848resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849{
3850 mch_settitle(lasttitle, lasticon);
3851}
Bram Moolenaarea408852005-06-25 22:49:46 +00003852
3853# if defined(EXITFREE) || defined(PROTO)
3854 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003855free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003856{
3857 vim_free(lasttitle);
3858 vim_free(lasticon);
3859}
3860# endif
3861
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862#endif /* FEAT_TITLE */
3863
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003864#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003866 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 * Return length of string in screen cells.
3868 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003869 * Normally works for window "wp", except when working for 'tabline' then it
3870 * is "curwin".
3871 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 * Items are drawn interspersed with the text that surrounds it
3873 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3874 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3875 *
3876 * If maxwidth is not zero, the string will be filled at any middle marker
3877 * or truncated if too long, fillchar is used for all whitespace.
3878 */
3879 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003880build_stl_str_hl(
3881 win_T *wp,
3882 char_u *out, /* buffer to write into != NameBuff */
3883 size_t outlen, /* length of out[] */
3884 char_u *fmt,
3885 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3886 int fillchar,
3887 int maxwidth,
3888 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3889 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890{
3891 char_u *p;
3892 char_u *s;
3893 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003894 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895#ifdef FEAT_EVAL
3896 win_T *o_curwin;
3897 buf_T *o_curbuf;
3898#endif
3899 int empty_line;
3900 colnr_T virtcol;
3901 long l;
3902 long n;
3903 int prevchar_isflag;
3904 int prevchar_isitem;
3905 int itemisflag;
3906 int fillable;
3907 char_u *str;
3908 long num;
3909 int width;
3910 int itemcnt;
3911 int curitem;
3912 int groupitem[STL_MAX_ITEM];
3913 int groupdepth;
3914 struct stl_item
3915 {
3916 char_u *start;
3917 int minwid;
3918 int maxwid;
3919 enum
3920 {
3921 Normal,
3922 Empty,
3923 Group,
3924 Middle,
3925 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003926 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 Trunc
3928 } type;
3929 } item[STL_MAX_ITEM];
3930 int minwid;
3931 int maxwid;
3932 int zeropad;
3933 char_u base;
3934 char_u opt;
3935#define TMPLEN 70
3936 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003937 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003938 struct stl_hlrec *sp;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003939
3940#ifdef FEAT_EVAL
3941 /*
3942 * When the format starts with "%!" then evaluate it as an expression and
3943 * use the result as the actual format string.
3944 */
3945 if (fmt[0] == '%' && fmt[1] == '!')
3946 {
3947 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3948 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003949 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003950 }
3951#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952
3953 if (fillchar == 0)
3954 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003955#ifdef FEAT_MBYTE
3956 /* Can't handle a multi-byte fill character yet. */
3957 else if (mb_char2len(fillchar) > 1)
3958 fillchar = '-';
3959#endif
3960
Bram Moolenaar567199b2013-04-24 16:52:36 +02003961 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3962 * p will become invalid when getting another buffer line. */
3963 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3964 empty_line = (*p == NUL);
3965
3966 /* Get the byte value now, in case we need it below. This is more
3967 * efficient than making a copy of the line. */
3968 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3969 byteval = 0;
3970 else
3971#ifdef FEAT_MBYTE
3972 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3973#else
3974 byteval = p[wp->w_cursor.col];
3975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976
3977 groupdepth = 0;
3978 p = out;
3979 curitem = 0;
3980 prevchar_isflag = TRUE;
3981 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003982 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003984 if (curitem == STL_MAX_ITEM)
3985 {
3986 /* There are too many items. Add the error code to the statusline
3987 * to give the user a hint about what went wrong. */
3988 if (p + 6 < out + outlen)
3989 {
3990 mch_memmove(p, " E541", (size_t)5);
3991 p += 5;
3992 }
3993 break;
3994 }
3995
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 if (*s != NUL && *s != '%')
3997 prevchar_isflag = prevchar_isitem = FALSE;
3998
3999 /*
4000 * Handle up to the next '%' or the end.
4001 */
4002 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
4003 *p++ = *s++;
4004 if (*s == NUL || p + 1 >= out + outlen)
4005 break;
4006
4007 /*
4008 * Handle one '%' item.
4009 */
4010 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01004011 if (*s == NUL) /* ignore trailing % */
4012 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 if (*s == '%')
4014 {
4015 if (p + 1 >= out + outlen)
4016 break;
4017 *p++ = *s++;
4018 prevchar_isflag = prevchar_isitem = FALSE;
4019 continue;
4020 }
4021 if (*s == STL_MIDDLEMARK)
4022 {
4023 s++;
4024 if (groupdepth > 0)
4025 continue;
4026 item[curitem].type = Middle;
4027 item[curitem++].start = p;
4028 continue;
4029 }
4030 if (*s == STL_TRUNCMARK)
4031 {
4032 s++;
4033 item[curitem].type = Trunc;
4034 item[curitem++].start = p;
4035 continue;
4036 }
4037 if (*s == ')')
4038 {
4039 s++;
4040 if (groupdepth < 1)
4041 continue;
4042 groupdepth--;
4043
4044 t = item[groupitem[groupdepth]].start;
4045 *p = NUL;
4046 l = vim_strsize(t);
4047 if (curitem > groupitem[groupdepth] + 1
4048 && item[groupitem[groupdepth]].minwid == 0)
4049 {
4050 /* remove group if all items are empty */
4051 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaaraf6e36f2016-03-08 12:56:33 +01004052 if (item[n].type == Normal || item[n].type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 break;
4054 if (n == curitem)
4055 {
4056 p = t;
4057 l = 0;
4058 }
4059 }
4060 if (l > item[groupitem[groupdepth]].maxwid)
4061 {
4062 /* truncate, remove n bytes of text at the start */
4063#ifdef FEAT_MBYTE
4064 if (has_mbyte)
4065 {
4066 /* Find the first character that should be included. */
4067 n = 0;
4068 while (l >= item[groupitem[groupdepth]].maxwid)
4069 {
4070 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004071 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 }
4073 }
4074 else
4075#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004076 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077
4078 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004079 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 p = p - n + 1;
4081#ifdef FEAT_MBYTE
4082 /* Fill up space left over by half a double-wide char. */
4083 while (++l < item[groupitem[groupdepth]].minwid)
4084 *p++ = fillchar;
4085#endif
4086
4087 /* correct the start of the items for the truncation */
4088 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4089 {
4090 item[l].start -= n;
4091 if (item[l].start < t)
4092 item[l].start = t;
4093 }
4094 }
4095 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4096 {
4097 /* fill */
4098 n = item[groupitem[groupdepth]].minwid;
4099 if (n < 0)
4100 {
4101 /* fill by appending characters */
4102 n = 0 - n;
4103 while (l++ < n && p + 1 < out + outlen)
4104 *p++ = fillchar;
4105 }
4106 else
4107 {
4108 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004109 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 l = n - l;
4111 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004112 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 p += l;
4114 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4115 item[n].start += l;
4116 for ( ; l > 0; l--)
4117 *t++ = fillchar;
4118 }
4119 }
4120 continue;
4121 }
4122 minwid = 0;
4123 maxwid = 9999;
4124 zeropad = FALSE;
4125 l = 1;
4126 if (*s == '0')
4127 {
4128 s++;
4129 zeropad = TRUE;
4130 }
4131 if (*s == '-')
4132 {
4133 s++;
4134 l = -1;
4135 }
4136 if (VIM_ISDIGIT(*s))
4137 {
4138 minwid = (int)getdigits(&s);
4139 if (minwid < 0) /* overflow */
4140 minwid = 0;
4141 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004142 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 {
4144 item[curitem].type = Highlight;
4145 item[curitem].start = p;
4146 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4147 s++;
4148 curitem++;
4149 continue;
4150 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004151 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4152 {
4153 if (*s == STL_TABCLOSENR)
4154 {
4155 if (minwid == 0)
4156 {
4157 /* %X ends the close label, go back to the previously
4158 * define tab label nr. */
4159 for (n = curitem - 1; n >= 0; --n)
4160 if (item[n].type == TabPage && item[n].minwid >= 0)
4161 {
4162 minwid = item[n].minwid;
4163 break;
4164 }
4165 }
4166 else
4167 /* close nrs are stored as negative values */
4168 minwid = - minwid;
4169 }
4170 item[curitem].type = TabPage;
4171 item[curitem].start = p;
4172 item[curitem].minwid = minwid;
4173 s++;
4174 curitem++;
4175 continue;
4176 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 if (*s == '.')
4178 {
4179 s++;
4180 if (VIM_ISDIGIT(*s))
4181 {
4182 maxwid = (int)getdigits(&s);
4183 if (maxwid <= 0) /* overflow */
4184 maxwid = 50;
4185 }
4186 }
4187 minwid = (minwid > 50 ? 50 : minwid) * l;
4188 if (*s == '(')
4189 {
4190 groupitem[groupdepth++] = curitem;
4191 item[curitem].type = Group;
4192 item[curitem].start = p;
4193 item[curitem].minwid = minwid;
4194 item[curitem].maxwid = maxwid;
4195 s++;
4196 curitem++;
4197 continue;
4198 }
4199 if (vim_strchr(STL_ALL, *s) == NULL)
4200 {
4201 s++;
4202 continue;
4203 }
4204 opt = *s++;
4205
4206 /* OK - now for the real work */
4207 base = 'D';
4208 itemisflag = FALSE;
4209 fillable = TRUE;
4210 num = -1;
4211 str = NULL;
4212 switch (opt)
4213 {
4214 case STL_FILEPATH:
4215 case STL_FULLPATH:
4216 case STL_FILENAME:
4217 fillable = FALSE; /* don't change ' ' to fillchar */
4218 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004219 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 else
4221 {
4222 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004223 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4225 }
4226 trans_characters(NameBuff, MAXPATHL);
4227 if (opt != STL_FILENAME)
4228 str = NameBuff;
4229 else
4230 str = gettail(NameBuff);
4231 break;
4232
4233 case STL_VIM_EXPR: /* '{' */
4234 itemisflag = TRUE;
4235 t = p;
4236 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4237 *p++ = *s++;
4238 if (*s != '}') /* missing '}' or out of space */
4239 break;
4240 s++;
4241 *p = 0;
4242 p = t;
4243
4244#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004245 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 set_internal_string_var((char_u *)"actual_curbuf", tmp);
4247
4248 o_curbuf = curbuf;
4249 o_curwin = curwin;
4250 curwin = wp;
4251 curbuf = wp->w_buffer;
4252
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004253 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254
4255 curwin = o_curwin;
4256 curbuf = o_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004257 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258
4259 if (str != NULL && *str != 0)
4260 {
4261 if (*skipdigits(str) == NUL)
4262 {
4263 num = atoi((char *)str);
4264 vim_free(str);
4265 str = NULL;
4266 itemisflag = FALSE;
4267 }
4268 }
4269#endif
4270 break;
4271
4272 case STL_LINE:
4273 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4274 ? 0L : (long)(wp->w_cursor.lnum);
4275 break;
4276
4277 case STL_NUMLINES:
4278 num = wp->w_buffer->b_ml.ml_line_count;
4279 break;
4280
4281 case STL_COLUMN:
4282 num = !(State & INSERT) && empty_line
4283 ? 0 : (int)wp->w_cursor.col + 1;
4284 break;
4285
4286 case STL_VIRTCOL:
4287 case STL_VIRTCOL_ALT:
4288 /* In list mode virtcol needs to be recomputed */
4289 virtcol = wp->w_virtcol;
4290 if (wp->w_p_list && lcs_tab1 == NUL)
4291 {
4292 wp->w_p_list = FALSE;
4293 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4294 wp->w_p_list = TRUE;
4295 }
4296 ++virtcol;
4297 /* Don't display %V if it's the same as %c. */
4298 if (opt == STL_VIRTCOL_ALT
4299 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4300 ? 0 : (int)wp->w_cursor.col + 1)))
4301 break;
4302 num = (long)virtcol;
4303 break;
4304
4305 case STL_PERCENTAGE:
4306 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4307 (long)wp->w_buffer->b_ml.ml_line_count);
4308 break;
4309
4310 case STL_ALTPERCENT:
4311 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004312 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 break;
4314
4315 case STL_ARGLISTSTAT:
4316 fillable = FALSE;
4317 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004318 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 str = tmp;
4320 break;
4321
4322 case STL_KEYMAP:
4323 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004324 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 str = tmp;
4326 break;
4327 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004328#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004329 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330#else
4331 num = 0;
4332#endif
4333 break;
4334
4335 case STL_BUFNO:
4336 num = wp->w_buffer->b_fnum;
4337 break;
4338
4339 case STL_OFFSET_X:
4340 base = 'X';
4341 case STL_OFFSET:
4342#ifdef FEAT_BYTEOFF
4343 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4344 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4345 0L : l + 1 + (!(State & INSERT) && empty_line ?
4346 0 : (int)wp->w_cursor.col);
4347#endif
4348 break;
4349
4350 case STL_BYTEVAL_X:
4351 base = 'X';
4352 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004353 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 if (num == NL)
4355 num = 0;
4356 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4357 num = NL;
4358 break;
4359
4360 case STL_ROFLAG:
4361 case STL_ROFLAG_ALT:
4362 itemisflag = TRUE;
4363 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004364 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 break;
4366
4367 case STL_HELPFLAG:
4368 case STL_HELPFLAG_ALT:
4369 itemisflag = TRUE;
4370 if (wp->w_buffer->b_help)
4371 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004372 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 break;
4374
4375#ifdef FEAT_AUTOCMD
4376 case STL_FILETYPE:
4377 if (*wp->w_buffer->b_p_ft != NUL
4378 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4379 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004380 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4381 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 str = tmp;
4383 }
4384 break;
4385
4386 case STL_FILETYPE_ALT:
4387 itemisflag = TRUE;
4388 if (*wp->w_buffer->b_p_ft != NUL
4389 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4390 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004391 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4392 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 for (t = tmp; *t != 0; t++)
4394 *t = TOUPPER_LOC(*t);
4395 str = tmp;
4396 }
4397 break;
4398#endif
4399
4400#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4401 case STL_PREVIEWFLAG:
4402 case STL_PREVIEWFLAG_ALT:
4403 itemisflag = TRUE;
4404 if (wp->w_p_pvw)
4405 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4406 : _("[Preview]"));
4407 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004408
4409 case STL_QUICKFIX:
4410 if (bt_quickfix(wp->w_buffer))
4411 str = (char_u *)(wp->w_llist_ref
4412 ? _(msg_loclist)
4413 : _(msg_qflist));
4414 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415#endif
4416
4417 case STL_MODIFIED:
4418 case STL_MODIFIED_ALT:
4419 itemisflag = TRUE;
4420 switch ((opt == STL_MODIFIED_ALT)
4421 + bufIsChanged(wp->w_buffer) * 2
4422 + (!wp->w_buffer->b_p_ma) * 4)
4423 {
4424 case 2: str = (char_u *)"[+]"; break;
4425 case 3: str = (char_u *)",+"; break;
4426 case 4: str = (char_u *)"[-]"; break;
4427 case 5: str = (char_u *)",-"; break;
4428 case 6: str = (char_u *)"[+-]"; break;
4429 case 7: str = (char_u *)",+-"; break;
4430 }
4431 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004432
4433 case STL_HIGHLIGHT:
4434 t = s;
4435 while (*s != '#' && *s != NUL)
4436 ++s;
4437 if (*s == '#')
4438 {
4439 item[curitem].type = Highlight;
4440 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004441 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004442 curitem++;
4443 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004444 if (*s != NUL)
4445 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004446 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 }
4448
4449 item[curitem].start = p;
4450 item[curitem].type = Normal;
4451 if (str != NULL && *str)
4452 {
4453 t = str;
4454 if (itemisflag)
4455 {
4456 if ((t[0] && t[1])
4457 && ((!prevchar_isitem && *t == ',')
4458 || (prevchar_isflag && *t == ' ')))
4459 t++;
4460 prevchar_isflag = TRUE;
4461 }
4462 l = vim_strsize(t);
4463 if (l > 0)
4464 prevchar_isitem = TRUE;
4465 if (l > maxwid)
4466 {
4467 while (l >= maxwid)
4468#ifdef FEAT_MBYTE
4469 if (has_mbyte)
4470 {
4471 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004472 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 }
4474 else
4475#endif
4476 l -= byte2cells(*t++);
4477 if (p + 1 >= out + outlen)
4478 break;
4479 *p++ = '<';
4480 }
4481 if (minwid > 0)
4482 {
4483 for (; l < minwid && p + 1 < out + outlen; l++)
4484 {
4485 /* Don't put a "-" in front of a digit. */
4486 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4487 *p++ = ' ';
4488 else
4489 *p++ = fillchar;
4490 }
4491 minwid = 0;
4492 }
4493 else
4494 minwid *= -1;
4495 while (*t && p + 1 < out + outlen)
4496 {
4497 *p++ = *t++;
4498 /* Change a space by fillchar, unless fillchar is '-' and a
4499 * digit follows. */
4500 if (fillable && p[-1] == ' '
4501 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4502 p[-1] = fillchar;
4503 }
4504 for (; l < minwid && p + 1 < out + outlen; l++)
4505 *p++ = fillchar;
4506 }
4507 else if (num >= 0)
4508 {
4509 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4510 char_u nstr[20];
4511
4512 if (p + 20 >= out + outlen)
4513 break; /* not sufficient space */
4514 prevchar_isitem = TRUE;
4515 t = nstr;
4516 if (opt == STL_VIRTCOL_ALT)
4517 {
4518 *t++ = '-';
4519 minwid--;
4520 }
4521 *t++ = '%';
4522 if (zeropad)
4523 *t++ = '0';
4524 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004525 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 *t = 0;
4527
4528 for (n = num, l = 1; n >= nbase; n /= nbase)
4529 l++;
4530 if (opt == STL_VIRTCOL_ALT)
4531 l++;
4532 if (l > maxwid)
4533 {
4534 l += 2;
4535 n = l - maxwid;
4536 while (l-- > maxwid)
4537 num /= nbase;
4538 *t++ = '>';
4539 *t++ = '%';
4540 *t = t[-3];
4541 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004542 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4543 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 }
4545 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004546 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4547 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 p += STRLEN(p);
4549 }
4550 else
4551 item[curitem].type = Empty;
4552
4553 if (opt == STL_VIM_EXPR)
4554 vim_free(str);
4555
4556 if (num >= 0 || (!itemisflag && str && *str))
4557 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4558 curitem++;
4559 }
4560 *p = NUL;
4561 itemcnt = curitem;
4562
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004563#ifdef FEAT_EVAL
4564 if (usefmt != fmt)
4565 vim_free(usefmt);
4566#endif
4567
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 width = vim_strsize(out);
4569 if (maxwidth > 0 && width > maxwidth)
4570 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004571 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 l = 0;
4573 if (itemcnt == 0)
4574 s = out;
4575 else
4576 {
4577 for ( ; l < itemcnt; l++)
4578 if (item[l].type == Trunc)
4579 {
4580 /* Truncate at %< item. */
4581 s = item[l].start;
4582 break;
4583 }
4584 if (l == itemcnt)
4585 {
4586 /* No %< item, truncate first item. */
4587 s = item[0].start;
4588 l = 0;
4589 }
4590 }
4591
4592 if (width - vim_strsize(s) >= maxwidth)
4593 {
4594 /* Truncation mark is beyond max length */
4595#ifdef FEAT_MBYTE
4596 if (has_mbyte)
4597 {
4598 s = out;
4599 width = 0;
4600 for (;;)
4601 {
4602 width += ptr2cells(s);
4603 if (width >= maxwidth)
4604 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004605 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 }
4607 /* Fill up for half a double-wide character. */
4608 while (++width < maxwidth)
4609 *s++ = fillchar;
4610 }
4611 else
4612#endif
4613 s = out + maxwidth - 1;
4614 for (l = 0; l < itemcnt; l++)
4615 if (item[l].start > s)
4616 break;
4617 itemcnt = l;
4618 *s++ = '>';
4619 *s = 0;
4620 }
4621 else
4622 {
4623#ifdef FEAT_MBYTE
4624 if (has_mbyte)
4625 {
4626 n = 0;
4627 while (width >= maxwidth)
4628 {
4629 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004630 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 }
4632 }
4633 else
4634#endif
4635 n = width - maxwidth + 1;
4636 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004637 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 *s = '<';
4639
4640 /* Fill up for half a double-wide character. */
4641 while (++width < maxwidth)
4642 {
4643 s = s + STRLEN(s);
4644 *s++ = fillchar;
4645 *s = NUL;
4646 }
4647
4648 --n; /* count the '<' */
4649 for (; l < itemcnt; l++)
4650 {
4651 if (item[l].start - n >= s)
4652 item[l].start -= n;
4653 else
4654 item[l].start = s;
4655 }
4656 }
4657 width = maxwidth;
4658 }
4659 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4660 {
4661 /* Apply STL_MIDDLE if any */
4662 for (l = 0; l < itemcnt; l++)
4663 if (item[l].type == Middle)
4664 break;
4665 if (l < itemcnt)
4666 {
4667 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004668 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 for (s = item[l].start; s < p; s++)
4670 *s = fillchar;
4671 for (l++; l < itemcnt; l++)
4672 item[l].start += maxwidth - width;
4673 width = maxwidth;
4674 }
4675 }
4676
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004677 /* Store the info about highlighting. */
4678 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004680 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 for (l = 0; l < itemcnt; l++)
4682 {
4683 if (item[l].type == Highlight)
4684 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004685 sp->start = item[l].start;
4686 sp->userhl = item[l].minwid;
4687 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 }
4689 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004690 sp->start = NULL;
4691 sp->userhl = 0;
4692 }
4693
4694 /* Store the info about tab pages labels. */
4695 if (tabtab != NULL)
4696 {
4697 sp = tabtab;
4698 for (l = 0; l < itemcnt; l++)
4699 {
4700 if (item[l].type == TabPage)
4701 {
4702 sp->start = item[l].start;
4703 sp->userhl = item[l].minwid;
4704 sp++;
4705 }
4706 }
4707 sp->start = NULL;
4708 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 }
4710
4711 return width;
4712}
4713#endif /* FEAT_STL_OPT */
4714
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004715#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4716 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004718 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4719 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 */
4721 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004722get_rel_pos(
4723 win_T *wp,
4724 char_u *buf,
4725 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726{
4727 long above; /* number of lines above window */
4728 long below; /* number of lines below window */
4729
Bram Moolenaar0027c212015-01-07 13:31:52 +01004730 if (buflen < 3) /* need at least 3 chars for writing */
4731 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 above = wp->w_topline - 1;
4733#ifdef FEAT_DIFF
4734 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004735 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4736 above = 0; /* All buffer lines are displayed and there is an
4737 * indication of filler lines, that can be considered
4738 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739#endif
4740 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4741 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004742 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4743 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004745 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004747 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 ? (int)(above / ((above + below) / 100L))
4749 : (int)(above * 100L / (above + below)));
4750}
4751#endif
4752
4753/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004754 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 * Return TRUE if it was appended.
4756 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004757 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004758append_arg_number(
4759 win_T *wp,
4760 char_u *buf,
4761 int buflen,
4762 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763{
4764 char_u *p;
4765
4766 if (ARGCOUNT <= 1) /* nothing to do */
4767 return FALSE;
4768
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004769 p = buf + STRLEN(buf); /* go to the end of the buffer */
4770 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 return FALSE;
4772 *p++ = ' ';
4773 *p++ = '(';
4774 if (add_file)
4775 {
4776 STRCPY(p, "file ");
4777 p += 5;
4778 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004779 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4780 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4782 return TRUE;
4783}
4784
4785/*
4786 * If fname is not a full path, make it a full path.
4787 * Returns pointer to allocated memory (NULL for failure).
4788 */
4789 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004790fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791{
4792 /*
4793 * Force expanding the path always for Unix, because symbolic links may
4794 * mess up the full path name, even though it starts with a '/'.
4795 * Also expand when there is ".." in the file name, try to remove it,
4796 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004797 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 * For MS-Windows also expand names like "longna~1" to "longname".
4799 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004800#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 return FullName_save(fname, TRUE);
4802#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004803 if (!vim_isAbsName(fname)
4804 || strstr((char *)fname, "..") != NULL
4805 || strstr((char *)fname, "//") != NULL
4806# ifdef BACKSLASH_IN_FILENAME
4807 || strstr((char *)fname, "\\\\") != NULL
4808# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004809# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004811# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 )
4813 return FullName_save(fname, FALSE);
4814
4815 fname = vim_strsave(fname);
4816
Bram Moolenaar9b942202007-10-03 12:31:33 +00004817# ifdef USE_FNAME_CASE
4818# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004820# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 {
4822 if (fname != NULL)
4823 fname_case(fname, 0); /* set correct case for file name */
4824 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004825# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826
4827 return fname;
4828#endif
4829}
4830
4831/*
4832 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4833 * "ffname" becomes a pointer to allocated memory (or NULL).
4834 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004836fname_expand(
4837 buf_T *buf UNUSED,
4838 char_u **ffname,
4839 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840{
4841 if (*ffname == NULL) /* if no file name given, nothing to do */
4842 return;
4843 if (*sfname == NULL) /* if no short file name given, use ffname */
4844 *sfname = *ffname;
4845 *ffname = fix_fname(*ffname); /* expand to full path */
4846
4847#ifdef FEAT_SHORTCUT
4848 if (!buf->b_p_bin)
4849 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004850 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851
4852 /* If the file name is a shortcut file, use the file it links to. */
4853 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004854 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 {
4856 vim_free(*ffname);
4857 *ffname = rfname;
4858 *sfname = rfname;
4859 }
4860 }
4861#endif
4862}
4863
4864/*
4865 * Get the file name for an argument list entry.
4866 */
4867 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004868alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869{
4870 buf_T *bp;
4871
4872 /* Use the name from the associated buffer if it exists. */
4873 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004874 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 return aep->ae_fname;
4876 return bp->b_fname;
4877}
4878
4879#if defined(FEAT_WINDOWS) || defined(PROTO)
4880/*
4881 * do_arg_all(): Open up to 'count' windows, one for each argument.
4882 */
4883 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004884do_arg_all(
4885 int count,
4886 int forceit, /* hide buffers in current windows */
4887 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888{
4889 int i;
4890 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004891 char_u *opened; /* Array of weight for which args are open:
4892 * 0: not opened
4893 * 1: opened in other tab
4894 * 2: opened in curtab
4895 * 3: opened in curtab and curwin
4896 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004897 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 int use_firstwin = FALSE; /* use first window for arglist */
4899 int split_ret = OK;
4900 int p_ea_save;
4901 alist_T *alist; /* argument list to be used */
4902 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004903 tabpage_T *tpnext;
4904 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004905 win_T *old_curwin, *last_curwin;
4906 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004907 win_T *new_curwin = NULL;
4908 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909
4910 if (ARGCOUNT <= 0)
4911 {
4912 /* Don't give an error message. We don't want it when the ":all"
4913 * command is in the .vimrc. */
4914 return;
4915 }
4916 setpcmark();
4917
4918 opened_len = ARGCOUNT;
4919 opened = alloc_clear((unsigned)opened_len);
4920 if (opened == NULL)
4921 return;
4922
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004923 /* Autocommands may do anything to the argument list. Make sure it's not
4924 * freed while we are working here by "locking" it. We still have to
4925 * watch out for its size to be changed. */
4926 alist = curwin->w_alist;
4927 ++alist->al_refcount;
4928
4929 old_curwin = curwin;
4930 old_curtab = curtab;
4931
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004932# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004934# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935
4936 /*
4937 * Try closing all windows that are not in the argument list.
4938 * Also close windows that are not full width;
4939 * When 'hidden' or "forceit" set the buffer becomes hidden.
4940 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004941 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004943 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004944 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004945 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004947 tpnext = curtab->tp_next;
4948 for (wp = firstwin; wp != NULL; wp = wpnext)
4949 {
4950 wpnext = wp->w_next;
4951 buf = wp->w_buffer;
4952 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004953 || (!keep_tabs && (buf->b_nwindows > 1
4954 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004955 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004956 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004958 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004959 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004961 if (i < alist->al_ga.ga_len
4962 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4963 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4964 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004966 int weight = 1;
4967
4968 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004969 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004970 ++weight;
4971 if (old_curwin == wp)
4972 ++weight;
4973 }
4974
4975 if (weight > (int)opened[i])
4976 {
4977 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004978 if (i == 0)
4979 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004980 if (new_curwin != NULL)
4981 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004982 new_curwin = wp;
4983 new_curtab = curtab;
4984 }
4985 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004986 else if (keep_tabs)
4987 i = opened_len;
4988
4989 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004990 {
4991 /* Use the current argument list for all windows
4992 * containing a file from it. */
4993 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004994 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004995 ++wp->w_alist->al_refcount;
4996 }
4997 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 }
5000 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005001 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005003 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005005 if (buf_hide(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005006 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005008 /* If the buffer was changed, and we would like to hide it,
5009 * try autowriting. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02005010 if (!buf_hide(buf) && buf->b_nwindows <= 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005011 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005013#ifdef FEAT_AUTOCMD
5014 bufref_T bufref;
5015
5016 set_bufref(&bufref, buf);
5017#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005018 (void)autowrite(buf, FALSE);
5019#ifdef FEAT_AUTOCMD
5020 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005021 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005022 {
5023 wpnext = firstwin; /* start all over... */
5024 continue;
5025 }
5026#endif
5027 }
5028#ifdef FEAT_WINDOWS
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005029 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01005030 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005031 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005032#endif
5033 use_firstwin = TRUE;
5034#ifdef FEAT_WINDOWS
5035 else
5036 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005037 win_close(wp, !buf_hide(buf) && !bufIsChanged(buf));
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005038# ifdef FEAT_AUTOCMD
5039 /* check if autocommands removed the next window */
5040 if (!win_valid(wpnext))
5041 wpnext = firstwin; /* start all over... */
5042# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 }
5044#endif
5045 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 }
5047 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005048
5049 /* Without the ":tab" modifier only do the current tab page. */
5050 if (had_tab == 0 || tpnext == NULL)
5051 break;
5052
5053# ifdef FEAT_AUTOCMD
5054 /* check if autocommands removed the next tab page */
5055 if (!valid_tabpage(tpnext))
5056 tpnext = first_tabpage; /* start all over...*/
5057# endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005058 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 }
5060
5061 /*
5062 * Open a window for files in the argument list that don't have one.
5063 * ARGCOUNT may change while doing this, because of autocommands.
5064 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005065 if (count > opened_len || count <= 0)
5066 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067
5068#ifdef FEAT_AUTOCMD
5069 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5070 ++autocmd_no_enter;
5071 ++autocmd_no_leave;
5072#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005073 last_curwin = curwin;
5074 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005076#ifdef FEAT_WINDOWS
5077 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
5078 * leaving an empty tab page when executed locally. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005079 if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005080 && curbuf->b_ffname == NULL && !curbuf->b_changed)
5081 use_firstwin = TRUE;
5082#endif
5083
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005084 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 {
5086 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
5087 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005088 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 {
5090 /* Move the already present window to below the current window */
5091 if (curwin->w_arg_idx != i)
5092 {
5093 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5094 {
5095 if (wpnext->w_arg_idx == i)
5096 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005097 if (keep_tabs)
5098 {
5099 new_curwin = wpnext;
5100 new_curtab = curtab;
5101 }
5102 else
5103 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 break;
5105 }
5106 }
5107 }
5108 }
5109 else if (split_ret == OK)
5110 {
5111 if (!use_firstwin) /* split current window */
5112 {
5113 p_ea_save = p_ea;
5114 p_ea = TRUE; /* use space from all windows */
5115 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5116 p_ea = p_ea_save;
5117 if (split_ret == FAIL)
5118 continue;
5119 }
5120#ifdef FEAT_AUTOCMD
5121 else /* first window: do autocmd for leaving this buffer */
5122 --autocmd_no_leave;
5123#endif
5124
5125 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005126 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 */
5128 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005129 if (i == 0)
5130 {
5131 new_curwin = curwin;
5132 new_curtab = curtab;
5133 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5135 ECMD_ONE,
Bram Moolenaareb44a682017-08-03 22:44:55 +02005136 ((buf_hide(curwin->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005138 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139#ifdef FEAT_AUTOCMD
5140 if (use_firstwin)
5141 ++autocmd_no_leave;
5142#endif
5143 use_firstwin = FALSE;
5144 }
5145 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005146
5147 /* When ":tab" was used open a new tab for a new window repeatedly. */
5148 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5149 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 }
5151
5152 /* Remove the "lock" on the argument list. */
5153 alist_unlink(alist);
5154
5155#ifdef FEAT_AUTOCMD
5156 --autocmd_no_enter;
5157#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005158 /* restore last referenced tabpage's curwin */
5159 if (last_curtab != new_curtab)
5160 {
5161 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005162 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005163 if (win_valid(last_curwin))
5164 win_enter(last_curwin, FALSE);
5165 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005166 /* to window with first arg */
5167 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005168 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005169 if (win_valid(new_curwin))
5170 win_enter(new_curwin, FALSE);
5171
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172#ifdef FEAT_AUTOCMD
5173 --autocmd_no_leave;
5174#endif
5175 vim_free(opened);
5176}
5177
5178# if defined(FEAT_LISTCMDS) || defined(PROTO)
5179/*
5180 * Open a window for a number of buffers.
5181 */
5182 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005183ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184{
5185 buf_T *buf;
5186 win_T *wp, *wpnext;
5187 int split_ret = OK;
5188 int p_ea_save;
5189 int open_wins = 0;
5190 int r;
5191 int count; /* Maximum number of windows to open. */
5192 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005193#ifdef FEAT_WINDOWS
5194 int had_tab = cmdmod.tab;
5195 tabpage_T *tpnext;
5196#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197
5198 if (eap->addr_count == 0) /* make as many windows as possible */
5199 count = 9999;
5200 else
5201 count = eap->line2; /* make as many windows as specified */
5202 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5203 all = FALSE;
5204 else
5205 all = TRUE;
5206
5207 setpcmark();
5208
5209#ifdef FEAT_GUI
5210 need_mouse_correct = TRUE;
5211#endif
5212
5213 /*
5214 * Close superfluous windows (two windows for the same buffer).
5215 * Also close windows that are not full-width.
5216 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005217#ifdef FEAT_WINDOWS
5218 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005219 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005220 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005223 tpnext = curtab->tp_next;
5224 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005226 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005227 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005228#ifdef FEAT_WINDOWS
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005229 || ((cmdmod.split & WSP_VERT)
5230 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005231 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005232 : wp->w_width != Columns)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005233 || (had_tab > 0 && wp != firstwin)
5234#endif
Bram Moolenaar459ca562016-11-10 18:16:33 +01005235 ) && !ONE_WINDOW
Bram Moolenaar362ce482012-06-06 19:02:45 +02005236#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02005237 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02005238#endif
5239 )
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005240 {
5241 win_close(wp, FALSE);
5242#ifdef FEAT_AUTOCMD
5243 wpnext = firstwin; /* just in case an autocommand does
5244 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005245 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005246 open_wins = 0;
5247#endif
5248 }
5249 else
5250 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005252
5253#ifdef FEAT_WINDOWS
5254 /* Without the ":tab" modifier only do the current tab page. */
5255 if (had_tab == 0 || tpnext == NULL)
5256 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005257 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260
5261 /*
5262 * Go through the buffer list. When a buffer doesn't have a window yet,
5263 * open one. Otherwise move the window to the right position.
5264 * Watch out for autocommands that delete buffers or windows!
5265 */
5266#ifdef FEAT_AUTOCMD
5267 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5268 ++autocmd_no_enter;
5269#endif
5270 win_enter(lastwin, FALSE);
5271#ifdef FEAT_AUTOCMD
5272 ++autocmd_no_leave;
5273#endif
5274 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5275 {
5276 /* Check if this buffer needs a window */
5277 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5278 continue;
5279
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005280#ifdef FEAT_WINDOWS
5281 if (had_tab != 0)
5282 {
5283 /* With the ":tab" modifier don't move the window. */
5284 if (buf->b_nwindows > 0)
5285 wp = lastwin; /* buffer has a window, skip it */
5286 else
5287 wp = NULL;
5288 }
5289 else
5290#endif
5291 {
5292 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005293 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005294 if (wp->w_buffer == buf)
5295 break;
5296 /* If the buffer already has a window, move it */
5297 if (wp != NULL)
5298 win_move_after(wp, curwin);
5299 }
5300
5301 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005303#ifdef FEAT_AUTOCMD
5304 bufref_T bufref;
5305
5306 set_bufref(&bufref, buf);
5307#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 /* Split the window and put the buffer in it */
5309 p_ea_save = p_ea;
5310 p_ea = TRUE; /* use space from all windows */
5311 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5312 ++open_wins;
5313 p_ea = p_ea_save;
5314 if (split_ret == FAIL)
5315 continue;
5316
5317 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005318#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 swap_exists_action = SEA_DIALOG;
5320#endif
5321 set_curbuf(buf, DOBUF_GOTO);
5322#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005323 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005325 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005326#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005328# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 break;
5330 }
5331#endif
Bram Moolenaare64ac772005-12-07 20:54:59 +00005332#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 if (swap_exists_action == SEA_QUIT)
5334 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005335# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5336 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005337
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005338 /* Reset the error/interrupt/exception state here so that
5339 * aborting() returns FALSE when closing a window. */
5340 enter_cleanup(&cs);
5341# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005342
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005343 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344 win_close(curwin, TRUE);
5345 --open_wins;
5346 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005347 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005348
5349# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5350 /* Restore the error/interrupt/exception state if not
5351 * discarded by a new aborting error, interrupt, or uncaught
5352 * exception. */
5353 leave_cleanup(&cs);
5354# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 }
5356 else
5357 handle_swap_exists(NULL);
5358#endif
5359 }
5360
5361 ui_breakcheck();
5362 if (got_int)
5363 {
5364 (void)vgetc(); /* only break the file loading, not the rest */
5365 break;
5366 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005367#ifdef FEAT_EVAL
5368 /* Autocommands deleted the buffer or aborted script processing!!! */
5369 if (aborting())
5370 break;
5371#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005372#ifdef FEAT_WINDOWS
5373 /* When ":tab" was used open a new tab for a new window repeatedly. */
5374 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5375 cmdmod.tab = 9999;
5376#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377 }
5378#ifdef FEAT_AUTOCMD
5379 --autocmd_no_enter;
5380#endif
5381 win_enter(firstwin, FALSE); /* back to first window */
5382#ifdef FEAT_AUTOCMD
5383 --autocmd_no_leave;
5384#endif
5385
5386 /*
5387 * Close superfluous windows.
5388 */
5389 for (wp = lastwin; open_wins > count; )
5390 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005391 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392 || autowrite(wp->w_buffer, FALSE) == OK);
5393#ifdef FEAT_AUTOCMD
5394 if (!win_valid(wp))
5395 {
5396 /* BufWrite Autocommands made the window invalid, start over */
5397 wp = lastwin;
5398 }
5399 else
5400#endif
5401 if (r)
5402 {
Bram Moolenaareb44a682017-08-03 22:44:55 +02005403 win_close(wp, !buf_hide(wp->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 --open_wins;
5405 wp = lastwin;
5406 }
5407 else
5408 {
5409 wp = wp->w_prev;
5410 if (wp == NULL)
5411 break;
5412 }
5413 }
5414}
5415# endif /* FEAT_LISTCMDS */
5416
5417#endif /* FEAT_WINDOWS */
5418
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005419static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005420
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421/*
5422 * do_modelines() - process mode lines for the current file
5423 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005424 * "flags" can be:
5425 * OPT_WINONLY only set options local to window
5426 * OPT_NOWIN don't set options local to window
5427 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 * Returns immediately if the "ml" option isn't set.
5429 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005431do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005433 linenr_T lnum;
5434 int nmlines;
5435 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436
5437 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5438 return;
5439
5440 /* Disallow recursive entry here. Can happen when executing a modeline
5441 * triggers an autocommand, which reloads modelines with a ":do". */
5442 if (entered)
5443 return;
5444
5445 ++entered;
5446 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5447 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005448 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449 nmlines = 0;
5450
5451 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5452 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005453 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 nmlines = 0;
5455 --entered;
5456}
5457
5458#include "version.h" /* for version number */
5459
5460/*
5461 * chk_modeline() - check a single line for a mode string
5462 * Return FAIL if an error encountered.
5463 */
5464 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005465chk_modeline(
5466 linenr_T lnum,
5467 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468{
5469 char_u *s;
5470 char_u *e;
5471 char_u *linecopy; /* local copy of any modeline found */
5472 int prev;
5473 int vers;
5474 int end;
5475 int retval = OK;
5476 char_u *save_sourcing_name;
5477 linenr_T save_sourcing_lnum;
5478#ifdef FEAT_EVAL
5479 scid_T save_SID;
5480#endif
5481
5482 prev = -1;
5483 for (s = ml_get(lnum); *s != NUL; ++s)
5484 {
5485 if (prev == -1 || vim_isspace(prev))
5486 {
5487 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5488 || STRNCMP(s, "vi:", (size_t)3) == 0)
5489 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005490 /* Accept both "vim" and "Vim". */
5491 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492 {
5493 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5494 e = s + 4;
5495 else
5496 e = s + 3;
5497 vers = getdigits(&e);
5498 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005499 && (s[0] != 'V'
5500 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501 && (s[3] == ':'
5502 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5503 || (VIM_VERSION_100 < vers && s[3] == '<')
5504 || (VIM_VERSION_100 > vers && s[3] == '>')
5505 || (VIM_VERSION_100 == vers && s[3] == '=')))
5506 break;
5507 }
5508 }
5509 prev = *s;
5510 }
5511
5512 if (*s)
5513 {
5514 do /* skip over "ex:", "vi:" or "vim:" */
5515 ++s;
5516 while (s[-1] != ':');
5517
5518 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5519 if (linecopy == NULL)
5520 return FAIL;
5521
5522 save_sourcing_lnum = sourcing_lnum;
5523 save_sourcing_name = sourcing_name;
5524 sourcing_lnum = lnum; /* prepare for emsg() */
5525 sourcing_name = (char_u *)"modelines";
5526
5527 end = FALSE;
5528 while (end == FALSE)
5529 {
5530 s = skipwhite(s);
5531 if (*s == NUL)
5532 break;
5533
5534 /*
5535 * Find end of set command: ':' or end of line.
5536 * Skip over "\:", replacing it with ":".
5537 */
5538 for (e = s; *e != ':' && *e != NUL; ++e)
5539 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005540 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 if (*e == NUL)
5542 end = TRUE;
5543
5544 /*
5545 * If there is a "set" command, require a terminating ':' and
5546 * ignore the stuff after the ':'.
5547 * "vi:set opt opt opt: foo" -- foo not interpreted
5548 * "vi:opt opt opt: foo" -- foo interpreted
5549 * Accept "se" for compatibility with Elvis.
5550 */
5551 if (STRNCMP(s, "set ", (size_t)4) == 0
5552 || STRNCMP(s, "se ", (size_t)3) == 0)
5553 {
5554 if (*e != ':') /* no terminating ':'? */
5555 break;
5556 end = TRUE;
5557 s = vim_strchr(s, ' ') + 1;
5558 }
5559 *e = NUL; /* truncate the set command */
5560
5561 if (*s != NUL) /* skip over an empty "::" */
5562 {
5563#ifdef FEAT_EVAL
5564 save_SID = current_SID;
5565 current_SID = SID_MODELINE;
5566#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005567 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568#ifdef FEAT_EVAL
5569 current_SID = save_SID;
5570#endif
5571 if (retval == FAIL) /* stop if error found */
5572 break;
5573 }
5574 s = e + 1; /* advance to next part */
5575 }
5576
5577 sourcing_lnum = save_sourcing_lnum;
5578 sourcing_name = save_sourcing_name;
5579
5580 vim_free(linecopy);
5581 }
5582 return retval;
5583}
5584
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005585#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005587read_viminfo_bufferlist(
5588 vir_T *virp,
5589 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590{
5591 char_u *tab;
5592 linenr_T lnum;
5593 colnr_T col;
5594 buf_T *buf;
5595 char_u *sfname;
5596 char_u *xline;
5597
5598 /* Handle long line and escaped characters. */
5599 xline = viminfo_readstring(virp, 1, FALSE);
5600
5601 /* don't read in if there are files on the command-line or if writing: */
5602 if (xline != NULL && !writing && ARGCOUNT == 0
5603 && find_viminfo_parameter('%') != NULL)
5604 {
5605 /* Format is: <fname> Tab <lnum> Tab <col>.
5606 * Watch out for a Tab in the file name, work from the end. */
5607 lnum = 0;
5608 col = 0;
5609 tab = vim_strrchr(xline, '\t');
5610 if (tab != NULL)
5611 {
5612 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005613 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 tab = vim_strrchr(xline, '\t');
5615 if (tab != NULL)
5616 {
5617 *tab++ = '\0';
5618 lnum = atol((char *)tab);
5619 }
5620 }
5621
5622 /* Expand "~/" in the file name at "line + 1" to a full path.
5623 * Then try shortening it by comparing with the current directory */
5624 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005625 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005626
5627 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5628 if (buf != NULL) /* just in case... */
5629 {
5630 buf->b_last_cursor.lnum = lnum;
5631 buf->b_last_cursor.col = col;
5632 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5633 }
5634 }
5635 vim_free(xline);
5636
5637 return viminfo_readline(virp);
5638}
5639
5640 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005641write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642{
5643 buf_T *buf;
5644#ifdef FEAT_WINDOWS
5645 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005646 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647#endif
5648 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005649 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650
5651 if (find_viminfo_parameter('%') == NULL)
5652 return;
5653
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005654 /* Without a number -1 is returned: do all buffers. */
5655 max_buffers = get_viminfo_parameter('%');
5656
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005658#define LINE_BUF_LEN (MAXPATHL + 40)
5659 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 if (line == NULL)
5661 return;
5662
5663#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00005664 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665 set_last_cursor(win);
5666#else
5667 set_last_cursor(curwin);
5668#endif
5669
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005670 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005671 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 {
5673 if (buf->b_fname == NULL
5674 || !buf->b_p_bl
5675#ifdef FEAT_QUICKFIX
5676 || bt_quickfix(buf)
5677#endif
Bram Moolenaare6278052017-08-13 18:11:17 +02005678#ifdef FEAT_TERMINAL
5679 || bt_terminal(buf)
5680#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 || removable(buf->b_ffname))
5682 continue;
5683
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005684 if (max_buffers-- == 0)
5685 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686 putc('%', fp);
5687 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005688 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 (long)buf->b_last_cursor.lnum,
5690 buf->b_last_cursor.col);
5691 viminfo_writestring(fp, line);
5692 }
5693 vim_free(line);
5694}
5695#endif
5696
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005697/*
5698 * Return TRUE if "buf" is the quickfix buffer.
5699 */
5700 int
5701bt_quickfix(buf_T *buf)
5702{
5703 return buf != NULL && buf->b_p_bt[0] == 'q';
5704}
5705
5706/*
5707 * Return TRUE if "buf" is a terminal buffer.
5708 */
5709 int
5710bt_terminal(buf_T *buf)
5711{
5712 return buf != NULL && buf->b_p_bt[0] == 't';
5713}
5714
5715/*
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02005716 * Return TRUE if "buf" is a help buffer.
5717 */
5718 int
5719bt_help(buf_T *buf)
5720{
5721 return buf != NULL && buf->b_help;
5722}
5723
5724/*
Bram Moolenaarf0a521f2017-07-25 23:31:12 +02005725 * Return TRUE if "buf" is a "nofile", "acwrite" or "terminal" buffer.
5726 * This means the buffer name is not a file name.
5727 */
5728 int
5729bt_nofile(buf_T *buf)
5730{
5731 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
5732 || buf->b_p_bt[0] == 'a'
5733 || buf->b_p_bt[0] == 't');
5734}
5735
5736/*
5737 * Return TRUE if "buf" is a "nowrite", "nofile" or "terminal" buffer.
5738 */
5739 int
5740bt_dontwrite(buf_T *buf)
5741{
5742 return buf != NULL && (buf->b_p_bt[0] == 'n' || buf->b_p_bt[0] == 't');
5743}
5744
5745 int
5746bt_dontwrite_msg(buf_T *buf)
5747{
5748 if (bt_dontwrite(buf))
5749 {
5750 EMSG(_("E382: Cannot write, 'buftype' option is set"));
5751 return TRUE;
5752 }
5753 return FALSE;
5754}
5755
5756/*
5757 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
5758 * and 'bufhidden'.
5759 */
5760 int
5761buf_hide(buf_T *buf)
5762{
5763 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
5764 switch (buf->b_p_bh[0])
5765 {
5766 case 'u': /* "unload" */
5767 case 'w': /* "wipe" */
5768 case 'd': return FALSE; /* "delete" */
5769 case 'h': return TRUE; /* "hide" */
5770 }
5771 return (p_hid || cmdmod.hide);
5772}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773
5774/*
5775 * Return special buffer name.
5776 * Returns NULL when the buffer has a normal file name.
5777 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005778 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005779buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780{
5781#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
5782 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005783 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005784 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005785 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005786
5787 /*
5788 * For location list window, w_llist_ref points to the location list.
5789 * For quickfix window, w_llist_ref is NULL.
5790 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005791 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005792 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005793 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005794 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796#endif
Bram Moolenaar21554412017-07-24 21:44:43 +02005797
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 /* There is no _file_ when 'buftype' is "nofile", b_sfname
Bram Moolenaar21554412017-07-24 21:44:43 +02005799 * contains the name as specified by the user. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005800 if (bt_nofile(buf))
5801 {
Bram Moolenaar21554412017-07-24 21:44:43 +02005802#ifdef FEAT_TERMINAL
5803 if (buf->b_term != NULL)
5804 return term_get_status_text(buf->b_term);
5805#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 if (buf->b_sfname != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005807 return buf->b_sfname;
5808 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809 }
Bram Moolenaar21554412017-07-24 21:44:43 +02005810
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005812 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 return NULL;
5814}
5815
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005816#if defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005817 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5818 || defined(PROTO)
Bram Moolenaar6b7355a2017-08-04 21:37:54 +02005819# define SWITCH_TO_WIN
5820
5821/*
5822 * Find a window that contains "buf" and switch to it.
5823 * If there is no such window, use the current window and change "curbuf".
5824 * Caller must initialize save_curbuf to NULL.
5825 * restore_win_for_buf() MUST be called later!
5826 */
5827 void
5828switch_to_win_for_buf(
5829 buf_T *buf,
5830 win_T **save_curwinp,
5831 tabpage_T **save_curtabp,
5832 bufref_T *save_curbuf)
5833{
5834 win_T *wp;
5835 tabpage_T *tp;
5836
5837 if (find_win_for_buf(buf, &wp, &tp) == FAIL)
5838 switch_buffer(save_curbuf, buf);
5839 else if (switch_win(save_curwinp, save_curtabp, wp, tp, TRUE) == FAIL)
5840 {
5841 restore_win(*save_curwinp, *save_curtabp, TRUE);
5842 switch_buffer(save_curbuf, buf);
5843 }
5844}
5845
5846 void
5847restore_win_for_buf(
5848 win_T *save_curwin,
5849 tabpage_T *save_curtab,
5850 bufref_T *save_curbuf)
5851{
5852 if (save_curbuf->br_buf == NULL)
5853 restore_win(save_curwin, save_curtab, TRUE);
5854 else
5855 restore_buffer(save_curbuf);
5856}
5857#endif
5858
5859#if (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
5860 || defined(SWITCH_TO_WIN) \
5861 || defined(PROTO)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005862/*
5863 * Find a window for buffer "buf".
5864 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5865 * If not found FAIL is returned.
5866 */
5867 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005868find_win_for_buf(
5869 buf_T *buf,
5870 win_T **wp,
5871 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005872{
5873 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5874 if ((*wp)->w_buffer == buf)
5875 goto win_found;
5876 return FAIL;
5877win_found:
5878 return OK;
5879}
5880#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881
5882#if defined(FEAT_SIGNS) || defined(PROTO)
5883/*
5884 * Insert the sign into the signlist.
5885 */
5886 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005887insert_sign(
5888 buf_T *buf, /* buffer to store sign in */
5889 signlist_T *prev, /* previous sign entry */
5890 signlist_T *next, /* next sign entry */
5891 int id, /* sign ID */
5892 linenr_T lnum, /* line number which gets the mark */
5893 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894{
5895 signlist_T *newsign;
5896
5897 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5898 if (newsign != NULL)
5899 {
5900 newsign->id = id;
5901 newsign->lnum = lnum;
5902 newsign->typenr = typenr;
5903 newsign->next = next;
5904#ifdef FEAT_NETBEANS_INTG
5905 newsign->prev = prev;
5906 if (next != NULL)
5907 next->prev = newsign;
5908#endif
5909
5910 if (prev == NULL)
5911 {
5912 /* When adding first sign need to redraw the windows to create the
5913 * column for signs. */
5914 if (buf->b_signlist == NULL)
5915 {
5916 redraw_buf_later(buf, NOT_VALID);
5917 changed_cline_bef_curs();
5918 }
5919
5920 /* first sign in signlist */
5921 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005922#ifdef FEAT_NETBEANS_INTG
5923 if (netbeans_active())
5924 buf->b_has_sign_column = TRUE;
5925#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926 }
5927 else
5928 prev->next = newsign;
5929 }
5930}
5931
5932/*
5933 * Add the sign into the signlist. Find the right spot to do it though.
5934 */
5935 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005936buf_addsign(
5937 buf_T *buf, /* buffer to store sign in */
5938 int id, /* sign ID */
5939 linenr_T lnum, /* line number which gets the mark */
5940 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941{
5942 signlist_T *sign; /* a sign in the signlist */
5943 signlist_T *prev; /* the previous sign */
5944
5945 prev = NULL;
5946 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5947 {
5948 if (lnum == sign->lnum && id == sign->id)
5949 {
5950 sign->typenr = typenr;
5951 return;
5952 }
5953 else if (
5954#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5955 id < 0 &&
5956#endif
5957 lnum < sign->lnum)
5958 {
5959#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5960 /* XXX - GRP: Is this because of sign slide problem? Or is it
5961 * really needed? Or is it because we allow multiple signs per
5962 * line? If so, should I add that feature to FEAT_SIGNS?
5963 */
5964 while (prev != NULL && prev->lnum == lnum)
5965 prev = prev->prev;
5966 if (prev == NULL)
5967 sign = buf->b_signlist;
5968 else
5969 sign = prev->next;
5970#endif
5971 insert_sign(buf, prev, sign, id, lnum, typenr);
5972 return;
5973 }
5974 prev = sign;
5975 }
5976#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5977 /* XXX - GRP: See previous comment */
5978 while (prev != NULL && prev->lnum == lnum)
5979 prev = prev->prev;
5980 if (prev == NULL)
5981 sign = buf->b_signlist;
5982 else
5983 sign = prev->next;
5984#endif
5985 insert_sign(buf, prev, sign, id, lnum, typenr);
5986
5987 return;
5988}
5989
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005990/*
5991 * For an existing, placed sign "markId" change the type to "typenr".
5992 * Returns the line number of the sign, or zero if the sign is not found.
5993 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005994 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005995buf_change_sign_type(
5996 buf_T *buf, /* buffer to store sign in */
5997 int markId, /* sign ID */
5998 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999{
6000 signlist_T *sign; /* a sign in the signlist */
6001
6002 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6003 {
6004 if (sign->id == markId)
6005 {
6006 sign->typenr = typenr;
6007 return sign->lnum;
6008 }
6009 }
6010
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006011 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006012}
6013
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006014 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006015buf_getsigntype(
6016 buf_T *buf,
6017 linenr_T lnum,
6018 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019{
6020 signlist_T *sign; /* a sign in a b_signlist */
6021
6022 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6023 if (sign->lnum == lnum
6024 && (type == SIGN_ANY
6025# ifdef FEAT_SIGN_ICONS
6026 || (type == SIGN_ICON
6027 && sign_get_image(sign->typenr) != NULL)
6028# endif
6029 || (type == SIGN_TEXT
6030 && sign_get_text(sign->typenr) != NULL)
6031 || (type == SIGN_LINEHL
6032 && sign_get_attr(sign->typenr, TRUE) != 0)))
6033 return sign->typenr;
6034 return 0;
6035}
6036
6037
6038 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01006039buf_delsign(
6040 buf_T *buf, /* buffer sign is stored in */
6041 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042{
6043 signlist_T **lastp; /* pointer to pointer to current sign */
6044 signlist_T *sign; /* a sign in a b_signlist */
6045 signlist_T *next; /* the next sign in a b_signlist */
6046 linenr_T lnum; /* line number whose sign was deleted */
6047
6048 lastp = &buf->b_signlist;
6049 lnum = 0;
6050 for (sign = buf->b_signlist; sign != NULL; sign = next)
6051 {
6052 next = sign->next;
6053 if (sign->id == id)
6054 {
6055 *lastp = next;
6056#ifdef FEAT_NETBEANS_INTG
6057 if (next != NULL)
6058 next->prev = sign->prev;
6059#endif
6060 lnum = sign->lnum;
6061 vim_free(sign);
6062 break;
6063 }
6064 else
6065 lastp = &sign->next;
6066 }
6067
6068 /* When deleted the last sign need to redraw the windows to remove the
6069 * sign column. */
6070 if (buf->b_signlist == NULL)
6071 {
6072 redraw_buf_later(buf, NOT_VALID);
6073 changed_cline_bef_curs();
6074 }
6075
6076 return lnum;
6077}
6078
6079
6080/*
6081 * Find the line number of the sign with the requested id. If the sign does
6082 * not exist, return 0 as the line number. This will still let the correct file
6083 * get loaded.
6084 */
6085 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006086buf_findsign(
6087 buf_T *buf, /* buffer to store sign in */
6088 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089{
6090 signlist_T *sign; /* a sign in the signlist */
6091
6092 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6093 if (sign->id == id)
6094 return sign->lnum;
6095
6096 return 0;
6097}
6098
6099 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006100buf_findsign_id(
6101 buf_T *buf, /* buffer whose sign we are searching for */
6102 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103{
6104 signlist_T *sign; /* a sign in the signlist */
6105
6106 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6107 if (sign->lnum == lnum)
6108 return sign->id;
6109
6110 return 0;
6111}
6112
6113
6114# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
6115/* see if a given type of sign exists on a specific line */
6116 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006117buf_findsigntype_id(
6118 buf_T *buf, /* buffer whose sign we are searching for */
6119 linenr_T lnum, /* line number of sign */
6120 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121{
6122 signlist_T *sign; /* a sign in the signlist */
6123
6124 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6125 if (sign->lnum == lnum && sign->typenr == typenr)
6126 return sign->id;
6127
6128 return 0;
6129}
6130
6131
6132# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6133/* return the number of icons on the given line */
6134 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006135buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136{
6137 signlist_T *sign; /* a sign in the signlist */
6138 int count = 0;
6139
6140 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
6141 if (sign->lnum == lnum)
6142 if (sign_get_image(sign->typenr) != NULL)
6143 count++;
6144
6145 return count;
6146}
6147# endif /* FEAT_SIGN_ICONS */
6148# endif /* FEAT_NETBEANS_INTG */
6149
6150
6151/*
6152 * Delete signs in buffer "buf".
6153 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02006154 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006155buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156{
6157 signlist_T *next;
6158
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006159 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02006160 * sign column. Not when curwin is NULL (this means we're exiting). */
6161 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02006162 {
6163 redraw_buf_later(buf, NOT_VALID);
6164 changed_cline_bef_curs();
6165 }
6166
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167 while (buf->b_signlist != NULL)
6168 {
6169 next = buf->b_signlist->next;
6170 vim_free(buf->b_signlist);
6171 buf->b_signlist = next;
6172 }
6173}
6174
6175/*
6176 * Delete all signs in all buffers.
6177 */
6178 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006179buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180{
6181 buf_T *buf; /* buffer we are checking for signs */
6182
Bram Moolenaar29323592016-07-24 22:04:11 +02006183 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006185 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186}
6187
6188/*
6189 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
6190 */
6191 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006192sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193{
6194 buf_T *buf;
6195 signlist_T *p;
6196 char lbuf[BUFSIZ];
6197
6198 MSG_PUTS_TITLE(_("\n--- Signs ---"));
6199 msg_putchar('\n');
6200 if (rbuf == NULL)
6201 buf = firstbuf;
6202 else
6203 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006204 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 {
6206 if (buf->b_signlist != NULL)
6207 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006208 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01006209 MSG_PUTS_ATTR(lbuf, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006210 msg_putchar('\n');
6211 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006212 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006214 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
6216 MSG_PUTS(lbuf);
6217 msg_putchar('\n');
6218 }
6219 if (rbuf != NULL)
6220 break;
6221 buf = buf->b_next;
6222 }
6223}
6224
6225/*
6226 * Adjust a placed sign for inserted/deleted lines.
6227 */
6228 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006229sign_mark_adjust(
6230 linenr_T line1,
6231 linenr_T line2,
6232 long amount,
6233 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234{
6235 signlist_T *sign; /* a sign in a b_signlist */
6236
6237 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6238 {
6239 if (sign->lnum >= line1 && sign->lnum <= line2)
6240 {
6241 if (amount == MAXLNUM)
6242 sign->lnum = line1;
6243 else
6244 sign->lnum += amount;
6245 }
6246 else if (sign->lnum > line2)
6247 sign->lnum += amount_after;
6248 }
6249}
6250#endif /* FEAT_SIGNS */
6251
6252/*
6253 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6254 */
6255 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006256set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257{
6258 if (on != curbuf->b_p_bl)
6259 {
6260 curbuf->b_p_bl = on;
6261#ifdef FEAT_AUTOCMD
6262 if (on)
6263 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6264 else
6265 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
6266#endif
6267 }
6268}
6269
6270/*
6271 * Read the file for "buf" again and check if the contents changed.
6272 * Return TRUE if it changed or this could not be checked.
6273 */
6274 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006275buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276{
6277 buf_T *newbuf;
6278 int differ = TRUE;
6279 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281 exarg_T ea;
6282
6283 /* Allocate a buffer without putting it in the buffer list. */
6284 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6285 if (newbuf == NULL)
6286 return TRUE;
6287
6288 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6289 if (prep_exarg(&ea, buf) == FAIL)
6290 {
6291 wipe_buffer(newbuf, FALSE);
6292 return TRUE;
6293 }
6294
Bram Moolenaar071d4272004-06-13 20:20:40 +00006295 /* set curwin/curbuf to buf and save a few things */
6296 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297
Bram Moolenaar4770d092006-01-12 23:22:24 +00006298 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299 && readfile(buf->b_ffname, buf->b_fname,
6300 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6301 &ea, READ_NEW | READ_DUMMY) == OK)
6302 {
6303 /* compare the two files line by line */
6304 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6305 {
6306 differ = FALSE;
6307 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6308 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6309 {
6310 differ = TRUE;
6311 break;
6312 }
6313 }
6314 }
6315 vim_free(ea.cmd);
6316
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 /* restore curwin/curbuf and a few other things */
6318 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006319
6320 if (curbuf != newbuf) /* safety check */
6321 wipe_buffer(newbuf, FALSE);
6322
6323 return differ;
6324}
6325
6326/*
6327 * Wipe out a buffer and decrement the last buffer number if it was used for
6328 * this buffer. Call this to wipe out a temp buffer that does not contain any
6329 * marks.
6330 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006332wipe_buffer(
6333 buf_T *buf,
6334 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335{
6336 if (buf->b_fnum == top_file_num - 1)
6337 --top_file_num;
6338
6339#ifdef FEAT_AUTOCMD
6340 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006341 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006343 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344#ifdef FEAT_AUTOCMD
6345 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006346 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347#endif
6348}