blob: b013295f731687ae80bb62abe812e695b4104824 [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
454 int is_curwin = (curwin!= NULL && curwin->w_buffer == buf);
455 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 Moolenaarf740b292006-02-16 22:11:02 +00001415 && (firstwin != lastwin || 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 Moolenaarb25f9a92016-07-10 18:21:50 +02001652 || (bufref_valid(&bufref) && !aborting()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653# else
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001654 || bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655# endif
1656#endif
1657 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001658#ifdef FEAT_SYN_HL
1659 if (prevbuf == curwin->w_buffer)
1660 reset_synblock(curwin);
1661#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662#ifdef FEAT_WINDOWS
1663 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001664 close_windows(prevbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665#endif
1666#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001667 if (bufref_valid(&bufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668#else
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001669 if (bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001671 {
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001672#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001673 win_T *previouswin = curwin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001674#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001675 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001676 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1678 unload ? action : (action == DOBUF_GOTO
1679 && !P_HID(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001680 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001681#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001682 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001683 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001684 curwin = previouswin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001685#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001686 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 }
1688#ifdef FEAT_AUTOCMD
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001689 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001690 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001691 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1692 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001693# ifdef FEAT_EVAL
Bram Moolenaar9e931222012-06-20 11:55:01 +02001694 && !aborting()
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001695# endif
1696# ifdef FEAT_WINDOWS
Bram Moolenaar9e931222012-06-20 11:55:01 +02001697 ) || curwin->w_buffer == NULL
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001698# endif
Bram Moolenaar9e931222012-06-20 11:55:01 +02001699 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001701 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001703#ifdef FEAT_SYN_HL
1704 if (old_tw != curbuf->b_p_tw)
1705 check_colorcolumn(curwin);
1706#endif
1707 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708}
1709
1710/*
1711 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001712 * Old curbuf must have been abandoned already! This also means "curbuf" may
1713 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 */
1715 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001716enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717{
1718 /* Copy buffer and window local option values. Not for a help buffer. */
1719 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1720 if (!buf->b_help)
1721 get_winopts(buf);
1722#ifdef FEAT_FOLDING
1723 else
1724 /* Remove all folds in the window. */
1725 clearFolding(curwin);
1726 foldUpdateAll(curwin); /* update folds (later). */
1727#endif
1728
1729 /* Get the buffer in the current window. */
1730 curwin->w_buffer = buf;
1731 curbuf = buf;
1732 ++curbuf->b_nwindows;
1733
1734#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001735 if (curwin->w_p_diff)
1736 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737#endif
1738
Bram Moolenaara971b822011-09-14 14:43:25 +02001739#ifdef FEAT_SYN_HL
1740 curwin->w_s = &(buf->b_s);
1741#endif
1742
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 /* Cursor on first line by default. */
1744 curwin->w_cursor.lnum = 1;
1745 curwin->w_cursor.col = 0;
1746#ifdef FEAT_VIRTUALEDIT
1747 curwin->w_cursor.coladd = 0;
1748#endif
1749 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001750#ifdef FEAT_AUTOCMD
1751 curwin->w_topline_was_set = FALSE;
1752#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001754 /* mark cursor position as being invalid */
1755 curwin->w_valid = 0;
1756
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 /* Make sure the buffer is loaded. */
1758 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001759 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001760#ifdef FEAT_AUTOCMD
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001761 /* If there is no filetype, allow for detecting one. Esp. useful for
1762 * ":ball" used in a autocommand. If there already is a filetype we
1763 * might prefer to keep it. */
1764 if (*curbuf->b_p_ft == NUL)
1765 did_filetype = FALSE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001766#endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001767
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001768 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 else
1771 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001772 if (!msg_silent)
1773 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1775#ifdef FEAT_AUTOCMD
1776 curwin->w_topline = 1;
1777# ifdef FEAT_DIFF
1778 curwin->w_topfill = 0;
1779# endif
1780 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1781 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1782#endif
1783 }
1784
1785 /* If autocommands did not change the cursor position, restore cursor lnum
1786 * and possibly cursor col. */
1787 if (curwin->w_cursor.lnum == 1 && inindent(0))
1788 buflist_getfpos();
1789
1790 check_arg_idx(curwin); /* check for valid arg_idx */
1791#ifdef FEAT_TITLE
1792 maketitle();
1793#endif
1794#ifdef FEAT_AUTOCMD
Bram Moolenaard4153d42008-11-15 15:06:17 +00001795 /* when autocmds didn't change it */
1796 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797#endif
1798 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1799
Bram Moolenaar009b2592004-10-24 19:18:58 +00001800#ifdef FEAT_NETBEANS_INTG
1801 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001802 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001803#endif
1804
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001805 /* Change directories when the 'acd' option is set. */
1806 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807
1808#ifdef FEAT_KEYMAP
1809 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001810 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001812#ifdef FEAT_SPELL
1813 /* May need to set the spell language. Can only do this after the buffer
1814 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001815 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1816 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001817#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001818#ifdef FEAT_VIMINFO
1819 curbuf->b_last_used = vim_time();
1820#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001821
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 redraw_later(NOT_VALID);
1823}
1824
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001825#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1826/*
1827 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001828 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001829 */
1830 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001831do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001832{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001833 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001834 && curbuf->b_ffname != NULL
1835 && vim_chdirfile(curbuf->b_ffname) == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001836 shorten_fnames(TRUE);
1837}
1838#endif
1839
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840/*
1841 * functions for dealing with the buffer list
1842 */
1843
Bram Moolenaar480778b2016-07-14 22:09:39 +02001844static int top_file_num = 1; /* highest file number */
1845
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846/*
1847 * Add a file name to the buffer list. Return a pointer to the buffer.
1848 * If the same file name already exists return a pointer to that buffer.
1849 * If it does not exist, or if fname == NULL, a new entry is created.
1850 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1851 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1852 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001853 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001854 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1855 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 * This is the ONLY way to create a new buffer.
1857 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001859buflist_new(
1860 char_u *ffname, /* full path of fname or relative */
1861 char_u *sfname, /* short fname or NULL */
1862 linenr_T lnum, /* preferred cursor line */
1863 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864{
1865 buf_T *buf;
1866#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001867 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868#endif
1869
Bram Moolenaar480778b2016-07-14 22:09:39 +02001870 if (top_file_num == 1)
1871 hash_init(&buf_hashtab);
1872
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1874
1875 /*
1876 * If file name already exists in the list, update the entry.
1877 */
1878#ifdef UNIX
1879 /* On Unix we can use inode numbers when the file exists. Works better
1880 * for hard links. */
1881 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1882 st.st_dev = (dev_T)-1;
1883#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001884 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885#ifdef UNIX
1886 buflist_findname_stat(ffname, &st)
1887#else
1888 buflist_findname(ffname)
1889#endif
1890 ) != NULL)
1891 {
1892 vim_free(ffname);
1893 if (lnum != 0)
1894 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001895
1896 if ((flags & BLN_NOOPT) == 0)
1897 /* copy the options now, if 'cpo' doesn't have 's' and not done
1898 * already */
1899 buf_copy_options(buf, 0);
1900
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1902 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001903#ifdef FEAT_AUTOCMD
1904 bufref_T bufref;
1905#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 buf->b_p_bl = TRUE;
1907#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001908 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001910 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001911 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001912 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001913 return NULL;
1914 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915#endif
1916 }
1917 return buf;
1918 }
1919
1920 /*
1921 * If the current buffer has no name and no contents, use the current
1922 * buffer. Otherwise: Need to allocate a new buffer structure.
1923 *
1924 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001925 * (A spell file buffer is allocated in spell.c, but that's not a normal
1926 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 */
1928 buf = NULL;
1929 if ((flags & BLN_CURBUF)
1930 && curbuf != NULL
1931 && curbuf->b_ffname == NULL
1932 && curbuf->b_nwindows <= 1
1933 && (curbuf->b_ml.ml_mfp == NULL || bufempty()))
1934 {
1935 buf = curbuf;
1936#ifdef FEAT_AUTOCMD
1937 /* It's like this buffer is deleted. Watch out for autocommands that
1938 * change curbuf! If that happens, allocate a new buffer anyway. */
1939 if (curbuf->b_p_bl)
1940 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1941 if (buf == curbuf)
1942 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
1943# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001944 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 return NULL;
1946# endif
1947#endif
1948#ifdef FEAT_QUICKFIX
1949# ifdef FEAT_AUTOCMD
1950 if (buf == curbuf)
1951# endif
1952 {
1953 /* Make sure 'bufhidden' and 'buftype' are empty */
1954 clear_string_option(&buf->b_p_bh);
1955 clear_string_option(&buf->b_p_bt);
1956 }
1957#endif
1958 }
1959 if (buf != curbuf || curbuf == NULL)
1960 {
1961 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1962 if (buf == NULL)
1963 {
1964 vim_free(ffname);
1965 return NULL;
1966 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001967#ifdef FEAT_EVAL
1968 /* init b: variables */
1969 buf->b_vars = dict_alloc();
1970 if (buf->b_vars == NULL)
1971 {
1972 vim_free(ffname);
1973 vim_free(buf);
1974 return NULL;
1975 }
1976 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1977#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 }
1979
1980 if (ffname != NULL)
1981 {
1982 buf->b_ffname = ffname;
1983 buf->b_sfname = vim_strsave(sfname);
1984 }
1985
1986 clear_wininfo(buf);
1987 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1988
1989 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1990 || buf->b_wininfo == NULL)
1991 {
1992 vim_free(buf->b_ffname);
1993 buf->b_ffname = NULL;
1994 vim_free(buf->b_sfname);
1995 buf->b_sfname = NULL;
1996 if (buf != curbuf)
1997 free_buffer(buf);
1998 return NULL;
1999 }
2000
2001 if (buf == curbuf)
2002 {
2003 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002004 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 if (buf != curbuf) /* autocommands deleted the buffer! */
2006 return NULL;
2007#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002008 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 return NULL;
2010#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01002012
2013 /* Init the options. */
2014 buf->b_p_initialized = FALSE;
2015 buf_copy_options(buf, BCO_ENTER);
2016
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017#ifdef FEAT_KEYMAP
2018 /* need to reload lmaps and set b:keymap_name */
2019 curbuf->b_kmap_state |= KEYMAP_INIT;
2020#endif
2021 }
2022 else
2023 {
2024 /*
2025 * put new buffer at the end of the buffer list
2026 */
2027 buf->b_next = NULL;
2028 if (firstbuf == NULL) /* buffer list is empty */
2029 {
2030 buf->b_prev = NULL;
2031 firstbuf = buf;
2032 }
2033 else /* append new buffer at end of list */
2034 {
2035 lastbuf->b_next = buf;
2036 buf->b_prev = lastbuf;
2037 }
2038 lastbuf = buf;
2039
2040 buf->b_fnum = top_file_num++;
2041 if (top_file_num < 0) /* wrap around (may cause duplicates) */
2042 {
2043 EMSG(_("W14: Warning: List of file names overflow"));
2044 if (emsg_silent == 0)
2045 {
2046 out_flush();
2047 ui_delay(3000L, TRUE); /* make sure it is noticed */
2048 }
2049 top_file_num = 1;
2050 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02002051 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052
2053 /*
2054 * Always copy the options from the current buffer.
2055 */
2056 buf_copy_options(buf, BCO_ALWAYS);
2057 }
2058
2059 buf->b_wininfo->wi_fpos.lnum = lnum;
2060 buf->b_wininfo->wi_win = curwin;
2061
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002062#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002063 hash_init(&buf->b_s.b_keywtab);
2064 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065#endif
2066
2067 buf->b_fname = buf->b_sfname;
2068#ifdef UNIX
2069 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002070 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 else
2072 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002073 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 buf->b_dev = st.st_dev;
2075 buf->b_ino = st.st_ino;
2076 }
2077#endif
2078 buf->b_u_synced = TRUE;
2079 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002080 if (flags & BLN_DUMMY)
2081 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 buf_clear_file(buf);
2083 clrallmarks(buf); /* clear marks */
2084 fmarks_check_names(buf); /* check file marks for this file */
2085 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
2086#ifdef FEAT_AUTOCMD
2087 if (!(flags & BLN_DUMMY))
2088 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002089 bufref_T bufref;
2090
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002091 /* Tricky: these autocommands may change the buffer list. They could
2092 * also split the window with re-using the one empty buffer. This may
2093 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002094 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002095 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002096 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002097 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002099 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002100 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002101 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002102 return NULL;
2103 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002105 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 return NULL;
2107# endif
2108 }
2109#endif
2110
2111 return buf;
2112}
2113
2114/*
2115 * Free the memory for the options of a buffer.
2116 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2117 * 'fileencoding'.
2118 */
2119 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002120free_buf_options(
2121 buf_T *buf,
2122 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123{
2124 if (free_p_ff)
2125 {
2126#ifdef FEAT_MBYTE
2127 clear_string_option(&buf->b_p_fenc);
2128#endif
2129 clear_string_option(&buf->b_p_ff);
2130#ifdef FEAT_QUICKFIX
2131 clear_string_option(&buf->b_p_bh);
2132 clear_string_option(&buf->b_p_bt);
2133#endif
2134 }
2135#ifdef FEAT_FIND_ID
2136 clear_string_option(&buf->b_p_def);
2137 clear_string_option(&buf->b_p_inc);
2138# ifdef FEAT_EVAL
2139 clear_string_option(&buf->b_p_inex);
2140# endif
2141#endif
2142#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2143 clear_string_option(&buf->b_p_inde);
2144 clear_string_option(&buf->b_p_indk);
2145#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002146#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2147 clear_string_option(&buf->b_p_bexpr);
2148#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002149#if defined(FEAT_CRYPT)
2150 clear_string_option(&buf->b_p_cm);
2151#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002152#if defined(FEAT_EVAL)
2153 clear_string_option(&buf->b_p_fex);
2154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155#ifdef FEAT_CRYPT
2156 clear_string_option(&buf->b_p_key);
2157#endif
2158 clear_string_option(&buf->b_p_kp);
2159 clear_string_option(&buf->b_p_mps);
2160 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002161 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 clear_string_option(&buf->b_p_isk);
2163#ifdef FEAT_KEYMAP
2164 clear_string_option(&buf->b_p_keymap);
2165 ga_clear(&buf->b_kmap_ga);
2166#endif
2167#ifdef FEAT_COMMENTS
2168 clear_string_option(&buf->b_p_com);
2169#endif
2170#ifdef FEAT_FOLDING
2171 clear_string_option(&buf->b_p_cms);
2172#endif
2173 clear_string_option(&buf->b_p_nf);
2174#ifdef FEAT_SYN_HL
2175 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002176 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002177#endif
2178#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002179 clear_string_option(&buf->b_s.b_p_spc);
2180 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002181 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002182 buf->b_s.b_cap_prog = NULL;
2183 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184#endif
2185#ifdef FEAT_SEARCHPATH
2186 clear_string_option(&buf->b_p_sua);
2187#endif
2188#ifdef FEAT_AUTOCMD
2189 clear_string_option(&buf->b_p_ft);
2190#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191#ifdef FEAT_CINDENT
2192 clear_string_option(&buf->b_p_cink);
2193 clear_string_option(&buf->b_p_cino);
2194#endif
2195#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2196 clear_string_option(&buf->b_p_cinw);
2197#endif
2198#ifdef FEAT_INS_EXPAND
2199 clear_string_option(&buf->b_p_cpt);
2200#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002201#ifdef FEAT_COMPL_FUNC
2202 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002203 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205#ifdef FEAT_QUICKFIX
2206 clear_string_option(&buf->b_p_gp);
2207 clear_string_option(&buf->b_p_mp);
2208 clear_string_option(&buf->b_p_efm);
2209#endif
2210 clear_string_option(&buf->b_p_ep);
2211 clear_string_option(&buf->b_p_path);
2212 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002213 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214#ifdef FEAT_INS_EXPAND
2215 clear_string_option(&buf->b_p_dict);
2216 clear_string_option(&buf->b_p_tsr);
2217#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002218#ifdef FEAT_TEXTOBJ
2219 clear_string_option(&buf->b_p_qe);
2220#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002222 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002223#ifdef FEAT_LISP
2224 clear_string_option(&buf->b_p_lw);
2225#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002226 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227}
2228
2229/*
2230 * get alternate file n
2231 * set linenr to lnum or altfpos.lnum if lnum == 0
2232 * also set cursor column to altfpos.col if 'startofline' is not set.
2233 * if (options & GETF_SETMARK) call setpcmark()
2234 * if (options & GETF_ALT) we are jumping to an alternate file.
2235 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2236 *
2237 * return FAIL for failure, OK for success
2238 */
2239 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002240buflist_getfile(
2241 int n,
2242 linenr_T lnum,
2243 int options,
2244 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245{
2246 buf_T *buf;
2247#ifdef FEAT_WINDOWS
2248 win_T *wp = NULL;
2249#endif
2250 pos_T *fpos;
2251 colnr_T col;
2252
2253 buf = buflist_findnr(n);
2254 if (buf == NULL)
2255 {
2256 if ((options & GETF_ALT) && n == 0)
2257 EMSG(_(e_noalt));
2258 else
2259 EMSGN(_("E92: Buffer %ld not found"), n);
2260 return FAIL;
2261 }
2262
2263 /* if alternate file is the current buffer, nothing to do */
2264 if (buf == curbuf)
2265 return OK;
2266
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002267 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002268 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002269 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002271 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002272#ifdef FEAT_AUTOCMD
2273 if (curbuf_locked())
2274 return FAIL;
2275#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276
2277 /* altfpos may be changed by getfile(), get it now */
2278 if (lnum == 0)
2279 {
2280 fpos = buflist_findfpos(buf);
2281 lnum = fpos->lnum;
2282 col = fpos->col;
2283 }
2284 else
2285 col = 0;
2286
2287#ifdef FEAT_WINDOWS
2288 if (options & GETF_SWITCH)
2289 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002290 /* If 'switchbuf' contains "useopen": jump to first window containing
2291 * "buf" if one exists */
2292 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002294
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002295 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002296 * page containing "buf" if one exists */
2297 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002298 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002299
2300 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2301 * current buffer isn't empty: open new tab or window */
2302 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
2303 && !bufempty())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002305 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002306 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002307 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2308 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002310 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 }
2312 }
2313#endif
2314
2315 ++RedrawingDisabled;
2316 if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK),
2317 lnum, forceit) <= 0)
2318 {
2319 --RedrawingDisabled;
2320
2321 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2322 if (!p_sol && col != 0)
2323 {
2324 curwin->w_cursor.col = col;
2325 check_cursor_col();
2326#ifdef FEAT_VIRTUALEDIT
2327 curwin->w_cursor.coladd = 0;
2328#endif
2329 curwin->w_set_curswant = TRUE;
2330 }
2331 return OK;
2332 }
2333 --RedrawingDisabled;
2334 return FAIL;
2335}
2336
2337/*
2338 * go to the last know line number for the current buffer
2339 */
2340 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002341buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342{
2343 pos_T *fpos;
2344
2345 fpos = buflist_findfpos(curbuf);
2346
2347 curwin->w_cursor.lnum = fpos->lnum;
2348 check_cursor_lnum();
2349
2350 if (p_sol)
2351 curwin->w_cursor.col = 0;
2352 else
2353 {
2354 curwin->w_cursor.col = fpos->col;
2355 check_cursor_col();
2356#ifdef FEAT_VIRTUALEDIT
2357 curwin->w_cursor.coladd = 0;
2358#endif
2359 curwin->w_set_curswant = TRUE;
2360 }
2361}
2362
Bram Moolenaar81695252004-12-29 20:58:21 +00002363#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2364/*
2365 * Find file in buffer list by name (it has to be for the current window).
2366 * Returns NULL if not found.
2367 */
2368 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002369buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002370{
2371 char_u *ffname;
2372 buf_T *buf = NULL;
2373
2374 /* First make the name into a full path name */
2375 ffname = FullName_save(fname,
2376#ifdef UNIX
2377 TRUE /* force expansion, get rid of symbolic links */
2378#else
2379 FALSE
2380#endif
2381 );
2382 if (ffname != NULL)
2383 {
2384 buf = buflist_findname(ffname);
2385 vim_free(ffname);
2386 }
2387 return buf;
2388}
2389#endif
2390
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391/*
2392 * Find file in buffer list by name (it has to be for the current window).
2393 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002394 * Skips dummy buffers.
2395 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 */
2397 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002398buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399{
2400#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002401 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402
2403 if (mch_stat((char *)ffname, &st) < 0)
2404 st.st_dev = (dev_T)-1;
2405 return buflist_findname_stat(ffname, &st);
2406}
2407
2408/*
2409 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2410 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002411 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 */
2413 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002414buflist_findname_stat(
2415 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002416 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417{
2418#endif
2419 buf_T *buf;
2420
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002421 /* Start at the last buffer, expect to find a match sooner. */
2422 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002423 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424#ifdef UNIX
2425 , stp
2426#endif
2427 ))
2428 return buf;
2429 return NULL;
2430}
2431
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002432#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
2433 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434/*
2435 * Find file in buffer list by a regexp pattern.
2436 * Return fnum of the found buffer.
2437 * Return < 0 for error.
2438 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002440buflist_findpat(
2441 char_u *pattern,
2442 char_u *pattern_end, /* pointer to first char after pattern */
2443 int unlisted, /* find unlisted buffers */
2444 int diffmode UNUSED, /* find diff-mode buffers only */
2445 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446{
2447 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 int match = -1;
2449 int find_listed;
2450 char_u *pat;
2451 char_u *patend;
2452 int attempt;
2453 char_u *p;
2454 int toggledollar;
2455
2456 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2457 {
2458 if (*pattern == '%')
2459 match = curbuf->b_fnum;
2460 else
2461 match = curwin->w_alt_fnum;
2462#ifdef FEAT_DIFF
2463 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2464 match = -1;
2465#endif
2466 }
2467
2468 /*
2469 * Try four ways of matching a listed buffer:
2470 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002471 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 * attempt == 2: with '$' at end (only match at end)
2473 * attempt == 3: with '^' at start and '$' at end (only full match)
2474 * Repeat this for finding an unlisted buffer if there was no matching
2475 * listed buffer.
2476 */
2477 else
2478 {
2479 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2480 if (pat == NULL)
2481 return -1;
2482 patend = pat + STRLEN(pat) - 1;
2483 toggledollar = (patend > pat && *patend == '$');
2484
2485 /* First try finding a listed buffer. If not found and "unlisted"
2486 * is TRUE, try finding an unlisted buffer. */
2487 find_listed = TRUE;
2488 for (;;)
2489 {
2490 for (attempt = 0; attempt <= 3; ++attempt)
2491 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002492 regmatch_T regmatch;
2493
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 /* may add '^' and '$' */
2495 if (toggledollar)
2496 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2497 p = pat;
2498 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2499 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002500 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2501 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 {
2503 vim_free(pat);
2504 return -1;
2505 }
2506
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002507 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 if (buf->b_p_bl == find_listed
2509#ifdef FEAT_DIFF
2510 && (!diffmode || diff_mode_buf(buf))
2511#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002512 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002514 if (curtab_only)
2515 {
2516 /* Ignore the match if the buffer is not open in
2517 * the current tab. */
2518#ifdef FEAT_WINDOWS
2519 win_T *wp;
2520
Bram Moolenaar29323592016-07-24 22:04:11 +02002521 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002522 if (wp->w_buffer == buf)
2523 break;
2524 if (wp == NULL)
2525 continue;
2526#else
2527 if (curwin->w_buffer != buf)
2528 continue;
2529#endif
2530 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 if (match >= 0) /* already found a match */
2532 {
2533 match = -2;
2534 break;
2535 }
2536 match = buf->b_fnum; /* remember first match */
2537 }
2538
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002539 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 if (match >= 0) /* found one match */
2541 break;
2542 }
2543
2544 /* Only search for unlisted buffers if there was no match with
2545 * a listed buffer. */
2546 if (!unlisted || !find_listed || match != -1)
2547 break;
2548 find_listed = FALSE;
2549 }
2550
2551 vim_free(pat);
2552 }
2553
2554 if (match == -2)
2555 EMSG2(_("E93: More than one match for %s"), pattern);
2556 else if (match < 0)
2557 EMSG2(_("E94: No matching buffer for %s"), pattern);
2558 return match;
2559}
2560#endif
2561
2562#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2563
2564/*
2565 * Find all buffer names that match.
2566 * For command line expansion of ":buf" and ":sbuf".
2567 * Return OK if matches found, FAIL otherwise.
2568 */
2569 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002570ExpandBufnames(
2571 char_u *pat,
2572 int *num_file,
2573 char_u ***file,
2574 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575{
2576 int count = 0;
2577 buf_T *buf;
2578 int round;
2579 char_u *p;
2580 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002581 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582
2583 *num_file = 0; /* return values in case of FAIL */
2584 *file = NULL;
2585
Bram Moolenaar05159a02005-02-26 23:04:13 +00002586 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2587 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002589 patc = alloc((unsigned)STRLEN(pat) + 11);
2590 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002592 STRCPY(patc, "\\(^\\|[\\/]\\)");
2593 STRCPY(patc + 11, pat + 1);
2594 }
2595 else
2596 patc = pat;
2597
2598 /*
2599 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002600 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002601 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002602 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002603 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002604 regmatch_T regmatch;
2605
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002606 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002607 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002608 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2609 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002610 {
2611 if (patc != pat)
2612 vim_free(patc);
2613 return FAIL;
2614 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615
2616 /*
2617 * round == 1: Count the matches.
2618 * round == 2: Build the array to keep the matches.
2619 */
2620 for (round = 1; round <= 2; ++round)
2621 {
2622 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002623 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 {
2625 if (!buf->b_p_bl) /* skip unlisted buffers */
2626 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002627 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 if (p != NULL)
2629 {
2630 if (round == 1)
2631 ++count;
2632 else
2633 {
2634 if (options & WILD_HOME_REPLACE)
2635 p = home_replace_save(buf, p);
2636 else
2637 p = vim_strsave(p);
2638 (*file)[count++] = p;
2639 }
2640 }
2641 }
2642 if (count == 0) /* no match found, break here */
2643 break;
2644 if (round == 1)
2645 {
2646 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2647 if (*file == NULL)
2648 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002649 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002650 if (patc != pat)
2651 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 return FAIL;
2653 }
2654 }
2655 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002656 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 if (count) /* match(es) found, break here */
2658 break;
2659 }
2660
Bram Moolenaar05159a02005-02-26 23:04:13 +00002661 if (patc != pat)
2662 vim_free(patc);
2663
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 *num_file = count;
2665 return (count == 0 ? FAIL : OK);
2666}
2667
2668#endif /* FEAT_CMDL_COMPL */
2669
2670#ifdef HAVE_BUFLIST_MATCH
2671/*
2672 * Check for a match on the file name for buffer "buf" with regprog "prog".
2673 */
2674 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002675buflist_match(
2676 regmatch_T *rmp,
2677 buf_T *buf,
2678 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679{
2680 char_u *match;
2681
2682 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002683 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002685 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686
2687 return match;
2688}
2689
2690/*
2691 * Try matching the regexp in "prog" with file name "name".
2692 * Return "name" when there is a match, NULL when not.
2693 */
2694 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002695fname_match(
2696 regmatch_T *rmp,
2697 char_u *name,
2698 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699{
2700 char_u *match = NULL;
2701 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702
2703 if (name != NULL)
2704 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002705 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002706 rmp->rm_ic = p_fic || ignore_case;
2707 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 match = name;
2709 else
2710 {
2711 /* Replace $(HOME) with '~' and try matching again. */
2712 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002713 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 match = name;
2715 vim_free(p);
2716 }
2717 }
2718
2719 return match;
2720}
2721#endif
2722
2723/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002724 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 */
2726 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002727buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002729 char_u key[VIM_SIZEOF_INT * 2 + 1];
2730 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731
2732 if (nr == 0)
2733 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002734 sprintf((char *)key, "%x", nr);
2735 hi = hash_find(&buf_hashtab, key);
2736
2737 if (!HASHITEM_EMPTY(hi))
2738 return (buf_T *)(hi->hi_key
2739 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 return NULL;
2741}
2742
2743/*
2744 * Get name of file 'n' in the buffer list.
2745 * When the file has no name an empty string is returned.
2746 * home_replace() is used to shorten the file name (used for marks).
2747 * Returns a pointer to allocated memory, of NULL when failed.
2748 */
2749 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002750buflist_nr2name(
2751 int n,
2752 int fullname,
2753 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754{
2755 buf_T *buf;
2756
2757 buf = buflist_findnr(n);
2758 if (buf == NULL)
2759 return NULL;
2760 return home_replace_save(helptail ? buf : NULL,
2761 fullname ? buf->b_ffname : buf->b_fname);
2762}
2763
2764/*
2765 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2766 * When "copy_options" is TRUE save the local window option values.
2767 * When "lnum" is 0 only do the options.
2768 */
2769 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002770buflist_setfpos(
2771 buf_T *buf,
2772 win_T *win,
2773 linenr_T lnum,
2774 colnr_T col,
2775 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776{
2777 wininfo_T *wip;
2778
2779 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2780 if (wip->wi_win == win)
2781 break;
2782 if (wip == NULL)
2783 {
2784 /* allocate a new entry */
2785 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2786 if (wip == NULL)
2787 return;
2788 wip->wi_win = win;
2789 if (lnum == 0) /* set lnum even when it's 0 */
2790 lnum = 1;
2791 }
2792 else
2793 {
2794 /* remove the entry from the list */
2795 if (wip->wi_prev)
2796 wip->wi_prev->wi_next = wip->wi_next;
2797 else
2798 buf->b_wininfo = wip->wi_next;
2799 if (wip->wi_next)
2800 wip->wi_next->wi_prev = wip->wi_prev;
2801 if (copy_options && wip->wi_optset)
2802 {
2803 clear_winopt(&wip->wi_opt);
2804#ifdef FEAT_FOLDING
2805 deleteFoldRecurse(&wip->wi_folds);
2806#endif
2807 }
2808 }
2809 if (lnum != 0)
2810 {
2811 wip->wi_fpos.lnum = lnum;
2812 wip->wi_fpos.col = col;
2813 }
2814 if (copy_options)
2815 {
2816 /* Save the window-specific option values. */
2817 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2818#ifdef FEAT_FOLDING
2819 wip->wi_fold_manual = win->w_fold_manual;
2820 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2821#endif
2822 wip->wi_optset = TRUE;
2823 }
2824
2825 /* insert the entry in front of the list */
2826 wip->wi_next = buf->b_wininfo;
2827 buf->b_wininfo = wip;
2828 wip->wi_prev = NULL;
2829 if (wip->wi_next)
2830 wip->wi_next->wi_prev = wip;
2831
2832 return;
2833}
2834
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002835#ifdef FEAT_DIFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01002836static int wininfo_other_tab_diff(wininfo_T *wip);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002837
2838/*
2839 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2840 * page. That's because a diff is local to a tab page.
2841 */
2842 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002843wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002844{
2845 win_T *wp;
2846
2847 if (wip->wi_opt.wo_diff)
2848 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002849 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002850 /* return FALSE when it's a window in the current tab page, thus
2851 * the buffer was in diff mode here */
2852 if (wip->wi_win == wp)
2853 return FALSE;
2854 return TRUE;
2855 }
2856 return FALSE;
2857}
2858#endif
2859
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860/*
2861 * Find info for the current window in buffer "buf".
2862 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002863 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2864 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 * Returns NULL when there isn't any info.
2866 */
2867 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002868find_wininfo(
2869 buf_T *buf,
2870 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871{
2872 wininfo_T *wip;
2873
2874 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002875 if (wip->wi_win == curwin
2876#ifdef FEAT_DIFF
2877 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2878#endif
2879 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002881
2882 /* If no wininfo for curwin, use the first in the list (that doesn't have
2883 * 'diff' set and is in another tab page). */
2884 if (wip == NULL)
2885 {
2886#ifdef FEAT_DIFF
2887 if (skip_diff_buffer)
2888 {
2889 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2890 if (!wininfo_other_tab_diff(wip))
2891 break;
2892 }
2893 else
2894#endif
2895 wip = buf->b_wininfo;
2896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 return wip;
2898}
2899
2900/*
2901 * Reset the local window options to the values last used in this window.
2902 * If the buffer wasn't used in this window before, use the values from
2903 * the most recently used window. If the values were never set, use the
2904 * global values for the window.
2905 */
2906 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002907get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908{
2909 wininfo_T *wip;
2910
2911 clear_winopt(&curwin->w_onebuf_opt);
2912#ifdef FEAT_FOLDING
2913 clearFolding(curwin);
2914#endif
2915
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002916 wip = find_wininfo(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 if (wip != NULL && wip->wi_optset)
2918 {
2919 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2920#ifdef FEAT_FOLDING
2921 curwin->w_fold_manual = wip->wi_fold_manual;
2922 curwin->w_foldinvalid = TRUE;
2923 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2924#endif
2925 }
2926 else
2927 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2928
2929#ifdef FEAT_FOLDING
2930 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2931 if (p_fdls >= 0)
2932 curwin->w_p_fdl = p_fdls;
2933#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002934#ifdef FEAT_SYN_HL
2935 check_colorcolumn(curwin);
2936#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937}
2938
2939/*
2940 * Find the position (lnum and col) for the buffer 'buf' for the current
2941 * window.
2942 * Returns a pointer to no_position if no position is found.
2943 */
2944 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002945buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946{
2947 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002948 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002950 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 if (wip != NULL)
2952 return &(wip->wi_fpos);
2953 else
2954 return &no_position;
2955}
2956
2957/*
2958 * Find the lnum for the buffer 'buf' for the current window.
2959 */
2960 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002961buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962{
2963 return buflist_findfpos(buf)->lnum;
2964}
2965
2966#if defined(FEAT_LISTCMDS) || defined(PROTO)
2967/*
2968 * List all know file names (for :files and :buffers command).
2969 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002971buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972{
2973 buf_T *buf;
2974 int len;
2975 int i;
2976
2977 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2978 {
2979 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02002980 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2981 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2982 || (vim_strchr(eap->arg, '+')
2983 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
2984 || (vim_strchr(eap->arg, 'a')
2985 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
2986 || (vim_strchr(eap->arg, 'h')
2987 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
2988 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
2989 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
2990 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
2991 || (vim_strchr(eap->arg, '%') && buf != curbuf)
2992 || (vim_strchr(eap->arg, '#')
2993 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02002996 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 else
2998 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02002999 if (message_filtered(NameBuff))
3000 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001
Bram Moolenaar77401ad2016-08-24 00:12:12 +02003002 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00003003 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 buf->b_fnum,
3005 buf->b_p_bl ? ' ' : 'u',
3006 buf == curbuf ? '%' :
3007 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3008 buf->b_ml.ml_mfp == NULL ? ' ' :
3009 (buf->b_nwindows == 0 ? 'h' : 'a'),
3010 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
3011 (buf->b_flags & BF_READERR) ? 'x'
Bram Moolenaar51485f02005-06-04 21:55:20 +00003012 : (bufIsChanged(buf) ? '+' : ' '),
3013 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01003014 if (len > IOSIZE - 20)
3015 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016
3017 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 i = 40 - vim_strsize(IObuff);
3019 do
3020 {
3021 IObuff[len++] = ' ';
3022 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003023 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3024 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003025 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 msg_outtrans(IObuff);
3027 out_flush(); /* output one line at a time */
3028 ui_breakcheck();
3029 }
3030}
3031#endif
3032
3033/*
3034 * Get file name and line number for file 'fnum'.
3035 * Used by DoOneCmd() for translating '%' and '#'.
3036 * Used by insert_reg() and cmdline_paste() for '#' register.
3037 * Return FAIL if not found, OK for success.
3038 */
3039 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003040buflist_name_nr(
3041 int fnum,
3042 char_u **fname,
3043 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044{
3045 buf_T *buf;
3046
3047 buf = buflist_findnr(fnum);
3048 if (buf == NULL || buf->b_fname == NULL)
3049 return FAIL;
3050
3051 *fname = buf->b_fname;
3052 *lnum = buflist_findlnum(buf);
3053
3054 return OK;
3055}
3056
3057/*
3058 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3059 * The file name with the full path is also remembered, for when :cd is used.
3060 * Returns FAIL for failure (file name already in use by other buffer)
3061 * OK otherwise.
3062 */
3063 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003064setfname(
3065 buf_T *buf,
3066 char_u *ffname,
3067 char_u *sfname,
3068 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069{
Bram Moolenaar81695252004-12-29 20:58:21 +00003070 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003072 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073#endif
3074
3075 if (ffname == NULL || *ffname == NUL)
3076 {
3077 /* Removing the name. */
3078 vim_free(buf->b_ffname);
3079 vim_free(buf->b_sfname);
3080 buf->b_ffname = NULL;
3081 buf->b_sfname = NULL;
3082#ifdef UNIX
3083 st.st_dev = (dev_T)-1;
3084#endif
3085 }
3086 else
3087 {
3088 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3089 if (ffname == NULL) /* out of memory */
3090 return FAIL;
3091
3092 /*
3093 * if the file name is already used in another buffer:
3094 * - if the buffer is loaded, fail
3095 * - if the buffer is not loaded, delete it from the list
3096 */
3097#ifdef UNIX
3098 if (mch_stat((char *)ffname, &st) < 0)
3099 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003100#endif
3101 if (!(buf->b_flags & BF_DUMMY))
3102#ifdef UNIX
3103 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003105 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106#endif
3107 if (obuf != NULL && obuf != buf)
3108 {
3109 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3110 {
3111 if (message)
3112 EMSG(_("E95: Buffer with this name already exists"));
3113 vim_free(ffname);
3114 return FAIL;
3115 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003116 /* delete from the list */
3117 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 }
3119 sfname = vim_strsave(sfname);
3120 if (ffname == NULL || sfname == NULL)
3121 {
3122 vim_free(sfname);
3123 vim_free(ffname);
3124 return FAIL;
3125 }
3126#ifdef USE_FNAME_CASE
3127# ifdef USE_LONG_FNAME
3128 if (USE_LONG_FNAME)
3129# endif
3130 fname_case(sfname, 0); /* set correct case for short file name */
3131#endif
3132 vim_free(buf->b_ffname);
3133 vim_free(buf->b_sfname);
3134 buf->b_ffname = ffname;
3135 buf->b_sfname = sfname;
3136 }
3137 buf->b_fname = buf->b_sfname;
3138#ifdef UNIX
3139 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003140 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 else
3142 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003143 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 buf->b_dev = st.st_dev;
3145 buf->b_ino = st.st_ino;
3146 }
3147#endif
3148
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150
3151 buf_name_changed(buf);
3152 return OK;
3153}
3154
3155/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003156 * Crude way of changing the name of a buffer. Use with care!
3157 * The name should be relative to the current directory.
3158 */
3159 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003160buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003161{
3162 buf_T *buf;
3163
3164 buf = buflist_findnr(fnum);
3165 if (buf != NULL)
3166 {
3167 vim_free(buf->b_sfname);
3168 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003169 buf->b_ffname = vim_strsave(name);
3170 buf->b_sfname = NULL;
3171 /* Allocate ffname and expand into full path. Also resolves .lnk
3172 * files on Win32. */
3173 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003174 buf->b_fname = buf->b_sfname;
3175 }
3176}
3177
3178/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 * Take care of what needs to be done when the name of buffer "buf" has
3180 * changed.
3181 */
3182 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003183buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184{
3185 /*
3186 * If the file name changed, also change the name of the swapfile
3187 */
3188 if (buf->b_ml.ml_mfp != NULL)
3189 ml_setname(buf);
3190
3191 if (curwin->w_buffer == buf)
3192 check_arg_idx(curwin); /* check file name for arg list */
3193#ifdef FEAT_TITLE
3194 maketitle(); /* set window title */
3195#endif
3196#ifdef FEAT_WINDOWS
3197 status_redraw_all(); /* status lines need to be redrawn */
3198#endif
3199 fmarks_check_names(buf); /* check named file marks */
3200 ml_timestamp(buf); /* reset timestamp */
3201}
3202
3203/*
3204 * set alternate file name for current window
3205 *
3206 * Used by do_one_cmd(), do_write() and do_ecmd().
3207 * Return the buffer.
3208 */
3209 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003210setaltfname(
3211 char_u *ffname,
3212 char_u *sfname,
3213 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214{
3215 buf_T *buf;
3216
3217 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3218 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003219 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 curwin->w_alt_fnum = buf->b_fnum;
3221 return buf;
3222}
3223
3224/*
3225 * Get alternate file name for current window.
3226 * Return NULL if there isn't any, and give error message if requested.
3227 */
3228 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003229getaltfname(
3230 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231{
3232 char_u *fname;
3233 linenr_T dummy;
3234
3235 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3236 {
3237 if (errmsg)
3238 EMSG(_(e_noalt));
3239 return NULL;
3240 }
3241 return fname;
3242}
3243
3244/*
3245 * Add a file name to the buflist and return its number.
3246 * Uses same flags as buflist_new(), except BLN_DUMMY.
3247 *
3248 * used by qf_init(), main() and doarglist()
3249 */
3250 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003251buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252{
3253 buf_T *buf;
3254
3255 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3256 if (buf != NULL)
3257 return buf->b_fnum;
3258 return 0;
3259}
3260
3261#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3262/*
3263 * Adjust slashes in file names. Called after 'shellslash' was set.
3264 */
3265 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003266buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267{
3268 buf_T *bp;
3269
Bram Moolenaar29323592016-07-24 22:04:11 +02003270 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 {
3272 if (bp->b_ffname != NULL)
3273 slash_adjust(bp->b_ffname);
3274 if (bp->b_sfname != NULL)
3275 slash_adjust(bp->b_sfname);
3276 }
3277}
3278#endif
3279
3280/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003281 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 * Also save the local window option values.
3283 */
3284 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003285buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003287 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288}
3289
3290/*
3291 * Return TRUE if 'ffname' is not the same file as current file.
3292 * Fname must have a full path (expanded by mch_FullName()).
3293 */
3294 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003295otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296{
3297 return otherfile_buf(curbuf, ffname
3298#ifdef UNIX
3299 , NULL
3300#endif
3301 );
3302}
3303
3304 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003305otherfile_buf(
3306 buf_T *buf,
3307 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003309 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003311 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312{
3313 /* no name is different */
3314 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3315 return TRUE;
3316 if (fnamecmp(ffname, buf->b_ffname) == 0)
3317 return FALSE;
3318#ifdef UNIX
3319 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003320 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321
Bram Moolenaar8767f522016-07-01 17:17:39 +02003322 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 if (stp == NULL)
3324 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003325 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 st.st_dev = (dev_T)-1;
3327 stp = &st;
3328 }
3329 /* Use dev/ino to check if the files are the same, even when the names
3330 * are different (possible with links). Still need to compare the
3331 * name above, for when the file doesn't exist yet.
3332 * Problem: The dev/ino changes when a file is deleted (and created
3333 * again) and remains the same when renamed/moved. We don't want to
3334 * mch_stat() each buffer each time, that would be too slow. Get the
3335 * dev/ino again when they appear to match, but not when they appear
3336 * to be different: Could skip a buffer when it's actually the same
3337 * file. */
3338 if (buf_same_ino(buf, stp))
3339 {
3340 buf_setino(buf);
3341 if (buf_same_ino(buf, stp))
3342 return FALSE;
3343 }
3344 }
3345#endif
3346 return TRUE;
3347}
3348
3349#if defined(UNIX) || defined(PROTO)
3350/*
3351 * Set inode and device number for a buffer.
3352 * Must always be called when b_fname is changed!.
3353 */
3354 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003355buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003357 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358
3359 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3360 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003361 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 buf->b_dev = st.st_dev;
3363 buf->b_ino = st.st_ino;
3364 }
3365 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003366 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367}
3368
3369/*
3370 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3371 */
3372 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003373buf_same_ino(
3374 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003375 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003377 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 && stp->st_dev == buf->b_dev
3379 && stp->st_ino == buf->b_ino);
3380}
3381#endif
3382
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003383/*
3384 * Print info about the current buffer.
3385 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003387fileinfo(
3388 int fullname, /* when non-zero print full path */
3389 int shorthelp,
3390 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391{
3392 char_u *name;
3393 int n;
3394 char_u *p;
3395 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003396 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397
3398 buffer = alloc(IOSIZE);
3399 if (buffer == NULL)
3400 return;
3401
3402 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3403 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003404 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 p = buffer + STRLEN(buffer);
3406 }
3407 else
3408 p = buffer;
3409
3410 *p++ = '"';
3411 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003412 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 else
3414 {
3415 if (!fullname && curbuf->b_fname != NULL)
3416 name = curbuf->b_fname;
3417 else
3418 name = curbuf->b_ffname;
3419 home_replace(shorthelp ? curbuf : NULL, name, p,
3420 (int)(IOSIZE - (p - buffer)), TRUE);
3421 }
3422
Bram Moolenaara800b422010-06-27 01:15:55 +02003423 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 curbufIsChanged() ? (shortmess(SHM_MOD)
3425 ? " [+]" : _(" [Modified]")) : " ",
3426 (curbuf->b_flags & BF_NOTEDITED)
3427#ifdef FEAT_QUICKFIX
3428 && !bt_dontwrite(curbuf)
3429#endif
3430 ? _("[Not edited]") : "",
3431 (curbuf->b_flags & BF_NEW)
3432#ifdef FEAT_QUICKFIX
3433 && !bt_dontwrite(curbuf)
3434#endif
3435 ? _("[New file]") : "",
3436 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003437 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 : _("[readonly]")) : "",
3439 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3440 || curbuf->b_p_ro) ?
3441 " " : "");
3442 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3443 * causes an overflow, thus for large numbers divide instead. */
3444 if (curwin->w_cursor.lnum > 1000000L)
3445 n = (int)(((long)curwin->w_cursor.lnum) /
3446 ((long)curbuf->b_ml.ml_line_count / 100L));
3447 else
3448 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3449 (long)curbuf->b_ml.ml_line_count);
3450 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3451 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003452 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 }
3454#ifdef FEAT_CMDL_INFO
3455 else if (p_ru)
3456 {
3457 /* Current line and column are already on the screen -- webb */
3458 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003459 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003461 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 (long)curbuf->b_ml.ml_line_count, n);
3463 }
3464#endif
3465 else
3466 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003467 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 _("line %ld of %ld --%d%%-- col "),
3469 (long)curwin->w_cursor.lnum,
3470 (long)curbuf->b_ml.ml_line_count,
3471 n);
3472 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003473 len = STRLEN(buffer);
3474 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3476 }
3477
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003478 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479
3480 if (dont_truncate)
3481 {
3482 /* Temporarily set msg_scroll to avoid the message being truncated.
3483 * First call msg_start() to get the message in the right place. */
3484 msg_start();
3485 n = msg_scroll;
3486 msg_scroll = TRUE;
3487 msg(buffer);
3488 msg_scroll = n;
3489 }
3490 else
3491 {
3492 p = msg_trunc_attr(buffer, FALSE, 0);
3493 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494 /* Need to repeat the message after redrawing when:
3495 * - When restart_edit is set (otherwise there will be a delay
3496 * before redrawing).
3497 * - When the screen was scrolled but there is no wait-return
3498 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003499 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 }
3501
3502 vim_free(buffer);
3503}
3504
3505 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003506col_print(
3507 char_u *buf,
3508 size_t buflen,
3509 int col,
3510 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511{
3512 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003513 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003515 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516}
3517
3518#if defined(FEAT_TITLE) || defined(PROTO)
3519/*
3520 * put file name in title bar of window and in icon title
3521 */
3522
3523static char_u *lasttitle = NULL;
3524static char_u *lasticon = NULL;
3525
3526 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003527maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528{
3529 char_u *p;
3530 char_u *t_str = NULL;
3531 char_u *i_name;
3532 char_u *i_str = NULL;
3533 int maxlen = 0;
3534 int len;
3535 int mustset;
3536 char_u buf[IOSIZE];
3537 int off;
3538
3539 if (!redrawing())
3540 {
3541 /* Postpone updating the title when 'lazyredraw' is set. */
3542 need_maketitle = TRUE;
3543 return;
3544 }
3545
3546 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003547 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 return;
3549
3550 if (p_title)
3551 {
3552 if (p_titlelen > 0)
3553 {
3554 maxlen = p_titlelen * Columns / 100;
3555 if (maxlen < 10)
3556 maxlen = 10;
3557 }
3558
3559 t_str = buf;
3560 if (*p_titlestring != NUL)
3561 {
3562#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003563 if (stl_syntax & STL_IN_TITLE)
3564 {
3565 int use_sandbox = FALSE;
3566 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003567
3568# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003569 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003570# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003571 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003573 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003574 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003575 if (called_emsg)
3576 set_string_option_direct((char_u *)"titlestring", -1,
3577 (char_u *)"", OPT_FREE, SID_ERROR);
3578 called_emsg |= save_called_emsg;
3579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 else
3581#endif
3582 t_str = p_titlestring;
3583 }
3584 else
3585 {
3586 /* format: "fname + (path) (1 of 2) - VIM" */
3587
Bram Moolenaar2c666692012-09-05 13:30:40 +02003588#define SPACE_FOR_FNAME (IOSIZE - 100)
3589#define SPACE_FOR_DIR (IOSIZE - 20)
3590#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003592 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 else
3594 {
3595 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003596 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 }
3599
3600 switch (bufIsChanged(curbuf)
3601 + (curbuf->b_p_ro * 2)
3602 + (!curbuf->b_p_ma * 4))
3603 {
3604 case 1: STRCAT(buf, " +"); break;
3605 case 2: STRCAT(buf, " ="); break;
3606 case 3: STRCAT(buf, " =+"); break;
3607 case 4:
3608 case 6: STRCAT(buf, " -"); break;
3609 case 5:
3610 case 7: STRCAT(buf, " -+"); break;
3611 }
3612
3613 if (curbuf->b_fname != NULL)
3614 {
3615 /* Get path of file, replace home dir with ~ */
3616 off = (int)STRLEN(buf);
3617 buf[off++] = ' ';
3618 buf[off++] = '(';
3619 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003620 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621#ifdef BACKSLASH_IN_FILENAME
3622 /* avoid "c:/name" to be reduced to "c" */
3623 if (isalpha(buf[off]) && buf[off + 1] == ':')
3624 off += 2;
3625#endif
3626 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003627 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 if (p == buf + off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 /* must be a help buffer */
Bram Moolenaarb6356332005-07-18 21:40:44 +00003630 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003631 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003634
Bram Moolenaar2c666692012-09-05 13:30:40 +02003635 /* Translate unprintable chars and concatenate. Keep some
3636 * room for the server name. When there is no room (very long
3637 * file name) use (...). */
3638 if (off < SPACE_FOR_DIR)
3639 {
3640 p = transstr(buf + off);
3641 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3642 vim_free(p);
3643 }
3644 else
3645 {
3646 vim_strncpy(buf + off, (char_u *)"...",
3647 (size_t)(SPACE_FOR_ARGNR - off));
3648 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 STRCAT(buf, ")");
3650 }
3651
Bram Moolenaar2c666692012-09-05 13:30:40 +02003652 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653
3654#if defined(FEAT_CLIENTSERVER)
3655 if (serverName != NULL)
3656 {
3657 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003658 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 }
3660 else
3661#endif
3662 STRCAT(buf, " - VIM");
3663
3664 if (maxlen > 0)
3665 {
3666 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003667 if (vim_strsize(buf) > maxlen)
3668 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 }
3670 }
3671 }
3672 mustset = ti_change(t_str, &lasttitle);
3673
3674 if (p_icon)
3675 {
3676 i_str = buf;
3677 if (*p_iconstring != NUL)
3678 {
3679#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003680 if (stl_syntax & STL_IN_ICON)
3681 {
3682 int use_sandbox = FALSE;
3683 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003684
3685# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003686 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003687# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003688 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003690 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003691 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003692 if (called_emsg)
3693 set_string_option_direct((char_u *)"iconstring", -1,
3694 (char_u *)"", OPT_FREE, SID_ERROR);
3695 called_emsg |= save_called_emsg;
3696 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 else
3698#endif
3699 i_str = p_iconstring;
3700 }
3701 else
3702 {
3703 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003704 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 else /* use file name only in icon */
3706 i_name = gettail(curbuf->b_ffname);
3707 *i_str = NUL;
3708 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003709 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 if (len > 100)
3711 {
3712 len -= 100;
3713#ifdef FEAT_MBYTE
3714 if (has_mbyte)
3715 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3716#endif
3717 i_name += len;
3718 }
3719 STRCPY(i_str, i_name);
3720 trans_characters(i_str, IOSIZE);
3721 }
3722 }
3723
3724 mustset |= ti_change(i_str, &lasticon);
3725
3726 if (mustset)
3727 resettitle();
3728}
3729
3730/*
3731 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3732 * from "str" if it does.
3733 * Return TRUE when "*last" changed.
3734 */
3735 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003736ti_change(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737{
3738 if ((str == NULL) != (*last == NULL)
3739 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3740 {
3741 vim_free(*last);
3742 if (str == NULL)
3743 *last = NULL;
3744 else
3745 *last = vim_strsave(str);
3746 return TRUE;
3747 }
3748 return FALSE;
3749}
3750
3751/*
3752 * Put current window title back (used after calling a shell)
3753 */
3754 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003755resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756{
3757 mch_settitle(lasttitle, lasticon);
3758}
Bram Moolenaarea408852005-06-25 22:49:46 +00003759
3760# if defined(EXITFREE) || defined(PROTO)
3761 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003762free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003763{
3764 vim_free(lasttitle);
3765 vim_free(lasticon);
3766}
3767# endif
3768
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769#endif /* FEAT_TITLE */
3770
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003771#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003773 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 * Return length of string in screen cells.
3775 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003776 * Normally works for window "wp", except when working for 'tabline' then it
3777 * is "curwin".
3778 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 * Items are drawn interspersed with the text that surrounds it
3780 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3781 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3782 *
3783 * If maxwidth is not zero, the string will be filled at any middle marker
3784 * or truncated if too long, fillchar is used for all whitespace.
3785 */
3786 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003787build_stl_str_hl(
3788 win_T *wp,
3789 char_u *out, /* buffer to write into != NameBuff */
3790 size_t outlen, /* length of out[] */
3791 char_u *fmt,
3792 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3793 int fillchar,
3794 int maxwidth,
3795 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3796 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797{
3798 char_u *p;
3799 char_u *s;
3800 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003801 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802#ifdef FEAT_EVAL
3803 win_T *o_curwin;
3804 buf_T *o_curbuf;
3805#endif
3806 int empty_line;
3807 colnr_T virtcol;
3808 long l;
3809 long n;
3810 int prevchar_isflag;
3811 int prevchar_isitem;
3812 int itemisflag;
3813 int fillable;
3814 char_u *str;
3815 long num;
3816 int width;
3817 int itemcnt;
3818 int curitem;
3819 int groupitem[STL_MAX_ITEM];
3820 int groupdepth;
3821 struct stl_item
3822 {
3823 char_u *start;
3824 int minwid;
3825 int maxwid;
3826 enum
3827 {
3828 Normal,
3829 Empty,
3830 Group,
3831 Middle,
3832 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003833 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 Trunc
3835 } type;
3836 } item[STL_MAX_ITEM];
3837 int minwid;
3838 int maxwid;
3839 int zeropad;
3840 char_u base;
3841 char_u opt;
3842#define TMPLEN 70
3843 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003844 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003845 struct stl_hlrec *sp;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003846
3847#ifdef FEAT_EVAL
3848 /*
3849 * When the format starts with "%!" then evaluate it as an expression and
3850 * use the result as the actual format string.
3851 */
3852 if (fmt[0] == '%' && fmt[1] == '!')
3853 {
3854 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3855 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003856 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003857 }
3858#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859
3860 if (fillchar == 0)
3861 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003862#ifdef FEAT_MBYTE
3863 /* Can't handle a multi-byte fill character yet. */
3864 else if (mb_char2len(fillchar) > 1)
3865 fillchar = '-';
3866#endif
3867
Bram Moolenaar567199b2013-04-24 16:52:36 +02003868 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3869 * p will become invalid when getting another buffer line. */
3870 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3871 empty_line = (*p == NUL);
3872
3873 /* Get the byte value now, in case we need it below. This is more
3874 * efficient than making a copy of the line. */
3875 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3876 byteval = 0;
3877 else
3878#ifdef FEAT_MBYTE
3879 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3880#else
3881 byteval = p[wp->w_cursor.col];
3882#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883
3884 groupdepth = 0;
3885 p = out;
3886 curitem = 0;
3887 prevchar_isflag = TRUE;
3888 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003889 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003891 if (curitem == STL_MAX_ITEM)
3892 {
3893 /* There are too many items. Add the error code to the statusline
3894 * to give the user a hint about what went wrong. */
3895 if (p + 6 < out + outlen)
3896 {
3897 mch_memmove(p, " E541", (size_t)5);
3898 p += 5;
3899 }
3900 break;
3901 }
3902
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 if (*s != NUL && *s != '%')
3904 prevchar_isflag = prevchar_isitem = FALSE;
3905
3906 /*
3907 * Handle up to the next '%' or the end.
3908 */
3909 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3910 *p++ = *s++;
3911 if (*s == NUL || p + 1 >= out + outlen)
3912 break;
3913
3914 /*
3915 * Handle one '%' item.
3916 */
3917 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003918 if (*s == NUL) /* ignore trailing % */
3919 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 if (*s == '%')
3921 {
3922 if (p + 1 >= out + outlen)
3923 break;
3924 *p++ = *s++;
3925 prevchar_isflag = prevchar_isitem = FALSE;
3926 continue;
3927 }
3928 if (*s == STL_MIDDLEMARK)
3929 {
3930 s++;
3931 if (groupdepth > 0)
3932 continue;
3933 item[curitem].type = Middle;
3934 item[curitem++].start = p;
3935 continue;
3936 }
3937 if (*s == STL_TRUNCMARK)
3938 {
3939 s++;
3940 item[curitem].type = Trunc;
3941 item[curitem++].start = p;
3942 continue;
3943 }
3944 if (*s == ')')
3945 {
3946 s++;
3947 if (groupdepth < 1)
3948 continue;
3949 groupdepth--;
3950
3951 t = item[groupitem[groupdepth]].start;
3952 *p = NUL;
3953 l = vim_strsize(t);
3954 if (curitem > groupitem[groupdepth] + 1
3955 && item[groupitem[groupdepth]].minwid == 0)
3956 {
3957 /* remove group if all items are empty */
3958 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaaraf6e36f2016-03-08 12:56:33 +01003959 if (item[n].type == Normal || item[n].type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 break;
3961 if (n == curitem)
3962 {
3963 p = t;
3964 l = 0;
3965 }
3966 }
3967 if (l > item[groupitem[groupdepth]].maxwid)
3968 {
3969 /* truncate, remove n bytes of text at the start */
3970#ifdef FEAT_MBYTE
3971 if (has_mbyte)
3972 {
3973 /* Find the first character that should be included. */
3974 n = 0;
3975 while (l >= item[groupitem[groupdepth]].maxwid)
3976 {
3977 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003978 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 }
3980 }
3981 else
3982#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003983 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984
3985 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003986 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 p = p - n + 1;
3988#ifdef FEAT_MBYTE
3989 /* Fill up space left over by half a double-wide char. */
3990 while (++l < item[groupitem[groupdepth]].minwid)
3991 *p++ = fillchar;
3992#endif
3993
3994 /* correct the start of the items for the truncation */
3995 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
3996 {
3997 item[l].start -= n;
3998 if (item[l].start < t)
3999 item[l].start = t;
4000 }
4001 }
4002 else if (abs(item[groupitem[groupdepth]].minwid) > l)
4003 {
4004 /* fill */
4005 n = item[groupitem[groupdepth]].minwid;
4006 if (n < 0)
4007 {
4008 /* fill by appending characters */
4009 n = 0 - n;
4010 while (l++ < n && p + 1 < out + outlen)
4011 *p++ = fillchar;
4012 }
4013 else
4014 {
4015 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004016 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 l = n - l;
4018 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004019 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 p += l;
4021 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4022 item[n].start += l;
4023 for ( ; l > 0; l--)
4024 *t++ = fillchar;
4025 }
4026 }
4027 continue;
4028 }
4029 minwid = 0;
4030 maxwid = 9999;
4031 zeropad = FALSE;
4032 l = 1;
4033 if (*s == '0')
4034 {
4035 s++;
4036 zeropad = TRUE;
4037 }
4038 if (*s == '-')
4039 {
4040 s++;
4041 l = -1;
4042 }
4043 if (VIM_ISDIGIT(*s))
4044 {
4045 minwid = (int)getdigits(&s);
4046 if (minwid < 0) /* overflow */
4047 minwid = 0;
4048 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004049 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 {
4051 item[curitem].type = Highlight;
4052 item[curitem].start = p;
4053 item[curitem].minwid = minwid > 9 ? 1 : minwid;
4054 s++;
4055 curitem++;
4056 continue;
4057 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004058 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4059 {
4060 if (*s == STL_TABCLOSENR)
4061 {
4062 if (minwid == 0)
4063 {
4064 /* %X ends the close label, go back to the previously
4065 * define tab label nr. */
4066 for (n = curitem - 1; n >= 0; --n)
4067 if (item[n].type == TabPage && item[n].minwid >= 0)
4068 {
4069 minwid = item[n].minwid;
4070 break;
4071 }
4072 }
4073 else
4074 /* close nrs are stored as negative values */
4075 minwid = - minwid;
4076 }
4077 item[curitem].type = TabPage;
4078 item[curitem].start = p;
4079 item[curitem].minwid = minwid;
4080 s++;
4081 curitem++;
4082 continue;
4083 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 if (*s == '.')
4085 {
4086 s++;
4087 if (VIM_ISDIGIT(*s))
4088 {
4089 maxwid = (int)getdigits(&s);
4090 if (maxwid <= 0) /* overflow */
4091 maxwid = 50;
4092 }
4093 }
4094 minwid = (minwid > 50 ? 50 : minwid) * l;
4095 if (*s == '(')
4096 {
4097 groupitem[groupdepth++] = curitem;
4098 item[curitem].type = Group;
4099 item[curitem].start = p;
4100 item[curitem].minwid = minwid;
4101 item[curitem].maxwid = maxwid;
4102 s++;
4103 curitem++;
4104 continue;
4105 }
4106 if (vim_strchr(STL_ALL, *s) == NULL)
4107 {
4108 s++;
4109 continue;
4110 }
4111 opt = *s++;
4112
4113 /* OK - now for the real work */
4114 base = 'D';
4115 itemisflag = FALSE;
4116 fillable = TRUE;
4117 num = -1;
4118 str = NULL;
4119 switch (opt)
4120 {
4121 case STL_FILEPATH:
4122 case STL_FULLPATH:
4123 case STL_FILENAME:
4124 fillable = FALSE; /* don't change ' ' to fillchar */
4125 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004126 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 else
4128 {
4129 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004130 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4132 }
4133 trans_characters(NameBuff, MAXPATHL);
4134 if (opt != STL_FILENAME)
4135 str = NameBuff;
4136 else
4137 str = gettail(NameBuff);
4138 break;
4139
4140 case STL_VIM_EXPR: /* '{' */
4141 itemisflag = TRUE;
4142 t = p;
4143 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4144 *p++ = *s++;
4145 if (*s != '}') /* missing '}' or out of space */
4146 break;
4147 s++;
4148 *p = 0;
4149 p = t;
4150
4151#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004152 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 set_internal_string_var((char_u *)"actual_curbuf", tmp);
4154
4155 o_curbuf = curbuf;
4156 o_curwin = curwin;
4157 curwin = wp;
4158 curbuf = wp->w_buffer;
4159
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004160 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161
4162 curwin = o_curwin;
4163 curbuf = o_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004164 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165
4166 if (str != NULL && *str != 0)
4167 {
4168 if (*skipdigits(str) == NUL)
4169 {
4170 num = atoi((char *)str);
4171 vim_free(str);
4172 str = NULL;
4173 itemisflag = FALSE;
4174 }
4175 }
4176#endif
4177 break;
4178
4179 case STL_LINE:
4180 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4181 ? 0L : (long)(wp->w_cursor.lnum);
4182 break;
4183
4184 case STL_NUMLINES:
4185 num = wp->w_buffer->b_ml.ml_line_count;
4186 break;
4187
4188 case STL_COLUMN:
4189 num = !(State & INSERT) && empty_line
4190 ? 0 : (int)wp->w_cursor.col + 1;
4191 break;
4192
4193 case STL_VIRTCOL:
4194 case STL_VIRTCOL_ALT:
4195 /* In list mode virtcol needs to be recomputed */
4196 virtcol = wp->w_virtcol;
4197 if (wp->w_p_list && lcs_tab1 == NUL)
4198 {
4199 wp->w_p_list = FALSE;
4200 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4201 wp->w_p_list = TRUE;
4202 }
4203 ++virtcol;
4204 /* Don't display %V if it's the same as %c. */
4205 if (opt == STL_VIRTCOL_ALT
4206 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4207 ? 0 : (int)wp->w_cursor.col + 1)))
4208 break;
4209 num = (long)virtcol;
4210 break;
4211
4212 case STL_PERCENTAGE:
4213 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4214 (long)wp->w_buffer->b_ml.ml_line_count);
4215 break;
4216
4217 case STL_ALTPERCENT:
4218 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004219 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 break;
4221
4222 case STL_ARGLISTSTAT:
4223 fillable = FALSE;
4224 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004225 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 str = tmp;
4227 break;
4228
4229 case STL_KEYMAP:
4230 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004231 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232 str = tmp;
4233 break;
4234 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004235#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004236 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237#else
4238 num = 0;
4239#endif
4240 break;
4241
4242 case STL_BUFNO:
4243 num = wp->w_buffer->b_fnum;
4244 break;
4245
4246 case STL_OFFSET_X:
4247 base = 'X';
4248 case STL_OFFSET:
4249#ifdef FEAT_BYTEOFF
4250 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4251 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4252 0L : l + 1 + (!(State & INSERT) && empty_line ?
4253 0 : (int)wp->w_cursor.col);
4254#endif
4255 break;
4256
4257 case STL_BYTEVAL_X:
4258 base = 'X';
4259 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004260 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 if (num == NL)
4262 num = 0;
4263 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4264 num = NL;
4265 break;
4266
4267 case STL_ROFLAG:
4268 case STL_ROFLAG_ALT:
4269 itemisflag = TRUE;
4270 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004271 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 break;
4273
4274 case STL_HELPFLAG:
4275 case STL_HELPFLAG_ALT:
4276 itemisflag = TRUE;
4277 if (wp->w_buffer->b_help)
4278 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004279 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 break;
4281
4282#ifdef FEAT_AUTOCMD
4283 case STL_FILETYPE:
4284 if (*wp->w_buffer->b_p_ft != NUL
4285 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4286 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004287 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4288 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 str = tmp;
4290 }
4291 break;
4292
4293 case STL_FILETYPE_ALT:
4294 itemisflag = TRUE;
4295 if (*wp->w_buffer->b_p_ft != NUL
4296 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4297 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004298 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4299 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 for (t = tmp; *t != 0; t++)
4301 *t = TOUPPER_LOC(*t);
4302 str = tmp;
4303 }
4304 break;
4305#endif
4306
4307#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4308 case STL_PREVIEWFLAG:
4309 case STL_PREVIEWFLAG_ALT:
4310 itemisflag = TRUE;
4311 if (wp->w_p_pvw)
4312 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4313 : _("[Preview]"));
4314 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004315
4316 case STL_QUICKFIX:
4317 if (bt_quickfix(wp->w_buffer))
4318 str = (char_u *)(wp->w_llist_ref
4319 ? _(msg_loclist)
4320 : _(msg_qflist));
4321 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322#endif
4323
4324 case STL_MODIFIED:
4325 case STL_MODIFIED_ALT:
4326 itemisflag = TRUE;
4327 switch ((opt == STL_MODIFIED_ALT)
4328 + bufIsChanged(wp->w_buffer) * 2
4329 + (!wp->w_buffer->b_p_ma) * 4)
4330 {
4331 case 2: str = (char_u *)"[+]"; break;
4332 case 3: str = (char_u *)",+"; break;
4333 case 4: str = (char_u *)"[-]"; break;
4334 case 5: str = (char_u *)",-"; break;
4335 case 6: str = (char_u *)"[+-]"; break;
4336 case 7: str = (char_u *)",+-"; break;
4337 }
4338 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004339
4340 case STL_HIGHLIGHT:
4341 t = s;
4342 while (*s != '#' && *s != NUL)
4343 ++s;
4344 if (*s == '#')
4345 {
4346 item[curitem].type = Highlight;
4347 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004348 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004349 curitem++;
4350 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004351 if (*s != NUL)
4352 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004353 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 }
4355
4356 item[curitem].start = p;
4357 item[curitem].type = Normal;
4358 if (str != NULL && *str)
4359 {
4360 t = str;
4361 if (itemisflag)
4362 {
4363 if ((t[0] && t[1])
4364 && ((!prevchar_isitem && *t == ',')
4365 || (prevchar_isflag && *t == ' ')))
4366 t++;
4367 prevchar_isflag = TRUE;
4368 }
4369 l = vim_strsize(t);
4370 if (l > 0)
4371 prevchar_isitem = TRUE;
4372 if (l > maxwid)
4373 {
4374 while (l >= maxwid)
4375#ifdef FEAT_MBYTE
4376 if (has_mbyte)
4377 {
4378 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004379 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 }
4381 else
4382#endif
4383 l -= byte2cells(*t++);
4384 if (p + 1 >= out + outlen)
4385 break;
4386 *p++ = '<';
4387 }
4388 if (minwid > 0)
4389 {
4390 for (; l < minwid && p + 1 < out + outlen; l++)
4391 {
4392 /* Don't put a "-" in front of a digit. */
4393 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4394 *p++ = ' ';
4395 else
4396 *p++ = fillchar;
4397 }
4398 minwid = 0;
4399 }
4400 else
4401 minwid *= -1;
4402 while (*t && p + 1 < out + outlen)
4403 {
4404 *p++ = *t++;
4405 /* Change a space by fillchar, unless fillchar is '-' and a
4406 * digit follows. */
4407 if (fillable && p[-1] == ' '
4408 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4409 p[-1] = fillchar;
4410 }
4411 for (; l < minwid && p + 1 < out + outlen; l++)
4412 *p++ = fillchar;
4413 }
4414 else if (num >= 0)
4415 {
4416 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4417 char_u nstr[20];
4418
4419 if (p + 20 >= out + outlen)
4420 break; /* not sufficient space */
4421 prevchar_isitem = TRUE;
4422 t = nstr;
4423 if (opt == STL_VIRTCOL_ALT)
4424 {
4425 *t++ = '-';
4426 minwid--;
4427 }
4428 *t++ = '%';
4429 if (zeropad)
4430 *t++ = '0';
4431 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004432 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 *t = 0;
4434
4435 for (n = num, l = 1; n >= nbase; n /= nbase)
4436 l++;
4437 if (opt == STL_VIRTCOL_ALT)
4438 l++;
4439 if (l > maxwid)
4440 {
4441 l += 2;
4442 n = l - maxwid;
4443 while (l-- > maxwid)
4444 num /= nbase;
4445 *t++ = '>';
4446 *t++ = '%';
4447 *t = t[-3];
4448 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004449 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4450 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 }
4452 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004453 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4454 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 p += STRLEN(p);
4456 }
4457 else
4458 item[curitem].type = Empty;
4459
4460 if (opt == STL_VIM_EXPR)
4461 vim_free(str);
4462
4463 if (num >= 0 || (!itemisflag && str && *str))
4464 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4465 curitem++;
4466 }
4467 *p = NUL;
4468 itemcnt = curitem;
4469
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004470#ifdef FEAT_EVAL
4471 if (usefmt != fmt)
4472 vim_free(usefmt);
4473#endif
4474
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 width = vim_strsize(out);
4476 if (maxwidth > 0 && width > maxwidth)
4477 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004478 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 l = 0;
4480 if (itemcnt == 0)
4481 s = out;
4482 else
4483 {
4484 for ( ; l < itemcnt; l++)
4485 if (item[l].type == Trunc)
4486 {
4487 /* Truncate at %< item. */
4488 s = item[l].start;
4489 break;
4490 }
4491 if (l == itemcnt)
4492 {
4493 /* No %< item, truncate first item. */
4494 s = item[0].start;
4495 l = 0;
4496 }
4497 }
4498
4499 if (width - vim_strsize(s) >= maxwidth)
4500 {
4501 /* Truncation mark is beyond max length */
4502#ifdef FEAT_MBYTE
4503 if (has_mbyte)
4504 {
4505 s = out;
4506 width = 0;
4507 for (;;)
4508 {
4509 width += ptr2cells(s);
4510 if (width >= maxwidth)
4511 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004512 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 }
4514 /* Fill up for half a double-wide character. */
4515 while (++width < maxwidth)
4516 *s++ = fillchar;
4517 }
4518 else
4519#endif
4520 s = out + maxwidth - 1;
4521 for (l = 0; l < itemcnt; l++)
4522 if (item[l].start > s)
4523 break;
4524 itemcnt = l;
4525 *s++ = '>';
4526 *s = 0;
4527 }
4528 else
4529 {
4530#ifdef FEAT_MBYTE
4531 if (has_mbyte)
4532 {
4533 n = 0;
4534 while (width >= maxwidth)
4535 {
4536 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004537 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 }
4539 }
4540 else
4541#endif
4542 n = width - maxwidth + 1;
4543 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004544 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 *s = '<';
4546
4547 /* Fill up for half a double-wide character. */
4548 while (++width < maxwidth)
4549 {
4550 s = s + STRLEN(s);
4551 *s++ = fillchar;
4552 *s = NUL;
4553 }
4554
4555 --n; /* count the '<' */
4556 for (; l < itemcnt; l++)
4557 {
4558 if (item[l].start - n >= s)
4559 item[l].start -= n;
4560 else
4561 item[l].start = s;
4562 }
4563 }
4564 width = maxwidth;
4565 }
4566 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4567 {
4568 /* Apply STL_MIDDLE if any */
4569 for (l = 0; l < itemcnt; l++)
4570 if (item[l].type == Middle)
4571 break;
4572 if (l < itemcnt)
4573 {
4574 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004575 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 for (s = item[l].start; s < p; s++)
4577 *s = fillchar;
4578 for (l++; l < itemcnt; l++)
4579 item[l].start += maxwidth - width;
4580 width = maxwidth;
4581 }
4582 }
4583
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004584 /* Store the info about highlighting. */
4585 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004587 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 for (l = 0; l < itemcnt; l++)
4589 {
4590 if (item[l].type == Highlight)
4591 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004592 sp->start = item[l].start;
4593 sp->userhl = item[l].minwid;
4594 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 }
4596 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004597 sp->start = NULL;
4598 sp->userhl = 0;
4599 }
4600
4601 /* Store the info about tab pages labels. */
4602 if (tabtab != NULL)
4603 {
4604 sp = tabtab;
4605 for (l = 0; l < itemcnt; l++)
4606 {
4607 if (item[l].type == TabPage)
4608 {
4609 sp->start = item[l].start;
4610 sp->userhl = item[l].minwid;
4611 sp++;
4612 }
4613 }
4614 sp->start = NULL;
4615 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 }
4617
4618 return width;
4619}
4620#endif /* FEAT_STL_OPT */
4621
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004622#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4623 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004625 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4626 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 */
4628 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004629get_rel_pos(
4630 win_T *wp,
4631 char_u *buf,
4632 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633{
4634 long above; /* number of lines above window */
4635 long below; /* number of lines below window */
4636
Bram Moolenaar0027c212015-01-07 13:31:52 +01004637 if (buflen < 3) /* need at least 3 chars for writing */
4638 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639 above = wp->w_topline - 1;
4640#ifdef FEAT_DIFF
4641 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004642 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4643 above = 0; /* All buffer lines are displayed and there is an
4644 * indication of filler lines, that can be considered
4645 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646#endif
4647 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4648 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004649 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4650 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004652 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004654 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 ? (int)(above / ((above + below) / 100L))
4656 : (int)(above * 100L / (above + below)));
4657}
4658#endif
4659
4660/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004661 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 * Return TRUE if it was appended.
4663 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004664 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004665append_arg_number(
4666 win_T *wp,
4667 char_u *buf,
4668 int buflen,
4669 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670{
4671 char_u *p;
4672
4673 if (ARGCOUNT <= 1) /* nothing to do */
4674 return FALSE;
4675
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004676 p = buf + STRLEN(buf); /* go to the end of the buffer */
4677 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 return FALSE;
4679 *p++ = ' ';
4680 *p++ = '(';
4681 if (add_file)
4682 {
4683 STRCPY(p, "file ");
4684 p += 5;
4685 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004686 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4687 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4689 return TRUE;
4690}
4691
4692/*
4693 * If fname is not a full path, make it a full path.
4694 * Returns pointer to allocated memory (NULL for failure).
4695 */
4696 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004697fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698{
4699 /*
4700 * Force expanding the path always for Unix, because symbolic links may
4701 * mess up the full path name, even though it starts with a '/'.
4702 * Also expand when there is ".." in the file name, try to remove it,
4703 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004704 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 * For MS-Windows also expand names like "longna~1" to "longname".
4706 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004707#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 return FullName_save(fname, TRUE);
4709#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004710 if (!vim_isAbsName(fname)
4711 || strstr((char *)fname, "..") != NULL
4712 || strstr((char *)fname, "//") != NULL
4713# ifdef BACKSLASH_IN_FILENAME
4714 || strstr((char *)fname, "\\\\") != NULL
4715# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004716# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004718# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 )
4720 return FullName_save(fname, FALSE);
4721
4722 fname = vim_strsave(fname);
4723
Bram Moolenaar9b942202007-10-03 12:31:33 +00004724# ifdef USE_FNAME_CASE
4725# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004727# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 {
4729 if (fname != NULL)
4730 fname_case(fname, 0); /* set correct case for file name */
4731 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004732# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733
4734 return fname;
4735#endif
4736}
4737
4738/*
4739 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4740 * "ffname" becomes a pointer to allocated memory (or NULL).
4741 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004743fname_expand(
4744 buf_T *buf UNUSED,
4745 char_u **ffname,
4746 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747{
4748 if (*ffname == NULL) /* if no file name given, nothing to do */
4749 return;
4750 if (*sfname == NULL) /* if no short file name given, use ffname */
4751 *sfname = *ffname;
4752 *ffname = fix_fname(*ffname); /* expand to full path */
4753
4754#ifdef FEAT_SHORTCUT
4755 if (!buf->b_p_bin)
4756 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004757 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758
4759 /* If the file name is a shortcut file, use the file it links to. */
4760 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004761 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 {
4763 vim_free(*ffname);
4764 *ffname = rfname;
4765 *sfname = rfname;
4766 }
4767 }
4768#endif
4769}
4770
4771/*
4772 * Get the file name for an argument list entry.
4773 */
4774 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004775alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776{
4777 buf_T *bp;
4778
4779 /* Use the name from the associated buffer if it exists. */
4780 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004781 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 return aep->ae_fname;
4783 return bp->b_fname;
4784}
4785
4786#if defined(FEAT_WINDOWS) || defined(PROTO)
4787/*
4788 * do_arg_all(): Open up to 'count' windows, one for each argument.
4789 */
4790 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004791do_arg_all(
4792 int count,
4793 int forceit, /* hide buffers in current windows */
4794 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795{
4796 int i;
4797 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004798 char_u *opened; /* Array of weight for which args are open:
4799 * 0: not opened
4800 * 1: opened in other tab
4801 * 2: opened in curtab
4802 * 3: opened in curtab and curwin
4803 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004804 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 int use_firstwin = FALSE; /* use first window for arglist */
4806 int split_ret = OK;
4807 int p_ea_save;
4808 alist_T *alist; /* argument list to be used */
4809 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004810 tabpage_T *tpnext;
4811 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004812 win_T *old_curwin, *last_curwin;
4813 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004814 win_T *new_curwin = NULL;
4815 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816
4817 if (ARGCOUNT <= 0)
4818 {
4819 /* Don't give an error message. We don't want it when the ":all"
4820 * command is in the .vimrc. */
4821 return;
4822 }
4823 setpcmark();
4824
4825 opened_len = ARGCOUNT;
4826 opened = alloc_clear((unsigned)opened_len);
4827 if (opened == NULL)
4828 return;
4829
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004830 /* Autocommands may do anything to the argument list. Make sure it's not
4831 * freed while we are working here by "locking" it. We still have to
4832 * watch out for its size to be changed. */
4833 alist = curwin->w_alist;
4834 ++alist->al_refcount;
4835
4836 old_curwin = curwin;
4837 old_curtab = curtab;
4838
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004839# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004841# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842
4843 /*
4844 * Try closing all windows that are not in the argument list.
4845 * Also close windows that are not full width;
4846 * When 'hidden' or "forceit" set the buffer becomes hidden.
4847 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004848 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004850 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004851 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004852 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004854 tpnext = curtab->tp_next;
4855 for (wp = firstwin; wp != NULL; wp = wpnext)
4856 {
4857 wpnext = wp->w_next;
4858 buf = wp->w_buffer;
4859 if (buf->b_ffname == NULL
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004860 || (!keep_tabs && buf->b_nwindows > 1)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004861 || wp->w_width != Columns)
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004862 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004863 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004865 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004866 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004868 if (i < alist->al_ga.ga_len
4869 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4870 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4871 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004873 int weight = 1;
4874
4875 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004876 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004877 ++weight;
4878 if (old_curwin == wp)
4879 ++weight;
4880 }
4881
4882 if (weight > (int)opened[i])
4883 {
4884 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004885 if (i == 0)
4886 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004887 if (new_curwin != NULL)
4888 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004889 new_curwin = wp;
4890 new_curtab = curtab;
4891 }
4892 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004893 else if (keep_tabs)
4894 i = opened_len;
4895
4896 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004897 {
4898 /* Use the current argument list for all windows
4899 * containing a file from it. */
4900 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004901 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004902 ++wp->w_alist->al_refcount;
4903 }
4904 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 }
4907 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004908 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004910 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004912 if (P_HID(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004913 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004915 /* If the buffer was changed, and we would like to hide it,
4916 * try autowriting. */
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004917 if (!P_HID(buf) && buf->b_nwindows <= 1
4918 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004920#ifdef FEAT_AUTOCMD
4921 bufref_T bufref;
4922
4923 set_bufref(&bufref, buf);
4924#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004925 (void)autowrite(buf, FALSE);
4926#ifdef FEAT_AUTOCMD
4927 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004928 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004929 {
4930 wpnext = firstwin; /* start all over... */
4931 continue;
4932 }
4933#endif
4934 }
4935#ifdef FEAT_WINDOWS
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004936 /* don't close last window */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004937 if (firstwin == lastwin
4938 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004939#endif
4940 use_firstwin = TRUE;
4941#ifdef FEAT_WINDOWS
4942 else
4943 {
4944 win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4945# ifdef FEAT_AUTOCMD
4946 /* check if autocommands removed the next window */
4947 if (!win_valid(wpnext))
4948 wpnext = firstwin; /* start all over... */
4949# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 }
4951#endif
4952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 }
4954 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004955
4956 /* Without the ":tab" modifier only do the current tab page. */
4957 if (had_tab == 0 || tpnext == NULL)
4958 break;
4959
4960# ifdef FEAT_AUTOCMD
4961 /* check if autocommands removed the next tab page */
4962 if (!valid_tabpage(tpnext))
4963 tpnext = first_tabpage; /* start all over...*/
4964# endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004965 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 }
4967
4968 /*
4969 * Open a window for files in the argument list that don't have one.
4970 * ARGCOUNT may change while doing this, because of autocommands.
4971 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004972 if (count > opened_len || count <= 0)
4973 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974
4975#ifdef FEAT_AUTOCMD
4976 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4977 ++autocmd_no_enter;
4978 ++autocmd_no_leave;
4979#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004980 last_curwin = curwin;
4981 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004983#ifdef FEAT_WINDOWS
4984 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
4985 * leaving an empty tab page when executed locally. */
4986 if (keep_tabs && bufempty() && curbuf->b_nwindows == 1
4987 && curbuf->b_ffname == NULL && !curbuf->b_changed)
4988 use_firstwin = TRUE;
4989#endif
4990
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004991 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 {
4993 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4994 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004995 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 {
4997 /* Move the already present window to below the current window */
4998 if (curwin->w_arg_idx != i)
4999 {
5000 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5001 {
5002 if (wpnext->w_arg_idx == i)
5003 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005004 if (keep_tabs)
5005 {
5006 new_curwin = wpnext;
5007 new_curtab = curtab;
5008 }
5009 else
5010 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 break;
5012 }
5013 }
5014 }
5015 }
5016 else if (split_ret == OK)
5017 {
5018 if (!use_firstwin) /* split current window */
5019 {
5020 p_ea_save = p_ea;
5021 p_ea = TRUE; /* use space from all windows */
5022 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5023 p_ea = p_ea_save;
5024 if (split_ret == FAIL)
5025 continue;
5026 }
5027#ifdef FEAT_AUTOCMD
5028 else /* first window: do autocmd for leaving this buffer */
5029 --autocmd_no_leave;
5030#endif
5031
5032 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005033 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 */
5035 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005036 if (i == 0)
5037 {
5038 new_curwin = curwin;
5039 new_curtab = curtab;
5040 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5042 ECMD_ONE,
5043 ((P_HID(curwin->w_buffer)
5044 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005045 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046#ifdef FEAT_AUTOCMD
5047 if (use_firstwin)
5048 ++autocmd_no_leave;
5049#endif
5050 use_firstwin = FALSE;
5051 }
5052 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005053
5054 /* When ":tab" was used open a new tab for a new window repeatedly. */
5055 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5056 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 }
5058
5059 /* Remove the "lock" on the argument list. */
5060 alist_unlink(alist);
5061
5062#ifdef FEAT_AUTOCMD
5063 --autocmd_no_enter;
5064#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005065 /* restore last referenced tabpage's curwin */
5066 if (last_curtab != new_curtab)
5067 {
5068 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005069 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005070 if (win_valid(last_curwin))
5071 win_enter(last_curwin, FALSE);
5072 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005073 /* to window with first arg */
5074 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005075 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005076 if (win_valid(new_curwin))
5077 win_enter(new_curwin, FALSE);
5078
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079#ifdef FEAT_AUTOCMD
5080 --autocmd_no_leave;
5081#endif
5082 vim_free(opened);
5083}
5084
5085# if defined(FEAT_LISTCMDS) || defined(PROTO)
5086/*
5087 * Open a window for a number of buffers.
5088 */
5089 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005090ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091{
5092 buf_T *buf;
5093 win_T *wp, *wpnext;
5094 int split_ret = OK;
5095 int p_ea_save;
5096 int open_wins = 0;
5097 int r;
5098 int count; /* Maximum number of windows to open. */
5099 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005100#ifdef FEAT_WINDOWS
5101 int had_tab = cmdmod.tab;
5102 tabpage_T *tpnext;
5103#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104
5105 if (eap->addr_count == 0) /* make as many windows as possible */
5106 count = 9999;
5107 else
5108 count = eap->line2; /* make as many windows as specified */
5109 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5110 all = FALSE;
5111 else
5112 all = TRUE;
5113
5114 setpcmark();
5115
5116#ifdef FEAT_GUI
5117 need_mouse_correct = TRUE;
5118#endif
5119
5120 /*
5121 * Close superfluous windows (two windows for the same buffer).
5122 * Also close windows that are not full-width.
5123 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005124#ifdef FEAT_WINDOWS
5125 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005126 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005127 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005130 tpnext = curtab->tp_next;
5131 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005133 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005134 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005135#ifdef FEAT_WINDOWS
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005136 || ((cmdmod.split & WSP_VERT)
5137 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005138 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005139 : wp->w_width != Columns)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005140 || (had_tab > 0 && wp != firstwin)
5141#endif
Bram Moolenaar362ce482012-06-06 19:02:45 +02005142 ) && firstwin != lastwin
5143#ifdef FEAT_AUTOCMD
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02005144 && !(wp->w_closing || wp->w_buffer->b_locked > 0)
Bram Moolenaar362ce482012-06-06 19:02:45 +02005145#endif
5146 )
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005147 {
5148 win_close(wp, FALSE);
5149#ifdef FEAT_AUTOCMD
5150 wpnext = firstwin; /* just in case an autocommand does
5151 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005152 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005153 open_wins = 0;
5154#endif
5155 }
5156 else
5157 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005159
5160#ifdef FEAT_WINDOWS
5161 /* Without the ":tab" modifier only do the current tab page. */
5162 if (had_tab == 0 || tpnext == NULL)
5163 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005164 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005166#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167
5168 /*
5169 * Go through the buffer list. When a buffer doesn't have a window yet,
5170 * open one. Otherwise move the window to the right position.
5171 * Watch out for autocommands that delete buffers or windows!
5172 */
5173#ifdef FEAT_AUTOCMD
5174 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5175 ++autocmd_no_enter;
5176#endif
5177 win_enter(lastwin, FALSE);
5178#ifdef FEAT_AUTOCMD
5179 ++autocmd_no_leave;
5180#endif
5181 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5182 {
5183 /* Check if this buffer needs a window */
5184 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5185 continue;
5186
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005187#ifdef FEAT_WINDOWS
5188 if (had_tab != 0)
5189 {
5190 /* With the ":tab" modifier don't move the window. */
5191 if (buf->b_nwindows > 0)
5192 wp = lastwin; /* buffer has a window, skip it */
5193 else
5194 wp = NULL;
5195 }
5196 else
5197#endif
5198 {
5199 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005200 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005201 if (wp->w_buffer == buf)
5202 break;
5203 /* If the buffer already has a window, move it */
5204 if (wp != NULL)
5205 win_move_after(wp, curwin);
5206 }
5207
5208 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005210#ifdef FEAT_AUTOCMD
5211 bufref_T bufref;
5212
5213 set_bufref(&bufref, buf);
5214#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 /* Split the window and put the buffer in it */
5216 p_ea_save = p_ea;
5217 p_ea = TRUE; /* use space from all windows */
5218 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5219 ++open_wins;
5220 p_ea = p_ea_save;
5221 if (split_ret == FAIL)
5222 continue;
5223
5224 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005225#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 swap_exists_action = SEA_DIALOG;
5227#endif
5228 set_curbuf(buf, DOBUF_GOTO);
5229#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005230 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005232 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005233#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005235# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 break;
5237 }
5238#endif
Bram Moolenaare64ac772005-12-07 20:54:59 +00005239#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 if (swap_exists_action == SEA_QUIT)
5241 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005242# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5243 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005244
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005245 /* Reset the error/interrupt/exception state here so that
5246 * aborting() returns FALSE when closing a window. */
5247 enter_cleanup(&cs);
5248# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005249
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005250 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 win_close(curwin, TRUE);
5252 --open_wins;
5253 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005254 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005255
5256# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5257 /* Restore the error/interrupt/exception state if not
5258 * discarded by a new aborting error, interrupt, or uncaught
5259 * exception. */
5260 leave_cleanup(&cs);
5261# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262 }
5263 else
5264 handle_swap_exists(NULL);
5265#endif
5266 }
5267
5268 ui_breakcheck();
5269 if (got_int)
5270 {
5271 (void)vgetc(); /* only break the file loading, not the rest */
5272 break;
5273 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005274#ifdef FEAT_EVAL
5275 /* Autocommands deleted the buffer or aborted script processing!!! */
5276 if (aborting())
5277 break;
5278#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005279#ifdef FEAT_WINDOWS
5280 /* When ":tab" was used open a new tab for a new window repeatedly. */
5281 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5282 cmdmod.tab = 9999;
5283#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 }
5285#ifdef FEAT_AUTOCMD
5286 --autocmd_no_enter;
5287#endif
5288 win_enter(firstwin, FALSE); /* back to first window */
5289#ifdef FEAT_AUTOCMD
5290 --autocmd_no_leave;
5291#endif
5292
5293 /*
5294 * Close superfluous windows.
5295 */
5296 for (wp = lastwin; open_wins > count; )
5297 {
5298 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
5299 || autowrite(wp->w_buffer, FALSE) == OK);
5300#ifdef FEAT_AUTOCMD
5301 if (!win_valid(wp))
5302 {
5303 /* BufWrite Autocommands made the window invalid, start over */
5304 wp = lastwin;
5305 }
5306 else
5307#endif
5308 if (r)
5309 {
5310 win_close(wp, !P_HID(wp->w_buffer));
5311 --open_wins;
5312 wp = lastwin;
5313 }
5314 else
5315 {
5316 wp = wp->w_prev;
5317 if (wp == NULL)
5318 break;
5319 }
5320 }
5321}
5322# endif /* FEAT_LISTCMDS */
5323
5324#endif /* FEAT_WINDOWS */
5325
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005326static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005327
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328/*
5329 * do_modelines() - process mode lines for the current file
5330 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005331 * "flags" can be:
5332 * OPT_WINONLY only set options local to window
5333 * OPT_NOWIN don't set options local to window
5334 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 * Returns immediately if the "ml" option isn't set.
5336 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005338do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005340 linenr_T lnum;
5341 int nmlines;
5342 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343
5344 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5345 return;
5346
5347 /* Disallow recursive entry here. Can happen when executing a modeline
5348 * triggers an autocommand, which reloads modelines with a ":do". */
5349 if (entered)
5350 return;
5351
5352 ++entered;
5353 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5354 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005355 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 nmlines = 0;
5357
5358 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5359 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005360 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 nmlines = 0;
5362 --entered;
5363}
5364
5365#include "version.h" /* for version number */
5366
5367/*
5368 * chk_modeline() - check a single line for a mode string
5369 * Return FAIL if an error encountered.
5370 */
5371 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005372chk_modeline(
5373 linenr_T lnum,
5374 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375{
5376 char_u *s;
5377 char_u *e;
5378 char_u *linecopy; /* local copy of any modeline found */
5379 int prev;
5380 int vers;
5381 int end;
5382 int retval = OK;
5383 char_u *save_sourcing_name;
5384 linenr_T save_sourcing_lnum;
5385#ifdef FEAT_EVAL
5386 scid_T save_SID;
5387#endif
5388
5389 prev = -1;
5390 for (s = ml_get(lnum); *s != NUL; ++s)
5391 {
5392 if (prev == -1 || vim_isspace(prev))
5393 {
5394 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5395 || STRNCMP(s, "vi:", (size_t)3) == 0)
5396 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005397 /* Accept both "vim" and "Vim". */
5398 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 {
5400 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5401 e = s + 4;
5402 else
5403 e = s + 3;
5404 vers = getdigits(&e);
5405 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005406 && (s[0] != 'V'
5407 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 && (s[3] == ':'
5409 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5410 || (VIM_VERSION_100 < vers && s[3] == '<')
5411 || (VIM_VERSION_100 > vers && s[3] == '>')
5412 || (VIM_VERSION_100 == vers && s[3] == '=')))
5413 break;
5414 }
5415 }
5416 prev = *s;
5417 }
5418
5419 if (*s)
5420 {
5421 do /* skip over "ex:", "vi:" or "vim:" */
5422 ++s;
5423 while (s[-1] != ':');
5424
5425 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5426 if (linecopy == NULL)
5427 return FAIL;
5428
5429 save_sourcing_lnum = sourcing_lnum;
5430 save_sourcing_name = sourcing_name;
5431 sourcing_lnum = lnum; /* prepare for emsg() */
5432 sourcing_name = (char_u *)"modelines";
5433
5434 end = FALSE;
5435 while (end == FALSE)
5436 {
5437 s = skipwhite(s);
5438 if (*s == NUL)
5439 break;
5440
5441 /*
5442 * Find end of set command: ':' or end of line.
5443 * Skip over "\:", replacing it with ":".
5444 */
5445 for (e = s; *e != ':' && *e != NUL; ++e)
5446 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005447 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 if (*e == NUL)
5449 end = TRUE;
5450
5451 /*
5452 * If there is a "set" command, require a terminating ':' and
5453 * ignore the stuff after the ':'.
5454 * "vi:set opt opt opt: foo" -- foo not interpreted
5455 * "vi:opt opt opt: foo" -- foo interpreted
5456 * Accept "se" for compatibility with Elvis.
5457 */
5458 if (STRNCMP(s, "set ", (size_t)4) == 0
5459 || STRNCMP(s, "se ", (size_t)3) == 0)
5460 {
5461 if (*e != ':') /* no terminating ':'? */
5462 break;
5463 end = TRUE;
5464 s = vim_strchr(s, ' ') + 1;
5465 }
5466 *e = NUL; /* truncate the set command */
5467
5468 if (*s != NUL) /* skip over an empty "::" */
5469 {
5470#ifdef FEAT_EVAL
5471 save_SID = current_SID;
5472 current_SID = SID_MODELINE;
5473#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005474 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475#ifdef FEAT_EVAL
5476 current_SID = save_SID;
5477#endif
5478 if (retval == FAIL) /* stop if error found */
5479 break;
5480 }
5481 s = e + 1; /* advance to next part */
5482 }
5483
5484 sourcing_lnum = save_sourcing_lnum;
5485 sourcing_name = save_sourcing_name;
5486
5487 vim_free(linecopy);
5488 }
5489 return retval;
5490}
5491
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005492#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005494read_viminfo_bufferlist(
5495 vir_T *virp,
5496 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497{
5498 char_u *tab;
5499 linenr_T lnum;
5500 colnr_T col;
5501 buf_T *buf;
5502 char_u *sfname;
5503 char_u *xline;
5504
5505 /* Handle long line and escaped characters. */
5506 xline = viminfo_readstring(virp, 1, FALSE);
5507
5508 /* don't read in if there are files on the command-line or if writing: */
5509 if (xline != NULL && !writing && ARGCOUNT == 0
5510 && find_viminfo_parameter('%') != NULL)
5511 {
5512 /* Format is: <fname> Tab <lnum> Tab <col>.
5513 * Watch out for a Tab in the file name, work from the end. */
5514 lnum = 0;
5515 col = 0;
5516 tab = vim_strrchr(xline, '\t');
5517 if (tab != NULL)
5518 {
5519 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005520 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 tab = vim_strrchr(xline, '\t');
5522 if (tab != NULL)
5523 {
5524 *tab++ = '\0';
5525 lnum = atol((char *)tab);
5526 }
5527 }
5528
5529 /* Expand "~/" in the file name at "line + 1" to a full path.
5530 * Then try shortening it by comparing with the current directory */
5531 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005532 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533
5534 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5535 if (buf != NULL) /* just in case... */
5536 {
5537 buf->b_last_cursor.lnum = lnum;
5538 buf->b_last_cursor.col = col;
5539 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5540 }
5541 }
5542 vim_free(xline);
5543
5544 return viminfo_readline(virp);
5545}
5546
5547 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005548write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549{
5550 buf_T *buf;
5551#ifdef FEAT_WINDOWS
5552 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005553 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554#endif
5555 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005556 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557
5558 if (find_viminfo_parameter('%') == NULL)
5559 return;
5560
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005561 /* Without a number -1 is returned: do all buffers. */
5562 max_buffers = get_viminfo_parameter('%');
5563
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005565#define LINE_BUF_LEN (MAXPATHL + 40)
5566 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 if (line == NULL)
5568 return;
5569
5570#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00005571 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 set_last_cursor(win);
5573#else
5574 set_last_cursor(curwin);
5575#endif
5576
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005577 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005578 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579 {
5580 if (buf->b_fname == NULL
5581 || !buf->b_p_bl
5582#ifdef FEAT_QUICKFIX
5583 || bt_quickfix(buf)
5584#endif
5585 || removable(buf->b_ffname))
5586 continue;
5587
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005588 if (max_buffers-- == 0)
5589 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 putc('%', fp);
5591 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005592 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 (long)buf->b_last_cursor.lnum,
5594 buf->b_last_cursor.col);
5595 viminfo_writestring(fp, line);
5596 }
5597 vim_free(line);
5598}
5599#endif
5600
5601
5602/*
5603 * Return special buffer name.
5604 * Returns NULL when the buffer has a normal file name.
5605 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005606 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005607buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608{
5609#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
5610 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005611 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005612 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005613 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005614
5615 /*
5616 * For location list window, w_llist_ref points to the location list.
5617 * For quickfix window, w_llist_ref is NULL.
5618 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005619 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005620 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005621 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005622 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005623 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624#endif
5625#ifdef FEAT_QUICKFIX
5626 /* There is no _file_ when 'buftype' is "nofile", b_sfname
5627 * contains the name as specified by the user */
5628 if (bt_nofile(buf))
5629 {
5630 if (buf->b_sfname != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005631 return buf->b_sfname;
5632 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 }
5634#endif
5635 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005636 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637 return NULL;
5638}
5639
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005640#if (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
5641 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5642 || defined(PROTO)
5643/*
5644 * Find a window for buffer "buf".
5645 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5646 * If not found FAIL is returned.
5647 */
5648 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005649find_win_for_buf(
5650 buf_T *buf,
5651 win_T **wp,
5652 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005653{
5654 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5655 if ((*wp)->w_buffer == buf)
5656 goto win_found;
5657 return FAIL;
5658win_found:
5659 return OK;
5660}
5661#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662
5663#if defined(FEAT_SIGNS) || defined(PROTO)
5664/*
5665 * Insert the sign into the signlist.
5666 */
5667 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005668insert_sign(
5669 buf_T *buf, /* buffer to store sign in */
5670 signlist_T *prev, /* previous sign entry */
5671 signlist_T *next, /* next sign entry */
5672 int id, /* sign ID */
5673 linenr_T lnum, /* line number which gets the mark */
5674 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675{
5676 signlist_T *newsign;
5677
5678 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5679 if (newsign != NULL)
5680 {
5681 newsign->id = id;
5682 newsign->lnum = lnum;
5683 newsign->typenr = typenr;
5684 newsign->next = next;
5685#ifdef FEAT_NETBEANS_INTG
5686 newsign->prev = prev;
5687 if (next != NULL)
5688 next->prev = newsign;
5689#endif
5690
5691 if (prev == NULL)
5692 {
5693 /* When adding first sign need to redraw the windows to create the
5694 * column for signs. */
5695 if (buf->b_signlist == NULL)
5696 {
5697 redraw_buf_later(buf, NOT_VALID);
5698 changed_cline_bef_curs();
5699 }
5700
5701 /* first sign in signlist */
5702 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005703#ifdef FEAT_NETBEANS_INTG
5704 if (netbeans_active())
5705 buf->b_has_sign_column = TRUE;
5706#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 }
5708 else
5709 prev->next = newsign;
5710 }
5711}
5712
5713/*
5714 * Add the sign into the signlist. Find the right spot to do it though.
5715 */
5716 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005717buf_addsign(
5718 buf_T *buf, /* buffer to store sign in */
5719 int id, /* sign ID */
5720 linenr_T lnum, /* line number which gets the mark */
5721 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722{
5723 signlist_T *sign; /* a sign in the signlist */
5724 signlist_T *prev; /* the previous sign */
5725
5726 prev = NULL;
5727 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5728 {
5729 if (lnum == sign->lnum && id == sign->id)
5730 {
5731 sign->typenr = typenr;
5732 return;
5733 }
5734 else if (
5735#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5736 id < 0 &&
5737#endif
5738 lnum < sign->lnum)
5739 {
5740#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5741 /* XXX - GRP: Is this because of sign slide problem? Or is it
5742 * really needed? Or is it because we allow multiple signs per
5743 * line? If so, should I add that feature to FEAT_SIGNS?
5744 */
5745 while (prev != NULL && prev->lnum == lnum)
5746 prev = prev->prev;
5747 if (prev == NULL)
5748 sign = buf->b_signlist;
5749 else
5750 sign = prev->next;
5751#endif
5752 insert_sign(buf, prev, sign, id, lnum, typenr);
5753 return;
5754 }
5755 prev = sign;
5756 }
5757#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5758 /* XXX - GRP: See previous comment */
5759 while (prev != NULL && prev->lnum == lnum)
5760 prev = prev->prev;
5761 if (prev == NULL)
5762 sign = buf->b_signlist;
5763 else
5764 sign = prev->next;
5765#endif
5766 insert_sign(buf, prev, sign, id, lnum, typenr);
5767
5768 return;
5769}
5770
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005771/*
5772 * For an existing, placed sign "markId" change the type to "typenr".
5773 * Returns the line number of the sign, or zero if the sign is not found.
5774 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005775 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005776buf_change_sign_type(
5777 buf_T *buf, /* buffer to store sign in */
5778 int markId, /* sign ID */
5779 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780{
5781 signlist_T *sign; /* a sign in the signlist */
5782
5783 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5784 {
5785 if (sign->id == markId)
5786 {
5787 sign->typenr = typenr;
5788 return sign->lnum;
5789 }
5790 }
5791
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005792 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793}
5794
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005795 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005796buf_getsigntype(
5797 buf_T *buf,
5798 linenr_T lnum,
5799 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005800{
5801 signlist_T *sign; /* a sign in a b_signlist */
5802
5803 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5804 if (sign->lnum == lnum
5805 && (type == SIGN_ANY
5806# ifdef FEAT_SIGN_ICONS
5807 || (type == SIGN_ICON
5808 && sign_get_image(sign->typenr) != NULL)
5809# endif
5810 || (type == SIGN_TEXT
5811 && sign_get_text(sign->typenr) != NULL)
5812 || (type == SIGN_LINEHL
5813 && sign_get_attr(sign->typenr, TRUE) != 0)))
5814 return sign->typenr;
5815 return 0;
5816}
5817
5818
5819 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005820buf_delsign(
5821 buf_T *buf, /* buffer sign is stored in */
5822 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823{
5824 signlist_T **lastp; /* pointer to pointer to current sign */
5825 signlist_T *sign; /* a sign in a b_signlist */
5826 signlist_T *next; /* the next sign in a b_signlist */
5827 linenr_T lnum; /* line number whose sign was deleted */
5828
5829 lastp = &buf->b_signlist;
5830 lnum = 0;
5831 for (sign = buf->b_signlist; sign != NULL; sign = next)
5832 {
5833 next = sign->next;
5834 if (sign->id == id)
5835 {
5836 *lastp = next;
5837#ifdef FEAT_NETBEANS_INTG
5838 if (next != NULL)
5839 next->prev = sign->prev;
5840#endif
5841 lnum = sign->lnum;
5842 vim_free(sign);
5843 break;
5844 }
5845 else
5846 lastp = &sign->next;
5847 }
5848
5849 /* When deleted the last sign need to redraw the windows to remove the
5850 * sign column. */
5851 if (buf->b_signlist == NULL)
5852 {
5853 redraw_buf_later(buf, NOT_VALID);
5854 changed_cline_bef_curs();
5855 }
5856
5857 return lnum;
5858}
5859
5860
5861/*
5862 * Find the line number of the sign with the requested id. If the sign does
5863 * not exist, return 0 as the line number. This will still let the correct file
5864 * get loaded.
5865 */
5866 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005867buf_findsign(
5868 buf_T *buf, /* buffer to store sign in */
5869 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870{
5871 signlist_T *sign; /* a sign in the signlist */
5872
5873 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5874 if (sign->id == id)
5875 return sign->lnum;
5876
5877 return 0;
5878}
5879
5880 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005881buf_findsign_id(
5882 buf_T *buf, /* buffer whose sign we are searching for */
5883 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884{
5885 signlist_T *sign; /* a sign in the signlist */
5886
5887 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5888 if (sign->lnum == lnum)
5889 return sign->id;
5890
5891 return 0;
5892}
5893
5894
5895# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5896/* see if a given type of sign exists on a specific line */
5897 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005898buf_findsigntype_id(
5899 buf_T *buf, /* buffer whose sign we are searching for */
5900 linenr_T lnum, /* line number of sign */
5901 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902{
5903 signlist_T *sign; /* a sign in the signlist */
5904
5905 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5906 if (sign->lnum == lnum && sign->typenr == typenr)
5907 return sign->id;
5908
5909 return 0;
5910}
5911
5912
5913# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5914/* return the number of icons on the given line */
5915 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005916buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917{
5918 signlist_T *sign; /* a sign in the signlist */
5919 int count = 0;
5920
5921 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5922 if (sign->lnum == lnum)
5923 if (sign_get_image(sign->typenr) != NULL)
5924 count++;
5925
5926 return count;
5927}
5928# endif /* FEAT_SIGN_ICONS */
5929# endif /* FEAT_NETBEANS_INTG */
5930
5931
5932/*
5933 * Delete signs in buffer "buf".
5934 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02005935 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005936buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937{
5938 signlist_T *next;
5939
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005940 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02005941 * sign column. Not when curwin is NULL (this means we're exiting). */
5942 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005943 {
5944 redraw_buf_later(buf, NOT_VALID);
5945 changed_cline_bef_curs();
5946 }
5947
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 while (buf->b_signlist != NULL)
5949 {
5950 next = buf->b_signlist->next;
5951 vim_free(buf->b_signlist);
5952 buf->b_signlist = next;
5953 }
5954}
5955
5956/*
5957 * Delete all signs in all buffers.
5958 */
5959 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005960buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961{
5962 buf_T *buf; /* buffer we are checking for signs */
5963
Bram Moolenaar29323592016-07-24 22:04:11 +02005964 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967}
5968
5969/*
5970 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
5971 */
5972 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005973sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974{
5975 buf_T *buf;
5976 signlist_T *p;
5977 char lbuf[BUFSIZ];
5978
5979 MSG_PUTS_TITLE(_("\n--- Signs ---"));
5980 msg_putchar('\n');
5981 if (rbuf == NULL)
5982 buf = firstbuf;
5983 else
5984 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005985 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 {
5987 if (buf->b_signlist != NULL)
5988 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005989 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
5991 msg_putchar('\n');
5992 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005993 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005995 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
5997 MSG_PUTS(lbuf);
5998 msg_putchar('\n');
5999 }
6000 if (rbuf != NULL)
6001 break;
6002 buf = buf->b_next;
6003 }
6004}
6005
6006/*
6007 * Adjust a placed sign for inserted/deleted lines.
6008 */
6009 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006010sign_mark_adjust(
6011 linenr_T line1,
6012 linenr_T line2,
6013 long amount,
6014 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015{
6016 signlist_T *sign; /* a sign in a b_signlist */
6017
6018 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6019 {
6020 if (sign->lnum >= line1 && sign->lnum <= line2)
6021 {
6022 if (amount == MAXLNUM)
6023 sign->lnum = line1;
6024 else
6025 sign->lnum += amount;
6026 }
6027 else if (sign->lnum > line2)
6028 sign->lnum += amount_after;
6029 }
6030}
6031#endif /* FEAT_SIGNS */
6032
6033/*
6034 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6035 */
6036 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006037set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038{
6039 if (on != curbuf->b_p_bl)
6040 {
6041 curbuf->b_p_bl = on;
6042#ifdef FEAT_AUTOCMD
6043 if (on)
6044 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6045 else
6046 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
6047#endif
6048 }
6049}
6050
6051/*
6052 * Read the file for "buf" again and check if the contents changed.
6053 * Return TRUE if it changed or this could not be checked.
6054 */
6055 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006056buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057{
6058 buf_T *newbuf;
6059 int differ = TRUE;
6060 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 exarg_T ea;
6063
6064 /* Allocate a buffer without putting it in the buffer list. */
6065 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6066 if (newbuf == NULL)
6067 return TRUE;
6068
6069 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6070 if (prep_exarg(&ea, buf) == FAIL)
6071 {
6072 wipe_buffer(newbuf, FALSE);
6073 return TRUE;
6074 }
6075
Bram Moolenaar071d4272004-06-13 20:20:40 +00006076 /* set curwin/curbuf to buf and save a few things */
6077 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006078
Bram Moolenaar4770d092006-01-12 23:22:24 +00006079 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080 && readfile(buf->b_ffname, buf->b_fname,
6081 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6082 &ea, READ_NEW | READ_DUMMY) == OK)
6083 {
6084 /* compare the two files line by line */
6085 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6086 {
6087 differ = FALSE;
6088 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6089 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6090 {
6091 differ = TRUE;
6092 break;
6093 }
6094 }
6095 }
6096 vim_free(ea.cmd);
6097
Bram Moolenaar071d4272004-06-13 20:20:40 +00006098 /* restore curwin/curbuf and a few other things */
6099 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100
6101 if (curbuf != newbuf) /* safety check */
6102 wipe_buffer(newbuf, FALSE);
6103
6104 return differ;
6105}
6106
6107/*
6108 * Wipe out a buffer and decrement the last buffer number if it was used for
6109 * this buffer. Call this to wipe out a temp buffer that does not contain any
6110 * marks.
6111 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006113wipe_buffer(
6114 buf_T *buf,
6115 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116{
6117 if (buf->b_fnum == top_file_num - 1)
6118 --top_file_num;
6119
6120#ifdef FEAT_AUTOCMD
6121 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006122 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006124 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125#ifdef FEAT_AUTOCMD
6126 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006127 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128#endif
6129}