blob: b79e277a0108aa9439171c8be739d215140c6569 [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/*
876 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
877 */
878 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100879free_buffer_stuff(
880 buf_T *buf,
881 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882{
883 if (free_options)
884 {
885 clear_wininfo(buf); /* including window-local options */
886 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200887#ifdef FEAT_SPELL
888 ga_clear(&buf->b_s.b_langp);
889#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 }
891#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +0200892 vars_clear(&buf->b_vars->dv_hashtab); /* free all internal variables */
893 hash_init(&buf->b_vars->dv_hashtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894#endif
895#ifdef FEAT_USR_CMDS
896 uc_clear(&buf->b_ucmds); /* clear local user commands */
897#endif
898#ifdef FEAT_SIGNS
899 buf_delete_signs(buf); /* delete any signs */
900#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000901#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200902 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000903#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904#ifdef FEAT_LOCALMAP
905 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
906 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
907#endif
908#ifdef FEAT_MBYTE
909 vim_free(buf->b_start_fenc);
910 buf->b_start_fenc = NULL;
911#endif
912}
913
914/*
915 * Free the b_wininfo list for buffer "buf".
916 */
917 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100918clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919{
920 wininfo_T *wip;
921
922 while (buf->b_wininfo != NULL)
923 {
924 wip = buf->b_wininfo;
925 buf->b_wininfo = wip->wi_next;
926 if (wip->wi_optset)
927 {
928 clear_winopt(&wip->wi_opt);
929#ifdef FEAT_FOLDING
930 deleteFoldRecurse(&wip->wi_folds);
931#endif
932 }
933 vim_free(wip);
934 }
935}
936
937#if defined(FEAT_LISTCMDS) || defined(PROTO)
938/*
939 * Go to another buffer. Handles the result of the ATTENTION dialog.
940 */
941 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100942goto_buffer(
943 exarg_T *eap,
944 int start,
945 int dir,
946 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947{
Bram Moolenaare64ac772005-12-07 20:54:59 +0000948# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200949 bufref_T old_curbuf;
950
951 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952
953 swap_exists_action = SEA_DIALOG;
954# endif
955 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
956 start, dir, count, eap->forceit);
Bram Moolenaare64ac772005-12-07 20:54:59 +0000957# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
959 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000960# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
961 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000962
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000963 /* Reset the error/interrupt/exception state here so that
964 * aborting() returns FALSE when closing a window. */
965 enter_cleanup(&cs);
966# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000967
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000968 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 win_close(curwin, TRUE);
970 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000971 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000972
973# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
974 /* Restore the error/interrupt/exception state if not discarded by a
975 * new aborting error, interrupt, or uncaught exception. */
976 leave_cleanup(&cs);
977# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 }
979 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200980 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981# endif
982}
983#endif
984
Bram Moolenaare64ac772005-12-07 20:54:59 +0000985#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986/*
987 * Handle the situation of swap_exists_action being set.
988 * It is allowed for "old_curbuf" to be NULL or invalid.
989 */
990 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200991handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992{
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000993# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
994 cleanup_T cs;
995# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100996#ifdef FEAT_SYN_HL
997 long old_tw = curbuf->b_p_tw;
998#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200999 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001000
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 if (swap_exists_action == SEA_QUIT)
1002 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001003# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1004 /* Reset the error/interrupt/exception state here so that
1005 * aborting() returns FALSE when closing a buffer. */
1006 enter_cleanup(&cs);
1007# endif
1008
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 /* User selected Quit at ATTENTION prompt. Go back to previous
1010 * buffer. If that buffer is gone or the same as the current one,
1011 * open a new, empty buffer. */
1012 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001013 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001014 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001015 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1016 || old_curbuf->br_buf == curbuf)
1017 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1018 else
1019 buf = old_curbuf->br_buf;
1020 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001021 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001022 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001023#ifdef FEAT_SYN_HL
1024 if (old_tw != curbuf->b_p_tw)
1025 check_colorcolumn(curwin);
1026#endif
1027 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001029
1030# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1031 /* Restore the error/interrupt/exception state if not discarded by a
1032 * new aborting error, interrupt, or uncaught exception. */
1033 leave_cleanup(&cs);
1034# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 }
1036 else if (swap_exists_action == SEA_RECOVER)
1037 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001038# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1039 /* Reset the error/interrupt/exception state here so that
1040 * aborting() returns FALSE when closing a buffer. */
1041 enter_cleanup(&cs);
1042# endif
1043
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 /* User selected Recover at ATTENTION prompt. */
1045 msg_scroll = TRUE;
1046 ml_recover();
1047 MSG_PUTS("\n"); /* don't overwrite the last message */
1048 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001049 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001050
1051# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1052 /* Restore the error/interrupt/exception state if not discarded by a
1053 * new aborting error, interrupt, or uncaught exception. */
1054 leave_cleanup(&cs);
1055# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 }
1057 swap_exists_action = SEA_NONE;
1058}
1059#endif
1060
1061#if defined(FEAT_LISTCMDS) || defined(PROTO)
1062/*
1063 * do_bufdel() - delete or unload buffer(s)
1064 *
1065 * addr_count == 0: ":bdel" - delete current buffer
1066 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1067 * buffer "end_bnr", then any other arguments.
1068 * addr_count == 2: ":N,N bdel" - delete buffers in range
1069 *
1070 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1071 * DOBUF_DEL (":bdel")
1072 *
1073 * Returns error message or NULL
1074 */
1075 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001076do_bufdel(
1077 int command,
1078 char_u *arg, /* pointer to extra arguments */
1079 int addr_count,
1080 int start_bnr, /* first buffer number in a range */
1081 int end_bnr, /* buffer nr or last buffer nr in a range */
1082 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083{
1084 int do_current = 0; /* delete current buffer? */
1085 int deleted = 0; /* number of buffers deleted */
1086 char_u *errormsg = NULL; /* return value */
1087 int bnr; /* buffer number */
1088 char_u *p;
1089
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 if (addr_count == 0)
1091 {
1092 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1093 }
1094 else
1095 {
1096 if (addr_count == 2)
1097 {
1098 if (*arg) /* both range and argument is not allowed */
1099 return (char_u *)_(e_trailing);
1100 bnr = start_bnr;
1101 }
1102 else /* addr_count == 1 */
1103 bnr = end_bnr;
1104
1105 for ( ;!got_int; ui_breakcheck())
1106 {
1107 /*
1108 * delete the current buffer last, otherwise when the
1109 * current buffer is deleted, the next buffer becomes
1110 * the current one and will be loaded, which may then
1111 * also be deleted, etc.
1112 */
1113 if (bnr == curbuf->b_fnum)
1114 do_current = bnr;
1115 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1116 forceit) == OK)
1117 ++deleted;
1118
1119 /*
1120 * find next buffer number to delete/unload
1121 */
1122 if (addr_count == 2)
1123 {
1124 if (++bnr > end_bnr)
1125 break;
1126 }
1127 else /* addr_count == 1 */
1128 {
1129 arg = skipwhite(arg);
1130 if (*arg == NUL)
1131 break;
1132 if (!VIM_ISDIGIT(*arg))
1133 {
1134 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001135 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1136 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 if (bnr < 0) /* failed */
1138 break;
1139 arg = p;
1140 }
1141 else
1142 bnr = getdigits(&arg);
1143 }
1144 }
1145 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1146 FORWARD, do_current, forceit) == OK)
1147 ++deleted;
1148
1149 if (deleted == 0)
1150 {
1151 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001152 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001154 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001156 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 errormsg = IObuff;
1158 }
1159 else if (deleted >= p_report)
1160 {
1161 if (command == DOBUF_UNLOAD)
1162 {
1163 if (deleted == 1)
1164 MSG(_("1 buffer unloaded"));
1165 else
1166 smsg((char_u *)_("%d buffers unloaded"), deleted);
1167 }
1168 else if (command == DOBUF_DEL)
1169 {
1170 if (deleted == 1)
1171 MSG(_("1 buffer deleted"));
1172 else
1173 smsg((char_u *)_("%d buffers deleted"), deleted);
1174 }
1175 else
1176 {
1177 if (deleted == 1)
1178 MSG(_("1 buffer wiped out"));
1179 else
1180 smsg((char_u *)_("%d buffers wiped out"), deleted);
1181 }
1182 }
1183 }
1184
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185
1186 return errormsg;
1187}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001188#endif /* FEAT_LISTCMDS */
1189
1190#if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \
1191 || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001193static int empty_curbuf(int close_others, int forceit, int action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001194
1195/*
1196 * Make the current buffer empty.
1197 * Used when it is wiped out and it's the last buffer.
1198 */
1199 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001200empty_curbuf(
1201 int close_others,
1202 int forceit,
1203 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001204{
1205 int retval;
1206 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001207 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001208
1209 if (action == DOBUF_UNLOAD)
1210 {
1211 EMSG(_("E90: Cannot unload last buffer"));
1212 return FAIL;
1213 }
1214
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001215 set_bufref(&bufref, buf);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001216#ifdef FEAT_WINDOWS
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001217 if (close_others)
1218 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001219 close_windows(buf, TRUE);
1220#endif
Bram Moolenaara02471e2014-01-10 16:43:14 +01001221
1222 setpcmark();
1223 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1224 forceit ? ECMD_FORCEIT : 0, curwin);
1225
1226 /*
1227 * do_ecmd() may create a new buffer, then we have to delete
1228 * the old one. But do_ecmd() may have done that already, check
1229 * if the buffer still exists.
1230 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001231 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001232 close_buffer(NULL, buf, action, FALSE);
1233 if (!close_others)
1234 need_fileinfo = FALSE;
1235 return retval;
1236}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237/*
1238 * Implementation of the commands for the buffer list.
1239 *
1240 * action == DOBUF_GOTO go to specified buffer
1241 * action == DOBUF_SPLIT split window and go to specified buffer
1242 * action == DOBUF_UNLOAD unload specified buffer(s)
1243 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1244 * action == DOBUF_WIPE delete specified buffer(s) really
1245 *
1246 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1247 * start == DOBUF_FIRST go to "count" buffer from first buffer
1248 * start == DOBUF_LAST go to "count" buffer from last buffer
1249 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1250 *
1251 * Return FAIL or OK.
1252 */
1253 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001254do_buffer(
1255 int action,
1256 int start,
1257 int dir, /* FORWARD or BACKWARD */
1258 int count, /* buffer number or number of buffers */
1259 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260{
1261 buf_T *buf;
1262 buf_T *bp;
1263 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1264 || action == DOBUF_WIPE);
1265
1266 switch (start)
1267 {
1268 case DOBUF_FIRST: buf = firstbuf; break;
1269 case DOBUF_LAST: buf = lastbuf; break;
1270 default: buf = curbuf; break;
1271 }
1272 if (start == DOBUF_MOD) /* find next modified buffer */
1273 {
1274 while (count-- > 0)
1275 {
1276 do
1277 {
1278 buf = buf->b_next;
1279 if (buf == NULL)
1280 buf = firstbuf;
1281 }
1282 while (buf != curbuf && !bufIsChanged(buf));
1283 }
1284 if (!bufIsChanged(buf))
1285 {
1286 EMSG(_("E84: No modified buffer found"));
1287 return FAIL;
1288 }
1289 }
1290 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1291 {
1292 while (buf != NULL && buf->b_fnum != count)
1293 buf = buf->b_next;
1294 }
1295 else
1296 {
1297 bp = NULL;
1298 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1299 {
1300 /* remember the buffer where we start, we come back there when all
1301 * buffers are unlisted. */
1302 if (bp == NULL)
1303 bp = buf;
1304 if (dir == FORWARD)
1305 {
1306 buf = buf->b_next;
1307 if (buf == NULL)
1308 buf = firstbuf;
1309 }
1310 else
1311 {
1312 buf = buf->b_prev;
1313 if (buf == NULL)
1314 buf = lastbuf;
1315 }
1316 /* don't count unlisted buffers */
1317 if (unload || buf->b_p_bl)
1318 {
1319 --count;
1320 bp = NULL; /* use this buffer as new starting point */
1321 }
1322 if (bp == buf)
1323 {
1324 /* back where we started, didn't find anything. */
1325 EMSG(_("E85: There is no listed buffer"));
1326 return FAIL;
1327 }
1328 }
1329 }
1330
1331 if (buf == NULL) /* could not find it */
1332 {
1333 if (start == DOBUF_FIRST)
1334 {
1335 /* don't warn when deleting */
1336 if (!unload)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01001337 EMSGN(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 }
1339 else if (dir == FORWARD)
1340 EMSG(_("E87: Cannot go beyond last buffer"));
1341 else
1342 EMSG(_("E88: Cannot go before first buffer"));
1343 return FAIL;
1344 }
1345
1346#ifdef FEAT_GUI
1347 need_mouse_correct = TRUE;
1348#endif
1349
1350#ifdef FEAT_LISTCMDS
1351 /*
1352 * delete buffer buf from memory and/or the list
1353 */
1354 if (unload)
1355 {
1356 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001357# if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS)
1358 bufref_T bufref;
1359
1360 set_bufref(&bufref, buf);
1361# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362
1363 /* When unloading or deleting a buffer that's already unloaded and
1364 * unlisted: fail silently. */
1365 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1366 return FAIL;
1367
1368 if (!forceit && bufIsChanged(buf))
1369 {
1370#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1371 if ((p_confirm || cmdmod.confirm) && p_write)
1372 {
1373 dialog_changed(buf, FALSE);
1374# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001375 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 /* Autocommand deleted buffer, oops! It's not changed
1377 * now. */
1378 return FAIL;
1379# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001380 /* If it's still changed fail silently, the dialog already
1381 * mentioned why it fails. */
1382 if (bufIsChanged(buf))
1383 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001385 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386#endif
1387 {
1388 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1389 buf->b_fnum);
1390 return FAIL;
1391 }
1392 }
1393
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001394 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001395 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001396 end_visual_mode();
1397
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 /*
1399 * If deleting the last (listed) buffer, make it empty.
1400 * The last (listed) buffer cannot be unloaded.
1401 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001402 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 if (bp->b_p_bl && bp != buf)
1404 break;
1405 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001406 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407
1408#ifdef FEAT_WINDOWS
1409 /*
1410 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001411 * (unless it's the only window). Repeat this so long as we end up in
1412 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001414 while (buf == curbuf
Bram Moolenaar362ce482012-06-06 19:02:45 +02001415# ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001416 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02001417# endif
Bram Moolenaar459ca562016-11-10 18:16:33 +01001418 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001419 {
1420 if (win_close(curwin, FALSE) == FAIL)
1421 break;
1422 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423#endif
1424
1425 /*
1426 * If the buffer to be deleted is not the current one, delete it here.
1427 */
1428 if (buf != curbuf)
1429 {
1430#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00001431 close_windows(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001432 if (buf != curbuf && bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433#endif
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001434 if (buf->b_nwindows <= 0)
1435 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 return OK;
1437 }
1438
1439 /*
1440 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001441 * There should be another, otherwise it would have been handled
1442 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001443 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 * Then prefer the buffer we most recently visited.
1445 * Else try to find one that is loaded, after the current buffer,
1446 * then before the current buffer.
1447 * Finally use any buffer.
1448 */
1449 buf = NULL; /* selected buffer */
1450 bp = NULL; /* used when no loaded buffer found */
1451#ifdef FEAT_AUTOCMD
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001452 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1453 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454# ifdef FEAT_JUMPLIST
1455 else
1456# endif
1457#endif
1458#ifdef FEAT_JUMPLIST
1459 if (curwin->w_jumplistlen > 0)
1460 {
1461 int jumpidx;
1462
1463 jumpidx = curwin->w_jumplistidx - 1;
1464 if (jumpidx < 0)
1465 jumpidx = curwin->w_jumplistlen - 1;
1466
1467 forward = jumpidx;
1468 while (jumpidx != curwin->w_jumplistidx)
1469 {
1470 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1471 if (buf != NULL)
1472 {
1473 if (buf == curbuf || !buf->b_p_bl)
1474 buf = NULL; /* skip current and unlisted bufs */
1475 else if (buf->b_ml.ml_mfp == NULL)
1476 {
1477 /* skip unloaded buf, but may keep it for later */
1478 if (bp == NULL)
1479 bp = buf;
1480 buf = NULL;
1481 }
1482 }
1483 if (buf != NULL) /* found a valid buffer: stop searching */
1484 break;
1485 /* advance to older entry in jump list */
1486 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1487 break;
1488 if (--jumpidx < 0)
1489 jumpidx = curwin->w_jumplistlen - 1;
1490 if (jumpidx == forward) /* List exhausted for sure */
1491 break;
1492 }
1493 }
1494#endif
1495
1496 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1497 {
1498 forward = TRUE;
1499 buf = curbuf->b_next;
1500 for (;;)
1501 {
1502 if (buf == NULL)
1503 {
1504 if (!forward) /* tried both directions */
1505 break;
1506 buf = curbuf->b_prev;
1507 forward = FALSE;
1508 continue;
1509 }
1510 /* in non-help buffer, try to skip help buffers, and vv */
1511 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1512 {
1513 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1514 break;
1515 if (bp == NULL) /* remember unloaded buf for later */
1516 bp = buf;
1517 }
1518 if (forward)
1519 buf = buf->b_next;
1520 else
1521 buf = buf->b_prev;
1522 }
1523 }
1524 if (buf == NULL) /* No loaded buffer, use unloaded one */
1525 buf = bp;
1526 if (buf == NULL) /* No loaded buffer, find listed one */
1527 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001528 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 if (buf->b_p_bl && buf != curbuf)
1530 break;
1531 }
1532 if (buf == NULL) /* Still no buffer, just take one */
1533 {
1534 if (curbuf->b_next != NULL)
1535 buf = curbuf->b_next;
1536 else
1537 buf = curbuf->b_prev;
1538 }
1539 }
1540
Bram Moolenaara02471e2014-01-10 16:43:14 +01001541 if (buf == NULL)
1542 {
1543 /* Autocommands must have wiped out all other buffers. Only option
1544 * now is to make the current buffer empty. */
1545 return empty_curbuf(FALSE, forceit, action);
1546 }
1547
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 /*
1549 * make buf current buffer
1550 */
1551 if (action == DOBUF_SPLIT) /* split window first */
1552 {
1553# ifdef FEAT_WINDOWS
Bram Moolenaarf2330482008-06-24 20:19:36 +00001554 /* If 'switchbuf' contains "useopen": jump to first window containing
1555 * "buf" if one exists */
1556 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001557 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001558 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001559 * page containing "buf" if one exists */
1560 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 return OK;
1562 if (win_split(0, 0) == FAIL)
1563# endif
1564 return FAIL;
1565 }
1566#endif
1567
1568 /* go to current buffer - nothing to do */
1569 if (buf == curbuf)
1570 return OK;
1571
1572 /*
1573 * Check if the current buffer may be abandoned.
1574 */
1575 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1576 {
1577#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1578 if ((p_confirm || cmdmod.confirm) && p_write)
1579 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001580# ifdef FEAT_AUTOCMD
1581 bufref_T bufref;
1582
1583 set_bufref(&bufref, buf);
1584# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 dialog_changed(curbuf, FALSE);
1586# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001587 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 /* Autocommand deleted buffer, oops! */
1589 return FAIL;
1590# endif
1591 }
1592 if (bufIsChanged(curbuf))
1593#endif
1594 {
1595 EMSG(_(e_nowrtmsg));
1596 return FAIL;
1597 }
1598 }
1599
1600 /* Go to the other buffer. */
1601 set_curbuf(buf, action);
1602
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001603#if defined(FEAT_LISTCMDS) \
1604 && (defined(FEAT_SCROLLBIND) || defined(FEAT_CURSORBIND))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001606 {
1607 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609#endif
1610
1611#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1612 if (aborting()) /* autocmds may abort script processing */
1613 return FAIL;
1614#endif
1615
1616 return OK;
1617}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001618#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619
1620/*
1621 * Set current buffer to "buf". Executes autocommands and closes current
1622 * buffer. "action" tells how to close the current buffer:
1623 * DOBUF_GOTO free or hide it
1624 * DOBUF_SPLIT nothing
1625 * DOBUF_UNLOAD unload it
1626 * DOBUF_DEL delete it
1627 * DOBUF_WIPE wipe it out
1628 */
1629 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001630set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631{
1632 buf_T *prevbuf;
1633 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1634 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001635#ifdef FEAT_SYN_HL
1636 long old_tw = curbuf->b_p_tw;
1637#endif
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001638 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639
1640 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001641 if (!cmdmod.keepalt)
1642 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001643 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 /* Don't restart Select mode after switching to another buffer. */
1646 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
1648 /* close_windows() or apply_autocmds() may change curbuf */
1649 prevbuf = curbuf;
Bram Moolenaar453f37d2016-07-10 18:33:59 +02001650 set_bufref(&bufref, prevbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651
1652#ifdef FEAT_AUTOCMD
Bram Moolenaar82404332016-07-10 17:00:38 +02001653 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654# ifdef FEAT_EVAL
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001655 || (bufref_valid(&bufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656# else
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001657 || bufref_valid(&bufref)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658# endif
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001659 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660#endif
1661 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001662#ifdef FEAT_SYN_HL
1663 if (prevbuf == curwin->w_buffer)
1664 reset_synblock(curwin);
1665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666#ifdef FEAT_WINDOWS
1667 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001668 close_windows(prevbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669#endif
1670#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001671 if (bufref_valid(&bufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672#else
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001673 if (bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001675 {
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001676#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001677 win_T *previouswin = curwin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001678#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001679 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001680 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1682 unload ? action : (action == DOBUF_GOTO
1683 && !P_HID(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001684 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001685#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001686 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001687 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001688 curwin = previouswin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001689#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001690 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 }
1692#ifdef FEAT_AUTOCMD
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001693 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001694 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001695 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1696 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001697# ifdef FEAT_EVAL
Bram Moolenaar9e931222012-06-20 11:55:01 +02001698 && !aborting()
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001699# endif
1700# ifdef FEAT_WINDOWS
Bram Moolenaar9e931222012-06-20 11:55:01 +02001701 ) || curwin->w_buffer == NULL
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001702# endif
Bram Moolenaar9e931222012-06-20 11:55:01 +02001703 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001705 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001707#ifdef FEAT_SYN_HL
1708 if (old_tw != curbuf->b_p_tw)
1709 check_colorcolumn(curwin);
1710#endif
1711 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712}
1713
1714/*
1715 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001716 * Old curbuf must have been abandoned already! This also means "curbuf" may
1717 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 */
1719 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001720enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721{
1722 /* Copy buffer and window local option values. Not for a help buffer. */
1723 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1724 if (!buf->b_help)
1725 get_winopts(buf);
1726#ifdef FEAT_FOLDING
1727 else
1728 /* Remove all folds in the window. */
1729 clearFolding(curwin);
1730 foldUpdateAll(curwin); /* update folds (later). */
1731#endif
1732
1733 /* Get the buffer in the current window. */
1734 curwin->w_buffer = buf;
1735 curbuf = buf;
1736 ++curbuf->b_nwindows;
1737
1738#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001739 if (curwin->w_p_diff)
1740 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741#endif
1742
Bram Moolenaara971b822011-09-14 14:43:25 +02001743#ifdef FEAT_SYN_HL
1744 curwin->w_s = &(buf->b_s);
1745#endif
1746
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 /* Cursor on first line by default. */
1748 curwin->w_cursor.lnum = 1;
1749 curwin->w_cursor.col = 0;
1750#ifdef FEAT_VIRTUALEDIT
1751 curwin->w_cursor.coladd = 0;
1752#endif
1753 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001754#ifdef FEAT_AUTOCMD
1755 curwin->w_topline_was_set = FALSE;
1756#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001758 /* mark cursor position as being invalid */
1759 curwin->w_valid = 0;
1760
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 /* Make sure the buffer is loaded. */
1762 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001763 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001764#ifdef FEAT_AUTOCMD
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001765 /* If there is no filetype, allow for detecting one. Esp. useful for
1766 * ":ball" used in a autocommand. If there already is a filetype we
1767 * might prefer to keep it. */
1768 if (*curbuf->b_p_ft == NUL)
1769 did_filetype = FALSE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001770#endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001771
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001772 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001773 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 else
1775 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001776 if (!msg_silent)
1777 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1779#ifdef FEAT_AUTOCMD
1780 curwin->w_topline = 1;
1781# ifdef FEAT_DIFF
1782 curwin->w_topfill = 0;
1783# endif
1784 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1785 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1786#endif
1787 }
1788
1789 /* If autocommands did not change the cursor position, restore cursor lnum
1790 * and possibly cursor col. */
1791 if (curwin->w_cursor.lnum == 1 && inindent(0))
1792 buflist_getfpos();
1793
1794 check_arg_idx(curwin); /* check for valid arg_idx */
1795#ifdef FEAT_TITLE
1796 maketitle();
1797#endif
1798#ifdef FEAT_AUTOCMD
Bram Moolenaard4153d42008-11-15 15:06:17 +00001799 /* when autocmds didn't change it */
1800 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801#endif
1802 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1803
Bram Moolenaar009b2592004-10-24 19:18:58 +00001804#ifdef FEAT_NETBEANS_INTG
1805 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001806 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001807#endif
1808
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001809 /* Change directories when the 'acd' option is set. */
1810 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811
1812#ifdef FEAT_KEYMAP
1813 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001814 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001816#ifdef FEAT_SPELL
1817 /* May need to set the spell language. Can only do this after the buffer
1818 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001819 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1820 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001821#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001822#ifdef FEAT_VIMINFO
1823 curbuf->b_last_used = vim_time();
1824#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001825
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 redraw_later(NOT_VALID);
1827}
1828
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001829#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1830/*
1831 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001832 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001833 */
1834 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001835do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001836{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001837 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001838 && curbuf->b_ffname != NULL
1839 && vim_chdirfile(curbuf->b_ffname) == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001840 shorten_fnames(TRUE);
1841}
1842#endif
1843
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844/*
1845 * functions for dealing with the buffer list
1846 */
1847
Bram Moolenaar480778b2016-07-14 22:09:39 +02001848static int top_file_num = 1; /* highest file number */
1849
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850/*
1851 * Add a file name to the buffer list. Return a pointer to the buffer.
1852 * If the same file name already exists return a pointer to that buffer.
1853 * If it does not exist, or if fname == NULL, a new entry is created.
1854 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1855 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1856 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001857 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001858 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1859 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 * This is the ONLY way to create a new buffer.
1861 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001863buflist_new(
1864 char_u *ffname, /* full path of fname or relative */
1865 char_u *sfname, /* short fname or NULL */
1866 linenr_T lnum, /* preferred cursor line */
1867 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868{
1869 buf_T *buf;
1870#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001871 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872#endif
1873
Bram Moolenaar480778b2016-07-14 22:09:39 +02001874 if (top_file_num == 1)
1875 hash_init(&buf_hashtab);
1876
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1878
1879 /*
1880 * If file name already exists in the list, update the entry.
1881 */
1882#ifdef UNIX
1883 /* On Unix we can use inode numbers when the file exists. Works better
1884 * for hard links. */
1885 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1886 st.st_dev = (dev_T)-1;
1887#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001888 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889#ifdef UNIX
1890 buflist_findname_stat(ffname, &st)
1891#else
1892 buflist_findname(ffname)
1893#endif
1894 ) != NULL)
1895 {
1896 vim_free(ffname);
1897 if (lnum != 0)
1898 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001899
1900 if ((flags & BLN_NOOPT) == 0)
1901 /* copy the options now, if 'cpo' doesn't have 's' and not done
1902 * already */
1903 buf_copy_options(buf, 0);
1904
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1906 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001907#ifdef FEAT_AUTOCMD
1908 bufref_T bufref;
1909#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 buf->b_p_bl = TRUE;
1911#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001912 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001914 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001915 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001916 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001917 return NULL;
1918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919#endif
1920 }
1921 return buf;
1922 }
1923
1924 /*
1925 * If the current buffer has no name and no contents, use the current
1926 * buffer. Otherwise: Need to allocate a new buffer structure.
1927 *
1928 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001929 * (A spell file buffer is allocated in spell.c, but that's not a normal
1930 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 */
1932 buf = NULL;
1933 if ((flags & BLN_CURBUF)
1934 && curbuf != NULL
1935 && curbuf->b_ffname == NULL
1936 && curbuf->b_nwindows <= 1
1937 && (curbuf->b_ml.ml_mfp == NULL || bufempty()))
1938 {
1939 buf = curbuf;
1940#ifdef FEAT_AUTOCMD
1941 /* It's like this buffer is deleted. Watch out for autocommands that
1942 * change curbuf! If that happens, allocate a new buffer anyway. */
1943 if (curbuf->b_p_bl)
1944 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1945 if (buf == curbuf)
1946 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
1947# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001948 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 return NULL;
1950# endif
1951#endif
1952#ifdef FEAT_QUICKFIX
1953# ifdef FEAT_AUTOCMD
1954 if (buf == curbuf)
1955# endif
1956 {
1957 /* Make sure 'bufhidden' and 'buftype' are empty */
1958 clear_string_option(&buf->b_p_bh);
1959 clear_string_option(&buf->b_p_bt);
1960 }
1961#endif
1962 }
1963 if (buf != curbuf || curbuf == NULL)
1964 {
1965 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1966 if (buf == NULL)
1967 {
1968 vim_free(ffname);
1969 return NULL;
1970 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001971#ifdef FEAT_EVAL
1972 /* init b: variables */
1973 buf->b_vars = dict_alloc();
1974 if (buf->b_vars == NULL)
1975 {
1976 vim_free(ffname);
1977 vim_free(buf);
1978 return NULL;
1979 }
1980 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1981#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 }
1983
1984 if (ffname != NULL)
1985 {
1986 buf->b_ffname = ffname;
1987 buf->b_sfname = vim_strsave(sfname);
1988 }
1989
1990 clear_wininfo(buf);
1991 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1992
1993 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1994 || buf->b_wininfo == NULL)
1995 {
1996 vim_free(buf->b_ffname);
1997 buf->b_ffname = NULL;
1998 vim_free(buf->b_sfname);
1999 buf->b_sfname = NULL;
2000 if (buf != curbuf)
2001 free_buffer(buf);
2002 return NULL;
2003 }
2004
2005 if (buf == curbuf)
2006 {
2007 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002008 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 if (buf != curbuf) /* autocommands deleted the buffer! */
2010 return NULL;
2011#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002012 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 return NULL;
2014#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002016
2017 /* Init the options. */
2018 buf->b_p_initialized = FALSE;
2019 buf_copy_options(buf, BCO_ENTER);
2020
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021#ifdef FEAT_KEYMAP
2022 /* need to reload lmaps and set b:keymap_name */
2023 curbuf->b_kmap_state |= KEYMAP_INIT;
2024#endif
2025 }
2026 else
2027 {
2028 /*
2029 * put new buffer at the end of the buffer list
2030 */
2031 buf->b_next = NULL;
2032 if (firstbuf == NULL) /* buffer list is empty */
2033 {
2034 buf->b_prev = NULL;
2035 firstbuf = buf;
2036 }
2037 else /* append new buffer at end of list */
2038 {
2039 lastbuf->b_next = buf;
2040 buf->b_prev = lastbuf;
2041 }
2042 lastbuf = buf;
2043
2044 buf->b_fnum = top_file_num++;
2045 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2046 {
2047 EMSG(_("W14: Warning: List of file names overflow"));
2048 if (emsg_silent == 0)
2049 {
2050 out_flush();
2051 ui_delay(3000L, TRUE); /* make sure it is noticed */
2052 }
2053 top_file_num = 1;
2054 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002055 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056
2057 /*
2058 * Always copy the options from the current buffer.
2059 */
2060 buf_copy_options(buf, BCO_ALWAYS);
2061 }
2062
2063 buf->b_wininfo->wi_fpos.lnum = lnum;
2064 buf->b_wininfo->wi_win = curwin;
2065
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002066#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002067 hash_init(&buf->b_s.b_keywtab);
2068 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069#endif
2070
2071 buf->b_fname = buf->b_sfname;
2072#ifdef UNIX
2073 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002074 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 else
2076 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002077 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 buf->b_dev = st.st_dev;
2079 buf->b_ino = st.st_ino;
2080 }
2081#endif
2082 buf->b_u_synced = TRUE;
2083 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002084 if (flags & BLN_DUMMY)
2085 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 buf_clear_file(buf);
2087 clrallmarks(buf); /* clear marks */
2088 fmarks_check_names(buf); /* check file marks for this file */
2089 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
2090#ifdef FEAT_AUTOCMD
2091 if (!(flags & BLN_DUMMY))
2092 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002093 bufref_T bufref;
2094
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002095 /* Tricky: these autocommands may change the buffer list. They could
2096 * also split the window with re-using the one empty buffer. This may
2097 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002098 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002099 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002100 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002101 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002103 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002104 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002105 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002106 return NULL;
2107 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002109 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 return NULL;
2111# endif
2112 }
2113#endif
2114
2115 return buf;
2116}
2117
2118/*
2119 * Free the memory for the options of a buffer.
2120 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2121 * 'fileencoding'.
2122 */
2123 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002124free_buf_options(
2125 buf_T *buf,
2126 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127{
2128 if (free_p_ff)
2129 {
2130#ifdef FEAT_MBYTE
2131 clear_string_option(&buf->b_p_fenc);
2132#endif
2133 clear_string_option(&buf->b_p_ff);
2134#ifdef FEAT_QUICKFIX
2135 clear_string_option(&buf->b_p_bh);
2136 clear_string_option(&buf->b_p_bt);
2137#endif
2138 }
2139#ifdef FEAT_FIND_ID
2140 clear_string_option(&buf->b_p_def);
2141 clear_string_option(&buf->b_p_inc);
2142# ifdef FEAT_EVAL
2143 clear_string_option(&buf->b_p_inex);
2144# endif
2145#endif
2146#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2147 clear_string_option(&buf->b_p_inde);
2148 clear_string_option(&buf->b_p_indk);
2149#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002150#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2151 clear_string_option(&buf->b_p_bexpr);
2152#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002153#if defined(FEAT_CRYPT)
2154 clear_string_option(&buf->b_p_cm);
2155#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002156#if defined(FEAT_EVAL)
2157 clear_string_option(&buf->b_p_fex);
2158#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159#ifdef FEAT_CRYPT
2160 clear_string_option(&buf->b_p_key);
2161#endif
2162 clear_string_option(&buf->b_p_kp);
2163 clear_string_option(&buf->b_p_mps);
2164 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002165 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 clear_string_option(&buf->b_p_isk);
2167#ifdef FEAT_KEYMAP
2168 clear_string_option(&buf->b_p_keymap);
2169 ga_clear(&buf->b_kmap_ga);
2170#endif
2171#ifdef FEAT_COMMENTS
2172 clear_string_option(&buf->b_p_com);
2173#endif
2174#ifdef FEAT_FOLDING
2175 clear_string_option(&buf->b_p_cms);
2176#endif
2177 clear_string_option(&buf->b_p_nf);
2178#ifdef FEAT_SYN_HL
2179 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002180 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002181#endif
2182#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002183 clear_string_option(&buf->b_s.b_p_spc);
2184 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002185 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002186 buf->b_s.b_cap_prog = NULL;
2187 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188#endif
2189#ifdef FEAT_SEARCHPATH
2190 clear_string_option(&buf->b_p_sua);
2191#endif
2192#ifdef FEAT_AUTOCMD
2193 clear_string_option(&buf->b_p_ft);
2194#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195#ifdef FEAT_CINDENT
2196 clear_string_option(&buf->b_p_cink);
2197 clear_string_option(&buf->b_p_cino);
2198#endif
2199#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2200 clear_string_option(&buf->b_p_cinw);
2201#endif
2202#ifdef FEAT_INS_EXPAND
2203 clear_string_option(&buf->b_p_cpt);
2204#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002205#ifdef FEAT_COMPL_FUNC
2206 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002207 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002208#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209#ifdef FEAT_QUICKFIX
2210 clear_string_option(&buf->b_p_gp);
2211 clear_string_option(&buf->b_p_mp);
2212 clear_string_option(&buf->b_p_efm);
2213#endif
2214 clear_string_option(&buf->b_p_ep);
2215 clear_string_option(&buf->b_p_path);
2216 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002217 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218#ifdef FEAT_INS_EXPAND
2219 clear_string_option(&buf->b_p_dict);
2220 clear_string_option(&buf->b_p_tsr);
2221#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002222#ifdef FEAT_TEXTOBJ
2223 clear_string_option(&buf->b_p_qe);
2224#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002226 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002227#ifdef FEAT_LISP
2228 clear_string_option(&buf->b_p_lw);
2229#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002230 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231}
2232
2233/*
2234 * get alternate file n
2235 * set linenr to lnum or altfpos.lnum if lnum == 0
2236 * also set cursor column to altfpos.col if 'startofline' is not set.
2237 * if (options & GETF_SETMARK) call setpcmark()
2238 * if (options & GETF_ALT) we are jumping to an alternate file.
2239 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2240 *
2241 * return FAIL for failure, OK for success
2242 */
2243 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002244buflist_getfile(
2245 int n,
2246 linenr_T lnum,
2247 int options,
2248 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249{
2250 buf_T *buf;
2251#ifdef FEAT_WINDOWS
2252 win_T *wp = NULL;
2253#endif
2254 pos_T *fpos;
2255 colnr_T col;
2256
2257 buf = buflist_findnr(n);
2258 if (buf == NULL)
2259 {
2260 if ((options & GETF_ALT) && n == 0)
2261 EMSG(_(e_noalt));
2262 else
2263 EMSGN(_("E92: Buffer %ld not found"), n);
2264 return FAIL;
2265 }
2266
2267 /* if alternate file is the current buffer, nothing to do */
2268 if (buf == curbuf)
2269 return OK;
2270
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002271 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002272 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002273 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002275 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002276#ifdef FEAT_AUTOCMD
2277 if (curbuf_locked())
2278 return FAIL;
2279#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280
2281 /* altfpos may be changed by getfile(), get it now */
2282 if (lnum == 0)
2283 {
2284 fpos = buflist_findfpos(buf);
2285 lnum = fpos->lnum;
2286 col = fpos->col;
2287 }
2288 else
2289 col = 0;
2290
2291#ifdef FEAT_WINDOWS
2292 if (options & GETF_SWITCH)
2293 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002294 /* If 'switchbuf' contains "useopen": jump to first window containing
2295 * "buf" if one exists */
2296 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002298
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002299 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002300 * page containing "buf" if one exists */
2301 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002302 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002303
2304 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2305 * current buffer isn't empty: open new tab or window */
2306 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
2307 && !bufempty())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002309 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002310 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002311 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2312 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002314 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 }
2316 }
2317#endif
2318
2319 ++RedrawingDisabled;
2320 if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK),
2321 lnum, forceit) <= 0)
2322 {
2323 --RedrawingDisabled;
2324
2325 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2326 if (!p_sol && col != 0)
2327 {
2328 curwin->w_cursor.col = col;
2329 check_cursor_col();
2330#ifdef FEAT_VIRTUALEDIT
2331 curwin->w_cursor.coladd = 0;
2332#endif
2333 curwin->w_set_curswant = TRUE;
2334 }
2335 return OK;
2336 }
2337 --RedrawingDisabled;
2338 return FAIL;
2339}
2340
2341/*
2342 * go to the last know line number for the current buffer
2343 */
2344 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002345buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346{
2347 pos_T *fpos;
2348
2349 fpos = buflist_findfpos(curbuf);
2350
2351 curwin->w_cursor.lnum = fpos->lnum;
2352 check_cursor_lnum();
2353
2354 if (p_sol)
2355 curwin->w_cursor.col = 0;
2356 else
2357 {
2358 curwin->w_cursor.col = fpos->col;
2359 check_cursor_col();
2360#ifdef FEAT_VIRTUALEDIT
2361 curwin->w_cursor.coladd = 0;
2362#endif
2363 curwin->w_set_curswant = TRUE;
2364 }
2365}
2366
Bram Moolenaar81695252004-12-29 20:58:21 +00002367#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2368/*
2369 * Find file in buffer list by name (it has to be for the current window).
2370 * Returns NULL if not found.
2371 */
2372 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002373buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002374{
2375 char_u *ffname;
2376 buf_T *buf = NULL;
2377
2378 /* First make the name into a full path name */
2379 ffname = FullName_save(fname,
2380#ifdef UNIX
2381 TRUE /* force expansion, get rid of symbolic links */
2382#else
2383 FALSE
2384#endif
2385 );
2386 if (ffname != NULL)
2387 {
2388 buf = buflist_findname(ffname);
2389 vim_free(ffname);
2390 }
2391 return buf;
2392}
2393#endif
2394
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395/*
2396 * Find file in buffer list by name (it has to be for the current window).
2397 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002398 * Skips dummy buffers.
2399 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 */
2401 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002402buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403{
2404#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002405 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406
2407 if (mch_stat((char *)ffname, &st) < 0)
2408 st.st_dev = (dev_T)-1;
2409 return buflist_findname_stat(ffname, &st);
2410}
2411
2412/*
2413 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2414 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002415 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 */
2417 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002418buflist_findname_stat(
2419 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002420 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421{
2422#endif
2423 buf_T *buf;
2424
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002425 /* Start at the last buffer, expect to find a match sooner. */
2426 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002427 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428#ifdef UNIX
2429 , stp
2430#endif
2431 ))
2432 return buf;
2433 return NULL;
2434}
2435
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002436#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
2437 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438/*
2439 * Find file in buffer list by a regexp pattern.
2440 * Return fnum of the found buffer.
2441 * Return < 0 for error.
2442 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002444buflist_findpat(
2445 char_u *pattern,
2446 char_u *pattern_end, /* pointer to first char after pattern */
2447 int unlisted, /* find unlisted buffers */
2448 int diffmode UNUSED, /* find diff-mode buffers only */
2449 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450{
2451 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 int match = -1;
2453 int find_listed;
2454 char_u *pat;
2455 char_u *patend;
2456 int attempt;
2457 char_u *p;
2458 int toggledollar;
2459
2460 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2461 {
2462 if (*pattern == '%')
2463 match = curbuf->b_fnum;
2464 else
2465 match = curwin->w_alt_fnum;
2466#ifdef FEAT_DIFF
2467 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2468 match = -1;
2469#endif
2470 }
2471
2472 /*
2473 * Try four ways of matching a listed buffer:
2474 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002475 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 * attempt == 2: with '$' at end (only match at end)
2477 * attempt == 3: with '^' at start and '$' at end (only full match)
2478 * Repeat this for finding an unlisted buffer if there was no matching
2479 * listed buffer.
2480 */
2481 else
2482 {
2483 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2484 if (pat == NULL)
2485 return -1;
2486 patend = pat + STRLEN(pat) - 1;
2487 toggledollar = (patend > pat && *patend == '$');
2488
2489 /* First try finding a listed buffer. If not found and "unlisted"
2490 * is TRUE, try finding an unlisted buffer. */
2491 find_listed = TRUE;
2492 for (;;)
2493 {
2494 for (attempt = 0; attempt <= 3; ++attempt)
2495 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002496 regmatch_T regmatch;
2497
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 /* may add '^' and '$' */
2499 if (toggledollar)
2500 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2501 p = pat;
2502 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2503 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002504 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2505 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 {
2507 vim_free(pat);
2508 return -1;
2509 }
2510
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002511 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 if (buf->b_p_bl == find_listed
2513#ifdef FEAT_DIFF
2514 && (!diffmode || diff_mode_buf(buf))
2515#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002516 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002518 if (curtab_only)
2519 {
2520 /* Ignore the match if the buffer is not open in
2521 * the current tab. */
2522#ifdef FEAT_WINDOWS
2523 win_T *wp;
2524
Bram Moolenaar29323592016-07-24 22:04:11 +02002525 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002526 if (wp->w_buffer == buf)
2527 break;
2528 if (wp == NULL)
2529 continue;
2530#else
2531 if (curwin->w_buffer != buf)
2532 continue;
2533#endif
2534 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 if (match >= 0) /* already found a match */
2536 {
2537 match = -2;
2538 break;
2539 }
2540 match = buf->b_fnum; /* remember first match */
2541 }
2542
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002543 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 if (match >= 0) /* found one match */
2545 break;
2546 }
2547
2548 /* Only search for unlisted buffers if there was no match with
2549 * a listed buffer. */
2550 if (!unlisted || !find_listed || match != -1)
2551 break;
2552 find_listed = FALSE;
2553 }
2554
2555 vim_free(pat);
2556 }
2557
2558 if (match == -2)
2559 EMSG2(_("E93: More than one match for %s"), pattern);
2560 else if (match < 0)
2561 EMSG2(_("E94: No matching buffer for %s"), pattern);
2562 return match;
2563}
2564#endif
2565
2566#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2567
2568/*
2569 * Find all buffer names that match.
2570 * For command line expansion of ":buf" and ":sbuf".
2571 * Return OK if matches found, FAIL otherwise.
2572 */
2573 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002574ExpandBufnames(
2575 char_u *pat,
2576 int *num_file,
2577 char_u ***file,
2578 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579{
2580 int count = 0;
2581 buf_T *buf;
2582 int round;
2583 char_u *p;
2584 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002585 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586
2587 *num_file = 0; /* return values in case of FAIL */
2588 *file = NULL;
2589
Bram Moolenaar05159a02005-02-26 23:04:13 +00002590 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2591 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002593 patc = alloc((unsigned)STRLEN(pat) + 11);
2594 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002596 STRCPY(patc, "\\(^\\|[\\/]\\)");
2597 STRCPY(patc + 11, pat + 1);
2598 }
2599 else
2600 patc = pat;
2601
2602 /*
2603 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002604 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002605 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002606 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002607 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002608 regmatch_T regmatch;
2609
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002610 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002611 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002612 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2613 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002614 {
2615 if (patc != pat)
2616 vim_free(patc);
2617 return FAIL;
2618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619
2620 /*
2621 * round == 1: Count the matches.
2622 * round == 2: Build the array to keep the matches.
2623 */
2624 for (round = 1; round <= 2; ++round)
2625 {
2626 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002627 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 {
2629 if (!buf->b_p_bl) /* skip unlisted buffers */
2630 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002631 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 if (p != NULL)
2633 {
2634 if (round == 1)
2635 ++count;
2636 else
2637 {
2638 if (options & WILD_HOME_REPLACE)
2639 p = home_replace_save(buf, p);
2640 else
2641 p = vim_strsave(p);
2642 (*file)[count++] = p;
2643 }
2644 }
2645 }
2646 if (count == 0) /* no match found, break here */
2647 break;
2648 if (round == 1)
2649 {
2650 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2651 if (*file == NULL)
2652 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002653 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002654 if (patc != pat)
2655 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 return FAIL;
2657 }
2658 }
2659 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002660 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 if (count) /* match(es) found, break here */
2662 break;
2663 }
2664
Bram Moolenaar05159a02005-02-26 23:04:13 +00002665 if (patc != pat)
2666 vim_free(patc);
2667
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 *num_file = count;
2669 return (count == 0 ? FAIL : OK);
2670}
2671
2672#endif /* FEAT_CMDL_COMPL */
2673
2674#ifdef HAVE_BUFLIST_MATCH
2675/*
2676 * Check for a match on the file name for buffer "buf" with regprog "prog".
2677 */
2678 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002679buflist_match(
2680 regmatch_T *rmp,
2681 buf_T *buf,
2682 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683{
2684 char_u *match;
2685
2686 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002687 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002689 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690
2691 return match;
2692}
2693
2694/*
2695 * Try matching the regexp in "prog" with file name "name".
2696 * Return "name" when there is a match, NULL when not.
2697 */
2698 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002699fname_match(
2700 regmatch_T *rmp,
2701 char_u *name,
2702 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703{
2704 char_u *match = NULL;
2705 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706
2707 if (name != NULL)
2708 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002709 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002710 rmp->rm_ic = p_fic || ignore_case;
2711 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 match = name;
2713 else
2714 {
2715 /* Replace $(HOME) with '~' and try matching again. */
2716 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002717 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 match = name;
2719 vim_free(p);
2720 }
2721 }
2722
2723 return match;
2724}
2725#endif
2726
2727/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002728 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 */
2730 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002731buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002733 char_u key[VIM_SIZEOF_INT * 2 + 1];
2734 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735
2736 if (nr == 0)
2737 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002738 sprintf((char *)key, "%x", nr);
2739 hi = hash_find(&buf_hashtab, key);
2740
2741 if (!HASHITEM_EMPTY(hi))
2742 return (buf_T *)(hi->hi_key
2743 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 return NULL;
2745}
2746
2747/*
2748 * Get name of file 'n' in the buffer list.
2749 * When the file has no name an empty string is returned.
2750 * home_replace() is used to shorten the file name (used for marks).
2751 * Returns a pointer to allocated memory, of NULL when failed.
2752 */
2753 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002754buflist_nr2name(
2755 int n,
2756 int fullname,
2757 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758{
2759 buf_T *buf;
2760
2761 buf = buflist_findnr(n);
2762 if (buf == NULL)
2763 return NULL;
2764 return home_replace_save(helptail ? buf : NULL,
2765 fullname ? buf->b_ffname : buf->b_fname);
2766}
2767
2768/*
2769 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2770 * When "copy_options" is TRUE save the local window option values.
2771 * When "lnum" is 0 only do the options.
2772 */
2773 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002774buflist_setfpos(
2775 buf_T *buf,
2776 win_T *win,
2777 linenr_T lnum,
2778 colnr_T col,
2779 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780{
2781 wininfo_T *wip;
2782
2783 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2784 if (wip->wi_win == win)
2785 break;
2786 if (wip == NULL)
2787 {
2788 /* allocate a new entry */
2789 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2790 if (wip == NULL)
2791 return;
2792 wip->wi_win = win;
2793 if (lnum == 0) /* set lnum even when it's 0 */
2794 lnum = 1;
2795 }
2796 else
2797 {
2798 /* remove the entry from the list */
2799 if (wip->wi_prev)
2800 wip->wi_prev->wi_next = wip->wi_next;
2801 else
2802 buf->b_wininfo = wip->wi_next;
2803 if (wip->wi_next)
2804 wip->wi_next->wi_prev = wip->wi_prev;
2805 if (copy_options && wip->wi_optset)
2806 {
2807 clear_winopt(&wip->wi_opt);
2808#ifdef FEAT_FOLDING
2809 deleteFoldRecurse(&wip->wi_folds);
2810#endif
2811 }
2812 }
2813 if (lnum != 0)
2814 {
2815 wip->wi_fpos.lnum = lnum;
2816 wip->wi_fpos.col = col;
2817 }
2818 if (copy_options)
2819 {
2820 /* Save the window-specific option values. */
2821 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2822#ifdef FEAT_FOLDING
2823 wip->wi_fold_manual = win->w_fold_manual;
2824 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2825#endif
2826 wip->wi_optset = TRUE;
2827 }
2828
2829 /* insert the entry in front of the list */
2830 wip->wi_next = buf->b_wininfo;
2831 buf->b_wininfo = wip;
2832 wip->wi_prev = NULL;
2833 if (wip->wi_next)
2834 wip->wi_next->wi_prev = wip;
2835
2836 return;
2837}
2838
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002839#ifdef FEAT_DIFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01002840static int wininfo_other_tab_diff(wininfo_T *wip);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002841
2842/*
2843 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2844 * page. That's because a diff is local to a tab page.
2845 */
2846 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002847wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002848{
2849 win_T *wp;
2850
2851 if (wip->wi_opt.wo_diff)
2852 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002853 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002854 /* return FALSE when it's a window in the current tab page, thus
2855 * the buffer was in diff mode here */
2856 if (wip->wi_win == wp)
2857 return FALSE;
2858 return TRUE;
2859 }
2860 return FALSE;
2861}
2862#endif
2863
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864/*
2865 * Find info for the current window in buffer "buf".
2866 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002867 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2868 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 * Returns NULL when there isn't any info.
2870 */
2871 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002872find_wininfo(
2873 buf_T *buf,
2874 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875{
2876 wininfo_T *wip;
2877
2878 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002879 if (wip->wi_win == curwin
2880#ifdef FEAT_DIFF
2881 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2882#endif
2883 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002885
2886 /* If no wininfo for curwin, use the first in the list (that doesn't have
2887 * 'diff' set and is in another tab page). */
2888 if (wip == NULL)
2889 {
2890#ifdef FEAT_DIFF
2891 if (skip_diff_buffer)
2892 {
2893 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2894 if (!wininfo_other_tab_diff(wip))
2895 break;
2896 }
2897 else
2898#endif
2899 wip = buf->b_wininfo;
2900 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 return wip;
2902}
2903
2904/*
2905 * Reset the local window options to the values last used in this window.
2906 * If the buffer wasn't used in this window before, use the values from
2907 * the most recently used window. If the values were never set, use the
2908 * global values for the window.
2909 */
2910 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002911get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912{
2913 wininfo_T *wip;
2914
2915 clear_winopt(&curwin->w_onebuf_opt);
2916#ifdef FEAT_FOLDING
2917 clearFolding(curwin);
2918#endif
2919
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002920 wip = find_wininfo(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 if (wip != NULL && wip->wi_optset)
2922 {
2923 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2924#ifdef FEAT_FOLDING
2925 curwin->w_fold_manual = wip->wi_fold_manual;
2926 curwin->w_foldinvalid = TRUE;
2927 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2928#endif
2929 }
2930 else
2931 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2932
2933#ifdef FEAT_FOLDING
2934 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2935 if (p_fdls >= 0)
2936 curwin->w_p_fdl = p_fdls;
2937#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002938#ifdef FEAT_SYN_HL
2939 check_colorcolumn(curwin);
2940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941}
2942
2943/*
2944 * Find the position (lnum and col) for the buffer 'buf' for the current
2945 * window.
2946 * Returns a pointer to no_position if no position is found.
2947 */
2948 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002949buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950{
2951 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002952 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002954 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 if (wip != NULL)
2956 return &(wip->wi_fpos);
2957 else
2958 return &no_position;
2959}
2960
2961/*
2962 * Find the lnum for the buffer 'buf' for the current window.
2963 */
2964 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002965buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966{
2967 return buflist_findfpos(buf)->lnum;
2968}
2969
2970#if defined(FEAT_LISTCMDS) || defined(PROTO)
2971/*
2972 * List all know file names (for :files and :buffers command).
2973 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002975buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976{
2977 buf_T *buf;
2978 int len;
2979 int i;
2980
2981 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2982 {
2983 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02002984 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2985 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2986 || (vim_strchr(eap->arg, '+')
2987 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
2988 || (vim_strchr(eap->arg, 'a')
2989 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
2990 || (vim_strchr(eap->arg, 'h')
2991 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
2992 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
2993 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
2994 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
2995 || (vim_strchr(eap->arg, '%') && buf != curbuf)
2996 || (vim_strchr(eap->arg, '#')
2997 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003000 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 else
3002 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003003 if (message_filtered(NameBuff))
3004 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003006 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003007 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 buf->b_fnum,
3009 buf->b_p_bl ? ' ' : 'u',
3010 buf == curbuf ? '%' :
3011 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3012 buf->b_ml.ml_mfp == NULL ? ' ' :
3013 (buf->b_nwindows == 0 ? 'h' : 'a'),
3014 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
3015 (buf->b_flags & BF_READERR) ? 'x'
Bram Moolenaar51485f02005-06-04 21:55:20 +00003016 : (bufIsChanged(buf) ? '+' : ' '),
3017 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003018 if (len > IOSIZE - 20)
3019 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020
3021 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 i = 40 - vim_strsize(IObuff);
3023 do
3024 {
3025 IObuff[len++] = ' ';
3026 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003027 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3028 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003029 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 msg_outtrans(IObuff);
3031 out_flush(); /* output one line at a time */
3032 ui_breakcheck();
3033 }
3034}
3035#endif
3036
3037/*
3038 * Get file name and line number for file 'fnum'.
3039 * Used by DoOneCmd() for translating '%' and '#'.
3040 * Used by insert_reg() and cmdline_paste() for '#' register.
3041 * Return FAIL if not found, OK for success.
3042 */
3043 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003044buflist_name_nr(
3045 int fnum,
3046 char_u **fname,
3047 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048{
3049 buf_T *buf;
3050
3051 buf = buflist_findnr(fnum);
3052 if (buf == NULL || buf->b_fname == NULL)
3053 return FAIL;
3054
3055 *fname = buf->b_fname;
3056 *lnum = buflist_findlnum(buf);
3057
3058 return OK;
3059}
3060
3061/*
3062 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3063 * The file name with the full path is also remembered, for when :cd is used.
3064 * Returns FAIL for failure (file name already in use by other buffer)
3065 * OK otherwise.
3066 */
3067 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003068setfname(
3069 buf_T *buf,
3070 char_u *ffname,
3071 char_u *sfname,
3072 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073{
Bram Moolenaar81695252004-12-29 20:58:21 +00003074 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003076 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077#endif
3078
3079 if (ffname == NULL || *ffname == NUL)
3080 {
3081 /* Removing the name. */
3082 vim_free(buf->b_ffname);
3083 vim_free(buf->b_sfname);
3084 buf->b_ffname = NULL;
3085 buf->b_sfname = NULL;
3086#ifdef UNIX
3087 st.st_dev = (dev_T)-1;
3088#endif
3089 }
3090 else
3091 {
3092 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3093 if (ffname == NULL) /* out of memory */
3094 return FAIL;
3095
3096 /*
3097 * if the file name is already used in another buffer:
3098 * - if the buffer is loaded, fail
3099 * - if the buffer is not loaded, delete it from the list
3100 */
3101#ifdef UNIX
3102 if (mch_stat((char *)ffname, &st) < 0)
3103 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003104#endif
3105 if (!(buf->b_flags & BF_DUMMY))
3106#ifdef UNIX
3107 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003109 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110#endif
3111 if (obuf != NULL && obuf != buf)
3112 {
3113 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3114 {
3115 if (message)
3116 EMSG(_("E95: Buffer with this name already exists"));
3117 vim_free(ffname);
3118 return FAIL;
3119 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003120 /* delete from the list */
3121 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 }
3123 sfname = vim_strsave(sfname);
3124 if (ffname == NULL || sfname == NULL)
3125 {
3126 vim_free(sfname);
3127 vim_free(ffname);
3128 return FAIL;
3129 }
3130#ifdef USE_FNAME_CASE
3131# ifdef USE_LONG_FNAME
3132 if (USE_LONG_FNAME)
3133# endif
3134 fname_case(sfname, 0); /* set correct case for short file name */
3135#endif
3136 vim_free(buf->b_ffname);
3137 vim_free(buf->b_sfname);
3138 buf->b_ffname = ffname;
3139 buf->b_sfname = sfname;
3140 }
3141 buf->b_fname = buf->b_sfname;
3142#ifdef UNIX
3143 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003144 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 else
3146 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003147 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 buf->b_dev = st.st_dev;
3149 buf->b_ino = st.st_ino;
3150 }
3151#endif
3152
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154
3155 buf_name_changed(buf);
3156 return OK;
3157}
3158
3159/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003160 * Crude way of changing the name of a buffer. Use with care!
3161 * The name should be relative to the current directory.
3162 */
3163 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003164buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003165{
3166 buf_T *buf;
3167
3168 buf = buflist_findnr(fnum);
3169 if (buf != NULL)
3170 {
3171 vim_free(buf->b_sfname);
3172 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003173 buf->b_ffname = vim_strsave(name);
3174 buf->b_sfname = NULL;
3175 /* Allocate ffname and expand into full path. Also resolves .lnk
3176 * files on Win32. */
3177 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003178 buf->b_fname = buf->b_sfname;
3179 }
3180}
3181
3182/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 * Take care of what needs to be done when the name of buffer "buf" has
3184 * changed.
3185 */
3186 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003187buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188{
3189 /*
3190 * If the file name changed, also change the name of the swapfile
3191 */
3192 if (buf->b_ml.ml_mfp != NULL)
3193 ml_setname(buf);
3194
3195 if (curwin->w_buffer == buf)
3196 check_arg_idx(curwin); /* check file name for arg list */
3197#ifdef FEAT_TITLE
3198 maketitle(); /* set window title */
3199#endif
3200#ifdef FEAT_WINDOWS
3201 status_redraw_all(); /* status lines need to be redrawn */
3202#endif
3203 fmarks_check_names(buf); /* check named file marks */
3204 ml_timestamp(buf); /* reset timestamp */
3205}
3206
3207/*
3208 * set alternate file name for current window
3209 *
3210 * Used by do_one_cmd(), do_write() and do_ecmd().
3211 * Return the buffer.
3212 */
3213 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003214setaltfname(
3215 char_u *ffname,
3216 char_u *sfname,
3217 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218{
3219 buf_T *buf;
3220
3221 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3222 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003223 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 curwin->w_alt_fnum = buf->b_fnum;
3225 return buf;
3226}
3227
3228/*
3229 * Get alternate file name for current window.
3230 * Return NULL if there isn't any, and give error message if requested.
3231 */
3232 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003233getaltfname(
3234 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235{
3236 char_u *fname;
3237 linenr_T dummy;
3238
3239 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3240 {
3241 if (errmsg)
3242 EMSG(_(e_noalt));
3243 return NULL;
3244 }
3245 return fname;
3246}
3247
3248/*
3249 * Add a file name to the buflist and return its number.
3250 * Uses same flags as buflist_new(), except BLN_DUMMY.
3251 *
3252 * used by qf_init(), main() and doarglist()
3253 */
3254 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003255buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256{
3257 buf_T *buf;
3258
3259 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3260 if (buf != NULL)
3261 return buf->b_fnum;
3262 return 0;
3263}
3264
3265#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3266/*
3267 * Adjust slashes in file names. Called after 'shellslash' was set.
3268 */
3269 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003270buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271{
3272 buf_T *bp;
3273
Bram Moolenaar29323592016-07-24 22:04:11 +02003274 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 {
3276 if (bp->b_ffname != NULL)
3277 slash_adjust(bp->b_ffname);
3278 if (bp->b_sfname != NULL)
3279 slash_adjust(bp->b_sfname);
3280 }
3281}
3282#endif
3283
3284/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003285 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286 * Also save the local window option values.
3287 */
3288 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003289buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003291 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292}
3293
3294/*
3295 * Return TRUE if 'ffname' is not the same file as current file.
3296 * Fname must have a full path (expanded by mch_FullName()).
3297 */
3298 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003299otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300{
3301 return otherfile_buf(curbuf, ffname
3302#ifdef UNIX
3303 , NULL
3304#endif
3305 );
3306}
3307
3308 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003309otherfile_buf(
3310 buf_T *buf,
3311 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003313 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003315 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316{
3317 /* no name is different */
3318 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3319 return TRUE;
3320 if (fnamecmp(ffname, buf->b_ffname) == 0)
3321 return FALSE;
3322#ifdef UNIX
3323 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003324 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325
Bram Moolenaar8767f522016-07-01 17:17:39 +02003326 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 if (stp == NULL)
3328 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003329 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330 st.st_dev = (dev_T)-1;
3331 stp = &st;
3332 }
3333 /* Use dev/ino to check if the files are the same, even when the names
3334 * are different (possible with links). Still need to compare the
3335 * name above, for when the file doesn't exist yet.
3336 * Problem: The dev/ino changes when a file is deleted (and created
3337 * again) and remains the same when renamed/moved. We don't want to
3338 * mch_stat() each buffer each time, that would be too slow. Get the
3339 * dev/ino again when they appear to match, but not when they appear
3340 * to be different: Could skip a buffer when it's actually the same
3341 * file. */
3342 if (buf_same_ino(buf, stp))
3343 {
3344 buf_setino(buf);
3345 if (buf_same_ino(buf, stp))
3346 return FALSE;
3347 }
3348 }
3349#endif
3350 return TRUE;
3351}
3352
3353#if defined(UNIX) || defined(PROTO)
3354/*
3355 * Set inode and device number for a buffer.
3356 * Must always be called when b_fname is changed!.
3357 */
3358 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003359buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003361 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362
3363 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3364 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003365 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 buf->b_dev = st.st_dev;
3367 buf->b_ino = st.st_ino;
3368 }
3369 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003370 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371}
3372
3373/*
3374 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3375 */
3376 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003377buf_same_ino(
3378 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003379 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003381 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 && stp->st_dev == buf->b_dev
3383 && stp->st_ino == buf->b_ino);
3384}
3385#endif
3386
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003387/*
3388 * Print info about the current buffer.
3389 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003391fileinfo(
3392 int fullname, /* when non-zero print full path */
3393 int shorthelp,
3394 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395{
3396 char_u *name;
3397 int n;
3398 char_u *p;
3399 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003400 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401
3402 buffer = alloc(IOSIZE);
3403 if (buffer == NULL)
3404 return;
3405
3406 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3407 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003408 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 p = buffer + STRLEN(buffer);
3410 }
3411 else
3412 p = buffer;
3413
3414 *p++ = '"';
3415 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003416 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 else
3418 {
3419 if (!fullname && curbuf->b_fname != NULL)
3420 name = curbuf->b_fname;
3421 else
3422 name = curbuf->b_ffname;
3423 home_replace(shorthelp ? curbuf : NULL, name, p,
3424 (int)(IOSIZE - (p - buffer)), TRUE);
3425 }
3426
Bram Moolenaara800b422010-06-27 01:15:55 +02003427 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428 curbufIsChanged() ? (shortmess(SHM_MOD)
3429 ? " [+]" : _(" [Modified]")) : " ",
3430 (curbuf->b_flags & BF_NOTEDITED)
3431#ifdef FEAT_QUICKFIX
3432 && !bt_dontwrite(curbuf)
3433#endif
3434 ? _("[Not edited]") : "",
3435 (curbuf->b_flags & BF_NEW)
3436#ifdef FEAT_QUICKFIX
3437 && !bt_dontwrite(curbuf)
3438#endif
3439 ? _("[New file]") : "",
3440 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003441 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 : _("[readonly]")) : "",
3443 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3444 || curbuf->b_p_ro) ?
3445 " " : "");
3446 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3447 * causes an overflow, thus for large numbers divide instead. */
3448 if (curwin->w_cursor.lnum > 1000000L)
3449 n = (int)(((long)curwin->w_cursor.lnum) /
3450 ((long)curbuf->b_ml.ml_line_count / 100L));
3451 else
3452 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3453 (long)curbuf->b_ml.ml_line_count);
3454 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3455 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003456 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 }
3458#ifdef FEAT_CMDL_INFO
3459 else if (p_ru)
3460 {
3461 /* Current line and column are already on the screen -- webb */
3462 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003463 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003465 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 (long)curbuf->b_ml.ml_line_count, n);
3467 }
3468#endif
3469 else
3470 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003471 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 _("line %ld of %ld --%d%%-- col "),
3473 (long)curwin->w_cursor.lnum,
3474 (long)curbuf->b_ml.ml_line_count,
3475 n);
3476 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003477 len = STRLEN(buffer);
3478 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3480 }
3481
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003482 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483
3484 if (dont_truncate)
3485 {
3486 /* Temporarily set msg_scroll to avoid the message being truncated.
3487 * First call msg_start() to get the message in the right place. */
3488 msg_start();
3489 n = msg_scroll;
3490 msg_scroll = TRUE;
3491 msg(buffer);
3492 msg_scroll = n;
3493 }
3494 else
3495 {
3496 p = msg_trunc_attr(buffer, FALSE, 0);
3497 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 /* Need to repeat the message after redrawing when:
3499 * - When restart_edit is set (otherwise there will be a delay
3500 * before redrawing).
3501 * - When the screen was scrolled but there is no wait-return
3502 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003503 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 }
3505
3506 vim_free(buffer);
3507}
3508
3509 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003510col_print(
3511 char_u *buf,
3512 size_t buflen,
3513 int col,
3514 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515{
3516 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003517 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003519 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520}
3521
3522#if defined(FEAT_TITLE) || defined(PROTO)
3523/*
3524 * put file name in title bar of window and in icon title
3525 */
3526
3527static char_u *lasttitle = NULL;
3528static char_u *lasticon = NULL;
3529
3530 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003531maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532{
3533 char_u *p;
3534 char_u *t_str = NULL;
3535 char_u *i_name;
3536 char_u *i_str = NULL;
3537 int maxlen = 0;
3538 int len;
3539 int mustset;
3540 char_u buf[IOSIZE];
3541 int off;
3542
3543 if (!redrawing())
3544 {
3545 /* Postpone updating the title when 'lazyredraw' is set. */
3546 need_maketitle = TRUE;
3547 return;
3548 }
3549
3550 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003551 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 return;
3553
3554 if (p_title)
3555 {
3556 if (p_titlelen > 0)
3557 {
3558 maxlen = p_titlelen * Columns / 100;
3559 if (maxlen < 10)
3560 maxlen = 10;
3561 }
3562
3563 t_str = buf;
3564 if (*p_titlestring != NUL)
3565 {
3566#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003567 if (stl_syntax & STL_IN_TITLE)
3568 {
3569 int use_sandbox = FALSE;
3570 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003571
3572# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003573 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003574# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003575 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003577 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003578 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003579 if (called_emsg)
3580 set_string_option_direct((char_u *)"titlestring", -1,
3581 (char_u *)"", OPT_FREE, SID_ERROR);
3582 called_emsg |= save_called_emsg;
3583 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 else
3585#endif
3586 t_str = p_titlestring;
3587 }
3588 else
3589 {
3590 /* format: "fname + (path) (1 of 2) - VIM" */
3591
Bram Moolenaar2c666692012-09-05 13:30:40 +02003592#define SPACE_FOR_FNAME (IOSIZE - 100)
3593#define SPACE_FOR_DIR (IOSIZE - 20)
3594#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003596 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 else
3598 {
3599 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003600 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 }
3603
3604 switch (bufIsChanged(curbuf)
3605 + (curbuf->b_p_ro * 2)
3606 + (!curbuf->b_p_ma * 4))
3607 {
3608 case 1: STRCAT(buf, " +"); break;
3609 case 2: STRCAT(buf, " ="); break;
3610 case 3: STRCAT(buf, " =+"); break;
3611 case 4:
3612 case 6: STRCAT(buf, " -"); break;
3613 case 5:
3614 case 7: STRCAT(buf, " -+"); break;
3615 }
3616
3617 if (curbuf->b_fname != NULL)
3618 {
3619 /* Get path of file, replace home dir with ~ */
3620 off = (int)STRLEN(buf);
3621 buf[off++] = ' ';
3622 buf[off++] = '(';
3623 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003624 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625#ifdef BACKSLASH_IN_FILENAME
3626 /* avoid "c:/name" to be reduced to "c" */
3627 if (isalpha(buf[off]) && buf[off + 1] == ':')
3628 off += 2;
3629#endif
3630 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003631 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 if (p == buf + off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 /* must be a help buffer */
Bram Moolenaarb6356332005-07-18 21:40:44 +00003634 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003635 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003638
Bram Moolenaar2c666692012-09-05 13:30:40 +02003639 /* Translate unprintable chars and concatenate. Keep some
3640 * room for the server name. When there is no room (very long
3641 * file name) use (...). */
3642 if (off < SPACE_FOR_DIR)
3643 {
3644 p = transstr(buf + off);
3645 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3646 vim_free(p);
3647 }
3648 else
3649 {
3650 vim_strncpy(buf + off, (char_u *)"...",
3651 (size_t)(SPACE_FOR_ARGNR - off));
3652 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 STRCAT(buf, ")");
3654 }
3655
Bram Moolenaar2c666692012-09-05 13:30:40 +02003656 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657
3658#if defined(FEAT_CLIENTSERVER)
3659 if (serverName != NULL)
3660 {
3661 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003662 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 }
3664 else
3665#endif
3666 STRCAT(buf, " - VIM");
3667
3668 if (maxlen > 0)
3669 {
3670 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003671 if (vim_strsize(buf) > maxlen)
3672 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 }
3674 }
3675 }
3676 mustset = ti_change(t_str, &lasttitle);
3677
3678 if (p_icon)
3679 {
3680 i_str = buf;
3681 if (*p_iconstring != NUL)
3682 {
3683#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003684 if (stl_syntax & STL_IN_ICON)
3685 {
3686 int use_sandbox = FALSE;
3687 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003688
3689# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003690 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003691# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003692 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003694 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003695 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003696 if (called_emsg)
3697 set_string_option_direct((char_u *)"iconstring", -1,
3698 (char_u *)"", OPT_FREE, SID_ERROR);
3699 called_emsg |= save_called_emsg;
3700 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 else
3702#endif
3703 i_str = p_iconstring;
3704 }
3705 else
3706 {
3707 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003708 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 else /* use file name only in icon */
3710 i_name = gettail(curbuf->b_ffname);
3711 *i_str = NUL;
3712 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003713 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714 if (len > 100)
3715 {
3716 len -= 100;
3717#ifdef FEAT_MBYTE
3718 if (has_mbyte)
3719 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3720#endif
3721 i_name += len;
3722 }
3723 STRCPY(i_str, i_name);
3724 trans_characters(i_str, IOSIZE);
3725 }
3726 }
3727
3728 mustset |= ti_change(i_str, &lasticon);
3729
3730 if (mustset)
3731 resettitle();
3732}
3733
3734/*
3735 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3736 * from "str" if it does.
3737 * Return TRUE when "*last" changed.
3738 */
3739 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003740ti_change(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741{
3742 if ((str == NULL) != (*last == NULL)
3743 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3744 {
3745 vim_free(*last);
3746 if (str == NULL)
3747 *last = NULL;
3748 else
3749 *last = vim_strsave(str);
3750 return TRUE;
3751 }
3752 return FALSE;
3753}
3754
3755/*
3756 * Put current window title back (used after calling a shell)
3757 */
3758 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003759resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760{
3761 mch_settitle(lasttitle, lasticon);
3762}
Bram Moolenaarea408852005-06-25 22:49:46 +00003763
3764# if defined(EXITFREE) || defined(PROTO)
3765 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003766free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003767{
3768 vim_free(lasttitle);
3769 vim_free(lasticon);
3770}
3771# endif
3772
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773#endif /* FEAT_TITLE */
3774
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003775#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003777 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 * Return length of string in screen cells.
3779 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003780 * Normally works for window "wp", except when working for 'tabline' then it
3781 * is "curwin".
3782 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 * Items are drawn interspersed with the text that surrounds it
3784 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3785 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3786 *
3787 * If maxwidth is not zero, the string will be filled at any middle marker
3788 * or truncated if too long, fillchar is used for all whitespace.
3789 */
3790 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003791build_stl_str_hl(
3792 win_T *wp,
3793 char_u *out, /* buffer to write into != NameBuff */
3794 size_t outlen, /* length of out[] */
3795 char_u *fmt,
3796 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3797 int fillchar,
3798 int maxwidth,
3799 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3800 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801{
3802 char_u *p;
3803 char_u *s;
3804 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003805 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806#ifdef FEAT_EVAL
3807 win_T *o_curwin;
3808 buf_T *o_curbuf;
3809#endif
3810 int empty_line;
3811 colnr_T virtcol;
3812 long l;
3813 long n;
3814 int prevchar_isflag;
3815 int prevchar_isitem;
3816 int itemisflag;
3817 int fillable;
3818 char_u *str;
3819 long num;
3820 int width;
3821 int itemcnt;
3822 int curitem;
3823 int groupitem[STL_MAX_ITEM];
3824 int groupdepth;
3825 struct stl_item
3826 {
3827 char_u *start;
3828 int minwid;
3829 int maxwid;
3830 enum
3831 {
3832 Normal,
3833 Empty,
3834 Group,
3835 Middle,
3836 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003837 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 Trunc
3839 } type;
3840 } item[STL_MAX_ITEM];
3841 int minwid;
3842 int maxwid;
3843 int zeropad;
3844 char_u base;
3845 char_u opt;
3846#define TMPLEN 70
3847 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003848 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003849 struct stl_hlrec *sp;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003850
3851#ifdef FEAT_EVAL
3852 /*
3853 * When the format starts with "%!" then evaluate it as an expression and
3854 * use the result as the actual format string.
3855 */
3856 if (fmt[0] == '%' && fmt[1] == '!')
3857 {
3858 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3859 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003860 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003861 }
3862#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863
3864 if (fillchar == 0)
3865 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003866#ifdef FEAT_MBYTE
3867 /* Can't handle a multi-byte fill character yet. */
3868 else if (mb_char2len(fillchar) > 1)
3869 fillchar = '-';
3870#endif
3871
Bram Moolenaar567199b2013-04-24 16:52:36 +02003872 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3873 * p will become invalid when getting another buffer line. */
3874 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3875 empty_line = (*p == NUL);
3876
3877 /* Get the byte value now, in case we need it below. This is more
3878 * efficient than making a copy of the line. */
3879 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3880 byteval = 0;
3881 else
3882#ifdef FEAT_MBYTE
3883 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3884#else
3885 byteval = p[wp->w_cursor.col];
3886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887
3888 groupdepth = 0;
3889 p = out;
3890 curitem = 0;
3891 prevchar_isflag = TRUE;
3892 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003893 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003895 if (curitem == STL_MAX_ITEM)
3896 {
3897 /* There are too many items. Add the error code to the statusline
3898 * to give the user a hint about what went wrong. */
3899 if (p + 6 < out + outlen)
3900 {
3901 mch_memmove(p, " E541", (size_t)5);
3902 p += 5;
3903 }
3904 break;
3905 }
3906
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 if (*s != NUL && *s != '%')
3908 prevchar_isflag = prevchar_isitem = FALSE;
3909
3910 /*
3911 * Handle up to the next '%' or the end.
3912 */
3913 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3914 *p++ = *s++;
3915 if (*s == NUL || p + 1 >= out + outlen)
3916 break;
3917
3918 /*
3919 * Handle one '%' item.
3920 */
3921 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003922 if (*s == NUL) /* ignore trailing % */
3923 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 if (*s == '%')
3925 {
3926 if (p + 1 >= out + outlen)
3927 break;
3928 *p++ = *s++;
3929 prevchar_isflag = prevchar_isitem = FALSE;
3930 continue;
3931 }
3932 if (*s == STL_MIDDLEMARK)
3933 {
3934 s++;
3935 if (groupdepth > 0)
3936 continue;
3937 item[curitem].type = Middle;
3938 item[curitem++].start = p;
3939 continue;
3940 }
3941 if (*s == STL_TRUNCMARK)
3942 {
3943 s++;
3944 item[curitem].type = Trunc;
3945 item[curitem++].start = p;
3946 continue;
3947 }
3948 if (*s == ')')
3949 {
3950 s++;
3951 if (groupdepth < 1)
3952 continue;
3953 groupdepth--;
3954
3955 t = item[groupitem[groupdepth]].start;
3956 *p = NUL;
3957 l = vim_strsize(t);
3958 if (curitem > groupitem[groupdepth] + 1
3959 && item[groupitem[groupdepth]].minwid == 0)
3960 {
3961 /* remove group if all items are empty */
3962 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaaraf6e36f2016-03-08 12:56:33 +01003963 if (item[n].type == Normal || item[n].type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 break;
3965 if (n == curitem)
3966 {
3967 p = t;
3968 l = 0;
3969 }
3970 }
3971 if (l > item[groupitem[groupdepth]].maxwid)
3972 {
3973 /* truncate, remove n bytes of text at the start */
3974#ifdef FEAT_MBYTE
3975 if (has_mbyte)
3976 {
3977 /* Find the first character that should be included. */
3978 n = 0;
3979 while (l >= item[groupitem[groupdepth]].maxwid)
3980 {
3981 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003982 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 }
3984 }
3985 else
3986#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003987 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988
3989 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003990 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 p = p - n + 1;
3992#ifdef FEAT_MBYTE
3993 /* Fill up space left over by half a double-wide char. */
3994 while (++l < item[groupitem[groupdepth]].minwid)
3995 *p++ = fillchar;
3996#endif
3997
3998 /* correct the start of the items for the truncation */
3999 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
4000 {
4001 item[l].start -= n;
4002 if (item[l].start < t)
4003 item[l].start = t;
4004 }
4005 }
4006 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4007 {
4008 /* fill */
4009 n = item[groupitem[groupdepth]].minwid;
4010 if (n < 0)
4011 {
4012 /* fill by appending characters */
4013 n = 0 - n;
4014 while (l++ < n && p + 1 < out + outlen)
4015 *p++ = fillchar;
4016 }
4017 else
4018 {
4019 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004020 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 l = n - l;
4022 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004023 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 p += l;
4025 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4026 item[n].start += l;
4027 for ( ; l > 0; l--)
4028 *t++ = fillchar;
4029 }
4030 }
4031 continue;
4032 }
4033 minwid = 0;
4034 maxwid = 9999;
4035 zeropad = FALSE;
4036 l = 1;
4037 if (*s == '0')
4038 {
4039 s++;
4040 zeropad = TRUE;
4041 }
4042 if (*s == '-')
4043 {
4044 s++;
4045 l = -1;
4046 }
4047 if (VIM_ISDIGIT(*s))
4048 {
4049 minwid = (int)getdigits(&s);
4050 if (minwid < 0) /* overflow */
4051 minwid = 0;
4052 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004053 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 {
4055 item[curitem].type = Highlight;
4056 item[curitem].start = p;
4057 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4058 s++;
4059 curitem++;
4060 continue;
4061 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004062 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4063 {
4064 if (*s == STL_TABCLOSENR)
4065 {
4066 if (minwid == 0)
4067 {
4068 /* %X ends the close label, go back to the previously
4069 * define tab label nr. */
4070 for (n = curitem - 1; n >= 0; --n)
4071 if (item[n].type == TabPage && item[n].minwid >= 0)
4072 {
4073 minwid = item[n].minwid;
4074 break;
4075 }
4076 }
4077 else
4078 /* close nrs are stored as negative values */
4079 minwid = - minwid;
4080 }
4081 item[curitem].type = TabPage;
4082 item[curitem].start = p;
4083 item[curitem].minwid = minwid;
4084 s++;
4085 curitem++;
4086 continue;
4087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 if (*s == '.')
4089 {
4090 s++;
4091 if (VIM_ISDIGIT(*s))
4092 {
4093 maxwid = (int)getdigits(&s);
4094 if (maxwid <= 0) /* overflow */
4095 maxwid = 50;
4096 }
4097 }
4098 minwid = (minwid > 50 ? 50 : minwid) * l;
4099 if (*s == '(')
4100 {
4101 groupitem[groupdepth++] = curitem;
4102 item[curitem].type = Group;
4103 item[curitem].start = p;
4104 item[curitem].minwid = minwid;
4105 item[curitem].maxwid = maxwid;
4106 s++;
4107 curitem++;
4108 continue;
4109 }
4110 if (vim_strchr(STL_ALL, *s) == NULL)
4111 {
4112 s++;
4113 continue;
4114 }
4115 opt = *s++;
4116
4117 /* OK - now for the real work */
4118 base = 'D';
4119 itemisflag = FALSE;
4120 fillable = TRUE;
4121 num = -1;
4122 str = NULL;
4123 switch (opt)
4124 {
4125 case STL_FILEPATH:
4126 case STL_FULLPATH:
4127 case STL_FILENAME:
4128 fillable = FALSE; /* don't change ' ' to fillchar */
4129 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004130 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 else
4132 {
4133 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004134 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4136 }
4137 trans_characters(NameBuff, MAXPATHL);
4138 if (opt != STL_FILENAME)
4139 str = NameBuff;
4140 else
4141 str = gettail(NameBuff);
4142 break;
4143
4144 case STL_VIM_EXPR: /* '{' */
4145 itemisflag = TRUE;
4146 t = p;
4147 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4148 *p++ = *s++;
4149 if (*s != '}') /* missing '}' or out of space */
4150 break;
4151 s++;
4152 *p = 0;
4153 p = t;
4154
4155#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004156 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 set_internal_string_var((char_u *)"actual_curbuf", tmp);
4158
4159 o_curbuf = curbuf;
4160 o_curwin = curwin;
4161 curwin = wp;
4162 curbuf = wp->w_buffer;
4163
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004164 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165
4166 curwin = o_curwin;
4167 curbuf = o_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004168 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169
4170 if (str != NULL && *str != 0)
4171 {
4172 if (*skipdigits(str) == NUL)
4173 {
4174 num = atoi((char *)str);
4175 vim_free(str);
4176 str = NULL;
4177 itemisflag = FALSE;
4178 }
4179 }
4180#endif
4181 break;
4182
4183 case STL_LINE:
4184 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4185 ? 0L : (long)(wp->w_cursor.lnum);
4186 break;
4187
4188 case STL_NUMLINES:
4189 num = wp->w_buffer->b_ml.ml_line_count;
4190 break;
4191
4192 case STL_COLUMN:
4193 num = !(State & INSERT) && empty_line
4194 ? 0 : (int)wp->w_cursor.col + 1;
4195 break;
4196
4197 case STL_VIRTCOL:
4198 case STL_VIRTCOL_ALT:
4199 /* In list mode virtcol needs to be recomputed */
4200 virtcol = wp->w_virtcol;
4201 if (wp->w_p_list && lcs_tab1 == NUL)
4202 {
4203 wp->w_p_list = FALSE;
4204 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4205 wp->w_p_list = TRUE;
4206 }
4207 ++virtcol;
4208 /* Don't display %V if it's the same as %c. */
4209 if (opt == STL_VIRTCOL_ALT
4210 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4211 ? 0 : (int)wp->w_cursor.col + 1)))
4212 break;
4213 num = (long)virtcol;
4214 break;
4215
4216 case STL_PERCENTAGE:
4217 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4218 (long)wp->w_buffer->b_ml.ml_line_count);
4219 break;
4220
4221 case STL_ALTPERCENT:
4222 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004223 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 break;
4225
4226 case STL_ARGLISTSTAT:
4227 fillable = FALSE;
4228 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004229 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 str = tmp;
4231 break;
4232
4233 case STL_KEYMAP:
4234 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004235 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 str = tmp;
4237 break;
4238 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004239#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004240 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241#else
4242 num = 0;
4243#endif
4244 break;
4245
4246 case STL_BUFNO:
4247 num = wp->w_buffer->b_fnum;
4248 break;
4249
4250 case STL_OFFSET_X:
4251 base = 'X';
4252 case STL_OFFSET:
4253#ifdef FEAT_BYTEOFF
4254 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4255 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4256 0L : l + 1 + (!(State & INSERT) && empty_line ?
4257 0 : (int)wp->w_cursor.col);
4258#endif
4259 break;
4260
4261 case STL_BYTEVAL_X:
4262 base = 'X';
4263 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004264 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 if (num == NL)
4266 num = 0;
4267 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4268 num = NL;
4269 break;
4270
4271 case STL_ROFLAG:
4272 case STL_ROFLAG_ALT:
4273 itemisflag = TRUE;
4274 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004275 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276 break;
4277
4278 case STL_HELPFLAG:
4279 case STL_HELPFLAG_ALT:
4280 itemisflag = TRUE;
4281 if (wp->w_buffer->b_help)
4282 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004283 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 break;
4285
4286#ifdef FEAT_AUTOCMD
4287 case STL_FILETYPE:
4288 if (*wp->w_buffer->b_p_ft != NUL
4289 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4290 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004291 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4292 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 str = tmp;
4294 }
4295 break;
4296
4297 case STL_FILETYPE_ALT:
4298 itemisflag = TRUE;
4299 if (*wp->w_buffer->b_p_ft != NUL
4300 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4301 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004302 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4303 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 for (t = tmp; *t != 0; t++)
4305 *t = TOUPPER_LOC(*t);
4306 str = tmp;
4307 }
4308 break;
4309#endif
4310
4311#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4312 case STL_PREVIEWFLAG:
4313 case STL_PREVIEWFLAG_ALT:
4314 itemisflag = TRUE;
4315 if (wp->w_p_pvw)
4316 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4317 : _("[Preview]"));
4318 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004319
4320 case STL_QUICKFIX:
4321 if (bt_quickfix(wp->w_buffer))
4322 str = (char_u *)(wp->w_llist_ref
4323 ? _(msg_loclist)
4324 : _(msg_qflist));
4325 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326#endif
4327
4328 case STL_MODIFIED:
4329 case STL_MODIFIED_ALT:
4330 itemisflag = TRUE;
4331 switch ((opt == STL_MODIFIED_ALT)
4332 + bufIsChanged(wp->w_buffer) * 2
4333 + (!wp->w_buffer->b_p_ma) * 4)
4334 {
4335 case 2: str = (char_u *)"[+]"; break;
4336 case 3: str = (char_u *)",+"; break;
4337 case 4: str = (char_u *)"[-]"; break;
4338 case 5: str = (char_u *)",-"; break;
4339 case 6: str = (char_u *)"[+-]"; break;
4340 case 7: str = (char_u *)",+-"; break;
4341 }
4342 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004343
4344 case STL_HIGHLIGHT:
4345 t = s;
4346 while (*s != '#' && *s != NUL)
4347 ++s;
4348 if (*s == '#')
4349 {
4350 item[curitem].type = Highlight;
4351 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004352 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004353 curitem++;
4354 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004355 if (*s != NUL)
4356 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004357 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 }
4359
4360 item[curitem].start = p;
4361 item[curitem].type = Normal;
4362 if (str != NULL && *str)
4363 {
4364 t = str;
4365 if (itemisflag)
4366 {
4367 if ((t[0] && t[1])
4368 && ((!prevchar_isitem && *t == ',')
4369 || (prevchar_isflag && *t == ' ')))
4370 t++;
4371 prevchar_isflag = TRUE;
4372 }
4373 l = vim_strsize(t);
4374 if (l > 0)
4375 prevchar_isitem = TRUE;
4376 if (l > maxwid)
4377 {
4378 while (l >= maxwid)
4379#ifdef FEAT_MBYTE
4380 if (has_mbyte)
4381 {
4382 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004383 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 }
4385 else
4386#endif
4387 l -= byte2cells(*t++);
4388 if (p + 1 >= out + outlen)
4389 break;
4390 *p++ = '<';
4391 }
4392 if (minwid > 0)
4393 {
4394 for (; l < minwid && p + 1 < out + outlen; l++)
4395 {
4396 /* Don't put a "-" in front of a digit. */
4397 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4398 *p++ = ' ';
4399 else
4400 *p++ = fillchar;
4401 }
4402 minwid = 0;
4403 }
4404 else
4405 minwid *= -1;
4406 while (*t && p + 1 < out + outlen)
4407 {
4408 *p++ = *t++;
4409 /* Change a space by fillchar, unless fillchar is '-' and a
4410 * digit follows. */
4411 if (fillable && p[-1] == ' '
4412 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4413 p[-1] = fillchar;
4414 }
4415 for (; l < minwid && p + 1 < out + outlen; l++)
4416 *p++ = fillchar;
4417 }
4418 else if (num >= 0)
4419 {
4420 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4421 char_u nstr[20];
4422
4423 if (p + 20 >= out + outlen)
4424 break; /* not sufficient space */
4425 prevchar_isitem = TRUE;
4426 t = nstr;
4427 if (opt == STL_VIRTCOL_ALT)
4428 {
4429 *t++ = '-';
4430 minwid--;
4431 }
4432 *t++ = '%';
4433 if (zeropad)
4434 *t++ = '0';
4435 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004436 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 *t = 0;
4438
4439 for (n = num, l = 1; n >= nbase; n /= nbase)
4440 l++;
4441 if (opt == STL_VIRTCOL_ALT)
4442 l++;
4443 if (l > maxwid)
4444 {
4445 l += 2;
4446 n = l - maxwid;
4447 while (l-- > maxwid)
4448 num /= nbase;
4449 *t++ = '>';
4450 *t++ = '%';
4451 *t = t[-3];
4452 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004453 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4454 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 }
4456 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004457 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4458 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 p += STRLEN(p);
4460 }
4461 else
4462 item[curitem].type = Empty;
4463
4464 if (opt == STL_VIM_EXPR)
4465 vim_free(str);
4466
4467 if (num >= 0 || (!itemisflag && str && *str))
4468 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4469 curitem++;
4470 }
4471 *p = NUL;
4472 itemcnt = curitem;
4473
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004474#ifdef FEAT_EVAL
4475 if (usefmt != fmt)
4476 vim_free(usefmt);
4477#endif
4478
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 width = vim_strsize(out);
4480 if (maxwidth > 0 && width > maxwidth)
4481 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004482 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 l = 0;
4484 if (itemcnt == 0)
4485 s = out;
4486 else
4487 {
4488 for ( ; l < itemcnt; l++)
4489 if (item[l].type == Trunc)
4490 {
4491 /* Truncate at %< item. */
4492 s = item[l].start;
4493 break;
4494 }
4495 if (l == itemcnt)
4496 {
4497 /* No %< item, truncate first item. */
4498 s = item[0].start;
4499 l = 0;
4500 }
4501 }
4502
4503 if (width - vim_strsize(s) >= maxwidth)
4504 {
4505 /* Truncation mark is beyond max length */
4506#ifdef FEAT_MBYTE
4507 if (has_mbyte)
4508 {
4509 s = out;
4510 width = 0;
4511 for (;;)
4512 {
4513 width += ptr2cells(s);
4514 if (width >= maxwidth)
4515 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004516 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 }
4518 /* Fill up for half a double-wide character. */
4519 while (++width < maxwidth)
4520 *s++ = fillchar;
4521 }
4522 else
4523#endif
4524 s = out + maxwidth - 1;
4525 for (l = 0; l < itemcnt; l++)
4526 if (item[l].start > s)
4527 break;
4528 itemcnt = l;
4529 *s++ = '>';
4530 *s = 0;
4531 }
4532 else
4533 {
4534#ifdef FEAT_MBYTE
4535 if (has_mbyte)
4536 {
4537 n = 0;
4538 while (width >= maxwidth)
4539 {
4540 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004541 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 }
4543 }
4544 else
4545#endif
4546 n = width - maxwidth + 1;
4547 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004548 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549 *s = '<';
4550
4551 /* Fill up for half a double-wide character. */
4552 while (++width < maxwidth)
4553 {
4554 s = s + STRLEN(s);
4555 *s++ = fillchar;
4556 *s = NUL;
4557 }
4558
4559 --n; /* count the '<' */
4560 for (; l < itemcnt; l++)
4561 {
4562 if (item[l].start - n >= s)
4563 item[l].start -= n;
4564 else
4565 item[l].start = s;
4566 }
4567 }
4568 width = maxwidth;
4569 }
4570 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4571 {
4572 /* Apply STL_MIDDLE if any */
4573 for (l = 0; l < itemcnt; l++)
4574 if (item[l].type == Middle)
4575 break;
4576 if (l < itemcnt)
4577 {
4578 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004579 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 for (s = item[l].start; s < p; s++)
4581 *s = fillchar;
4582 for (l++; l < itemcnt; l++)
4583 item[l].start += maxwidth - width;
4584 width = maxwidth;
4585 }
4586 }
4587
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004588 /* Store the info about highlighting. */
4589 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004591 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 for (l = 0; l < itemcnt; l++)
4593 {
4594 if (item[l].type == Highlight)
4595 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004596 sp->start = item[l].start;
4597 sp->userhl = item[l].minwid;
4598 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 }
4600 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004601 sp->start = NULL;
4602 sp->userhl = 0;
4603 }
4604
4605 /* Store the info about tab pages labels. */
4606 if (tabtab != NULL)
4607 {
4608 sp = tabtab;
4609 for (l = 0; l < itemcnt; l++)
4610 {
4611 if (item[l].type == TabPage)
4612 {
4613 sp->start = item[l].start;
4614 sp->userhl = item[l].minwid;
4615 sp++;
4616 }
4617 }
4618 sp->start = NULL;
4619 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620 }
4621
4622 return width;
4623}
4624#endif /* FEAT_STL_OPT */
4625
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004626#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4627 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004629 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4630 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 */
4632 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004633get_rel_pos(
4634 win_T *wp,
4635 char_u *buf,
4636 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637{
4638 long above; /* number of lines above window */
4639 long below; /* number of lines below window */
4640
Bram Moolenaar0027c212015-01-07 13:31:52 +01004641 if (buflen < 3) /* need at least 3 chars for writing */
4642 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 above = wp->w_topline - 1;
4644#ifdef FEAT_DIFF
4645 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004646 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4647 above = 0; /* All buffer lines are displayed and there is an
4648 * indication of filler lines, that can be considered
4649 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650#endif
4651 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4652 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004653 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4654 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004656 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004658 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 ? (int)(above / ((above + below) / 100L))
4660 : (int)(above * 100L / (above + below)));
4661}
4662#endif
4663
4664/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004665 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 * Return TRUE if it was appended.
4667 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004668 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004669append_arg_number(
4670 win_T *wp,
4671 char_u *buf,
4672 int buflen,
4673 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674{
4675 char_u *p;
4676
4677 if (ARGCOUNT <= 1) /* nothing to do */
4678 return FALSE;
4679
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004680 p = buf + STRLEN(buf); /* go to the end of the buffer */
4681 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 return FALSE;
4683 *p++ = ' ';
4684 *p++ = '(';
4685 if (add_file)
4686 {
4687 STRCPY(p, "file ");
4688 p += 5;
4689 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004690 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4691 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4693 return TRUE;
4694}
4695
4696/*
4697 * If fname is not a full path, make it a full path.
4698 * Returns pointer to allocated memory (NULL for failure).
4699 */
4700 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004701fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702{
4703 /*
4704 * Force expanding the path always for Unix, because symbolic links may
4705 * mess up the full path name, even though it starts with a '/'.
4706 * Also expand when there is ".." in the file name, try to remove it,
4707 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004708 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 * For MS-Windows also expand names like "longna~1" to "longname".
4710 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004711#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712 return FullName_save(fname, TRUE);
4713#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004714 if (!vim_isAbsName(fname)
4715 || strstr((char *)fname, "..") != NULL
4716 || strstr((char *)fname, "//") != NULL
4717# ifdef BACKSLASH_IN_FILENAME
4718 || strstr((char *)fname, "\\\\") != NULL
4719# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004720# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004722# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 )
4724 return FullName_save(fname, FALSE);
4725
4726 fname = vim_strsave(fname);
4727
Bram Moolenaar9b942202007-10-03 12:31:33 +00004728# ifdef USE_FNAME_CASE
4729# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004731# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 {
4733 if (fname != NULL)
4734 fname_case(fname, 0); /* set correct case for file name */
4735 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004736# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737
4738 return fname;
4739#endif
4740}
4741
4742/*
4743 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4744 * "ffname" becomes a pointer to allocated memory (or NULL).
4745 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004747fname_expand(
4748 buf_T *buf UNUSED,
4749 char_u **ffname,
4750 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751{
4752 if (*ffname == NULL) /* if no file name given, nothing to do */
4753 return;
4754 if (*sfname == NULL) /* if no short file name given, use ffname */
4755 *sfname = *ffname;
4756 *ffname = fix_fname(*ffname); /* expand to full path */
4757
4758#ifdef FEAT_SHORTCUT
4759 if (!buf->b_p_bin)
4760 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004761 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762
4763 /* If the file name is a shortcut file, use the file it links to. */
4764 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004765 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 {
4767 vim_free(*ffname);
4768 *ffname = rfname;
4769 *sfname = rfname;
4770 }
4771 }
4772#endif
4773}
4774
4775/*
4776 * Get the file name for an argument list entry.
4777 */
4778 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004779alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780{
4781 buf_T *bp;
4782
4783 /* Use the name from the associated buffer if it exists. */
4784 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004785 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 return aep->ae_fname;
4787 return bp->b_fname;
4788}
4789
4790#if defined(FEAT_WINDOWS) || defined(PROTO)
4791/*
4792 * do_arg_all(): Open up to 'count' windows, one for each argument.
4793 */
4794 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004795do_arg_all(
4796 int count,
4797 int forceit, /* hide buffers in current windows */
4798 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799{
4800 int i;
4801 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004802 char_u *opened; /* Array of weight for which args are open:
4803 * 0: not opened
4804 * 1: opened in other tab
4805 * 2: opened in curtab
4806 * 3: opened in curtab and curwin
4807 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004808 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 int use_firstwin = FALSE; /* use first window for arglist */
4810 int split_ret = OK;
4811 int p_ea_save;
4812 alist_T *alist; /* argument list to be used */
4813 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004814 tabpage_T *tpnext;
4815 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004816 win_T *old_curwin, *last_curwin;
4817 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004818 win_T *new_curwin = NULL;
4819 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820
4821 if (ARGCOUNT <= 0)
4822 {
4823 /* Don't give an error message. We don't want it when the ":all"
4824 * command is in the .vimrc. */
4825 return;
4826 }
4827 setpcmark();
4828
4829 opened_len = ARGCOUNT;
4830 opened = alloc_clear((unsigned)opened_len);
4831 if (opened == NULL)
4832 return;
4833
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004834 /* Autocommands may do anything to the argument list. Make sure it's not
4835 * freed while we are working here by "locking" it. We still have to
4836 * watch out for its size to be changed. */
4837 alist = curwin->w_alist;
4838 ++alist->al_refcount;
4839
4840 old_curwin = curwin;
4841 old_curtab = curtab;
4842
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004843# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004845# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846
4847 /*
4848 * Try closing all windows that are not in the argument list.
4849 * Also close windows that are not full width;
4850 * When 'hidden' or "forceit" set the buffer becomes hidden.
4851 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004852 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004854 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004855 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004856 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004858 tpnext = curtab->tp_next;
4859 for (wp = firstwin; wp != NULL; wp = wpnext)
4860 {
4861 wpnext = wp->w_next;
4862 buf = wp->w_buffer;
4863 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004864 || (!keep_tabs && (buf->b_nwindows > 1
4865 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004866 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004867 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004869 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004870 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004872 if (i < alist->al_ga.ga_len
4873 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4874 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4875 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004877 int weight = 1;
4878
4879 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004880 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004881 ++weight;
4882 if (old_curwin == wp)
4883 ++weight;
4884 }
4885
4886 if (weight > (int)opened[i])
4887 {
4888 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004889 if (i == 0)
4890 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004891 if (new_curwin != NULL)
4892 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004893 new_curwin = wp;
4894 new_curtab = curtab;
4895 }
4896 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004897 else if (keep_tabs)
4898 i = opened_len;
4899
4900 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004901 {
4902 /* Use the current argument list for all windows
4903 * containing a file from it. */
4904 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004905 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004906 ++wp->w_alist->al_refcount;
4907 }
4908 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 }
4911 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004912 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004914 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004916 if (P_HID(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004917 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004919 /* If the buffer was changed, and we would like to hide it,
4920 * try autowriting. */
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004921 if (!P_HID(buf) && buf->b_nwindows <= 1
4922 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004924#ifdef FEAT_AUTOCMD
4925 bufref_T bufref;
4926
4927 set_bufref(&bufref, buf);
4928#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004929 (void)autowrite(buf, FALSE);
4930#ifdef FEAT_AUTOCMD
4931 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004932 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004933 {
4934 wpnext = firstwin; /* start all over... */
4935 continue;
4936 }
4937#endif
4938 }
4939#ifdef FEAT_WINDOWS
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004940 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01004941 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004942 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004943#endif
4944 use_firstwin = TRUE;
4945#ifdef FEAT_WINDOWS
4946 else
4947 {
4948 win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4949# ifdef FEAT_AUTOCMD
4950 /* check if autocommands removed the next window */
4951 if (!win_valid(wpnext))
4952 wpnext = firstwin; /* start all over... */
4953# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 }
4955#endif
4956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 }
4958 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004959
4960 /* Without the ":tab" modifier only do the current tab page. */
4961 if (had_tab == 0 || tpnext == NULL)
4962 break;
4963
4964# ifdef FEAT_AUTOCMD
4965 /* check if autocommands removed the next tab page */
4966 if (!valid_tabpage(tpnext))
4967 tpnext = first_tabpage; /* start all over...*/
4968# endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004969 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 }
4971
4972 /*
4973 * Open a window for files in the argument list that don't have one.
4974 * ARGCOUNT may change while doing this, because of autocommands.
4975 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004976 if (count > opened_len || count <= 0)
4977 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978
4979#ifdef FEAT_AUTOCMD
4980 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4981 ++autocmd_no_enter;
4982 ++autocmd_no_leave;
4983#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004984 last_curwin = curwin;
4985 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004987#ifdef FEAT_WINDOWS
4988 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
4989 * leaving an empty tab page when executed locally. */
4990 if (keep_tabs && bufempty() && curbuf->b_nwindows == 1
4991 && curbuf->b_ffname == NULL && !curbuf->b_changed)
4992 use_firstwin = TRUE;
4993#endif
4994
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004995 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 {
4997 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4998 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004999 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 {
5001 /* Move the already present window to below the current window */
5002 if (curwin->w_arg_idx != i)
5003 {
5004 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5005 {
5006 if (wpnext->w_arg_idx == i)
5007 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005008 if (keep_tabs)
5009 {
5010 new_curwin = wpnext;
5011 new_curtab = curtab;
5012 }
5013 else
5014 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 break;
5016 }
5017 }
5018 }
5019 }
5020 else if (split_ret == OK)
5021 {
5022 if (!use_firstwin) /* split current window */
5023 {
5024 p_ea_save = p_ea;
5025 p_ea = TRUE; /* use space from all windows */
5026 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5027 p_ea = p_ea_save;
5028 if (split_ret == FAIL)
5029 continue;
5030 }
5031#ifdef FEAT_AUTOCMD
5032 else /* first window: do autocmd for leaving this buffer */
5033 --autocmd_no_leave;
5034#endif
5035
5036 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005037 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 */
5039 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005040 if (i == 0)
5041 {
5042 new_curwin = curwin;
5043 new_curtab = curtab;
5044 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5046 ECMD_ONE,
5047 ((P_HID(curwin->w_buffer)
5048 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005049 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050#ifdef FEAT_AUTOCMD
5051 if (use_firstwin)
5052 ++autocmd_no_leave;
5053#endif
5054 use_firstwin = FALSE;
5055 }
5056 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005057
5058 /* When ":tab" was used open a new tab for a new window repeatedly. */
5059 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5060 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 }
5062
5063 /* Remove the "lock" on the argument list. */
5064 alist_unlink(alist);
5065
5066#ifdef FEAT_AUTOCMD
5067 --autocmd_no_enter;
5068#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005069 /* restore last referenced tabpage's curwin */
5070 if (last_curtab != new_curtab)
5071 {
5072 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005073 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005074 if (win_valid(last_curwin))
5075 win_enter(last_curwin, FALSE);
5076 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005077 /* to window with first arg */
5078 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005079 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005080 if (win_valid(new_curwin))
5081 win_enter(new_curwin, FALSE);
5082
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083#ifdef FEAT_AUTOCMD
5084 --autocmd_no_leave;
5085#endif
5086 vim_free(opened);
5087}
5088
5089# if defined(FEAT_LISTCMDS) || defined(PROTO)
5090/*
5091 * Open a window for a number of buffers.
5092 */
5093 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005094ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095{
5096 buf_T *buf;
5097 win_T *wp, *wpnext;
5098 int split_ret = OK;
5099 int p_ea_save;
5100 int open_wins = 0;
5101 int r;
5102 int count; /* Maximum number of windows to open. */
5103 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005104#ifdef FEAT_WINDOWS
5105 int had_tab = cmdmod.tab;
5106 tabpage_T *tpnext;
5107#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108
5109 if (eap->addr_count == 0) /* make as many windows as possible */
5110 count = 9999;
5111 else
5112 count = eap->line2; /* make as many windows as specified */
5113 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5114 all = FALSE;
5115 else
5116 all = TRUE;
5117
5118 setpcmark();
5119
5120#ifdef FEAT_GUI
5121 need_mouse_correct = TRUE;
5122#endif
5123
5124 /*
5125 * Close superfluous windows (two windows for the same buffer).
5126 * Also close windows that are not full-width.
5127 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005128#ifdef FEAT_WINDOWS
5129 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005130 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005131 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005134 tpnext = curtab->tp_next;
5135 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005137 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005138 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005139#ifdef FEAT_WINDOWS
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005140 || ((cmdmod.split & WSP_VERT)
5141 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005142 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005143 : wp->w_width != Columns)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005144 || (had_tab > 0 && wp != firstwin)
5145#endif
Bram Moolenaar459ca562016-11-10 18:16:33 +01005146 ) && !ONE_WINDOW
Bram Moolenaar362ce482012-06-06 19:02:45 +02005147#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02005148 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02005149#endif
5150 )
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005151 {
5152 win_close(wp, FALSE);
5153#ifdef FEAT_AUTOCMD
5154 wpnext = firstwin; /* just in case an autocommand does
5155 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005156 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005157 open_wins = 0;
5158#endif
5159 }
5160 else
5161 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005163
5164#ifdef FEAT_WINDOWS
5165 /* Without the ":tab" modifier only do the current tab page. */
5166 if (had_tab == 0 || tpnext == NULL)
5167 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005168 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005170#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171
5172 /*
5173 * Go through the buffer list. When a buffer doesn't have a window yet,
5174 * open one. Otherwise move the window to the right position.
5175 * Watch out for autocommands that delete buffers or windows!
5176 */
5177#ifdef FEAT_AUTOCMD
5178 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5179 ++autocmd_no_enter;
5180#endif
5181 win_enter(lastwin, FALSE);
5182#ifdef FEAT_AUTOCMD
5183 ++autocmd_no_leave;
5184#endif
5185 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5186 {
5187 /* Check if this buffer needs a window */
5188 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5189 continue;
5190
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005191#ifdef FEAT_WINDOWS
5192 if (had_tab != 0)
5193 {
5194 /* With the ":tab" modifier don't move the window. */
5195 if (buf->b_nwindows > 0)
5196 wp = lastwin; /* buffer has a window, skip it */
5197 else
5198 wp = NULL;
5199 }
5200 else
5201#endif
5202 {
5203 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005204 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005205 if (wp->w_buffer == buf)
5206 break;
5207 /* If the buffer already has a window, move it */
5208 if (wp != NULL)
5209 win_move_after(wp, curwin);
5210 }
5211
5212 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005214#ifdef FEAT_AUTOCMD
5215 bufref_T bufref;
5216
5217 set_bufref(&bufref, buf);
5218#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005219 /* Split the window and put the buffer in it */
5220 p_ea_save = p_ea;
5221 p_ea = TRUE; /* use space from all windows */
5222 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5223 ++open_wins;
5224 p_ea = p_ea_save;
5225 if (split_ret == FAIL)
5226 continue;
5227
5228 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005229#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 swap_exists_action = SEA_DIALOG;
5231#endif
5232 set_curbuf(buf, DOBUF_GOTO);
5233#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005234 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005236 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005237#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005239# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 break;
5241 }
5242#endif
Bram Moolenaare64ac772005-12-07 20:54:59 +00005243#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 if (swap_exists_action == SEA_QUIT)
5245 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005246# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5247 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005248
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005249 /* Reset the error/interrupt/exception state here so that
5250 * aborting() returns FALSE when closing a window. */
5251 enter_cleanup(&cs);
5252# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005253
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005254 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 win_close(curwin, TRUE);
5256 --open_wins;
5257 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005258 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005259
5260# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5261 /* Restore the error/interrupt/exception state if not
5262 * discarded by a new aborting error, interrupt, or uncaught
5263 * exception. */
5264 leave_cleanup(&cs);
5265# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 }
5267 else
5268 handle_swap_exists(NULL);
5269#endif
5270 }
5271
5272 ui_breakcheck();
5273 if (got_int)
5274 {
5275 (void)vgetc(); /* only break the file loading, not the rest */
5276 break;
5277 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005278#ifdef FEAT_EVAL
5279 /* Autocommands deleted the buffer or aborted script processing!!! */
5280 if (aborting())
5281 break;
5282#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005283#ifdef FEAT_WINDOWS
5284 /* When ":tab" was used open a new tab for a new window repeatedly. */
5285 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5286 cmdmod.tab = 9999;
5287#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288 }
5289#ifdef FEAT_AUTOCMD
5290 --autocmd_no_enter;
5291#endif
5292 win_enter(firstwin, FALSE); /* back to first window */
5293#ifdef FEAT_AUTOCMD
5294 --autocmd_no_leave;
5295#endif
5296
5297 /*
5298 * Close superfluous windows.
5299 */
5300 for (wp = lastwin; open_wins > count; )
5301 {
5302 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
5303 || autowrite(wp->w_buffer, FALSE) == OK);
5304#ifdef FEAT_AUTOCMD
5305 if (!win_valid(wp))
5306 {
5307 /* BufWrite Autocommands made the window invalid, start over */
5308 wp = lastwin;
5309 }
5310 else
5311#endif
5312 if (r)
5313 {
5314 win_close(wp, !P_HID(wp->w_buffer));
5315 --open_wins;
5316 wp = lastwin;
5317 }
5318 else
5319 {
5320 wp = wp->w_prev;
5321 if (wp == NULL)
5322 break;
5323 }
5324 }
5325}
5326# endif /* FEAT_LISTCMDS */
5327
5328#endif /* FEAT_WINDOWS */
5329
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005330static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005331
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332/*
5333 * do_modelines() - process mode lines for the current file
5334 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005335 * "flags" can be:
5336 * OPT_WINONLY only set options local to window
5337 * OPT_NOWIN don't set options local to window
5338 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 * Returns immediately if the "ml" option isn't set.
5340 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005342do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005344 linenr_T lnum;
5345 int nmlines;
5346 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347
5348 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5349 return;
5350
5351 /* Disallow recursive entry here. Can happen when executing a modeline
5352 * triggers an autocommand, which reloads modelines with a ":do". */
5353 if (entered)
5354 return;
5355
5356 ++entered;
5357 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5358 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005359 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 nmlines = 0;
5361
5362 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5363 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005364 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 nmlines = 0;
5366 --entered;
5367}
5368
5369#include "version.h" /* for version number */
5370
5371/*
5372 * chk_modeline() - check a single line for a mode string
5373 * Return FAIL if an error encountered.
5374 */
5375 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005376chk_modeline(
5377 linenr_T lnum,
5378 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379{
5380 char_u *s;
5381 char_u *e;
5382 char_u *linecopy; /* local copy of any modeline found */
5383 int prev;
5384 int vers;
5385 int end;
5386 int retval = OK;
5387 char_u *save_sourcing_name;
5388 linenr_T save_sourcing_lnum;
5389#ifdef FEAT_EVAL
5390 scid_T save_SID;
5391#endif
5392
5393 prev = -1;
5394 for (s = ml_get(lnum); *s != NUL; ++s)
5395 {
5396 if (prev == -1 || vim_isspace(prev))
5397 {
5398 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5399 || STRNCMP(s, "vi:", (size_t)3) == 0)
5400 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005401 /* Accept both "vim" and "Vim". */
5402 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 {
5404 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5405 e = s + 4;
5406 else
5407 e = s + 3;
5408 vers = getdigits(&e);
5409 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005410 && (s[0] != 'V'
5411 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 && (s[3] == ':'
5413 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5414 || (VIM_VERSION_100 < vers && s[3] == '<')
5415 || (VIM_VERSION_100 > vers && s[3] == '>')
5416 || (VIM_VERSION_100 == vers && s[3] == '=')))
5417 break;
5418 }
5419 }
5420 prev = *s;
5421 }
5422
5423 if (*s)
5424 {
5425 do /* skip over "ex:", "vi:" or "vim:" */
5426 ++s;
5427 while (s[-1] != ':');
5428
5429 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5430 if (linecopy == NULL)
5431 return FAIL;
5432
5433 save_sourcing_lnum = sourcing_lnum;
5434 save_sourcing_name = sourcing_name;
5435 sourcing_lnum = lnum; /* prepare for emsg() */
5436 sourcing_name = (char_u *)"modelines";
5437
5438 end = FALSE;
5439 while (end == FALSE)
5440 {
5441 s = skipwhite(s);
5442 if (*s == NUL)
5443 break;
5444
5445 /*
5446 * Find end of set command: ':' or end of line.
5447 * Skip over "\:", replacing it with ":".
5448 */
5449 for (e = s; *e != ':' && *e != NUL; ++e)
5450 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005451 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 if (*e == NUL)
5453 end = TRUE;
5454
5455 /*
5456 * If there is a "set" command, require a terminating ':' and
5457 * ignore the stuff after the ':'.
5458 * "vi:set opt opt opt: foo" -- foo not interpreted
5459 * "vi:opt opt opt: foo" -- foo interpreted
5460 * Accept "se" for compatibility with Elvis.
5461 */
5462 if (STRNCMP(s, "set ", (size_t)4) == 0
5463 || STRNCMP(s, "se ", (size_t)3) == 0)
5464 {
5465 if (*e != ':') /* no terminating ':'? */
5466 break;
5467 end = TRUE;
5468 s = vim_strchr(s, ' ') + 1;
5469 }
5470 *e = NUL; /* truncate the set command */
5471
5472 if (*s != NUL) /* skip over an empty "::" */
5473 {
5474#ifdef FEAT_EVAL
5475 save_SID = current_SID;
5476 current_SID = SID_MODELINE;
5477#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005478 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479#ifdef FEAT_EVAL
5480 current_SID = save_SID;
5481#endif
5482 if (retval == FAIL) /* stop if error found */
5483 break;
5484 }
5485 s = e + 1; /* advance to next part */
5486 }
5487
5488 sourcing_lnum = save_sourcing_lnum;
5489 sourcing_name = save_sourcing_name;
5490
5491 vim_free(linecopy);
5492 }
5493 return retval;
5494}
5495
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005496#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005498read_viminfo_bufferlist(
5499 vir_T *virp,
5500 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501{
5502 char_u *tab;
5503 linenr_T lnum;
5504 colnr_T col;
5505 buf_T *buf;
5506 char_u *sfname;
5507 char_u *xline;
5508
5509 /* Handle long line and escaped characters. */
5510 xline = viminfo_readstring(virp, 1, FALSE);
5511
5512 /* don't read in if there are files on the command-line or if writing: */
5513 if (xline != NULL && !writing && ARGCOUNT == 0
5514 && find_viminfo_parameter('%') != NULL)
5515 {
5516 /* Format is: <fname> Tab <lnum> Tab <col>.
5517 * Watch out for a Tab in the file name, work from the end. */
5518 lnum = 0;
5519 col = 0;
5520 tab = vim_strrchr(xline, '\t');
5521 if (tab != NULL)
5522 {
5523 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005524 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 tab = vim_strrchr(xline, '\t');
5526 if (tab != NULL)
5527 {
5528 *tab++ = '\0';
5529 lnum = atol((char *)tab);
5530 }
5531 }
5532
5533 /* Expand "~/" in the file name at "line + 1" to a full path.
5534 * Then try shortening it by comparing with the current directory */
5535 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005536 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537
5538 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5539 if (buf != NULL) /* just in case... */
5540 {
5541 buf->b_last_cursor.lnum = lnum;
5542 buf->b_last_cursor.col = col;
5543 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5544 }
5545 }
5546 vim_free(xline);
5547
5548 return viminfo_readline(virp);
5549}
5550
5551 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005552write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553{
5554 buf_T *buf;
5555#ifdef FEAT_WINDOWS
5556 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005557 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558#endif
5559 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005560 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561
5562 if (find_viminfo_parameter('%') == NULL)
5563 return;
5564
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005565 /* Without a number -1 is returned: do all buffers. */
5566 max_buffers = get_viminfo_parameter('%');
5567
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005569#define LINE_BUF_LEN (MAXPATHL + 40)
5570 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 if (line == NULL)
5572 return;
5573
5574#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00005575 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 set_last_cursor(win);
5577#else
5578 set_last_cursor(curwin);
5579#endif
5580
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005581 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005582 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 {
5584 if (buf->b_fname == NULL
5585 || !buf->b_p_bl
5586#ifdef FEAT_QUICKFIX
5587 || bt_quickfix(buf)
5588#endif
5589 || removable(buf->b_ffname))
5590 continue;
5591
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005592 if (max_buffers-- == 0)
5593 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 putc('%', fp);
5595 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005596 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 (long)buf->b_last_cursor.lnum,
5598 buf->b_last_cursor.col);
5599 viminfo_writestring(fp, line);
5600 }
5601 vim_free(line);
5602}
5603#endif
5604
5605
5606/*
5607 * Return special buffer name.
5608 * Returns NULL when the buffer has a normal file name.
5609 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005610 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005611buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612{
5613#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
5614 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005615 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005616 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005617 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005618
5619 /*
5620 * For location list window, w_llist_ref points to the location list.
5621 * For quickfix window, w_llist_ref is NULL.
5622 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005623 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005624 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005625 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005626 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005627 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628#endif
5629#ifdef FEAT_QUICKFIX
5630 /* There is no _file_ when 'buftype' is "nofile", b_sfname
5631 * contains the name as specified by the user */
5632 if (bt_nofile(buf))
5633 {
5634 if (buf->b_sfname != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005635 return buf->b_sfname;
5636 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637 }
5638#endif
5639 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005640 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641 return NULL;
5642}
5643
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005644#if (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
5645 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5646 || defined(PROTO)
5647/*
5648 * Find a window for buffer "buf".
5649 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5650 * If not found FAIL is returned.
5651 */
5652 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005653find_win_for_buf(
5654 buf_T *buf,
5655 win_T **wp,
5656 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005657{
5658 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5659 if ((*wp)->w_buffer == buf)
5660 goto win_found;
5661 return FAIL;
5662win_found:
5663 return OK;
5664}
5665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666
5667#if defined(FEAT_SIGNS) || defined(PROTO)
5668/*
5669 * Insert the sign into the signlist.
5670 */
5671 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005672insert_sign(
5673 buf_T *buf, /* buffer to store sign in */
5674 signlist_T *prev, /* previous sign entry */
5675 signlist_T *next, /* next sign entry */
5676 int id, /* sign ID */
5677 linenr_T lnum, /* line number which gets the mark */
5678 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679{
5680 signlist_T *newsign;
5681
5682 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5683 if (newsign != NULL)
5684 {
5685 newsign->id = id;
5686 newsign->lnum = lnum;
5687 newsign->typenr = typenr;
5688 newsign->next = next;
5689#ifdef FEAT_NETBEANS_INTG
5690 newsign->prev = prev;
5691 if (next != NULL)
5692 next->prev = newsign;
5693#endif
5694
5695 if (prev == NULL)
5696 {
5697 /* When adding first sign need to redraw the windows to create the
5698 * column for signs. */
5699 if (buf->b_signlist == NULL)
5700 {
5701 redraw_buf_later(buf, NOT_VALID);
5702 changed_cline_bef_curs();
5703 }
5704
5705 /* first sign in signlist */
5706 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005707#ifdef FEAT_NETBEANS_INTG
5708 if (netbeans_active())
5709 buf->b_has_sign_column = TRUE;
5710#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711 }
5712 else
5713 prev->next = newsign;
5714 }
5715}
5716
5717/*
5718 * Add the sign into the signlist. Find the right spot to do it though.
5719 */
5720 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005721buf_addsign(
5722 buf_T *buf, /* buffer to store sign in */
5723 int id, /* sign ID */
5724 linenr_T lnum, /* line number which gets the mark */
5725 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726{
5727 signlist_T *sign; /* a sign in the signlist */
5728 signlist_T *prev; /* the previous sign */
5729
5730 prev = NULL;
5731 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5732 {
5733 if (lnum == sign->lnum && id == sign->id)
5734 {
5735 sign->typenr = typenr;
5736 return;
5737 }
5738 else if (
5739#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5740 id < 0 &&
5741#endif
5742 lnum < sign->lnum)
5743 {
5744#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5745 /* XXX - GRP: Is this because of sign slide problem? Or is it
5746 * really needed? Or is it because we allow multiple signs per
5747 * line? If so, should I add that feature to FEAT_SIGNS?
5748 */
5749 while (prev != NULL && prev->lnum == lnum)
5750 prev = prev->prev;
5751 if (prev == NULL)
5752 sign = buf->b_signlist;
5753 else
5754 sign = prev->next;
5755#endif
5756 insert_sign(buf, prev, sign, id, lnum, typenr);
5757 return;
5758 }
5759 prev = sign;
5760 }
5761#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5762 /* XXX - GRP: See previous comment */
5763 while (prev != NULL && prev->lnum == lnum)
5764 prev = prev->prev;
5765 if (prev == NULL)
5766 sign = buf->b_signlist;
5767 else
5768 sign = prev->next;
5769#endif
5770 insert_sign(buf, prev, sign, id, lnum, typenr);
5771
5772 return;
5773}
5774
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005775/*
5776 * For an existing, placed sign "markId" change the type to "typenr".
5777 * Returns the line number of the sign, or zero if the sign is not found.
5778 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005779 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005780buf_change_sign_type(
5781 buf_T *buf, /* buffer to store sign in */
5782 int markId, /* sign ID */
5783 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784{
5785 signlist_T *sign; /* a sign in the signlist */
5786
5787 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5788 {
5789 if (sign->id == markId)
5790 {
5791 sign->typenr = typenr;
5792 return sign->lnum;
5793 }
5794 }
5795
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005796 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797}
5798
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005799 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005800buf_getsigntype(
5801 buf_T *buf,
5802 linenr_T lnum,
5803 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804{
5805 signlist_T *sign; /* a sign in a b_signlist */
5806
5807 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5808 if (sign->lnum == lnum
5809 && (type == SIGN_ANY
5810# ifdef FEAT_SIGN_ICONS
5811 || (type == SIGN_ICON
5812 && sign_get_image(sign->typenr) != NULL)
5813# endif
5814 || (type == SIGN_TEXT
5815 && sign_get_text(sign->typenr) != NULL)
5816 || (type == SIGN_LINEHL
5817 && sign_get_attr(sign->typenr, TRUE) != 0)))
5818 return sign->typenr;
5819 return 0;
5820}
5821
5822
5823 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005824buf_delsign(
5825 buf_T *buf, /* buffer sign is stored in */
5826 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827{
5828 signlist_T **lastp; /* pointer to pointer to current sign */
5829 signlist_T *sign; /* a sign in a b_signlist */
5830 signlist_T *next; /* the next sign in a b_signlist */
5831 linenr_T lnum; /* line number whose sign was deleted */
5832
5833 lastp = &buf->b_signlist;
5834 lnum = 0;
5835 for (sign = buf->b_signlist; sign != NULL; sign = next)
5836 {
5837 next = sign->next;
5838 if (sign->id == id)
5839 {
5840 *lastp = next;
5841#ifdef FEAT_NETBEANS_INTG
5842 if (next != NULL)
5843 next->prev = sign->prev;
5844#endif
5845 lnum = sign->lnum;
5846 vim_free(sign);
5847 break;
5848 }
5849 else
5850 lastp = &sign->next;
5851 }
5852
5853 /* When deleted the last sign need to redraw the windows to remove the
5854 * sign column. */
5855 if (buf->b_signlist == NULL)
5856 {
5857 redraw_buf_later(buf, NOT_VALID);
5858 changed_cline_bef_curs();
5859 }
5860
5861 return lnum;
5862}
5863
5864
5865/*
5866 * Find the line number of the sign with the requested id. If the sign does
5867 * not exist, return 0 as the line number. This will still let the correct file
5868 * get loaded.
5869 */
5870 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005871buf_findsign(
5872 buf_T *buf, /* buffer to store sign in */
5873 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874{
5875 signlist_T *sign; /* a sign in the signlist */
5876
5877 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5878 if (sign->id == id)
5879 return sign->lnum;
5880
5881 return 0;
5882}
5883
5884 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005885buf_findsign_id(
5886 buf_T *buf, /* buffer whose sign we are searching for */
5887 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888{
5889 signlist_T *sign; /* a sign in the signlist */
5890
5891 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5892 if (sign->lnum == lnum)
5893 return sign->id;
5894
5895 return 0;
5896}
5897
5898
5899# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5900/* see if a given type of sign exists on a specific line */
5901 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005902buf_findsigntype_id(
5903 buf_T *buf, /* buffer whose sign we are searching for */
5904 linenr_T lnum, /* line number of sign */
5905 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906{
5907 signlist_T *sign; /* a sign in the signlist */
5908
5909 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5910 if (sign->lnum == lnum && sign->typenr == typenr)
5911 return sign->id;
5912
5913 return 0;
5914}
5915
5916
5917# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5918/* return the number of icons on the given line */
5919 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005920buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921{
5922 signlist_T *sign; /* a sign in the signlist */
5923 int count = 0;
5924
5925 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5926 if (sign->lnum == lnum)
5927 if (sign_get_image(sign->typenr) != NULL)
5928 count++;
5929
5930 return count;
5931}
5932# endif /* FEAT_SIGN_ICONS */
5933# endif /* FEAT_NETBEANS_INTG */
5934
5935
5936/*
5937 * Delete signs in buffer "buf".
5938 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02005939 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005940buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941{
5942 signlist_T *next;
5943
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005944 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02005945 * sign column. Not when curwin is NULL (this means we're exiting). */
5946 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005947 {
5948 redraw_buf_later(buf, NOT_VALID);
5949 changed_cline_bef_curs();
5950 }
5951
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952 while (buf->b_signlist != NULL)
5953 {
5954 next = buf->b_signlist->next;
5955 vim_free(buf->b_signlist);
5956 buf->b_signlist = next;
5957 }
5958}
5959
5960/*
5961 * Delete all signs in all buffers.
5962 */
5963 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005964buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965{
5966 buf_T *buf; /* buffer we are checking for signs */
5967
Bram Moolenaar29323592016-07-24 22:04:11 +02005968 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005969 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971}
5972
5973/*
5974 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
5975 */
5976 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005977sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978{
5979 buf_T *buf;
5980 signlist_T *p;
5981 char lbuf[BUFSIZ];
5982
5983 MSG_PUTS_TITLE(_("\n--- Signs ---"));
5984 msg_putchar('\n');
5985 if (rbuf == NULL)
5986 buf = firstbuf;
5987 else
5988 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005989 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 {
5991 if (buf->b_signlist != NULL)
5992 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005993 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
5995 msg_putchar('\n');
5996 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005997 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005999 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
6001 MSG_PUTS(lbuf);
6002 msg_putchar('\n');
6003 }
6004 if (rbuf != NULL)
6005 break;
6006 buf = buf->b_next;
6007 }
6008}
6009
6010/*
6011 * Adjust a placed sign for inserted/deleted lines.
6012 */
6013 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006014sign_mark_adjust(
6015 linenr_T line1,
6016 linenr_T line2,
6017 long amount,
6018 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019{
6020 signlist_T *sign; /* a sign in a b_signlist */
6021
6022 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6023 {
6024 if (sign->lnum >= line1 && sign->lnum <= line2)
6025 {
6026 if (amount == MAXLNUM)
6027 sign->lnum = line1;
6028 else
6029 sign->lnum += amount;
6030 }
6031 else if (sign->lnum > line2)
6032 sign->lnum += amount_after;
6033 }
6034}
6035#endif /* FEAT_SIGNS */
6036
6037/*
6038 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6039 */
6040 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006041set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042{
6043 if (on != curbuf->b_p_bl)
6044 {
6045 curbuf->b_p_bl = on;
6046#ifdef FEAT_AUTOCMD
6047 if (on)
6048 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6049 else
6050 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
6051#endif
6052 }
6053}
6054
6055/*
6056 * Read the file for "buf" again and check if the contents changed.
6057 * Return TRUE if it changed or this could not be checked.
6058 */
6059 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006060buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061{
6062 buf_T *newbuf;
6063 int differ = TRUE;
6064 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066 exarg_T ea;
6067
6068 /* Allocate a buffer without putting it in the buffer list. */
6069 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6070 if (newbuf == NULL)
6071 return TRUE;
6072
6073 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6074 if (prep_exarg(&ea, buf) == FAIL)
6075 {
6076 wipe_buffer(newbuf, FALSE);
6077 return TRUE;
6078 }
6079
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080 /* set curwin/curbuf to buf and save a few things */
6081 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082
Bram Moolenaar4770d092006-01-12 23:22:24 +00006083 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084 && readfile(buf->b_ffname, buf->b_fname,
6085 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6086 &ea, READ_NEW | READ_DUMMY) == OK)
6087 {
6088 /* compare the two files line by line */
6089 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6090 {
6091 differ = FALSE;
6092 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6093 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6094 {
6095 differ = TRUE;
6096 break;
6097 }
6098 }
6099 }
6100 vim_free(ea.cmd);
6101
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102 /* restore curwin/curbuf and a few other things */
6103 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104
6105 if (curbuf != newbuf) /* safety check */
6106 wipe_buffer(newbuf, FALSE);
6107
6108 return differ;
6109}
6110
6111/*
6112 * Wipe out a buffer and decrement the last buffer number if it was used for
6113 * this buffer. Call this to wipe out a temp buffer that does not contain any
6114 * marks.
6115 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006117wipe_buffer(
6118 buf_T *buf,
6119 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006120{
6121 if (buf->b_fnum == top_file_num - 1)
6122 --top_file_num;
6123
6124#ifdef FEAT_AUTOCMD
6125 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006126 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006128 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129#ifdef FEAT_AUTOCMD
6130 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006131 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132#endif
6133}