blob: e77fc04976fa58929848c28e10944e397564b044 [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();
116 else if (retval != FAIL)
117 unchanged(curbuf, FALSE);
118
119#ifdef FEAT_AUTOCMD
120# ifdef FEAT_EVAL
121 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
122 curbuf, &retval);
123# else
124 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
125# endif
126#endif
127 }
128 return retval;
129}
130
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200132 * Open current buffer, that is: open the memfile and read the file into
133 * memory.
134 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135 */
136 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100137open_buffer(
138 int read_stdin, /* read file from stdin */
139 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */
140 int flags) /* extra flags for readfile() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141{
142 int retval = OK;
143#ifdef FEAT_AUTOCMD
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200144 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100146#ifdef FEAT_SYN_HL
147 long old_tw = curbuf->b_p_tw;
148#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200149 int read_fifo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150
151 /*
152 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
153 * When re-entering the same buffer, it should not change, because the
154 * user may have reset the flag by hand.
155 */
156 if (readonlymode && curbuf->b_ffname != NULL
157 && (curbuf->b_flags & BF_NEVERLOADED))
158 curbuf->b_p_ro = TRUE;
159
Bram Moolenaar4770d092006-01-12 23:22:24 +0000160 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 {
162 /*
163 * There MUST be a memfile, otherwise we can't do anything
164 * If we can't create one for the current buffer, take another buffer
165 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100166 close_buffer(NULL, curbuf, 0, FALSE);
Bram Moolenaar29323592016-07-24 22:04:11 +0200167 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168 if (curbuf->b_ml.ml_mfp != NULL)
169 break;
170 /*
171 * if there is no memfile at all, exit
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000172 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173 */
174 if (curbuf == NULL)
175 {
176 EMSG(_("E82: Cannot allocate any buffer, exiting..."));
177 getout(2);
178 }
179 EMSG(_("E83: Cannot allocate buffer, using other one..."));
180 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100181#ifdef FEAT_SYN_HL
182 if (old_tw != curbuf->b_p_tw)
183 check_colorcolumn(curwin);
184#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185 return FAIL;
186 }
187
188#ifdef FEAT_AUTOCMD
189 /* The autocommands in readfile() may change the buffer, but only AFTER
190 * reading the file. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200191 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 modified_was_set = FALSE;
193#endif
194
195 /* mark cursor position as being invalid */
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100196 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197
198 if (curbuf->b_ffname != NULL
199#ifdef FEAT_NETBEANS_INTG
200 && netbeansReadFile
201#endif
202 )
203 {
Bram Moolenaar426dd022016-03-15 15:09:29 +0100204 int old_msg_silent = msg_silent;
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200205#ifdef UNIX
206 int save_bin = curbuf->b_p_bin;
207 int perm;
208#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209#ifdef FEAT_NETBEANS_INTG
210 int oldFire = netbeansFireChanges;
211
212 netbeansFireChanges = 0;
213#endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200214#ifdef UNIX
215 perm = mch_getperm(curbuf->b_ffname);
216 if (perm >= 0 && (0
217# ifdef S_ISFIFO
218 || S_ISFIFO(perm)
219# endif
220# ifdef S_ISSOCK
221 || S_ISSOCK(perm)
222# endif
Bram Moolenaarf04507d2016-08-20 15:05:39 +0200223# ifdef OPEN_CHR_FILES
224 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
225# endif
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200226 ))
227 read_fifo = TRUE;
228 if (read_fifo)
229 curbuf->b_p_bin = TRUE;
230#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100231 if (shortmess(SHM_FILEINFO))
232 msg_silent = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200234 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200235 flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
236#ifdef UNIX
237 if (read_fifo)
238 {
239 curbuf->b_p_bin = save_bin;
240 if (retval == OK)
241 retval = read_buffer(FALSE, eap, flags);
242 }
243#endif
Bram Moolenaar426dd022016-03-15 15:09:29 +0100244 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245#ifdef FEAT_NETBEANS_INTG
246 netbeansFireChanges = oldFire;
247#endif
248 /* Help buffer is filtered. */
249 if (curbuf->b_help)
250 fix_help_buffer();
251 }
252 else if (read_stdin)
253 {
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200254 int save_bin = curbuf->b_p_bin;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255
256 /*
257 * First read the text in binary mode into the buffer.
258 * Then read from that same buffer and append at the end. This makes
259 * it possible to retry when 'fileformat' or 'fileencoding' was
260 * guessed wrong.
261 */
262 curbuf->b_p_bin = TRUE;
263 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200264 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
265 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 curbuf->b_p_bin = save_bin;
267 if (retval == OK)
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200268 retval = read_buffer(TRUE, eap, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 }
270
271 /* if first time loading this buffer, init b_chartab[] */
272 if (curbuf->b_flags & BF_NEVERLOADED)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100273 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 (void)buf_init_chartab(curbuf, FALSE);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100275#ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100276 parse_cino(curbuf);
Bram Moolenaardce7c912013-11-05 17:40:52 +0100277#endif
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100278 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279
280 /*
281 * Set/reset the Changed flag first, autocmds may change the buffer.
282 * Apply the automatic commands, before processing the modelines.
283 * So the modelines have priority over auto commands.
284 */
285 /* When reading stdin, the buffer contents always needs writing, so set
286 * the changed flag. Unless in readonly mode: "ls | gview -".
287 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000288 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289#ifdef FEAT_AUTOCMD
290 || modified_was_set /* ":set modified" used in autocmd */
291# ifdef FEAT_EVAL
292 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
293# endif
294#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000295 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296 changed();
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200297 else if (retval != FAIL && !read_stdin && !read_fifo)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 unchanged(curbuf, FALSE);
299 save_file_ff(curbuf); /* keep this fileformat */
300
301 /* require "!" to overwrite the file, because it wasn't read completely */
302#ifdef FEAT_EVAL
303 if (aborting())
304#else
305 if (got_int)
306#endif
307 curbuf->b_flags |= BF_READERR;
308
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000309#ifdef FEAT_FOLDING
310 /* Need to update automatic folding. Do this before the autocommands,
311 * they may use the fold info. */
312 foldUpdateAll(curwin);
313#endif
314
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315#ifdef FEAT_AUTOCMD
316 /* need to set w_topline, unless some autocommand already did that. */
317 if (!(curwin->w_valid & VALID_TOPLINE))
318 {
319 curwin->w_topline = 1;
320# ifdef FEAT_DIFF
321 curwin->w_topfill = 0;
322# endif
323 }
324# ifdef FEAT_EVAL
325 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
326# else
327 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
328# endif
329#endif
330
331 if (retval != FAIL)
332 {
333#ifdef FEAT_AUTOCMD
334 /*
335 * The autocommands may have changed the current buffer. Apply the
336 * modelines to the correct buffer, if it still exists and is loaded.
337 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200338 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 {
340 aco_save_T aco;
341
342 /* Go to the buffer that was opened. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200343 aucmd_prepbuf(&aco, old_curbuf.br_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +0000345 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
347
348#ifdef FEAT_AUTOCMD
349# ifdef FEAT_EVAL
350 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
351 &retval);
352# else
353 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
354# endif
355
356 /* restore curwin/curbuf and a few other things */
357 aucmd_restbuf(&aco);
358 }
359#endif
360 }
361
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 return retval;
363}
364
365/*
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200366 * Store "buf" in "bufref" and set the free count.
367 */
368 void
369set_bufref(bufref_T *bufref, buf_T *buf)
370{
371 bufref->br_buf = buf;
372 bufref->br_buf_free_count = buf_free_count;
373}
374
375/*
376 * Return TRUE if "bufref->br_buf" points to a valid buffer.
377 * Only goes through the buffer list if buf_free_count changed.
378 */
379 int
380bufref_valid(bufref_T *bufref)
381{
382 return bufref->br_buf_free_count == buf_free_count
383 ? TRUE : buf_valid(bufref->br_buf);
384}
385
386/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200388 * This can be slow if there are many buffers, prefer using bufref_valid().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 */
390 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100391buf_valid(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392{
393 buf_T *bp;
394
Bram Moolenaar82404332016-07-10 17:00:38 +0200395 /* Assume that we more often have a recent buffer, start with the last
396 * one. */
397 for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 if (bp == buf)
399 return TRUE;
400 return FALSE;
401}
402
403/*
Bram Moolenaar480778b2016-07-14 22:09:39 +0200404 * A hash table used to quickly lookup a buffer by its number.
405 */
406static hashtab_T buf_hashtab;
407
408 static void
409buf_hashtab_add(buf_T *buf)
410{
411 sprintf((char *)buf->b_key, "%x", buf->b_fnum);
412 if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
413 EMSG(_("E931: Buffer cannot be registered"));
414}
415
416 static void
417buf_hashtab_remove(buf_T *buf)
418{
419 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
420
421 if (!HASHITEM_EMPTY(hi))
422 hash_remove(&buf_hashtab, hi);
423}
424
425/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 * Close the link to a buffer.
427 * "action" is used when there is no longer a window for the buffer.
428 * It can be:
429 * 0 buffer becomes hidden
430 * DOBUF_UNLOAD buffer is unloaded
431 * DOBUF_DELETE buffer is unloaded and removed from buffer list
432 * DOBUF_WIPE buffer is unloaded and really deleted
433 * When doing all but the first one on the current buffer, the caller should
434 * get a new buffer very soon!
435 *
436 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100437 *
438 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
439 * cause there to be only one window with this buffer. e.g. when ":quit" is
440 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 */
442 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100443close_buffer(
444 win_T *win, /* if not NULL, set b_last_cursor */
445 buf_T *buf,
446 int action,
447 int abort_if_last UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448{
449#ifdef FEAT_AUTOCMD
450 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100451 int nwindows;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200452 bufref_T bufref;
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200453# ifdef FEAT_WINDOWS
Bram Moolenaar3a117e12016-10-30 21:57:52 +0100454 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200455 win_T *the_curwin = curwin;
456 tabpage_T *the_curtab = curtab;
457# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458#endif
459 int unload_buf = (action != 0);
460 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
461 int wipe_buf = (action == DOBUF_WIPE);
462
463#ifdef FEAT_QUICKFIX
464 /*
465 * Force unloading or deleting when 'bufhidden' says so.
466 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
467 * "hide" (otherwise we could never free or delete a buffer).
468 */
469 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
470 {
471 del_buf = TRUE;
472 unload_buf = TRUE;
473 }
474 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
475 {
476 del_buf = TRUE;
477 unload_buf = TRUE;
478 wipe_buf = TRUE;
479 }
480 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
481 unload_buf = TRUE;
482#endif
483
Bram Moolenaar30180b82016-09-04 19:57:56 +0200484#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200485 /* Disallow deleting the buffer when it is locked (already being closed or
486 * halfway a command that relies on it). Unloading is allowed. */
487 if (buf->b_locked > 0 && (del_buf || wipe_buf))
488 {
489 EMSG(_("E937: Attempt to delete a buffer that is in use"));
490 return;
491 }
Bram Moolenaar30180b82016-09-04 19:57:56 +0200492#endif
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200493
Bram Moolenaar3be85852014-06-12 14:01:31 +0200494 if (win != NULL
495#ifdef FEAT_WINDOWS
Bram Moolenaare59215c2016-08-14 19:08:45 +0200496 && win_valid_any_tab(win) /* in case autocommands closed the window */
Bram Moolenaar3be85852014-06-12 14:01:31 +0200497#endif
498 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 {
500 /* Set b_last_cursor when closing the last window for the buffer.
501 * Remember the last cursor position and window options of the buffer.
502 * This used to be only for the current window, but then options like
503 * 'foldmethod' may be lost with a ":only" command. */
504 if (buf->b_nwindows == 1)
505 set_last_cursor(win);
506 buflist_setfpos(buf, win,
507 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
508 win->w_cursor.col, TRUE);
509 }
510
511#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200512 set_bufref(&bufref, buf);
513
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514 /* When the buffer is no longer in a window, trigger BufWinLeave */
515 if (buf->b_nwindows == 1)
516 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200517 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200518 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
519 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200520 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100521 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200522 /* Autocommands deleted the buffer. */
523aucmd_abort:
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100524 EMSG(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100526 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200527 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200528 if (abort_if_last && one_window())
529 /* Autocommands made this the only window. */
530 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531
532 /* When the buffer becomes hidden, but is not unloaded, trigger
533 * BufHidden */
534 if (!unload_buf)
535 {
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200536 ++buf->b_locked;
Bram Moolenaar82404332016-07-10 17:00:38 +0200537 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
538 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200539 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200540 /* Autocommands deleted the buffer. */
541 goto aucmd_abort;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200542 --buf->b_locked;
Bram Moolenaar362ce482012-06-06 19:02:45 +0200543 if (abort_if_last && one_window())
544 /* Autocommands made this the only window. */
545 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 }
547# ifdef FEAT_EVAL
548 if (aborting()) /* autocmds may abort script processing */
549 return;
550# endif
551 }
Bram Moolenaarf9e687e2016-09-04 21:33:09 +0200552
553# ifdef FEAT_WINDOWS
554 /* If the buffer was in curwin and the window has changed, go back to that
555 * window, if it still exists. This avoids that ":edit x" triggering a
556 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
557 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
558 {
559 block_autocmds();
560 goto_tabpage_win(the_curtab, the_curwin);
561 unblock_autocmds();
562 }
563# endif
564
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 nwindows = buf->b_nwindows;
566#endif
567
568 /* decrease the link count from windows (unless not in any window) */
569 if (buf->b_nwindows > 0)
570 --buf->b_nwindows;
571
572 /* Return when a window is displaying the buffer or when it's not
573 * unloaded. */
574 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576
577 /* Always remove the buffer when there is no file name. */
578 if (buf->b_ffname == NULL)
579 del_buf = TRUE;
580
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200581 /* When closing the current buffer stop Visual mode before freeing
582 * anything. */
Bram Moolenaar4930a762016-09-11 14:39:53 +0200583 if (buf == curbuf && VIsual_active
Bram Moolenaar9a27c7f2016-09-09 12:57:09 +0200584#if defined(EXITFREE)
585 && !entered_free_all_mem
586#endif
587 )
Bram Moolenaarc4a908e2016-09-08 23:35:30 +0200588 end_visual_mode();
589
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 /*
591 * Free all things allocated for this buffer.
592 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
593 */
594#ifdef FEAT_AUTOCMD
595 /* Remember if we are closing the current buffer. Restore the number of
596 * windows, so that autocommands in buf_freeall() don't get confused. */
597 is_curbuf = (buf == curbuf);
598 buf->b_nwindows = nwindows;
599#endif
600
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200601 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602
603#ifdef FEAT_AUTOCMD
604 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200605 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 return;
607# ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000608 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 return;
610# endif
611
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 /*
613 * It's possible that autocommands change curbuf to the one being deleted.
614 * This might cause the previous curbuf to be deleted unexpectedly. But
615 * in some cases it's OK to delete the curbuf, because a new one is
616 * obtained anyway. Therefore only return if curbuf changed to the
617 * deleted buffer.
618 */
619 if (buf == curbuf && !is_curbuf)
620 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200621
622 if (
623#ifdef FEAT_WINDOWS
Bram Moolenaare59215c2016-08-14 19:08:45 +0200624 win_valid_any_tab(win) &&
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200625#else
626 win != NULL &&
627#endif
628 win->w_buffer == buf)
629 win->w_buffer = NULL; /* make sure we don't use the buffer now */
630
631 /* Autocommands may have opened or closed windows for this buffer.
632 * Decrement the count for the close we do here. */
633 if (buf->b_nwindows > 0)
634 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635#endif
636
Bram Moolenaar498efdb2006-09-05 14:31:54 +0000637 /* Change directories when the 'acd' option is set. */
638 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639
640 /*
641 * Remove the buffer from the list.
642 */
643 if (wipe_buf)
644 {
645#ifdef FEAT_SUN_WORKSHOP
646 if (usingSunWorkShop)
647 workshop_file_closed_lineno((char *)buf->b_ffname,
648 (int)buf->b_last_cursor.lnum);
649#endif
650 vim_free(buf->b_ffname);
651 vim_free(buf->b_sfname);
652 if (buf->b_prev == NULL)
653 firstbuf = buf->b_next;
654 else
655 buf->b_prev->b_next = buf->b_next;
656 if (buf->b_next == NULL)
657 lastbuf = buf->b_prev;
658 else
659 buf->b_next->b_prev = buf->b_prev;
660 free_buffer(buf);
661 }
662 else
663 {
664 if (del_buf)
665 {
666 /* Free all internal variables and reset option values, to make
667 * ":bdel" compatible with Vim 5.7. */
668 free_buffer_stuff(buf, TRUE);
669
670 /* Make it look like a new buffer. */
671 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
672
673 /* Init the options when loaded again. */
674 buf->b_p_initialized = FALSE;
675 }
676 buf_clear_file(buf);
677 if (del_buf)
678 buf->b_p_bl = FALSE;
679 }
680}
681
682/*
683 * Make buffer not contain a file.
684 */
685 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100686buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687{
688 buf->b_ml.ml_line_count = 1;
689 unchanged(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 buf->b_p_eol = TRUE;
692 buf->b_start_eol = TRUE;
693#ifdef FEAT_MBYTE
694 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000695 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696#endif
697 buf->b_ml.ml_mfp = NULL;
698 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
699#ifdef FEAT_NETBEANS_INTG
700 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701#endif
702}
703
704/*
705 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar5a497892016-09-03 16:29:04 +0200706 * the file. Careful: get here with "curwin" NULL when exiting.
707 * flags:
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200708 * BFA_DEL buffer is going to be deleted
709 * BFA_WIPE buffer is going to be wiped out
710 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100713buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714{
715#ifdef FEAT_AUTOCMD
716 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200717 bufref_T bufref;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200718# ifdef FEAT_WINDOWS
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200719 int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
Bram Moolenaar5a497892016-09-03 16:29:04 +0200720 win_T *the_curwin = curwin;
721 tabpage_T *the_curtab = curtab;
722# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723
Bram Moolenaar5a497892016-09-03 16:29:04 +0200724 /* Make sure the buffer isn't closed by autocommands. */
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200725 ++buf->b_locked;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200726 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200727 if (buf->b_ml.ml_mfp != NULL)
728 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200729 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
730 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200731 && !bufref_valid(&bufref))
732 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200733 return;
734 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200735 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200737 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
738 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200739 && !bufref_valid(&bufref))
740 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 return;
742 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200743 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200745 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
746 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200747 && !bufref_valid(&bufref))
748 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 return;
750 }
Bram Moolenaare0ab94e2016-09-04 19:50:54 +0200751 --buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +0200752
753# ifdef FEAT_WINDOWS
754 /* If the buffer was in curwin and the window has changed, go back to that
755 * window, if it still exists. This avoids that ":edit x" triggering a
756 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
757 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin))
758 {
759 block_autocmds();
760 goto_tabpage_win(the_curtab, the_curwin);
761 unblock_autocmds();
762 }
763# endif
764
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000766 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 return;
768# endif
769
770 /*
771 * It's possible that autocommands change curbuf to the one being deleted.
772 * This might cause curbuf to be deleted unexpectedly. But in some cases
773 * it's OK to delete the curbuf, because a new one is obtained anyway.
774 * Therefore only return if curbuf changed to the deleted buffer.
775 */
776 if (buf == curbuf && !is_curbuf)
777 return;
778#endif
779#ifdef FEAT_DIFF
780 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
781#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200782#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100783 /* Remove any ownsyntax, unless exiting. */
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200784 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaar89c71222011-11-30 15:40:56 +0100785 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200786#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000787
788#ifdef FEAT_FOLDING
789 /* No folds in an empty buffer. */
790# ifdef FEAT_WINDOWS
791 {
792 win_T *win;
793 tabpage_T *tp;
794
795 FOR_ALL_TAB_WINDOWS(tp, win)
796 if (win->w_buffer == buf)
797 clearFolding(win);
798 }
799# else
Bram Moolenaar030cddc2016-09-04 23:41:42 +0200800 if (curwin != NULL && curwin->w_buffer == buf)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000801 clearFolding(curwin);
802# endif
803#endif
804
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805#ifdef FEAT_TCL
806 tcl_buffer_free(buf);
807#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 ml_close(buf, TRUE); /* close and delete the memline/memfile */
809 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200810 if ((flags & BFA_KEEP_UNDO) == 0)
811 {
812 u_blockfree(buf); /* free the memory allocated for undo */
813 u_clearall(buf); /* reset all undo information */
814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200816 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000818 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819}
820
821/*
822 * Free a buffer structure and the things it contains related to the buffer
823 * itself (not the file, that must have been done already).
824 */
825 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100826free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200828 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200830#ifdef FEAT_EVAL
831 unref_var_dict(buf->b_vars);
832#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200833#ifdef FEAT_LUA
834 lua_buffer_free(buf);
835#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000836#ifdef FEAT_MZSCHEME
837 mzscheme_buffer_free(buf);
838#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839#ifdef FEAT_PERL
840 perl_buf_free(buf);
841#endif
842#ifdef FEAT_PYTHON
843 python_buffer_free(buf);
844#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200845#ifdef FEAT_PYTHON3
846 python3_buffer_free(buf);
847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848#ifdef FEAT_RUBY
849 ruby_buffer_free(buf);
850#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200851#ifdef FEAT_JOB_CHANNEL
852 channel_buffer_free(buf);
853#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200854
855 buf_hashtab_remove(buf);
856
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200857#ifdef FEAT_AUTOCMD
858 aubuflocal_remove(buf);
859
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200860 if (autocmd_busy)
861 {
862 /* Do not free the buffer structure while autocommands are executing,
863 * it's still needed. Free it when autocmd_busy is reset. */
864 buf->b_next = au_pending_free_buf;
865 au_pending_free_buf = buf;
866 }
867 else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000868#endif
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200869 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870}
871
872/*
873 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
874 */
875 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100876free_buffer_stuff(
877 buf_T *buf,
878 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879{
880 if (free_options)
881 {
882 clear_wininfo(buf); /* including window-local options */
883 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200884#ifdef FEAT_SPELL
885 ga_clear(&buf->b_s.b_langp);
886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 }
888#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +0200889 vars_clear(&buf->b_vars->dv_hashtab); /* free all internal variables */
890 hash_init(&buf->b_vars->dv_hashtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891#endif
892#ifdef FEAT_USR_CMDS
893 uc_clear(&buf->b_ucmds); /* clear local user commands */
894#endif
895#ifdef FEAT_SIGNS
896 buf_delete_signs(buf); /* delete any signs */
897#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000898#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200899 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000900#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901#ifdef FEAT_LOCALMAP
902 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
903 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
904#endif
905#ifdef FEAT_MBYTE
906 vim_free(buf->b_start_fenc);
907 buf->b_start_fenc = NULL;
908#endif
909}
910
911/*
912 * Free the b_wininfo list for buffer "buf".
913 */
914 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100915clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916{
917 wininfo_T *wip;
918
919 while (buf->b_wininfo != NULL)
920 {
921 wip = buf->b_wininfo;
922 buf->b_wininfo = wip->wi_next;
923 if (wip->wi_optset)
924 {
925 clear_winopt(&wip->wi_opt);
926#ifdef FEAT_FOLDING
927 deleteFoldRecurse(&wip->wi_folds);
928#endif
929 }
930 vim_free(wip);
931 }
932}
933
934#if defined(FEAT_LISTCMDS) || defined(PROTO)
935/*
936 * Go to another buffer. Handles the result of the ATTENTION dialog.
937 */
938 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100939goto_buffer(
940 exarg_T *eap,
941 int start,
942 int dir,
943 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944{
Bram Moolenaare64ac772005-12-07 20:54:59 +0000945# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200946 bufref_T old_curbuf;
947
948 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949
950 swap_exists_action = SEA_DIALOG;
951# endif
952 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
953 start, dir, count, eap->forceit);
Bram Moolenaare64ac772005-12-07 20:54:59 +0000954# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
956 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000957# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
958 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000959
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000960 /* Reset the error/interrupt/exception state here so that
961 * aborting() returns FALSE when closing a window. */
962 enter_cleanup(&cs);
963# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000964
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000965 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 win_close(curwin, TRUE);
967 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000968 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000969
970# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
971 /* Restore the error/interrupt/exception state if not discarded by a
972 * new aborting error, interrupt, or uncaught exception. */
973 leave_cleanup(&cs);
974# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 }
976 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200977 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978# endif
979}
980#endif
981
Bram Moolenaare64ac772005-12-07 20:54:59 +0000982#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983/*
984 * Handle the situation of swap_exists_action being set.
985 * It is allowed for "old_curbuf" to be NULL or invalid.
986 */
987 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200988handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989{
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000990# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
991 cleanup_T cs;
992# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100993#ifdef FEAT_SYN_HL
994 long old_tw = curbuf->b_p_tw;
995#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200996 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000997
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 if (swap_exists_action == SEA_QUIT)
999 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001000# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1001 /* Reset the error/interrupt/exception state here so that
1002 * aborting() returns FALSE when closing a buffer. */
1003 enter_cleanup(&cs);
1004# endif
1005
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 /* User selected Quit at ATTENTION prompt. Go back to previous
1007 * buffer. If that buffer is gone or the same as the current one,
1008 * open a new, empty buffer. */
1009 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00001010 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001011 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001012 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1013 || old_curbuf->br_buf == curbuf)
1014 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1015 else
1016 buf = old_curbuf->br_buf;
1017 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001018 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001019 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001020#ifdef FEAT_SYN_HL
1021 if (old_tw != curbuf->b_p_tw)
1022 check_colorcolumn(curwin);
1023#endif
1024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001026
1027# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1028 /* Restore the error/interrupt/exception state if not discarded by a
1029 * new aborting error, interrupt, or uncaught exception. */
1030 leave_cleanup(&cs);
1031# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 }
1033 else if (swap_exists_action == SEA_RECOVER)
1034 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001035# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1036 /* Reset the error/interrupt/exception state here so that
1037 * aborting() returns FALSE when closing a buffer. */
1038 enter_cleanup(&cs);
1039# endif
1040
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 /* User selected Recover at ATTENTION prompt. */
1042 msg_scroll = TRUE;
1043 ml_recover();
1044 MSG_PUTS("\n"); /* don't overwrite the last message */
1045 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +00001046 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001047
1048# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1049 /* Restore the error/interrupt/exception state if not discarded by a
1050 * new aborting error, interrupt, or uncaught exception. */
1051 leave_cleanup(&cs);
1052# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 }
1054 swap_exists_action = SEA_NONE;
1055}
1056#endif
1057
1058#if defined(FEAT_LISTCMDS) || defined(PROTO)
1059/*
1060 * do_bufdel() - delete or unload buffer(s)
1061 *
1062 * addr_count == 0: ":bdel" - delete current buffer
1063 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1064 * buffer "end_bnr", then any other arguments.
1065 * addr_count == 2: ":N,N bdel" - delete buffers in range
1066 *
1067 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1068 * DOBUF_DEL (":bdel")
1069 *
1070 * Returns error message or NULL
1071 */
1072 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001073do_bufdel(
1074 int command,
1075 char_u *arg, /* pointer to extra arguments */
1076 int addr_count,
1077 int start_bnr, /* first buffer number in a range */
1078 int end_bnr, /* buffer nr or last buffer nr in a range */
1079 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080{
1081 int do_current = 0; /* delete current buffer? */
1082 int deleted = 0; /* number of buffers deleted */
1083 char_u *errormsg = NULL; /* return value */
1084 int bnr; /* buffer number */
1085 char_u *p;
1086
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 if (addr_count == 0)
1088 {
1089 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1090 }
1091 else
1092 {
1093 if (addr_count == 2)
1094 {
1095 if (*arg) /* both range and argument is not allowed */
1096 return (char_u *)_(e_trailing);
1097 bnr = start_bnr;
1098 }
1099 else /* addr_count == 1 */
1100 bnr = end_bnr;
1101
1102 for ( ;!got_int; ui_breakcheck())
1103 {
1104 /*
1105 * delete the current buffer last, otherwise when the
1106 * current buffer is deleted, the next buffer becomes
1107 * the current one and will be loaded, which may then
1108 * also be deleted, etc.
1109 */
1110 if (bnr == curbuf->b_fnum)
1111 do_current = bnr;
1112 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1113 forceit) == OK)
1114 ++deleted;
1115
1116 /*
1117 * find next buffer number to delete/unload
1118 */
1119 if (addr_count == 2)
1120 {
1121 if (++bnr > end_bnr)
1122 break;
1123 }
1124 else /* addr_count == 1 */
1125 {
1126 arg = skipwhite(arg);
1127 if (*arg == NUL)
1128 break;
1129 if (!VIM_ISDIGIT(*arg))
1130 {
1131 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001132 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1133 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 if (bnr < 0) /* failed */
1135 break;
1136 arg = p;
1137 }
1138 else
1139 bnr = getdigits(&arg);
1140 }
1141 }
1142 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1143 FORWARD, do_current, forceit) == OK)
1144 ++deleted;
1145
1146 if (deleted == 0)
1147 {
1148 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001149 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001151 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001153 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 errormsg = IObuff;
1155 }
1156 else if (deleted >= p_report)
1157 {
1158 if (command == DOBUF_UNLOAD)
1159 {
1160 if (deleted == 1)
1161 MSG(_("1 buffer unloaded"));
1162 else
1163 smsg((char_u *)_("%d buffers unloaded"), deleted);
1164 }
1165 else if (command == DOBUF_DEL)
1166 {
1167 if (deleted == 1)
1168 MSG(_("1 buffer deleted"));
1169 else
1170 smsg((char_u *)_("%d buffers deleted"), deleted);
1171 }
1172 else
1173 {
1174 if (deleted == 1)
1175 MSG(_("1 buffer wiped out"));
1176 else
1177 smsg((char_u *)_("%d buffers wiped out"), deleted);
1178 }
1179 }
1180 }
1181
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182
1183 return errormsg;
1184}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001185#endif /* FEAT_LISTCMDS */
1186
1187#if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \
1188 || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001190static int empty_curbuf(int close_others, int forceit, int action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001191
1192/*
1193 * Make the current buffer empty.
1194 * Used when it is wiped out and it's the last buffer.
1195 */
1196 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001197empty_curbuf(
1198 int close_others,
1199 int forceit,
1200 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001201{
1202 int retval;
1203 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001204 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001205
1206 if (action == DOBUF_UNLOAD)
1207 {
1208 EMSG(_("E90: Cannot unload last buffer"));
1209 return FAIL;
1210 }
1211
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001212 set_bufref(&bufref, buf);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001213#ifdef FEAT_WINDOWS
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001214 if (close_others)
1215 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001216 close_windows(buf, TRUE);
1217#endif
Bram Moolenaara02471e2014-01-10 16:43:14 +01001218
1219 setpcmark();
1220 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1221 forceit ? ECMD_FORCEIT : 0, curwin);
1222
1223 /*
1224 * do_ecmd() may create a new buffer, then we have to delete
1225 * the old one. But do_ecmd() may have done that already, check
1226 * if the buffer still exists.
1227 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001228 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001229 close_buffer(NULL, buf, action, FALSE);
1230 if (!close_others)
1231 need_fileinfo = FALSE;
1232 return retval;
1233}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234/*
1235 * Implementation of the commands for the buffer list.
1236 *
1237 * action == DOBUF_GOTO go to specified buffer
1238 * action == DOBUF_SPLIT split window and go to specified buffer
1239 * action == DOBUF_UNLOAD unload specified buffer(s)
1240 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1241 * action == DOBUF_WIPE delete specified buffer(s) really
1242 *
1243 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1244 * start == DOBUF_FIRST go to "count" buffer from first buffer
1245 * start == DOBUF_LAST go to "count" buffer from last buffer
1246 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1247 *
1248 * Return FAIL or OK.
1249 */
1250 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001251do_buffer(
1252 int action,
1253 int start,
1254 int dir, /* FORWARD or BACKWARD */
1255 int count, /* buffer number or number of buffers */
1256 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257{
1258 buf_T *buf;
1259 buf_T *bp;
1260 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1261 || action == DOBUF_WIPE);
1262
1263 switch (start)
1264 {
1265 case DOBUF_FIRST: buf = firstbuf; break;
1266 case DOBUF_LAST: buf = lastbuf; break;
1267 default: buf = curbuf; break;
1268 }
1269 if (start == DOBUF_MOD) /* find next modified buffer */
1270 {
1271 while (count-- > 0)
1272 {
1273 do
1274 {
1275 buf = buf->b_next;
1276 if (buf == NULL)
1277 buf = firstbuf;
1278 }
1279 while (buf != curbuf && !bufIsChanged(buf));
1280 }
1281 if (!bufIsChanged(buf))
1282 {
1283 EMSG(_("E84: No modified buffer found"));
1284 return FAIL;
1285 }
1286 }
1287 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1288 {
1289 while (buf != NULL && buf->b_fnum != count)
1290 buf = buf->b_next;
1291 }
1292 else
1293 {
1294 bp = NULL;
1295 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1296 {
1297 /* remember the buffer where we start, we come back there when all
1298 * buffers are unlisted. */
1299 if (bp == NULL)
1300 bp = buf;
1301 if (dir == FORWARD)
1302 {
1303 buf = buf->b_next;
1304 if (buf == NULL)
1305 buf = firstbuf;
1306 }
1307 else
1308 {
1309 buf = buf->b_prev;
1310 if (buf == NULL)
1311 buf = lastbuf;
1312 }
1313 /* don't count unlisted buffers */
1314 if (unload || buf->b_p_bl)
1315 {
1316 --count;
1317 bp = NULL; /* use this buffer as new starting point */
1318 }
1319 if (bp == buf)
1320 {
1321 /* back where we started, didn't find anything. */
1322 EMSG(_("E85: There is no listed buffer"));
1323 return FAIL;
1324 }
1325 }
1326 }
1327
1328 if (buf == NULL) /* could not find it */
1329 {
1330 if (start == DOBUF_FIRST)
1331 {
1332 /* don't warn when deleting */
1333 if (!unload)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01001334 EMSGN(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 }
1336 else if (dir == FORWARD)
1337 EMSG(_("E87: Cannot go beyond last buffer"));
1338 else
1339 EMSG(_("E88: Cannot go before first buffer"));
1340 return FAIL;
1341 }
1342
1343#ifdef FEAT_GUI
1344 need_mouse_correct = TRUE;
1345#endif
1346
1347#ifdef FEAT_LISTCMDS
1348 /*
1349 * delete buffer buf from memory and/or the list
1350 */
1351 if (unload)
1352 {
1353 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001354# if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS)
1355 bufref_T bufref;
1356
1357 set_bufref(&bufref, buf);
1358# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359
1360 /* When unloading or deleting a buffer that's already unloaded and
1361 * unlisted: fail silently. */
1362 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1363 return FAIL;
1364
1365 if (!forceit && bufIsChanged(buf))
1366 {
1367#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1368 if ((p_confirm || cmdmod.confirm) && p_write)
1369 {
1370 dialog_changed(buf, FALSE);
1371# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001372 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 /* Autocommand deleted buffer, oops! It's not changed
1374 * now. */
1375 return FAIL;
1376# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001377 /* If it's still changed fail silently, the dialog already
1378 * mentioned why it fails. */
1379 if (bufIsChanged(buf))
1380 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001382 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383#endif
1384 {
1385 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1386 buf->b_fnum);
1387 return FAIL;
1388 }
1389 }
1390
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001391 /* When closing the current buffer stop Visual mode. */
Bram Moolenaar4930a762016-09-11 14:39:53 +02001392 if (buf == curbuf && VIsual_active)
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001393 end_visual_mode();
1394
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 /*
1396 * If deleting the last (listed) buffer, make it empty.
1397 * The last (listed) buffer cannot be unloaded.
1398 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001399 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 if (bp->b_p_bl && bp != buf)
1401 break;
1402 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001403 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404
1405#ifdef FEAT_WINDOWS
1406 /*
1407 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001408 * (unless it's the only window). Repeat this so long as we end up in
1409 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001411 while (buf == curbuf
Bram Moolenaar362ce482012-06-06 19:02:45 +02001412# ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02001413 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02001414# endif
Bram Moolenaar459ca562016-11-10 18:16:33 +01001415 && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001416 {
1417 if (win_close(curwin, FALSE) == FAIL)
1418 break;
1419 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420#endif
1421
1422 /*
1423 * If the buffer to be deleted is not the current one, delete it here.
1424 */
1425 if (buf != curbuf)
1426 {
1427#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00001428 close_windows(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001429 if (buf != curbuf && bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430#endif
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001431 if (buf->b_nwindows <= 0)
1432 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 return OK;
1434 }
1435
1436 /*
1437 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001438 * There should be another, otherwise it would have been handled
1439 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001440 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 * Then prefer the buffer we most recently visited.
1442 * Else try to find one that is loaded, after the current buffer,
1443 * then before the current buffer.
1444 * Finally use any buffer.
1445 */
1446 buf = NULL; /* selected buffer */
1447 bp = NULL; /* used when no loaded buffer found */
1448#ifdef FEAT_AUTOCMD
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001449 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1450 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451# ifdef FEAT_JUMPLIST
1452 else
1453# endif
1454#endif
1455#ifdef FEAT_JUMPLIST
1456 if (curwin->w_jumplistlen > 0)
1457 {
1458 int jumpidx;
1459
1460 jumpidx = curwin->w_jumplistidx - 1;
1461 if (jumpidx < 0)
1462 jumpidx = curwin->w_jumplistlen - 1;
1463
1464 forward = jumpidx;
1465 while (jumpidx != curwin->w_jumplistidx)
1466 {
1467 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1468 if (buf != NULL)
1469 {
1470 if (buf == curbuf || !buf->b_p_bl)
1471 buf = NULL; /* skip current and unlisted bufs */
1472 else if (buf->b_ml.ml_mfp == NULL)
1473 {
1474 /* skip unloaded buf, but may keep it for later */
1475 if (bp == NULL)
1476 bp = buf;
1477 buf = NULL;
1478 }
1479 }
1480 if (buf != NULL) /* found a valid buffer: stop searching */
1481 break;
1482 /* advance to older entry in jump list */
1483 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1484 break;
1485 if (--jumpidx < 0)
1486 jumpidx = curwin->w_jumplistlen - 1;
1487 if (jumpidx == forward) /* List exhausted for sure */
1488 break;
1489 }
1490 }
1491#endif
1492
1493 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1494 {
1495 forward = TRUE;
1496 buf = curbuf->b_next;
1497 for (;;)
1498 {
1499 if (buf == NULL)
1500 {
1501 if (!forward) /* tried both directions */
1502 break;
1503 buf = curbuf->b_prev;
1504 forward = FALSE;
1505 continue;
1506 }
1507 /* in non-help buffer, try to skip help buffers, and vv */
1508 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1509 {
1510 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1511 break;
1512 if (bp == NULL) /* remember unloaded buf for later */
1513 bp = buf;
1514 }
1515 if (forward)
1516 buf = buf->b_next;
1517 else
1518 buf = buf->b_prev;
1519 }
1520 }
1521 if (buf == NULL) /* No loaded buffer, use unloaded one */
1522 buf = bp;
1523 if (buf == NULL) /* No loaded buffer, find listed one */
1524 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001525 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 if (buf->b_p_bl && buf != curbuf)
1527 break;
1528 }
1529 if (buf == NULL) /* Still no buffer, just take one */
1530 {
1531 if (curbuf->b_next != NULL)
1532 buf = curbuf->b_next;
1533 else
1534 buf = curbuf->b_prev;
1535 }
1536 }
1537
Bram Moolenaara02471e2014-01-10 16:43:14 +01001538 if (buf == NULL)
1539 {
1540 /* Autocommands must have wiped out all other buffers. Only option
1541 * now is to make the current buffer empty. */
1542 return empty_curbuf(FALSE, forceit, action);
1543 }
1544
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 /*
1546 * make buf current buffer
1547 */
1548 if (action == DOBUF_SPLIT) /* split window first */
1549 {
1550# ifdef FEAT_WINDOWS
Bram Moolenaarf2330482008-06-24 20:19:36 +00001551 /* If 'switchbuf' contains "useopen": jump to first window containing
1552 * "buf" if one exists */
1553 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001554 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001555 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001556 * page containing "buf" if one exists */
1557 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 return OK;
1559 if (win_split(0, 0) == FAIL)
1560# endif
1561 return FAIL;
1562 }
1563#endif
1564
1565 /* go to current buffer - nothing to do */
1566 if (buf == curbuf)
1567 return OK;
1568
1569 /*
1570 * Check if the current buffer may be abandoned.
1571 */
1572 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1573 {
1574#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1575 if ((p_confirm || cmdmod.confirm) && p_write)
1576 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001577# ifdef FEAT_AUTOCMD
1578 bufref_T bufref;
1579
1580 set_bufref(&bufref, buf);
1581# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 dialog_changed(curbuf, FALSE);
1583# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001584 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 /* Autocommand deleted buffer, oops! */
1586 return FAIL;
1587# endif
1588 }
1589 if (bufIsChanged(curbuf))
1590#endif
1591 {
1592 EMSG(_(e_nowrtmsg));
1593 return FAIL;
1594 }
1595 }
1596
1597 /* Go to the other buffer. */
1598 set_curbuf(buf, action);
1599
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001600#if defined(FEAT_LISTCMDS) \
1601 && (defined(FEAT_SCROLLBIND) || defined(FEAT_CURSORBIND))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001603 {
1604 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1605 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606#endif
1607
1608#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1609 if (aborting()) /* autocmds may abort script processing */
1610 return FAIL;
1611#endif
1612
1613 return OK;
1614}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001615#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616
1617/*
1618 * Set current buffer to "buf". Executes autocommands and closes current
1619 * buffer. "action" tells how to close the current buffer:
1620 * DOBUF_GOTO free or hide it
1621 * DOBUF_SPLIT nothing
1622 * DOBUF_UNLOAD unload it
1623 * DOBUF_DEL delete it
1624 * DOBUF_WIPE wipe it out
1625 */
1626 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001627set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628{
1629 buf_T *prevbuf;
1630 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1631 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001632#ifdef FEAT_SYN_HL
1633 long old_tw = curbuf->b_p_tw;
1634#endif
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001635 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636
1637 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001638 if (!cmdmod.keepalt)
1639 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001640 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 /* Don't restart Select mode after switching to another buffer. */
1643 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
1645 /* close_windows() or apply_autocmds() may change curbuf */
1646 prevbuf = curbuf;
Bram Moolenaar453f37d2016-07-10 18:33:59 +02001647 set_bufref(&bufref, prevbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648
1649#ifdef FEAT_AUTOCMD
Bram Moolenaar82404332016-07-10 17:00:38 +02001650 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651# ifdef FEAT_EVAL
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001652 || (bufref_valid(&bufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653# else
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001654 || bufref_valid(&bufref)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655# endif
Bram Moolenaar3a117e12016-10-30 21:57:52 +01001656 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657#endif
1658 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001659#ifdef FEAT_SYN_HL
1660 if (prevbuf == curwin->w_buffer)
1661 reset_synblock(curwin);
1662#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663#ifdef FEAT_WINDOWS
1664 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001665 close_windows(prevbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666#endif
1667#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001668 if (bufref_valid(&bufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669#else
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001670 if (bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001672 {
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001673#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001674 win_T *previouswin = curwin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001675#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001676 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001677 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1679 unload ? action : (action == DOBUF_GOTO
1680 && !P_HID(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001681 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001682#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001683 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001684 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001685 curwin = previouswin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001686#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001687 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 }
1689#ifdef FEAT_AUTOCMD
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001690 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001691 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001692 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1693 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001694# ifdef FEAT_EVAL
Bram Moolenaar9e931222012-06-20 11:55:01 +02001695 && !aborting()
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001696# endif
1697# ifdef FEAT_WINDOWS
Bram Moolenaar9e931222012-06-20 11:55:01 +02001698 ) || curwin->w_buffer == NULL
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001699# endif
Bram Moolenaar9e931222012-06-20 11:55:01 +02001700 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001702 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001704#ifdef FEAT_SYN_HL
1705 if (old_tw != curbuf->b_p_tw)
1706 check_colorcolumn(curwin);
1707#endif
1708 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709}
1710
1711/*
1712 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001713 * Old curbuf must have been abandoned already! This also means "curbuf" may
1714 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 */
1716 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001717enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718{
1719 /* Copy buffer and window local option values. Not for a help buffer. */
1720 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1721 if (!buf->b_help)
1722 get_winopts(buf);
1723#ifdef FEAT_FOLDING
1724 else
1725 /* Remove all folds in the window. */
1726 clearFolding(curwin);
1727 foldUpdateAll(curwin); /* update folds (later). */
1728#endif
1729
1730 /* Get the buffer in the current window. */
1731 curwin->w_buffer = buf;
1732 curbuf = buf;
1733 ++curbuf->b_nwindows;
1734
1735#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001736 if (curwin->w_p_diff)
1737 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738#endif
1739
Bram Moolenaara971b822011-09-14 14:43:25 +02001740#ifdef FEAT_SYN_HL
1741 curwin->w_s = &(buf->b_s);
1742#endif
1743
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 /* Cursor on first line by default. */
1745 curwin->w_cursor.lnum = 1;
1746 curwin->w_cursor.col = 0;
1747#ifdef FEAT_VIRTUALEDIT
1748 curwin->w_cursor.coladd = 0;
1749#endif
1750 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001751#ifdef FEAT_AUTOCMD
1752 curwin->w_topline_was_set = FALSE;
1753#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001755 /* mark cursor position as being invalid */
1756 curwin->w_valid = 0;
1757
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 /* Make sure the buffer is loaded. */
1759 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001760 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001761#ifdef FEAT_AUTOCMD
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001762 /* If there is no filetype, allow for detecting one. Esp. useful for
1763 * ":ball" used in a autocommand. If there already is a filetype we
1764 * might prefer to keep it. */
1765 if (*curbuf->b_p_ft == NUL)
1766 did_filetype = FALSE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001767#endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001768
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001769 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001770 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 else
1772 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001773 if (!msg_silent)
1774 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1776#ifdef FEAT_AUTOCMD
1777 curwin->w_topline = 1;
1778# ifdef FEAT_DIFF
1779 curwin->w_topfill = 0;
1780# endif
1781 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1782 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1783#endif
1784 }
1785
1786 /* If autocommands did not change the cursor position, restore cursor lnum
1787 * and possibly cursor col. */
1788 if (curwin->w_cursor.lnum == 1 && inindent(0))
1789 buflist_getfpos();
1790
1791 check_arg_idx(curwin); /* check for valid arg_idx */
1792#ifdef FEAT_TITLE
1793 maketitle();
1794#endif
1795#ifdef FEAT_AUTOCMD
Bram Moolenaard4153d42008-11-15 15:06:17 +00001796 /* when autocmds didn't change it */
1797 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798#endif
1799 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1800
Bram Moolenaar009b2592004-10-24 19:18:58 +00001801#ifdef FEAT_NETBEANS_INTG
1802 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001803 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001804#endif
1805
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001806 /* Change directories when the 'acd' option is set. */
1807 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808
1809#ifdef FEAT_KEYMAP
1810 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001811 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001813#ifdef FEAT_SPELL
1814 /* May need to set the spell language. Can only do this after the buffer
1815 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001816 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1817 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001818#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001819#ifdef FEAT_VIMINFO
1820 curbuf->b_last_used = vim_time();
1821#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001822
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 redraw_later(NOT_VALID);
1824}
1825
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001826#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1827/*
1828 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001829 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001830 */
1831 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001832do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001833{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001834 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001835 && curbuf->b_ffname != NULL
1836 && vim_chdirfile(curbuf->b_ffname) == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001837 shorten_fnames(TRUE);
1838}
1839#endif
1840
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841/*
1842 * functions for dealing with the buffer list
1843 */
1844
Bram Moolenaar480778b2016-07-14 22:09:39 +02001845static int top_file_num = 1; /* highest file number */
1846
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847/*
1848 * Add a file name to the buffer list. Return a pointer to the buffer.
1849 * If the same file name already exists return a pointer to that buffer.
1850 * If it does not exist, or if fname == NULL, a new entry is created.
1851 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1852 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1853 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001854 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001855 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1856 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 * This is the ONLY way to create a new buffer.
1858 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001860buflist_new(
1861 char_u *ffname, /* full path of fname or relative */
1862 char_u *sfname, /* short fname or NULL */
1863 linenr_T lnum, /* preferred cursor line */
1864 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865{
1866 buf_T *buf;
1867#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001868 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869#endif
1870
Bram Moolenaar480778b2016-07-14 22:09:39 +02001871 if (top_file_num == 1)
1872 hash_init(&buf_hashtab);
1873
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1875
1876 /*
1877 * If file name already exists in the list, update the entry.
1878 */
1879#ifdef UNIX
1880 /* On Unix we can use inode numbers when the file exists. Works better
1881 * for hard links. */
1882 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1883 st.st_dev = (dev_T)-1;
1884#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001885 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886#ifdef UNIX
1887 buflist_findname_stat(ffname, &st)
1888#else
1889 buflist_findname(ffname)
1890#endif
1891 ) != NULL)
1892 {
1893 vim_free(ffname);
1894 if (lnum != 0)
1895 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001896
1897 if ((flags & BLN_NOOPT) == 0)
1898 /* copy the options now, if 'cpo' doesn't have 's' and not done
1899 * already */
1900 buf_copy_options(buf, 0);
1901
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1903 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001904#ifdef FEAT_AUTOCMD
1905 bufref_T bufref;
1906#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 buf->b_p_bl = TRUE;
1908#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001909 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001911 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001912 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001913 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001914 return NULL;
1915 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916#endif
1917 }
1918 return buf;
1919 }
1920
1921 /*
1922 * If the current buffer has no name and no contents, use the current
1923 * buffer. Otherwise: Need to allocate a new buffer structure.
1924 *
1925 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001926 * (A spell file buffer is allocated in spell.c, but that's not a normal
1927 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 */
1929 buf = NULL;
1930 if ((flags & BLN_CURBUF)
1931 && curbuf != NULL
1932 && curbuf->b_ffname == NULL
1933 && curbuf->b_nwindows <= 1
1934 && (curbuf->b_ml.ml_mfp == NULL || bufempty()))
1935 {
1936 buf = curbuf;
1937#ifdef FEAT_AUTOCMD
1938 /* It's like this buffer is deleted. Watch out for autocommands that
1939 * change curbuf! If that happens, allocate a new buffer anyway. */
1940 if (curbuf->b_p_bl)
1941 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1942 if (buf == curbuf)
1943 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
1944# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001945 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 return NULL;
1947# endif
1948#endif
1949#ifdef FEAT_QUICKFIX
1950# ifdef FEAT_AUTOCMD
1951 if (buf == curbuf)
1952# endif
1953 {
1954 /* Make sure 'bufhidden' and 'buftype' are empty */
1955 clear_string_option(&buf->b_p_bh);
1956 clear_string_option(&buf->b_p_bt);
1957 }
1958#endif
1959 }
1960 if (buf != curbuf || curbuf == NULL)
1961 {
1962 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1963 if (buf == NULL)
1964 {
1965 vim_free(ffname);
1966 return NULL;
1967 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001968#ifdef FEAT_EVAL
1969 /* init b: variables */
1970 buf->b_vars = dict_alloc();
1971 if (buf->b_vars == NULL)
1972 {
1973 vim_free(ffname);
1974 vim_free(buf);
1975 return NULL;
1976 }
1977 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1978#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 }
1980
1981 if (ffname != NULL)
1982 {
1983 buf->b_ffname = ffname;
1984 buf->b_sfname = vim_strsave(sfname);
1985 }
1986
1987 clear_wininfo(buf);
1988 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1989
1990 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1991 || buf->b_wininfo == NULL)
1992 {
1993 vim_free(buf->b_ffname);
1994 buf->b_ffname = NULL;
1995 vim_free(buf->b_sfname);
1996 buf->b_sfname = NULL;
1997 if (buf != curbuf)
1998 free_buffer(buf);
1999 return NULL;
2000 }
2001
2002 if (buf == curbuf)
2003 {
2004 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002005 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 if (buf != curbuf) /* autocommands deleted the buffer! */
2007 return NULL;
2008#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002009 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 return NULL;
2011#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002013
2014 /* Init the options. */
2015 buf->b_p_initialized = FALSE;
2016 buf_copy_options(buf, BCO_ENTER);
2017
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018#ifdef FEAT_KEYMAP
2019 /* need to reload lmaps and set b:keymap_name */
2020 curbuf->b_kmap_state |= KEYMAP_INIT;
2021#endif
2022 }
2023 else
2024 {
2025 /*
2026 * put new buffer at the end of the buffer list
2027 */
2028 buf->b_next = NULL;
2029 if (firstbuf == NULL) /* buffer list is empty */
2030 {
2031 buf->b_prev = NULL;
2032 firstbuf = buf;
2033 }
2034 else /* append new buffer at end of list */
2035 {
2036 lastbuf->b_next = buf;
2037 buf->b_prev = lastbuf;
2038 }
2039 lastbuf = buf;
2040
2041 buf->b_fnum = top_file_num++;
2042 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2043 {
2044 EMSG(_("W14: Warning: List of file names overflow"));
2045 if (emsg_silent == 0)
2046 {
2047 out_flush();
2048 ui_delay(3000L, TRUE); /* make sure it is noticed */
2049 }
2050 top_file_num = 1;
2051 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002052 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053
2054 /*
2055 * Always copy the options from the current buffer.
2056 */
2057 buf_copy_options(buf, BCO_ALWAYS);
2058 }
2059
2060 buf->b_wininfo->wi_fpos.lnum = lnum;
2061 buf->b_wininfo->wi_win = curwin;
2062
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002063#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002064 hash_init(&buf->b_s.b_keywtab);
2065 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066#endif
2067
2068 buf->b_fname = buf->b_sfname;
2069#ifdef UNIX
2070 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002071 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 else
2073 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002074 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 buf->b_dev = st.st_dev;
2076 buf->b_ino = st.st_ino;
2077 }
2078#endif
2079 buf->b_u_synced = TRUE;
2080 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002081 if (flags & BLN_DUMMY)
2082 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 buf_clear_file(buf);
2084 clrallmarks(buf); /* clear marks */
2085 fmarks_check_names(buf); /* check file marks for this file */
2086 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
2087#ifdef FEAT_AUTOCMD
2088 if (!(flags & BLN_DUMMY))
2089 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002090 bufref_T bufref;
2091
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002092 /* Tricky: these autocommands may change the buffer list. They could
2093 * also split the window with re-using the one empty buffer. This may
2094 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002095 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002096 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002097 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002098 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002100 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002101 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002102 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002103 return NULL;
2104 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002106 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 return NULL;
2108# endif
2109 }
2110#endif
2111
2112 return buf;
2113}
2114
2115/*
2116 * Free the memory for the options of a buffer.
2117 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2118 * 'fileencoding'.
2119 */
2120 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002121free_buf_options(
2122 buf_T *buf,
2123 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124{
2125 if (free_p_ff)
2126 {
2127#ifdef FEAT_MBYTE
2128 clear_string_option(&buf->b_p_fenc);
2129#endif
2130 clear_string_option(&buf->b_p_ff);
2131#ifdef FEAT_QUICKFIX
2132 clear_string_option(&buf->b_p_bh);
2133 clear_string_option(&buf->b_p_bt);
2134#endif
2135 }
2136#ifdef FEAT_FIND_ID
2137 clear_string_option(&buf->b_p_def);
2138 clear_string_option(&buf->b_p_inc);
2139# ifdef FEAT_EVAL
2140 clear_string_option(&buf->b_p_inex);
2141# endif
2142#endif
2143#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2144 clear_string_option(&buf->b_p_inde);
2145 clear_string_option(&buf->b_p_indk);
2146#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002147#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2148 clear_string_option(&buf->b_p_bexpr);
2149#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002150#if defined(FEAT_CRYPT)
2151 clear_string_option(&buf->b_p_cm);
2152#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002153#if defined(FEAT_EVAL)
2154 clear_string_option(&buf->b_p_fex);
2155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156#ifdef FEAT_CRYPT
2157 clear_string_option(&buf->b_p_key);
2158#endif
2159 clear_string_option(&buf->b_p_kp);
2160 clear_string_option(&buf->b_p_mps);
2161 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002162 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 clear_string_option(&buf->b_p_isk);
2164#ifdef FEAT_KEYMAP
2165 clear_string_option(&buf->b_p_keymap);
2166 ga_clear(&buf->b_kmap_ga);
2167#endif
2168#ifdef FEAT_COMMENTS
2169 clear_string_option(&buf->b_p_com);
2170#endif
2171#ifdef FEAT_FOLDING
2172 clear_string_option(&buf->b_p_cms);
2173#endif
2174 clear_string_option(&buf->b_p_nf);
2175#ifdef FEAT_SYN_HL
2176 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002177 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002178#endif
2179#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002180 clear_string_option(&buf->b_s.b_p_spc);
2181 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002182 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002183 buf->b_s.b_cap_prog = NULL;
2184 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185#endif
2186#ifdef FEAT_SEARCHPATH
2187 clear_string_option(&buf->b_p_sua);
2188#endif
2189#ifdef FEAT_AUTOCMD
2190 clear_string_option(&buf->b_p_ft);
2191#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192#ifdef FEAT_CINDENT
2193 clear_string_option(&buf->b_p_cink);
2194 clear_string_option(&buf->b_p_cino);
2195#endif
2196#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2197 clear_string_option(&buf->b_p_cinw);
2198#endif
2199#ifdef FEAT_INS_EXPAND
2200 clear_string_option(&buf->b_p_cpt);
2201#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002202#ifdef FEAT_COMPL_FUNC
2203 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002204 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002205#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206#ifdef FEAT_QUICKFIX
2207 clear_string_option(&buf->b_p_gp);
2208 clear_string_option(&buf->b_p_mp);
2209 clear_string_option(&buf->b_p_efm);
2210#endif
2211 clear_string_option(&buf->b_p_ep);
2212 clear_string_option(&buf->b_p_path);
2213 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002214 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215#ifdef FEAT_INS_EXPAND
2216 clear_string_option(&buf->b_p_dict);
2217 clear_string_option(&buf->b_p_tsr);
2218#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002219#ifdef FEAT_TEXTOBJ
2220 clear_string_option(&buf->b_p_qe);
2221#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002223 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002224#ifdef FEAT_LISP
2225 clear_string_option(&buf->b_p_lw);
2226#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002227 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228}
2229
2230/*
2231 * get alternate file n
2232 * set linenr to lnum or altfpos.lnum if lnum == 0
2233 * also set cursor column to altfpos.col if 'startofline' is not set.
2234 * if (options & GETF_SETMARK) call setpcmark()
2235 * if (options & GETF_ALT) we are jumping to an alternate file.
2236 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2237 *
2238 * return FAIL for failure, OK for success
2239 */
2240 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002241buflist_getfile(
2242 int n,
2243 linenr_T lnum,
2244 int options,
2245 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246{
2247 buf_T *buf;
2248#ifdef FEAT_WINDOWS
2249 win_T *wp = NULL;
2250#endif
2251 pos_T *fpos;
2252 colnr_T col;
2253
2254 buf = buflist_findnr(n);
2255 if (buf == NULL)
2256 {
2257 if ((options & GETF_ALT) && n == 0)
2258 EMSG(_(e_noalt));
2259 else
2260 EMSGN(_("E92: Buffer %ld not found"), n);
2261 return FAIL;
2262 }
2263
2264 /* if alternate file is the current buffer, nothing to do */
2265 if (buf == curbuf)
2266 return OK;
2267
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002268 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002269 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002270 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002272 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002273#ifdef FEAT_AUTOCMD
2274 if (curbuf_locked())
2275 return FAIL;
2276#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277
2278 /* altfpos may be changed by getfile(), get it now */
2279 if (lnum == 0)
2280 {
2281 fpos = buflist_findfpos(buf);
2282 lnum = fpos->lnum;
2283 col = fpos->col;
2284 }
2285 else
2286 col = 0;
2287
2288#ifdef FEAT_WINDOWS
2289 if (options & GETF_SWITCH)
2290 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002291 /* If 'switchbuf' contains "useopen": jump to first window containing
2292 * "buf" if one exists */
2293 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002295
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002296 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002297 * page containing "buf" if one exists */
2298 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002299 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002300
2301 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2302 * current buffer isn't empty: open new tab or window */
2303 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
2304 && !bufempty())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002306 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002307 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002308 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2309 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002311 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 }
2313 }
2314#endif
2315
2316 ++RedrawingDisabled;
2317 if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK),
2318 lnum, forceit) <= 0)
2319 {
2320 --RedrawingDisabled;
2321
2322 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2323 if (!p_sol && col != 0)
2324 {
2325 curwin->w_cursor.col = col;
2326 check_cursor_col();
2327#ifdef FEAT_VIRTUALEDIT
2328 curwin->w_cursor.coladd = 0;
2329#endif
2330 curwin->w_set_curswant = TRUE;
2331 }
2332 return OK;
2333 }
2334 --RedrawingDisabled;
2335 return FAIL;
2336}
2337
2338/*
2339 * go to the last know line number for the current buffer
2340 */
2341 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002342buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343{
2344 pos_T *fpos;
2345
2346 fpos = buflist_findfpos(curbuf);
2347
2348 curwin->w_cursor.lnum = fpos->lnum;
2349 check_cursor_lnum();
2350
2351 if (p_sol)
2352 curwin->w_cursor.col = 0;
2353 else
2354 {
2355 curwin->w_cursor.col = fpos->col;
2356 check_cursor_col();
2357#ifdef FEAT_VIRTUALEDIT
2358 curwin->w_cursor.coladd = 0;
2359#endif
2360 curwin->w_set_curswant = TRUE;
2361 }
2362}
2363
Bram Moolenaar81695252004-12-29 20:58:21 +00002364#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2365/*
2366 * Find file in buffer list by name (it has to be for the current window).
2367 * Returns NULL if not found.
2368 */
2369 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002370buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002371{
2372 char_u *ffname;
2373 buf_T *buf = NULL;
2374
2375 /* First make the name into a full path name */
2376 ffname = FullName_save(fname,
2377#ifdef UNIX
2378 TRUE /* force expansion, get rid of symbolic links */
2379#else
2380 FALSE
2381#endif
2382 );
2383 if (ffname != NULL)
2384 {
2385 buf = buflist_findname(ffname);
2386 vim_free(ffname);
2387 }
2388 return buf;
2389}
2390#endif
2391
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392/*
2393 * Find file in buffer list by name (it has to be for the current window).
2394 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002395 * Skips dummy buffers.
2396 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 */
2398 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002399buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400{
2401#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002402 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403
2404 if (mch_stat((char *)ffname, &st) < 0)
2405 st.st_dev = (dev_T)-1;
2406 return buflist_findname_stat(ffname, &st);
2407}
2408
2409/*
2410 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2411 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002412 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 */
2414 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002415buflist_findname_stat(
2416 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002417 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418{
2419#endif
2420 buf_T *buf;
2421
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002422 /* Start at the last buffer, expect to find a match sooner. */
2423 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002424 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425#ifdef UNIX
2426 , stp
2427#endif
2428 ))
2429 return buf;
2430 return NULL;
2431}
2432
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002433#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
2434 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435/*
2436 * Find file in buffer list by a regexp pattern.
2437 * Return fnum of the found buffer.
2438 * Return < 0 for error.
2439 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002441buflist_findpat(
2442 char_u *pattern,
2443 char_u *pattern_end, /* pointer to first char after pattern */
2444 int unlisted, /* find unlisted buffers */
2445 int diffmode UNUSED, /* find diff-mode buffers only */
2446 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447{
2448 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 int match = -1;
2450 int find_listed;
2451 char_u *pat;
2452 char_u *patend;
2453 int attempt;
2454 char_u *p;
2455 int toggledollar;
2456
2457 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2458 {
2459 if (*pattern == '%')
2460 match = curbuf->b_fnum;
2461 else
2462 match = curwin->w_alt_fnum;
2463#ifdef FEAT_DIFF
2464 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2465 match = -1;
2466#endif
2467 }
2468
2469 /*
2470 * Try four ways of matching a listed buffer:
2471 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002472 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 * attempt == 2: with '$' at end (only match at end)
2474 * attempt == 3: with '^' at start and '$' at end (only full match)
2475 * Repeat this for finding an unlisted buffer if there was no matching
2476 * listed buffer.
2477 */
2478 else
2479 {
2480 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2481 if (pat == NULL)
2482 return -1;
2483 patend = pat + STRLEN(pat) - 1;
2484 toggledollar = (patend > pat && *patend == '$');
2485
2486 /* First try finding a listed buffer. If not found and "unlisted"
2487 * is TRUE, try finding an unlisted buffer. */
2488 find_listed = TRUE;
2489 for (;;)
2490 {
2491 for (attempt = 0; attempt <= 3; ++attempt)
2492 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002493 regmatch_T regmatch;
2494
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 /* may add '^' and '$' */
2496 if (toggledollar)
2497 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2498 p = pat;
2499 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2500 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002501 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2502 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 {
2504 vim_free(pat);
2505 return -1;
2506 }
2507
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002508 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 if (buf->b_p_bl == find_listed
2510#ifdef FEAT_DIFF
2511 && (!diffmode || diff_mode_buf(buf))
2512#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002513 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002515 if (curtab_only)
2516 {
2517 /* Ignore the match if the buffer is not open in
2518 * the current tab. */
2519#ifdef FEAT_WINDOWS
2520 win_T *wp;
2521
Bram Moolenaar29323592016-07-24 22:04:11 +02002522 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002523 if (wp->w_buffer == buf)
2524 break;
2525 if (wp == NULL)
2526 continue;
2527#else
2528 if (curwin->w_buffer != buf)
2529 continue;
2530#endif
2531 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 if (match >= 0) /* already found a match */
2533 {
2534 match = -2;
2535 break;
2536 }
2537 match = buf->b_fnum; /* remember first match */
2538 }
2539
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002540 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 if (match >= 0) /* found one match */
2542 break;
2543 }
2544
2545 /* Only search for unlisted buffers if there was no match with
2546 * a listed buffer. */
2547 if (!unlisted || !find_listed || match != -1)
2548 break;
2549 find_listed = FALSE;
2550 }
2551
2552 vim_free(pat);
2553 }
2554
2555 if (match == -2)
2556 EMSG2(_("E93: More than one match for %s"), pattern);
2557 else if (match < 0)
2558 EMSG2(_("E94: No matching buffer for %s"), pattern);
2559 return match;
2560}
2561#endif
2562
2563#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2564
2565/*
2566 * Find all buffer names that match.
2567 * For command line expansion of ":buf" and ":sbuf".
2568 * Return OK if matches found, FAIL otherwise.
2569 */
2570 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002571ExpandBufnames(
2572 char_u *pat,
2573 int *num_file,
2574 char_u ***file,
2575 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576{
2577 int count = 0;
2578 buf_T *buf;
2579 int round;
2580 char_u *p;
2581 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002582 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583
2584 *num_file = 0; /* return values in case of FAIL */
2585 *file = NULL;
2586
Bram Moolenaar05159a02005-02-26 23:04:13 +00002587 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2588 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002590 patc = alloc((unsigned)STRLEN(pat) + 11);
2591 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002593 STRCPY(patc, "\\(^\\|[\\/]\\)");
2594 STRCPY(patc + 11, pat + 1);
2595 }
2596 else
2597 patc = pat;
2598
2599 /*
2600 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002601 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002602 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002603 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002604 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002605 regmatch_T regmatch;
2606
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002607 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002608 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002609 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2610 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002611 {
2612 if (patc != pat)
2613 vim_free(patc);
2614 return FAIL;
2615 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616
2617 /*
2618 * round == 1: Count the matches.
2619 * round == 2: Build the array to keep the matches.
2620 */
2621 for (round = 1; round <= 2; ++round)
2622 {
2623 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002624 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625 {
2626 if (!buf->b_p_bl) /* skip unlisted buffers */
2627 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002628 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 if (p != NULL)
2630 {
2631 if (round == 1)
2632 ++count;
2633 else
2634 {
2635 if (options & WILD_HOME_REPLACE)
2636 p = home_replace_save(buf, p);
2637 else
2638 p = vim_strsave(p);
2639 (*file)[count++] = p;
2640 }
2641 }
2642 }
2643 if (count == 0) /* no match found, break here */
2644 break;
2645 if (round == 1)
2646 {
2647 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2648 if (*file == NULL)
2649 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002650 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002651 if (patc != pat)
2652 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 return FAIL;
2654 }
2655 }
2656 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002657 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 if (count) /* match(es) found, break here */
2659 break;
2660 }
2661
Bram Moolenaar05159a02005-02-26 23:04:13 +00002662 if (patc != pat)
2663 vim_free(patc);
2664
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 *num_file = count;
2666 return (count == 0 ? FAIL : OK);
2667}
2668
2669#endif /* FEAT_CMDL_COMPL */
2670
2671#ifdef HAVE_BUFLIST_MATCH
2672/*
2673 * Check for a match on the file name for buffer "buf" with regprog "prog".
2674 */
2675 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002676buflist_match(
2677 regmatch_T *rmp,
2678 buf_T *buf,
2679 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680{
2681 char_u *match;
2682
2683 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002684 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002686 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687
2688 return match;
2689}
2690
2691/*
2692 * Try matching the regexp in "prog" with file name "name".
2693 * Return "name" when there is a match, NULL when not.
2694 */
2695 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002696fname_match(
2697 regmatch_T *rmp,
2698 char_u *name,
2699 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700{
2701 char_u *match = NULL;
2702 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703
2704 if (name != NULL)
2705 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002706 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002707 rmp->rm_ic = p_fic || ignore_case;
2708 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 match = name;
2710 else
2711 {
2712 /* Replace $(HOME) with '~' and try matching again. */
2713 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002714 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 match = name;
2716 vim_free(p);
2717 }
2718 }
2719
2720 return match;
2721}
2722#endif
2723
2724/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002725 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 */
2727 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002728buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002730 char_u key[VIM_SIZEOF_INT * 2 + 1];
2731 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732
2733 if (nr == 0)
2734 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002735 sprintf((char *)key, "%x", nr);
2736 hi = hash_find(&buf_hashtab, key);
2737
2738 if (!HASHITEM_EMPTY(hi))
2739 return (buf_T *)(hi->hi_key
2740 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 return NULL;
2742}
2743
2744/*
2745 * Get name of file 'n' in the buffer list.
2746 * When the file has no name an empty string is returned.
2747 * home_replace() is used to shorten the file name (used for marks).
2748 * Returns a pointer to allocated memory, of NULL when failed.
2749 */
2750 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002751buflist_nr2name(
2752 int n,
2753 int fullname,
2754 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755{
2756 buf_T *buf;
2757
2758 buf = buflist_findnr(n);
2759 if (buf == NULL)
2760 return NULL;
2761 return home_replace_save(helptail ? buf : NULL,
2762 fullname ? buf->b_ffname : buf->b_fname);
2763}
2764
2765/*
2766 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2767 * When "copy_options" is TRUE save the local window option values.
2768 * When "lnum" is 0 only do the options.
2769 */
2770 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002771buflist_setfpos(
2772 buf_T *buf,
2773 win_T *win,
2774 linenr_T lnum,
2775 colnr_T col,
2776 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777{
2778 wininfo_T *wip;
2779
2780 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2781 if (wip->wi_win == win)
2782 break;
2783 if (wip == NULL)
2784 {
2785 /* allocate a new entry */
2786 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2787 if (wip == NULL)
2788 return;
2789 wip->wi_win = win;
2790 if (lnum == 0) /* set lnum even when it's 0 */
2791 lnum = 1;
2792 }
2793 else
2794 {
2795 /* remove the entry from the list */
2796 if (wip->wi_prev)
2797 wip->wi_prev->wi_next = wip->wi_next;
2798 else
2799 buf->b_wininfo = wip->wi_next;
2800 if (wip->wi_next)
2801 wip->wi_next->wi_prev = wip->wi_prev;
2802 if (copy_options && wip->wi_optset)
2803 {
2804 clear_winopt(&wip->wi_opt);
2805#ifdef FEAT_FOLDING
2806 deleteFoldRecurse(&wip->wi_folds);
2807#endif
2808 }
2809 }
2810 if (lnum != 0)
2811 {
2812 wip->wi_fpos.lnum = lnum;
2813 wip->wi_fpos.col = col;
2814 }
2815 if (copy_options)
2816 {
2817 /* Save the window-specific option values. */
2818 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2819#ifdef FEAT_FOLDING
2820 wip->wi_fold_manual = win->w_fold_manual;
2821 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2822#endif
2823 wip->wi_optset = TRUE;
2824 }
2825
2826 /* insert the entry in front of the list */
2827 wip->wi_next = buf->b_wininfo;
2828 buf->b_wininfo = wip;
2829 wip->wi_prev = NULL;
2830 if (wip->wi_next)
2831 wip->wi_next->wi_prev = wip;
2832
2833 return;
2834}
2835
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002836#ifdef FEAT_DIFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01002837static int wininfo_other_tab_diff(wininfo_T *wip);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002838
2839/*
2840 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2841 * page. That's because a diff is local to a tab page.
2842 */
2843 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002844wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002845{
2846 win_T *wp;
2847
2848 if (wip->wi_opt.wo_diff)
2849 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002850 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002851 /* return FALSE when it's a window in the current tab page, thus
2852 * the buffer was in diff mode here */
2853 if (wip->wi_win == wp)
2854 return FALSE;
2855 return TRUE;
2856 }
2857 return FALSE;
2858}
2859#endif
2860
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861/*
2862 * Find info for the current window in buffer "buf".
2863 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002864 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2865 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 * Returns NULL when there isn't any info.
2867 */
2868 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002869find_wininfo(
2870 buf_T *buf,
2871 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872{
2873 wininfo_T *wip;
2874
2875 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002876 if (wip->wi_win == curwin
2877#ifdef FEAT_DIFF
2878 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2879#endif
2880 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002882
2883 /* If no wininfo for curwin, use the first in the list (that doesn't have
2884 * 'diff' set and is in another tab page). */
2885 if (wip == NULL)
2886 {
2887#ifdef FEAT_DIFF
2888 if (skip_diff_buffer)
2889 {
2890 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2891 if (!wininfo_other_tab_diff(wip))
2892 break;
2893 }
2894 else
2895#endif
2896 wip = buf->b_wininfo;
2897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 return wip;
2899}
2900
2901/*
2902 * Reset the local window options to the values last used in this window.
2903 * If the buffer wasn't used in this window before, use the values from
2904 * the most recently used window. If the values were never set, use the
2905 * global values for the window.
2906 */
2907 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002908get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909{
2910 wininfo_T *wip;
2911
2912 clear_winopt(&curwin->w_onebuf_opt);
2913#ifdef FEAT_FOLDING
2914 clearFolding(curwin);
2915#endif
2916
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002917 wip = find_wininfo(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 if (wip != NULL && wip->wi_optset)
2919 {
2920 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2921#ifdef FEAT_FOLDING
2922 curwin->w_fold_manual = wip->wi_fold_manual;
2923 curwin->w_foldinvalid = TRUE;
2924 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2925#endif
2926 }
2927 else
2928 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2929
2930#ifdef FEAT_FOLDING
2931 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2932 if (p_fdls >= 0)
2933 curwin->w_p_fdl = p_fdls;
2934#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002935#ifdef FEAT_SYN_HL
2936 check_colorcolumn(curwin);
2937#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938}
2939
2940/*
2941 * Find the position (lnum and col) for the buffer 'buf' for the current
2942 * window.
2943 * Returns a pointer to no_position if no position is found.
2944 */
2945 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002946buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947{
2948 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002949 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002951 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 if (wip != NULL)
2953 return &(wip->wi_fpos);
2954 else
2955 return &no_position;
2956}
2957
2958/*
2959 * Find the lnum for the buffer 'buf' for the current window.
2960 */
2961 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002962buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963{
2964 return buflist_findfpos(buf)->lnum;
2965}
2966
2967#if defined(FEAT_LISTCMDS) || defined(PROTO)
2968/*
2969 * List all know file names (for :files and :buffers command).
2970 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002972buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973{
2974 buf_T *buf;
2975 int len;
2976 int i;
2977
2978 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2979 {
2980 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02002981 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2982 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2983 || (vim_strchr(eap->arg, '+')
2984 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
2985 || (vim_strchr(eap->arg, 'a')
2986 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
2987 || (vim_strchr(eap->arg, 'h')
2988 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
2989 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
2990 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
2991 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
2992 || (vim_strchr(eap->arg, '%') && buf != curbuf)
2993 || (vim_strchr(eap->arg, '#')
2994 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02002997 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 else
2999 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003000 if (message_filtered(NameBuff))
3001 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003003 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003004 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 buf->b_fnum,
3006 buf->b_p_bl ? ' ' : 'u',
3007 buf == curbuf ? '%' :
3008 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3009 buf->b_ml.ml_mfp == NULL ? ' ' :
3010 (buf->b_nwindows == 0 ? 'h' : 'a'),
3011 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
3012 (buf->b_flags & BF_READERR) ? 'x'
Bram Moolenaar51485f02005-06-04 21:55:20 +00003013 : (bufIsChanged(buf) ? '+' : ' '),
3014 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003015 if (len > IOSIZE - 20)
3016 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017
3018 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 i = 40 - vim_strsize(IObuff);
3020 do
3021 {
3022 IObuff[len++] = ' ';
3023 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003024 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3025 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003026 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 msg_outtrans(IObuff);
3028 out_flush(); /* output one line at a time */
3029 ui_breakcheck();
3030 }
3031}
3032#endif
3033
3034/*
3035 * Get file name and line number for file 'fnum'.
3036 * Used by DoOneCmd() for translating '%' and '#'.
3037 * Used by insert_reg() and cmdline_paste() for '#' register.
3038 * Return FAIL if not found, OK for success.
3039 */
3040 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003041buflist_name_nr(
3042 int fnum,
3043 char_u **fname,
3044 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045{
3046 buf_T *buf;
3047
3048 buf = buflist_findnr(fnum);
3049 if (buf == NULL || buf->b_fname == NULL)
3050 return FAIL;
3051
3052 *fname = buf->b_fname;
3053 *lnum = buflist_findlnum(buf);
3054
3055 return OK;
3056}
3057
3058/*
3059 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3060 * The file name with the full path is also remembered, for when :cd is used.
3061 * Returns FAIL for failure (file name already in use by other buffer)
3062 * OK otherwise.
3063 */
3064 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003065setfname(
3066 buf_T *buf,
3067 char_u *ffname,
3068 char_u *sfname,
3069 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070{
Bram Moolenaar81695252004-12-29 20:58:21 +00003071 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003073 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074#endif
3075
3076 if (ffname == NULL || *ffname == NUL)
3077 {
3078 /* Removing the name. */
3079 vim_free(buf->b_ffname);
3080 vim_free(buf->b_sfname);
3081 buf->b_ffname = NULL;
3082 buf->b_sfname = NULL;
3083#ifdef UNIX
3084 st.st_dev = (dev_T)-1;
3085#endif
3086 }
3087 else
3088 {
3089 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3090 if (ffname == NULL) /* out of memory */
3091 return FAIL;
3092
3093 /*
3094 * if the file name is already used in another buffer:
3095 * - if the buffer is loaded, fail
3096 * - if the buffer is not loaded, delete it from the list
3097 */
3098#ifdef UNIX
3099 if (mch_stat((char *)ffname, &st) < 0)
3100 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003101#endif
3102 if (!(buf->b_flags & BF_DUMMY))
3103#ifdef UNIX
3104 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003106 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107#endif
3108 if (obuf != NULL && obuf != buf)
3109 {
3110 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3111 {
3112 if (message)
3113 EMSG(_("E95: Buffer with this name already exists"));
3114 vim_free(ffname);
3115 return FAIL;
3116 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003117 /* delete from the list */
3118 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 }
3120 sfname = vim_strsave(sfname);
3121 if (ffname == NULL || sfname == NULL)
3122 {
3123 vim_free(sfname);
3124 vim_free(ffname);
3125 return FAIL;
3126 }
3127#ifdef USE_FNAME_CASE
3128# ifdef USE_LONG_FNAME
3129 if (USE_LONG_FNAME)
3130# endif
3131 fname_case(sfname, 0); /* set correct case for short file name */
3132#endif
3133 vim_free(buf->b_ffname);
3134 vim_free(buf->b_sfname);
3135 buf->b_ffname = ffname;
3136 buf->b_sfname = sfname;
3137 }
3138 buf->b_fname = buf->b_sfname;
3139#ifdef UNIX
3140 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003141 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 else
3143 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003144 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 buf->b_dev = st.st_dev;
3146 buf->b_ino = st.st_ino;
3147 }
3148#endif
3149
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151
3152 buf_name_changed(buf);
3153 return OK;
3154}
3155
3156/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003157 * Crude way of changing the name of a buffer. Use with care!
3158 * The name should be relative to the current directory.
3159 */
3160 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003161buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003162{
3163 buf_T *buf;
3164
3165 buf = buflist_findnr(fnum);
3166 if (buf != NULL)
3167 {
3168 vim_free(buf->b_sfname);
3169 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003170 buf->b_ffname = vim_strsave(name);
3171 buf->b_sfname = NULL;
3172 /* Allocate ffname and expand into full path. Also resolves .lnk
3173 * files on Win32. */
3174 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003175 buf->b_fname = buf->b_sfname;
3176 }
3177}
3178
3179/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 * Take care of what needs to be done when the name of buffer "buf" has
3181 * changed.
3182 */
3183 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003184buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185{
3186 /*
3187 * If the file name changed, also change the name of the swapfile
3188 */
3189 if (buf->b_ml.ml_mfp != NULL)
3190 ml_setname(buf);
3191
3192 if (curwin->w_buffer == buf)
3193 check_arg_idx(curwin); /* check file name for arg list */
3194#ifdef FEAT_TITLE
3195 maketitle(); /* set window title */
3196#endif
3197#ifdef FEAT_WINDOWS
3198 status_redraw_all(); /* status lines need to be redrawn */
3199#endif
3200 fmarks_check_names(buf); /* check named file marks */
3201 ml_timestamp(buf); /* reset timestamp */
3202}
3203
3204/*
3205 * set alternate file name for current window
3206 *
3207 * Used by do_one_cmd(), do_write() and do_ecmd().
3208 * Return the buffer.
3209 */
3210 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003211setaltfname(
3212 char_u *ffname,
3213 char_u *sfname,
3214 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215{
3216 buf_T *buf;
3217
3218 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3219 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003220 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 curwin->w_alt_fnum = buf->b_fnum;
3222 return buf;
3223}
3224
3225/*
3226 * Get alternate file name for current window.
3227 * Return NULL if there isn't any, and give error message if requested.
3228 */
3229 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003230getaltfname(
3231 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232{
3233 char_u *fname;
3234 linenr_T dummy;
3235
3236 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3237 {
3238 if (errmsg)
3239 EMSG(_(e_noalt));
3240 return NULL;
3241 }
3242 return fname;
3243}
3244
3245/*
3246 * Add a file name to the buflist and return its number.
3247 * Uses same flags as buflist_new(), except BLN_DUMMY.
3248 *
3249 * used by qf_init(), main() and doarglist()
3250 */
3251 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003252buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253{
3254 buf_T *buf;
3255
3256 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3257 if (buf != NULL)
3258 return buf->b_fnum;
3259 return 0;
3260}
3261
3262#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3263/*
3264 * Adjust slashes in file names. Called after 'shellslash' was set.
3265 */
3266 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003267buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268{
3269 buf_T *bp;
3270
Bram Moolenaar29323592016-07-24 22:04:11 +02003271 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 {
3273 if (bp->b_ffname != NULL)
3274 slash_adjust(bp->b_ffname);
3275 if (bp->b_sfname != NULL)
3276 slash_adjust(bp->b_sfname);
3277 }
3278}
3279#endif
3280
3281/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003282 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 * Also save the local window option values.
3284 */
3285 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003286buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003288 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289}
3290
3291/*
3292 * Return TRUE if 'ffname' is not the same file as current file.
3293 * Fname must have a full path (expanded by mch_FullName()).
3294 */
3295 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003296otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297{
3298 return otherfile_buf(curbuf, ffname
3299#ifdef UNIX
3300 , NULL
3301#endif
3302 );
3303}
3304
3305 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003306otherfile_buf(
3307 buf_T *buf,
3308 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003310 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003312 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313{
3314 /* no name is different */
3315 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3316 return TRUE;
3317 if (fnamecmp(ffname, buf->b_ffname) == 0)
3318 return FALSE;
3319#ifdef UNIX
3320 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003321 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322
Bram Moolenaar8767f522016-07-01 17:17:39 +02003323 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 if (stp == NULL)
3325 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003326 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 st.st_dev = (dev_T)-1;
3328 stp = &st;
3329 }
3330 /* Use dev/ino to check if the files are the same, even when the names
3331 * are different (possible with links). Still need to compare the
3332 * name above, for when the file doesn't exist yet.
3333 * Problem: The dev/ino changes when a file is deleted (and created
3334 * again) and remains the same when renamed/moved. We don't want to
3335 * mch_stat() each buffer each time, that would be too slow. Get the
3336 * dev/ino again when they appear to match, but not when they appear
3337 * to be different: Could skip a buffer when it's actually the same
3338 * file. */
3339 if (buf_same_ino(buf, stp))
3340 {
3341 buf_setino(buf);
3342 if (buf_same_ino(buf, stp))
3343 return FALSE;
3344 }
3345 }
3346#endif
3347 return TRUE;
3348}
3349
3350#if defined(UNIX) || defined(PROTO)
3351/*
3352 * Set inode and device number for a buffer.
3353 * Must always be called when b_fname is changed!.
3354 */
3355 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003356buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003358 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359
3360 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3361 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003362 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 buf->b_dev = st.st_dev;
3364 buf->b_ino = st.st_ino;
3365 }
3366 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003367 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368}
3369
3370/*
3371 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3372 */
3373 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003374buf_same_ino(
3375 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003376 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003378 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 && stp->st_dev == buf->b_dev
3380 && stp->st_ino == buf->b_ino);
3381}
3382#endif
3383
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003384/*
3385 * Print info about the current buffer.
3386 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003388fileinfo(
3389 int fullname, /* when non-zero print full path */
3390 int shorthelp,
3391 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392{
3393 char_u *name;
3394 int n;
3395 char_u *p;
3396 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003397 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398
3399 buffer = alloc(IOSIZE);
3400 if (buffer == NULL)
3401 return;
3402
3403 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3404 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003405 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 p = buffer + STRLEN(buffer);
3407 }
3408 else
3409 p = buffer;
3410
3411 *p++ = '"';
3412 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003413 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 else
3415 {
3416 if (!fullname && curbuf->b_fname != NULL)
3417 name = curbuf->b_fname;
3418 else
3419 name = curbuf->b_ffname;
3420 home_replace(shorthelp ? curbuf : NULL, name, p,
3421 (int)(IOSIZE - (p - buffer)), TRUE);
3422 }
3423
Bram Moolenaara800b422010-06-27 01:15:55 +02003424 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 curbufIsChanged() ? (shortmess(SHM_MOD)
3426 ? " [+]" : _(" [Modified]")) : " ",
3427 (curbuf->b_flags & BF_NOTEDITED)
3428#ifdef FEAT_QUICKFIX
3429 && !bt_dontwrite(curbuf)
3430#endif
3431 ? _("[Not edited]") : "",
3432 (curbuf->b_flags & BF_NEW)
3433#ifdef FEAT_QUICKFIX
3434 && !bt_dontwrite(curbuf)
3435#endif
3436 ? _("[New file]") : "",
3437 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003438 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 : _("[readonly]")) : "",
3440 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3441 || curbuf->b_p_ro) ?
3442 " " : "");
3443 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3444 * causes an overflow, thus for large numbers divide instead. */
3445 if (curwin->w_cursor.lnum > 1000000L)
3446 n = (int)(((long)curwin->w_cursor.lnum) /
3447 ((long)curbuf->b_ml.ml_line_count / 100L));
3448 else
3449 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3450 (long)curbuf->b_ml.ml_line_count);
3451 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3452 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003453 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 }
3455#ifdef FEAT_CMDL_INFO
3456 else if (p_ru)
3457 {
3458 /* Current line and column are already on the screen -- webb */
3459 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003460 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003462 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 (long)curbuf->b_ml.ml_line_count, n);
3464 }
3465#endif
3466 else
3467 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003468 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 _("line %ld of %ld --%d%%-- col "),
3470 (long)curwin->w_cursor.lnum,
3471 (long)curbuf->b_ml.ml_line_count,
3472 n);
3473 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003474 len = STRLEN(buffer);
3475 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3477 }
3478
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003479 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480
3481 if (dont_truncate)
3482 {
3483 /* Temporarily set msg_scroll to avoid the message being truncated.
3484 * First call msg_start() to get the message in the right place. */
3485 msg_start();
3486 n = msg_scroll;
3487 msg_scroll = TRUE;
3488 msg(buffer);
3489 msg_scroll = n;
3490 }
3491 else
3492 {
3493 p = msg_trunc_attr(buffer, FALSE, 0);
3494 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 /* Need to repeat the message after redrawing when:
3496 * - When restart_edit is set (otherwise there will be a delay
3497 * before redrawing).
3498 * - When the screen was scrolled but there is no wait-return
3499 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003500 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 }
3502
3503 vim_free(buffer);
3504}
3505
3506 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003507col_print(
3508 char_u *buf,
3509 size_t buflen,
3510 int col,
3511 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512{
3513 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003514 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003516 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517}
3518
3519#if defined(FEAT_TITLE) || defined(PROTO)
3520/*
3521 * put file name in title bar of window and in icon title
3522 */
3523
3524static char_u *lasttitle = NULL;
3525static char_u *lasticon = NULL;
3526
3527 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003528maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529{
3530 char_u *p;
3531 char_u *t_str = NULL;
3532 char_u *i_name;
3533 char_u *i_str = NULL;
3534 int maxlen = 0;
3535 int len;
3536 int mustset;
3537 char_u buf[IOSIZE];
3538 int off;
3539
3540 if (!redrawing())
3541 {
3542 /* Postpone updating the title when 'lazyredraw' is set. */
3543 need_maketitle = TRUE;
3544 return;
3545 }
3546
3547 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003548 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 return;
3550
3551 if (p_title)
3552 {
3553 if (p_titlelen > 0)
3554 {
3555 maxlen = p_titlelen * Columns / 100;
3556 if (maxlen < 10)
3557 maxlen = 10;
3558 }
3559
3560 t_str = buf;
3561 if (*p_titlestring != NUL)
3562 {
3563#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003564 if (stl_syntax & STL_IN_TITLE)
3565 {
3566 int use_sandbox = FALSE;
3567 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003568
3569# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003570 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003571# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003572 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003574 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003575 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003576 if (called_emsg)
3577 set_string_option_direct((char_u *)"titlestring", -1,
3578 (char_u *)"", OPT_FREE, SID_ERROR);
3579 called_emsg |= save_called_emsg;
3580 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 else
3582#endif
3583 t_str = p_titlestring;
3584 }
3585 else
3586 {
3587 /* format: "fname + (path) (1 of 2) - VIM" */
3588
Bram Moolenaar2c666692012-09-05 13:30:40 +02003589#define SPACE_FOR_FNAME (IOSIZE - 100)
3590#define SPACE_FOR_DIR (IOSIZE - 20)
3591#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003593 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594 else
3595 {
3596 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003597 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 }
3600
3601 switch (bufIsChanged(curbuf)
3602 + (curbuf->b_p_ro * 2)
3603 + (!curbuf->b_p_ma * 4))
3604 {
3605 case 1: STRCAT(buf, " +"); break;
3606 case 2: STRCAT(buf, " ="); break;
3607 case 3: STRCAT(buf, " =+"); break;
3608 case 4:
3609 case 6: STRCAT(buf, " -"); break;
3610 case 5:
3611 case 7: STRCAT(buf, " -+"); break;
3612 }
3613
3614 if (curbuf->b_fname != NULL)
3615 {
3616 /* Get path of file, replace home dir with ~ */
3617 off = (int)STRLEN(buf);
3618 buf[off++] = ' ';
3619 buf[off++] = '(';
3620 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003621 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622#ifdef BACKSLASH_IN_FILENAME
3623 /* avoid "c:/name" to be reduced to "c" */
3624 if (isalpha(buf[off]) && buf[off + 1] == ':')
3625 off += 2;
3626#endif
3627 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003628 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 if (p == buf + off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630 /* must be a help buffer */
Bram Moolenaarb6356332005-07-18 21:40:44 +00003631 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003632 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003635
Bram Moolenaar2c666692012-09-05 13:30:40 +02003636 /* Translate unprintable chars and concatenate. Keep some
3637 * room for the server name. When there is no room (very long
3638 * file name) use (...). */
3639 if (off < SPACE_FOR_DIR)
3640 {
3641 p = transstr(buf + off);
3642 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3643 vim_free(p);
3644 }
3645 else
3646 {
3647 vim_strncpy(buf + off, (char_u *)"...",
3648 (size_t)(SPACE_FOR_ARGNR - off));
3649 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 STRCAT(buf, ")");
3651 }
3652
Bram Moolenaar2c666692012-09-05 13:30:40 +02003653 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654
3655#if defined(FEAT_CLIENTSERVER)
3656 if (serverName != NULL)
3657 {
3658 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003659 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 }
3661 else
3662#endif
3663 STRCAT(buf, " - VIM");
3664
3665 if (maxlen > 0)
3666 {
3667 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003668 if (vim_strsize(buf) > maxlen)
3669 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 }
3671 }
3672 }
3673 mustset = ti_change(t_str, &lasttitle);
3674
3675 if (p_icon)
3676 {
3677 i_str = buf;
3678 if (*p_iconstring != NUL)
3679 {
3680#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003681 if (stl_syntax & STL_IN_ICON)
3682 {
3683 int use_sandbox = FALSE;
3684 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003685
3686# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003687 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003688# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003689 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003691 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003692 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003693 if (called_emsg)
3694 set_string_option_direct((char_u *)"iconstring", -1,
3695 (char_u *)"", OPT_FREE, SID_ERROR);
3696 called_emsg |= save_called_emsg;
3697 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 else
3699#endif
3700 i_str = p_iconstring;
3701 }
3702 else
3703 {
3704 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003705 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 else /* use file name only in icon */
3707 i_name = gettail(curbuf->b_ffname);
3708 *i_str = NUL;
3709 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003710 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 if (len > 100)
3712 {
3713 len -= 100;
3714#ifdef FEAT_MBYTE
3715 if (has_mbyte)
3716 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3717#endif
3718 i_name += len;
3719 }
3720 STRCPY(i_str, i_name);
3721 trans_characters(i_str, IOSIZE);
3722 }
3723 }
3724
3725 mustset |= ti_change(i_str, &lasticon);
3726
3727 if (mustset)
3728 resettitle();
3729}
3730
3731/*
3732 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3733 * from "str" if it does.
3734 * Return TRUE when "*last" changed.
3735 */
3736 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003737ti_change(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738{
3739 if ((str == NULL) != (*last == NULL)
3740 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3741 {
3742 vim_free(*last);
3743 if (str == NULL)
3744 *last = NULL;
3745 else
3746 *last = vim_strsave(str);
3747 return TRUE;
3748 }
3749 return FALSE;
3750}
3751
3752/*
3753 * Put current window title back (used after calling a shell)
3754 */
3755 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003756resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757{
3758 mch_settitle(lasttitle, lasticon);
3759}
Bram Moolenaarea408852005-06-25 22:49:46 +00003760
3761# if defined(EXITFREE) || defined(PROTO)
3762 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003763free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003764{
3765 vim_free(lasttitle);
3766 vim_free(lasticon);
3767}
3768# endif
3769
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770#endif /* FEAT_TITLE */
3771
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003772#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003774 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 * Return length of string in screen cells.
3776 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003777 * Normally works for window "wp", except when working for 'tabline' then it
3778 * is "curwin".
3779 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 * Items are drawn interspersed with the text that surrounds it
3781 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3782 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3783 *
3784 * If maxwidth is not zero, the string will be filled at any middle marker
3785 * or truncated if too long, fillchar is used for all whitespace.
3786 */
3787 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003788build_stl_str_hl(
3789 win_T *wp,
3790 char_u *out, /* buffer to write into != NameBuff */
3791 size_t outlen, /* length of out[] */
3792 char_u *fmt,
3793 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3794 int fillchar,
3795 int maxwidth,
3796 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3797 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798{
3799 char_u *p;
3800 char_u *s;
3801 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003802 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803#ifdef FEAT_EVAL
3804 win_T *o_curwin;
3805 buf_T *o_curbuf;
3806#endif
3807 int empty_line;
3808 colnr_T virtcol;
3809 long l;
3810 long n;
3811 int prevchar_isflag;
3812 int prevchar_isitem;
3813 int itemisflag;
3814 int fillable;
3815 char_u *str;
3816 long num;
3817 int width;
3818 int itemcnt;
3819 int curitem;
3820 int groupitem[STL_MAX_ITEM];
3821 int groupdepth;
3822 struct stl_item
3823 {
3824 char_u *start;
3825 int minwid;
3826 int maxwid;
3827 enum
3828 {
3829 Normal,
3830 Empty,
3831 Group,
3832 Middle,
3833 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003834 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 Trunc
3836 } type;
3837 } item[STL_MAX_ITEM];
3838 int minwid;
3839 int maxwid;
3840 int zeropad;
3841 char_u base;
3842 char_u opt;
3843#define TMPLEN 70
3844 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003845 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003846 struct stl_hlrec *sp;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003847
3848#ifdef FEAT_EVAL
3849 /*
3850 * When the format starts with "%!" then evaluate it as an expression and
3851 * use the result as the actual format string.
3852 */
3853 if (fmt[0] == '%' && fmt[1] == '!')
3854 {
3855 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3856 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003857 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003858 }
3859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860
3861 if (fillchar == 0)
3862 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003863#ifdef FEAT_MBYTE
3864 /* Can't handle a multi-byte fill character yet. */
3865 else if (mb_char2len(fillchar) > 1)
3866 fillchar = '-';
3867#endif
3868
Bram Moolenaar567199b2013-04-24 16:52:36 +02003869 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3870 * p will become invalid when getting another buffer line. */
3871 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3872 empty_line = (*p == NUL);
3873
3874 /* Get the byte value now, in case we need it below. This is more
3875 * efficient than making a copy of the line. */
3876 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3877 byteval = 0;
3878 else
3879#ifdef FEAT_MBYTE
3880 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3881#else
3882 byteval = p[wp->w_cursor.col];
3883#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884
3885 groupdepth = 0;
3886 p = out;
3887 curitem = 0;
3888 prevchar_isflag = TRUE;
3889 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003890 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003892 if (curitem == STL_MAX_ITEM)
3893 {
3894 /* There are too many items. Add the error code to the statusline
3895 * to give the user a hint about what went wrong. */
3896 if (p + 6 < out + outlen)
3897 {
3898 mch_memmove(p, " E541", (size_t)5);
3899 p += 5;
3900 }
3901 break;
3902 }
3903
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 if (*s != NUL && *s != '%')
3905 prevchar_isflag = prevchar_isitem = FALSE;
3906
3907 /*
3908 * Handle up to the next '%' or the end.
3909 */
3910 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3911 *p++ = *s++;
3912 if (*s == NUL || p + 1 >= out + outlen)
3913 break;
3914
3915 /*
3916 * Handle one '%' item.
3917 */
3918 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003919 if (*s == NUL) /* ignore trailing % */
3920 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 if (*s == '%')
3922 {
3923 if (p + 1 >= out + outlen)
3924 break;
3925 *p++ = *s++;
3926 prevchar_isflag = prevchar_isitem = FALSE;
3927 continue;
3928 }
3929 if (*s == STL_MIDDLEMARK)
3930 {
3931 s++;
3932 if (groupdepth > 0)
3933 continue;
3934 item[curitem].type = Middle;
3935 item[curitem++].start = p;
3936 continue;
3937 }
3938 if (*s == STL_TRUNCMARK)
3939 {
3940 s++;
3941 item[curitem].type = Trunc;
3942 item[curitem++].start = p;
3943 continue;
3944 }
3945 if (*s == ')')
3946 {
3947 s++;
3948 if (groupdepth < 1)
3949 continue;
3950 groupdepth--;
3951
3952 t = item[groupitem[groupdepth]].start;
3953 *p = NUL;
3954 l = vim_strsize(t);
3955 if (curitem > groupitem[groupdepth] + 1
3956 && item[groupitem[groupdepth]].minwid == 0)
3957 {
3958 /* remove group if all items are empty */
3959 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaaraf6e36f2016-03-08 12:56:33 +01003960 if (item[n].type == Normal || item[n].type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 break;
3962 if (n == curitem)
3963 {
3964 p = t;
3965 l = 0;
3966 }
3967 }
3968 if (l > item[groupitem[groupdepth]].maxwid)
3969 {
3970 /* truncate, remove n bytes of text at the start */
3971#ifdef FEAT_MBYTE
3972 if (has_mbyte)
3973 {
3974 /* Find the first character that should be included. */
3975 n = 0;
3976 while (l >= item[groupitem[groupdepth]].maxwid)
3977 {
3978 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003979 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 }
3981 }
3982 else
3983#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003984 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985
3986 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003987 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 p = p - n + 1;
3989#ifdef FEAT_MBYTE
3990 /* Fill up space left over by half a double-wide char. */
3991 while (++l < item[groupitem[groupdepth]].minwid)
3992 *p++ = fillchar;
3993#endif
3994
3995 /* correct the start of the items for the truncation */
3996 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
3997 {
3998 item[l].start -= n;
3999 if (item[l].start < t)
4000 item[l].start = t;
4001 }
4002 }
4003 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4004 {
4005 /* fill */
4006 n = item[groupitem[groupdepth]].minwid;
4007 if (n < 0)
4008 {
4009 /* fill by appending characters */
4010 n = 0 - n;
4011 while (l++ < n && p + 1 < out + outlen)
4012 *p++ = fillchar;
4013 }
4014 else
4015 {
4016 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004017 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 l = n - l;
4019 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004020 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 p += l;
4022 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4023 item[n].start += l;
4024 for ( ; l > 0; l--)
4025 *t++ = fillchar;
4026 }
4027 }
4028 continue;
4029 }
4030 minwid = 0;
4031 maxwid = 9999;
4032 zeropad = FALSE;
4033 l = 1;
4034 if (*s == '0')
4035 {
4036 s++;
4037 zeropad = TRUE;
4038 }
4039 if (*s == '-')
4040 {
4041 s++;
4042 l = -1;
4043 }
4044 if (VIM_ISDIGIT(*s))
4045 {
4046 minwid = (int)getdigits(&s);
4047 if (minwid < 0) /* overflow */
4048 minwid = 0;
4049 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004050 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 {
4052 item[curitem].type = Highlight;
4053 item[curitem].start = p;
4054 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4055 s++;
4056 curitem++;
4057 continue;
4058 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004059 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4060 {
4061 if (*s == STL_TABCLOSENR)
4062 {
4063 if (minwid == 0)
4064 {
4065 /* %X ends the close label, go back to the previously
4066 * define tab label nr. */
4067 for (n = curitem - 1; n >= 0; --n)
4068 if (item[n].type == TabPage && item[n].minwid >= 0)
4069 {
4070 minwid = item[n].minwid;
4071 break;
4072 }
4073 }
4074 else
4075 /* close nrs are stored as negative values */
4076 minwid = - minwid;
4077 }
4078 item[curitem].type = TabPage;
4079 item[curitem].start = p;
4080 item[curitem].minwid = minwid;
4081 s++;
4082 curitem++;
4083 continue;
4084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 if (*s == '.')
4086 {
4087 s++;
4088 if (VIM_ISDIGIT(*s))
4089 {
4090 maxwid = (int)getdigits(&s);
4091 if (maxwid <= 0) /* overflow */
4092 maxwid = 50;
4093 }
4094 }
4095 minwid = (minwid > 50 ? 50 : minwid) * l;
4096 if (*s == '(')
4097 {
4098 groupitem[groupdepth++] = curitem;
4099 item[curitem].type = Group;
4100 item[curitem].start = p;
4101 item[curitem].minwid = minwid;
4102 item[curitem].maxwid = maxwid;
4103 s++;
4104 curitem++;
4105 continue;
4106 }
4107 if (vim_strchr(STL_ALL, *s) == NULL)
4108 {
4109 s++;
4110 continue;
4111 }
4112 opt = *s++;
4113
4114 /* OK - now for the real work */
4115 base = 'D';
4116 itemisflag = FALSE;
4117 fillable = TRUE;
4118 num = -1;
4119 str = NULL;
4120 switch (opt)
4121 {
4122 case STL_FILEPATH:
4123 case STL_FULLPATH:
4124 case STL_FILENAME:
4125 fillable = FALSE; /* don't change ' ' to fillchar */
4126 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004127 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 else
4129 {
4130 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004131 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4133 }
4134 trans_characters(NameBuff, MAXPATHL);
4135 if (opt != STL_FILENAME)
4136 str = NameBuff;
4137 else
4138 str = gettail(NameBuff);
4139 break;
4140
4141 case STL_VIM_EXPR: /* '{' */
4142 itemisflag = TRUE;
4143 t = p;
4144 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4145 *p++ = *s++;
4146 if (*s != '}') /* missing '}' or out of space */
4147 break;
4148 s++;
4149 *p = 0;
4150 p = t;
4151
4152#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004153 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 set_internal_string_var((char_u *)"actual_curbuf", tmp);
4155
4156 o_curbuf = curbuf;
4157 o_curwin = curwin;
4158 curwin = wp;
4159 curbuf = wp->w_buffer;
4160
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004161 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162
4163 curwin = o_curwin;
4164 curbuf = o_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004165 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166
4167 if (str != NULL && *str != 0)
4168 {
4169 if (*skipdigits(str) == NUL)
4170 {
4171 num = atoi((char *)str);
4172 vim_free(str);
4173 str = NULL;
4174 itemisflag = FALSE;
4175 }
4176 }
4177#endif
4178 break;
4179
4180 case STL_LINE:
4181 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4182 ? 0L : (long)(wp->w_cursor.lnum);
4183 break;
4184
4185 case STL_NUMLINES:
4186 num = wp->w_buffer->b_ml.ml_line_count;
4187 break;
4188
4189 case STL_COLUMN:
4190 num = !(State & INSERT) && empty_line
4191 ? 0 : (int)wp->w_cursor.col + 1;
4192 break;
4193
4194 case STL_VIRTCOL:
4195 case STL_VIRTCOL_ALT:
4196 /* In list mode virtcol needs to be recomputed */
4197 virtcol = wp->w_virtcol;
4198 if (wp->w_p_list && lcs_tab1 == NUL)
4199 {
4200 wp->w_p_list = FALSE;
4201 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4202 wp->w_p_list = TRUE;
4203 }
4204 ++virtcol;
4205 /* Don't display %V if it's the same as %c. */
4206 if (opt == STL_VIRTCOL_ALT
4207 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4208 ? 0 : (int)wp->w_cursor.col + 1)))
4209 break;
4210 num = (long)virtcol;
4211 break;
4212
4213 case STL_PERCENTAGE:
4214 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4215 (long)wp->w_buffer->b_ml.ml_line_count);
4216 break;
4217
4218 case STL_ALTPERCENT:
4219 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004220 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 break;
4222
4223 case STL_ARGLISTSTAT:
4224 fillable = FALSE;
4225 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004226 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 str = tmp;
4228 break;
4229
4230 case STL_KEYMAP:
4231 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004232 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 str = tmp;
4234 break;
4235 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004236#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004237 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238#else
4239 num = 0;
4240#endif
4241 break;
4242
4243 case STL_BUFNO:
4244 num = wp->w_buffer->b_fnum;
4245 break;
4246
4247 case STL_OFFSET_X:
4248 base = 'X';
4249 case STL_OFFSET:
4250#ifdef FEAT_BYTEOFF
4251 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4252 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4253 0L : l + 1 + (!(State & INSERT) && empty_line ?
4254 0 : (int)wp->w_cursor.col);
4255#endif
4256 break;
4257
4258 case STL_BYTEVAL_X:
4259 base = 'X';
4260 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004261 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 if (num == NL)
4263 num = 0;
4264 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4265 num = NL;
4266 break;
4267
4268 case STL_ROFLAG:
4269 case STL_ROFLAG_ALT:
4270 itemisflag = TRUE;
4271 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004272 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 break;
4274
4275 case STL_HELPFLAG:
4276 case STL_HELPFLAG_ALT:
4277 itemisflag = TRUE;
4278 if (wp->w_buffer->b_help)
4279 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004280 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 break;
4282
4283#ifdef FEAT_AUTOCMD
4284 case STL_FILETYPE:
4285 if (*wp->w_buffer->b_p_ft != NUL
4286 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4287 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004288 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4289 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 str = tmp;
4291 }
4292 break;
4293
4294 case STL_FILETYPE_ALT:
4295 itemisflag = TRUE;
4296 if (*wp->w_buffer->b_p_ft != NUL
4297 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4298 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004299 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4300 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 for (t = tmp; *t != 0; t++)
4302 *t = TOUPPER_LOC(*t);
4303 str = tmp;
4304 }
4305 break;
4306#endif
4307
4308#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4309 case STL_PREVIEWFLAG:
4310 case STL_PREVIEWFLAG_ALT:
4311 itemisflag = TRUE;
4312 if (wp->w_p_pvw)
4313 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4314 : _("[Preview]"));
4315 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004316
4317 case STL_QUICKFIX:
4318 if (bt_quickfix(wp->w_buffer))
4319 str = (char_u *)(wp->w_llist_ref
4320 ? _(msg_loclist)
4321 : _(msg_qflist));
4322 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323#endif
4324
4325 case STL_MODIFIED:
4326 case STL_MODIFIED_ALT:
4327 itemisflag = TRUE;
4328 switch ((opt == STL_MODIFIED_ALT)
4329 + bufIsChanged(wp->w_buffer) * 2
4330 + (!wp->w_buffer->b_p_ma) * 4)
4331 {
4332 case 2: str = (char_u *)"[+]"; break;
4333 case 3: str = (char_u *)",+"; break;
4334 case 4: str = (char_u *)"[-]"; break;
4335 case 5: str = (char_u *)",-"; break;
4336 case 6: str = (char_u *)"[+-]"; break;
4337 case 7: str = (char_u *)",+-"; break;
4338 }
4339 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004340
4341 case STL_HIGHLIGHT:
4342 t = s;
4343 while (*s != '#' && *s != NUL)
4344 ++s;
4345 if (*s == '#')
4346 {
4347 item[curitem].type = Highlight;
4348 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004349 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004350 curitem++;
4351 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004352 if (*s != NUL)
4353 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004354 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 }
4356
4357 item[curitem].start = p;
4358 item[curitem].type = Normal;
4359 if (str != NULL && *str)
4360 {
4361 t = str;
4362 if (itemisflag)
4363 {
4364 if ((t[0] && t[1])
4365 && ((!prevchar_isitem && *t == ',')
4366 || (prevchar_isflag && *t == ' ')))
4367 t++;
4368 prevchar_isflag = TRUE;
4369 }
4370 l = vim_strsize(t);
4371 if (l > 0)
4372 prevchar_isitem = TRUE;
4373 if (l > maxwid)
4374 {
4375 while (l >= maxwid)
4376#ifdef FEAT_MBYTE
4377 if (has_mbyte)
4378 {
4379 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004380 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 }
4382 else
4383#endif
4384 l -= byte2cells(*t++);
4385 if (p + 1 >= out + outlen)
4386 break;
4387 *p++ = '<';
4388 }
4389 if (minwid > 0)
4390 {
4391 for (; l < minwid && p + 1 < out + outlen; l++)
4392 {
4393 /* Don't put a "-" in front of a digit. */
4394 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4395 *p++ = ' ';
4396 else
4397 *p++ = fillchar;
4398 }
4399 minwid = 0;
4400 }
4401 else
4402 minwid *= -1;
4403 while (*t && p + 1 < out + outlen)
4404 {
4405 *p++ = *t++;
4406 /* Change a space by fillchar, unless fillchar is '-' and a
4407 * digit follows. */
4408 if (fillable && p[-1] == ' '
4409 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4410 p[-1] = fillchar;
4411 }
4412 for (; l < minwid && p + 1 < out + outlen; l++)
4413 *p++ = fillchar;
4414 }
4415 else if (num >= 0)
4416 {
4417 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4418 char_u nstr[20];
4419
4420 if (p + 20 >= out + outlen)
4421 break; /* not sufficient space */
4422 prevchar_isitem = TRUE;
4423 t = nstr;
4424 if (opt == STL_VIRTCOL_ALT)
4425 {
4426 *t++ = '-';
4427 minwid--;
4428 }
4429 *t++ = '%';
4430 if (zeropad)
4431 *t++ = '0';
4432 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004433 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 *t = 0;
4435
4436 for (n = num, l = 1; n >= nbase; n /= nbase)
4437 l++;
4438 if (opt == STL_VIRTCOL_ALT)
4439 l++;
4440 if (l > maxwid)
4441 {
4442 l += 2;
4443 n = l - maxwid;
4444 while (l-- > maxwid)
4445 num /= nbase;
4446 *t++ = '>';
4447 *t++ = '%';
4448 *t = t[-3];
4449 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004450 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4451 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 }
4453 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004454 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4455 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 p += STRLEN(p);
4457 }
4458 else
4459 item[curitem].type = Empty;
4460
4461 if (opt == STL_VIM_EXPR)
4462 vim_free(str);
4463
4464 if (num >= 0 || (!itemisflag && str && *str))
4465 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4466 curitem++;
4467 }
4468 *p = NUL;
4469 itemcnt = curitem;
4470
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004471#ifdef FEAT_EVAL
4472 if (usefmt != fmt)
4473 vim_free(usefmt);
4474#endif
4475
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476 width = vim_strsize(out);
4477 if (maxwidth > 0 && width > maxwidth)
4478 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004479 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 l = 0;
4481 if (itemcnt == 0)
4482 s = out;
4483 else
4484 {
4485 for ( ; l < itemcnt; l++)
4486 if (item[l].type == Trunc)
4487 {
4488 /* Truncate at %< item. */
4489 s = item[l].start;
4490 break;
4491 }
4492 if (l == itemcnt)
4493 {
4494 /* No %< item, truncate first item. */
4495 s = item[0].start;
4496 l = 0;
4497 }
4498 }
4499
4500 if (width - vim_strsize(s) >= maxwidth)
4501 {
4502 /* Truncation mark is beyond max length */
4503#ifdef FEAT_MBYTE
4504 if (has_mbyte)
4505 {
4506 s = out;
4507 width = 0;
4508 for (;;)
4509 {
4510 width += ptr2cells(s);
4511 if (width >= maxwidth)
4512 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004513 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 }
4515 /* Fill up for half a double-wide character. */
4516 while (++width < maxwidth)
4517 *s++ = fillchar;
4518 }
4519 else
4520#endif
4521 s = out + maxwidth - 1;
4522 for (l = 0; l < itemcnt; l++)
4523 if (item[l].start > s)
4524 break;
4525 itemcnt = l;
4526 *s++ = '>';
4527 *s = 0;
4528 }
4529 else
4530 {
4531#ifdef FEAT_MBYTE
4532 if (has_mbyte)
4533 {
4534 n = 0;
4535 while (width >= maxwidth)
4536 {
4537 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004538 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 }
4540 }
4541 else
4542#endif
4543 n = width - maxwidth + 1;
4544 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004545 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 *s = '<';
4547
4548 /* Fill up for half a double-wide character. */
4549 while (++width < maxwidth)
4550 {
4551 s = s + STRLEN(s);
4552 *s++ = fillchar;
4553 *s = NUL;
4554 }
4555
4556 --n; /* count the '<' */
4557 for (; l < itemcnt; l++)
4558 {
4559 if (item[l].start - n >= s)
4560 item[l].start -= n;
4561 else
4562 item[l].start = s;
4563 }
4564 }
4565 width = maxwidth;
4566 }
4567 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4568 {
4569 /* Apply STL_MIDDLE if any */
4570 for (l = 0; l < itemcnt; l++)
4571 if (item[l].type == Middle)
4572 break;
4573 if (l < itemcnt)
4574 {
4575 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004576 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 for (s = item[l].start; s < p; s++)
4578 *s = fillchar;
4579 for (l++; l < itemcnt; l++)
4580 item[l].start += maxwidth - width;
4581 width = maxwidth;
4582 }
4583 }
4584
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004585 /* Store the info about highlighting. */
4586 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004588 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 for (l = 0; l < itemcnt; l++)
4590 {
4591 if (item[l].type == Highlight)
4592 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004593 sp->start = item[l].start;
4594 sp->userhl = item[l].minwid;
4595 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 }
4597 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004598 sp->start = NULL;
4599 sp->userhl = 0;
4600 }
4601
4602 /* Store the info about tab pages labels. */
4603 if (tabtab != NULL)
4604 {
4605 sp = tabtab;
4606 for (l = 0; l < itemcnt; l++)
4607 {
4608 if (item[l].type == TabPage)
4609 {
4610 sp->start = item[l].start;
4611 sp->userhl = item[l].minwid;
4612 sp++;
4613 }
4614 }
4615 sp->start = NULL;
4616 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 }
4618
4619 return width;
4620}
4621#endif /* FEAT_STL_OPT */
4622
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004623#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4624 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004626 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4627 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 */
4629 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004630get_rel_pos(
4631 win_T *wp,
4632 char_u *buf,
4633 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634{
4635 long above; /* number of lines above window */
4636 long below; /* number of lines below window */
4637
Bram Moolenaar0027c212015-01-07 13:31:52 +01004638 if (buflen < 3) /* need at least 3 chars for writing */
4639 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640 above = wp->w_topline - 1;
4641#ifdef FEAT_DIFF
4642 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004643 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4644 above = 0; /* All buffer lines are displayed and there is an
4645 * indication of filler lines, that can be considered
4646 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647#endif
4648 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4649 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004650 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4651 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004653 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004655 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 ? (int)(above / ((above + below) / 100L))
4657 : (int)(above * 100L / (above + below)));
4658}
4659#endif
4660
4661/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004662 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 * Return TRUE if it was appended.
4664 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004665 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004666append_arg_number(
4667 win_T *wp,
4668 char_u *buf,
4669 int buflen,
4670 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671{
4672 char_u *p;
4673
4674 if (ARGCOUNT <= 1) /* nothing to do */
4675 return FALSE;
4676
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004677 p = buf + STRLEN(buf); /* go to the end of the buffer */
4678 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 return FALSE;
4680 *p++ = ' ';
4681 *p++ = '(';
4682 if (add_file)
4683 {
4684 STRCPY(p, "file ");
4685 p += 5;
4686 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004687 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4688 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4690 return TRUE;
4691}
4692
4693/*
4694 * If fname is not a full path, make it a full path.
4695 * Returns pointer to allocated memory (NULL for failure).
4696 */
4697 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004698fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699{
4700 /*
4701 * Force expanding the path always for Unix, because symbolic links may
4702 * mess up the full path name, even though it starts with a '/'.
4703 * Also expand when there is ".." in the file name, try to remove it,
4704 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004705 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 * For MS-Windows also expand names like "longna~1" to "longname".
4707 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004708#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 return FullName_save(fname, TRUE);
4710#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004711 if (!vim_isAbsName(fname)
4712 || strstr((char *)fname, "..") != NULL
4713 || strstr((char *)fname, "//") != NULL
4714# ifdef BACKSLASH_IN_FILENAME
4715 || strstr((char *)fname, "\\\\") != NULL
4716# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004717# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004719# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 )
4721 return FullName_save(fname, FALSE);
4722
4723 fname = vim_strsave(fname);
4724
Bram Moolenaar9b942202007-10-03 12:31:33 +00004725# ifdef USE_FNAME_CASE
4726# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004728# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 {
4730 if (fname != NULL)
4731 fname_case(fname, 0); /* set correct case for file name */
4732 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004733# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734
4735 return fname;
4736#endif
4737}
4738
4739/*
4740 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4741 * "ffname" becomes a pointer to allocated memory (or NULL).
4742 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004744fname_expand(
4745 buf_T *buf UNUSED,
4746 char_u **ffname,
4747 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748{
4749 if (*ffname == NULL) /* if no file name given, nothing to do */
4750 return;
4751 if (*sfname == NULL) /* if no short file name given, use ffname */
4752 *sfname = *ffname;
4753 *ffname = fix_fname(*ffname); /* expand to full path */
4754
4755#ifdef FEAT_SHORTCUT
4756 if (!buf->b_p_bin)
4757 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004758 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759
4760 /* If the file name is a shortcut file, use the file it links to. */
4761 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004762 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763 {
4764 vim_free(*ffname);
4765 *ffname = rfname;
4766 *sfname = rfname;
4767 }
4768 }
4769#endif
4770}
4771
4772/*
4773 * Get the file name for an argument list entry.
4774 */
4775 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004776alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777{
4778 buf_T *bp;
4779
4780 /* Use the name from the associated buffer if it exists. */
4781 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004782 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 return aep->ae_fname;
4784 return bp->b_fname;
4785}
4786
4787#if defined(FEAT_WINDOWS) || defined(PROTO)
4788/*
4789 * do_arg_all(): Open up to 'count' windows, one for each argument.
4790 */
4791 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004792do_arg_all(
4793 int count,
4794 int forceit, /* hide buffers in current windows */
4795 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796{
4797 int i;
4798 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004799 char_u *opened; /* Array of weight for which args are open:
4800 * 0: not opened
4801 * 1: opened in other tab
4802 * 2: opened in curtab
4803 * 3: opened in curtab and curwin
4804 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004805 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 int use_firstwin = FALSE; /* use first window for arglist */
4807 int split_ret = OK;
4808 int p_ea_save;
4809 alist_T *alist; /* argument list to be used */
4810 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004811 tabpage_T *tpnext;
4812 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004813 win_T *old_curwin, *last_curwin;
4814 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004815 win_T *new_curwin = NULL;
4816 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817
4818 if (ARGCOUNT <= 0)
4819 {
4820 /* Don't give an error message. We don't want it when the ":all"
4821 * command is in the .vimrc. */
4822 return;
4823 }
4824 setpcmark();
4825
4826 opened_len = ARGCOUNT;
4827 opened = alloc_clear((unsigned)opened_len);
4828 if (opened == NULL)
4829 return;
4830
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004831 /* Autocommands may do anything to the argument list. Make sure it's not
4832 * freed while we are working here by "locking" it. We still have to
4833 * watch out for its size to be changed. */
4834 alist = curwin->w_alist;
4835 ++alist->al_refcount;
4836
4837 old_curwin = curwin;
4838 old_curtab = curtab;
4839
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004840# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004842# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843
4844 /*
4845 * Try closing all windows that are not in the argument list.
4846 * Also close windows that are not full width;
4847 * When 'hidden' or "forceit" set the buffer becomes hidden.
4848 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004849 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004851 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004852 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004853 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004855 tpnext = curtab->tp_next;
4856 for (wp = firstwin; wp != NULL; wp = wpnext)
4857 {
4858 wpnext = wp->w_next;
4859 buf = wp->w_buffer;
4860 if (buf->b_ffname == NULL
Bram Moolenaar5a030a52016-12-01 17:48:29 +01004861 || (!keep_tabs && (buf->b_nwindows > 1
4862 || wp->w_width != Columns)))
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004863 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004864 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004866 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004867 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004869 if (i < alist->al_ga.ga_len
4870 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4871 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4872 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004874 int weight = 1;
4875
4876 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004877 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004878 ++weight;
4879 if (old_curwin == wp)
4880 ++weight;
4881 }
4882
4883 if (weight > (int)opened[i])
4884 {
4885 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004886 if (i == 0)
4887 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004888 if (new_curwin != NULL)
4889 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004890 new_curwin = wp;
4891 new_curtab = curtab;
4892 }
4893 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004894 else if (keep_tabs)
4895 i = opened_len;
4896
4897 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004898 {
4899 /* Use the current argument list for all windows
4900 * containing a file from it. */
4901 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004902 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004903 ++wp->w_alist->al_refcount;
4904 }
4905 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 }
4908 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004909 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004911 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004913 if (P_HID(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004914 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004916 /* If the buffer was changed, and we would like to hide it,
4917 * try autowriting. */
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004918 if (!P_HID(buf) && buf->b_nwindows <= 1
4919 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004921#ifdef FEAT_AUTOCMD
4922 bufref_T bufref;
4923
4924 set_bufref(&bufref, buf);
4925#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004926 (void)autowrite(buf, FALSE);
4927#ifdef FEAT_AUTOCMD
4928 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004929 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004930 {
4931 wpnext = firstwin; /* start all over... */
4932 continue;
4933 }
4934#endif
4935 }
4936#ifdef FEAT_WINDOWS
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004937 /* don't close last window */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01004938 if (ONE_WINDOW
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004939 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004940#endif
4941 use_firstwin = TRUE;
4942#ifdef FEAT_WINDOWS
4943 else
4944 {
4945 win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4946# ifdef FEAT_AUTOCMD
4947 /* check if autocommands removed the next window */
4948 if (!win_valid(wpnext))
4949 wpnext = firstwin; /* start all over... */
4950# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 }
4952#endif
4953 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 }
4955 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004956
4957 /* Without the ":tab" modifier only do the current tab page. */
4958 if (had_tab == 0 || tpnext == NULL)
4959 break;
4960
4961# ifdef FEAT_AUTOCMD
4962 /* check if autocommands removed the next tab page */
4963 if (!valid_tabpage(tpnext))
4964 tpnext = first_tabpage; /* start all over...*/
4965# endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004966 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 }
4968
4969 /*
4970 * Open a window for files in the argument list that don't have one.
4971 * ARGCOUNT may change while doing this, because of autocommands.
4972 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004973 if (count > opened_len || count <= 0)
4974 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975
4976#ifdef FEAT_AUTOCMD
4977 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4978 ++autocmd_no_enter;
4979 ++autocmd_no_leave;
4980#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004981 last_curwin = curwin;
4982 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004984#ifdef FEAT_WINDOWS
4985 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
4986 * leaving an empty tab page when executed locally. */
4987 if (keep_tabs && bufempty() && curbuf->b_nwindows == 1
4988 && curbuf->b_ffname == NULL && !curbuf->b_changed)
4989 use_firstwin = TRUE;
4990#endif
4991
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004992 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 {
4994 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4995 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004996 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 {
4998 /* Move the already present window to below the current window */
4999 if (curwin->w_arg_idx != i)
5000 {
5001 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5002 {
5003 if (wpnext->w_arg_idx == i)
5004 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005005 if (keep_tabs)
5006 {
5007 new_curwin = wpnext;
5008 new_curtab = curtab;
5009 }
5010 else
5011 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 break;
5013 }
5014 }
5015 }
5016 }
5017 else if (split_ret == OK)
5018 {
5019 if (!use_firstwin) /* split current window */
5020 {
5021 p_ea_save = p_ea;
5022 p_ea = TRUE; /* use space from all windows */
5023 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5024 p_ea = p_ea_save;
5025 if (split_ret == FAIL)
5026 continue;
5027 }
5028#ifdef FEAT_AUTOCMD
5029 else /* first window: do autocmd for leaving this buffer */
5030 --autocmd_no_leave;
5031#endif
5032
5033 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005034 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 */
5036 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005037 if (i == 0)
5038 {
5039 new_curwin = curwin;
5040 new_curtab = curtab;
5041 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5043 ECMD_ONE,
5044 ((P_HID(curwin->w_buffer)
5045 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005046 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047#ifdef FEAT_AUTOCMD
5048 if (use_firstwin)
5049 ++autocmd_no_leave;
5050#endif
5051 use_firstwin = FALSE;
5052 }
5053 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005054
5055 /* When ":tab" was used open a new tab for a new window repeatedly. */
5056 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5057 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 }
5059
5060 /* Remove the "lock" on the argument list. */
5061 alist_unlink(alist);
5062
5063#ifdef FEAT_AUTOCMD
5064 --autocmd_no_enter;
5065#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005066 /* restore last referenced tabpage's curwin */
5067 if (last_curtab != new_curtab)
5068 {
5069 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005070 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005071 if (win_valid(last_curwin))
5072 win_enter(last_curwin, FALSE);
5073 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005074 /* to window with first arg */
5075 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005076 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005077 if (win_valid(new_curwin))
5078 win_enter(new_curwin, FALSE);
5079
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080#ifdef FEAT_AUTOCMD
5081 --autocmd_no_leave;
5082#endif
5083 vim_free(opened);
5084}
5085
5086# if defined(FEAT_LISTCMDS) || defined(PROTO)
5087/*
5088 * Open a window for a number of buffers.
5089 */
5090 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005091ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092{
5093 buf_T *buf;
5094 win_T *wp, *wpnext;
5095 int split_ret = OK;
5096 int p_ea_save;
5097 int open_wins = 0;
5098 int r;
5099 int count; /* Maximum number of windows to open. */
5100 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005101#ifdef FEAT_WINDOWS
5102 int had_tab = cmdmod.tab;
5103 tabpage_T *tpnext;
5104#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105
5106 if (eap->addr_count == 0) /* make as many windows as possible */
5107 count = 9999;
5108 else
5109 count = eap->line2; /* make as many windows as specified */
5110 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5111 all = FALSE;
5112 else
5113 all = TRUE;
5114
5115 setpcmark();
5116
5117#ifdef FEAT_GUI
5118 need_mouse_correct = TRUE;
5119#endif
5120
5121 /*
5122 * Close superfluous windows (two windows for the same buffer).
5123 * Also close windows that are not full-width.
5124 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005125#ifdef FEAT_WINDOWS
5126 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005127 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005128 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005131 tpnext = curtab->tp_next;
5132 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005134 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005135 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005136#ifdef FEAT_WINDOWS
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005137 || ((cmdmod.split & WSP_VERT)
5138 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005139 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005140 : wp->w_width != Columns)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005141 || (had_tab > 0 && wp != firstwin)
5142#endif
Bram Moolenaar459ca562016-11-10 18:16:33 +01005143 ) && !ONE_WINDOW
Bram Moolenaar362ce482012-06-06 19:02:45 +02005144#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02005145 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02005146#endif
5147 )
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005148 {
5149 win_close(wp, FALSE);
5150#ifdef FEAT_AUTOCMD
5151 wpnext = firstwin; /* just in case an autocommand does
5152 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005153 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005154 open_wins = 0;
5155#endif
5156 }
5157 else
5158 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005160
5161#ifdef FEAT_WINDOWS
5162 /* Without the ":tab" modifier only do the current tab page. */
5163 if (had_tab == 0 || tpnext == NULL)
5164 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005165 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005167#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168
5169 /*
5170 * Go through the buffer list. When a buffer doesn't have a window yet,
5171 * open one. Otherwise move the window to the right position.
5172 * Watch out for autocommands that delete buffers or windows!
5173 */
5174#ifdef FEAT_AUTOCMD
5175 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5176 ++autocmd_no_enter;
5177#endif
5178 win_enter(lastwin, FALSE);
5179#ifdef FEAT_AUTOCMD
5180 ++autocmd_no_leave;
5181#endif
5182 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5183 {
5184 /* Check if this buffer needs a window */
5185 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5186 continue;
5187
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005188#ifdef FEAT_WINDOWS
5189 if (had_tab != 0)
5190 {
5191 /* With the ":tab" modifier don't move the window. */
5192 if (buf->b_nwindows > 0)
5193 wp = lastwin; /* buffer has a window, skip it */
5194 else
5195 wp = NULL;
5196 }
5197 else
5198#endif
5199 {
5200 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005201 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005202 if (wp->w_buffer == buf)
5203 break;
5204 /* If the buffer already has a window, move it */
5205 if (wp != NULL)
5206 win_move_after(wp, curwin);
5207 }
5208
5209 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005211#ifdef FEAT_AUTOCMD
5212 bufref_T bufref;
5213
5214 set_bufref(&bufref, buf);
5215#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216 /* Split the window and put the buffer in it */
5217 p_ea_save = p_ea;
5218 p_ea = TRUE; /* use space from all windows */
5219 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5220 ++open_wins;
5221 p_ea = p_ea_save;
5222 if (split_ret == FAIL)
5223 continue;
5224
5225 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005226#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 swap_exists_action = SEA_DIALOG;
5228#endif
5229 set_curbuf(buf, DOBUF_GOTO);
5230#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005231 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005233 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005234#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005236# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 break;
5238 }
5239#endif
Bram Moolenaare64ac772005-12-07 20:54:59 +00005240#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 if (swap_exists_action == SEA_QUIT)
5242 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005243# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5244 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005245
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005246 /* Reset the error/interrupt/exception state here so that
5247 * aborting() returns FALSE when closing a window. */
5248 enter_cleanup(&cs);
5249# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005250
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005251 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 win_close(curwin, TRUE);
5253 --open_wins;
5254 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005255 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005256
5257# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5258 /* Restore the error/interrupt/exception state if not
5259 * discarded by a new aborting error, interrupt, or uncaught
5260 * exception. */
5261 leave_cleanup(&cs);
5262# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 }
5264 else
5265 handle_swap_exists(NULL);
5266#endif
5267 }
5268
5269 ui_breakcheck();
5270 if (got_int)
5271 {
5272 (void)vgetc(); /* only break the file loading, not the rest */
5273 break;
5274 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005275#ifdef FEAT_EVAL
5276 /* Autocommands deleted the buffer or aborted script processing!!! */
5277 if (aborting())
5278 break;
5279#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005280#ifdef FEAT_WINDOWS
5281 /* When ":tab" was used open a new tab for a new window repeatedly. */
5282 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5283 cmdmod.tab = 9999;
5284#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 }
5286#ifdef FEAT_AUTOCMD
5287 --autocmd_no_enter;
5288#endif
5289 win_enter(firstwin, FALSE); /* back to first window */
5290#ifdef FEAT_AUTOCMD
5291 --autocmd_no_leave;
5292#endif
5293
5294 /*
5295 * Close superfluous windows.
5296 */
5297 for (wp = lastwin; open_wins > count; )
5298 {
5299 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
5300 || autowrite(wp->w_buffer, FALSE) == OK);
5301#ifdef FEAT_AUTOCMD
5302 if (!win_valid(wp))
5303 {
5304 /* BufWrite Autocommands made the window invalid, start over */
5305 wp = lastwin;
5306 }
5307 else
5308#endif
5309 if (r)
5310 {
5311 win_close(wp, !P_HID(wp->w_buffer));
5312 --open_wins;
5313 wp = lastwin;
5314 }
5315 else
5316 {
5317 wp = wp->w_prev;
5318 if (wp == NULL)
5319 break;
5320 }
5321 }
5322}
5323# endif /* FEAT_LISTCMDS */
5324
5325#endif /* FEAT_WINDOWS */
5326
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005327static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005328
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329/*
5330 * do_modelines() - process mode lines for the current file
5331 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005332 * "flags" can be:
5333 * OPT_WINONLY only set options local to window
5334 * OPT_NOWIN don't set options local to window
5335 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 * Returns immediately if the "ml" option isn't set.
5337 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005339do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005341 linenr_T lnum;
5342 int nmlines;
5343 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344
5345 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5346 return;
5347
5348 /* Disallow recursive entry here. Can happen when executing a modeline
5349 * triggers an autocommand, which reloads modelines with a ":do". */
5350 if (entered)
5351 return;
5352
5353 ++entered;
5354 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5355 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005356 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 nmlines = 0;
5358
5359 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5360 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005361 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 nmlines = 0;
5363 --entered;
5364}
5365
5366#include "version.h" /* for version number */
5367
5368/*
5369 * chk_modeline() - check a single line for a mode string
5370 * Return FAIL if an error encountered.
5371 */
5372 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005373chk_modeline(
5374 linenr_T lnum,
5375 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376{
5377 char_u *s;
5378 char_u *e;
5379 char_u *linecopy; /* local copy of any modeline found */
5380 int prev;
5381 int vers;
5382 int end;
5383 int retval = OK;
5384 char_u *save_sourcing_name;
5385 linenr_T save_sourcing_lnum;
5386#ifdef FEAT_EVAL
5387 scid_T save_SID;
5388#endif
5389
5390 prev = -1;
5391 for (s = ml_get(lnum); *s != NUL; ++s)
5392 {
5393 if (prev == -1 || vim_isspace(prev))
5394 {
5395 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5396 || STRNCMP(s, "vi:", (size_t)3) == 0)
5397 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005398 /* Accept both "vim" and "Vim". */
5399 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 {
5401 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5402 e = s + 4;
5403 else
5404 e = s + 3;
5405 vers = getdigits(&e);
5406 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005407 && (s[0] != 'V'
5408 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 && (s[3] == ':'
5410 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5411 || (VIM_VERSION_100 < vers && s[3] == '<')
5412 || (VIM_VERSION_100 > vers && s[3] == '>')
5413 || (VIM_VERSION_100 == vers && s[3] == '=')))
5414 break;
5415 }
5416 }
5417 prev = *s;
5418 }
5419
5420 if (*s)
5421 {
5422 do /* skip over "ex:", "vi:" or "vim:" */
5423 ++s;
5424 while (s[-1] != ':');
5425
5426 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5427 if (linecopy == NULL)
5428 return FAIL;
5429
5430 save_sourcing_lnum = sourcing_lnum;
5431 save_sourcing_name = sourcing_name;
5432 sourcing_lnum = lnum; /* prepare for emsg() */
5433 sourcing_name = (char_u *)"modelines";
5434
5435 end = FALSE;
5436 while (end == FALSE)
5437 {
5438 s = skipwhite(s);
5439 if (*s == NUL)
5440 break;
5441
5442 /*
5443 * Find end of set command: ':' or end of line.
5444 * Skip over "\:", replacing it with ":".
5445 */
5446 for (e = s; *e != ':' && *e != NUL; ++e)
5447 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005448 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449 if (*e == NUL)
5450 end = TRUE;
5451
5452 /*
5453 * If there is a "set" command, require a terminating ':' and
5454 * ignore the stuff after the ':'.
5455 * "vi:set opt opt opt: foo" -- foo not interpreted
5456 * "vi:opt opt opt: foo" -- foo interpreted
5457 * Accept "se" for compatibility with Elvis.
5458 */
5459 if (STRNCMP(s, "set ", (size_t)4) == 0
5460 || STRNCMP(s, "se ", (size_t)3) == 0)
5461 {
5462 if (*e != ':') /* no terminating ':'? */
5463 break;
5464 end = TRUE;
5465 s = vim_strchr(s, ' ') + 1;
5466 }
5467 *e = NUL; /* truncate the set command */
5468
5469 if (*s != NUL) /* skip over an empty "::" */
5470 {
5471#ifdef FEAT_EVAL
5472 save_SID = current_SID;
5473 current_SID = SID_MODELINE;
5474#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005475 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476#ifdef FEAT_EVAL
5477 current_SID = save_SID;
5478#endif
5479 if (retval == FAIL) /* stop if error found */
5480 break;
5481 }
5482 s = e + 1; /* advance to next part */
5483 }
5484
5485 sourcing_lnum = save_sourcing_lnum;
5486 sourcing_name = save_sourcing_name;
5487
5488 vim_free(linecopy);
5489 }
5490 return retval;
5491}
5492
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005493#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005495read_viminfo_bufferlist(
5496 vir_T *virp,
5497 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498{
5499 char_u *tab;
5500 linenr_T lnum;
5501 colnr_T col;
5502 buf_T *buf;
5503 char_u *sfname;
5504 char_u *xline;
5505
5506 /* Handle long line and escaped characters. */
5507 xline = viminfo_readstring(virp, 1, FALSE);
5508
5509 /* don't read in if there are files on the command-line or if writing: */
5510 if (xline != NULL && !writing && ARGCOUNT == 0
5511 && find_viminfo_parameter('%') != NULL)
5512 {
5513 /* Format is: <fname> Tab <lnum> Tab <col>.
5514 * Watch out for a Tab in the file name, work from the end. */
5515 lnum = 0;
5516 col = 0;
5517 tab = vim_strrchr(xline, '\t');
5518 if (tab != NULL)
5519 {
5520 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005521 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 tab = vim_strrchr(xline, '\t');
5523 if (tab != NULL)
5524 {
5525 *tab++ = '\0';
5526 lnum = atol((char *)tab);
5527 }
5528 }
5529
5530 /* Expand "~/" in the file name at "line + 1" to a full path.
5531 * Then try shortening it by comparing with the current directory */
5532 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005533 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534
5535 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5536 if (buf != NULL) /* just in case... */
5537 {
5538 buf->b_last_cursor.lnum = lnum;
5539 buf->b_last_cursor.col = col;
5540 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5541 }
5542 }
5543 vim_free(xline);
5544
5545 return viminfo_readline(virp);
5546}
5547
5548 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005549write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550{
5551 buf_T *buf;
5552#ifdef FEAT_WINDOWS
5553 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005554 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555#endif
5556 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005557 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558
5559 if (find_viminfo_parameter('%') == NULL)
5560 return;
5561
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005562 /* Without a number -1 is returned: do all buffers. */
5563 max_buffers = get_viminfo_parameter('%');
5564
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005566#define LINE_BUF_LEN (MAXPATHL + 40)
5567 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 if (line == NULL)
5569 return;
5570
5571#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00005572 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573 set_last_cursor(win);
5574#else
5575 set_last_cursor(curwin);
5576#endif
5577
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005578 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005579 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580 {
5581 if (buf->b_fname == NULL
5582 || !buf->b_p_bl
5583#ifdef FEAT_QUICKFIX
5584 || bt_quickfix(buf)
5585#endif
5586 || removable(buf->b_ffname))
5587 continue;
5588
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005589 if (max_buffers-- == 0)
5590 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 putc('%', fp);
5592 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005593 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 (long)buf->b_last_cursor.lnum,
5595 buf->b_last_cursor.col);
5596 viminfo_writestring(fp, line);
5597 }
5598 vim_free(line);
5599}
5600#endif
5601
5602
5603/*
5604 * Return special buffer name.
5605 * Returns NULL when the buffer has a normal file name.
5606 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005607 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005608buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609{
5610#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
5611 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005612 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005613 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005614 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005615
5616 /*
5617 * For location list window, w_llist_ref points to the location list.
5618 * For quickfix window, w_llist_ref is NULL.
5619 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005620 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005621 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005622 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005623 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005624 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625#endif
5626#ifdef FEAT_QUICKFIX
5627 /* There is no _file_ when 'buftype' is "nofile", b_sfname
5628 * contains the name as specified by the user */
5629 if (bt_nofile(buf))
5630 {
5631 if (buf->b_sfname != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005632 return buf->b_sfname;
5633 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634 }
5635#endif
5636 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005637 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638 return NULL;
5639}
5640
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005641#if (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
5642 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5643 || defined(PROTO)
5644/*
5645 * Find a window for buffer "buf".
5646 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5647 * If not found FAIL is returned.
5648 */
5649 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005650find_win_for_buf(
5651 buf_T *buf,
5652 win_T **wp,
5653 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005654{
5655 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5656 if ((*wp)->w_buffer == buf)
5657 goto win_found;
5658 return FAIL;
5659win_found:
5660 return OK;
5661}
5662#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663
5664#if defined(FEAT_SIGNS) || defined(PROTO)
5665/*
5666 * Insert the sign into the signlist.
5667 */
5668 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005669insert_sign(
5670 buf_T *buf, /* buffer to store sign in */
5671 signlist_T *prev, /* previous sign entry */
5672 signlist_T *next, /* next sign entry */
5673 int id, /* sign ID */
5674 linenr_T lnum, /* line number which gets the mark */
5675 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676{
5677 signlist_T *newsign;
5678
5679 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5680 if (newsign != NULL)
5681 {
5682 newsign->id = id;
5683 newsign->lnum = lnum;
5684 newsign->typenr = typenr;
5685 newsign->next = next;
5686#ifdef FEAT_NETBEANS_INTG
5687 newsign->prev = prev;
5688 if (next != NULL)
5689 next->prev = newsign;
5690#endif
5691
5692 if (prev == NULL)
5693 {
5694 /* When adding first sign need to redraw the windows to create the
5695 * column for signs. */
5696 if (buf->b_signlist == NULL)
5697 {
5698 redraw_buf_later(buf, NOT_VALID);
5699 changed_cline_bef_curs();
5700 }
5701
5702 /* first sign in signlist */
5703 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005704#ifdef FEAT_NETBEANS_INTG
5705 if (netbeans_active())
5706 buf->b_has_sign_column = TRUE;
5707#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 }
5709 else
5710 prev->next = newsign;
5711 }
5712}
5713
5714/*
5715 * Add the sign into the signlist. Find the right spot to do it though.
5716 */
5717 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005718buf_addsign(
5719 buf_T *buf, /* buffer to store sign in */
5720 int id, /* sign ID */
5721 linenr_T lnum, /* line number which gets the mark */
5722 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723{
5724 signlist_T *sign; /* a sign in the signlist */
5725 signlist_T *prev; /* the previous sign */
5726
5727 prev = NULL;
5728 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5729 {
5730 if (lnum == sign->lnum && id == sign->id)
5731 {
5732 sign->typenr = typenr;
5733 return;
5734 }
5735 else if (
5736#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5737 id < 0 &&
5738#endif
5739 lnum < sign->lnum)
5740 {
5741#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5742 /* XXX - GRP: Is this because of sign slide problem? Or is it
5743 * really needed? Or is it because we allow multiple signs per
5744 * line? If so, should I add that feature to FEAT_SIGNS?
5745 */
5746 while (prev != NULL && prev->lnum == lnum)
5747 prev = prev->prev;
5748 if (prev == NULL)
5749 sign = buf->b_signlist;
5750 else
5751 sign = prev->next;
5752#endif
5753 insert_sign(buf, prev, sign, id, lnum, typenr);
5754 return;
5755 }
5756 prev = sign;
5757 }
5758#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5759 /* XXX - GRP: See previous comment */
5760 while (prev != NULL && prev->lnum == lnum)
5761 prev = prev->prev;
5762 if (prev == NULL)
5763 sign = buf->b_signlist;
5764 else
5765 sign = prev->next;
5766#endif
5767 insert_sign(buf, prev, sign, id, lnum, typenr);
5768
5769 return;
5770}
5771
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005772/*
5773 * For an existing, placed sign "markId" change the type to "typenr".
5774 * Returns the line number of the sign, or zero if the sign is not found.
5775 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005776 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005777buf_change_sign_type(
5778 buf_T *buf, /* buffer to store sign in */
5779 int markId, /* sign ID */
5780 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781{
5782 signlist_T *sign; /* a sign in the signlist */
5783
5784 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5785 {
5786 if (sign->id == markId)
5787 {
5788 sign->typenr = typenr;
5789 return sign->lnum;
5790 }
5791 }
5792
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005793 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794}
5795
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005796 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005797buf_getsigntype(
5798 buf_T *buf,
5799 linenr_T lnum,
5800 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801{
5802 signlist_T *sign; /* a sign in a b_signlist */
5803
5804 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5805 if (sign->lnum == lnum
5806 && (type == SIGN_ANY
5807# ifdef FEAT_SIGN_ICONS
5808 || (type == SIGN_ICON
5809 && sign_get_image(sign->typenr) != NULL)
5810# endif
5811 || (type == SIGN_TEXT
5812 && sign_get_text(sign->typenr) != NULL)
5813 || (type == SIGN_LINEHL
5814 && sign_get_attr(sign->typenr, TRUE) != 0)))
5815 return sign->typenr;
5816 return 0;
5817}
5818
5819
5820 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005821buf_delsign(
5822 buf_T *buf, /* buffer sign is stored in */
5823 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824{
5825 signlist_T **lastp; /* pointer to pointer to current sign */
5826 signlist_T *sign; /* a sign in a b_signlist */
5827 signlist_T *next; /* the next sign in a b_signlist */
5828 linenr_T lnum; /* line number whose sign was deleted */
5829
5830 lastp = &buf->b_signlist;
5831 lnum = 0;
5832 for (sign = buf->b_signlist; sign != NULL; sign = next)
5833 {
5834 next = sign->next;
5835 if (sign->id == id)
5836 {
5837 *lastp = next;
5838#ifdef FEAT_NETBEANS_INTG
5839 if (next != NULL)
5840 next->prev = sign->prev;
5841#endif
5842 lnum = sign->lnum;
5843 vim_free(sign);
5844 break;
5845 }
5846 else
5847 lastp = &sign->next;
5848 }
5849
5850 /* When deleted the last sign need to redraw the windows to remove the
5851 * sign column. */
5852 if (buf->b_signlist == NULL)
5853 {
5854 redraw_buf_later(buf, NOT_VALID);
5855 changed_cline_bef_curs();
5856 }
5857
5858 return lnum;
5859}
5860
5861
5862/*
5863 * Find the line number of the sign with the requested id. If the sign does
5864 * not exist, return 0 as the line number. This will still let the correct file
5865 * get loaded.
5866 */
5867 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005868buf_findsign(
5869 buf_T *buf, /* buffer to store sign in */
5870 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871{
5872 signlist_T *sign; /* a sign in the signlist */
5873
5874 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5875 if (sign->id == id)
5876 return sign->lnum;
5877
5878 return 0;
5879}
5880
5881 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005882buf_findsign_id(
5883 buf_T *buf, /* buffer whose sign we are searching for */
5884 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885{
5886 signlist_T *sign; /* a sign in the signlist */
5887
5888 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5889 if (sign->lnum == lnum)
5890 return sign->id;
5891
5892 return 0;
5893}
5894
5895
5896# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5897/* see if a given type of sign exists on a specific line */
5898 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005899buf_findsigntype_id(
5900 buf_T *buf, /* buffer whose sign we are searching for */
5901 linenr_T lnum, /* line number of sign */
5902 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005903{
5904 signlist_T *sign; /* a sign in the signlist */
5905
5906 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5907 if (sign->lnum == lnum && sign->typenr == typenr)
5908 return sign->id;
5909
5910 return 0;
5911}
5912
5913
5914# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5915/* return the number of icons on the given line */
5916 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005917buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918{
5919 signlist_T *sign; /* a sign in the signlist */
5920 int count = 0;
5921
5922 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5923 if (sign->lnum == lnum)
5924 if (sign_get_image(sign->typenr) != NULL)
5925 count++;
5926
5927 return count;
5928}
5929# endif /* FEAT_SIGN_ICONS */
5930# endif /* FEAT_NETBEANS_INTG */
5931
5932
5933/*
5934 * Delete signs in buffer "buf".
5935 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02005936 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005937buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938{
5939 signlist_T *next;
5940
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005941 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02005942 * sign column. Not when curwin is NULL (this means we're exiting). */
5943 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005944 {
5945 redraw_buf_later(buf, NOT_VALID);
5946 changed_cline_bef_curs();
5947 }
5948
Bram Moolenaar071d4272004-06-13 20:20:40 +00005949 while (buf->b_signlist != NULL)
5950 {
5951 next = buf->b_signlist->next;
5952 vim_free(buf->b_signlist);
5953 buf->b_signlist = next;
5954 }
5955}
5956
5957/*
5958 * Delete all signs in all buffers.
5959 */
5960 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005961buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962{
5963 buf_T *buf; /* buffer we are checking for signs */
5964
Bram Moolenaar29323592016-07-24 22:04:11 +02005965 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968}
5969
5970/*
5971 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
5972 */
5973 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005974sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975{
5976 buf_T *buf;
5977 signlist_T *p;
5978 char lbuf[BUFSIZ];
5979
5980 MSG_PUTS_TITLE(_("\n--- Signs ---"));
5981 msg_putchar('\n');
5982 if (rbuf == NULL)
5983 buf = firstbuf;
5984 else
5985 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005986 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005987 {
5988 if (buf->b_signlist != NULL)
5989 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005990 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
5992 msg_putchar('\n');
5993 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005994 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005996 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
5998 MSG_PUTS(lbuf);
5999 msg_putchar('\n');
6000 }
6001 if (rbuf != NULL)
6002 break;
6003 buf = buf->b_next;
6004 }
6005}
6006
6007/*
6008 * Adjust a placed sign for inserted/deleted lines.
6009 */
6010 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006011sign_mark_adjust(
6012 linenr_T line1,
6013 linenr_T line2,
6014 long amount,
6015 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006016{
6017 signlist_T *sign; /* a sign in a b_signlist */
6018
6019 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6020 {
6021 if (sign->lnum >= line1 && sign->lnum <= line2)
6022 {
6023 if (amount == MAXLNUM)
6024 sign->lnum = line1;
6025 else
6026 sign->lnum += amount;
6027 }
6028 else if (sign->lnum > line2)
6029 sign->lnum += amount_after;
6030 }
6031}
6032#endif /* FEAT_SIGNS */
6033
6034/*
6035 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6036 */
6037 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006038set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039{
6040 if (on != curbuf->b_p_bl)
6041 {
6042 curbuf->b_p_bl = on;
6043#ifdef FEAT_AUTOCMD
6044 if (on)
6045 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6046 else
6047 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
6048#endif
6049 }
6050}
6051
6052/*
6053 * Read the file for "buf" again and check if the contents changed.
6054 * Return TRUE if it changed or this could not be checked.
6055 */
6056 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006057buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058{
6059 buf_T *newbuf;
6060 int differ = TRUE;
6061 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063 exarg_T ea;
6064
6065 /* Allocate a buffer without putting it in the buffer list. */
6066 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6067 if (newbuf == NULL)
6068 return TRUE;
6069
6070 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6071 if (prep_exarg(&ea, buf) == FAIL)
6072 {
6073 wipe_buffer(newbuf, FALSE);
6074 return TRUE;
6075 }
6076
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077 /* set curwin/curbuf to buf and save a few things */
6078 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006079
Bram Moolenaar4770d092006-01-12 23:22:24 +00006080 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 && readfile(buf->b_ffname, buf->b_fname,
6082 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6083 &ea, READ_NEW | READ_DUMMY) == OK)
6084 {
6085 /* compare the two files line by line */
6086 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6087 {
6088 differ = FALSE;
6089 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6090 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6091 {
6092 differ = TRUE;
6093 break;
6094 }
6095 }
6096 }
6097 vim_free(ea.cmd);
6098
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 /* restore curwin/curbuf and a few other things */
6100 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101
6102 if (curbuf != newbuf) /* safety check */
6103 wipe_buffer(newbuf, FALSE);
6104
6105 return differ;
6106}
6107
6108/*
6109 * Wipe out a buffer and decrement the last buffer number if it was used for
6110 * this buffer. Call this to wipe out a temp buffer that does not contain any
6111 * marks.
6112 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006114wipe_buffer(
6115 buf_T *buf,
6116 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117{
6118 if (buf->b_fnum == top_file_num - 1)
6119 --top_file_num;
6120
6121#ifdef FEAT_AUTOCMD
6122 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006123 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006124#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006125 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006126#ifdef FEAT_AUTOCMD
6127 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006128 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129#endif
6130}