blob: 73af50a7a2113b01450b47c84a9e0ca147499f66 [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. */
114 if (!readonlymode && !bufempty())
115 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. */
252 if (curbuf->b_help)
253 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;
375 bufref->br_buf_free_count = buf_free_count;
376}
377
378/*
379 * Return TRUE if "bufref->br_buf" points to a valid buffer.
380 * Only goes through the buffer list if buf_free_count changed.
381 */
382 int
383bufref_valid(bufref_T *bufref)
384{
385 return bufref->br_buf_free_count == buf_free_count
386 ? TRUE : buf_valid(bufref->br_buf);
387}
388
389/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200391 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 */
393 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100394buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395{
396 buf_T *bp;
397
Bram Moolenaar82404332016-07-10 17:00:38 +0200398 /* Assume that we more often have a recent buffer, start with the last
399 * one. */
400 for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 if (bp == buf)
402 return TRUE;
403 return FALSE;
404}
405
406/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200407 * A hash table used to quickly lookup a buffer by its number.
408 */
409static hashtab_T buf_hashtab;
410
411 static void
412buf_hashtab_add(buf_T *buf)
413{
414 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
415 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
416 EMSG(_("E931: Buffer cannot be registered"));
417}
418
419 static void
420buf_hashtab_remove(buf_T *buf)
421{
422 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
423
424 if (!HASHITEM_EMPTY(hi))
425 hash_remove(&buf_hashtab, hi);
426}
427
428/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 * Close the link to a buffer.
430 * "action" is used when there is no longer a window for the buffer.
431 * It can be:
432 * 0 buffer becomes hidden
433 * DOBUF_UNLOAD buffer is unloaded
434 * DOBUF_DELETE buffer is unloaded and removed from buffer list
435 * DOBUF_WIPE buffer is unloaded and really deleted
436 * When doing all but the first one on the current buffer, the caller should
437 * get a new buffer very soon!
438 *
439 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100440 *
441 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
442 * cause there to be only one window with this buffer. e.g. when ":quit" is
443 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 */
445 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100446close_buffer(
447 win_T *win, /* if not NULL, set b_last_cursor */
448 buf_T *buf,
449 int action,
450 int abort_if_last UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451{
452#ifdef FEAT_AUTOCMD
453 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100454 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200455 bufref_T bufref;
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200456# ifdef FEAT_WINDOWS
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100457 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200458 win_T *the_curwin = curwin;
459 tabpage_T *the_curtab = curtab;
460# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461#endif
462 int unload_buf = (action != 0);
463 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
464 int wipe_buf = (action == DOBUF_WIPE);
465
466#ifdef FEAT_QUICKFIX
467 /*
468 * Force unloading or deleting when 'bufhidden' says so.
469 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
470 * "hide" (otherwise we could never free or delete a buffer).
471 */
472 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
473 {
474 del_buf = TRUE;
475 unload_buf = TRUE;
476 }
477 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
478 {
479 del_buf = TRUE;
480 unload_buf = TRUE;
481 wipe_buf = TRUE;
482 }
483 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
484 unload_buf = TRUE;
485#endif
486
Bram Moolenaar30180b82016-09-04 19:57:56 +0200487#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200488 /* Disallow deleting the buffer when it is locked (already being closed or
489 * halfway a command that relies on it). Unloading is allowed. */
490 if (buf->b_locked > 0 && (del_buf || wipe_buf))
491 {
492 EMSG(_("E937: Attempt to delete a buffer that is in use"));
493 return;
494 }
Bram Moolenaar30180b82016-09-04 19:57:56 +0200495#endif
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200496
Bram Moolenaar3be85852014-06-12 14:01:31 +0200497 if (win != NULL
498#ifdef FEAT_WINDOWS
Bram Moolenaare59215c2016-08-14 19:08:45 +0200499 && win_valid_any_tab(win) /* in case autocommands closed the window */
Bram Moolenaar3be85852014-06-12 14:01:31 +0200500#endif
501 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 {
503 /* Set b_last_cursor when closing the last window for the buffer.
504 * Remember the last cursor position and window options of the buffer.
505 * This used to be only for the current window, but then options like
506 * 'foldmethod' may be lost with a ":only" command. */
507 if (buf->b_nwindows == 1)
508 set_last_cursor(win);
509 buflist_setfpos(buf, win,
510 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
511 win->w_cursor.col, TRUE);
512 }
513
514#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200515 set_bufref(&bufref, buf);
516
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 /* When the buffer is no longer in a window, trigger BufWinLeave */
518 if (buf->b_nwindows == 1)
519 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200520 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200521 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
522 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200523 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100524 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200525 /* Autocommands deleted the buffer. */
526aucmd_abort:
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100527 EMSG(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100529 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200530 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200531 if (abort_if_last && one_window())
532 /* Autocommands made this the only window. */
533 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534
535 /* When the buffer becomes hidden, but is not unloaded, trigger
536 * BufHidden */
537 if (!unload_buf)
538 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200539 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200540 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
541 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200542 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200543 /* Autocommands deleted the buffer. */
544 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200545 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200546 if (abort_if_last && one_window())
547 /* Autocommands made this the only window. */
548 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 }
550# ifdef FEAT_EVAL
551 if (aborting()) /* autocmds may abort script processing */
552 return;
553# endif
554 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200555
556# ifdef FEAT_WINDOWS
557 /* If the buffer was in curwin and the window has changed, go back to that
558 * window, if it still exists. This avoids that ":edit x" triggering a
559 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
560 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
561 {
562 block_autocmds();
563 goto_tabpage_win(the_curtab, the_curwin);
564 unblock_autocmds();
565 }
566# endif
567
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 nwindows = buf->b_nwindows;
569#endif
570
571 /* decrease the link count from windows (unless not in any window) */
572 if (buf->b_nwindows > 0)
573 --buf->b_nwindows;
574
575 /* Return when a window is displaying the buffer or when it's not
576 * unloaded. */
577 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579
580 /* Always remove the buffer when there is no file name. */
581 if (buf->b_ffname == NULL)
582 del_buf = TRUE;
583
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200584 /* When closing the current buffer stop Visual mode before freeing
585 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200586 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200587#if defined(EXITFREE)
588 && !entered_free_all_mem
589#endif
590 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200591 end_visual_mode();
592
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 /*
594 * Free all things allocated for this buffer.
595 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
596 */
597#ifdef FEAT_AUTOCMD
598 /* Remember if we are closing the current buffer. Restore the number of
599 * windows, so that autocommands in buf_freeall() don't get confused. */
600 is_curbuf = (buf == curbuf);
601 buf->b_nwindows = nwindows;
602#endif
603
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200604 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
606#ifdef FEAT_AUTOCMD
607 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200608 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 return;
610# ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000611 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 return;
613# endif
614
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 /*
616 * It's possible that autocommands change curbuf to the one being deleted.
617 * This might cause the previous curbuf to be deleted unexpectedly. But
618 * in some cases it's OK to delete the curbuf, because a new one is
619 * obtained anyway. Therefore only return if curbuf changed to the
620 * deleted buffer.
621 */
622 if (buf == curbuf && !is_curbuf)
623 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200624
625 if (
626#ifdef FEAT_WINDOWS
Bram Moolenaare59215c2016-08-14 19:08:45 +0200627 win_valid_any_tab(win) &&
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200628#else
629 win != NULL &&
630#endif
631 win->w_buffer == buf)
632 win->w_buffer = NULL; /* make sure we don't use the buffer now */
633
634 /* Autocommands may have opened or closed windows for this buffer.
635 * Decrement the count for the close we do here. */
636 if (buf->b_nwindows > 0)
637 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638#endif
639
Bram Moolenaar498efdb2006-09-05 14:31:54 +0000640 /* Change directories when the 'acd' option is set. */
641 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642
643 /*
644 * Remove the buffer from the list.
645 */
646 if (wipe_buf)
647 {
648#ifdef FEAT_SUN_WORKSHOP
649 if (usingSunWorkShop)
650 workshop_file_closed_lineno((char *)buf->b_ffname,
651 (int)buf->b_last_cursor.lnum);
652#endif
653 vim_free(buf->b_ffname);
654 vim_free(buf->b_sfname);
655 if (buf->b_prev == NULL)
656 firstbuf = buf->b_next;
657 else
658 buf->b_prev->b_next = buf->b_next;
659 if (buf->b_next == NULL)
660 lastbuf = buf->b_prev;
661 else
662 buf->b_next->b_prev = buf->b_prev;
663 free_buffer(buf);
664 }
665 else
666 {
667 if (del_buf)
668 {
669 /* Free all internal variables and reset option values, to make
670 * ":bdel" compatible with Vim 5.7. */
671 free_buffer_stuff(buf, TRUE);
672
673 /* Make it look like a new buffer. */
674 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
675
676 /* Init the options when loaded again. */
677 buf->b_p_initialized = FALSE;
678 }
679 buf_clear_file(buf);
680 if (del_buf)
681 buf->b_p_bl = FALSE;
682 }
683}
684
685/*
686 * Make buffer not contain a file.
687 */
688 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100689buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690{
691 buf->b_ml.ml_line_count = 1;
692 unchanged(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 buf->b_p_eol = TRUE;
695 buf->b_start_eol = TRUE;
696#ifdef FEAT_MBYTE
697 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000698 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699#endif
700 buf->b_ml.ml_mfp = NULL;
701 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
702#ifdef FEAT_NETBEANS_INTG
703 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704#endif
705}
706
707/*
708 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200709 * the file. Careful: get here with "curwin" NULL when exiting.
710 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200711 * BFA_DEL buffer is going to be deleted
712 * BFA_WIPE buffer is going to be wiped out
713 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100716buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717{
718#ifdef FEAT_AUTOCMD
719 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200720 bufref_T bufref;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200721# ifdef FEAT_WINDOWS
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200722 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200723 win_T *the_curwin = curwin;
724 tabpage_T *the_curtab = curtab;
725# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726
Bram Moolenaar5a497892016-09-03 16:29:04 +0200727 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200728 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200729 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200730 if (buf->b_ml.ml_mfp != NULL)
731 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200732 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
733 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200734 && !bufref_valid(&bufref))
735 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200736 return;
737 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200738 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200740 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
741 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200742 && !bufref_valid(&bufref))
743 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 return;
745 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200746 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200748 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
749 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200750 && !bufref_valid(&bufref))
751 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 return;
753 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200754 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200755
756# ifdef FEAT_WINDOWS
757 /* If the buffer was in curwin and the window has changed, go back to that
758 * window, if it still exists. This avoids that ":edit x" triggering a
759 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
760 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
761 {
762 block_autocmds();
763 goto_tabpage_win(the_curtab, the_curwin);
764 unblock_autocmds();
765 }
766# endif
767
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000769 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 return;
771# endif
772
773 /*
774 * It's possible that autocommands change curbuf to the one being deleted.
775 * This might cause curbuf to be deleted unexpectedly. But in some cases
776 * it's OK to delete the curbuf, because a new one is obtained anyway.
777 * Therefore only return if curbuf changed to the deleted buffer.
778 */
779 if (buf == curbuf && !is_curbuf)
780 return;
781#endif
782#ifdef FEAT_DIFF
783 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
784#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200785#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100786 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200787 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100788 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200789#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000790
791#ifdef FEAT_FOLDING
792 /* No folds in an empty buffer. */
793# ifdef FEAT_WINDOWS
794 {
795 win_T *win;
796 tabpage_T *tp;
797
798 FOR_ALL_TAB_WINDOWS(tp, win)
799 if (win->w_buffer == buf)
800 clearFolding(win);
801 }
802# else
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200803 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000804 clearFolding(curwin);
805# endif
806#endif
807
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808#ifdef FEAT_TCL
809 tcl_buffer_free(buf);
810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 ml_close(buf, TRUE); /* close and delete the memline/memfile */
812 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200813 if ((flags & BFA_KEEP_UNDO) == 0)
814 {
815 u_blockfree(buf); /* free the memory allocated for undo */
816 u_clearall(buf); /* reset all undo information */
817 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200819 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000821 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822}
823
824/*
825 * Free a buffer structure and the things it contains related to the buffer
826 * itself (not the file, that must have been done already).
827 */
828 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100829free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200831 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200833#ifdef FEAT_EVAL
834 unref_var_dict(buf->b_vars);
835#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200836#ifdef FEAT_LUA
837 lua_buffer_free(buf);
838#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000839#ifdef FEAT_MZSCHEME
840 mzscheme_buffer_free(buf);
841#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842#ifdef FEAT_PERL
843 perl_buf_free(buf);
844#endif
845#ifdef FEAT_PYTHON
846 python_buffer_free(buf);
847#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200848#ifdef FEAT_PYTHON3
849 python3_buffer_free(buf);
850#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851#ifdef FEAT_RUBY
852 ruby_buffer_free(buf);
853#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200854#ifdef FEAT_JOB_CHANNEL
855 channel_buffer_free(buf);
856#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200857
858 buf_hashtab_remove(buf);
859
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200860#ifdef FEAT_AUTOCMD
861 aubuflocal_remove(buf);
862
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200863 if (autocmd_busy)
864 {
865 /* Do not free the buffer structure while autocommands are executing,
866 * it's still needed. Free it when autocmd_busy is reset. */
867 buf->b_next = au_pending_free_buf;
868 au_pending_free_buf = buf;
869 }
870 else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000871#endif
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200872 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873}
874
875/*
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100876 * Initializes b:changedtick.
Bram Moolenaar79518e22017-02-17 16:31:35 +0100877 */
878 static void
879init_changedtick(buf_T *buf)
880{
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100881 dictitem_T *di = (dictitem_T *)&buf->b_ct_di;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100882
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100883 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO;
884 di->di_tv.v_type = VAR_NUMBER;
885 di->di_tv.v_lock = VAR_FIXED;
886 di->di_tv.vval.v_number = 0;
887
888 STRCPY(buf->b_ct_di.di_key, "changedtick");
889 (void)dict_add(buf->b_vars, di);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100890}
891
892/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
894 */
895 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100896free_buffer_stuff(
897 buf_T *buf,
898 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899{
900 if (free_options)
901 {
902 clear_wininfo(buf); /* including window-local options */
903 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200904#ifdef FEAT_SPELL
905 ga_clear(&buf->b_s.b_langp);
906#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 }
908#ifdef FEAT_EVAL
Bram Moolenaar79518e22017-02-17 16:31:35 +0100909 {
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100910 varnumber_T tick = CHANGEDTICK(buf);
Bram Moolenaar79518e22017-02-17 16:31:35 +0100911
912 vars_clear(&buf->b_vars->dv_hashtab); /* free all buffer variables */
913 hash_init(&buf->b_vars->dv_hashtab);
914 init_changedtick(buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100915 CHANGEDTICK(buf) = tick;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100916 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917#endif
918#ifdef FEAT_USR_CMDS
919 uc_clear(&buf->b_ucmds); /* clear local user commands */
920#endif
921#ifdef FEAT_SIGNS
922 buf_delete_signs(buf); /* delete any signs */
923#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000924#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200925 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927#ifdef FEAT_LOCALMAP
928 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
929 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
930#endif
931#ifdef FEAT_MBYTE
932 vim_free(buf->b_start_fenc);
933 buf->b_start_fenc = NULL;
934#endif
935}
936
937/*
938 * Free the b_wininfo list for buffer "buf".
939 */
940 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100941clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942{
943 wininfo_T *wip;
944
945 while (buf->b_wininfo != NULL)
946 {
947 wip = buf->b_wininfo;
948 buf->b_wininfo = wip->wi_next;
949 if (wip->wi_optset)
950 {
951 clear_winopt(&wip->wi_opt);
952#ifdef FEAT_FOLDING
953 deleteFoldRecurse(&wip->wi_folds);
954#endif
955 }
956 vim_free(wip);
957 }
958}
959
960#if defined(FEAT_LISTCMDS) || defined(PROTO)
961/*
962 * Go to another buffer. Handles the result of the ATTENTION dialog.
963 */
964 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100965goto_buffer(
966 exarg_T *eap,
967 int start,
968 int dir,
969 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970{
Bram Moolenaare64ac772005-12-07 20:54:59 +0000971# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200972 bufref_T old_curbuf;
973
974 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975
976 swap_exists_action = SEA_DIALOG;
977# endif
978 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
979 start, dir, count, eap->forceit);
Bram Moolenaare64ac772005-12-07 20:54:59 +0000980# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
982 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000983# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
984 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000985
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000986 /* Reset the error/interrupt/exception state here so that
987 * aborting() returns FALSE when closing a window. */
988 enter_cleanup(&cs);
989# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000990
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000991 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 win_close(curwin, TRUE);
993 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000994 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000995
996# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
997 /* Restore the error/interrupt/exception state if not discarded by a
998 * new aborting error, interrupt, or uncaught exception. */
999 leave_cleanup(&cs);
1000# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 }
1002 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001003 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004# endif
1005}
1006#endif
1007
Bram Moolenaare64ac772005-12-07 20:54:59 +00001008#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009/*
1010 * Handle the situation of swap_exists_action being set.
1011 * It is allowed for "old_curbuf" to be NULL or invalid.
1012 */
1013 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001014handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015{
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001016# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1017 cleanup_T cs;
1018# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001019#ifdef FEAT_SYN_HL
1020 long old_tw = curbuf->b_p_tw;
1021#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001022 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001023
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 if (swap_exists_action == SEA_QUIT)
1025 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001026# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1027 /* Reset the error/interrupt/exception state here so that
1028 * aborting() returns FALSE when closing a buffer. */
1029 enter_cleanup(&cs);
1030# endif
1031
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 /* User selected Quit at ATTENTION prompt. Go back to previous
1033 * buffer. If that buffer is gone or the same as the current one,
1034 * open a new, empty buffer. */
1035 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001036 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001037 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001038 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1039 || old_curbuf->br_buf == curbuf)
1040 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1041 else
1042 buf = old_curbuf->br_buf;
1043 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001044 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001045 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001046#ifdef FEAT_SYN_HL
1047 if (old_tw != curbuf->b_p_tw)
1048 check_colorcolumn(curwin);
1049#endif
1050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001052
1053# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1054 /* Restore the error/interrupt/exception state if not discarded by a
1055 * new aborting error, interrupt, or uncaught exception. */
1056 leave_cleanup(&cs);
1057# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 }
1059 else if (swap_exists_action == SEA_RECOVER)
1060 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001061# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1062 /* Reset the error/interrupt/exception state here so that
1063 * aborting() returns FALSE when closing a buffer. */
1064 enter_cleanup(&cs);
1065# endif
1066
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 /* User selected Recover at ATTENTION prompt. */
1068 msg_scroll = TRUE;
1069 ml_recover();
1070 MSG_PUTS("\n"); /* don't overwrite the last message */
1071 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001072 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001073
1074# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1075 /* Restore the error/interrupt/exception state if not discarded by a
1076 * new aborting error, interrupt, or uncaught exception. */
1077 leave_cleanup(&cs);
1078# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 }
1080 swap_exists_action = SEA_NONE;
1081}
1082#endif
1083
1084#if defined(FEAT_LISTCMDS) || defined(PROTO)
1085/*
1086 * do_bufdel() - delete or unload buffer(s)
1087 *
1088 * addr_count == 0: ":bdel" - delete current buffer
1089 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1090 * buffer "end_bnr", then any other arguments.
1091 * addr_count == 2: ":N,N bdel" - delete buffers in range
1092 *
1093 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1094 * DOBUF_DEL (":bdel")
1095 *
1096 * Returns error message or NULL
1097 */
1098 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001099do_bufdel(
1100 int command,
1101 char_u *arg, /* pointer to extra arguments */
1102 int addr_count,
1103 int start_bnr, /* first buffer number in a range */
1104 int end_bnr, /* buffer nr or last buffer nr in a range */
1105 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106{
1107 int do_current = 0; /* delete current buffer? */
1108 int deleted = 0; /* number of buffers deleted */
1109 char_u *errormsg = NULL; /* return value */
1110 int bnr; /* buffer number */
1111 char_u *p;
1112
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 if (addr_count == 0)
1114 {
1115 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1116 }
1117 else
1118 {
1119 if (addr_count == 2)
1120 {
1121 if (*arg) /* both range and argument is not allowed */
1122 return (char_u *)_(e_trailing);
1123 bnr = start_bnr;
1124 }
1125 else /* addr_count == 1 */
1126 bnr = end_bnr;
1127
1128 for ( ;!got_int; ui_breakcheck())
1129 {
1130 /*
1131 * delete the current buffer last, otherwise when the
1132 * current buffer is deleted, the next buffer becomes
1133 * the current one and will be loaded, which may then
1134 * also be deleted, etc.
1135 */
1136 if (bnr == curbuf->b_fnum)
1137 do_current = bnr;
1138 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1139 forceit) == OK)
1140 ++deleted;
1141
1142 /*
1143 * find next buffer number to delete/unload
1144 */
1145 if (addr_count == 2)
1146 {
1147 if (++bnr > end_bnr)
1148 break;
1149 }
1150 else /* addr_count == 1 */
1151 {
1152 arg = skipwhite(arg);
1153 if (*arg == NUL)
1154 break;
1155 if (!VIM_ISDIGIT(*arg))
1156 {
1157 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001158 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1159 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 if (bnr < 0) /* failed */
1161 break;
1162 arg = p;
1163 }
1164 else
1165 bnr = getdigits(&arg);
1166 }
1167 }
1168 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1169 FORWARD, do_current, forceit) == OK)
1170 ++deleted;
1171
1172 if (deleted == 0)
1173 {
1174 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001175 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001177 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001179 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 errormsg = IObuff;
1181 }
1182 else if (deleted >= p_report)
1183 {
1184 if (command == DOBUF_UNLOAD)
1185 {
1186 if (deleted == 1)
1187 MSG(_("1 buffer unloaded"));
1188 else
1189 smsg((char_u *)_("%d buffers unloaded"), deleted);
1190 }
1191 else if (command == DOBUF_DEL)
1192 {
1193 if (deleted == 1)
1194 MSG(_("1 buffer deleted"));
1195 else
1196 smsg((char_u *)_("%d buffers deleted"), deleted);
1197 }
1198 else
1199 {
1200 if (deleted == 1)
1201 MSG(_("1 buffer wiped out"));
1202 else
1203 smsg((char_u *)_("%d buffers wiped out"), deleted);
1204 }
1205 }
1206 }
1207
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208
1209 return errormsg;
1210}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001211#endif /* FEAT_LISTCMDS */
1212
1213#if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \
1214 || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001216static int empty_curbuf(int close_others, int forceit, int action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001217
1218/*
1219 * Make the current buffer empty.
1220 * Used when it is wiped out and it's the last buffer.
1221 */
1222 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001223empty_curbuf(
1224 int close_others,
1225 int forceit,
1226 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001227{
1228 int retval;
1229 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001230 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001231
1232 if (action == DOBUF_UNLOAD)
1233 {
1234 EMSG(_("E90: Cannot unload last buffer"));
1235 return FAIL;
1236 }
1237
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001238 set_bufref(&bufref, buf);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001239#ifdef FEAT_WINDOWS
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001240 if (close_others)
1241 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001242 close_windows(buf, TRUE);
1243#endif
Bram Moolenaara02471e2014-01-10 16:43:14 +01001244
1245 setpcmark();
1246 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1247 forceit ? ECMD_FORCEIT : 0, curwin);
1248
1249 /*
1250 * do_ecmd() may create a new buffer, then we have to delete
1251 * the old one. But do_ecmd() may have done that already, check
1252 * if the buffer still exists.
1253 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001254 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001255 close_buffer(NULL, buf, action, FALSE);
1256 if (!close_others)
1257 need_fileinfo = FALSE;
1258 return retval;
1259}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260/*
1261 * Implementation of the commands for the buffer list.
1262 *
1263 * action == DOBUF_GOTO go to specified buffer
1264 * action == DOBUF_SPLIT split window and go to specified buffer
1265 * action == DOBUF_UNLOAD unload specified buffer(s)
1266 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1267 * action == DOBUF_WIPE delete specified buffer(s) really
1268 *
1269 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1270 * start == DOBUF_FIRST go to "count" buffer from first buffer
1271 * start == DOBUF_LAST go to "count" buffer from last buffer
1272 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1273 *
1274 * Return FAIL or OK.
1275 */
1276 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001277do_buffer(
1278 int action,
1279 int start,
1280 int dir, /* FORWARD or BACKWARD */
1281 int count, /* buffer number or number of buffers */
1282 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283{
1284 buf_T *buf;
1285 buf_T *bp;
1286 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1287 || action == DOBUF_WIPE);
1288
1289 switch (start)
1290 {
1291 case DOBUF_FIRST: buf = firstbuf; break;
1292 case DOBUF_LAST: buf = lastbuf; break;
1293 default: buf = curbuf; break;
1294 }
1295 if (start == DOBUF_MOD) /* find next modified buffer */
1296 {
1297 while (count-- > 0)
1298 {
1299 do
1300 {
1301 buf = buf->b_next;
1302 if (buf == NULL)
1303 buf = firstbuf;
1304 }
1305 while (buf != curbuf && !bufIsChanged(buf));
1306 }
1307 if (!bufIsChanged(buf))
1308 {
1309 EMSG(_("E84: No modified buffer found"));
1310 return FAIL;
1311 }
1312 }
1313 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1314 {
1315 while (buf != NULL && buf->b_fnum != count)
1316 buf = buf->b_next;
1317 }
1318 else
1319 {
1320 bp = NULL;
1321 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1322 {
1323 /* remember the buffer where we start, we come back there when all
1324 * buffers are unlisted. */
1325 if (bp == NULL)
1326 bp = buf;
1327 if (dir == FORWARD)
1328 {
1329 buf = buf->b_next;
1330 if (buf == NULL)
1331 buf = firstbuf;
1332 }
1333 else
1334 {
1335 buf = buf->b_prev;
1336 if (buf == NULL)
1337 buf = lastbuf;
1338 }
1339 /* don't count unlisted buffers */
1340 if (unload || buf->b_p_bl)
1341 {
1342 --count;
1343 bp = NULL; /* use this buffer as new starting point */
1344 }
1345 if (bp == buf)
1346 {
1347 /* back where we started, didn't find anything. */
1348 EMSG(_("E85: There is no listed buffer"));
1349 return FAIL;
1350 }
1351 }
1352 }
1353
1354 if (buf == NULL) /* could not find it */
1355 {
1356 if (start == DOBUF_FIRST)
1357 {
1358 /* don't warn when deleting */
1359 if (!unload)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01001360 EMSGN(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 }
1362 else if (dir == FORWARD)
1363 EMSG(_("E87: Cannot go beyond last buffer"));
1364 else
1365 EMSG(_("E88: Cannot go before first buffer"));
1366 return FAIL;
1367 }
1368
1369#ifdef FEAT_GUI
1370 need_mouse_correct = TRUE;
1371#endif
1372
1373#ifdef FEAT_LISTCMDS
1374 /*
1375 * delete buffer buf from memory and/or the list
1376 */
1377 if (unload)
1378 {
1379 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001380# if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS)
1381 bufref_T bufref;
1382
1383 set_bufref(&bufref, buf);
1384# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385
1386 /* When unloading or deleting a buffer that's already unloaded and
1387 * unlisted: fail silently. */
1388 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1389 return FAIL;
1390
1391 if (!forceit && bufIsChanged(buf))
1392 {
1393#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1394 if ((p_confirm || cmdmod.confirm) && p_write)
1395 {
1396 dialog_changed(buf, FALSE);
1397# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001398 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 /* Autocommand deleted buffer, oops! It's not changed
1400 * now. */
1401 return FAIL;
1402# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001403 /* If it's still changed fail silently, the dialog already
1404 * mentioned why it fails. */
1405 if (bufIsChanged(buf))
1406 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001408 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409#endif
1410 {
1411 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1412 buf->b_fnum);
1413 return FAIL;
1414 }
1415 }
1416
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001417 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001418 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001419 end_visual_mode();
1420
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 /*
1422 * If deleting the last (listed) buffer, make it empty.
1423 * The last (listed) buffer cannot be unloaded.
1424 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001425 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 if (bp->b_p_bl && bp != buf)
1427 break;
1428 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001429 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430
1431#ifdef FEAT_WINDOWS
1432 /*
1433 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001434 * (unless it's the only window). Repeat this so long as we end up in
1435 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001437 while (buf == curbuf
Bram Moolenaar362ce482012-06-06 19:02:45 +02001438# ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001439 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02001440# endif
Bram Moolenaar459ca562016-11-10 18:16:33 +01001441 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001442 {
1443 if (win_close(curwin, FALSE) == FAIL)
1444 break;
1445 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446#endif
1447
1448 /*
1449 * If the buffer to be deleted is not the current one, delete it here.
1450 */
1451 if (buf != curbuf)
1452 {
1453#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00001454 close_windows(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001455 if (buf != curbuf && bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456#endif
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001457 if (buf->b_nwindows <= 0)
1458 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 return OK;
1460 }
1461
1462 /*
1463 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001464 * There should be another, otherwise it would have been handled
1465 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001466 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 * Then prefer the buffer we most recently visited.
1468 * Else try to find one that is loaded, after the current buffer,
1469 * then before the current buffer.
1470 * Finally use any buffer.
1471 */
1472 buf = NULL; /* selected buffer */
1473 bp = NULL; /* used when no loaded buffer found */
1474#ifdef FEAT_AUTOCMD
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001475 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1476 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477# ifdef FEAT_JUMPLIST
1478 else
1479# endif
1480#endif
1481#ifdef FEAT_JUMPLIST
1482 if (curwin->w_jumplistlen > 0)
1483 {
1484 int jumpidx;
1485
1486 jumpidx = curwin->w_jumplistidx - 1;
1487 if (jumpidx < 0)
1488 jumpidx = curwin->w_jumplistlen - 1;
1489
1490 forward = jumpidx;
1491 while (jumpidx != curwin->w_jumplistidx)
1492 {
1493 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1494 if (buf != NULL)
1495 {
1496 if (buf == curbuf || !buf->b_p_bl)
1497 buf = NULL; /* skip current and unlisted bufs */
1498 else if (buf->b_ml.ml_mfp == NULL)
1499 {
1500 /* skip unloaded buf, but may keep it for later */
1501 if (bp == NULL)
1502 bp = buf;
1503 buf = NULL;
1504 }
1505 }
1506 if (buf != NULL) /* found a valid buffer: stop searching */
1507 break;
1508 /* advance to older entry in jump list */
1509 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1510 break;
1511 if (--jumpidx < 0)
1512 jumpidx = curwin->w_jumplistlen - 1;
1513 if (jumpidx == forward) /* List exhausted for sure */
1514 break;
1515 }
1516 }
1517#endif
1518
1519 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1520 {
1521 forward = TRUE;
1522 buf = curbuf->b_next;
1523 for (;;)
1524 {
1525 if (buf == NULL)
1526 {
1527 if (!forward) /* tried both directions */
1528 break;
1529 buf = curbuf->b_prev;
1530 forward = FALSE;
1531 continue;
1532 }
1533 /* in non-help buffer, try to skip help buffers, and vv */
1534 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1535 {
1536 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1537 break;
1538 if (bp == NULL) /* remember unloaded buf for later */
1539 bp = buf;
1540 }
1541 if (forward)
1542 buf = buf->b_next;
1543 else
1544 buf = buf->b_prev;
1545 }
1546 }
1547 if (buf == NULL) /* No loaded buffer, use unloaded one */
1548 buf = bp;
1549 if (buf == NULL) /* No loaded buffer, find listed one */
1550 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001551 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 if (buf->b_p_bl && buf != curbuf)
1553 break;
1554 }
1555 if (buf == NULL) /* Still no buffer, just take one */
1556 {
1557 if (curbuf->b_next != NULL)
1558 buf = curbuf->b_next;
1559 else
1560 buf = curbuf->b_prev;
1561 }
1562 }
1563
Bram Moolenaara02471e2014-01-10 16:43:14 +01001564 if (buf == NULL)
1565 {
1566 /* Autocommands must have wiped out all other buffers. Only option
1567 * now is to make the current buffer empty. */
1568 return empty_curbuf(FALSE, forceit, action);
1569 }
1570
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 /*
1572 * make buf current buffer
1573 */
1574 if (action == DOBUF_SPLIT) /* split window first */
1575 {
1576# ifdef FEAT_WINDOWS
Bram Moolenaarf2330482008-06-24 20:19:36 +00001577 /* If 'switchbuf' contains "useopen": jump to first window containing
1578 * "buf" if one exists */
1579 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001580 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001581 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001582 * page containing "buf" if one exists */
1583 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 return OK;
1585 if (win_split(0, 0) == FAIL)
1586# endif
1587 return FAIL;
1588 }
1589#endif
1590
1591 /* go to current buffer - nothing to do */
1592 if (buf == curbuf)
1593 return OK;
1594
1595 /*
1596 * Check if the current buffer may be abandoned.
1597 */
1598 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1599 {
1600#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1601 if ((p_confirm || cmdmod.confirm) && p_write)
1602 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001603# ifdef FEAT_AUTOCMD
1604 bufref_T bufref;
1605
1606 set_bufref(&bufref, buf);
1607# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 dialog_changed(curbuf, FALSE);
1609# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001610 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 /* Autocommand deleted buffer, oops! */
1612 return FAIL;
1613# endif
1614 }
1615 if (bufIsChanged(curbuf))
1616#endif
1617 {
1618 EMSG(_(e_nowrtmsg));
1619 return FAIL;
1620 }
1621 }
1622
1623 /* Go to the other buffer. */
1624 set_curbuf(buf, action);
1625
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001626#if defined(FEAT_LISTCMDS) \
1627 && (defined(FEAT_SCROLLBIND) || defined(FEAT_CURSORBIND))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001629 {
1630 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632#endif
1633
1634#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1635 if (aborting()) /* autocmds may abort script processing */
1636 return FAIL;
1637#endif
1638
1639 return OK;
1640}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001641#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642
1643/*
1644 * Set current buffer to "buf". Executes autocommands and closes current
1645 * buffer. "action" tells how to close the current buffer:
1646 * DOBUF_GOTO free or hide it
1647 * DOBUF_SPLIT nothing
1648 * DOBUF_UNLOAD unload it
1649 * DOBUF_DEL delete it
1650 * DOBUF_WIPE wipe it out
1651 */
1652 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001653set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654{
1655 buf_T *prevbuf;
1656 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1657 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001658#ifdef FEAT_SYN_HL
1659 long old_tw = curbuf->b_p_tw;
1660#endif
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001661 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662
1663 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001664 if (!cmdmod.keepalt)
1665 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001666 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 /* Don't restart Select mode after switching to another buffer. */
1669 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670
1671 /* close_windows() or apply_autocmds() may change curbuf */
1672 prevbuf = curbuf;
Bram Moolenaar453f37d2016-07-10 18:33:59 +02001673 set_bufref(&bufref, prevbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674
1675#ifdef FEAT_AUTOCMD
Bram Moolenaar82404332016-07-10 17:00:38 +02001676 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677# ifdef FEAT_EVAL
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001678 || (bufref_valid(&bufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679# else
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001680 || bufref_valid(&bufref)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681# endif
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001682 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683#endif
1684 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001685#ifdef FEAT_SYN_HL
1686 if (prevbuf == curwin->w_buffer)
1687 reset_synblock(curwin);
1688#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689#ifdef FEAT_WINDOWS
1690 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001691 close_windows(prevbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692#endif
1693#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001694 if (bufref_valid(&bufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695#else
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001696 if (bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001698 {
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001699#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001700 win_T *previouswin = curwin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001701#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001702 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001703 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1705 unload ? action : (action == DOBUF_GOTO
1706 && !P_HID(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001707 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001708#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001709 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001710 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001711 curwin = previouswin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001712#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001713 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 }
1715#ifdef FEAT_AUTOCMD
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001716 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001717 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001718 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1719 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001720# ifdef FEAT_EVAL
Bram Moolenaar9e931222012-06-20 11:55:01 +02001721 && !aborting()
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001722# endif
1723# ifdef FEAT_WINDOWS
Bram Moolenaar9e931222012-06-20 11:55:01 +02001724 ) || curwin->w_buffer == NULL
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001725# endif
Bram Moolenaar9e931222012-06-20 11:55:01 +02001726 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001728 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001730#ifdef FEAT_SYN_HL
1731 if (old_tw != curbuf->b_p_tw)
1732 check_colorcolumn(curwin);
1733#endif
1734 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735}
1736
1737/*
1738 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001739 * Old curbuf must have been abandoned already! This also means "curbuf" may
1740 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 */
1742 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001743enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744{
1745 /* Copy buffer and window local option values. Not for a help buffer. */
1746 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1747 if (!buf->b_help)
1748 get_winopts(buf);
1749#ifdef FEAT_FOLDING
1750 else
1751 /* Remove all folds in the window. */
1752 clearFolding(curwin);
1753 foldUpdateAll(curwin); /* update folds (later). */
1754#endif
1755
1756 /* Get the buffer in the current window. */
1757 curwin->w_buffer = buf;
1758 curbuf = buf;
1759 ++curbuf->b_nwindows;
1760
1761#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001762 if (curwin->w_p_diff)
1763 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764#endif
1765
Bram Moolenaara971b822011-09-14 14:43:25 +02001766#ifdef FEAT_SYN_HL
1767 curwin->w_s = &(buf->b_s);
1768#endif
1769
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 /* Cursor on first line by default. */
1771 curwin->w_cursor.lnum = 1;
1772 curwin->w_cursor.col = 0;
1773#ifdef FEAT_VIRTUALEDIT
1774 curwin->w_cursor.coladd = 0;
1775#endif
1776 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001777#ifdef FEAT_AUTOCMD
1778 curwin->w_topline_was_set = FALSE;
1779#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001781 /* mark cursor position as being invalid */
1782 curwin->w_valid = 0;
1783
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 /* Make sure the buffer is loaded. */
1785 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001786 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001787#ifdef FEAT_AUTOCMD
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001788 /* If there is no filetype, allow for detecting one. Esp. useful for
1789 * ":ball" used in a autocommand. If there already is a filetype we
1790 * might prefer to keep it. */
1791 if (*curbuf->b_p_ft == NUL)
1792 did_filetype = FALSE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001793#endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001794
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001795 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001796 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 else
1798 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001799 if (!msg_silent)
1800 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1802#ifdef FEAT_AUTOCMD
1803 curwin->w_topline = 1;
1804# ifdef FEAT_DIFF
1805 curwin->w_topfill = 0;
1806# endif
1807 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1808 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1809#endif
1810 }
1811
1812 /* If autocommands did not change the cursor position, restore cursor lnum
1813 * and possibly cursor col. */
1814 if (curwin->w_cursor.lnum == 1 && inindent(0))
1815 buflist_getfpos();
1816
1817 check_arg_idx(curwin); /* check for valid arg_idx */
1818#ifdef FEAT_TITLE
1819 maketitle();
1820#endif
1821#ifdef FEAT_AUTOCMD
Bram Moolenaard4153d42008-11-15 15:06:17 +00001822 /* when autocmds didn't change it */
1823 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824#endif
1825 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1826
Bram Moolenaar009b2592004-10-24 19:18:58 +00001827#ifdef FEAT_NETBEANS_INTG
1828 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001829 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001830#endif
1831
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001832 /* Change directories when the 'acd' option is set. */
1833 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834
1835#ifdef FEAT_KEYMAP
1836 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001837 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001839#ifdef FEAT_SPELL
1840 /* May need to set the spell language. Can only do this after the buffer
1841 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001842 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1843 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001844#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001845#ifdef FEAT_VIMINFO
1846 curbuf->b_last_used = vim_time();
1847#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001848
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 redraw_later(NOT_VALID);
1850}
1851
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001852#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1853/*
1854 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001855 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001856 */
1857 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001858do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001859{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001860 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001861 && curbuf->b_ffname != NULL
1862 && vim_chdirfile(curbuf->b_ffname) == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001863 shorten_fnames(TRUE);
1864}
1865#endif
1866
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867/*
1868 * functions for dealing with the buffer list
1869 */
1870
Bram Moolenaar480778b2016-07-14 22:09:39 +02001871static int top_file_num = 1; /* highest file number */
1872
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873/*
1874 * Add a file name to the buffer list. Return a pointer to the buffer.
1875 * If the same file name already exists return a pointer to that buffer.
1876 * If it does not exist, or if fname == NULL, a new entry is created.
1877 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1878 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1879 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001880 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001881 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1882 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 * This is the ONLY way to create a new buffer.
1884 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001886buflist_new(
1887 char_u *ffname, /* full path of fname or relative */
1888 char_u *sfname, /* short fname or NULL */
1889 linenr_T lnum, /* preferred cursor line */
1890 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891{
1892 buf_T *buf;
1893#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001894 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895#endif
1896
Bram Moolenaar480778b2016-07-14 22:09:39 +02001897 if (top_file_num == 1)
1898 hash_init(&buf_hashtab);
1899
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1901
1902 /*
1903 * If file name already exists in the list, update the entry.
1904 */
1905#ifdef UNIX
1906 /* On Unix we can use inode numbers when the file exists. Works better
1907 * for hard links. */
1908 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1909 st.st_dev = (dev_T)-1;
1910#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001911 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912#ifdef UNIX
1913 buflist_findname_stat(ffname, &st)
1914#else
1915 buflist_findname(ffname)
1916#endif
1917 ) != NULL)
1918 {
1919 vim_free(ffname);
1920 if (lnum != 0)
1921 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001922
1923 if ((flags & BLN_NOOPT) == 0)
1924 /* copy the options now, if 'cpo' doesn't have 's' and not done
1925 * already */
1926 buf_copy_options(buf, 0);
1927
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1929 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001930#ifdef FEAT_AUTOCMD
1931 bufref_T bufref;
1932#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 buf->b_p_bl = TRUE;
1934#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001935 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001937 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001938 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001939 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001940 return NULL;
1941 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942#endif
1943 }
1944 return buf;
1945 }
1946
1947 /*
1948 * If the current buffer has no name and no contents, use the current
1949 * buffer. Otherwise: Need to allocate a new buffer structure.
1950 *
1951 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001952 * (A spell file buffer is allocated in spell.c, but that's not a normal
1953 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 */
1955 buf = NULL;
1956 if ((flags & BLN_CURBUF)
1957 && curbuf != NULL
1958 && curbuf->b_ffname == NULL
1959 && curbuf->b_nwindows <= 1
1960 && (curbuf->b_ml.ml_mfp == NULL || bufempty()))
1961 {
1962 buf = curbuf;
1963#ifdef FEAT_AUTOCMD
1964 /* It's like this buffer is deleted. Watch out for autocommands that
1965 * change curbuf! If that happens, allocate a new buffer anyway. */
1966 if (curbuf->b_p_bl)
1967 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1968 if (buf == curbuf)
1969 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
1970# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001971 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 return NULL;
1973# endif
1974#endif
1975#ifdef FEAT_QUICKFIX
1976# ifdef FEAT_AUTOCMD
1977 if (buf == curbuf)
1978# endif
1979 {
1980 /* Make sure 'bufhidden' and 'buftype' are empty */
1981 clear_string_option(&buf->b_p_bh);
1982 clear_string_option(&buf->b_p_bt);
1983 }
1984#endif
1985 }
1986 if (buf != curbuf || curbuf == NULL)
1987 {
1988 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1989 if (buf == NULL)
1990 {
1991 vim_free(ffname);
1992 return NULL;
1993 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001994#ifdef FEAT_EVAL
1995 /* init b: variables */
1996 buf->b_vars = dict_alloc();
1997 if (buf->b_vars == NULL)
1998 {
1999 vim_free(ffname);
2000 vim_free(buf);
2001 return NULL;
2002 }
2003 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
2004#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01002005 init_changedtick(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 }
2007
2008 if (ffname != NULL)
2009 {
2010 buf->b_ffname = ffname;
2011 buf->b_sfname = vim_strsave(sfname);
2012 }
2013
2014 clear_wininfo(buf);
2015 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2016
2017 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
2018 || buf->b_wininfo == NULL)
2019 {
2020 vim_free(buf->b_ffname);
2021 buf->b_ffname = NULL;
2022 vim_free(buf->b_sfname);
2023 buf->b_sfname = NULL;
2024 if (buf != curbuf)
2025 free_buffer(buf);
2026 return NULL;
2027 }
2028
2029 if (buf == curbuf)
2030 {
2031 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002032 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 if (buf != curbuf) /* autocommands deleted the buffer! */
2034 return NULL;
2035#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002036 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 return NULL;
2038#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002040
2041 /* Init the options. */
2042 buf->b_p_initialized = FALSE;
2043 buf_copy_options(buf, BCO_ENTER);
2044
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045#ifdef FEAT_KEYMAP
2046 /* need to reload lmaps and set b:keymap_name */
2047 curbuf->b_kmap_state |= KEYMAP_INIT;
2048#endif
2049 }
2050 else
2051 {
2052 /*
2053 * put new buffer at the end of the buffer list
2054 */
2055 buf->b_next = NULL;
2056 if (firstbuf == NULL) /* buffer list is empty */
2057 {
2058 buf->b_prev = NULL;
2059 firstbuf = buf;
2060 }
2061 else /* append new buffer at end of list */
2062 {
2063 lastbuf->b_next = buf;
2064 buf->b_prev = lastbuf;
2065 }
2066 lastbuf = buf;
2067
2068 buf->b_fnum = top_file_num++;
2069 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2070 {
2071 EMSG(_("W14: Warning: List of file names overflow"));
2072 if (emsg_silent == 0)
2073 {
2074 out_flush();
2075 ui_delay(3000L, TRUE); /* make sure it is noticed */
2076 }
2077 top_file_num = 1;
2078 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002079 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080
2081 /*
2082 * Always copy the options from the current buffer.
2083 */
2084 buf_copy_options(buf, BCO_ALWAYS);
2085 }
2086
2087 buf->b_wininfo->wi_fpos.lnum = lnum;
2088 buf->b_wininfo->wi_win = curwin;
2089
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002090#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002091 hash_init(&buf->b_s.b_keywtab);
2092 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093#endif
2094
2095 buf->b_fname = buf->b_sfname;
2096#ifdef UNIX
2097 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002098 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 else
2100 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002101 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 buf->b_dev = st.st_dev;
2103 buf->b_ino = st.st_ino;
2104 }
2105#endif
2106 buf->b_u_synced = TRUE;
2107 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002108 if (flags & BLN_DUMMY)
2109 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 buf_clear_file(buf);
2111 clrallmarks(buf); /* clear marks */
2112 fmarks_check_names(buf); /* check file marks for this file */
2113 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
2114#ifdef FEAT_AUTOCMD
2115 if (!(flags & BLN_DUMMY))
2116 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002117 bufref_T bufref;
2118
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002119 /* Tricky: these autocommands may change the buffer list. They could
2120 * also split the window with re-using the one empty buffer. This may
2121 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002122 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002123 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002124 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002125 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002127 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002128 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002129 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002130 return NULL;
2131 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002133 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 return NULL;
2135# endif
2136 }
2137#endif
2138
2139 return buf;
2140}
2141
2142/*
2143 * Free the memory for the options of a buffer.
2144 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2145 * 'fileencoding'.
2146 */
2147 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002148free_buf_options(
2149 buf_T *buf,
2150 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151{
2152 if (free_p_ff)
2153 {
2154#ifdef FEAT_MBYTE
2155 clear_string_option(&buf->b_p_fenc);
2156#endif
2157 clear_string_option(&buf->b_p_ff);
2158#ifdef FEAT_QUICKFIX
2159 clear_string_option(&buf->b_p_bh);
2160 clear_string_option(&buf->b_p_bt);
2161#endif
2162 }
2163#ifdef FEAT_FIND_ID
2164 clear_string_option(&buf->b_p_def);
2165 clear_string_option(&buf->b_p_inc);
2166# ifdef FEAT_EVAL
2167 clear_string_option(&buf->b_p_inex);
2168# endif
2169#endif
2170#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2171 clear_string_option(&buf->b_p_inde);
2172 clear_string_option(&buf->b_p_indk);
2173#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002174#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2175 clear_string_option(&buf->b_p_bexpr);
2176#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002177#if defined(FEAT_CRYPT)
2178 clear_string_option(&buf->b_p_cm);
2179#endif
Bram Moolenaar24a2d412017-01-24 17:48:36 +01002180 clear_string_option(&buf->b_p_fp);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002181#if defined(FEAT_EVAL)
2182 clear_string_option(&buf->b_p_fex);
2183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184#ifdef FEAT_CRYPT
2185 clear_string_option(&buf->b_p_key);
2186#endif
2187 clear_string_option(&buf->b_p_kp);
2188 clear_string_option(&buf->b_p_mps);
2189 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002190 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 clear_string_option(&buf->b_p_isk);
2192#ifdef FEAT_KEYMAP
2193 clear_string_option(&buf->b_p_keymap);
2194 ga_clear(&buf->b_kmap_ga);
2195#endif
2196#ifdef FEAT_COMMENTS
2197 clear_string_option(&buf->b_p_com);
2198#endif
2199#ifdef FEAT_FOLDING
2200 clear_string_option(&buf->b_p_cms);
2201#endif
2202 clear_string_option(&buf->b_p_nf);
2203#ifdef FEAT_SYN_HL
2204 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002205 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002206#endif
2207#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002208 clear_string_option(&buf->b_s.b_p_spc);
2209 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002210 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002211 buf->b_s.b_cap_prog = NULL;
2212 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213#endif
2214#ifdef FEAT_SEARCHPATH
2215 clear_string_option(&buf->b_p_sua);
2216#endif
2217#ifdef FEAT_AUTOCMD
2218 clear_string_option(&buf->b_p_ft);
2219#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220#ifdef FEAT_CINDENT
2221 clear_string_option(&buf->b_p_cink);
2222 clear_string_option(&buf->b_p_cino);
2223#endif
2224#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2225 clear_string_option(&buf->b_p_cinw);
2226#endif
2227#ifdef FEAT_INS_EXPAND
2228 clear_string_option(&buf->b_p_cpt);
2229#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002230#ifdef FEAT_COMPL_FUNC
2231 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002232 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002233#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234#ifdef FEAT_QUICKFIX
2235 clear_string_option(&buf->b_p_gp);
2236 clear_string_option(&buf->b_p_mp);
2237 clear_string_option(&buf->b_p_efm);
2238#endif
2239 clear_string_option(&buf->b_p_ep);
2240 clear_string_option(&buf->b_p_path);
2241 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002242 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243#ifdef FEAT_INS_EXPAND
2244 clear_string_option(&buf->b_p_dict);
2245 clear_string_option(&buf->b_p_tsr);
2246#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002247#ifdef FEAT_TEXTOBJ
2248 clear_string_option(&buf->b_p_qe);
2249#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002251 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002252#ifdef FEAT_LISP
2253 clear_string_option(&buf->b_p_lw);
2254#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002255 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256}
2257
2258/*
2259 * get alternate file n
2260 * set linenr to lnum or altfpos.lnum if lnum == 0
2261 * also set cursor column to altfpos.col if 'startofline' is not set.
2262 * if (options & GETF_SETMARK) call setpcmark()
2263 * if (options & GETF_ALT) we are jumping to an alternate file.
2264 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2265 *
2266 * return FAIL for failure, OK for success
2267 */
2268 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002269buflist_getfile(
2270 int n,
2271 linenr_T lnum,
2272 int options,
2273 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274{
2275 buf_T *buf;
2276#ifdef FEAT_WINDOWS
2277 win_T *wp = NULL;
2278#endif
2279 pos_T *fpos;
2280 colnr_T col;
2281
2282 buf = buflist_findnr(n);
2283 if (buf == NULL)
2284 {
2285 if ((options & GETF_ALT) && n == 0)
2286 EMSG(_(e_noalt));
2287 else
2288 EMSGN(_("E92: Buffer %ld not found"), n);
2289 return FAIL;
2290 }
2291
2292 /* if alternate file is the current buffer, nothing to do */
2293 if (buf == curbuf)
2294 return OK;
2295
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002296 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002297 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002298 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002300 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002301#ifdef FEAT_AUTOCMD
2302 if (curbuf_locked())
2303 return FAIL;
2304#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305
2306 /* altfpos may be changed by getfile(), get it now */
2307 if (lnum == 0)
2308 {
2309 fpos = buflist_findfpos(buf);
2310 lnum = fpos->lnum;
2311 col = fpos->col;
2312 }
2313 else
2314 col = 0;
2315
2316#ifdef FEAT_WINDOWS
2317 if (options & GETF_SWITCH)
2318 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002319 /* If 'switchbuf' contains "useopen": jump to first window containing
2320 * "buf" if one exists */
2321 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002323
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002324 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002325 * page containing "buf" if one exists */
2326 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002327 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002328
2329 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2330 * current buffer isn't empty: open new tab or window */
2331 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
2332 && !bufempty())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002334 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002335 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002336 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2337 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002339 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 }
2341 }
2342#endif
2343
2344 ++RedrawingDisabled;
2345 if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK),
2346 lnum, forceit) <= 0)
2347 {
2348 --RedrawingDisabled;
2349
2350 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2351 if (!p_sol && col != 0)
2352 {
2353 curwin->w_cursor.col = col;
2354 check_cursor_col();
2355#ifdef FEAT_VIRTUALEDIT
2356 curwin->w_cursor.coladd = 0;
2357#endif
2358 curwin->w_set_curswant = TRUE;
2359 }
2360 return OK;
2361 }
2362 --RedrawingDisabled;
2363 return FAIL;
2364}
2365
2366/*
2367 * go to the last know line number for the current buffer
2368 */
2369 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002370buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371{
2372 pos_T *fpos;
2373
2374 fpos = buflist_findfpos(curbuf);
2375
2376 curwin->w_cursor.lnum = fpos->lnum;
2377 check_cursor_lnum();
2378
2379 if (p_sol)
2380 curwin->w_cursor.col = 0;
2381 else
2382 {
2383 curwin->w_cursor.col = fpos->col;
2384 check_cursor_col();
2385#ifdef FEAT_VIRTUALEDIT
2386 curwin->w_cursor.coladd = 0;
2387#endif
2388 curwin->w_set_curswant = TRUE;
2389 }
2390}
2391
Bram Moolenaar81695252004-12-29 20:58:21 +00002392#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2393/*
2394 * Find file in buffer list by name (it has to be for the current window).
2395 * Returns NULL if not found.
2396 */
2397 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002398buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002399{
2400 char_u *ffname;
2401 buf_T *buf = NULL;
2402
2403 /* First make the name into a full path name */
2404 ffname = FullName_save(fname,
2405#ifdef UNIX
2406 TRUE /* force expansion, get rid of symbolic links */
2407#else
2408 FALSE
2409#endif
2410 );
2411 if (ffname != NULL)
2412 {
2413 buf = buflist_findname(ffname);
2414 vim_free(ffname);
2415 }
2416 return buf;
2417}
2418#endif
2419
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420/*
2421 * Find file in buffer list by name (it has to be for the current window).
2422 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002423 * Skips dummy buffers.
2424 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 */
2426 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002427buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428{
2429#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002430 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431
2432 if (mch_stat((char *)ffname, &st) < 0)
2433 st.st_dev = (dev_T)-1;
2434 return buflist_findname_stat(ffname, &st);
2435}
2436
2437/*
2438 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2439 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002440 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 */
2442 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002443buflist_findname_stat(
2444 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002445 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446{
2447#endif
2448 buf_T *buf;
2449
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002450 /* Start at the last buffer, expect to find a match sooner. */
2451 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002452 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453#ifdef UNIX
2454 , stp
2455#endif
2456 ))
2457 return buf;
2458 return NULL;
2459}
2460
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002461#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
2462 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463/*
2464 * Find file in buffer list by a regexp pattern.
2465 * Return fnum of the found buffer.
2466 * Return < 0 for error.
2467 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002469buflist_findpat(
2470 char_u *pattern,
2471 char_u *pattern_end, /* pointer to first char after pattern */
2472 int unlisted, /* find unlisted buffers */
2473 int diffmode UNUSED, /* find diff-mode buffers only */
2474 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475{
2476 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 int match = -1;
2478 int find_listed;
2479 char_u *pat;
2480 char_u *patend;
2481 int attempt;
2482 char_u *p;
2483 int toggledollar;
2484
2485 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2486 {
2487 if (*pattern == '%')
2488 match = curbuf->b_fnum;
2489 else
2490 match = curwin->w_alt_fnum;
2491#ifdef FEAT_DIFF
2492 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2493 match = -1;
2494#endif
2495 }
2496
2497 /*
2498 * Try four ways of matching a listed buffer:
2499 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002500 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 * attempt == 2: with '$' at end (only match at end)
2502 * attempt == 3: with '^' at start and '$' at end (only full match)
2503 * Repeat this for finding an unlisted buffer if there was no matching
2504 * listed buffer.
2505 */
2506 else
2507 {
2508 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2509 if (pat == NULL)
2510 return -1;
2511 patend = pat + STRLEN(pat) - 1;
2512 toggledollar = (patend > pat && *patend == '$');
2513
2514 /* First try finding a listed buffer. If not found and "unlisted"
2515 * is TRUE, try finding an unlisted buffer. */
2516 find_listed = TRUE;
2517 for (;;)
2518 {
2519 for (attempt = 0; attempt <= 3; ++attempt)
2520 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002521 regmatch_T regmatch;
2522
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 /* may add '^' and '$' */
2524 if (toggledollar)
2525 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2526 p = pat;
2527 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2528 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002529 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2530 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 {
2532 vim_free(pat);
2533 return -1;
2534 }
2535
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002536 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 if (buf->b_p_bl == find_listed
2538#ifdef FEAT_DIFF
2539 && (!diffmode || diff_mode_buf(buf))
2540#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002541 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002543 if (curtab_only)
2544 {
2545 /* Ignore the match if the buffer is not open in
2546 * the current tab. */
2547#ifdef FEAT_WINDOWS
2548 win_T *wp;
2549
Bram Moolenaar29323592016-07-24 22:04:11 +02002550 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002551 if (wp->w_buffer == buf)
2552 break;
2553 if (wp == NULL)
2554 continue;
2555#else
2556 if (curwin->w_buffer != buf)
2557 continue;
2558#endif
2559 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 if (match >= 0) /* already found a match */
2561 {
2562 match = -2;
2563 break;
2564 }
2565 match = buf->b_fnum; /* remember first match */
2566 }
2567
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002568 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 if (match >= 0) /* found one match */
2570 break;
2571 }
2572
2573 /* Only search for unlisted buffers if there was no match with
2574 * a listed buffer. */
2575 if (!unlisted || !find_listed || match != -1)
2576 break;
2577 find_listed = FALSE;
2578 }
2579
2580 vim_free(pat);
2581 }
2582
2583 if (match == -2)
2584 EMSG2(_("E93: More than one match for %s"), pattern);
2585 else if (match < 0)
2586 EMSG2(_("E94: No matching buffer for %s"), pattern);
2587 return match;
2588}
2589#endif
2590
2591#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2592
2593/*
2594 * Find all buffer names that match.
2595 * For command line expansion of ":buf" and ":sbuf".
2596 * Return OK if matches found, FAIL otherwise.
2597 */
2598 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002599ExpandBufnames(
2600 char_u *pat,
2601 int *num_file,
2602 char_u ***file,
2603 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604{
2605 int count = 0;
2606 buf_T *buf;
2607 int round;
2608 char_u *p;
2609 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002610 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611
2612 *num_file = 0; /* return values in case of FAIL */
2613 *file = NULL;
2614
Bram Moolenaar05159a02005-02-26 23:04:13 +00002615 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2616 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002618 patc = alloc((unsigned)STRLEN(pat) + 11);
2619 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002621 STRCPY(patc, "\\(^\\|[\\/]\\)");
2622 STRCPY(patc + 11, pat + 1);
2623 }
2624 else
2625 patc = pat;
2626
2627 /*
2628 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002629 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002630 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002631 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002632 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002633 regmatch_T regmatch;
2634
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002635 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002636 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002637 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2638 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002639 {
2640 if (patc != pat)
2641 vim_free(patc);
2642 return FAIL;
2643 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644
2645 /*
2646 * round == 1: Count the matches.
2647 * round == 2: Build the array to keep the matches.
2648 */
2649 for (round = 1; round <= 2; ++round)
2650 {
2651 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002652 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 {
2654 if (!buf->b_p_bl) /* skip unlisted buffers */
2655 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002656 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 if (p != NULL)
2658 {
2659 if (round == 1)
2660 ++count;
2661 else
2662 {
2663 if (options & WILD_HOME_REPLACE)
2664 p = home_replace_save(buf, p);
2665 else
2666 p = vim_strsave(p);
2667 (*file)[count++] = p;
2668 }
2669 }
2670 }
2671 if (count == 0) /* no match found, break here */
2672 break;
2673 if (round == 1)
2674 {
2675 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2676 if (*file == NULL)
2677 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002678 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002679 if (patc != pat)
2680 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 return FAIL;
2682 }
2683 }
2684 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002685 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 if (count) /* match(es) found, break here */
2687 break;
2688 }
2689
Bram Moolenaar05159a02005-02-26 23:04:13 +00002690 if (patc != pat)
2691 vim_free(patc);
2692
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 *num_file = count;
2694 return (count == 0 ? FAIL : OK);
2695}
2696
2697#endif /* FEAT_CMDL_COMPL */
2698
2699#ifdef HAVE_BUFLIST_MATCH
2700/*
2701 * Check for a match on the file name for buffer "buf" with regprog "prog".
2702 */
2703 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002704buflist_match(
2705 regmatch_T *rmp,
2706 buf_T *buf,
2707 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708{
2709 char_u *match;
2710
2711 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002712 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002714 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715
2716 return match;
2717}
2718
2719/*
2720 * Try matching the regexp in "prog" with file name "name".
2721 * Return "name" when there is a match, NULL when not.
2722 */
2723 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002724fname_match(
2725 regmatch_T *rmp,
2726 char_u *name,
2727 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728{
2729 char_u *match = NULL;
2730 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731
2732 if (name != NULL)
2733 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002734 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002735 rmp->rm_ic = p_fic || ignore_case;
2736 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 match = name;
2738 else
2739 {
2740 /* Replace $(HOME) with '~' and try matching again. */
2741 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002742 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 match = name;
2744 vim_free(p);
2745 }
2746 }
2747
2748 return match;
2749}
2750#endif
2751
2752/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002753 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 */
2755 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002756buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002758 char_u key[VIM_SIZEOF_INT * 2 + 1];
2759 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760
2761 if (nr == 0)
2762 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002763 sprintf((char *)key, "%x", nr);
2764 hi = hash_find(&buf_hashtab, key);
2765
2766 if (!HASHITEM_EMPTY(hi))
2767 return (buf_T *)(hi->hi_key
2768 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 return NULL;
2770}
2771
2772/*
2773 * Get name of file 'n' in the buffer list.
2774 * When the file has no name an empty string is returned.
2775 * home_replace() is used to shorten the file name (used for marks).
2776 * Returns a pointer to allocated memory, of NULL when failed.
2777 */
2778 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002779buflist_nr2name(
2780 int n,
2781 int fullname,
2782 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783{
2784 buf_T *buf;
2785
2786 buf = buflist_findnr(n);
2787 if (buf == NULL)
2788 return NULL;
2789 return home_replace_save(helptail ? buf : NULL,
2790 fullname ? buf->b_ffname : buf->b_fname);
2791}
2792
2793/*
2794 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2795 * When "copy_options" is TRUE save the local window option values.
2796 * When "lnum" is 0 only do the options.
2797 */
2798 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002799buflist_setfpos(
2800 buf_T *buf,
2801 win_T *win,
2802 linenr_T lnum,
2803 colnr_T col,
2804 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805{
2806 wininfo_T *wip;
2807
2808 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2809 if (wip->wi_win == win)
2810 break;
2811 if (wip == NULL)
2812 {
2813 /* allocate a new entry */
2814 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2815 if (wip == NULL)
2816 return;
2817 wip->wi_win = win;
2818 if (lnum == 0) /* set lnum even when it's 0 */
2819 lnum = 1;
2820 }
2821 else
2822 {
2823 /* remove the entry from the list */
2824 if (wip->wi_prev)
2825 wip->wi_prev->wi_next = wip->wi_next;
2826 else
2827 buf->b_wininfo = wip->wi_next;
2828 if (wip->wi_next)
2829 wip->wi_next->wi_prev = wip->wi_prev;
2830 if (copy_options && wip->wi_optset)
2831 {
2832 clear_winopt(&wip->wi_opt);
2833#ifdef FEAT_FOLDING
2834 deleteFoldRecurse(&wip->wi_folds);
2835#endif
2836 }
2837 }
2838 if (lnum != 0)
2839 {
2840 wip->wi_fpos.lnum = lnum;
2841 wip->wi_fpos.col = col;
2842 }
2843 if (copy_options)
2844 {
2845 /* Save the window-specific option values. */
2846 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2847#ifdef FEAT_FOLDING
2848 wip->wi_fold_manual = win->w_fold_manual;
2849 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2850#endif
2851 wip->wi_optset = TRUE;
2852 }
2853
2854 /* insert the entry in front of the list */
2855 wip->wi_next = buf->b_wininfo;
2856 buf->b_wininfo = wip;
2857 wip->wi_prev = NULL;
2858 if (wip->wi_next)
2859 wip->wi_next->wi_prev = wip;
2860
2861 return;
2862}
2863
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002864#ifdef FEAT_DIFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01002865static int wininfo_other_tab_diff(wininfo_T *wip);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002866
2867/*
2868 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2869 * page. That's because a diff is local to a tab page.
2870 */
2871 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002872wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002873{
2874 win_T *wp;
2875
2876 if (wip->wi_opt.wo_diff)
2877 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002878 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002879 /* return FALSE when it's a window in the current tab page, thus
2880 * the buffer was in diff mode here */
2881 if (wip->wi_win == wp)
2882 return FALSE;
2883 return TRUE;
2884 }
2885 return FALSE;
2886}
2887#endif
2888
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889/*
2890 * Find info for the current window in buffer "buf".
2891 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002892 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2893 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 * Returns NULL when there isn't any info.
2895 */
2896 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002897find_wininfo(
2898 buf_T *buf,
2899 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900{
2901 wininfo_T *wip;
2902
2903 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002904 if (wip->wi_win == curwin
2905#ifdef FEAT_DIFF
2906 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2907#endif
2908 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002910
2911 /* If no wininfo for curwin, use the first in the list (that doesn't have
2912 * 'diff' set and is in another tab page). */
2913 if (wip == NULL)
2914 {
2915#ifdef FEAT_DIFF
2916 if (skip_diff_buffer)
2917 {
2918 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2919 if (!wininfo_other_tab_diff(wip))
2920 break;
2921 }
2922 else
2923#endif
2924 wip = buf->b_wininfo;
2925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 return wip;
2927}
2928
2929/*
2930 * Reset the local window options to the values last used in this window.
2931 * If the buffer wasn't used in this window before, use the values from
2932 * the most recently used window. If the values were never set, use the
2933 * global values for the window.
2934 */
2935 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002936get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937{
2938 wininfo_T *wip;
2939
2940 clear_winopt(&curwin->w_onebuf_opt);
2941#ifdef FEAT_FOLDING
2942 clearFolding(curwin);
2943#endif
2944
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002945 wip = find_wininfo(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 if (wip != NULL && wip->wi_optset)
2947 {
2948 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2949#ifdef FEAT_FOLDING
2950 curwin->w_fold_manual = wip->wi_fold_manual;
2951 curwin->w_foldinvalid = TRUE;
2952 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2953#endif
2954 }
2955 else
2956 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2957
2958#ifdef FEAT_FOLDING
2959 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2960 if (p_fdls >= 0)
2961 curwin->w_p_fdl = p_fdls;
2962#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002963#ifdef FEAT_SYN_HL
2964 check_colorcolumn(curwin);
2965#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966}
2967
2968/*
2969 * Find the position (lnum and col) for the buffer 'buf' for the current
2970 * window.
2971 * Returns a pointer to no_position if no position is found.
2972 */
2973 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002974buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975{
2976 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002977 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002979 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 if (wip != NULL)
2981 return &(wip->wi_fpos);
2982 else
2983 return &no_position;
2984}
2985
2986/*
2987 * Find the lnum for the buffer 'buf' for the current window.
2988 */
2989 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002990buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991{
2992 return buflist_findfpos(buf)->lnum;
2993}
2994
2995#if defined(FEAT_LISTCMDS) || defined(PROTO)
2996/*
2997 * List all know file names (for :files and :buffers command).
2998 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003000buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001{
3002 buf_T *buf;
3003 int len;
3004 int i;
3005
3006 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
3007 {
3008 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02003009 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
3010 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
3011 || (vim_strchr(eap->arg, '+')
3012 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
3013 || (vim_strchr(eap->arg, 'a')
3014 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
3015 || (vim_strchr(eap->arg, 'h')
3016 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
3017 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
3018 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
3019 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
3020 || (vim_strchr(eap->arg, '%') && buf != curbuf)
3021 || (vim_strchr(eap->arg, '#')
3022 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003025 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 else
3027 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003028 if (message_filtered(NameBuff))
3029 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003031 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003032 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 buf->b_fnum,
3034 buf->b_p_bl ? ' ' : 'u',
3035 buf == curbuf ? '%' :
3036 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3037 buf->b_ml.ml_mfp == NULL ? ' ' :
3038 (buf->b_nwindows == 0 ? 'h' : 'a'),
3039 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
3040 (buf->b_flags & BF_READERR) ? 'x'
Bram Moolenaar51485f02005-06-04 21:55:20 +00003041 : (bufIsChanged(buf) ? '+' : ' '),
3042 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003043 if (len > IOSIZE - 20)
3044 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045
3046 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 i = 40 - vim_strsize(IObuff);
3048 do
3049 {
3050 IObuff[len++] = ' ';
3051 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003052 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3053 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003054 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 msg_outtrans(IObuff);
3056 out_flush(); /* output one line at a time */
3057 ui_breakcheck();
3058 }
3059}
3060#endif
3061
3062/*
3063 * Get file name and line number for file 'fnum'.
3064 * Used by DoOneCmd() for translating '%' and '#'.
3065 * Used by insert_reg() and cmdline_paste() for '#' register.
3066 * Return FAIL if not found, OK for success.
3067 */
3068 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003069buflist_name_nr(
3070 int fnum,
3071 char_u **fname,
3072 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073{
3074 buf_T *buf;
3075
3076 buf = buflist_findnr(fnum);
3077 if (buf == NULL || buf->b_fname == NULL)
3078 return FAIL;
3079
3080 *fname = buf->b_fname;
3081 *lnum = buflist_findlnum(buf);
3082
3083 return OK;
3084}
3085
3086/*
3087 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3088 * The file name with the full path is also remembered, for when :cd is used.
3089 * Returns FAIL for failure (file name already in use by other buffer)
3090 * OK otherwise.
3091 */
3092 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003093setfname(
3094 buf_T *buf,
3095 char_u *ffname,
3096 char_u *sfname,
3097 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098{
Bram Moolenaar81695252004-12-29 20:58:21 +00003099 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003101 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102#endif
3103
3104 if (ffname == NULL || *ffname == NUL)
3105 {
3106 /* Removing the name. */
3107 vim_free(buf->b_ffname);
3108 vim_free(buf->b_sfname);
3109 buf->b_ffname = NULL;
3110 buf->b_sfname = NULL;
3111#ifdef UNIX
3112 st.st_dev = (dev_T)-1;
3113#endif
3114 }
3115 else
3116 {
3117 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3118 if (ffname == NULL) /* out of memory */
3119 return FAIL;
3120
3121 /*
3122 * if the file name is already used in another buffer:
3123 * - if the buffer is loaded, fail
3124 * - if the buffer is not loaded, delete it from the list
3125 */
3126#ifdef UNIX
3127 if (mch_stat((char *)ffname, &st) < 0)
3128 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003129#endif
3130 if (!(buf->b_flags & BF_DUMMY))
3131#ifdef UNIX
3132 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003134 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135#endif
3136 if (obuf != NULL && obuf != buf)
3137 {
3138 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3139 {
3140 if (message)
3141 EMSG(_("E95: Buffer with this name already exists"));
3142 vim_free(ffname);
3143 return FAIL;
3144 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003145 /* delete from the list */
3146 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 }
3148 sfname = vim_strsave(sfname);
3149 if (ffname == NULL || sfname == NULL)
3150 {
3151 vim_free(sfname);
3152 vim_free(ffname);
3153 return FAIL;
3154 }
3155#ifdef USE_FNAME_CASE
3156# ifdef USE_LONG_FNAME
3157 if (USE_LONG_FNAME)
3158# endif
3159 fname_case(sfname, 0); /* set correct case for short file name */
3160#endif
3161 vim_free(buf->b_ffname);
3162 vim_free(buf->b_sfname);
3163 buf->b_ffname = ffname;
3164 buf->b_sfname = sfname;
3165 }
3166 buf->b_fname = buf->b_sfname;
3167#ifdef UNIX
3168 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003169 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 else
3171 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003172 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 buf->b_dev = st.st_dev;
3174 buf->b_ino = st.st_ino;
3175 }
3176#endif
3177
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179
3180 buf_name_changed(buf);
3181 return OK;
3182}
3183
3184/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003185 * Crude way of changing the name of a buffer. Use with care!
3186 * The name should be relative to the current directory.
3187 */
3188 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003189buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003190{
3191 buf_T *buf;
3192
3193 buf = buflist_findnr(fnum);
3194 if (buf != NULL)
3195 {
3196 vim_free(buf->b_sfname);
3197 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003198 buf->b_ffname = vim_strsave(name);
3199 buf->b_sfname = NULL;
3200 /* Allocate ffname and expand into full path. Also resolves .lnk
3201 * files on Win32. */
3202 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003203 buf->b_fname = buf->b_sfname;
3204 }
3205}
3206
3207/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 * Take care of what needs to be done when the name of buffer "buf" has
3209 * changed.
3210 */
3211 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003212buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213{
3214 /*
3215 * If the file name changed, also change the name of the swapfile
3216 */
3217 if (buf->b_ml.ml_mfp != NULL)
3218 ml_setname(buf);
3219
3220 if (curwin->w_buffer == buf)
3221 check_arg_idx(curwin); /* check file name for arg list */
3222#ifdef FEAT_TITLE
3223 maketitle(); /* set window title */
3224#endif
3225#ifdef FEAT_WINDOWS
3226 status_redraw_all(); /* status lines need to be redrawn */
3227#endif
3228 fmarks_check_names(buf); /* check named file marks */
3229 ml_timestamp(buf); /* reset timestamp */
3230}
3231
3232/*
3233 * set alternate file name for current window
3234 *
3235 * Used by do_one_cmd(), do_write() and do_ecmd().
3236 * Return the buffer.
3237 */
3238 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003239setaltfname(
3240 char_u *ffname,
3241 char_u *sfname,
3242 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243{
3244 buf_T *buf;
3245
3246 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3247 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003248 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 curwin->w_alt_fnum = buf->b_fnum;
3250 return buf;
3251}
3252
3253/*
3254 * Get alternate file name for current window.
3255 * Return NULL if there isn't any, and give error message if requested.
3256 */
3257 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003258getaltfname(
3259 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260{
3261 char_u *fname;
3262 linenr_T dummy;
3263
3264 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3265 {
3266 if (errmsg)
3267 EMSG(_(e_noalt));
3268 return NULL;
3269 }
3270 return fname;
3271}
3272
3273/*
3274 * Add a file name to the buflist and return its number.
3275 * Uses same flags as buflist_new(), except BLN_DUMMY.
3276 *
3277 * used by qf_init(), main() and doarglist()
3278 */
3279 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003280buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281{
3282 buf_T *buf;
3283
3284 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3285 if (buf != NULL)
3286 return buf->b_fnum;
3287 return 0;
3288}
3289
3290#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3291/*
3292 * Adjust slashes in file names. Called after 'shellslash' was set.
3293 */
3294 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003295buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296{
3297 buf_T *bp;
3298
Bram Moolenaar29323592016-07-24 22:04:11 +02003299 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 {
3301 if (bp->b_ffname != NULL)
3302 slash_adjust(bp->b_ffname);
3303 if (bp->b_sfname != NULL)
3304 slash_adjust(bp->b_sfname);
3305 }
3306}
3307#endif
3308
3309/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003310 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 * Also save the local window option values.
3312 */
3313 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003314buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003316 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317}
3318
3319/*
3320 * Return TRUE if 'ffname' is not the same file as current file.
3321 * Fname must have a full path (expanded by mch_FullName()).
3322 */
3323 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003324otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325{
3326 return otherfile_buf(curbuf, ffname
3327#ifdef UNIX
3328 , NULL
3329#endif
3330 );
3331}
3332
3333 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003334otherfile_buf(
3335 buf_T *buf,
3336 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003338 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003340 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341{
3342 /* no name is different */
3343 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3344 return TRUE;
3345 if (fnamecmp(ffname, buf->b_ffname) == 0)
3346 return FALSE;
3347#ifdef UNIX
3348 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003349 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350
Bram Moolenaar8767f522016-07-01 17:17:39 +02003351 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 if (stp == NULL)
3353 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003354 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 st.st_dev = (dev_T)-1;
3356 stp = &st;
3357 }
3358 /* Use dev/ino to check if the files are the same, even when the names
3359 * are different (possible with links). Still need to compare the
3360 * name above, for when the file doesn't exist yet.
3361 * Problem: The dev/ino changes when a file is deleted (and created
3362 * again) and remains the same when renamed/moved. We don't want to
3363 * mch_stat() each buffer each time, that would be too slow. Get the
3364 * dev/ino again when they appear to match, but not when they appear
3365 * to be different: Could skip a buffer when it's actually the same
3366 * file. */
3367 if (buf_same_ino(buf, stp))
3368 {
3369 buf_setino(buf);
3370 if (buf_same_ino(buf, stp))
3371 return FALSE;
3372 }
3373 }
3374#endif
3375 return TRUE;
3376}
3377
3378#if defined(UNIX) || defined(PROTO)
3379/*
3380 * Set inode and device number for a buffer.
3381 * Must always be called when b_fname is changed!.
3382 */
3383 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003384buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003386 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387
3388 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3389 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003390 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 buf->b_dev = st.st_dev;
3392 buf->b_ino = st.st_ino;
3393 }
3394 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003395 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396}
3397
3398/*
3399 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3400 */
3401 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003402buf_same_ino(
3403 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003404 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003406 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 && stp->st_dev == buf->b_dev
3408 && stp->st_ino == buf->b_ino);
3409}
3410#endif
3411
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003412/*
3413 * Print info about the current buffer.
3414 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003416fileinfo(
3417 int fullname, /* when non-zero print full path */
3418 int shorthelp,
3419 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420{
3421 char_u *name;
3422 int n;
3423 char_u *p;
3424 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003425 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426
3427 buffer = alloc(IOSIZE);
3428 if (buffer == NULL)
3429 return;
3430
3431 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3432 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003433 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 p = buffer + STRLEN(buffer);
3435 }
3436 else
3437 p = buffer;
3438
3439 *p++ = '"';
3440 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003441 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 else
3443 {
3444 if (!fullname && curbuf->b_fname != NULL)
3445 name = curbuf->b_fname;
3446 else
3447 name = curbuf->b_ffname;
3448 home_replace(shorthelp ? curbuf : NULL, name, p,
3449 (int)(IOSIZE - (p - buffer)), TRUE);
3450 }
3451
Bram Moolenaara800b422010-06-27 01:15:55 +02003452 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 curbufIsChanged() ? (shortmess(SHM_MOD)
3454 ? " [+]" : _(" [Modified]")) : " ",
3455 (curbuf->b_flags & BF_NOTEDITED)
3456#ifdef FEAT_QUICKFIX
3457 && !bt_dontwrite(curbuf)
3458#endif
3459 ? _("[Not edited]") : "",
3460 (curbuf->b_flags & BF_NEW)
3461#ifdef FEAT_QUICKFIX
3462 && !bt_dontwrite(curbuf)
3463#endif
3464 ? _("[New file]") : "",
3465 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003466 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 : _("[readonly]")) : "",
3468 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3469 || curbuf->b_p_ro) ?
3470 " " : "");
3471 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3472 * causes an overflow, thus for large numbers divide instead. */
3473 if (curwin->w_cursor.lnum > 1000000L)
3474 n = (int)(((long)curwin->w_cursor.lnum) /
3475 ((long)curbuf->b_ml.ml_line_count / 100L));
3476 else
3477 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3478 (long)curbuf->b_ml.ml_line_count);
3479 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3480 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003481 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 }
3483#ifdef FEAT_CMDL_INFO
3484 else if (p_ru)
3485 {
3486 /* Current line and column are already on the screen -- webb */
3487 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003488 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003490 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 (long)curbuf->b_ml.ml_line_count, n);
3492 }
3493#endif
3494 else
3495 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003496 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 _("line %ld of %ld --%d%%-- col "),
3498 (long)curwin->w_cursor.lnum,
3499 (long)curbuf->b_ml.ml_line_count,
3500 n);
3501 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003502 len = STRLEN(buffer);
3503 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3505 }
3506
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003507 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508
3509 if (dont_truncate)
3510 {
3511 /* Temporarily set msg_scroll to avoid the message being truncated.
3512 * First call msg_start() to get the message in the right place. */
3513 msg_start();
3514 n = msg_scroll;
3515 msg_scroll = TRUE;
3516 msg(buffer);
3517 msg_scroll = n;
3518 }
3519 else
3520 {
3521 p = msg_trunc_attr(buffer, FALSE, 0);
3522 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 /* Need to repeat the message after redrawing when:
3524 * - When restart_edit is set (otherwise there will be a delay
3525 * before redrawing).
3526 * - When the screen was scrolled but there is no wait-return
3527 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003528 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 }
3530
3531 vim_free(buffer);
3532}
3533
3534 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003535col_print(
3536 char_u *buf,
3537 size_t buflen,
3538 int col,
3539 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540{
3541 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003542 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003544 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545}
3546
3547#if defined(FEAT_TITLE) || defined(PROTO)
3548/*
3549 * put file name in title bar of window and in icon title
3550 */
3551
3552static char_u *lasttitle = NULL;
3553static char_u *lasticon = NULL;
3554
3555 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003556maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557{
3558 char_u *p;
3559 char_u *t_str = NULL;
3560 char_u *i_name;
3561 char_u *i_str = NULL;
3562 int maxlen = 0;
3563 int len;
3564 int mustset;
3565 char_u buf[IOSIZE];
3566 int off;
3567
3568 if (!redrawing())
3569 {
3570 /* Postpone updating the title when 'lazyredraw' is set. */
3571 need_maketitle = TRUE;
3572 return;
3573 }
3574
3575 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003576 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 return;
3578
3579 if (p_title)
3580 {
3581 if (p_titlelen > 0)
3582 {
3583 maxlen = p_titlelen * Columns / 100;
3584 if (maxlen < 10)
3585 maxlen = 10;
3586 }
3587
3588 t_str = buf;
3589 if (*p_titlestring != NUL)
3590 {
3591#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003592 if (stl_syntax & STL_IN_TITLE)
3593 {
3594 int use_sandbox = FALSE;
3595 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003596
3597# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003598 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003599# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003600 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003602 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003603 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003604 if (called_emsg)
3605 set_string_option_direct((char_u *)"titlestring", -1,
3606 (char_u *)"", OPT_FREE, SID_ERROR);
3607 called_emsg |= save_called_emsg;
3608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 else
3610#endif
3611 t_str = p_titlestring;
3612 }
3613 else
3614 {
3615 /* format: "fname + (path) (1 of 2) - VIM" */
3616
Bram Moolenaar2c666692012-09-05 13:30:40 +02003617#define SPACE_FOR_FNAME (IOSIZE - 100)
3618#define SPACE_FOR_DIR (IOSIZE - 20)
3619#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003621 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 else
3623 {
3624 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003625 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 }
3628
3629 switch (bufIsChanged(curbuf)
3630 + (curbuf->b_p_ro * 2)
3631 + (!curbuf->b_p_ma * 4))
3632 {
3633 case 1: STRCAT(buf, " +"); break;
3634 case 2: STRCAT(buf, " ="); break;
3635 case 3: STRCAT(buf, " =+"); break;
3636 case 4:
3637 case 6: STRCAT(buf, " -"); break;
3638 case 5:
3639 case 7: STRCAT(buf, " -+"); break;
3640 }
3641
3642 if (curbuf->b_fname != NULL)
3643 {
3644 /* Get path of file, replace home dir with ~ */
3645 off = (int)STRLEN(buf);
3646 buf[off++] = ' ';
3647 buf[off++] = '(';
3648 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003649 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650#ifdef BACKSLASH_IN_FILENAME
3651 /* avoid "c:/name" to be reduced to "c" */
3652 if (isalpha(buf[off]) && buf[off + 1] == ':')
3653 off += 2;
3654#endif
3655 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003656 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 if (p == buf + off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 /* must be a help buffer */
Bram Moolenaarb6356332005-07-18 21:40:44 +00003659 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003660 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003663
Bram Moolenaar2c666692012-09-05 13:30:40 +02003664 /* Translate unprintable chars and concatenate. Keep some
3665 * room for the server name. When there is no room (very long
3666 * file name) use (...). */
3667 if (off < SPACE_FOR_DIR)
3668 {
3669 p = transstr(buf + off);
3670 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3671 vim_free(p);
3672 }
3673 else
3674 {
3675 vim_strncpy(buf + off, (char_u *)"...",
3676 (size_t)(SPACE_FOR_ARGNR - off));
3677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 STRCAT(buf, ")");
3679 }
3680
Bram Moolenaar2c666692012-09-05 13:30:40 +02003681 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682
3683#if defined(FEAT_CLIENTSERVER)
3684 if (serverName != NULL)
3685 {
3686 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003687 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 }
3689 else
3690#endif
3691 STRCAT(buf, " - VIM");
3692
3693 if (maxlen > 0)
3694 {
3695 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003696 if (vim_strsize(buf) > maxlen)
3697 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 }
3699 }
3700 }
3701 mustset = ti_change(t_str, &lasttitle);
3702
3703 if (p_icon)
3704 {
3705 i_str = buf;
3706 if (*p_iconstring != NUL)
3707 {
3708#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003709 if (stl_syntax & STL_IN_ICON)
3710 {
3711 int use_sandbox = FALSE;
3712 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003713
3714# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003715 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003716# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003717 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003719 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003720 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003721 if (called_emsg)
3722 set_string_option_direct((char_u *)"iconstring", -1,
3723 (char_u *)"", OPT_FREE, SID_ERROR);
3724 called_emsg |= save_called_emsg;
3725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 else
3727#endif
3728 i_str = p_iconstring;
3729 }
3730 else
3731 {
3732 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003733 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 else /* use file name only in icon */
3735 i_name = gettail(curbuf->b_ffname);
3736 *i_str = NUL;
3737 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003738 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 if (len > 100)
3740 {
3741 len -= 100;
3742#ifdef FEAT_MBYTE
3743 if (has_mbyte)
3744 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3745#endif
3746 i_name += len;
3747 }
3748 STRCPY(i_str, i_name);
3749 trans_characters(i_str, IOSIZE);
3750 }
3751 }
3752
3753 mustset |= ti_change(i_str, &lasticon);
3754
3755 if (mustset)
3756 resettitle();
3757}
3758
3759/*
3760 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3761 * from "str" if it does.
3762 * Return TRUE when "*last" changed.
3763 */
3764 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003765ti_change(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766{
3767 if ((str == NULL) != (*last == NULL)
3768 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3769 {
3770 vim_free(*last);
3771 if (str == NULL)
3772 *last = NULL;
3773 else
3774 *last = vim_strsave(str);
3775 return TRUE;
3776 }
3777 return FALSE;
3778}
3779
3780/*
3781 * Put current window title back (used after calling a shell)
3782 */
3783 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003784resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785{
3786 mch_settitle(lasttitle, lasticon);
3787}
Bram Moolenaarea408852005-06-25 22:49:46 +00003788
3789# if defined(EXITFREE) || defined(PROTO)
3790 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003791free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003792{
3793 vim_free(lasttitle);
3794 vim_free(lasticon);
3795}
3796# endif
3797
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798#endif /* FEAT_TITLE */
3799
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003800#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003802 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 * Return length of string in screen cells.
3804 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003805 * Normally works for window "wp", except when working for 'tabline' then it
3806 * is "curwin".
3807 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 * Items are drawn interspersed with the text that surrounds it
3809 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3810 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3811 *
3812 * If maxwidth is not zero, the string will be filled at any middle marker
3813 * or truncated if too long, fillchar is used for all whitespace.
3814 */
3815 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003816build_stl_str_hl(
3817 win_T *wp,
3818 char_u *out, /* buffer to write into != NameBuff */
3819 size_t outlen, /* length of out[] */
3820 char_u *fmt,
3821 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3822 int fillchar,
3823 int maxwidth,
3824 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3825 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826{
3827 char_u *p;
3828 char_u *s;
3829 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003830 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831#ifdef FEAT_EVAL
3832 win_T *o_curwin;
3833 buf_T *o_curbuf;
3834#endif
3835 int empty_line;
3836 colnr_T virtcol;
3837 long l;
3838 long n;
3839 int prevchar_isflag;
3840 int prevchar_isitem;
3841 int itemisflag;
3842 int fillable;
3843 char_u *str;
3844 long num;
3845 int width;
3846 int itemcnt;
3847 int curitem;
3848 int groupitem[STL_MAX_ITEM];
3849 int groupdepth;
3850 struct stl_item
3851 {
3852 char_u *start;
3853 int minwid;
3854 int maxwid;
3855 enum
3856 {
3857 Normal,
3858 Empty,
3859 Group,
3860 Middle,
3861 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003862 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 Trunc
3864 } type;
3865 } item[STL_MAX_ITEM];
3866 int minwid;
3867 int maxwid;
3868 int zeropad;
3869 char_u base;
3870 char_u opt;
3871#define TMPLEN 70
3872 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003873 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003874 struct stl_hlrec *sp;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003875
3876#ifdef FEAT_EVAL
3877 /*
3878 * When the format starts with "%!" then evaluate it as an expression and
3879 * use the result as the actual format string.
3880 */
3881 if (fmt[0] == '%' && fmt[1] == '!')
3882 {
3883 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3884 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003885 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003886 }
3887#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888
3889 if (fillchar == 0)
3890 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003891#ifdef FEAT_MBYTE
3892 /* Can't handle a multi-byte fill character yet. */
3893 else if (mb_char2len(fillchar) > 1)
3894 fillchar = '-';
3895#endif
3896
Bram Moolenaar567199b2013-04-24 16:52:36 +02003897 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3898 * p will become invalid when getting another buffer line. */
3899 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3900 empty_line = (*p == NUL);
3901
3902 /* Get the byte value now, in case we need it below. This is more
3903 * efficient than making a copy of the line. */
3904 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3905 byteval = 0;
3906 else
3907#ifdef FEAT_MBYTE
3908 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3909#else
3910 byteval = p[wp->w_cursor.col];
3911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912
3913 groupdepth = 0;
3914 p = out;
3915 curitem = 0;
3916 prevchar_isflag = TRUE;
3917 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003918 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003920 if (curitem == STL_MAX_ITEM)
3921 {
3922 /* There are too many items. Add the error code to the statusline
3923 * to give the user a hint about what went wrong. */
3924 if (p + 6 < out + outlen)
3925 {
3926 mch_memmove(p, " E541", (size_t)5);
3927 p += 5;
3928 }
3929 break;
3930 }
3931
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 if (*s != NUL && *s != '%')
3933 prevchar_isflag = prevchar_isitem = FALSE;
3934
3935 /*
3936 * Handle up to the next '%' or the end.
3937 */
3938 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3939 *p++ = *s++;
3940 if (*s == NUL || p + 1 >= out + outlen)
3941 break;
3942
3943 /*
3944 * Handle one '%' item.
3945 */
3946 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003947 if (*s == NUL) /* ignore trailing % */
3948 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 if (*s == '%')
3950 {
3951 if (p + 1 >= out + outlen)
3952 break;
3953 *p++ = *s++;
3954 prevchar_isflag = prevchar_isitem = FALSE;
3955 continue;
3956 }
3957 if (*s == STL_MIDDLEMARK)
3958 {
3959 s++;
3960 if (groupdepth > 0)
3961 continue;
3962 item[curitem].type = Middle;
3963 item[curitem++].start = p;
3964 continue;
3965 }
3966 if (*s == STL_TRUNCMARK)
3967 {
3968 s++;
3969 item[curitem].type = Trunc;
3970 item[curitem++].start = p;
3971 continue;
3972 }
3973 if (*s == ')')
3974 {
3975 s++;
3976 if (groupdepth < 1)
3977 continue;
3978 groupdepth--;
3979
3980 t = item[groupitem[groupdepth]].start;
3981 *p = NUL;
3982 l = vim_strsize(t);
3983 if (curitem > groupitem[groupdepth] + 1
3984 && item[groupitem[groupdepth]].minwid == 0)
3985 {
3986 /* remove group if all items are empty */
3987 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaaraf6e36f2016-03-08 12:56:33 +01003988 if (item[n].type == Normal || item[n].type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 break;
3990 if (n == curitem)
3991 {
3992 p = t;
3993 l = 0;
3994 }
3995 }
3996 if (l > item[groupitem[groupdepth]].maxwid)
3997 {
3998 /* truncate, remove n bytes of text at the start */
3999#ifdef FEAT_MBYTE
4000 if (has_mbyte)
4001 {
4002 /* Find the first character that should be included. */
4003 n = 0;
4004 while (l >= item[groupitem[groupdepth]].maxwid)
4005 {
4006 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004007 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 }
4009 }
4010 else
4011#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004012 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013
4014 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004015 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016 p = p - n + 1;
4017#ifdef FEAT_MBYTE
4018 /* Fill up space left over by half a double-wide char. */
4019 while (++l < item[groupitem[groupdepth]].minwid)
4020 *p++ = fillchar;
4021#endif
4022
4023 /* correct the start of the items for the truncation */
4024 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4025 {
4026 item[l].start -= n;
4027 if (item[l].start < t)
4028 item[l].start = t;
4029 }
4030 }
4031 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4032 {
4033 /* fill */
4034 n = item[groupitem[groupdepth]].minwid;
4035 if (n < 0)
4036 {
4037 /* fill by appending characters */
4038 n = 0 - n;
4039 while (l++ < n && p + 1 < out + outlen)
4040 *p++ = fillchar;
4041 }
4042 else
4043 {
4044 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004045 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 l = n - l;
4047 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004048 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049 p += l;
4050 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4051 item[n].start += l;
4052 for ( ; l > 0; l--)
4053 *t++ = fillchar;
4054 }
4055 }
4056 continue;
4057 }
4058 minwid = 0;
4059 maxwid = 9999;
4060 zeropad = FALSE;
4061 l = 1;
4062 if (*s == '0')
4063 {
4064 s++;
4065 zeropad = TRUE;
4066 }
4067 if (*s == '-')
4068 {
4069 s++;
4070 l = -1;
4071 }
4072 if (VIM_ISDIGIT(*s))
4073 {
4074 minwid = (int)getdigits(&s);
4075 if (minwid < 0) /* overflow */
4076 minwid = 0;
4077 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004078 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 {
4080 item[curitem].type = Highlight;
4081 item[curitem].start = p;
4082 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4083 s++;
4084 curitem++;
4085 continue;
4086 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004087 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4088 {
4089 if (*s == STL_TABCLOSENR)
4090 {
4091 if (minwid == 0)
4092 {
4093 /* %X ends the close label, go back to the previously
4094 * define tab label nr. */
4095 for (n = curitem - 1; n >= 0; --n)
4096 if (item[n].type == TabPage && item[n].minwid >= 0)
4097 {
4098 minwid = item[n].minwid;
4099 break;
4100 }
4101 }
4102 else
4103 /* close nrs are stored as negative values */
4104 minwid = - minwid;
4105 }
4106 item[curitem].type = TabPage;
4107 item[curitem].start = p;
4108 item[curitem].minwid = minwid;
4109 s++;
4110 curitem++;
4111 continue;
4112 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 if (*s == '.')
4114 {
4115 s++;
4116 if (VIM_ISDIGIT(*s))
4117 {
4118 maxwid = (int)getdigits(&s);
4119 if (maxwid <= 0) /* overflow */
4120 maxwid = 50;
4121 }
4122 }
4123 minwid = (minwid > 50 ? 50 : minwid) * l;
4124 if (*s == '(')
4125 {
4126 groupitem[groupdepth++] = curitem;
4127 item[curitem].type = Group;
4128 item[curitem].start = p;
4129 item[curitem].minwid = minwid;
4130 item[curitem].maxwid = maxwid;
4131 s++;
4132 curitem++;
4133 continue;
4134 }
4135 if (vim_strchr(STL_ALL, *s) == NULL)
4136 {
4137 s++;
4138 continue;
4139 }
4140 opt = *s++;
4141
4142 /* OK - now for the real work */
4143 base = 'D';
4144 itemisflag = FALSE;
4145 fillable = TRUE;
4146 num = -1;
4147 str = NULL;
4148 switch (opt)
4149 {
4150 case STL_FILEPATH:
4151 case STL_FULLPATH:
4152 case STL_FILENAME:
4153 fillable = FALSE; /* don't change ' ' to fillchar */
4154 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004155 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 else
4157 {
4158 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004159 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4161 }
4162 trans_characters(NameBuff, MAXPATHL);
4163 if (opt != STL_FILENAME)
4164 str = NameBuff;
4165 else
4166 str = gettail(NameBuff);
4167 break;
4168
4169 case STL_VIM_EXPR: /* '{' */
4170 itemisflag = TRUE;
4171 t = p;
4172 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4173 *p++ = *s++;
4174 if (*s != '}') /* missing '}' or out of space */
4175 break;
4176 s++;
4177 *p = 0;
4178 p = t;
4179
4180#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004181 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 set_internal_string_var((char_u *)"actual_curbuf", tmp);
4183
4184 o_curbuf = curbuf;
4185 o_curwin = curwin;
4186 curwin = wp;
4187 curbuf = wp->w_buffer;
4188
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004189 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190
4191 curwin = o_curwin;
4192 curbuf = o_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004193 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194
4195 if (str != NULL && *str != 0)
4196 {
4197 if (*skipdigits(str) == NUL)
4198 {
4199 num = atoi((char *)str);
4200 vim_free(str);
4201 str = NULL;
4202 itemisflag = FALSE;
4203 }
4204 }
4205#endif
4206 break;
4207
4208 case STL_LINE:
4209 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4210 ? 0L : (long)(wp->w_cursor.lnum);
4211 break;
4212
4213 case STL_NUMLINES:
4214 num = wp->w_buffer->b_ml.ml_line_count;
4215 break;
4216
4217 case STL_COLUMN:
4218 num = !(State & INSERT) && empty_line
4219 ? 0 : (int)wp->w_cursor.col + 1;
4220 break;
4221
4222 case STL_VIRTCOL:
4223 case STL_VIRTCOL_ALT:
4224 /* In list mode virtcol needs to be recomputed */
4225 virtcol = wp->w_virtcol;
4226 if (wp->w_p_list && lcs_tab1 == NUL)
4227 {
4228 wp->w_p_list = FALSE;
4229 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4230 wp->w_p_list = TRUE;
4231 }
4232 ++virtcol;
4233 /* Don't display %V if it's the same as %c. */
4234 if (opt == STL_VIRTCOL_ALT
4235 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4236 ? 0 : (int)wp->w_cursor.col + 1)))
4237 break;
4238 num = (long)virtcol;
4239 break;
4240
4241 case STL_PERCENTAGE:
4242 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4243 (long)wp->w_buffer->b_ml.ml_line_count);
4244 break;
4245
4246 case STL_ALTPERCENT:
4247 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004248 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 break;
4250
4251 case STL_ARGLISTSTAT:
4252 fillable = FALSE;
4253 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004254 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 str = tmp;
4256 break;
4257
4258 case STL_KEYMAP:
4259 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004260 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 str = tmp;
4262 break;
4263 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004264#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004265 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266#else
4267 num = 0;
4268#endif
4269 break;
4270
4271 case STL_BUFNO:
4272 num = wp->w_buffer->b_fnum;
4273 break;
4274
4275 case STL_OFFSET_X:
4276 base = 'X';
4277 case STL_OFFSET:
4278#ifdef FEAT_BYTEOFF
4279 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4280 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4281 0L : l + 1 + (!(State & INSERT) && empty_line ?
4282 0 : (int)wp->w_cursor.col);
4283#endif
4284 break;
4285
4286 case STL_BYTEVAL_X:
4287 base = 'X';
4288 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004289 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 if (num == NL)
4291 num = 0;
4292 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4293 num = NL;
4294 break;
4295
4296 case STL_ROFLAG:
4297 case STL_ROFLAG_ALT:
4298 itemisflag = TRUE;
4299 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004300 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 break;
4302
4303 case STL_HELPFLAG:
4304 case STL_HELPFLAG_ALT:
4305 itemisflag = TRUE;
4306 if (wp->w_buffer->b_help)
4307 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004308 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 break;
4310
4311#ifdef FEAT_AUTOCMD
4312 case STL_FILETYPE:
4313 if (*wp->w_buffer->b_p_ft != NUL
4314 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4315 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004316 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4317 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 str = tmp;
4319 }
4320 break;
4321
4322 case STL_FILETYPE_ALT:
4323 itemisflag = TRUE;
4324 if (*wp->w_buffer->b_p_ft != NUL
4325 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4326 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004327 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4328 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 for (t = tmp; *t != 0; t++)
4330 *t = TOUPPER_LOC(*t);
4331 str = tmp;
4332 }
4333 break;
4334#endif
4335
4336#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4337 case STL_PREVIEWFLAG:
4338 case STL_PREVIEWFLAG_ALT:
4339 itemisflag = TRUE;
4340 if (wp->w_p_pvw)
4341 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4342 : _("[Preview]"));
4343 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004344
4345 case STL_QUICKFIX:
4346 if (bt_quickfix(wp->w_buffer))
4347 str = (char_u *)(wp->w_llist_ref
4348 ? _(msg_loclist)
4349 : _(msg_qflist));
4350 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351#endif
4352
4353 case STL_MODIFIED:
4354 case STL_MODIFIED_ALT:
4355 itemisflag = TRUE;
4356 switch ((opt == STL_MODIFIED_ALT)
4357 + bufIsChanged(wp->w_buffer) * 2
4358 + (!wp->w_buffer->b_p_ma) * 4)
4359 {
4360 case 2: str = (char_u *)"[+]"; break;
4361 case 3: str = (char_u *)",+"; break;
4362 case 4: str = (char_u *)"[-]"; break;
4363 case 5: str = (char_u *)",-"; break;
4364 case 6: str = (char_u *)"[+-]"; break;
4365 case 7: str = (char_u *)",+-"; break;
4366 }
4367 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004368
4369 case STL_HIGHLIGHT:
4370 t = s;
4371 while (*s != '#' && *s != NUL)
4372 ++s;
4373 if (*s == '#')
4374 {
4375 item[curitem].type = Highlight;
4376 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004377 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004378 curitem++;
4379 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004380 if (*s != NUL)
4381 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004382 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 }
4384
4385 item[curitem].start = p;
4386 item[curitem].type = Normal;
4387 if (str != NULL && *str)
4388 {
4389 t = str;
4390 if (itemisflag)
4391 {
4392 if ((t[0] && t[1])
4393 && ((!prevchar_isitem && *t == ',')
4394 || (prevchar_isflag && *t == ' ')))
4395 t++;
4396 prevchar_isflag = TRUE;
4397 }
4398 l = vim_strsize(t);
4399 if (l > 0)
4400 prevchar_isitem = TRUE;
4401 if (l > maxwid)
4402 {
4403 while (l >= maxwid)
4404#ifdef FEAT_MBYTE
4405 if (has_mbyte)
4406 {
4407 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004408 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 }
4410 else
4411#endif
4412 l -= byte2cells(*t++);
4413 if (p + 1 >= out + outlen)
4414 break;
4415 *p++ = '<';
4416 }
4417 if (minwid > 0)
4418 {
4419 for (; l < minwid && p + 1 < out + outlen; l++)
4420 {
4421 /* Don't put a "-" in front of a digit. */
4422 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4423 *p++ = ' ';
4424 else
4425 *p++ = fillchar;
4426 }
4427 minwid = 0;
4428 }
4429 else
4430 minwid *= -1;
4431 while (*t && p + 1 < out + outlen)
4432 {
4433 *p++ = *t++;
4434 /* Change a space by fillchar, unless fillchar is '-' and a
4435 * digit follows. */
4436 if (fillable && p[-1] == ' '
4437 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4438 p[-1] = fillchar;
4439 }
4440 for (; l < minwid && p + 1 < out + outlen; l++)
4441 *p++ = fillchar;
4442 }
4443 else if (num >= 0)
4444 {
4445 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4446 char_u nstr[20];
4447
4448 if (p + 20 >= out + outlen)
4449 break; /* not sufficient space */
4450 prevchar_isitem = TRUE;
4451 t = nstr;
4452 if (opt == STL_VIRTCOL_ALT)
4453 {
4454 *t++ = '-';
4455 minwid--;
4456 }
4457 *t++ = '%';
4458 if (zeropad)
4459 *t++ = '0';
4460 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004461 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 *t = 0;
4463
4464 for (n = num, l = 1; n >= nbase; n /= nbase)
4465 l++;
4466 if (opt == STL_VIRTCOL_ALT)
4467 l++;
4468 if (l > maxwid)
4469 {
4470 l += 2;
4471 n = l - maxwid;
4472 while (l-- > maxwid)
4473 num /= nbase;
4474 *t++ = '>';
4475 *t++ = '%';
4476 *t = t[-3];
4477 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004478 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4479 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 }
4481 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004482 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4483 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 p += STRLEN(p);
4485 }
4486 else
4487 item[curitem].type = Empty;
4488
4489 if (opt == STL_VIM_EXPR)
4490 vim_free(str);
4491
4492 if (num >= 0 || (!itemisflag && str && *str))
4493 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4494 curitem++;
4495 }
4496 *p = NUL;
4497 itemcnt = curitem;
4498
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004499#ifdef FEAT_EVAL
4500 if (usefmt != fmt)
4501 vim_free(usefmt);
4502#endif
4503
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 width = vim_strsize(out);
4505 if (maxwidth > 0 && width > maxwidth)
4506 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004507 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 l = 0;
4509 if (itemcnt == 0)
4510 s = out;
4511 else
4512 {
4513 for ( ; l < itemcnt; l++)
4514 if (item[l].type == Trunc)
4515 {
4516 /* Truncate at %< item. */
4517 s = item[l].start;
4518 break;
4519 }
4520 if (l == itemcnt)
4521 {
4522 /* No %< item, truncate first item. */
4523 s = item[0].start;
4524 l = 0;
4525 }
4526 }
4527
4528 if (width - vim_strsize(s) >= maxwidth)
4529 {
4530 /* Truncation mark is beyond max length */
4531#ifdef FEAT_MBYTE
4532 if (has_mbyte)
4533 {
4534 s = out;
4535 width = 0;
4536 for (;;)
4537 {
4538 width += ptr2cells(s);
4539 if (width >= maxwidth)
4540 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004541 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 }
4543 /* Fill up for half a double-wide character. */
4544 while (++width < maxwidth)
4545 *s++ = fillchar;
4546 }
4547 else
4548#endif
4549 s = out + maxwidth - 1;
4550 for (l = 0; l < itemcnt; l++)
4551 if (item[l].start > s)
4552 break;
4553 itemcnt = l;
4554 *s++ = '>';
4555 *s = 0;
4556 }
4557 else
4558 {
4559#ifdef FEAT_MBYTE
4560 if (has_mbyte)
4561 {
4562 n = 0;
4563 while (width >= maxwidth)
4564 {
4565 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004566 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 }
4568 }
4569 else
4570#endif
4571 n = width - maxwidth + 1;
4572 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004573 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 *s = '<';
4575
4576 /* Fill up for half a double-wide character. */
4577 while (++width < maxwidth)
4578 {
4579 s = s + STRLEN(s);
4580 *s++ = fillchar;
4581 *s = NUL;
4582 }
4583
4584 --n; /* count the '<' */
4585 for (; l < itemcnt; l++)
4586 {
4587 if (item[l].start - n >= s)
4588 item[l].start -= n;
4589 else
4590 item[l].start = s;
4591 }
4592 }
4593 width = maxwidth;
4594 }
4595 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4596 {
4597 /* Apply STL_MIDDLE if any */
4598 for (l = 0; l < itemcnt; l++)
4599 if (item[l].type == Middle)
4600 break;
4601 if (l < itemcnt)
4602 {
4603 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004604 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 for (s = item[l].start; s < p; s++)
4606 *s = fillchar;
4607 for (l++; l < itemcnt; l++)
4608 item[l].start += maxwidth - width;
4609 width = maxwidth;
4610 }
4611 }
4612
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004613 /* Store the info about highlighting. */
4614 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004616 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 for (l = 0; l < itemcnt; l++)
4618 {
4619 if (item[l].type == Highlight)
4620 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004621 sp->start = item[l].start;
4622 sp->userhl = item[l].minwid;
4623 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 }
4625 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004626 sp->start = NULL;
4627 sp->userhl = 0;
4628 }
4629
4630 /* Store the info about tab pages labels. */
4631 if (tabtab != NULL)
4632 {
4633 sp = tabtab;
4634 for (l = 0; l < itemcnt; l++)
4635 {
4636 if (item[l].type == TabPage)
4637 {
4638 sp->start = item[l].start;
4639 sp->userhl = item[l].minwid;
4640 sp++;
4641 }
4642 }
4643 sp->start = NULL;
4644 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 }
4646
4647 return width;
4648}
4649#endif /* FEAT_STL_OPT */
4650
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004651#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4652 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004654 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4655 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 */
4657 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004658get_rel_pos(
4659 win_T *wp,
4660 char_u *buf,
4661 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662{
4663 long above; /* number of lines above window */
4664 long below; /* number of lines below window */
4665
Bram Moolenaar0027c212015-01-07 13:31:52 +01004666 if (buflen < 3) /* need at least 3 chars for writing */
4667 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 above = wp->w_topline - 1;
4669#ifdef FEAT_DIFF
4670 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004671 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4672 above = 0; /* All buffer lines are displayed and there is an
4673 * indication of filler lines, that can be considered
4674 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675#endif
4676 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4677 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004678 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4679 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004681 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004683 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 ? (int)(above / ((above + below) / 100L))
4685 : (int)(above * 100L / (above + below)));
4686}
4687#endif
4688
4689/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004690 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 * Return TRUE if it was appended.
4692 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004693 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004694append_arg_number(
4695 win_T *wp,
4696 char_u *buf,
4697 int buflen,
4698 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699{
4700 char_u *p;
4701
4702 if (ARGCOUNT <= 1) /* nothing to do */
4703 return FALSE;
4704
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004705 p = buf + STRLEN(buf); /* go to the end of the buffer */
4706 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 return FALSE;
4708 *p++ = ' ';
4709 *p++ = '(';
4710 if (add_file)
4711 {
4712 STRCPY(p, "file ");
4713 p += 5;
4714 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004715 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4716 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4718 return TRUE;
4719}
4720
4721/*
4722 * If fname is not a full path, make it a full path.
4723 * Returns pointer to allocated memory (NULL for failure).
4724 */
4725 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004726fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727{
4728 /*
4729 * Force expanding the path always for Unix, because symbolic links may
4730 * mess up the full path name, even though it starts with a '/'.
4731 * Also expand when there is ".." in the file name, try to remove it,
4732 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004733 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 * For MS-Windows also expand names like "longna~1" to "longname".
4735 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004736#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 return FullName_save(fname, TRUE);
4738#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004739 if (!vim_isAbsName(fname)
4740 || strstr((char *)fname, "..") != NULL
4741 || strstr((char *)fname, "//") != NULL
4742# ifdef BACKSLASH_IN_FILENAME
4743 || strstr((char *)fname, "\\\\") != NULL
4744# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004745# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004747# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 )
4749 return FullName_save(fname, FALSE);
4750
4751 fname = vim_strsave(fname);
4752
Bram Moolenaar9b942202007-10-03 12:31:33 +00004753# ifdef USE_FNAME_CASE
4754# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004756# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 {
4758 if (fname != NULL)
4759 fname_case(fname, 0); /* set correct case for file name */
4760 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004761# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762
4763 return fname;
4764#endif
4765}
4766
4767/*
4768 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4769 * "ffname" becomes a pointer to allocated memory (or NULL).
4770 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004772fname_expand(
4773 buf_T *buf UNUSED,
4774 char_u **ffname,
4775 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776{
4777 if (*ffname == NULL) /* if no file name given, nothing to do */
4778 return;
4779 if (*sfname == NULL) /* if no short file name given, use ffname */
4780 *sfname = *ffname;
4781 *ffname = fix_fname(*ffname); /* expand to full path */
4782
4783#ifdef FEAT_SHORTCUT
4784 if (!buf->b_p_bin)
4785 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004786 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787
4788 /* If the file name is a shortcut file, use the file it links to. */
4789 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004790 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 {
4792 vim_free(*ffname);
4793 *ffname = rfname;
4794 *sfname = rfname;
4795 }
4796 }
4797#endif
4798}
4799
4800/*
4801 * Get the file name for an argument list entry.
4802 */
4803 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004804alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805{
4806 buf_T *bp;
4807
4808 /* Use the name from the associated buffer if it exists. */
4809 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004810 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 return aep->ae_fname;
4812 return bp->b_fname;
4813}
4814
4815#if defined(FEAT_WINDOWS) || defined(PROTO)
4816/*
4817 * do_arg_all(): Open up to 'count' windows, one for each argument.
4818 */
4819 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004820do_arg_all(
4821 int count,
4822 int forceit, /* hide buffers in current windows */
4823 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824{
4825 int i;
4826 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004827 char_u *opened; /* Array of weight for which args are open:
4828 * 0: not opened
4829 * 1: opened in other tab
4830 * 2: opened in curtab
4831 * 3: opened in curtab and curwin
4832 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004833 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 int use_firstwin = FALSE; /* use first window for arglist */
4835 int split_ret = OK;
4836 int p_ea_save;
4837 alist_T *alist; /* argument list to be used */
4838 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004839 tabpage_T *tpnext;
4840 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004841 win_T *old_curwin, *last_curwin;
4842 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004843 win_T *new_curwin = NULL;
4844 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845
4846 if (ARGCOUNT <= 0)
4847 {
4848 /* Don't give an error message. We don't want it when the ":all"
4849 * command is in the .vimrc. */
4850 return;
4851 }
4852 setpcmark();
4853
4854 opened_len = ARGCOUNT;
4855 opened = alloc_clear((unsigned)opened_len);
4856 if (opened == NULL)
4857 return;
4858
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004859 /* Autocommands may do anything to the argument list. Make sure it's not
4860 * freed while we are working here by "locking" it. We still have to
4861 * watch out for its size to be changed. */
4862 alist = curwin->w_alist;
4863 ++alist->al_refcount;
4864
4865 old_curwin = curwin;
4866 old_curtab = curtab;
4867
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004868# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004870# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871
4872 /*
4873 * Try closing all windows that are not in the argument list.
4874 * Also close windows that are not full width;
4875 * When 'hidden' or "forceit" set the buffer becomes hidden.
4876 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004877 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004879 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004880 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004881 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004883 tpnext = curtab->tp_next;
4884 for (wp = firstwin; wp != NULL; wp = wpnext)
4885 {
4886 wpnext = wp->w_next;
4887 buf = wp->w_buffer;
4888 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004889 || (!keep_tabs && (buf->b_nwindows > 1
4890 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004891 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004892 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004894 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004895 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004897 if (i < alist->al_ga.ga_len
4898 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4899 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4900 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004902 int weight = 1;
4903
4904 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004905 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004906 ++weight;
4907 if (old_curwin == wp)
4908 ++weight;
4909 }
4910
4911 if (weight > (int)opened[i])
4912 {
4913 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004914 if (i == 0)
4915 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004916 if (new_curwin != NULL)
4917 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004918 new_curwin = wp;
4919 new_curtab = curtab;
4920 }
4921 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004922 else if (keep_tabs)
4923 i = opened_len;
4924
4925 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004926 {
4927 /* Use the current argument list for all windows
4928 * containing a file from it. */
4929 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004930 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004931 ++wp->w_alist->al_refcount;
4932 }
4933 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 }
4936 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004937 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004939 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004941 if (P_HID(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004942 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004944 /* If the buffer was changed, and we would like to hide it,
4945 * try autowriting. */
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004946 if (!P_HID(buf) && buf->b_nwindows <= 1
4947 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004949#ifdef FEAT_AUTOCMD
4950 bufref_T bufref;
4951
4952 set_bufref(&bufref, buf);
4953#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004954 (void)autowrite(buf, FALSE);
4955#ifdef FEAT_AUTOCMD
4956 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004957 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004958 {
4959 wpnext = firstwin; /* start all over... */
4960 continue;
4961 }
4962#endif
4963 }
4964#ifdef FEAT_WINDOWS
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004965 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01004966 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004967 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004968#endif
4969 use_firstwin = TRUE;
4970#ifdef FEAT_WINDOWS
4971 else
4972 {
4973 win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4974# ifdef FEAT_AUTOCMD
4975 /* check if autocommands removed the next window */
4976 if (!win_valid(wpnext))
4977 wpnext = firstwin; /* start all over... */
4978# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 }
4980#endif
4981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 }
4983 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004984
4985 /* Without the ":tab" modifier only do the current tab page. */
4986 if (had_tab == 0 || tpnext == NULL)
4987 break;
4988
4989# ifdef FEAT_AUTOCMD
4990 /* check if autocommands removed the next tab page */
4991 if (!valid_tabpage(tpnext))
4992 tpnext = first_tabpage; /* start all over...*/
4993# endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004994 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 }
4996
4997 /*
4998 * Open a window for files in the argument list that don't have one.
4999 * ARGCOUNT may change while doing this, because of autocommands.
5000 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005001 if (count > opened_len || count <= 0)
5002 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003
5004#ifdef FEAT_AUTOCMD
5005 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5006 ++autocmd_no_enter;
5007 ++autocmd_no_leave;
5008#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005009 last_curwin = curwin;
5010 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005012#ifdef FEAT_WINDOWS
5013 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
5014 * leaving an empty tab page when executed locally. */
5015 if (keep_tabs && bufempty() && curbuf->b_nwindows == 1
5016 && curbuf->b_ffname == NULL && !curbuf->b_changed)
5017 use_firstwin = TRUE;
5018#endif
5019
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005020 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 {
5022 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
5023 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005024 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 {
5026 /* Move the already present window to below the current window */
5027 if (curwin->w_arg_idx != i)
5028 {
5029 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5030 {
5031 if (wpnext->w_arg_idx == i)
5032 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005033 if (keep_tabs)
5034 {
5035 new_curwin = wpnext;
5036 new_curtab = curtab;
5037 }
5038 else
5039 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 break;
5041 }
5042 }
5043 }
5044 }
5045 else if (split_ret == OK)
5046 {
5047 if (!use_firstwin) /* split current window */
5048 {
5049 p_ea_save = p_ea;
5050 p_ea = TRUE; /* use space from all windows */
5051 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5052 p_ea = p_ea_save;
5053 if (split_ret == FAIL)
5054 continue;
5055 }
5056#ifdef FEAT_AUTOCMD
5057 else /* first window: do autocmd for leaving this buffer */
5058 --autocmd_no_leave;
5059#endif
5060
5061 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005062 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 */
5064 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005065 if (i == 0)
5066 {
5067 new_curwin = curwin;
5068 new_curtab = curtab;
5069 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5071 ECMD_ONE,
5072 ((P_HID(curwin->w_buffer)
5073 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005074 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075#ifdef FEAT_AUTOCMD
5076 if (use_firstwin)
5077 ++autocmd_no_leave;
5078#endif
5079 use_firstwin = FALSE;
5080 }
5081 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005082
5083 /* When ":tab" was used open a new tab for a new window repeatedly. */
5084 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5085 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 }
5087
5088 /* Remove the "lock" on the argument list. */
5089 alist_unlink(alist);
5090
5091#ifdef FEAT_AUTOCMD
5092 --autocmd_no_enter;
5093#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005094 /* restore last referenced tabpage's curwin */
5095 if (last_curtab != new_curtab)
5096 {
5097 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005098 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005099 if (win_valid(last_curwin))
5100 win_enter(last_curwin, FALSE);
5101 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005102 /* to window with first arg */
5103 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005104 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005105 if (win_valid(new_curwin))
5106 win_enter(new_curwin, FALSE);
5107
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108#ifdef FEAT_AUTOCMD
5109 --autocmd_no_leave;
5110#endif
5111 vim_free(opened);
5112}
5113
5114# if defined(FEAT_LISTCMDS) || defined(PROTO)
5115/*
5116 * Open a window for a number of buffers.
5117 */
5118 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005119ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120{
5121 buf_T *buf;
5122 win_T *wp, *wpnext;
5123 int split_ret = OK;
5124 int p_ea_save;
5125 int open_wins = 0;
5126 int r;
5127 int count; /* Maximum number of windows to open. */
5128 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005129#ifdef FEAT_WINDOWS
5130 int had_tab = cmdmod.tab;
5131 tabpage_T *tpnext;
5132#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133
5134 if (eap->addr_count == 0) /* make as many windows as possible */
5135 count = 9999;
5136 else
5137 count = eap->line2; /* make as many windows as specified */
5138 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5139 all = FALSE;
5140 else
5141 all = TRUE;
5142
5143 setpcmark();
5144
5145#ifdef FEAT_GUI
5146 need_mouse_correct = TRUE;
5147#endif
5148
5149 /*
5150 * Close superfluous windows (two windows for the same buffer).
5151 * Also close windows that are not full-width.
5152 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005153#ifdef FEAT_WINDOWS
5154 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005155 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005156 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005159 tpnext = curtab->tp_next;
5160 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005162 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005163 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005164#ifdef FEAT_WINDOWS
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005165 || ((cmdmod.split & WSP_VERT)
5166 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005167 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005168 : wp->w_width != Columns)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005169 || (had_tab > 0 && wp != firstwin)
5170#endif
Bram Moolenaar459ca562016-11-10 18:16:33 +01005171 ) && !ONE_WINDOW
Bram Moolenaar362ce482012-06-06 19:02:45 +02005172#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02005173 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02005174#endif
5175 )
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005176 {
5177 win_close(wp, FALSE);
5178#ifdef FEAT_AUTOCMD
5179 wpnext = firstwin; /* just in case an autocommand does
5180 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005181 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005182 open_wins = 0;
5183#endif
5184 }
5185 else
5186 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005188
5189#ifdef FEAT_WINDOWS
5190 /* Without the ":tab" modifier only do the current tab page. */
5191 if (had_tab == 0 || tpnext == NULL)
5192 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005193 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005195#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196
5197 /*
5198 * Go through the buffer list. When a buffer doesn't have a window yet,
5199 * open one. Otherwise move the window to the right position.
5200 * Watch out for autocommands that delete buffers or windows!
5201 */
5202#ifdef FEAT_AUTOCMD
5203 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5204 ++autocmd_no_enter;
5205#endif
5206 win_enter(lastwin, FALSE);
5207#ifdef FEAT_AUTOCMD
5208 ++autocmd_no_leave;
5209#endif
5210 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5211 {
5212 /* Check if this buffer needs a window */
5213 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5214 continue;
5215
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005216#ifdef FEAT_WINDOWS
5217 if (had_tab != 0)
5218 {
5219 /* With the ":tab" modifier don't move the window. */
5220 if (buf->b_nwindows > 0)
5221 wp = lastwin; /* buffer has a window, skip it */
5222 else
5223 wp = NULL;
5224 }
5225 else
5226#endif
5227 {
5228 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005229 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005230 if (wp->w_buffer == buf)
5231 break;
5232 /* If the buffer already has a window, move it */
5233 if (wp != NULL)
5234 win_move_after(wp, curwin);
5235 }
5236
5237 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005239#ifdef FEAT_AUTOCMD
5240 bufref_T bufref;
5241
5242 set_bufref(&bufref, buf);
5243#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 /* Split the window and put the buffer in it */
5245 p_ea_save = p_ea;
5246 p_ea = TRUE; /* use space from all windows */
5247 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5248 ++open_wins;
5249 p_ea = p_ea_save;
5250 if (split_ret == FAIL)
5251 continue;
5252
5253 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005254#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 swap_exists_action = SEA_DIALOG;
5256#endif
5257 set_curbuf(buf, DOBUF_GOTO);
5258#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005259 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005261 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005262#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005264# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 break;
5266 }
5267#endif
Bram Moolenaare64ac772005-12-07 20:54:59 +00005268#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 if (swap_exists_action == SEA_QUIT)
5270 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005271# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5272 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005273
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005274 /* Reset the error/interrupt/exception state here so that
5275 * aborting() returns FALSE when closing a window. */
5276 enter_cleanup(&cs);
5277# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005278
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005279 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 win_close(curwin, TRUE);
5281 --open_wins;
5282 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005283 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005284
5285# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5286 /* Restore the error/interrupt/exception state if not
5287 * discarded by a new aborting error, interrupt, or uncaught
5288 * exception. */
5289 leave_cleanup(&cs);
5290# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 }
5292 else
5293 handle_swap_exists(NULL);
5294#endif
5295 }
5296
5297 ui_breakcheck();
5298 if (got_int)
5299 {
5300 (void)vgetc(); /* only break the file loading, not the rest */
5301 break;
5302 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005303#ifdef FEAT_EVAL
5304 /* Autocommands deleted the buffer or aborted script processing!!! */
5305 if (aborting())
5306 break;
5307#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005308#ifdef FEAT_WINDOWS
5309 /* When ":tab" was used open a new tab for a new window repeatedly. */
5310 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5311 cmdmod.tab = 9999;
5312#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 }
5314#ifdef FEAT_AUTOCMD
5315 --autocmd_no_enter;
5316#endif
5317 win_enter(firstwin, FALSE); /* back to first window */
5318#ifdef FEAT_AUTOCMD
5319 --autocmd_no_leave;
5320#endif
5321
5322 /*
5323 * Close superfluous windows.
5324 */
5325 for (wp = lastwin; open_wins > count; )
5326 {
5327 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
5328 || autowrite(wp->w_buffer, FALSE) == OK);
5329#ifdef FEAT_AUTOCMD
5330 if (!win_valid(wp))
5331 {
5332 /* BufWrite Autocommands made the window invalid, start over */
5333 wp = lastwin;
5334 }
5335 else
5336#endif
5337 if (r)
5338 {
5339 win_close(wp, !P_HID(wp->w_buffer));
5340 --open_wins;
5341 wp = lastwin;
5342 }
5343 else
5344 {
5345 wp = wp->w_prev;
5346 if (wp == NULL)
5347 break;
5348 }
5349 }
5350}
5351# endif /* FEAT_LISTCMDS */
5352
5353#endif /* FEAT_WINDOWS */
5354
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005355static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005356
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357/*
5358 * do_modelines() - process mode lines for the current file
5359 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005360 * "flags" can be:
5361 * OPT_WINONLY only set options local to window
5362 * OPT_NOWIN don't set options local to window
5363 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 * Returns immediately if the "ml" option isn't set.
5365 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005367do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005369 linenr_T lnum;
5370 int nmlines;
5371 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372
5373 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5374 return;
5375
5376 /* Disallow recursive entry here. Can happen when executing a modeline
5377 * triggers an autocommand, which reloads modelines with a ":do". */
5378 if (entered)
5379 return;
5380
5381 ++entered;
5382 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5383 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005384 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 nmlines = 0;
5386
5387 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5388 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005389 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390 nmlines = 0;
5391 --entered;
5392}
5393
5394#include "version.h" /* for version number */
5395
5396/*
5397 * chk_modeline() - check a single line for a mode string
5398 * Return FAIL if an error encountered.
5399 */
5400 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005401chk_modeline(
5402 linenr_T lnum,
5403 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404{
5405 char_u *s;
5406 char_u *e;
5407 char_u *linecopy; /* local copy of any modeline found */
5408 int prev;
5409 int vers;
5410 int end;
5411 int retval = OK;
5412 char_u *save_sourcing_name;
5413 linenr_T save_sourcing_lnum;
5414#ifdef FEAT_EVAL
5415 scid_T save_SID;
5416#endif
5417
5418 prev = -1;
5419 for (s = ml_get(lnum); *s != NUL; ++s)
5420 {
5421 if (prev == -1 || vim_isspace(prev))
5422 {
5423 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5424 || STRNCMP(s, "vi:", (size_t)3) == 0)
5425 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005426 /* Accept both "vim" and "Vim". */
5427 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 {
5429 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5430 e = s + 4;
5431 else
5432 e = s + 3;
5433 vers = getdigits(&e);
5434 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005435 && (s[0] != 'V'
5436 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 && (s[3] == ':'
5438 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5439 || (VIM_VERSION_100 < vers && s[3] == '<')
5440 || (VIM_VERSION_100 > vers && s[3] == '>')
5441 || (VIM_VERSION_100 == vers && s[3] == '=')))
5442 break;
5443 }
5444 }
5445 prev = *s;
5446 }
5447
5448 if (*s)
5449 {
5450 do /* skip over "ex:", "vi:" or "vim:" */
5451 ++s;
5452 while (s[-1] != ':');
5453
5454 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5455 if (linecopy == NULL)
5456 return FAIL;
5457
5458 save_sourcing_lnum = sourcing_lnum;
5459 save_sourcing_name = sourcing_name;
5460 sourcing_lnum = lnum; /* prepare for emsg() */
5461 sourcing_name = (char_u *)"modelines";
5462
5463 end = FALSE;
5464 while (end == FALSE)
5465 {
5466 s = skipwhite(s);
5467 if (*s == NUL)
5468 break;
5469
5470 /*
5471 * Find end of set command: ':' or end of line.
5472 * Skip over "\:", replacing it with ":".
5473 */
5474 for (e = s; *e != ':' && *e != NUL; ++e)
5475 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005476 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 if (*e == NUL)
5478 end = TRUE;
5479
5480 /*
5481 * If there is a "set" command, require a terminating ':' and
5482 * ignore the stuff after the ':'.
5483 * "vi:set opt opt opt: foo" -- foo not interpreted
5484 * "vi:opt opt opt: foo" -- foo interpreted
5485 * Accept "se" for compatibility with Elvis.
5486 */
5487 if (STRNCMP(s, "set ", (size_t)4) == 0
5488 || STRNCMP(s, "se ", (size_t)3) == 0)
5489 {
5490 if (*e != ':') /* no terminating ':'? */
5491 break;
5492 end = TRUE;
5493 s = vim_strchr(s, ' ') + 1;
5494 }
5495 *e = NUL; /* truncate the set command */
5496
5497 if (*s != NUL) /* skip over an empty "::" */
5498 {
5499#ifdef FEAT_EVAL
5500 save_SID = current_SID;
5501 current_SID = SID_MODELINE;
5502#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005503 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504#ifdef FEAT_EVAL
5505 current_SID = save_SID;
5506#endif
5507 if (retval == FAIL) /* stop if error found */
5508 break;
5509 }
5510 s = e + 1; /* advance to next part */
5511 }
5512
5513 sourcing_lnum = save_sourcing_lnum;
5514 sourcing_name = save_sourcing_name;
5515
5516 vim_free(linecopy);
5517 }
5518 return retval;
5519}
5520
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005521#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005523read_viminfo_bufferlist(
5524 vir_T *virp,
5525 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526{
5527 char_u *tab;
5528 linenr_T lnum;
5529 colnr_T col;
5530 buf_T *buf;
5531 char_u *sfname;
5532 char_u *xline;
5533
5534 /* Handle long line and escaped characters. */
5535 xline = viminfo_readstring(virp, 1, FALSE);
5536
5537 /* don't read in if there are files on the command-line or if writing: */
5538 if (xline != NULL && !writing && ARGCOUNT == 0
5539 && find_viminfo_parameter('%') != NULL)
5540 {
5541 /* Format is: <fname> Tab <lnum> Tab <col>.
5542 * Watch out for a Tab in the file name, work from the end. */
5543 lnum = 0;
5544 col = 0;
5545 tab = vim_strrchr(xline, '\t');
5546 if (tab != NULL)
5547 {
5548 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005549 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 tab = vim_strrchr(xline, '\t');
5551 if (tab != NULL)
5552 {
5553 *tab++ = '\0';
5554 lnum = atol((char *)tab);
5555 }
5556 }
5557
5558 /* Expand "~/" in the file name at "line + 1" to a full path.
5559 * Then try shortening it by comparing with the current directory */
5560 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005561 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562
5563 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5564 if (buf != NULL) /* just in case... */
5565 {
5566 buf->b_last_cursor.lnum = lnum;
5567 buf->b_last_cursor.col = col;
5568 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5569 }
5570 }
5571 vim_free(xline);
5572
5573 return viminfo_readline(virp);
5574}
5575
5576 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005577write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578{
5579 buf_T *buf;
5580#ifdef FEAT_WINDOWS
5581 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005582 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583#endif
5584 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005585 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586
5587 if (find_viminfo_parameter('%') == NULL)
5588 return;
5589
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005590 /* Without a number -1 is returned: do all buffers. */
5591 max_buffers = get_viminfo_parameter('%');
5592
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005594#define LINE_BUF_LEN (MAXPATHL + 40)
5595 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 if (line == NULL)
5597 return;
5598
5599#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00005600 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 set_last_cursor(win);
5602#else
5603 set_last_cursor(curwin);
5604#endif
5605
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005606 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005607 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 {
5609 if (buf->b_fname == NULL
5610 || !buf->b_p_bl
5611#ifdef FEAT_QUICKFIX
5612 || bt_quickfix(buf)
5613#endif
5614 || removable(buf->b_ffname))
5615 continue;
5616
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005617 if (max_buffers-- == 0)
5618 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 putc('%', fp);
5620 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005621 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622 (long)buf->b_last_cursor.lnum,
5623 buf->b_last_cursor.col);
5624 viminfo_writestring(fp, line);
5625 }
5626 vim_free(line);
5627}
5628#endif
5629
5630
5631/*
5632 * Return special buffer name.
5633 * Returns NULL when the buffer has a normal file name.
5634 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005635 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005636buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637{
5638#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
5639 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005640 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005641 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005642 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005643
5644 /*
5645 * For location list window, w_llist_ref points to the location list.
5646 * For quickfix window, w_llist_ref is NULL.
5647 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005648 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005649 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005650 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005651 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005652 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653#endif
5654#ifdef FEAT_QUICKFIX
5655 /* There is no _file_ when 'buftype' is "nofile", b_sfname
5656 * contains the name as specified by the user */
5657 if (bt_nofile(buf))
5658 {
5659 if (buf->b_sfname != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005660 return buf->b_sfname;
5661 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662 }
5663#endif
5664 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005665 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 return NULL;
5667}
5668
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005669#if (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
5670 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5671 || defined(PROTO)
5672/*
5673 * Find a window for buffer "buf".
5674 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5675 * If not found FAIL is returned.
5676 */
5677 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005678find_win_for_buf(
5679 buf_T *buf,
5680 win_T **wp,
5681 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005682{
5683 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5684 if ((*wp)->w_buffer == buf)
5685 goto win_found;
5686 return FAIL;
5687win_found:
5688 return OK;
5689}
5690#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691
5692#if defined(FEAT_SIGNS) || defined(PROTO)
5693/*
5694 * Insert the sign into the signlist.
5695 */
5696 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005697insert_sign(
5698 buf_T *buf, /* buffer to store sign in */
5699 signlist_T *prev, /* previous sign entry */
5700 signlist_T *next, /* next sign entry */
5701 int id, /* sign ID */
5702 linenr_T lnum, /* line number which gets the mark */
5703 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704{
5705 signlist_T *newsign;
5706
5707 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5708 if (newsign != NULL)
5709 {
5710 newsign->id = id;
5711 newsign->lnum = lnum;
5712 newsign->typenr = typenr;
5713 newsign->next = next;
5714#ifdef FEAT_NETBEANS_INTG
5715 newsign->prev = prev;
5716 if (next != NULL)
5717 next->prev = newsign;
5718#endif
5719
5720 if (prev == NULL)
5721 {
5722 /* When adding first sign need to redraw the windows to create the
5723 * column for signs. */
5724 if (buf->b_signlist == NULL)
5725 {
5726 redraw_buf_later(buf, NOT_VALID);
5727 changed_cline_bef_curs();
5728 }
5729
5730 /* first sign in signlist */
5731 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005732#ifdef FEAT_NETBEANS_INTG
5733 if (netbeans_active())
5734 buf->b_has_sign_column = TRUE;
5735#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 }
5737 else
5738 prev->next = newsign;
5739 }
5740}
5741
5742/*
5743 * Add the sign into the signlist. Find the right spot to do it though.
5744 */
5745 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005746buf_addsign(
5747 buf_T *buf, /* buffer to store sign in */
5748 int id, /* sign ID */
5749 linenr_T lnum, /* line number which gets the mark */
5750 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751{
5752 signlist_T *sign; /* a sign in the signlist */
5753 signlist_T *prev; /* the previous sign */
5754
5755 prev = NULL;
5756 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5757 {
5758 if (lnum == sign->lnum && id == sign->id)
5759 {
5760 sign->typenr = typenr;
5761 return;
5762 }
5763 else if (
5764#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5765 id < 0 &&
5766#endif
5767 lnum < sign->lnum)
5768 {
5769#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5770 /* XXX - GRP: Is this because of sign slide problem? Or is it
5771 * really needed? Or is it because we allow multiple signs per
5772 * line? If so, should I add that feature to FEAT_SIGNS?
5773 */
5774 while (prev != NULL && prev->lnum == lnum)
5775 prev = prev->prev;
5776 if (prev == NULL)
5777 sign = buf->b_signlist;
5778 else
5779 sign = prev->next;
5780#endif
5781 insert_sign(buf, prev, sign, id, lnum, typenr);
5782 return;
5783 }
5784 prev = sign;
5785 }
5786#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5787 /* XXX - GRP: See previous comment */
5788 while (prev != NULL && prev->lnum == lnum)
5789 prev = prev->prev;
5790 if (prev == NULL)
5791 sign = buf->b_signlist;
5792 else
5793 sign = prev->next;
5794#endif
5795 insert_sign(buf, prev, sign, id, lnum, typenr);
5796
5797 return;
5798}
5799
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005800/*
5801 * For an existing, placed sign "markId" change the type to "typenr".
5802 * Returns the line number of the sign, or zero if the sign is not found.
5803 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005804 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005805buf_change_sign_type(
5806 buf_T *buf, /* buffer to store sign in */
5807 int markId, /* sign ID */
5808 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809{
5810 signlist_T *sign; /* a sign in the signlist */
5811
5812 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5813 {
5814 if (sign->id == markId)
5815 {
5816 sign->typenr = typenr;
5817 return sign->lnum;
5818 }
5819 }
5820
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005821 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822}
5823
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005824 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005825buf_getsigntype(
5826 buf_T *buf,
5827 linenr_T lnum,
5828 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829{
5830 signlist_T *sign; /* a sign in a b_signlist */
5831
5832 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5833 if (sign->lnum == lnum
5834 && (type == SIGN_ANY
5835# ifdef FEAT_SIGN_ICONS
5836 || (type == SIGN_ICON
5837 && sign_get_image(sign->typenr) != NULL)
5838# endif
5839 || (type == SIGN_TEXT
5840 && sign_get_text(sign->typenr) != NULL)
5841 || (type == SIGN_LINEHL
5842 && sign_get_attr(sign->typenr, TRUE) != 0)))
5843 return sign->typenr;
5844 return 0;
5845}
5846
5847
5848 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005849buf_delsign(
5850 buf_T *buf, /* buffer sign is stored in */
5851 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852{
5853 signlist_T **lastp; /* pointer to pointer to current sign */
5854 signlist_T *sign; /* a sign in a b_signlist */
5855 signlist_T *next; /* the next sign in a b_signlist */
5856 linenr_T lnum; /* line number whose sign was deleted */
5857
5858 lastp = &buf->b_signlist;
5859 lnum = 0;
5860 for (sign = buf->b_signlist; sign != NULL; sign = next)
5861 {
5862 next = sign->next;
5863 if (sign->id == id)
5864 {
5865 *lastp = next;
5866#ifdef FEAT_NETBEANS_INTG
5867 if (next != NULL)
5868 next->prev = sign->prev;
5869#endif
5870 lnum = sign->lnum;
5871 vim_free(sign);
5872 break;
5873 }
5874 else
5875 lastp = &sign->next;
5876 }
5877
5878 /* When deleted the last sign need to redraw the windows to remove the
5879 * sign column. */
5880 if (buf->b_signlist == NULL)
5881 {
5882 redraw_buf_later(buf, NOT_VALID);
5883 changed_cline_bef_curs();
5884 }
5885
5886 return lnum;
5887}
5888
5889
5890/*
5891 * Find the line number of the sign with the requested id. If the sign does
5892 * not exist, return 0 as the line number. This will still let the correct file
5893 * get loaded.
5894 */
5895 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005896buf_findsign(
5897 buf_T *buf, /* buffer to store sign in */
5898 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899{
5900 signlist_T *sign; /* a sign in the signlist */
5901
5902 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5903 if (sign->id == id)
5904 return sign->lnum;
5905
5906 return 0;
5907}
5908
5909 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005910buf_findsign_id(
5911 buf_T *buf, /* buffer whose sign we are searching for */
5912 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913{
5914 signlist_T *sign; /* a sign in the signlist */
5915
5916 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5917 if (sign->lnum == lnum)
5918 return sign->id;
5919
5920 return 0;
5921}
5922
5923
5924# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5925/* see if a given type of sign exists on a specific line */
5926 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005927buf_findsigntype_id(
5928 buf_T *buf, /* buffer whose sign we are searching for */
5929 linenr_T lnum, /* line number of sign */
5930 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931{
5932 signlist_T *sign; /* a sign in the signlist */
5933
5934 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5935 if (sign->lnum == lnum && sign->typenr == typenr)
5936 return sign->id;
5937
5938 return 0;
5939}
5940
5941
5942# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5943/* return the number of icons on the given line */
5944 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005945buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946{
5947 signlist_T *sign; /* a sign in the signlist */
5948 int count = 0;
5949
5950 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5951 if (sign->lnum == lnum)
5952 if (sign_get_image(sign->typenr) != NULL)
5953 count++;
5954
5955 return count;
5956}
5957# endif /* FEAT_SIGN_ICONS */
5958# endif /* FEAT_NETBEANS_INTG */
5959
5960
5961/*
5962 * Delete signs in buffer "buf".
5963 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02005964 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005965buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966{
5967 signlist_T *next;
5968
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005969 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02005970 * sign column. Not when curwin is NULL (this means we're exiting). */
5971 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005972 {
5973 redraw_buf_later(buf, NOT_VALID);
5974 changed_cline_bef_curs();
5975 }
5976
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 while (buf->b_signlist != NULL)
5978 {
5979 next = buf->b_signlist->next;
5980 vim_free(buf->b_signlist);
5981 buf->b_signlist = next;
5982 }
5983}
5984
5985/*
5986 * Delete all signs in all buffers.
5987 */
5988 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005989buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990{
5991 buf_T *buf; /* buffer we are checking for signs */
5992
Bram Moolenaar29323592016-07-24 22:04:11 +02005993 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996}
5997
5998/*
5999 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
6000 */
6001 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006002sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003{
6004 buf_T *buf;
6005 signlist_T *p;
6006 char lbuf[BUFSIZ];
6007
6008 MSG_PUTS_TITLE(_("\n--- Signs ---"));
6009 msg_putchar('\n');
6010 if (rbuf == NULL)
6011 buf = firstbuf;
6012 else
6013 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006014 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 {
6016 if (buf->b_signlist != NULL)
6017 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006018 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
6020 msg_putchar('\n');
6021 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006022 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00006024 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
6026 MSG_PUTS(lbuf);
6027 msg_putchar('\n');
6028 }
6029 if (rbuf != NULL)
6030 break;
6031 buf = buf->b_next;
6032 }
6033}
6034
6035/*
6036 * Adjust a placed sign for inserted/deleted lines.
6037 */
6038 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006039sign_mark_adjust(
6040 linenr_T line1,
6041 linenr_T line2,
6042 long amount,
6043 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006044{
6045 signlist_T *sign; /* a sign in a b_signlist */
6046
6047 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6048 {
6049 if (sign->lnum >= line1 && sign->lnum <= line2)
6050 {
6051 if (amount == MAXLNUM)
6052 sign->lnum = line1;
6053 else
6054 sign->lnum += amount;
6055 }
6056 else if (sign->lnum > line2)
6057 sign->lnum += amount_after;
6058 }
6059}
6060#endif /* FEAT_SIGNS */
6061
6062/*
6063 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6064 */
6065 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006066set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067{
6068 if (on != curbuf->b_p_bl)
6069 {
6070 curbuf->b_p_bl = on;
6071#ifdef FEAT_AUTOCMD
6072 if (on)
6073 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6074 else
6075 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
6076#endif
6077 }
6078}
6079
6080/*
6081 * Read the file for "buf" again and check if the contents changed.
6082 * Return TRUE if it changed or this could not be checked.
6083 */
6084 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006085buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086{
6087 buf_T *newbuf;
6088 int differ = TRUE;
6089 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091 exarg_T ea;
6092
6093 /* Allocate a buffer without putting it in the buffer list. */
6094 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6095 if (newbuf == NULL)
6096 return TRUE;
6097
6098 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6099 if (prep_exarg(&ea, buf) == FAIL)
6100 {
6101 wipe_buffer(newbuf, FALSE);
6102 return TRUE;
6103 }
6104
Bram Moolenaar071d4272004-06-13 20:20:40 +00006105 /* set curwin/curbuf to buf and save a few things */
6106 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107
Bram Moolenaar4770d092006-01-12 23:22:24 +00006108 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109 && readfile(buf->b_ffname, buf->b_fname,
6110 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6111 &ea, READ_NEW | READ_DUMMY) == OK)
6112 {
6113 /* compare the two files line by line */
6114 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6115 {
6116 differ = FALSE;
6117 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6118 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6119 {
6120 differ = TRUE;
6121 break;
6122 }
6123 }
6124 }
6125 vim_free(ea.cmd);
6126
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127 /* restore curwin/curbuf and a few other things */
6128 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129
6130 if (curbuf != newbuf) /* safety check */
6131 wipe_buffer(newbuf, FALSE);
6132
6133 return differ;
6134}
6135
6136/*
6137 * Wipe out a buffer and decrement the last buffer number if it was used for
6138 * this buffer. Call this to wipe out a temp buffer that does not contain any
6139 * marks.
6140 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006142wipe_buffer(
6143 buf_T *buf,
6144 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145{
6146 if (buf->b_fnum == top_file_num - 1)
6147 --top_file_num;
6148
6149#ifdef FEAT_AUTOCMD
6150 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006151 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006153 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154#ifdef FEAT_AUTOCMD
6155 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006156 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157#endif
6158}