blob: 184f09f354b7fa4e68dc66dbdd145bf6884e1e7e [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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 Moolenaar071d4272004-06-13 20:20:40 +0000453#endif
454 int unload_buf = (action != 0);
455 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
456 int wipe_buf = (action == DOBUF_WIPE);
457
458#ifdef FEAT_QUICKFIX
459 /*
460 * Force unloading or deleting when 'bufhidden' says so.
461 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
462 * "hide" (otherwise we could never free or delete a buffer).
463 */
464 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
465 {
466 del_buf = TRUE;
467 unload_buf = TRUE;
468 }
469 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
470 {
471 del_buf = TRUE;
472 unload_buf = TRUE;
473 wipe_buf = TRUE;
474 }
475 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
476 unload_buf = TRUE;
477#endif
478
Bram Moolenaar3be85852014-06-12 14:01:31 +0200479 if (win != NULL
480#ifdef FEAT_WINDOWS
Bram Moolenaare59215c2016-08-14 19:08:45 +0200481 && win_valid_any_tab(win) /* in case autocommands closed the window */
Bram Moolenaar3be85852014-06-12 14:01:31 +0200482#endif
483 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 {
485 /* Set b_last_cursor when closing the last window for the buffer.
486 * Remember the last cursor position and window options of the buffer.
487 * This used to be only for the current window, but then options like
488 * 'foldmethod' may be lost with a ":only" command. */
489 if (buf->b_nwindows == 1)
490 set_last_cursor(win);
491 buflist_setfpos(buf, win,
492 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
493 win->w_cursor.col, TRUE);
494 }
495
496#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200497 set_bufref(&bufref, buf);
498
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 /* When the buffer is no longer in a window, trigger BufWinLeave */
500 if (buf->b_nwindows == 1)
501 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200502 buf->b_closing = TRUE;
Bram Moolenaar82404332016-07-10 17:00:38 +0200503 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
504 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200505 && !bufref_valid(&bufref))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100506 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200507 /* Autocommands deleted the buffer. */
508aucmd_abort:
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100509 EMSG(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100511 }
Bram Moolenaar362ce482012-06-06 19:02:45 +0200512 buf->b_closing = FALSE;
513 if (abort_if_last && one_window())
514 /* Autocommands made this the only window. */
515 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516
517 /* When the buffer becomes hidden, but is not unloaded, trigger
518 * BufHidden */
519 if (!unload_buf)
520 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200521 buf->b_closing = TRUE;
Bram Moolenaar82404332016-07-10 17:00:38 +0200522 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
523 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200524 && !bufref_valid(&bufref))
Bram Moolenaar362ce482012-06-06 19:02:45 +0200525 /* Autocommands deleted the buffer. */
526 goto aucmd_abort;
527 buf->b_closing = FALSE;
528 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# ifdef FEAT_EVAL
533 if (aborting()) /* autocmds may abort script processing */
534 return;
535# endif
536 }
537 nwindows = buf->b_nwindows;
538#endif
539
540 /* decrease the link count from windows (unless not in any window) */
541 if (buf->b_nwindows > 0)
542 --buf->b_nwindows;
543
544 /* Return when a window is displaying the buffer or when it's not
545 * unloaded. */
546 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548
549 /* Always remove the buffer when there is no file name. */
550 if (buf->b_ffname == NULL)
551 del_buf = TRUE;
552
553 /*
554 * Free all things allocated for this buffer.
555 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
556 */
557#ifdef FEAT_AUTOCMD
558 /* Remember if we are closing the current buffer. Restore the number of
559 * windows, so that autocommands in buf_freeall() don't get confused. */
560 is_curbuf = (buf == curbuf);
561 buf->b_nwindows = nwindows;
562#endif
563
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200564 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565
566#ifdef FEAT_AUTOCMD
567 /* Autocommands may have deleted the buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200568 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 return;
570# ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000571 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 return;
573# endif
574
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 /*
576 * It's possible that autocommands change curbuf to the one being deleted.
577 * This might cause the previous curbuf to be deleted unexpectedly. But
578 * in some cases it's OK to delete the curbuf, because a new one is
579 * obtained anyway. Therefore only return if curbuf changed to the
580 * deleted buffer.
581 */
582 if (buf == curbuf && !is_curbuf)
583 return;
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200584
585 if (
586#ifdef FEAT_WINDOWS
Bram Moolenaare59215c2016-08-14 19:08:45 +0200587 win_valid_any_tab(win) &&
Bram Moolenaar30445cb2016-07-09 15:21:02 +0200588#else
589 win != NULL &&
590#endif
591 win->w_buffer == buf)
592 win->w_buffer = NULL; /* make sure we don't use the buffer now */
593
594 /* Autocommands may have opened or closed windows for this buffer.
595 * Decrement the count for the close we do here. */
596 if (buf->b_nwindows > 0)
597 --buf->b_nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598#endif
599
Bram Moolenaar498efdb2006-09-05 14:31:54 +0000600 /* Change directories when the 'acd' option is set. */
601 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602
603 /*
604 * Remove the buffer from the list.
605 */
606 if (wipe_buf)
607 {
608#ifdef FEAT_SUN_WORKSHOP
609 if (usingSunWorkShop)
610 workshop_file_closed_lineno((char *)buf->b_ffname,
611 (int)buf->b_last_cursor.lnum);
612#endif
613 vim_free(buf->b_ffname);
614 vim_free(buf->b_sfname);
615 if (buf->b_prev == NULL)
616 firstbuf = buf->b_next;
617 else
618 buf->b_prev->b_next = buf->b_next;
619 if (buf->b_next == NULL)
620 lastbuf = buf->b_prev;
621 else
622 buf->b_next->b_prev = buf->b_prev;
623 free_buffer(buf);
624 }
625 else
626 {
627 if (del_buf)
628 {
629 /* Free all internal variables and reset option values, to make
630 * ":bdel" compatible with Vim 5.7. */
631 free_buffer_stuff(buf, TRUE);
632
633 /* Make it look like a new buffer. */
634 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
635
636 /* Init the options when loaded again. */
637 buf->b_p_initialized = FALSE;
638 }
639 buf_clear_file(buf);
640 if (del_buf)
641 buf->b_p_bl = FALSE;
642 }
643}
644
645/*
646 * Make buffer not contain a file.
647 */
648 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100649buf_clear_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650{
651 buf->b_ml.ml_line_count = 1;
652 unchanged(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 buf->b_p_eol = TRUE;
655 buf->b_start_eol = TRUE;
656#ifdef FEAT_MBYTE
657 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000658 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659#endif
660 buf->b_ml.ml_mfp = NULL;
661 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
662#ifdef FEAT_NETBEANS_INTG
663 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664#endif
665}
666
667/*
668 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200669 * the file. flags:
670 * BFA_DEL buffer is going to be deleted
671 * BFA_WIPE buffer is going to be wiped out
672 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100675buf_freeall(buf_T *buf, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676{
677#ifdef FEAT_AUTOCMD
678 int is_curbuf = (buf == curbuf);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200679 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680
Bram Moolenaar362ce482012-06-06 19:02:45 +0200681 buf->b_closing = TRUE;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200682 set_bufref(&bufref, buf);
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200683 if (buf->b_ml.ml_mfp != NULL)
684 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200685 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
686 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200687 && !bufref_valid(&bufref))
688 /* autocommands deleted the buffer */
Bram Moolenaarc67e8922016-05-24 16:07:40 +0200689 return;
690 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200691 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200693 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
694 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200695 && !bufref_valid(&bufref))
696 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 return;
698 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200699 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 {
Bram Moolenaar82404332016-07-10 17:00:38 +0200701 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
702 FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200703 && !bufref_valid(&bufref))
704 /* autocommands deleted the buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 return;
706 }
Bram Moolenaar362ce482012-06-06 19:02:45 +0200707 buf->b_closing = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000709 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 return;
711# endif
712
713 /*
714 * It's possible that autocommands change curbuf to the one being deleted.
715 * This might cause curbuf to be deleted unexpectedly. But in some cases
716 * it's OK to delete the curbuf, because a new one is obtained anyway.
717 * Therefore only return if curbuf changed to the deleted buffer.
718 */
719 if (buf == curbuf && !is_curbuf)
720 return;
721#endif
722#ifdef FEAT_DIFF
723 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
724#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200725#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100726 /* Remove any ownsyntax, unless exiting. */
727 if (firstwin != NULL && curwin->w_buffer == buf)
728 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200729#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000730
731#ifdef FEAT_FOLDING
732 /* No folds in an empty buffer. */
733# ifdef FEAT_WINDOWS
734 {
735 win_T *win;
736 tabpage_T *tp;
737
738 FOR_ALL_TAB_WINDOWS(tp, win)
739 if (win->w_buffer == buf)
740 clearFolding(win);
741 }
742# else
743 if (curwin->w_buffer == buf)
744 clearFolding(curwin);
745# endif
746#endif
747
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748#ifdef FEAT_TCL
749 tcl_buffer_free(buf);
750#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 ml_close(buf, TRUE); /* close and delete the memline/memfile */
752 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200753 if ((flags & BFA_KEEP_UNDO) == 0)
754 {
755 u_blockfree(buf); /* free the memory allocated for undo */
756 u_clearall(buf); /* reset all undo information */
757 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200759 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000761 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762}
763
764/*
765 * Free a buffer structure and the things it contains related to the buffer
766 * itself (not the file, that must have been done already).
767 */
768 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100769free_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770{
Bram Moolenaarb25f9a92016-07-10 18:21:50 +0200771 ++buf_free_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200773#ifdef FEAT_EVAL
774 unref_var_dict(buf->b_vars);
775#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200776#ifdef FEAT_LUA
777 lua_buffer_free(buf);
778#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000779#ifdef FEAT_MZSCHEME
780 mzscheme_buffer_free(buf);
781#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782#ifdef FEAT_PERL
783 perl_buf_free(buf);
784#endif
785#ifdef FEAT_PYTHON
786 python_buffer_free(buf);
787#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200788#ifdef FEAT_PYTHON3
789 python3_buffer_free(buf);
790#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791#ifdef FEAT_RUBY
792 ruby_buffer_free(buf);
793#endif
Bram Moolenaare0f76d02016-05-09 20:38:53 +0200794#ifdef FEAT_JOB_CHANNEL
795 channel_buffer_free(buf);
796#endif
Bram Moolenaar480778b2016-07-14 22:09:39 +0200797
798 buf_hashtab_remove(buf);
799
Bram Moolenaar9280e3f2016-07-14 23:03:19 +0200800#ifdef FEAT_AUTOCMD
801 aubuflocal_remove(buf);
802
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200803 if (autocmd_busy)
804 {
805 /* Do not free the buffer structure while autocommands are executing,
806 * it's still needed. Free it when autocmd_busy is reset. */
807 buf->b_next = au_pending_free_buf;
808 au_pending_free_buf = buf;
809 }
810 else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000811#endif
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200812 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813}
814
815/*
816 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
817 */
818 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100819free_buffer_stuff(
820 buf_T *buf,
821 int free_options) /* free options as well */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822{
823 if (free_options)
824 {
825 clear_wininfo(buf); /* including window-local options */
826 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200827#ifdef FEAT_SPELL
828 ga_clear(&buf->b_s.b_langp);
829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 }
831#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +0200832 vars_clear(&buf->b_vars->dv_hashtab); /* free all internal variables */
833 hash_init(&buf->b_vars->dv_hashtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834#endif
835#ifdef FEAT_USR_CMDS
836 uc_clear(&buf->b_ucmds); /* clear local user commands */
837#endif
838#ifdef FEAT_SIGNS
839 buf_delete_signs(buf); /* delete any signs */
840#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000841#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200842 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000843#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844#ifdef FEAT_LOCALMAP
845 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
846 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
847#endif
848#ifdef FEAT_MBYTE
849 vim_free(buf->b_start_fenc);
850 buf->b_start_fenc = NULL;
851#endif
852}
853
854/*
855 * Free the b_wininfo list for buffer "buf".
856 */
857 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100858clear_wininfo(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859{
860 wininfo_T *wip;
861
862 while (buf->b_wininfo != NULL)
863 {
864 wip = buf->b_wininfo;
865 buf->b_wininfo = wip->wi_next;
866 if (wip->wi_optset)
867 {
868 clear_winopt(&wip->wi_opt);
869#ifdef FEAT_FOLDING
870 deleteFoldRecurse(&wip->wi_folds);
871#endif
872 }
873 vim_free(wip);
874 }
875}
876
877#if defined(FEAT_LISTCMDS) || defined(PROTO)
878/*
879 * Go to another buffer. Handles the result of the ATTENTION dialog.
880 */
881 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100882goto_buffer(
883 exarg_T *eap,
884 int start,
885 int dir,
886 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887{
Bram Moolenaare64ac772005-12-07 20:54:59 +0000888# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200889 bufref_T old_curbuf;
890
891 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892
893 swap_exists_action = SEA_DIALOG;
894# endif
895 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
896 start, dir, count, eap->forceit);
Bram Moolenaare64ac772005-12-07 20:54:59 +0000897# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
899 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000900# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
901 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000902
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000903 /* Reset the error/interrupt/exception state here so that
904 * aborting() returns FALSE when closing a window. */
905 enter_cleanup(&cs);
906# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000907
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000908 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 win_close(curwin, TRUE);
910 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000911 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000912
913# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
914 /* Restore the error/interrupt/exception state if not discarded by a
915 * new aborting error, interrupt, or uncaught exception. */
916 leave_cleanup(&cs);
917# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 }
919 else
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200920 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921# endif
922}
923#endif
924
Bram Moolenaare64ac772005-12-07 20:54:59 +0000925#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926/*
927 * Handle the situation of swap_exists_action being set.
928 * It is allowed for "old_curbuf" to be NULL or invalid.
929 */
930 void
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200931handle_swap_exists(bufref_T *old_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932{
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000933# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
934 cleanup_T cs;
935# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100936#ifdef FEAT_SYN_HL
937 long old_tw = curbuf->b_p_tw;
938#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200939 buf_T *buf;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000940
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 if (swap_exists_action == SEA_QUIT)
942 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000943# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
944 /* Reset the error/interrupt/exception state here so that
945 * aborting() returns FALSE when closing a buffer. */
946 enter_cleanup(&cs);
947# endif
948
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 /* User selected Quit at ATTENTION prompt. Go back to previous
950 * buffer. If that buffer is gone or the same as the current one,
951 * open a new, empty buffer. */
952 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000953 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100954 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200955 if (old_curbuf == NULL || !bufref_valid(old_curbuf)
956 || old_curbuf->br_buf == curbuf)
957 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
958 else
959 buf = old_curbuf->br_buf;
960 if (buf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100961 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +0200962 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100963#ifdef FEAT_SYN_HL
964 if (old_tw != curbuf->b_p_tw)
965 check_colorcolumn(curwin);
966#endif
967 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 /* If "old_curbuf" is NULL we are in big trouble here... */
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 if (swap_exists_action == SEA_RECOVER)
977 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000978# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
979 /* Reset the error/interrupt/exception state here so that
980 * aborting() returns FALSE when closing a buffer. */
981 enter_cleanup(&cs);
982# endif
983
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 /* User selected Recover at ATTENTION prompt. */
985 msg_scroll = TRUE;
986 ml_recover();
987 MSG_PUTS("\n"); /* don't overwrite the last message */
988 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +0000989 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000990
991# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
992 /* Restore the error/interrupt/exception state if not discarded by a
993 * new aborting error, interrupt, or uncaught exception. */
994 leave_cleanup(&cs);
995# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 }
997 swap_exists_action = SEA_NONE;
998}
999#endif
1000
1001#if defined(FEAT_LISTCMDS) || defined(PROTO)
1002/*
1003 * do_bufdel() - delete or unload buffer(s)
1004 *
1005 * addr_count == 0: ":bdel" - delete current buffer
1006 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1007 * buffer "end_bnr", then any other arguments.
1008 * addr_count == 2: ":N,N bdel" - delete buffers in range
1009 *
1010 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1011 * DOBUF_DEL (":bdel")
1012 *
1013 * Returns error message or NULL
1014 */
1015 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001016do_bufdel(
1017 int command,
1018 char_u *arg, /* pointer to extra arguments */
1019 int addr_count,
1020 int start_bnr, /* first buffer number in a range */
1021 int end_bnr, /* buffer nr or last buffer nr in a range */
1022 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023{
1024 int do_current = 0; /* delete current buffer? */
1025 int deleted = 0; /* number of buffers deleted */
1026 char_u *errormsg = NULL; /* return value */
1027 int bnr; /* buffer number */
1028 char_u *p;
1029
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 if (addr_count == 0)
1031 {
1032 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1033 }
1034 else
1035 {
1036 if (addr_count == 2)
1037 {
1038 if (*arg) /* both range and argument is not allowed */
1039 return (char_u *)_(e_trailing);
1040 bnr = start_bnr;
1041 }
1042 else /* addr_count == 1 */
1043 bnr = end_bnr;
1044
1045 for ( ;!got_int; ui_breakcheck())
1046 {
1047 /*
1048 * delete the current buffer last, otherwise when the
1049 * current buffer is deleted, the next buffer becomes
1050 * the current one and will be loaded, which may then
1051 * also be deleted, etc.
1052 */
1053 if (bnr == curbuf->b_fnum)
1054 do_current = bnr;
1055 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1056 forceit) == OK)
1057 ++deleted;
1058
1059 /*
1060 * find next buffer number to delete/unload
1061 */
1062 if (addr_count == 2)
1063 {
1064 if (++bnr > end_bnr)
1065 break;
1066 }
1067 else /* addr_count == 1 */
1068 {
1069 arg = skipwhite(arg);
1070 if (*arg == NUL)
1071 break;
1072 if (!VIM_ISDIGIT(*arg))
1073 {
1074 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001075 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1076 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 if (bnr < 0) /* failed */
1078 break;
1079 arg = p;
1080 }
1081 else
1082 bnr = getdigits(&arg);
1083 }
1084 }
1085 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1086 FORWARD, do_current, forceit) == OK)
1087 ++deleted;
1088
1089 if (deleted == 0)
1090 {
1091 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001092 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001094 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00001096 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 errormsg = IObuff;
1098 }
1099 else if (deleted >= p_report)
1100 {
1101 if (command == DOBUF_UNLOAD)
1102 {
1103 if (deleted == 1)
1104 MSG(_("1 buffer unloaded"));
1105 else
1106 smsg((char_u *)_("%d buffers unloaded"), deleted);
1107 }
1108 else if (command == DOBUF_DEL)
1109 {
1110 if (deleted == 1)
1111 MSG(_("1 buffer deleted"));
1112 else
1113 smsg((char_u *)_("%d buffers deleted"), deleted);
1114 }
1115 else
1116 {
1117 if (deleted == 1)
1118 MSG(_("1 buffer wiped out"));
1119 else
1120 smsg((char_u *)_("%d buffers wiped out"), deleted);
1121 }
1122 }
1123 }
1124
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125
1126 return errormsg;
1127}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001128#endif /* FEAT_LISTCMDS */
1129
1130#if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \
1131 || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001133static int empty_curbuf(int close_others, int forceit, int action);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001134
1135/*
1136 * Make the current buffer empty.
1137 * Used when it is wiped out and it's the last buffer.
1138 */
1139 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001140empty_curbuf(
1141 int close_others,
1142 int forceit,
1143 int action)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001144{
1145 int retval;
1146 buf_T *buf = curbuf;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001147 bufref_T bufref;
Bram Moolenaara02471e2014-01-10 16:43:14 +01001148
1149 if (action == DOBUF_UNLOAD)
1150 {
1151 EMSG(_("E90: Cannot unload last buffer"));
1152 return FAIL;
1153 }
1154
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001155 set_bufref(&bufref, buf);
Bram Moolenaara02471e2014-01-10 16:43:14 +01001156#ifdef FEAT_WINDOWS
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001157 if (close_others)
1158 /* Close any other windows on this buffer, then make it empty. */
Bram Moolenaara02471e2014-01-10 16:43:14 +01001159 close_windows(buf, TRUE);
1160#endif
Bram Moolenaara02471e2014-01-10 16:43:14 +01001161
1162 setpcmark();
1163 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1164 forceit ? ECMD_FORCEIT : 0, curwin);
1165
1166 /*
1167 * do_ecmd() may create a new buffer, then we have to delete
1168 * the old one. But do_ecmd() may have done that already, check
1169 * if the buffer still exists.
1170 */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001171 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001172 close_buffer(NULL, buf, action, FALSE);
1173 if (!close_others)
1174 need_fileinfo = FALSE;
1175 return retval;
1176}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177/*
1178 * Implementation of the commands for the buffer list.
1179 *
1180 * action == DOBUF_GOTO go to specified buffer
1181 * action == DOBUF_SPLIT split window and go to specified buffer
1182 * action == DOBUF_UNLOAD unload specified buffer(s)
1183 * action == DOBUF_DEL delete specified buffer(s) from buffer list
1184 * action == DOBUF_WIPE delete specified buffer(s) really
1185 *
1186 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1187 * start == DOBUF_FIRST go to "count" buffer from first buffer
1188 * start == DOBUF_LAST go to "count" buffer from last buffer
1189 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1190 *
1191 * Return FAIL or OK.
1192 */
1193 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001194do_buffer(
1195 int action,
1196 int start,
1197 int dir, /* FORWARD or BACKWARD */
1198 int count, /* buffer number or number of buffers */
1199 int forceit) /* TRUE for :...! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200{
1201 buf_T *buf;
1202 buf_T *bp;
1203 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1204 || action == DOBUF_WIPE);
1205
1206 switch (start)
1207 {
1208 case DOBUF_FIRST: buf = firstbuf; break;
1209 case DOBUF_LAST: buf = lastbuf; break;
1210 default: buf = curbuf; break;
1211 }
1212 if (start == DOBUF_MOD) /* find next modified buffer */
1213 {
1214 while (count-- > 0)
1215 {
1216 do
1217 {
1218 buf = buf->b_next;
1219 if (buf == NULL)
1220 buf = firstbuf;
1221 }
1222 while (buf != curbuf && !bufIsChanged(buf));
1223 }
1224 if (!bufIsChanged(buf))
1225 {
1226 EMSG(_("E84: No modified buffer found"));
1227 return FAIL;
1228 }
1229 }
1230 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1231 {
1232 while (buf != NULL && buf->b_fnum != count)
1233 buf = buf->b_next;
1234 }
1235 else
1236 {
1237 bp = NULL;
1238 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1239 {
1240 /* remember the buffer where we start, we come back there when all
1241 * buffers are unlisted. */
1242 if (bp == NULL)
1243 bp = buf;
1244 if (dir == FORWARD)
1245 {
1246 buf = buf->b_next;
1247 if (buf == NULL)
1248 buf = firstbuf;
1249 }
1250 else
1251 {
1252 buf = buf->b_prev;
1253 if (buf == NULL)
1254 buf = lastbuf;
1255 }
1256 /* don't count unlisted buffers */
1257 if (unload || buf->b_p_bl)
1258 {
1259 --count;
1260 bp = NULL; /* use this buffer as new starting point */
1261 }
1262 if (bp == buf)
1263 {
1264 /* back where we started, didn't find anything. */
1265 EMSG(_("E85: There is no listed buffer"));
1266 return FAIL;
1267 }
1268 }
1269 }
1270
1271 if (buf == NULL) /* could not find it */
1272 {
1273 if (start == DOBUF_FIRST)
1274 {
1275 /* don't warn when deleting */
1276 if (!unload)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01001277 EMSGN(_(e_nobufnr), count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 }
1279 else if (dir == FORWARD)
1280 EMSG(_("E87: Cannot go beyond last buffer"));
1281 else
1282 EMSG(_("E88: Cannot go before first buffer"));
1283 return FAIL;
1284 }
1285
1286#ifdef FEAT_GUI
1287 need_mouse_correct = TRUE;
1288#endif
1289
1290#ifdef FEAT_LISTCMDS
1291 /*
1292 * delete buffer buf from memory and/or the list
1293 */
1294 if (unload)
1295 {
1296 int forward;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001297# if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS)
1298 bufref_T bufref;
1299
1300 set_bufref(&bufref, buf);
1301# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302
1303 /* When unloading or deleting a buffer that's already unloaded and
1304 * unlisted: fail silently. */
1305 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1306 return FAIL;
1307
1308 if (!forceit && bufIsChanged(buf))
1309 {
1310#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1311 if ((p_confirm || cmdmod.confirm) && p_write)
1312 {
1313 dialog_changed(buf, FALSE);
1314# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001315 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 /* Autocommand deleted buffer, oops! It's not changed
1317 * now. */
1318 return FAIL;
1319# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001320 /* If it's still changed fail silently, the dialog already
1321 * mentioned why it fails. */
1322 if (bufIsChanged(buf))
1323 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001325 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326#endif
1327 {
1328 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1329 buf->b_fnum);
1330 return FAIL;
1331 }
1332 }
1333
1334 /*
1335 * If deleting the last (listed) buffer, make it empty.
1336 * The last (listed) buffer cannot be unloaded.
1337 */
Bram Moolenaar29323592016-07-24 22:04:11 +02001338 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 if (bp->b_p_bl && bp != buf)
1340 break;
1341 if (bp == NULL && buf == curbuf)
Bram Moolenaara02471e2014-01-10 16:43:14 +01001342 return empty_curbuf(TRUE, forceit, action);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343
1344#ifdef FEAT_WINDOWS
1345 /*
1346 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001347 * (unless it's the only window). Repeat this so long as we end up in
1348 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001350 while (buf == curbuf
Bram Moolenaar362ce482012-06-06 19:02:45 +02001351# ifdef FEAT_AUTOCMD
1352 && !(curwin->w_closing || curwin->w_buffer->b_closing)
1353# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00001354 && (firstwin != lastwin || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001355 {
1356 if (win_close(curwin, FALSE) == FAIL)
1357 break;
1358 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359#endif
1360
1361 /*
1362 * If the buffer to be deleted is not the current one, delete it here.
1363 */
1364 if (buf != curbuf)
1365 {
1366#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00001367 close_windows(buf, FALSE);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001368 if (buf != curbuf && bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369#endif
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001370 if (buf->b_nwindows <= 0)
1371 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 return OK;
1373 }
1374
1375 /*
1376 * Deleting the current buffer: Need to find another buffer to go to.
Bram Moolenaara02471e2014-01-10 16:43:14 +01001377 * There should be another, otherwise it would have been handled
1378 * above. However, autocommands may have deleted all buffers.
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001379 * First use au_new_curbuf.br_buf, if it is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 * Then prefer the buffer we most recently visited.
1381 * Else try to find one that is loaded, after the current buffer,
1382 * then before the current buffer.
1383 * Finally use any buffer.
1384 */
1385 buf = NULL; /* selected buffer */
1386 bp = NULL; /* used when no loaded buffer found */
1387#ifdef FEAT_AUTOCMD
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02001388 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1389 buf = au_new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390# ifdef FEAT_JUMPLIST
1391 else
1392# endif
1393#endif
1394#ifdef FEAT_JUMPLIST
1395 if (curwin->w_jumplistlen > 0)
1396 {
1397 int jumpidx;
1398
1399 jumpidx = curwin->w_jumplistidx - 1;
1400 if (jumpidx < 0)
1401 jumpidx = curwin->w_jumplistlen - 1;
1402
1403 forward = jumpidx;
1404 while (jumpidx != curwin->w_jumplistidx)
1405 {
1406 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1407 if (buf != NULL)
1408 {
1409 if (buf == curbuf || !buf->b_p_bl)
1410 buf = NULL; /* skip current and unlisted bufs */
1411 else if (buf->b_ml.ml_mfp == NULL)
1412 {
1413 /* skip unloaded buf, but may keep it for later */
1414 if (bp == NULL)
1415 bp = buf;
1416 buf = NULL;
1417 }
1418 }
1419 if (buf != NULL) /* found a valid buffer: stop searching */
1420 break;
1421 /* advance to older entry in jump list */
1422 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1423 break;
1424 if (--jumpidx < 0)
1425 jumpidx = curwin->w_jumplistlen - 1;
1426 if (jumpidx == forward) /* List exhausted for sure */
1427 break;
1428 }
1429 }
1430#endif
1431
1432 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1433 {
1434 forward = TRUE;
1435 buf = curbuf->b_next;
1436 for (;;)
1437 {
1438 if (buf == NULL)
1439 {
1440 if (!forward) /* tried both directions */
1441 break;
1442 buf = curbuf->b_prev;
1443 forward = FALSE;
1444 continue;
1445 }
1446 /* in non-help buffer, try to skip help buffers, and vv */
1447 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1448 {
1449 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1450 break;
1451 if (bp == NULL) /* remember unloaded buf for later */
1452 bp = buf;
1453 }
1454 if (forward)
1455 buf = buf->b_next;
1456 else
1457 buf = buf->b_prev;
1458 }
1459 }
1460 if (buf == NULL) /* No loaded buffer, use unloaded one */
1461 buf = bp;
1462 if (buf == NULL) /* No loaded buffer, find listed one */
1463 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001464 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 if (buf->b_p_bl && buf != curbuf)
1466 break;
1467 }
1468 if (buf == NULL) /* Still no buffer, just take one */
1469 {
1470 if (curbuf->b_next != NULL)
1471 buf = curbuf->b_next;
1472 else
1473 buf = curbuf->b_prev;
1474 }
1475 }
1476
Bram Moolenaara02471e2014-01-10 16:43:14 +01001477 if (buf == NULL)
1478 {
1479 /* Autocommands must have wiped out all other buffers. Only option
1480 * now is to make the current buffer empty. */
1481 return empty_curbuf(FALSE, forceit, action);
1482 }
1483
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 /*
1485 * make buf current buffer
1486 */
1487 if (action == DOBUF_SPLIT) /* split window first */
1488 {
1489# ifdef FEAT_WINDOWS
Bram Moolenaarf2330482008-06-24 20:19:36 +00001490 /* If 'switchbuf' contains "useopen": jump to first window containing
1491 * "buf" if one exists */
1492 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001493 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001494 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001495 * page containing "buf" if one exists */
1496 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 return OK;
1498 if (win_split(0, 0) == FAIL)
1499# endif
1500 return FAIL;
1501 }
1502#endif
1503
1504 /* go to current buffer - nothing to do */
1505 if (buf == curbuf)
1506 return OK;
1507
1508 /*
1509 * Check if the current buffer may be abandoned.
1510 */
1511 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1512 {
1513#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1514 if ((p_confirm || cmdmod.confirm) && p_write)
1515 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001516# ifdef FEAT_AUTOCMD
1517 bufref_T bufref;
1518
1519 set_bufref(&bufref, buf);
1520# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 dialog_changed(curbuf, FALSE);
1522# ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001523 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 /* Autocommand deleted buffer, oops! */
1525 return FAIL;
1526# endif
1527 }
1528 if (bufIsChanged(curbuf))
1529#endif
1530 {
1531 EMSG(_(e_nowrtmsg));
1532 return FAIL;
1533 }
1534 }
1535
1536 /* Go to the other buffer. */
1537 set_curbuf(buf, action);
1538
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001539#if defined(FEAT_LISTCMDS) \
1540 && (defined(FEAT_SCROLLBIND) || defined(FEAT_CURSORBIND))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001542 {
1543 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545#endif
1546
1547#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1548 if (aborting()) /* autocmds may abort script processing */
1549 return FAIL;
1550#endif
1551
1552 return OK;
1553}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001554#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555
1556/*
1557 * Set current buffer to "buf". Executes autocommands and closes current
1558 * buffer. "action" tells how to close the current buffer:
1559 * DOBUF_GOTO free or hide it
1560 * DOBUF_SPLIT nothing
1561 * DOBUF_UNLOAD unload it
1562 * DOBUF_DEL delete it
1563 * DOBUF_WIPE wipe it out
1564 */
1565 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001566set_curbuf(buf_T *buf, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567{
1568 buf_T *prevbuf;
1569 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1570 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001571#ifdef FEAT_SYN_HL
1572 long old_tw = curbuf->b_p_tw;
1573#endif
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001574 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575
1576 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001577 if (!cmdmod.keepalt)
1578 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001579 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 /* Don't restart Select mode after switching to another buffer. */
1582 VIsual_reselect = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583
1584 /* close_windows() or apply_autocmds() may change curbuf */
1585 prevbuf = curbuf;
Bram Moolenaar453f37d2016-07-10 18:33:59 +02001586 set_bufref(&bufref, prevbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587
1588#ifdef FEAT_AUTOCMD
Bram Moolenaar82404332016-07-10 17:00:38 +02001589 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590# ifdef FEAT_EVAL
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001591 || (bufref_valid(&bufref) && !aborting()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592# else
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001593 || bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594# endif
1595#endif
1596 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001597#ifdef FEAT_SYN_HL
1598 if (prevbuf == curwin->w_buffer)
1599 reset_synblock(curwin);
1600#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601#ifdef FEAT_WINDOWS
1602 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001603 close_windows(prevbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604#endif
1605#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001606 if (bufref_valid(&bufref) && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607#else
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001608 if (bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001610 {
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001611#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001612 win_T *previouswin = curwin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001613#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001614 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001615 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1617 unload ? action : (action == DOBUF_GOTO
1618 && !P_HID(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001619 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001620#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001621 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001622 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001623 curwin = previouswin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001624#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 }
1627#ifdef FEAT_AUTOCMD
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001628 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001629 * it did ":bunload") or aborted the script processing.
Bram Moolenaar9e931222012-06-20 11:55:01 +02001630 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1631 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001632# ifdef FEAT_EVAL
Bram Moolenaar9e931222012-06-20 11:55:01 +02001633 && !aborting()
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001634# endif
1635# ifdef FEAT_WINDOWS
Bram Moolenaar9e931222012-06-20 11:55:01 +02001636 ) || curwin->w_buffer == NULL
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001637# endif
Bram Moolenaar9e931222012-06-20 11:55:01 +02001638 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001640 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001642#ifdef FEAT_SYN_HL
1643 if (old_tw != curbuf->b_p_tw)
1644 check_colorcolumn(curwin);
1645#endif
1646 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647}
1648
1649/*
1650 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001651 * Old curbuf must have been abandoned already! This also means "curbuf" may
1652 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 */
1654 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001655enter_buffer(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656{
1657 /* Copy buffer and window local option values. Not for a help buffer. */
1658 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1659 if (!buf->b_help)
1660 get_winopts(buf);
1661#ifdef FEAT_FOLDING
1662 else
1663 /* Remove all folds in the window. */
1664 clearFolding(curwin);
1665 foldUpdateAll(curwin); /* update folds (later). */
1666#endif
1667
1668 /* Get the buffer in the current window. */
1669 curwin->w_buffer = buf;
1670 curbuf = buf;
1671 ++curbuf->b_nwindows;
1672
1673#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001674 if (curwin->w_p_diff)
1675 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676#endif
1677
Bram Moolenaara971b822011-09-14 14:43:25 +02001678#ifdef FEAT_SYN_HL
1679 curwin->w_s = &(buf->b_s);
1680#endif
1681
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 /* Cursor on first line by default. */
1683 curwin->w_cursor.lnum = 1;
1684 curwin->w_cursor.col = 0;
1685#ifdef FEAT_VIRTUALEDIT
1686 curwin->w_cursor.coladd = 0;
1687#endif
1688 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001689#ifdef FEAT_AUTOCMD
1690 curwin->w_topline_was_set = FALSE;
1691#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001693 /* mark cursor position as being invalid */
1694 curwin->w_valid = 0;
1695
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 /* Make sure the buffer is loaded. */
1697 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001698 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001699#ifdef FEAT_AUTOCMD
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001700 /* If there is no filetype, allow for detecting one. Esp. useful for
1701 * ":ball" used in a autocommand. If there already is a filetype we
1702 * might prefer to keep it. */
1703 if (*curbuf->b_p_ft == NUL)
1704 did_filetype = FALSE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001705#endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001706
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001707 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001708 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 else
1710 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001711 if (!msg_silent)
1712 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1714#ifdef FEAT_AUTOCMD
1715 curwin->w_topline = 1;
1716# ifdef FEAT_DIFF
1717 curwin->w_topfill = 0;
1718# endif
1719 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1720 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1721#endif
1722 }
1723
1724 /* If autocommands did not change the cursor position, restore cursor lnum
1725 * and possibly cursor col. */
1726 if (curwin->w_cursor.lnum == 1 && inindent(0))
1727 buflist_getfpos();
1728
1729 check_arg_idx(curwin); /* check for valid arg_idx */
1730#ifdef FEAT_TITLE
1731 maketitle();
1732#endif
1733#ifdef FEAT_AUTOCMD
Bram Moolenaard4153d42008-11-15 15:06:17 +00001734 /* when autocmds didn't change it */
1735 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736#endif
1737 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1738
Bram Moolenaar009b2592004-10-24 19:18:58 +00001739#ifdef FEAT_NETBEANS_INTG
1740 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001741 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001742#endif
1743
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001744 /* Change directories when the 'acd' option is set. */
1745 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746
1747#ifdef FEAT_KEYMAP
1748 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001749 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001751#ifdef FEAT_SPELL
1752 /* May need to set the spell language. Can only do this after the buffer
1753 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001754 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1755 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001756#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001757#ifdef FEAT_VIMINFO
1758 curbuf->b_last_used = vim_time();
1759#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001760
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 redraw_later(NOT_VALID);
1762}
1763
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001764#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1765/*
1766 * Change to the directory of the current buffer.
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001767 * Don't do this while still starting up.
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001768 */
1769 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001770do_autochdir(void)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001771{
Bram Moolenaar5c719942016-07-09 23:40:45 +02001772 if ((starting == 0 || test_autochdir)
Bram Moolenaar6bd364e2016-02-23 16:19:07 +01001773 && curbuf->b_ffname != NULL
1774 && vim_chdirfile(curbuf->b_ffname) == OK)
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001775 shorten_fnames(TRUE);
1776}
1777#endif
1778
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779/*
1780 * functions for dealing with the buffer list
1781 */
1782
Bram Moolenaar480778b2016-07-14 22:09:39 +02001783static int top_file_num = 1; /* highest file number */
1784
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785/*
1786 * Add a file name to the buffer list. Return a pointer to the buffer.
1787 * If the same file name already exists return a pointer to that buffer.
1788 * If it does not exist, or if fname == NULL, a new entry is created.
1789 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1790 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1791 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001792 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
Bram Moolenaar82404332016-07-10 17:00:38 +02001793 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1794 * if the buffer already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 * This is the ONLY way to create a new buffer.
1796 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001798buflist_new(
1799 char_u *ffname, /* full path of fname or relative */
1800 char_u *sfname, /* short fname or NULL */
1801 linenr_T lnum, /* preferred cursor line */
1802 int flags) /* BLN_ defines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803{
1804 buf_T *buf;
1805#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001806 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807#endif
1808
Bram Moolenaar480778b2016-07-14 22:09:39 +02001809 if (top_file_num == 1)
1810 hash_init(&buf_hashtab);
1811
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1813
1814 /*
1815 * If file name already exists in the list, update the entry.
1816 */
1817#ifdef UNIX
1818 /* On Unix we can use inode numbers when the file exists. Works better
1819 * for hard links. */
1820 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1821 st.st_dev = (dev_T)-1;
1822#endif
Bram Moolenaarb127cfd2016-05-29 16:24:50 +02001823 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824#ifdef UNIX
1825 buflist_findname_stat(ffname, &st)
1826#else
1827 buflist_findname(ffname)
1828#endif
1829 ) != NULL)
1830 {
1831 vim_free(ffname);
1832 if (lnum != 0)
1833 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
Bram Moolenaar82404332016-07-10 17:00:38 +02001834
1835 if ((flags & BLN_NOOPT) == 0)
1836 /* copy the options now, if 'cpo' doesn't have 's' and not done
1837 * already */
1838 buf_copy_options(buf, 0);
1839
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1841 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001842#ifdef FEAT_AUTOCMD
1843 bufref_T bufref;
1844#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 buf->b_p_bl = TRUE;
1846#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001847 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 if (!(flags & BLN_DUMMY))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001849 {
Bram Moolenaar82404332016-07-10 17:00:38 +02001850 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001851 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02001852 return NULL;
1853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854#endif
1855 }
1856 return buf;
1857 }
1858
1859 /*
1860 * If the current buffer has no name and no contents, use the current
1861 * buffer. Otherwise: Need to allocate a new buffer structure.
1862 *
1863 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001864 * (A spell file buffer is allocated in spell.c, but that's not a normal
1865 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 */
1867 buf = NULL;
1868 if ((flags & BLN_CURBUF)
1869 && curbuf != NULL
1870 && curbuf->b_ffname == NULL
1871 && curbuf->b_nwindows <= 1
1872 && (curbuf->b_ml.ml_mfp == NULL || bufempty()))
1873 {
1874 buf = curbuf;
1875#ifdef FEAT_AUTOCMD
1876 /* It's like this buffer is deleted. Watch out for autocommands that
1877 * change curbuf! If that happens, allocate a new buffer anyway. */
1878 if (curbuf->b_p_bl)
1879 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1880 if (buf == curbuf)
1881 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
1882# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001883 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 return NULL;
1885# endif
1886#endif
1887#ifdef FEAT_QUICKFIX
1888# ifdef FEAT_AUTOCMD
1889 if (buf == curbuf)
1890# endif
1891 {
1892 /* Make sure 'bufhidden' and 'buftype' are empty */
1893 clear_string_option(&buf->b_p_bh);
1894 clear_string_option(&buf->b_p_bt);
1895 }
1896#endif
1897 }
1898 if (buf != curbuf || curbuf == NULL)
1899 {
1900 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1901 if (buf == NULL)
1902 {
1903 vim_free(ffname);
1904 return NULL;
1905 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001906#ifdef FEAT_EVAL
1907 /* init b: variables */
1908 buf->b_vars = dict_alloc();
1909 if (buf->b_vars == NULL)
1910 {
1911 vim_free(ffname);
1912 vim_free(buf);
1913 return NULL;
1914 }
1915 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 }
1918
1919 if (ffname != NULL)
1920 {
1921 buf->b_ffname = ffname;
1922 buf->b_sfname = vim_strsave(sfname);
1923 }
1924
1925 clear_wininfo(buf);
1926 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1927
1928 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1929 || buf->b_wininfo == NULL)
1930 {
1931 vim_free(buf->b_ffname);
1932 buf->b_ffname = NULL;
1933 vim_free(buf->b_sfname);
1934 buf->b_sfname = NULL;
1935 if (buf != curbuf)
1936 free_buffer(buf);
1937 return NULL;
1938 }
1939
1940 if (buf == curbuf)
1941 {
1942 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001943 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 if (buf != curbuf) /* autocommands deleted the buffer! */
1945 return NULL;
1946#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001947 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 return NULL;
1949#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01001951
1952 /* Init the options. */
1953 buf->b_p_initialized = FALSE;
1954 buf_copy_options(buf, BCO_ENTER);
1955
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956#ifdef FEAT_KEYMAP
1957 /* need to reload lmaps and set b:keymap_name */
1958 curbuf->b_kmap_state |= KEYMAP_INIT;
1959#endif
1960 }
1961 else
1962 {
1963 /*
1964 * put new buffer at the end of the buffer list
1965 */
1966 buf->b_next = NULL;
1967 if (firstbuf == NULL) /* buffer list is empty */
1968 {
1969 buf->b_prev = NULL;
1970 firstbuf = buf;
1971 }
1972 else /* append new buffer at end of list */
1973 {
1974 lastbuf->b_next = buf;
1975 buf->b_prev = lastbuf;
1976 }
1977 lastbuf = buf;
1978
1979 buf->b_fnum = top_file_num++;
1980 if (top_file_num < 0) /* wrap around (may cause duplicates) */
1981 {
1982 EMSG(_("W14: Warning: List of file names overflow"));
1983 if (emsg_silent == 0)
1984 {
1985 out_flush();
1986 ui_delay(3000L, TRUE); /* make sure it is noticed */
1987 }
1988 top_file_num = 1;
1989 }
Bram Moolenaar480778b2016-07-14 22:09:39 +02001990 buf_hashtab_add(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991
1992 /*
1993 * Always copy the options from the current buffer.
1994 */
1995 buf_copy_options(buf, BCO_ALWAYS);
1996 }
1997
1998 buf->b_wininfo->wi_fpos.lnum = lnum;
1999 buf->b_wininfo->wi_win = curwin;
2000
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00002001#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002002 hash_init(&buf->b_s.b_keywtab);
2003 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004#endif
2005
2006 buf->b_fname = buf->b_sfname;
2007#ifdef UNIX
2008 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002009 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 else
2011 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002012 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 buf->b_dev = st.st_dev;
2014 buf->b_ino = st.st_ino;
2015 }
2016#endif
2017 buf->b_u_synced = TRUE;
2018 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00002019 if (flags & BLN_DUMMY)
2020 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 buf_clear_file(buf);
2022 clrallmarks(buf); /* clear marks */
2023 fmarks_check_names(buf); /* check file marks for this file */
2024 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
2025#ifdef FEAT_AUTOCMD
2026 if (!(flags & BLN_DUMMY))
2027 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002028 bufref_T bufref;
2029
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01002030 /* Tricky: these autocommands may change the buffer list. They could
2031 * also split the window with re-using the one empty buffer. This may
2032 * result in unexpectedly losing the empty buffer. */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002033 set_bufref(&bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02002034 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002035 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002036 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 if (flags & BLN_LISTED)
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002038 {
Bram Moolenaar82404332016-07-10 17:00:38 +02002039 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02002040 && !bufref_valid(&bufref))
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02002041 return NULL;
2042 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002044 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 return NULL;
2046# endif
2047 }
2048#endif
2049
2050 return buf;
2051}
2052
2053/*
2054 * Free the memory for the options of a buffer.
2055 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2056 * 'fileencoding'.
2057 */
2058 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002059free_buf_options(
2060 buf_T *buf,
2061 int free_p_ff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062{
2063 if (free_p_ff)
2064 {
2065#ifdef FEAT_MBYTE
2066 clear_string_option(&buf->b_p_fenc);
2067#endif
2068 clear_string_option(&buf->b_p_ff);
2069#ifdef FEAT_QUICKFIX
2070 clear_string_option(&buf->b_p_bh);
2071 clear_string_option(&buf->b_p_bt);
2072#endif
2073 }
2074#ifdef FEAT_FIND_ID
2075 clear_string_option(&buf->b_p_def);
2076 clear_string_option(&buf->b_p_inc);
2077# ifdef FEAT_EVAL
2078 clear_string_option(&buf->b_p_inex);
2079# endif
2080#endif
2081#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2082 clear_string_option(&buf->b_p_inde);
2083 clear_string_option(&buf->b_p_indk);
2084#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00002085#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2086 clear_string_option(&buf->b_p_bexpr);
2087#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02002088#if defined(FEAT_CRYPT)
2089 clear_string_option(&buf->b_p_cm);
2090#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002091#if defined(FEAT_EVAL)
2092 clear_string_option(&buf->b_p_fex);
2093#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094#ifdef FEAT_CRYPT
2095 clear_string_option(&buf->b_p_key);
2096#endif
2097 clear_string_option(&buf->b_p_kp);
2098 clear_string_option(&buf->b_p_mps);
2099 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002100 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101 clear_string_option(&buf->b_p_isk);
2102#ifdef FEAT_KEYMAP
2103 clear_string_option(&buf->b_p_keymap);
2104 ga_clear(&buf->b_kmap_ga);
2105#endif
2106#ifdef FEAT_COMMENTS
2107 clear_string_option(&buf->b_p_com);
2108#endif
2109#ifdef FEAT_FOLDING
2110 clear_string_option(&buf->b_p_cms);
2111#endif
2112 clear_string_option(&buf->b_p_nf);
2113#ifdef FEAT_SYN_HL
2114 clear_string_option(&buf->b_p_syn);
Bram Moolenaarb8060fe2016-01-19 22:29:28 +01002115 clear_string_option(&buf->b_s.b_syn_isk);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002116#endif
2117#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02002118 clear_string_option(&buf->b_s.b_p_spc);
2119 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02002120 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002121 buf->b_s.b_cap_prog = NULL;
2122 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123#endif
2124#ifdef FEAT_SEARCHPATH
2125 clear_string_option(&buf->b_p_sua);
2126#endif
2127#ifdef FEAT_AUTOCMD
2128 clear_string_option(&buf->b_p_ft);
2129#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130#ifdef FEAT_CINDENT
2131 clear_string_option(&buf->b_p_cink);
2132 clear_string_option(&buf->b_p_cino);
2133#endif
2134#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2135 clear_string_option(&buf->b_p_cinw);
2136#endif
2137#ifdef FEAT_INS_EXPAND
2138 clear_string_option(&buf->b_p_cpt);
2139#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002140#ifdef FEAT_COMPL_FUNC
2141 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002142 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144#ifdef FEAT_QUICKFIX
2145 clear_string_option(&buf->b_p_gp);
2146 clear_string_option(&buf->b_p_mp);
2147 clear_string_option(&buf->b_p_efm);
2148#endif
2149 clear_string_option(&buf->b_p_ep);
2150 clear_string_option(&buf->b_p_path);
2151 clear_string_option(&buf->b_p_tags);
Bram Moolenaar0f6562e2015-11-24 18:48:14 +01002152 clear_string_option(&buf->b_p_tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153#ifdef FEAT_INS_EXPAND
2154 clear_string_option(&buf->b_p_dict);
2155 clear_string_option(&buf->b_p_tsr);
2156#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002157#ifdef FEAT_TEXTOBJ
2158 clear_string_option(&buf->b_p_qe);
2159#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 buf->b_p_ar = -1;
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002161 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
Bram Moolenaaraf6c1312014-03-12 18:55:58 +01002162#ifdef FEAT_LISP
2163 clear_string_option(&buf->b_p_lw);
2164#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02002165 clear_string_option(&buf->b_p_bkc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166}
2167
2168/*
2169 * get alternate file n
2170 * set linenr to lnum or altfpos.lnum if lnum == 0
2171 * also set cursor column to altfpos.col if 'startofline' is not set.
2172 * if (options & GETF_SETMARK) call setpcmark()
2173 * if (options & GETF_ALT) we are jumping to an alternate file.
2174 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2175 *
2176 * return FAIL for failure, OK for success
2177 */
2178 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002179buflist_getfile(
2180 int n,
2181 linenr_T lnum,
2182 int options,
2183 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184{
2185 buf_T *buf;
2186#ifdef FEAT_WINDOWS
2187 win_T *wp = NULL;
2188#endif
2189 pos_T *fpos;
2190 colnr_T col;
2191
2192 buf = buflist_findnr(n);
2193 if (buf == NULL)
2194 {
2195 if ((options & GETF_ALT) && n == 0)
2196 EMSG(_(e_noalt));
2197 else
2198 EMSGN(_("E92: Buffer %ld not found"), n);
2199 return FAIL;
2200 }
2201
2202 /* if alternate file is the current buffer, nothing to do */
2203 if (buf == curbuf)
2204 return OK;
2205
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002206 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002207 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002208 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002210 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002211#ifdef FEAT_AUTOCMD
2212 if (curbuf_locked())
2213 return FAIL;
2214#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215
2216 /* altfpos may be changed by getfile(), get it now */
2217 if (lnum == 0)
2218 {
2219 fpos = buflist_findfpos(buf);
2220 lnum = fpos->lnum;
2221 col = fpos->col;
2222 }
2223 else
2224 col = 0;
2225
2226#ifdef FEAT_WINDOWS
2227 if (options & GETF_SWITCH)
2228 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002229 /* If 'switchbuf' contains "useopen": jump to first window containing
2230 * "buf" if one exists */
2231 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 wp = buf_jump_open_win(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002233
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002234 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002235 * page containing "buf" if one exists */
2236 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002237 wp = buf_jump_open_tab(buf);
Bram Moolenaara594d772015-06-19 14:41:49 +02002238
2239 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2240 * current buffer isn't empty: open new tab or window */
2241 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
2242 && !bufempty())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 {
Bram Moolenaara594d772015-06-19 14:41:49 +02002244 if (swb_flags & SWB_NEWTAB)
Bram Moolenaarf2330482008-06-24 20:19:36 +00002245 tabpage_new();
Bram Moolenaara594d772015-06-19 14:41:49 +02002246 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2247 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002249 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 }
2251 }
2252#endif
2253
2254 ++RedrawingDisabled;
2255 if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK),
2256 lnum, forceit) <= 0)
2257 {
2258 --RedrawingDisabled;
2259
2260 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2261 if (!p_sol && col != 0)
2262 {
2263 curwin->w_cursor.col = col;
2264 check_cursor_col();
2265#ifdef FEAT_VIRTUALEDIT
2266 curwin->w_cursor.coladd = 0;
2267#endif
2268 curwin->w_set_curswant = TRUE;
2269 }
2270 return OK;
2271 }
2272 --RedrawingDisabled;
2273 return FAIL;
2274}
2275
2276/*
2277 * go to the last know line number for the current buffer
2278 */
2279 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002280buflist_getfpos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281{
2282 pos_T *fpos;
2283
2284 fpos = buflist_findfpos(curbuf);
2285
2286 curwin->w_cursor.lnum = fpos->lnum;
2287 check_cursor_lnum();
2288
2289 if (p_sol)
2290 curwin->w_cursor.col = 0;
2291 else
2292 {
2293 curwin->w_cursor.col = fpos->col;
2294 check_cursor_col();
2295#ifdef FEAT_VIRTUALEDIT
2296 curwin->w_cursor.coladd = 0;
2297#endif
2298 curwin->w_set_curswant = TRUE;
2299 }
2300}
2301
Bram Moolenaar81695252004-12-29 20:58:21 +00002302#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2303/*
2304 * Find file in buffer list by name (it has to be for the current window).
2305 * Returns NULL if not found.
2306 */
2307 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002308buflist_findname_exp(char_u *fname)
Bram Moolenaar81695252004-12-29 20:58:21 +00002309{
2310 char_u *ffname;
2311 buf_T *buf = NULL;
2312
2313 /* First make the name into a full path name */
2314 ffname = FullName_save(fname,
2315#ifdef UNIX
2316 TRUE /* force expansion, get rid of symbolic links */
2317#else
2318 FALSE
2319#endif
2320 );
2321 if (ffname != NULL)
2322 {
2323 buf = buflist_findname(ffname);
2324 vim_free(ffname);
2325 }
2326 return buf;
2327}
2328#endif
2329
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330/*
2331 * Find file in buffer list by name (it has to be for the current window).
2332 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002333 * Skips dummy buffers.
2334 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 */
2336 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002337buflist_findname(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338{
2339#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02002340 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341
2342 if (mch_stat((char *)ffname, &st) < 0)
2343 st.st_dev = (dev_T)-1;
2344 return buflist_findname_stat(ffname, &st);
2345}
2346
2347/*
2348 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2349 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002350 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 */
2352 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002353buflist_findname_stat(
2354 char_u *ffname,
Bram Moolenaar8767f522016-07-01 17:17:39 +02002355 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356{
2357#endif
2358 buf_T *buf;
2359
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002360 /* Start at the last buffer, expect to find a match sooner. */
2361 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar81695252004-12-29 20:58:21 +00002362 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363#ifdef UNIX
2364 , stp
2365#endif
2366 ))
2367 return buf;
2368 return NULL;
2369}
2370
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002371#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
2372 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373/*
2374 * Find file in buffer list by a regexp pattern.
2375 * Return fnum of the found buffer.
2376 * Return < 0 for error.
2377 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002379buflist_findpat(
2380 char_u *pattern,
2381 char_u *pattern_end, /* pointer to first char after pattern */
2382 int unlisted, /* find unlisted buffers */
2383 int diffmode UNUSED, /* find diff-mode buffers only */
2384 int curtab_only) /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385{
2386 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 int match = -1;
2388 int find_listed;
2389 char_u *pat;
2390 char_u *patend;
2391 int attempt;
2392 char_u *p;
2393 int toggledollar;
2394
2395 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2396 {
2397 if (*pattern == '%')
2398 match = curbuf->b_fnum;
2399 else
2400 match = curwin->w_alt_fnum;
2401#ifdef FEAT_DIFF
2402 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2403 match = -1;
2404#endif
2405 }
2406
2407 /*
2408 * Try four ways of matching a listed buffer:
2409 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002410 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 * attempt == 2: with '$' at end (only match at end)
2412 * attempt == 3: with '^' at start and '$' at end (only full match)
2413 * Repeat this for finding an unlisted buffer if there was no matching
2414 * listed buffer.
2415 */
2416 else
2417 {
2418 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2419 if (pat == NULL)
2420 return -1;
2421 patend = pat + STRLEN(pat) - 1;
2422 toggledollar = (patend > pat && *patend == '$');
2423
2424 /* First try finding a listed buffer. If not found and "unlisted"
2425 * is TRUE, try finding an unlisted buffer. */
2426 find_listed = TRUE;
2427 for (;;)
2428 {
2429 for (attempt = 0; attempt <= 3; ++attempt)
2430 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002431 regmatch_T regmatch;
2432
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 /* may add '^' and '$' */
2434 if (toggledollar)
2435 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2436 p = pat;
2437 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2438 ++p;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002439 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2440 if (regmatch.regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 {
2442 vim_free(pat);
2443 return -1;
2444 }
2445
Bram Moolenaarea3f2e72016-07-10 20:27:32 +02002446 for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 if (buf->b_p_bl == find_listed
2448#ifdef FEAT_DIFF
2449 && (!diffmode || diff_mode_buf(buf))
2450#endif
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002451 && buflist_match(&regmatch, buf, FALSE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002453 if (curtab_only)
2454 {
2455 /* Ignore the match if the buffer is not open in
2456 * the current tab. */
2457#ifdef FEAT_WINDOWS
2458 win_T *wp;
2459
Bram Moolenaar29323592016-07-24 22:04:11 +02002460 FOR_ALL_WINDOWS(wp)
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002461 if (wp->w_buffer == buf)
2462 break;
2463 if (wp == NULL)
2464 continue;
2465#else
2466 if (curwin->w_buffer != buf)
2467 continue;
2468#endif
2469 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 if (match >= 0) /* already found a match */
2471 {
2472 match = -2;
2473 break;
2474 }
2475 match = buf->b_fnum; /* remember first match */
2476 }
2477
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002478 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 if (match >= 0) /* found one match */
2480 break;
2481 }
2482
2483 /* Only search for unlisted buffers if there was no match with
2484 * a listed buffer. */
2485 if (!unlisted || !find_listed || match != -1)
2486 break;
2487 find_listed = FALSE;
2488 }
2489
2490 vim_free(pat);
2491 }
2492
2493 if (match == -2)
2494 EMSG2(_("E93: More than one match for %s"), pattern);
2495 else if (match < 0)
2496 EMSG2(_("E94: No matching buffer for %s"), pattern);
2497 return match;
2498}
2499#endif
2500
2501#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2502
2503/*
2504 * Find all buffer names that match.
2505 * For command line expansion of ":buf" and ":sbuf".
2506 * Return OK if matches found, FAIL otherwise.
2507 */
2508 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002509ExpandBufnames(
2510 char_u *pat,
2511 int *num_file,
2512 char_u ***file,
2513 int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514{
2515 int count = 0;
2516 buf_T *buf;
2517 int round;
2518 char_u *p;
2519 int attempt;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002520 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521
2522 *num_file = 0; /* return values in case of FAIL */
2523 *file = NULL;
2524
Bram Moolenaar05159a02005-02-26 23:04:13 +00002525 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2526 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002528 patc = alloc((unsigned)STRLEN(pat) + 11);
2529 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002531 STRCPY(patc, "\\(^\\|[\\/]\\)");
2532 STRCPY(patc + 11, pat + 1);
2533 }
2534 else
2535 patc = pat;
2536
2537 /*
2538 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002539 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002540 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002541 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002542 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002543 regmatch_T regmatch;
2544
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002545 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002546 break; /* there was no anchor, no need to try again */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002547 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2548 if (regmatch.regprog == NULL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002549 {
2550 if (patc != pat)
2551 vim_free(patc);
2552 return FAIL;
2553 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554
2555 /*
2556 * round == 1: Count the matches.
2557 * round == 2: Build the array to keep the matches.
2558 */
2559 for (round = 1; round <= 2; ++round)
2560 {
2561 count = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002562 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 {
2564 if (!buf->b_p_bl) /* skip unlisted buffers */
2565 continue;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002566 p = buflist_match(&regmatch, buf, p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 if (p != NULL)
2568 {
2569 if (round == 1)
2570 ++count;
2571 else
2572 {
2573 if (options & WILD_HOME_REPLACE)
2574 p = home_replace_save(buf, p);
2575 else
2576 p = vim_strsave(p);
2577 (*file)[count++] = p;
2578 }
2579 }
2580 }
2581 if (count == 0) /* no match found, break here */
2582 break;
2583 if (round == 1)
2584 {
2585 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2586 if (*file == NULL)
2587 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002588 vim_regfree(regmatch.regprog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002589 if (patc != pat)
2590 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 return FAIL;
2592 }
2593 }
2594 }
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002595 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 if (count) /* match(es) found, break here */
2597 break;
2598 }
2599
Bram Moolenaar05159a02005-02-26 23:04:13 +00002600 if (patc != pat)
2601 vim_free(patc);
2602
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 *num_file = count;
2604 return (count == 0 ? FAIL : OK);
2605}
2606
2607#endif /* FEAT_CMDL_COMPL */
2608
2609#ifdef HAVE_BUFLIST_MATCH
2610/*
2611 * Check for a match on the file name for buffer "buf" with regprog "prog".
2612 */
2613 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002614buflist_match(
2615 regmatch_T *rmp,
2616 buf_T *buf,
2617 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618{
2619 char_u *match;
2620
2621 /* First try the short file name, then the long file name. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002622 match = fname_match(rmp, buf->b_sfname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 if (match == NULL)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002624 match = fname_match(rmp, buf->b_ffname, ignore_case);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625
2626 return match;
2627}
2628
2629/*
2630 * Try matching the regexp in "prog" with file name "name".
2631 * Return "name" when there is a match, NULL when not.
2632 */
2633 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002634fname_match(
2635 regmatch_T *rmp,
2636 char_u *name,
2637 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638{
2639 char_u *match = NULL;
2640 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641
2642 if (name != NULL)
2643 {
Bram Moolenaar4b9d6372014-09-23 14:24:40 +02002644 /* Ignore case when 'fileignorecase' or the argument is set. */
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002645 rmp->rm_ic = p_fic || ignore_case;
2646 if (vim_regexec(rmp, name, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 match = name;
2648 else
2649 {
2650 /* Replace $(HOME) with '~' and try matching again. */
2651 p = home_replace_save(NULL, name);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01002652 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 match = name;
2654 vim_free(p);
2655 }
2656 }
2657
2658 return match;
2659}
2660#endif
2661
2662/*
Bram Moolenaar480778b2016-07-14 22:09:39 +02002663 * Find a file in the buffer list by buffer number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 */
2665 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002666buflist_findnr(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667{
Bram Moolenaar480778b2016-07-14 22:09:39 +02002668 char_u key[VIM_SIZEOF_INT * 2 + 1];
2669 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670
2671 if (nr == 0)
2672 nr = curwin->w_alt_fnum;
Bram Moolenaar480778b2016-07-14 22:09:39 +02002673 sprintf((char *)key, "%x", nr);
2674 hi = hash_find(&buf_hashtab, key);
2675
2676 if (!HASHITEM_EMPTY(hi))
2677 return (buf_T *)(hi->hi_key
2678 - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 return NULL;
2680}
2681
2682/*
2683 * Get name of file 'n' in the buffer list.
2684 * When the file has no name an empty string is returned.
2685 * home_replace() is used to shorten the file name (used for marks).
2686 * Returns a pointer to allocated memory, of NULL when failed.
2687 */
2688 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002689buflist_nr2name(
2690 int n,
2691 int fullname,
2692 int helptail) /* for help buffers return tail only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693{
2694 buf_T *buf;
2695
2696 buf = buflist_findnr(n);
2697 if (buf == NULL)
2698 return NULL;
2699 return home_replace_save(helptail ? buf : NULL,
2700 fullname ? buf->b_ffname : buf->b_fname);
2701}
2702
2703/*
2704 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2705 * When "copy_options" is TRUE save the local window option values.
2706 * When "lnum" is 0 only do the options.
2707 */
2708 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002709buflist_setfpos(
2710 buf_T *buf,
2711 win_T *win,
2712 linenr_T lnum,
2713 colnr_T col,
2714 int copy_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715{
2716 wininfo_T *wip;
2717
2718 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2719 if (wip->wi_win == win)
2720 break;
2721 if (wip == NULL)
2722 {
2723 /* allocate a new entry */
2724 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2725 if (wip == NULL)
2726 return;
2727 wip->wi_win = win;
2728 if (lnum == 0) /* set lnum even when it's 0 */
2729 lnum = 1;
2730 }
2731 else
2732 {
2733 /* remove the entry from the list */
2734 if (wip->wi_prev)
2735 wip->wi_prev->wi_next = wip->wi_next;
2736 else
2737 buf->b_wininfo = wip->wi_next;
2738 if (wip->wi_next)
2739 wip->wi_next->wi_prev = wip->wi_prev;
2740 if (copy_options && wip->wi_optset)
2741 {
2742 clear_winopt(&wip->wi_opt);
2743#ifdef FEAT_FOLDING
2744 deleteFoldRecurse(&wip->wi_folds);
2745#endif
2746 }
2747 }
2748 if (lnum != 0)
2749 {
2750 wip->wi_fpos.lnum = lnum;
2751 wip->wi_fpos.col = col;
2752 }
2753 if (copy_options)
2754 {
2755 /* Save the window-specific option values. */
2756 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2757#ifdef FEAT_FOLDING
2758 wip->wi_fold_manual = win->w_fold_manual;
2759 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2760#endif
2761 wip->wi_optset = TRUE;
2762 }
2763
2764 /* insert the entry in front of the list */
2765 wip->wi_next = buf->b_wininfo;
2766 buf->b_wininfo = wip;
2767 wip->wi_prev = NULL;
2768 if (wip->wi_next)
2769 wip->wi_next->wi_prev = wip;
2770
2771 return;
2772}
2773
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002774#ifdef FEAT_DIFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01002775static int wininfo_other_tab_diff(wininfo_T *wip);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002776
2777/*
2778 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2779 * page. That's because a diff is local to a tab page.
2780 */
2781 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002782wininfo_other_tab_diff(wininfo_T *wip)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002783{
2784 win_T *wp;
2785
2786 if (wip->wi_opt.wo_diff)
2787 {
Bram Moolenaar29323592016-07-24 22:04:11 +02002788 FOR_ALL_WINDOWS(wp)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002789 /* return FALSE when it's a window in the current tab page, thus
2790 * the buffer was in diff mode here */
2791 if (wip->wi_win == wp)
2792 return FALSE;
2793 return TRUE;
2794 }
2795 return FALSE;
2796}
2797#endif
2798
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799/*
2800 * Find info for the current window in buffer "buf".
2801 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002802 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2803 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 * Returns NULL when there isn't any info.
2805 */
2806 static wininfo_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002807find_wininfo(
2808 buf_T *buf,
2809 int skip_diff_buffer UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810{
2811 wininfo_T *wip;
2812
2813 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002814 if (wip->wi_win == curwin
2815#ifdef FEAT_DIFF
2816 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2817#endif
2818 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002820
2821 /* If no wininfo for curwin, use the first in the list (that doesn't have
2822 * 'diff' set and is in another tab page). */
2823 if (wip == NULL)
2824 {
2825#ifdef FEAT_DIFF
2826 if (skip_diff_buffer)
2827 {
2828 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2829 if (!wininfo_other_tab_diff(wip))
2830 break;
2831 }
2832 else
2833#endif
2834 wip = buf->b_wininfo;
2835 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 return wip;
2837}
2838
2839/*
2840 * Reset the local window options to the values last used in this window.
2841 * If the buffer wasn't used in this window before, use the values from
2842 * the most recently used window. If the values were never set, use the
2843 * global values for the window.
2844 */
2845 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002846get_winopts(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847{
2848 wininfo_T *wip;
2849
2850 clear_winopt(&curwin->w_onebuf_opt);
2851#ifdef FEAT_FOLDING
2852 clearFolding(curwin);
2853#endif
2854
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002855 wip = find_wininfo(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 if (wip != NULL && wip->wi_optset)
2857 {
2858 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2859#ifdef FEAT_FOLDING
2860 curwin->w_fold_manual = wip->wi_fold_manual;
2861 curwin->w_foldinvalid = TRUE;
2862 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2863#endif
2864 }
2865 else
2866 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2867
2868#ifdef FEAT_FOLDING
2869 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2870 if (p_fdls >= 0)
2871 curwin->w_p_fdl = p_fdls;
2872#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002873#ifdef FEAT_SYN_HL
2874 check_colorcolumn(curwin);
2875#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876}
2877
2878/*
2879 * Find the position (lnum and col) for the buffer 'buf' for the current
2880 * window.
2881 * Returns a pointer to no_position if no position is found.
2882 */
2883 pos_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002884buflist_findfpos(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885{
2886 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002887 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002889 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 if (wip != NULL)
2891 return &(wip->wi_fpos);
2892 else
2893 return &no_position;
2894}
2895
2896/*
2897 * Find the lnum for the buffer 'buf' for the current window.
2898 */
2899 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002900buflist_findlnum(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901{
2902 return buflist_findfpos(buf)->lnum;
2903}
2904
2905#if defined(FEAT_LISTCMDS) || defined(PROTO)
2906/*
2907 * List all know file names (for :files and :buffers command).
2908 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002910buflist_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911{
2912 buf_T *buf;
2913 int len;
2914 int i;
2915
2916 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2917 {
2918 /* skip unlisted buffers, unless ! was used */
Bram Moolenaard51cb702015-07-21 15:03:06 +02002919 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2920 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2921 || (vim_strchr(eap->arg, '+')
2922 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
2923 || (vim_strchr(eap->arg, 'a')
2924 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
2925 || (vim_strchr(eap->arg, 'h')
2926 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
2927 || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
2928 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
2929 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
2930 || (vim_strchr(eap->arg, '%') && buf != curbuf)
2931 || (vim_strchr(eap->arg, '#')
2932 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 continue;
2934 msg_putchar('\n');
2935 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02002936 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 else
2938 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
2939
Bram Moolenaar50cde822005-06-05 21:54:54 +00002940 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 buf->b_fnum,
2942 buf->b_p_bl ? ' ' : 'u',
2943 buf == curbuf ? '%' :
2944 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
2945 buf->b_ml.ml_mfp == NULL ? ' ' :
2946 (buf->b_nwindows == 0 ? 'h' : 'a'),
2947 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
2948 (buf->b_flags & BF_READERR) ? 'x'
Bram Moolenaar51485f02005-06-04 21:55:20 +00002949 : (bufIsChanged(buf) ? '+' : ' '),
2950 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01002951 if (len > IOSIZE - 20)
2952 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953
2954 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 i = 40 - vim_strsize(IObuff);
2956 do
2957 {
2958 IObuff[len++] = ' ';
2959 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002960 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
2961 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002962 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 msg_outtrans(IObuff);
2964 out_flush(); /* output one line at a time */
2965 ui_breakcheck();
2966 }
2967}
2968#endif
2969
2970/*
2971 * Get file name and line number for file 'fnum'.
2972 * Used by DoOneCmd() for translating '%' and '#'.
2973 * Used by insert_reg() and cmdline_paste() for '#' register.
2974 * Return FAIL if not found, OK for success.
2975 */
2976 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002977buflist_name_nr(
2978 int fnum,
2979 char_u **fname,
2980 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981{
2982 buf_T *buf;
2983
2984 buf = buflist_findnr(fnum);
2985 if (buf == NULL || buf->b_fname == NULL)
2986 return FAIL;
2987
2988 *fname = buf->b_fname;
2989 *lnum = buflist_findlnum(buf);
2990
2991 return OK;
2992}
2993
2994/*
2995 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
2996 * The file name with the full path is also remembered, for when :cd is used.
2997 * Returns FAIL for failure (file name already in use by other buffer)
2998 * OK otherwise.
2999 */
3000 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003001setfname(
3002 buf_T *buf,
3003 char_u *ffname,
3004 char_u *sfname,
3005 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006{
Bram Moolenaar81695252004-12-29 20:58:21 +00003007 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003009 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010#endif
3011
3012 if (ffname == NULL || *ffname == NUL)
3013 {
3014 /* Removing the name. */
3015 vim_free(buf->b_ffname);
3016 vim_free(buf->b_sfname);
3017 buf->b_ffname = NULL;
3018 buf->b_sfname = NULL;
3019#ifdef UNIX
3020 st.st_dev = (dev_T)-1;
3021#endif
3022 }
3023 else
3024 {
3025 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3026 if (ffname == NULL) /* out of memory */
3027 return FAIL;
3028
3029 /*
3030 * if the file name is already used in another buffer:
3031 * - if the buffer is loaded, fail
3032 * - if the buffer is not loaded, delete it from the list
3033 */
3034#ifdef UNIX
3035 if (mch_stat((char *)ffname, &st) < 0)
3036 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003037#endif
3038 if (!(buf->b_flags & BF_DUMMY))
3039#ifdef UNIX
3040 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003042 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043#endif
3044 if (obuf != NULL && obuf != buf)
3045 {
3046 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3047 {
3048 if (message)
3049 EMSG(_("E95: Buffer with this name already exists"));
3050 vim_free(ffname);
3051 return FAIL;
3052 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003053 /* delete from the list */
3054 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 }
3056 sfname = vim_strsave(sfname);
3057 if (ffname == NULL || sfname == NULL)
3058 {
3059 vim_free(sfname);
3060 vim_free(ffname);
3061 return FAIL;
3062 }
3063#ifdef USE_FNAME_CASE
3064# ifdef USE_LONG_FNAME
3065 if (USE_LONG_FNAME)
3066# endif
3067 fname_case(sfname, 0); /* set correct case for short file name */
3068#endif
3069 vim_free(buf->b_ffname);
3070 vim_free(buf->b_sfname);
3071 buf->b_ffname = ffname;
3072 buf->b_sfname = sfname;
3073 }
3074 buf->b_fname = buf->b_sfname;
3075#ifdef UNIX
3076 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003077 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078 else
3079 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003080 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 buf->b_dev = st.st_dev;
3082 buf->b_ino = st.st_ino;
3083 }
3084#endif
3085
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087
3088 buf_name_changed(buf);
3089 return OK;
3090}
3091
3092/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003093 * Crude way of changing the name of a buffer. Use with care!
3094 * The name should be relative to the current directory.
3095 */
3096 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003097buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003098{
3099 buf_T *buf;
3100
3101 buf = buflist_findnr(fnum);
3102 if (buf != NULL)
3103 {
3104 vim_free(buf->b_sfname);
3105 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003106 buf->b_ffname = vim_strsave(name);
3107 buf->b_sfname = NULL;
3108 /* Allocate ffname and expand into full path. Also resolves .lnk
3109 * files on Win32. */
3110 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003111 buf->b_fname = buf->b_sfname;
3112 }
3113}
3114
3115/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116 * Take care of what needs to be done when the name of buffer "buf" has
3117 * changed.
3118 */
3119 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003120buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121{
3122 /*
3123 * If the file name changed, also change the name of the swapfile
3124 */
3125 if (buf->b_ml.ml_mfp != NULL)
3126 ml_setname(buf);
3127
3128 if (curwin->w_buffer == buf)
3129 check_arg_idx(curwin); /* check file name for arg list */
3130#ifdef FEAT_TITLE
3131 maketitle(); /* set window title */
3132#endif
3133#ifdef FEAT_WINDOWS
3134 status_redraw_all(); /* status lines need to be redrawn */
3135#endif
3136 fmarks_check_names(buf); /* check named file marks */
3137 ml_timestamp(buf); /* reset timestamp */
3138}
3139
3140/*
3141 * set alternate file name for current window
3142 *
3143 * Used by do_one_cmd(), do_write() and do_ecmd().
3144 * Return the buffer.
3145 */
3146 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003147setaltfname(
3148 char_u *ffname,
3149 char_u *sfname,
3150 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151{
3152 buf_T *buf;
3153
3154 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3155 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003156 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 curwin->w_alt_fnum = buf->b_fnum;
3158 return buf;
3159}
3160
3161/*
3162 * Get alternate file name for current window.
3163 * Return NULL if there isn't any, and give error message if requested.
3164 */
3165 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003166getaltfname(
3167 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168{
3169 char_u *fname;
3170 linenr_T dummy;
3171
3172 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3173 {
3174 if (errmsg)
3175 EMSG(_(e_noalt));
3176 return NULL;
3177 }
3178 return fname;
3179}
3180
3181/*
3182 * Add a file name to the buflist and return its number.
3183 * Uses same flags as buflist_new(), except BLN_DUMMY.
3184 *
3185 * used by qf_init(), main() and doarglist()
3186 */
3187 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003188buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189{
3190 buf_T *buf;
3191
3192 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3193 if (buf != NULL)
3194 return buf->b_fnum;
3195 return 0;
3196}
3197
3198#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3199/*
3200 * Adjust slashes in file names. Called after 'shellslash' was set.
3201 */
3202 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003203buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204{
3205 buf_T *bp;
3206
Bram Moolenaar29323592016-07-24 22:04:11 +02003207 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 {
3209 if (bp->b_ffname != NULL)
3210 slash_adjust(bp->b_ffname);
3211 if (bp->b_sfname != NULL)
3212 slash_adjust(bp->b_sfname);
3213 }
3214}
3215#endif
3216
3217/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003218 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 * Also save the local window option values.
3220 */
3221 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003222buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003224 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225}
3226
3227/*
3228 * Return TRUE if 'ffname' is not the same file as current file.
3229 * Fname must have a full path (expanded by mch_FullName()).
3230 */
3231 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003232otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233{
3234 return otherfile_buf(curbuf, ffname
3235#ifdef UNIX
3236 , NULL
3237#endif
3238 );
3239}
3240
3241 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003242otherfile_buf(
3243 buf_T *buf,
3244 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003246 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003248 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249{
3250 /* no name is different */
3251 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3252 return TRUE;
3253 if (fnamecmp(ffname, buf->b_ffname) == 0)
3254 return FALSE;
3255#ifdef UNIX
3256 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003257 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258
Bram Moolenaar8767f522016-07-01 17:17:39 +02003259 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 if (stp == NULL)
3261 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003262 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 st.st_dev = (dev_T)-1;
3264 stp = &st;
3265 }
3266 /* Use dev/ino to check if the files are the same, even when the names
3267 * are different (possible with links). Still need to compare the
3268 * name above, for when the file doesn't exist yet.
3269 * Problem: The dev/ino changes when a file is deleted (and created
3270 * again) and remains the same when renamed/moved. We don't want to
3271 * mch_stat() each buffer each time, that would be too slow. Get the
3272 * dev/ino again when they appear to match, but not when they appear
3273 * to be different: Could skip a buffer when it's actually the same
3274 * file. */
3275 if (buf_same_ino(buf, stp))
3276 {
3277 buf_setino(buf);
3278 if (buf_same_ino(buf, stp))
3279 return FALSE;
3280 }
3281 }
3282#endif
3283 return TRUE;
3284}
3285
3286#if defined(UNIX) || defined(PROTO)
3287/*
3288 * Set inode and device number for a buffer.
3289 * Must always be called when b_fname is changed!.
3290 */
3291 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003292buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003294 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295
3296 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3297 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003298 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 buf->b_dev = st.st_dev;
3300 buf->b_ino = st.st_ino;
3301 }
3302 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003303 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304}
3305
3306/*
3307 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3308 */
3309 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003310buf_same_ino(
3311 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003312 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003314 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 && stp->st_dev == buf->b_dev
3316 && stp->st_ino == buf->b_ino);
3317}
3318#endif
3319
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003320/*
3321 * Print info about the current buffer.
3322 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003324fileinfo(
3325 int fullname, /* when non-zero print full path */
3326 int shorthelp,
3327 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328{
3329 char_u *name;
3330 int n;
3331 char_u *p;
3332 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003333 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334
3335 buffer = alloc(IOSIZE);
3336 if (buffer == NULL)
3337 return;
3338
3339 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3340 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003341 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 p = buffer + STRLEN(buffer);
3343 }
3344 else
3345 p = buffer;
3346
3347 *p++ = '"';
3348 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003349 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 else
3351 {
3352 if (!fullname && curbuf->b_fname != NULL)
3353 name = curbuf->b_fname;
3354 else
3355 name = curbuf->b_ffname;
3356 home_replace(shorthelp ? curbuf : NULL, name, p,
3357 (int)(IOSIZE - (p - buffer)), TRUE);
3358 }
3359
Bram Moolenaara800b422010-06-27 01:15:55 +02003360 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 curbufIsChanged() ? (shortmess(SHM_MOD)
3362 ? " [+]" : _(" [Modified]")) : " ",
3363 (curbuf->b_flags & BF_NOTEDITED)
3364#ifdef FEAT_QUICKFIX
3365 && !bt_dontwrite(curbuf)
3366#endif
3367 ? _("[Not edited]") : "",
3368 (curbuf->b_flags & BF_NEW)
3369#ifdef FEAT_QUICKFIX
3370 && !bt_dontwrite(curbuf)
3371#endif
3372 ? _("[New file]") : "",
3373 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003374 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 : _("[readonly]")) : "",
3376 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3377 || curbuf->b_p_ro) ?
3378 " " : "");
3379 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3380 * causes an overflow, thus for large numbers divide instead. */
3381 if (curwin->w_cursor.lnum > 1000000L)
3382 n = (int)(((long)curwin->w_cursor.lnum) /
3383 ((long)curbuf->b_ml.ml_line_count / 100L));
3384 else
3385 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3386 (long)curbuf->b_ml.ml_line_count);
3387 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3388 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003389 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 }
3391#ifdef FEAT_CMDL_INFO
3392 else if (p_ru)
3393 {
3394 /* Current line and column are already on the screen -- webb */
3395 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003396 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003398 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 (long)curbuf->b_ml.ml_line_count, n);
3400 }
3401#endif
3402 else
3403 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003404 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 _("line %ld of %ld --%d%%-- col "),
3406 (long)curwin->w_cursor.lnum,
3407 (long)curbuf->b_ml.ml_line_count,
3408 n);
3409 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003410 len = STRLEN(buffer);
3411 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3413 }
3414
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003415 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416
3417 if (dont_truncate)
3418 {
3419 /* Temporarily set msg_scroll to avoid the message being truncated.
3420 * First call msg_start() to get the message in the right place. */
3421 msg_start();
3422 n = msg_scroll;
3423 msg_scroll = TRUE;
3424 msg(buffer);
3425 msg_scroll = n;
3426 }
3427 else
3428 {
3429 p = msg_trunc_attr(buffer, FALSE, 0);
3430 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 /* Need to repeat the message after redrawing when:
3432 * - When restart_edit is set (otherwise there will be a delay
3433 * before redrawing).
3434 * - When the screen was scrolled but there is no wait-return
3435 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003436 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 }
3438
3439 vim_free(buffer);
3440}
3441
3442 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003443col_print(
3444 char_u *buf,
3445 size_t buflen,
3446 int col,
3447 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448{
3449 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003450 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003452 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453}
3454
3455#if defined(FEAT_TITLE) || defined(PROTO)
3456/*
3457 * put file name in title bar of window and in icon title
3458 */
3459
3460static char_u *lasttitle = NULL;
3461static char_u *lasticon = NULL;
3462
3463 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003464maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465{
3466 char_u *p;
3467 char_u *t_str = NULL;
3468 char_u *i_name;
3469 char_u *i_str = NULL;
3470 int maxlen = 0;
3471 int len;
3472 int mustset;
3473 char_u buf[IOSIZE];
3474 int off;
3475
3476 if (!redrawing())
3477 {
3478 /* Postpone updating the title when 'lazyredraw' is set. */
3479 need_maketitle = TRUE;
3480 return;
3481 }
3482
3483 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003484 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 return;
3486
3487 if (p_title)
3488 {
3489 if (p_titlelen > 0)
3490 {
3491 maxlen = p_titlelen * Columns / 100;
3492 if (maxlen < 10)
3493 maxlen = 10;
3494 }
3495
3496 t_str = buf;
3497 if (*p_titlestring != NUL)
3498 {
3499#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003500 if (stl_syntax & STL_IN_TITLE)
3501 {
3502 int use_sandbox = FALSE;
3503 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003504
3505# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003506 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003507# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003508 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003510 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003511 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003512 if (called_emsg)
3513 set_string_option_direct((char_u *)"titlestring", -1,
3514 (char_u *)"", OPT_FREE, SID_ERROR);
3515 called_emsg |= save_called_emsg;
3516 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 else
3518#endif
3519 t_str = p_titlestring;
3520 }
3521 else
3522 {
3523 /* format: "fname + (path) (1 of 2) - VIM" */
3524
Bram Moolenaar2c666692012-09-05 13:30:40 +02003525#define SPACE_FOR_FNAME (IOSIZE - 100)
3526#define SPACE_FOR_DIR (IOSIZE - 20)
3527#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003529 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 else
3531 {
3532 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003533 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 }
3536
3537 switch (bufIsChanged(curbuf)
3538 + (curbuf->b_p_ro * 2)
3539 + (!curbuf->b_p_ma * 4))
3540 {
3541 case 1: STRCAT(buf, " +"); break;
3542 case 2: STRCAT(buf, " ="); break;
3543 case 3: STRCAT(buf, " =+"); break;
3544 case 4:
3545 case 6: STRCAT(buf, " -"); break;
3546 case 5:
3547 case 7: STRCAT(buf, " -+"); break;
3548 }
3549
3550 if (curbuf->b_fname != NULL)
3551 {
3552 /* Get path of file, replace home dir with ~ */
3553 off = (int)STRLEN(buf);
3554 buf[off++] = ' ';
3555 buf[off++] = '(';
3556 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003557 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558#ifdef BACKSLASH_IN_FILENAME
3559 /* avoid "c:/name" to be reduced to "c" */
3560 if (isalpha(buf[off]) && buf[off + 1] == ':')
3561 off += 2;
3562#endif
3563 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003564 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 if (p == buf + off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566 /* must be a help buffer */
Bram Moolenaarb6356332005-07-18 21:40:44 +00003567 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003568 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003571
Bram Moolenaar2c666692012-09-05 13:30:40 +02003572 /* Translate unprintable chars and concatenate. Keep some
3573 * room for the server name. When there is no room (very long
3574 * file name) use (...). */
3575 if (off < SPACE_FOR_DIR)
3576 {
3577 p = transstr(buf + off);
3578 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3579 vim_free(p);
3580 }
3581 else
3582 {
3583 vim_strncpy(buf + off, (char_u *)"...",
3584 (size_t)(SPACE_FOR_ARGNR - off));
3585 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 STRCAT(buf, ")");
3587 }
3588
Bram Moolenaar2c666692012-09-05 13:30:40 +02003589 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590
3591#if defined(FEAT_CLIENTSERVER)
3592 if (serverName != NULL)
3593 {
3594 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003595 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 }
3597 else
3598#endif
3599 STRCAT(buf, " - VIM");
3600
3601 if (maxlen > 0)
3602 {
3603 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003604 if (vim_strsize(buf) > maxlen)
3605 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606 }
3607 }
3608 }
3609 mustset = ti_change(t_str, &lasttitle);
3610
3611 if (p_icon)
3612 {
3613 i_str = buf;
3614 if (*p_iconstring != NUL)
3615 {
3616#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003617 if (stl_syntax & STL_IN_ICON)
3618 {
3619 int use_sandbox = FALSE;
3620 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003621
3622# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003623 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003624# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003625 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003627 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003628 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003629 if (called_emsg)
3630 set_string_option_direct((char_u *)"iconstring", -1,
3631 (char_u *)"", OPT_FREE, SID_ERROR);
3632 called_emsg |= save_called_emsg;
3633 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 else
3635#endif
3636 i_str = p_iconstring;
3637 }
3638 else
3639 {
3640 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003641 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 else /* use file name only in icon */
3643 i_name = gettail(curbuf->b_ffname);
3644 *i_str = NUL;
3645 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003646 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 if (len > 100)
3648 {
3649 len -= 100;
3650#ifdef FEAT_MBYTE
3651 if (has_mbyte)
3652 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3653#endif
3654 i_name += len;
3655 }
3656 STRCPY(i_str, i_name);
3657 trans_characters(i_str, IOSIZE);
3658 }
3659 }
3660
3661 mustset |= ti_change(i_str, &lasticon);
3662
3663 if (mustset)
3664 resettitle();
3665}
3666
3667/*
3668 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3669 * from "str" if it does.
3670 * Return TRUE when "*last" changed.
3671 */
3672 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003673ti_change(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674{
3675 if ((str == NULL) != (*last == NULL)
3676 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3677 {
3678 vim_free(*last);
3679 if (str == NULL)
3680 *last = NULL;
3681 else
3682 *last = vim_strsave(str);
3683 return TRUE;
3684 }
3685 return FALSE;
3686}
3687
3688/*
3689 * Put current window title back (used after calling a shell)
3690 */
3691 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003692resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693{
3694 mch_settitle(lasttitle, lasticon);
3695}
Bram Moolenaarea408852005-06-25 22:49:46 +00003696
3697# if defined(EXITFREE) || defined(PROTO)
3698 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003699free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003700{
3701 vim_free(lasttitle);
3702 vim_free(lasticon);
3703}
3704# endif
3705
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706#endif /* FEAT_TITLE */
3707
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003708#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003710 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 * Return length of string in screen cells.
3712 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003713 * Normally works for window "wp", except when working for 'tabline' then it
3714 * is "curwin".
3715 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 * Items are drawn interspersed with the text that surrounds it
3717 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3718 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3719 *
3720 * If maxwidth is not zero, the string will be filled at any middle marker
3721 * or truncated if too long, fillchar is used for all whitespace.
3722 */
3723 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003724build_stl_str_hl(
3725 win_T *wp,
3726 char_u *out, /* buffer to write into != NameBuff */
3727 size_t outlen, /* length of out[] */
3728 char_u *fmt,
3729 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3730 int fillchar,
3731 int maxwidth,
3732 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3733 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734{
3735 char_u *p;
3736 char_u *s;
3737 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003738 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739#ifdef FEAT_EVAL
3740 win_T *o_curwin;
3741 buf_T *o_curbuf;
3742#endif
3743 int empty_line;
3744 colnr_T virtcol;
3745 long l;
3746 long n;
3747 int prevchar_isflag;
3748 int prevchar_isitem;
3749 int itemisflag;
3750 int fillable;
3751 char_u *str;
3752 long num;
3753 int width;
3754 int itemcnt;
3755 int curitem;
3756 int groupitem[STL_MAX_ITEM];
3757 int groupdepth;
3758 struct stl_item
3759 {
3760 char_u *start;
3761 int minwid;
3762 int maxwid;
3763 enum
3764 {
3765 Normal,
3766 Empty,
3767 Group,
3768 Middle,
3769 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003770 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 Trunc
3772 } type;
3773 } item[STL_MAX_ITEM];
3774 int minwid;
3775 int maxwid;
3776 int zeropad;
3777 char_u base;
3778 char_u opt;
3779#define TMPLEN 70
3780 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003781 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003782 struct stl_hlrec *sp;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003783
3784#ifdef FEAT_EVAL
3785 /*
3786 * When the format starts with "%!" then evaluate it as an expression and
3787 * use the result as the actual format string.
3788 */
3789 if (fmt[0] == '%' && fmt[1] == '!')
3790 {
3791 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3792 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003793 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003794 }
3795#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796
3797 if (fillchar == 0)
3798 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003799#ifdef FEAT_MBYTE
3800 /* Can't handle a multi-byte fill character yet. */
3801 else if (mb_char2len(fillchar) > 1)
3802 fillchar = '-';
3803#endif
3804
Bram Moolenaar567199b2013-04-24 16:52:36 +02003805 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3806 * p will become invalid when getting another buffer line. */
3807 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3808 empty_line = (*p == NUL);
3809
3810 /* Get the byte value now, in case we need it below. This is more
3811 * efficient than making a copy of the line. */
3812 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3813 byteval = 0;
3814 else
3815#ifdef FEAT_MBYTE
3816 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3817#else
3818 byteval = p[wp->w_cursor.col];
3819#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820
3821 groupdepth = 0;
3822 p = out;
3823 curitem = 0;
3824 prevchar_isflag = TRUE;
3825 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003826 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003828 if (curitem == STL_MAX_ITEM)
3829 {
3830 /* There are too many items. Add the error code to the statusline
3831 * to give the user a hint about what went wrong. */
3832 if (p + 6 < out + outlen)
3833 {
3834 mch_memmove(p, " E541", (size_t)5);
3835 p += 5;
3836 }
3837 break;
3838 }
3839
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 if (*s != NUL && *s != '%')
3841 prevchar_isflag = prevchar_isitem = FALSE;
3842
3843 /*
3844 * Handle up to the next '%' or the end.
3845 */
3846 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3847 *p++ = *s++;
3848 if (*s == NUL || p + 1 >= out + outlen)
3849 break;
3850
3851 /*
3852 * Handle one '%' item.
3853 */
3854 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003855 if (*s == NUL) /* ignore trailing % */
3856 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 if (*s == '%')
3858 {
3859 if (p + 1 >= out + outlen)
3860 break;
3861 *p++ = *s++;
3862 prevchar_isflag = prevchar_isitem = FALSE;
3863 continue;
3864 }
3865 if (*s == STL_MIDDLEMARK)
3866 {
3867 s++;
3868 if (groupdepth > 0)
3869 continue;
3870 item[curitem].type = Middle;
3871 item[curitem++].start = p;
3872 continue;
3873 }
3874 if (*s == STL_TRUNCMARK)
3875 {
3876 s++;
3877 item[curitem].type = Trunc;
3878 item[curitem++].start = p;
3879 continue;
3880 }
3881 if (*s == ')')
3882 {
3883 s++;
3884 if (groupdepth < 1)
3885 continue;
3886 groupdepth--;
3887
3888 t = item[groupitem[groupdepth]].start;
3889 *p = NUL;
3890 l = vim_strsize(t);
3891 if (curitem > groupitem[groupdepth] + 1
3892 && item[groupitem[groupdepth]].minwid == 0)
3893 {
3894 /* remove group if all items are empty */
3895 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaaraf6e36f2016-03-08 12:56:33 +01003896 if (item[n].type == Normal || item[n].type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 break;
3898 if (n == curitem)
3899 {
3900 p = t;
3901 l = 0;
3902 }
3903 }
3904 if (l > item[groupitem[groupdepth]].maxwid)
3905 {
3906 /* truncate, remove n bytes of text at the start */
3907#ifdef FEAT_MBYTE
3908 if (has_mbyte)
3909 {
3910 /* Find the first character that should be included. */
3911 n = 0;
3912 while (l >= item[groupitem[groupdepth]].maxwid)
3913 {
3914 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003915 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 }
3917 }
3918 else
3919#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003920 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921
3922 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003923 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 p = p - n + 1;
3925#ifdef FEAT_MBYTE
3926 /* Fill up space left over by half a double-wide char. */
3927 while (++l < item[groupitem[groupdepth]].minwid)
3928 *p++ = fillchar;
3929#endif
3930
3931 /* correct the start of the items for the truncation */
3932 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
3933 {
3934 item[l].start -= n;
3935 if (item[l].start < t)
3936 item[l].start = t;
3937 }
3938 }
3939 else if (abs(item[groupitem[groupdepth]].minwid) > l)
3940 {
3941 /* fill */
3942 n = item[groupitem[groupdepth]].minwid;
3943 if (n < 0)
3944 {
3945 /* fill by appending characters */
3946 n = 0 - n;
3947 while (l++ < n && p + 1 < out + outlen)
3948 *p++ = fillchar;
3949 }
3950 else
3951 {
3952 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003953 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 l = n - l;
3955 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003956 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 p += l;
3958 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3959 item[n].start += l;
3960 for ( ; l > 0; l--)
3961 *t++ = fillchar;
3962 }
3963 }
3964 continue;
3965 }
3966 minwid = 0;
3967 maxwid = 9999;
3968 zeropad = FALSE;
3969 l = 1;
3970 if (*s == '0')
3971 {
3972 s++;
3973 zeropad = TRUE;
3974 }
3975 if (*s == '-')
3976 {
3977 s++;
3978 l = -1;
3979 }
3980 if (VIM_ISDIGIT(*s))
3981 {
3982 minwid = (int)getdigits(&s);
3983 if (minwid < 0) /* overflow */
3984 minwid = 0;
3985 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003986 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 {
3988 item[curitem].type = Highlight;
3989 item[curitem].start = p;
3990 item[curitem].minwid = minwid > 9 ? 1 : minwid;
3991 s++;
3992 curitem++;
3993 continue;
3994 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003995 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
3996 {
3997 if (*s == STL_TABCLOSENR)
3998 {
3999 if (minwid == 0)
4000 {
4001 /* %X ends the close label, go back to the previously
4002 * define tab label nr. */
4003 for (n = curitem - 1; n >= 0; --n)
4004 if (item[n].type == TabPage && item[n].minwid >= 0)
4005 {
4006 minwid = item[n].minwid;
4007 break;
4008 }
4009 }
4010 else
4011 /* close nrs are stored as negative values */
4012 minwid = - minwid;
4013 }
4014 item[curitem].type = TabPage;
4015 item[curitem].start = p;
4016 item[curitem].minwid = minwid;
4017 s++;
4018 curitem++;
4019 continue;
4020 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 if (*s == '.')
4022 {
4023 s++;
4024 if (VIM_ISDIGIT(*s))
4025 {
4026 maxwid = (int)getdigits(&s);
4027 if (maxwid <= 0) /* overflow */
4028 maxwid = 50;
4029 }
4030 }
4031 minwid = (minwid > 50 ? 50 : minwid) * l;
4032 if (*s == '(')
4033 {
4034 groupitem[groupdepth++] = curitem;
4035 item[curitem].type = Group;
4036 item[curitem].start = p;
4037 item[curitem].minwid = minwid;
4038 item[curitem].maxwid = maxwid;
4039 s++;
4040 curitem++;
4041 continue;
4042 }
4043 if (vim_strchr(STL_ALL, *s) == NULL)
4044 {
4045 s++;
4046 continue;
4047 }
4048 opt = *s++;
4049
4050 /* OK - now for the real work */
4051 base = 'D';
4052 itemisflag = FALSE;
4053 fillable = TRUE;
4054 num = -1;
4055 str = NULL;
4056 switch (opt)
4057 {
4058 case STL_FILEPATH:
4059 case STL_FULLPATH:
4060 case STL_FILENAME:
4061 fillable = FALSE; /* don't change ' ' to fillchar */
4062 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004063 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 else
4065 {
4066 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004067 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4069 }
4070 trans_characters(NameBuff, MAXPATHL);
4071 if (opt != STL_FILENAME)
4072 str = NameBuff;
4073 else
4074 str = gettail(NameBuff);
4075 break;
4076
4077 case STL_VIM_EXPR: /* '{' */
4078 itemisflag = TRUE;
4079 t = p;
4080 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4081 *p++ = *s++;
4082 if (*s != '}') /* missing '}' or out of space */
4083 break;
4084 s++;
4085 *p = 0;
4086 p = t;
4087
4088#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004089 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 set_internal_string_var((char_u *)"actual_curbuf", tmp);
4091
4092 o_curbuf = curbuf;
4093 o_curwin = curwin;
4094 curwin = wp;
4095 curbuf = wp->w_buffer;
4096
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004097 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098
4099 curwin = o_curwin;
4100 curbuf = o_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004101 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102
4103 if (str != NULL && *str != 0)
4104 {
4105 if (*skipdigits(str) == NUL)
4106 {
4107 num = atoi((char *)str);
4108 vim_free(str);
4109 str = NULL;
4110 itemisflag = FALSE;
4111 }
4112 }
4113#endif
4114 break;
4115
4116 case STL_LINE:
4117 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4118 ? 0L : (long)(wp->w_cursor.lnum);
4119 break;
4120
4121 case STL_NUMLINES:
4122 num = wp->w_buffer->b_ml.ml_line_count;
4123 break;
4124
4125 case STL_COLUMN:
4126 num = !(State & INSERT) && empty_line
4127 ? 0 : (int)wp->w_cursor.col + 1;
4128 break;
4129
4130 case STL_VIRTCOL:
4131 case STL_VIRTCOL_ALT:
4132 /* In list mode virtcol needs to be recomputed */
4133 virtcol = wp->w_virtcol;
4134 if (wp->w_p_list && lcs_tab1 == NUL)
4135 {
4136 wp->w_p_list = FALSE;
4137 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4138 wp->w_p_list = TRUE;
4139 }
4140 ++virtcol;
4141 /* Don't display %V if it's the same as %c. */
4142 if (opt == STL_VIRTCOL_ALT
4143 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4144 ? 0 : (int)wp->w_cursor.col + 1)))
4145 break;
4146 num = (long)virtcol;
4147 break;
4148
4149 case STL_PERCENTAGE:
4150 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4151 (long)wp->w_buffer->b_ml.ml_line_count);
4152 break;
4153
4154 case STL_ALTPERCENT:
4155 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004156 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 break;
4158
4159 case STL_ARGLISTSTAT:
4160 fillable = FALSE;
4161 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004162 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 str = tmp;
4164 break;
4165
4166 case STL_KEYMAP:
4167 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004168 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 str = tmp;
4170 break;
4171 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004172#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004173 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174#else
4175 num = 0;
4176#endif
4177 break;
4178
4179 case STL_BUFNO:
4180 num = wp->w_buffer->b_fnum;
4181 break;
4182
4183 case STL_OFFSET_X:
4184 base = 'X';
4185 case STL_OFFSET:
4186#ifdef FEAT_BYTEOFF
4187 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4188 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4189 0L : l + 1 + (!(State & INSERT) && empty_line ?
4190 0 : (int)wp->w_cursor.col);
4191#endif
4192 break;
4193
4194 case STL_BYTEVAL_X:
4195 base = 'X';
4196 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004197 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 if (num == NL)
4199 num = 0;
4200 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4201 num = NL;
4202 break;
4203
4204 case STL_ROFLAG:
4205 case STL_ROFLAG_ALT:
4206 itemisflag = TRUE;
4207 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004208 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 break;
4210
4211 case STL_HELPFLAG:
4212 case STL_HELPFLAG_ALT:
4213 itemisflag = TRUE;
4214 if (wp->w_buffer->b_help)
4215 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004216 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 break;
4218
4219#ifdef FEAT_AUTOCMD
4220 case STL_FILETYPE:
4221 if (*wp->w_buffer->b_p_ft != NUL
4222 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4223 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004224 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4225 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 str = tmp;
4227 }
4228 break;
4229
4230 case STL_FILETYPE_ALT:
4231 itemisflag = TRUE;
4232 if (*wp->w_buffer->b_p_ft != NUL
4233 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4234 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004235 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4236 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 for (t = tmp; *t != 0; t++)
4238 *t = TOUPPER_LOC(*t);
4239 str = tmp;
4240 }
4241 break;
4242#endif
4243
4244#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4245 case STL_PREVIEWFLAG:
4246 case STL_PREVIEWFLAG_ALT:
4247 itemisflag = TRUE;
4248 if (wp->w_p_pvw)
4249 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4250 : _("[Preview]"));
4251 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004252
4253 case STL_QUICKFIX:
4254 if (bt_quickfix(wp->w_buffer))
4255 str = (char_u *)(wp->w_llist_ref
4256 ? _(msg_loclist)
4257 : _(msg_qflist));
4258 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259#endif
4260
4261 case STL_MODIFIED:
4262 case STL_MODIFIED_ALT:
4263 itemisflag = TRUE;
4264 switch ((opt == STL_MODIFIED_ALT)
4265 + bufIsChanged(wp->w_buffer) * 2
4266 + (!wp->w_buffer->b_p_ma) * 4)
4267 {
4268 case 2: str = (char_u *)"[+]"; break;
4269 case 3: str = (char_u *)",+"; break;
4270 case 4: str = (char_u *)"[-]"; break;
4271 case 5: str = (char_u *)",-"; break;
4272 case 6: str = (char_u *)"[+-]"; break;
4273 case 7: str = (char_u *)",+-"; break;
4274 }
4275 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004276
4277 case STL_HIGHLIGHT:
4278 t = s;
4279 while (*s != '#' && *s != NUL)
4280 ++s;
4281 if (*s == '#')
4282 {
4283 item[curitem].type = Highlight;
4284 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004285 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004286 curitem++;
4287 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004288 if (*s != NUL)
4289 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004290 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 }
4292
4293 item[curitem].start = p;
4294 item[curitem].type = Normal;
4295 if (str != NULL && *str)
4296 {
4297 t = str;
4298 if (itemisflag)
4299 {
4300 if ((t[0] && t[1])
4301 && ((!prevchar_isitem && *t == ',')
4302 || (prevchar_isflag && *t == ' ')))
4303 t++;
4304 prevchar_isflag = TRUE;
4305 }
4306 l = vim_strsize(t);
4307 if (l > 0)
4308 prevchar_isitem = TRUE;
4309 if (l > maxwid)
4310 {
4311 while (l >= maxwid)
4312#ifdef FEAT_MBYTE
4313 if (has_mbyte)
4314 {
4315 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004316 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 }
4318 else
4319#endif
4320 l -= byte2cells(*t++);
4321 if (p + 1 >= out + outlen)
4322 break;
4323 *p++ = '<';
4324 }
4325 if (minwid > 0)
4326 {
4327 for (; l < minwid && p + 1 < out + outlen; l++)
4328 {
4329 /* Don't put a "-" in front of a digit. */
4330 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4331 *p++ = ' ';
4332 else
4333 *p++ = fillchar;
4334 }
4335 minwid = 0;
4336 }
4337 else
4338 minwid *= -1;
4339 while (*t && p + 1 < out + outlen)
4340 {
4341 *p++ = *t++;
4342 /* Change a space by fillchar, unless fillchar is '-' and a
4343 * digit follows. */
4344 if (fillable && p[-1] == ' '
4345 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4346 p[-1] = fillchar;
4347 }
4348 for (; l < minwid && p + 1 < out + outlen; l++)
4349 *p++ = fillchar;
4350 }
4351 else if (num >= 0)
4352 {
4353 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4354 char_u nstr[20];
4355
4356 if (p + 20 >= out + outlen)
4357 break; /* not sufficient space */
4358 prevchar_isitem = TRUE;
4359 t = nstr;
4360 if (opt == STL_VIRTCOL_ALT)
4361 {
4362 *t++ = '-';
4363 minwid--;
4364 }
4365 *t++ = '%';
4366 if (zeropad)
4367 *t++ = '0';
4368 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004369 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 *t = 0;
4371
4372 for (n = num, l = 1; n >= nbase; n /= nbase)
4373 l++;
4374 if (opt == STL_VIRTCOL_ALT)
4375 l++;
4376 if (l > maxwid)
4377 {
4378 l += 2;
4379 n = l - maxwid;
4380 while (l-- > maxwid)
4381 num /= nbase;
4382 *t++ = '>';
4383 *t++ = '%';
4384 *t = t[-3];
4385 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004386 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4387 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 }
4389 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004390 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4391 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 p += STRLEN(p);
4393 }
4394 else
4395 item[curitem].type = Empty;
4396
4397 if (opt == STL_VIM_EXPR)
4398 vim_free(str);
4399
4400 if (num >= 0 || (!itemisflag && str && *str))
4401 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4402 curitem++;
4403 }
4404 *p = NUL;
4405 itemcnt = curitem;
4406
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004407#ifdef FEAT_EVAL
4408 if (usefmt != fmt)
4409 vim_free(usefmt);
4410#endif
4411
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 width = vim_strsize(out);
4413 if (maxwidth > 0 && width > maxwidth)
4414 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004415 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 l = 0;
4417 if (itemcnt == 0)
4418 s = out;
4419 else
4420 {
4421 for ( ; l < itemcnt; l++)
4422 if (item[l].type == Trunc)
4423 {
4424 /* Truncate at %< item. */
4425 s = item[l].start;
4426 break;
4427 }
4428 if (l == itemcnt)
4429 {
4430 /* No %< item, truncate first item. */
4431 s = item[0].start;
4432 l = 0;
4433 }
4434 }
4435
4436 if (width - vim_strsize(s) >= maxwidth)
4437 {
4438 /* Truncation mark is beyond max length */
4439#ifdef FEAT_MBYTE
4440 if (has_mbyte)
4441 {
4442 s = out;
4443 width = 0;
4444 for (;;)
4445 {
4446 width += ptr2cells(s);
4447 if (width >= maxwidth)
4448 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004449 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 }
4451 /* Fill up for half a double-wide character. */
4452 while (++width < maxwidth)
4453 *s++ = fillchar;
4454 }
4455 else
4456#endif
4457 s = out + maxwidth - 1;
4458 for (l = 0; l < itemcnt; l++)
4459 if (item[l].start > s)
4460 break;
4461 itemcnt = l;
4462 *s++ = '>';
4463 *s = 0;
4464 }
4465 else
4466 {
4467#ifdef FEAT_MBYTE
4468 if (has_mbyte)
4469 {
4470 n = 0;
4471 while (width >= maxwidth)
4472 {
4473 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004474 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 }
4476 }
4477 else
4478#endif
4479 n = width - maxwidth + 1;
4480 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004481 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 *s = '<';
4483
4484 /* Fill up for half a double-wide character. */
4485 while (++width < maxwidth)
4486 {
4487 s = s + STRLEN(s);
4488 *s++ = fillchar;
4489 *s = NUL;
4490 }
4491
4492 --n; /* count the '<' */
4493 for (; l < itemcnt; l++)
4494 {
4495 if (item[l].start - n >= s)
4496 item[l].start -= n;
4497 else
4498 item[l].start = s;
4499 }
4500 }
4501 width = maxwidth;
4502 }
4503 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4504 {
4505 /* Apply STL_MIDDLE if any */
4506 for (l = 0; l < itemcnt; l++)
4507 if (item[l].type == Middle)
4508 break;
4509 if (l < itemcnt)
4510 {
4511 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004512 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 for (s = item[l].start; s < p; s++)
4514 *s = fillchar;
4515 for (l++; l < itemcnt; l++)
4516 item[l].start += maxwidth - width;
4517 width = maxwidth;
4518 }
4519 }
4520
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004521 /* Store the info about highlighting. */
4522 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004524 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 for (l = 0; l < itemcnt; l++)
4526 {
4527 if (item[l].type == Highlight)
4528 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004529 sp->start = item[l].start;
4530 sp->userhl = item[l].minwid;
4531 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 }
4533 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004534 sp->start = NULL;
4535 sp->userhl = 0;
4536 }
4537
4538 /* Store the info about tab pages labels. */
4539 if (tabtab != NULL)
4540 {
4541 sp = tabtab;
4542 for (l = 0; l < itemcnt; l++)
4543 {
4544 if (item[l].type == TabPage)
4545 {
4546 sp->start = item[l].start;
4547 sp->userhl = item[l].minwid;
4548 sp++;
4549 }
4550 }
4551 sp->start = NULL;
4552 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 }
4554
4555 return width;
4556}
4557#endif /* FEAT_STL_OPT */
4558
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004559#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4560 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004562 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4563 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 */
4565 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004566get_rel_pos(
4567 win_T *wp,
4568 char_u *buf,
4569 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570{
4571 long above; /* number of lines above window */
4572 long below; /* number of lines below window */
4573
Bram Moolenaar0027c212015-01-07 13:31:52 +01004574 if (buflen < 3) /* need at least 3 chars for writing */
4575 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 above = wp->w_topline - 1;
4577#ifdef FEAT_DIFF
4578 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004579 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4580 above = 0; /* All buffer lines are displayed and there is an
4581 * indication of filler lines, that can be considered
4582 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583#endif
4584 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4585 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004586 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4587 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004589 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004591 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 ? (int)(above / ((above + below) / 100L))
4593 : (int)(above * 100L / (above + below)));
4594}
4595#endif
4596
4597/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004598 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 * Return TRUE if it was appended.
4600 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004601 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004602append_arg_number(
4603 win_T *wp,
4604 char_u *buf,
4605 int buflen,
4606 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607{
4608 char_u *p;
4609
4610 if (ARGCOUNT <= 1) /* nothing to do */
4611 return FALSE;
4612
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004613 p = buf + STRLEN(buf); /* go to the end of the buffer */
4614 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 return FALSE;
4616 *p++ = ' ';
4617 *p++ = '(';
4618 if (add_file)
4619 {
4620 STRCPY(p, "file ");
4621 p += 5;
4622 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004623 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4624 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4626 return TRUE;
4627}
4628
4629/*
4630 * If fname is not a full path, make it a full path.
4631 * Returns pointer to allocated memory (NULL for failure).
4632 */
4633 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004634fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635{
4636 /*
4637 * Force expanding the path always for Unix, because symbolic links may
4638 * mess up the full path name, even though it starts with a '/'.
4639 * Also expand when there is ".." in the file name, try to remove it,
4640 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004641 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 * For MS-Windows also expand names like "longna~1" to "longname".
4643 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004644#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 return FullName_save(fname, TRUE);
4646#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004647 if (!vim_isAbsName(fname)
4648 || strstr((char *)fname, "..") != NULL
4649 || strstr((char *)fname, "//") != NULL
4650# ifdef BACKSLASH_IN_FILENAME
4651 || strstr((char *)fname, "\\\\") != NULL
4652# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004653# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004655# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 )
4657 return FullName_save(fname, FALSE);
4658
4659 fname = vim_strsave(fname);
4660
Bram Moolenaar9b942202007-10-03 12:31:33 +00004661# ifdef USE_FNAME_CASE
4662# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004664# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 {
4666 if (fname != NULL)
4667 fname_case(fname, 0); /* set correct case for file name */
4668 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004669# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670
4671 return fname;
4672#endif
4673}
4674
4675/*
4676 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4677 * "ffname" becomes a pointer to allocated memory (or NULL).
4678 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004680fname_expand(
4681 buf_T *buf UNUSED,
4682 char_u **ffname,
4683 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684{
4685 if (*ffname == NULL) /* if no file name given, nothing to do */
4686 return;
4687 if (*sfname == NULL) /* if no short file name given, use ffname */
4688 *sfname = *ffname;
4689 *ffname = fix_fname(*ffname); /* expand to full path */
4690
4691#ifdef FEAT_SHORTCUT
4692 if (!buf->b_p_bin)
4693 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004694 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695
4696 /* If the file name is a shortcut file, use the file it links to. */
4697 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004698 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 {
4700 vim_free(*ffname);
4701 *ffname = rfname;
4702 *sfname = rfname;
4703 }
4704 }
4705#endif
4706}
4707
4708/*
4709 * Get the file name for an argument list entry.
4710 */
4711 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004712alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713{
4714 buf_T *bp;
4715
4716 /* Use the name from the associated buffer if it exists. */
4717 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004718 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 return aep->ae_fname;
4720 return bp->b_fname;
4721}
4722
4723#if defined(FEAT_WINDOWS) || defined(PROTO)
4724/*
4725 * do_arg_all(): Open up to 'count' windows, one for each argument.
4726 */
4727 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004728do_arg_all(
4729 int count,
4730 int forceit, /* hide buffers in current windows */
4731 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732{
4733 int i;
4734 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004735 char_u *opened; /* Array of weight for which args are open:
4736 * 0: not opened
4737 * 1: opened in other tab
4738 * 2: opened in curtab
4739 * 3: opened in curtab and curwin
4740 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004741 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 int use_firstwin = FALSE; /* use first window for arglist */
4743 int split_ret = OK;
4744 int p_ea_save;
4745 alist_T *alist; /* argument list to be used */
4746 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004747 tabpage_T *tpnext;
4748 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004749 win_T *old_curwin, *last_curwin;
4750 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004751 win_T *new_curwin = NULL;
4752 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753
4754 if (ARGCOUNT <= 0)
4755 {
4756 /* Don't give an error message. We don't want it when the ":all"
4757 * command is in the .vimrc. */
4758 return;
4759 }
4760 setpcmark();
4761
4762 opened_len = ARGCOUNT;
4763 opened = alloc_clear((unsigned)opened_len);
4764 if (opened == NULL)
4765 return;
4766
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004767 /* Autocommands may do anything to the argument list. Make sure it's not
4768 * freed while we are working here by "locking" it. We still have to
4769 * watch out for its size to be changed. */
4770 alist = curwin->w_alist;
4771 ++alist->al_refcount;
4772
4773 old_curwin = curwin;
4774 old_curtab = curtab;
4775
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004776# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004778# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779
4780 /*
4781 * Try closing all windows that are not in the argument list.
4782 * Also close windows that are not full width;
4783 * When 'hidden' or "forceit" set the buffer becomes hidden.
4784 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004785 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004787 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004788 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004789 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004791 tpnext = curtab->tp_next;
4792 for (wp = firstwin; wp != NULL; wp = wpnext)
4793 {
4794 wpnext = wp->w_next;
4795 buf = wp->w_buffer;
4796 if (buf->b_ffname == NULL
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004797 || (!keep_tabs && buf->b_nwindows > 1)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004798 || wp->w_width != Columns)
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004799 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004800 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004802 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004803 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004805 if (i < alist->al_ga.ga_len
4806 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4807 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4808 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004810 int weight = 1;
4811
4812 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004813 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004814 ++weight;
4815 if (old_curwin == wp)
4816 ++weight;
4817 }
4818
4819 if (weight > (int)opened[i])
4820 {
4821 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004822 if (i == 0)
4823 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004824 if (new_curwin != NULL)
4825 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004826 new_curwin = wp;
4827 new_curtab = curtab;
4828 }
4829 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004830 else if (keep_tabs)
4831 i = opened_len;
4832
4833 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004834 {
4835 /* Use the current argument list for all windows
4836 * containing a file from it. */
4837 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004838 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004839 ++wp->w_alist->al_refcount;
4840 }
4841 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843 }
4844 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004845 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004847 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004849 if (P_HID(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004850 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004852 /* If the buffer was changed, and we would like to hide it,
4853 * try autowriting. */
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004854 if (!P_HID(buf) && buf->b_nwindows <= 1
4855 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004857#ifdef FEAT_AUTOCMD
4858 bufref_T bufref;
4859
4860 set_bufref(&bufref, buf);
4861#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004862 (void)autowrite(buf, FALSE);
4863#ifdef FEAT_AUTOCMD
4864 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004865 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004866 {
4867 wpnext = firstwin; /* start all over... */
4868 continue;
4869 }
4870#endif
4871 }
4872#ifdef FEAT_WINDOWS
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004873 /* don't close last window */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004874 if (firstwin == lastwin
4875 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004876#endif
4877 use_firstwin = TRUE;
4878#ifdef FEAT_WINDOWS
4879 else
4880 {
4881 win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4882# ifdef FEAT_AUTOCMD
4883 /* check if autocommands removed the next window */
4884 if (!win_valid(wpnext))
4885 wpnext = firstwin; /* start all over... */
4886# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 }
4888#endif
4889 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 }
4891 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004892
4893 /* Without the ":tab" modifier only do the current tab page. */
4894 if (had_tab == 0 || tpnext == NULL)
4895 break;
4896
4897# ifdef FEAT_AUTOCMD
4898 /* check if autocommands removed the next tab page */
4899 if (!valid_tabpage(tpnext))
4900 tpnext = first_tabpage; /* start all over...*/
4901# endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004902 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 }
4904
4905 /*
4906 * Open a window for files in the argument list that don't have one.
4907 * ARGCOUNT may change while doing this, because of autocommands.
4908 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004909 if (count > opened_len || count <= 0)
4910 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911
4912#ifdef FEAT_AUTOCMD
4913 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4914 ++autocmd_no_enter;
4915 ++autocmd_no_leave;
4916#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004917 last_curwin = curwin;
4918 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004920#ifdef FEAT_WINDOWS
4921 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
4922 * leaving an empty tab page when executed locally. */
4923 if (keep_tabs && bufempty() && curbuf->b_nwindows == 1
4924 && curbuf->b_ffname == NULL && !curbuf->b_changed)
4925 use_firstwin = TRUE;
4926#endif
4927
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004928 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 {
4930 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4931 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004932 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 {
4934 /* Move the already present window to below the current window */
4935 if (curwin->w_arg_idx != i)
4936 {
4937 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
4938 {
4939 if (wpnext->w_arg_idx == i)
4940 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004941 if (keep_tabs)
4942 {
4943 new_curwin = wpnext;
4944 new_curtab = curtab;
4945 }
4946 else
4947 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 break;
4949 }
4950 }
4951 }
4952 }
4953 else if (split_ret == OK)
4954 {
4955 if (!use_firstwin) /* split current window */
4956 {
4957 p_ea_save = p_ea;
4958 p_ea = TRUE; /* use space from all windows */
4959 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4960 p_ea = p_ea_save;
4961 if (split_ret == FAIL)
4962 continue;
4963 }
4964#ifdef FEAT_AUTOCMD
4965 else /* first window: do autocmd for leaving this buffer */
4966 --autocmd_no_leave;
4967#endif
4968
4969 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004970 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 */
4972 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004973 if (i == 0)
4974 {
4975 new_curwin = curwin;
4976 new_curtab = curtab;
4977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
4979 ECMD_ONE,
4980 ((P_HID(curwin->w_buffer)
4981 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00004982 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983#ifdef FEAT_AUTOCMD
4984 if (use_firstwin)
4985 ++autocmd_no_leave;
4986#endif
4987 use_firstwin = FALSE;
4988 }
4989 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004990
4991 /* When ":tab" was used open a new tab for a new window repeatedly. */
4992 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
4993 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 }
4995
4996 /* Remove the "lock" on the argument list. */
4997 alist_unlink(alist);
4998
4999#ifdef FEAT_AUTOCMD
5000 --autocmd_no_enter;
5001#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005002 /* restore last referenced tabpage's curwin */
5003 if (last_curtab != new_curtab)
5004 {
5005 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005006 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005007 if (win_valid(last_curwin))
5008 win_enter(last_curwin, FALSE);
5009 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005010 /* to window with first arg */
5011 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005012 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005013 if (win_valid(new_curwin))
5014 win_enter(new_curwin, FALSE);
5015
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016#ifdef FEAT_AUTOCMD
5017 --autocmd_no_leave;
5018#endif
5019 vim_free(opened);
5020}
5021
5022# if defined(FEAT_LISTCMDS) || defined(PROTO)
5023/*
5024 * Open a window for a number of buffers.
5025 */
5026 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005027ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028{
5029 buf_T *buf;
5030 win_T *wp, *wpnext;
5031 int split_ret = OK;
5032 int p_ea_save;
5033 int open_wins = 0;
5034 int r;
5035 int count; /* Maximum number of windows to open. */
5036 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005037#ifdef FEAT_WINDOWS
5038 int had_tab = cmdmod.tab;
5039 tabpage_T *tpnext;
5040#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041
5042 if (eap->addr_count == 0) /* make as many windows as possible */
5043 count = 9999;
5044 else
5045 count = eap->line2; /* make as many windows as specified */
5046 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5047 all = FALSE;
5048 else
5049 all = TRUE;
5050
5051 setpcmark();
5052
5053#ifdef FEAT_GUI
5054 need_mouse_correct = TRUE;
5055#endif
5056
5057 /*
5058 * Close superfluous windows (two windows for the same buffer).
5059 * Also close windows that are not full-width.
5060 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005061#ifdef FEAT_WINDOWS
5062 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005063 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005064 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005067 tpnext = curtab->tp_next;
5068 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005070 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005071 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005072#ifdef FEAT_WINDOWS
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005073 || ((cmdmod.split & WSP_VERT)
5074 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005075 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005076 : wp->w_width != Columns)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005077 || (had_tab > 0 && wp != firstwin)
5078#endif
Bram Moolenaar362ce482012-06-06 19:02:45 +02005079 ) && firstwin != lastwin
5080#ifdef FEAT_AUTOCMD
5081 && !(wp->w_closing || wp->w_buffer->b_closing)
5082#endif
5083 )
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005084 {
5085 win_close(wp, FALSE);
5086#ifdef FEAT_AUTOCMD
5087 wpnext = firstwin; /* just in case an autocommand does
5088 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005089 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005090 open_wins = 0;
5091#endif
5092 }
5093 else
5094 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005096
5097#ifdef FEAT_WINDOWS
5098 /* Without the ":tab" modifier only do the current tab page. */
5099 if (had_tab == 0 || tpnext == NULL)
5100 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005101 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005103#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104
5105 /*
5106 * Go through the buffer list. When a buffer doesn't have a window yet,
5107 * open one. Otherwise move the window to the right position.
5108 * Watch out for autocommands that delete buffers or windows!
5109 */
5110#ifdef FEAT_AUTOCMD
5111 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5112 ++autocmd_no_enter;
5113#endif
5114 win_enter(lastwin, FALSE);
5115#ifdef FEAT_AUTOCMD
5116 ++autocmd_no_leave;
5117#endif
5118 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5119 {
5120 /* Check if this buffer needs a window */
5121 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5122 continue;
5123
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005124#ifdef FEAT_WINDOWS
5125 if (had_tab != 0)
5126 {
5127 /* With the ":tab" modifier don't move the window. */
5128 if (buf->b_nwindows > 0)
5129 wp = lastwin; /* buffer has a window, skip it */
5130 else
5131 wp = NULL;
5132 }
5133 else
5134#endif
5135 {
5136 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005137 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005138 if (wp->w_buffer == buf)
5139 break;
5140 /* If the buffer already has a window, move it */
5141 if (wp != NULL)
5142 win_move_after(wp, curwin);
5143 }
5144
5145 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005147#ifdef FEAT_AUTOCMD
5148 bufref_T bufref;
5149
5150 set_bufref(&bufref, buf);
5151#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 /* Split the window and put the buffer in it */
5153 p_ea_save = p_ea;
5154 p_ea = TRUE; /* use space from all windows */
5155 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5156 ++open_wins;
5157 p_ea = p_ea_save;
5158 if (split_ret == FAIL)
5159 continue;
5160
5161 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005162#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 swap_exists_action = SEA_DIALOG;
5164#endif
5165 set_curbuf(buf, DOBUF_GOTO);
5166#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005167 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005169 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005170#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005172# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 break;
5174 }
5175#endif
Bram Moolenaare64ac772005-12-07 20:54:59 +00005176#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 if (swap_exists_action == SEA_QUIT)
5178 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005179# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5180 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005181
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005182 /* Reset the error/interrupt/exception state here so that
5183 * aborting() returns FALSE when closing a window. */
5184 enter_cleanup(&cs);
5185# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005186
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005187 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 win_close(curwin, TRUE);
5189 --open_wins;
5190 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005191 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005192
5193# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5194 /* Restore the error/interrupt/exception state if not
5195 * discarded by a new aborting error, interrupt, or uncaught
5196 * exception. */
5197 leave_cleanup(&cs);
5198# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 }
5200 else
5201 handle_swap_exists(NULL);
5202#endif
5203 }
5204
5205 ui_breakcheck();
5206 if (got_int)
5207 {
5208 (void)vgetc(); /* only break the file loading, not the rest */
5209 break;
5210 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005211#ifdef FEAT_EVAL
5212 /* Autocommands deleted the buffer or aborted script processing!!! */
5213 if (aborting())
5214 break;
5215#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005216#ifdef FEAT_WINDOWS
5217 /* When ":tab" was used open a new tab for a new window repeatedly. */
5218 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5219 cmdmod.tab = 9999;
5220#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 }
5222#ifdef FEAT_AUTOCMD
5223 --autocmd_no_enter;
5224#endif
5225 win_enter(firstwin, FALSE); /* back to first window */
5226#ifdef FEAT_AUTOCMD
5227 --autocmd_no_leave;
5228#endif
5229
5230 /*
5231 * Close superfluous windows.
5232 */
5233 for (wp = lastwin; open_wins > count; )
5234 {
5235 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
5236 || autowrite(wp->w_buffer, FALSE) == OK);
5237#ifdef FEAT_AUTOCMD
5238 if (!win_valid(wp))
5239 {
5240 /* BufWrite Autocommands made the window invalid, start over */
5241 wp = lastwin;
5242 }
5243 else
5244#endif
5245 if (r)
5246 {
5247 win_close(wp, !P_HID(wp->w_buffer));
5248 --open_wins;
5249 wp = lastwin;
5250 }
5251 else
5252 {
5253 wp = wp->w_prev;
5254 if (wp == NULL)
5255 break;
5256 }
5257 }
5258}
5259# endif /* FEAT_LISTCMDS */
5260
5261#endif /* FEAT_WINDOWS */
5262
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005263static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005264
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265/*
5266 * do_modelines() - process mode lines for the current file
5267 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005268 * "flags" can be:
5269 * OPT_WINONLY only set options local to window
5270 * OPT_NOWIN don't set options local to window
5271 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 * Returns immediately if the "ml" option isn't set.
5273 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005275do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005277 linenr_T lnum;
5278 int nmlines;
5279 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280
5281 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5282 return;
5283
5284 /* Disallow recursive entry here. Can happen when executing a modeline
5285 * triggers an autocommand, which reloads modelines with a ":do". */
5286 if (entered)
5287 return;
5288
5289 ++entered;
5290 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5291 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005292 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293 nmlines = 0;
5294
5295 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5296 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005297 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 nmlines = 0;
5299 --entered;
5300}
5301
5302#include "version.h" /* for version number */
5303
5304/*
5305 * chk_modeline() - check a single line for a mode string
5306 * Return FAIL if an error encountered.
5307 */
5308 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005309chk_modeline(
5310 linenr_T lnum,
5311 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312{
5313 char_u *s;
5314 char_u *e;
5315 char_u *linecopy; /* local copy of any modeline found */
5316 int prev;
5317 int vers;
5318 int end;
5319 int retval = OK;
5320 char_u *save_sourcing_name;
5321 linenr_T save_sourcing_lnum;
5322#ifdef FEAT_EVAL
5323 scid_T save_SID;
5324#endif
5325
5326 prev = -1;
5327 for (s = ml_get(lnum); *s != NUL; ++s)
5328 {
5329 if (prev == -1 || vim_isspace(prev))
5330 {
5331 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5332 || STRNCMP(s, "vi:", (size_t)3) == 0)
5333 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005334 /* Accept both "vim" and "Vim". */
5335 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 {
5337 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5338 e = s + 4;
5339 else
5340 e = s + 3;
5341 vers = getdigits(&e);
5342 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005343 && (s[0] != 'V'
5344 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 && (s[3] == ':'
5346 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5347 || (VIM_VERSION_100 < vers && s[3] == '<')
5348 || (VIM_VERSION_100 > vers && s[3] == '>')
5349 || (VIM_VERSION_100 == vers && s[3] == '=')))
5350 break;
5351 }
5352 }
5353 prev = *s;
5354 }
5355
5356 if (*s)
5357 {
5358 do /* skip over "ex:", "vi:" or "vim:" */
5359 ++s;
5360 while (s[-1] != ':');
5361
5362 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5363 if (linecopy == NULL)
5364 return FAIL;
5365
5366 save_sourcing_lnum = sourcing_lnum;
5367 save_sourcing_name = sourcing_name;
5368 sourcing_lnum = lnum; /* prepare for emsg() */
5369 sourcing_name = (char_u *)"modelines";
5370
5371 end = FALSE;
5372 while (end == FALSE)
5373 {
5374 s = skipwhite(s);
5375 if (*s == NUL)
5376 break;
5377
5378 /*
5379 * Find end of set command: ':' or end of line.
5380 * Skip over "\:", replacing it with ":".
5381 */
5382 for (e = s; *e != ':' && *e != NUL; ++e)
5383 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005384 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 if (*e == NUL)
5386 end = TRUE;
5387
5388 /*
5389 * If there is a "set" command, require a terminating ':' and
5390 * ignore the stuff after the ':'.
5391 * "vi:set opt opt opt: foo" -- foo not interpreted
5392 * "vi:opt opt opt: foo" -- foo interpreted
5393 * Accept "se" for compatibility with Elvis.
5394 */
5395 if (STRNCMP(s, "set ", (size_t)4) == 0
5396 || STRNCMP(s, "se ", (size_t)3) == 0)
5397 {
5398 if (*e != ':') /* no terminating ':'? */
5399 break;
5400 end = TRUE;
5401 s = vim_strchr(s, ' ') + 1;
5402 }
5403 *e = NUL; /* truncate the set command */
5404
5405 if (*s != NUL) /* skip over an empty "::" */
5406 {
5407#ifdef FEAT_EVAL
5408 save_SID = current_SID;
5409 current_SID = SID_MODELINE;
5410#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005411 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412#ifdef FEAT_EVAL
5413 current_SID = save_SID;
5414#endif
5415 if (retval == FAIL) /* stop if error found */
5416 break;
5417 }
5418 s = e + 1; /* advance to next part */
5419 }
5420
5421 sourcing_lnum = save_sourcing_lnum;
5422 sourcing_name = save_sourcing_name;
5423
5424 vim_free(linecopy);
5425 }
5426 return retval;
5427}
5428
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005429#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005431read_viminfo_bufferlist(
5432 vir_T *virp,
5433 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434{
5435 char_u *tab;
5436 linenr_T lnum;
5437 colnr_T col;
5438 buf_T *buf;
5439 char_u *sfname;
5440 char_u *xline;
5441
5442 /* Handle long line and escaped characters. */
5443 xline = viminfo_readstring(virp, 1, FALSE);
5444
5445 /* don't read in if there are files on the command-line or if writing: */
5446 if (xline != NULL && !writing && ARGCOUNT == 0
5447 && find_viminfo_parameter('%') != NULL)
5448 {
5449 /* Format is: <fname> Tab <lnum> Tab <col>.
5450 * Watch out for a Tab in the file name, work from the end. */
5451 lnum = 0;
5452 col = 0;
5453 tab = vim_strrchr(xline, '\t');
5454 if (tab != NULL)
5455 {
5456 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005457 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 tab = vim_strrchr(xline, '\t');
5459 if (tab != NULL)
5460 {
5461 *tab++ = '\0';
5462 lnum = atol((char *)tab);
5463 }
5464 }
5465
5466 /* Expand "~/" in the file name at "line + 1" to a full path.
5467 * Then try shortening it by comparing with the current directory */
5468 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005469 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470
5471 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5472 if (buf != NULL) /* just in case... */
5473 {
5474 buf->b_last_cursor.lnum = lnum;
5475 buf->b_last_cursor.col = col;
5476 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5477 }
5478 }
5479 vim_free(xline);
5480
5481 return viminfo_readline(virp);
5482}
5483
5484 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005485write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486{
5487 buf_T *buf;
5488#ifdef FEAT_WINDOWS
5489 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005490 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491#endif
5492 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005493 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494
5495 if (find_viminfo_parameter('%') == NULL)
5496 return;
5497
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005498 /* Without a number -1 is returned: do all buffers. */
5499 max_buffers = get_viminfo_parameter('%');
5500
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005502#define LINE_BUF_LEN (MAXPATHL + 40)
5503 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504 if (line == NULL)
5505 return;
5506
5507#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00005508 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 set_last_cursor(win);
5510#else
5511 set_last_cursor(curwin);
5512#endif
5513
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005514 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005515 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 {
5517 if (buf->b_fname == NULL
5518 || !buf->b_p_bl
5519#ifdef FEAT_QUICKFIX
5520 || bt_quickfix(buf)
5521#endif
5522 || removable(buf->b_ffname))
5523 continue;
5524
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005525 if (max_buffers-- == 0)
5526 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 putc('%', fp);
5528 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005529 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 (long)buf->b_last_cursor.lnum,
5531 buf->b_last_cursor.col);
5532 viminfo_writestring(fp, line);
5533 }
5534 vim_free(line);
5535}
5536#endif
5537
5538
5539/*
5540 * Return special buffer name.
5541 * Returns NULL when the buffer has a normal file name.
5542 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005543 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005544buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545{
5546#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
5547 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005548 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005549 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005550 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005551
5552 /*
5553 * For location list window, w_llist_ref points to the location list.
5554 * For quickfix window, w_llist_ref is NULL.
5555 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005556 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005557 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005558 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005559 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005560 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561#endif
5562#ifdef FEAT_QUICKFIX
5563 /* There is no _file_ when 'buftype' is "nofile", b_sfname
5564 * contains the name as specified by the user */
5565 if (bt_nofile(buf))
5566 {
5567 if (buf->b_sfname != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005568 return buf->b_sfname;
5569 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 }
5571#endif
5572 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005573 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 return NULL;
5575}
5576
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005577#if (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
5578 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5579 || defined(PROTO)
5580/*
5581 * Find a window for buffer "buf".
5582 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5583 * If not found FAIL is returned.
5584 */
5585 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005586find_win_for_buf(
5587 buf_T *buf,
5588 win_T **wp,
5589 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005590{
5591 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5592 if ((*wp)->w_buffer == buf)
5593 goto win_found;
5594 return FAIL;
5595win_found:
5596 return OK;
5597}
5598#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599
5600#if defined(FEAT_SIGNS) || defined(PROTO)
5601/*
5602 * Insert the sign into the signlist.
5603 */
5604 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005605insert_sign(
5606 buf_T *buf, /* buffer to store sign in */
5607 signlist_T *prev, /* previous sign entry */
5608 signlist_T *next, /* next sign entry */
5609 int id, /* sign ID */
5610 linenr_T lnum, /* line number which gets the mark */
5611 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612{
5613 signlist_T *newsign;
5614
5615 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5616 if (newsign != NULL)
5617 {
5618 newsign->id = id;
5619 newsign->lnum = lnum;
5620 newsign->typenr = typenr;
5621 newsign->next = next;
5622#ifdef FEAT_NETBEANS_INTG
5623 newsign->prev = prev;
5624 if (next != NULL)
5625 next->prev = newsign;
5626#endif
5627
5628 if (prev == NULL)
5629 {
5630 /* When adding first sign need to redraw the windows to create the
5631 * column for signs. */
5632 if (buf->b_signlist == NULL)
5633 {
5634 redraw_buf_later(buf, NOT_VALID);
5635 changed_cline_bef_curs();
5636 }
5637
5638 /* first sign in signlist */
5639 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005640#ifdef FEAT_NETBEANS_INTG
5641 if (netbeans_active())
5642 buf->b_has_sign_column = TRUE;
5643#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644 }
5645 else
5646 prev->next = newsign;
5647 }
5648}
5649
5650/*
5651 * Add the sign into the signlist. Find the right spot to do it though.
5652 */
5653 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005654buf_addsign(
5655 buf_T *buf, /* buffer to store sign in */
5656 int id, /* sign ID */
5657 linenr_T lnum, /* line number which gets the mark */
5658 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659{
5660 signlist_T *sign; /* a sign in the signlist */
5661 signlist_T *prev; /* the previous sign */
5662
5663 prev = NULL;
5664 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5665 {
5666 if (lnum == sign->lnum && id == sign->id)
5667 {
5668 sign->typenr = typenr;
5669 return;
5670 }
5671 else if (
5672#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5673 id < 0 &&
5674#endif
5675 lnum < sign->lnum)
5676 {
5677#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5678 /* XXX - GRP: Is this because of sign slide problem? Or is it
5679 * really needed? Or is it because we allow multiple signs per
5680 * line? If so, should I add that feature to FEAT_SIGNS?
5681 */
5682 while (prev != NULL && prev->lnum == lnum)
5683 prev = prev->prev;
5684 if (prev == NULL)
5685 sign = buf->b_signlist;
5686 else
5687 sign = prev->next;
5688#endif
5689 insert_sign(buf, prev, sign, id, lnum, typenr);
5690 return;
5691 }
5692 prev = sign;
5693 }
5694#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5695 /* XXX - GRP: See previous comment */
5696 while (prev != NULL && prev->lnum == lnum)
5697 prev = prev->prev;
5698 if (prev == NULL)
5699 sign = buf->b_signlist;
5700 else
5701 sign = prev->next;
5702#endif
5703 insert_sign(buf, prev, sign, id, lnum, typenr);
5704
5705 return;
5706}
5707
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005708/*
5709 * For an existing, placed sign "markId" change the type to "typenr".
5710 * Returns the line number of the sign, or zero if the sign is not found.
5711 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005712 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005713buf_change_sign_type(
5714 buf_T *buf, /* buffer to store sign in */
5715 int markId, /* sign ID */
5716 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717{
5718 signlist_T *sign; /* a sign in the signlist */
5719
5720 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5721 {
5722 if (sign->id == markId)
5723 {
5724 sign->typenr = typenr;
5725 return sign->lnum;
5726 }
5727 }
5728
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005729 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005730}
5731
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005732 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005733buf_getsigntype(
5734 buf_T *buf,
5735 linenr_T lnum,
5736 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005737{
5738 signlist_T *sign; /* a sign in a b_signlist */
5739
5740 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5741 if (sign->lnum == lnum
5742 && (type == SIGN_ANY
5743# ifdef FEAT_SIGN_ICONS
5744 || (type == SIGN_ICON
5745 && sign_get_image(sign->typenr) != NULL)
5746# endif
5747 || (type == SIGN_TEXT
5748 && sign_get_text(sign->typenr) != NULL)
5749 || (type == SIGN_LINEHL
5750 && sign_get_attr(sign->typenr, TRUE) != 0)))
5751 return sign->typenr;
5752 return 0;
5753}
5754
5755
5756 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005757buf_delsign(
5758 buf_T *buf, /* buffer sign is stored in */
5759 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760{
5761 signlist_T **lastp; /* pointer to pointer to current sign */
5762 signlist_T *sign; /* a sign in a b_signlist */
5763 signlist_T *next; /* the next sign in a b_signlist */
5764 linenr_T lnum; /* line number whose sign was deleted */
5765
5766 lastp = &buf->b_signlist;
5767 lnum = 0;
5768 for (sign = buf->b_signlist; sign != NULL; sign = next)
5769 {
5770 next = sign->next;
5771 if (sign->id == id)
5772 {
5773 *lastp = next;
5774#ifdef FEAT_NETBEANS_INTG
5775 if (next != NULL)
5776 next->prev = sign->prev;
5777#endif
5778 lnum = sign->lnum;
5779 vim_free(sign);
5780 break;
5781 }
5782 else
5783 lastp = &sign->next;
5784 }
5785
5786 /* When deleted the last sign need to redraw the windows to remove the
5787 * sign column. */
5788 if (buf->b_signlist == NULL)
5789 {
5790 redraw_buf_later(buf, NOT_VALID);
5791 changed_cline_bef_curs();
5792 }
5793
5794 return lnum;
5795}
5796
5797
5798/*
5799 * Find the line number of the sign with the requested id. If the sign does
5800 * not exist, return 0 as the line number. This will still let the correct file
5801 * get loaded.
5802 */
5803 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005804buf_findsign(
5805 buf_T *buf, /* buffer to store sign in */
5806 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807{
5808 signlist_T *sign; /* a sign in the signlist */
5809
5810 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5811 if (sign->id == id)
5812 return sign->lnum;
5813
5814 return 0;
5815}
5816
5817 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005818buf_findsign_id(
5819 buf_T *buf, /* buffer whose sign we are searching for */
5820 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821{
5822 signlist_T *sign; /* a sign in the signlist */
5823
5824 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5825 if (sign->lnum == lnum)
5826 return sign->id;
5827
5828 return 0;
5829}
5830
5831
5832# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5833/* see if a given type of sign exists on a specific line */
5834 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005835buf_findsigntype_id(
5836 buf_T *buf, /* buffer whose sign we are searching for */
5837 linenr_T lnum, /* line number of sign */
5838 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839{
5840 signlist_T *sign; /* a sign in the signlist */
5841
5842 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5843 if (sign->lnum == lnum && sign->typenr == typenr)
5844 return sign->id;
5845
5846 return 0;
5847}
5848
5849
5850# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5851/* return the number of icons on the given line */
5852 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005853buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854{
5855 signlist_T *sign; /* a sign in the signlist */
5856 int count = 0;
5857
5858 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5859 if (sign->lnum == lnum)
5860 if (sign_get_image(sign->typenr) != NULL)
5861 count++;
5862
5863 return count;
5864}
5865# endif /* FEAT_SIGN_ICONS */
5866# endif /* FEAT_NETBEANS_INTG */
5867
5868
5869/*
5870 * Delete signs in buffer "buf".
5871 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02005872 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005873buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874{
5875 signlist_T *next;
5876
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005877 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02005878 * sign column. Not when curwin is NULL (this means we're exiting). */
5879 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005880 {
5881 redraw_buf_later(buf, NOT_VALID);
5882 changed_cline_bef_curs();
5883 }
5884
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885 while (buf->b_signlist != NULL)
5886 {
5887 next = buf->b_signlist->next;
5888 vim_free(buf->b_signlist);
5889 buf->b_signlist = next;
5890 }
5891}
5892
5893/*
5894 * Delete all signs in all buffers.
5895 */
5896 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005897buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898{
5899 buf_T *buf; /* buffer we are checking for signs */
5900
Bram Moolenaar29323592016-07-24 22:04:11 +02005901 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005903 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904}
5905
5906/*
5907 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
5908 */
5909 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005910sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911{
5912 buf_T *buf;
5913 signlist_T *p;
5914 char lbuf[BUFSIZ];
5915
5916 MSG_PUTS_TITLE(_("\n--- Signs ---"));
5917 msg_putchar('\n');
5918 if (rbuf == NULL)
5919 buf = firstbuf;
5920 else
5921 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005922 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 {
5924 if (buf->b_signlist != NULL)
5925 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005926 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
5928 msg_putchar('\n');
5929 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005930 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005932 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
5934 MSG_PUTS(lbuf);
5935 msg_putchar('\n');
5936 }
5937 if (rbuf != NULL)
5938 break;
5939 buf = buf->b_next;
5940 }
5941}
5942
5943/*
5944 * Adjust a placed sign for inserted/deleted lines.
5945 */
5946 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005947sign_mark_adjust(
5948 linenr_T line1,
5949 linenr_T line2,
5950 long amount,
5951 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952{
5953 signlist_T *sign; /* a sign in a b_signlist */
5954
5955 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
5956 {
5957 if (sign->lnum >= line1 && sign->lnum <= line2)
5958 {
5959 if (amount == MAXLNUM)
5960 sign->lnum = line1;
5961 else
5962 sign->lnum += amount;
5963 }
5964 else if (sign->lnum > line2)
5965 sign->lnum += amount_after;
5966 }
5967}
5968#endif /* FEAT_SIGNS */
5969
5970/*
5971 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5972 */
5973 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005974set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975{
5976 if (on != curbuf->b_p_bl)
5977 {
5978 curbuf->b_p_bl = on;
5979#ifdef FEAT_AUTOCMD
5980 if (on)
5981 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5982 else
5983 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
5984#endif
5985 }
5986}
5987
5988/*
5989 * Read the file for "buf" again and check if the contents changed.
5990 * Return TRUE if it changed or this could not be checked.
5991 */
5992 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005993buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994{
5995 buf_T *newbuf;
5996 int differ = TRUE;
5997 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 exarg_T ea;
6000
6001 /* Allocate a buffer without putting it in the buffer list. */
6002 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6003 if (newbuf == NULL)
6004 return TRUE;
6005
6006 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6007 if (prep_exarg(&ea, buf) == FAIL)
6008 {
6009 wipe_buffer(newbuf, FALSE);
6010 return TRUE;
6011 }
6012
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 /* set curwin/curbuf to buf and save a few things */
6014 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015
Bram Moolenaar4770d092006-01-12 23:22:24 +00006016 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017 && readfile(buf->b_ffname, buf->b_fname,
6018 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6019 &ea, READ_NEW | READ_DUMMY) == OK)
6020 {
6021 /* compare the two files line by line */
6022 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6023 {
6024 differ = FALSE;
6025 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6026 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6027 {
6028 differ = TRUE;
6029 break;
6030 }
6031 }
6032 }
6033 vim_free(ea.cmd);
6034
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035 /* restore curwin/curbuf and a few other things */
6036 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037
6038 if (curbuf != newbuf) /* safety check */
6039 wipe_buffer(newbuf, FALSE);
6040
6041 return differ;
6042}
6043
6044/*
6045 * Wipe out a buffer and decrement the last buffer number if it was used for
6046 * this buffer. Call this to wipe out a temp buffer that does not contain any
6047 * marks.
6048 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006049 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006050wipe_buffer(
6051 buf_T *buf,
6052 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053{
6054 if (buf->b_fnum == top_file_num - 1)
6055 --top_file_num;
6056
6057#ifdef FEAT_AUTOCMD
6058 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006059 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006061 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062#ifdef FEAT_AUTOCMD
6063 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006064 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065#endif
6066}