blob: 75de736f0c853556bd765d4613fb365f91784b1e [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;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02002935 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 else
2937 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaar77401ad2016-08-24 00:12:12 +02002938 if (message_filtered(NameBuff))
2939 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940
Bram Moolenaar77401ad2016-08-24 00:12:12 +02002941 msg_putchar('\n');
Bram Moolenaar50cde822005-06-05 21:54:54 +00002942 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943 buf->b_fnum,
2944 buf->b_p_bl ? ' ' : 'u',
2945 buf == curbuf ? '%' :
2946 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
2947 buf->b_ml.ml_mfp == NULL ? ' ' :
2948 (buf->b_nwindows == 0 ? 'h' : 'a'),
2949 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
2950 (buf->b_flags & BF_READERR) ? 'x'
Bram Moolenaar51485f02005-06-04 21:55:20 +00002951 : (bufIsChanged(buf) ? '+' : ' '),
2952 NameBuff);
Bram Moolenaar507edf62016-01-10 20:54:17 +01002953 if (len > IOSIZE - 20)
2954 len = IOSIZE - 20;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955
2956 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957 i = 40 - vim_strsize(IObuff);
2958 do
2959 {
2960 IObuff[len++] = ' ';
2961 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002962 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
2963 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002964 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 msg_outtrans(IObuff);
2966 out_flush(); /* output one line at a time */
2967 ui_breakcheck();
2968 }
2969}
2970#endif
2971
2972/*
2973 * Get file name and line number for file 'fnum'.
2974 * Used by DoOneCmd() for translating '%' and '#'.
2975 * Used by insert_reg() and cmdline_paste() for '#' register.
2976 * Return FAIL if not found, OK for success.
2977 */
2978 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002979buflist_name_nr(
2980 int fnum,
2981 char_u **fname,
2982 linenr_T *lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983{
2984 buf_T *buf;
2985
2986 buf = buflist_findnr(fnum);
2987 if (buf == NULL || buf->b_fname == NULL)
2988 return FAIL;
2989
2990 *fname = buf->b_fname;
2991 *lnum = buflist_findlnum(buf);
2992
2993 return OK;
2994}
2995
2996/*
2997 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
2998 * The file name with the full path is also remembered, for when :cd is used.
2999 * Returns FAIL for failure (file name already in use by other buffer)
3000 * OK otherwise.
3001 */
3002 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003003setfname(
3004 buf_T *buf,
3005 char_u *ffname,
3006 char_u *sfname,
3007 int message) /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008{
Bram Moolenaar81695252004-12-29 20:58:21 +00003009 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003011 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012#endif
3013
3014 if (ffname == NULL || *ffname == NUL)
3015 {
3016 /* Removing the name. */
3017 vim_free(buf->b_ffname);
3018 vim_free(buf->b_sfname);
3019 buf->b_ffname = NULL;
3020 buf->b_sfname = NULL;
3021#ifdef UNIX
3022 st.st_dev = (dev_T)-1;
3023#endif
3024 }
3025 else
3026 {
3027 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3028 if (ffname == NULL) /* out of memory */
3029 return FAIL;
3030
3031 /*
3032 * if the file name is already used in another buffer:
3033 * - if the buffer is loaded, fail
3034 * - if the buffer is not loaded, delete it from the list
3035 */
3036#ifdef UNIX
3037 if (mch_stat((char *)ffname, &st) < 0)
3038 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00003039#endif
3040 if (!(buf->b_flags & BF_DUMMY))
3041#ifdef UNIX
3042 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043#else
Bram Moolenaar81695252004-12-29 20:58:21 +00003044 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045#endif
3046 if (obuf != NULL && obuf != buf)
3047 {
3048 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
3049 {
3050 if (message)
3051 EMSG(_("E95: Buffer with this name already exists"));
3052 vim_free(ffname);
3053 return FAIL;
3054 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003055 /* delete from the list */
3056 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 }
3058 sfname = vim_strsave(sfname);
3059 if (ffname == NULL || sfname == NULL)
3060 {
3061 vim_free(sfname);
3062 vim_free(ffname);
3063 return FAIL;
3064 }
3065#ifdef USE_FNAME_CASE
3066# ifdef USE_LONG_FNAME
3067 if (USE_LONG_FNAME)
3068# endif
3069 fname_case(sfname, 0); /* set correct case for short file name */
3070#endif
3071 vim_free(buf->b_ffname);
3072 vim_free(buf->b_sfname);
3073 buf->b_ffname = ffname;
3074 buf->b_sfname = sfname;
3075 }
3076 buf->b_fname = buf->b_sfname;
3077#ifdef UNIX
3078 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003079 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 else
3081 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003082 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 buf->b_dev = st.st_dev;
3084 buf->b_ino = st.st_ino;
3085 }
3086#endif
3087
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089
3090 buf_name_changed(buf);
3091 return OK;
3092}
3093
3094/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003095 * Crude way of changing the name of a buffer. Use with care!
3096 * The name should be relative to the current directory.
3097 */
3098 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003099buf_set_name(int fnum, char_u *name)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003100{
3101 buf_T *buf;
3102
3103 buf = buflist_findnr(fnum);
3104 if (buf != NULL)
3105 {
3106 vim_free(buf->b_sfname);
3107 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003108 buf->b_ffname = vim_strsave(name);
3109 buf->b_sfname = NULL;
3110 /* Allocate ffname and expand into full path. Also resolves .lnk
3111 * files on Win32. */
3112 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003113 buf->b_fname = buf->b_sfname;
3114 }
3115}
3116
3117/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 * Take care of what needs to be done when the name of buffer "buf" has
3119 * changed.
3120 */
3121 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003122buf_name_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123{
3124 /*
3125 * If the file name changed, also change the name of the swapfile
3126 */
3127 if (buf->b_ml.ml_mfp != NULL)
3128 ml_setname(buf);
3129
3130 if (curwin->w_buffer == buf)
3131 check_arg_idx(curwin); /* check file name for arg list */
3132#ifdef FEAT_TITLE
3133 maketitle(); /* set window title */
3134#endif
3135#ifdef FEAT_WINDOWS
3136 status_redraw_all(); /* status lines need to be redrawn */
3137#endif
3138 fmarks_check_names(buf); /* check named file marks */
3139 ml_timestamp(buf); /* reset timestamp */
3140}
3141
3142/*
3143 * set alternate file name for current window
3144 *
3145 * Used by do_one_cmd(), do_write() and do_ecmd().
3146 * Return the buffer.
3147 */
3148 buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003149setaltfname(
3150 char_u *ffname,
3151 char_u *sfname,
3152 linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153{
3154 buf_T *buf;
3155
3156 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
3157 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003158 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 curwin->w_alt_fnum = buf->b_fnum;
3160 return buf;
3161}
3162
3163/*
3164 * Get alternate file name for current window.
3165 * Return NULL if there isn't any, and give error message if requested.
3166 */
3167 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003168getaltfname(
3169 int errmsg) /* give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170{
3171 char_u *fname;
3172 linenr_T dummy;
3173
3174 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3175 {
3176 if (errmsg)
3177 EMSG(_(e_noalt));
3178 return NULL;
3179 }
3180 return fname;
3181}
3182
3183/*
3184 * Add a file name to the buflist and return its number.
3185 * Uses same flags as buflist_new(), except BLN_DUMMY.
3186 *
3187 * used by qf_init(), main() and doarglist()
3188 */
3189 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003190buflist_add(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191{
3192 buf_T *buf;
3193
3194 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3195 if (buf != NULL)
3196 return buf->b_fnum;
3197 return 0;
3198}
3199
3200#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3201/*
3202 * Adjust slashes in file names. Called after 'shellslash' was set.
3203 */
3204 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003205buflist_slash_adjust(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206{
3207 buf_T *bp;
3208
Bram Moolenaar29323592016-07-24 22:04:11 +02003209 FOR_ALL_BUFFERS(bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 {
3211 if (bp->b_ffname != NULL)
3212 slash_adjust(bp->b_ffname);
3213 if (bp->b_sfname != NULL)
3214 slash_adjust(bp->b_sfname);
3215 }
3216}
3217#endif
3218
3219/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003220 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 * Also save the local window option values.
3222 */
3223 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003224buflist_altfpos(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003226 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227}
3228
3229/*
3230 * Return TRUE if 'ffname' is not the same file as current file.
3231 * Fname must have a full path (expanded by mch_FullName()).
3232 */
3233 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003234otherfile(char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235{
3236 return otherfile_buf(curbuf, ffname
3237#ifdef UNIX
3238 , NULL
3239#endif
3240 );
3241}
3242
3243 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003244otherfile_buf(
3245 buf_T *buf,
3246 char_u *ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02003248 , stat_T *stp
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249#endif
Bram Moolenaar7454a062016-01-30 15:14:10 +01003250 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251{
3252 /* no name is different */
3253 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3254 return TRUE;
3255 if (fnamecmp(ffname, buf->b_ffname) == 0)
3256 return FALSE;
3257#ifdef UNIX
3258 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02003259 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260
Bram Moolenaar8767f522016-07-01 17:17:39 +02003261 /* If no stat_T given, get it now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262 if (stp == NULL)
3263 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003264 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 st.st_dev = (dev_T)-1;
3266 stp = &st;
3267 }
3268 /* Use dev/ino to check if the files are the same, even when the names
3269 * are different (possible with links). Still need to compare the
3270 * name above, for when the file doesn't exist yet.
3271 * Problem: The dev/ino changes when a file is deleted (and created
3272 * again) and remains the same when renamed/moved. We don't want to
3273 * mch_stat() each buffer each time, that would be too slow. Get the
3274 * dev/ino again when they appear to match, but not when they appear
3275 * to be different: Could skip a buffer when it's actually the same
3276 * file. */
3277 if (buf_same_ino(buf, stp))
3278 {
3279 buf_setino(buf);
3280 if (buf_same_ino(buf, stp))
3281 return FALSE;
3282 }
3283 }
3284#endif
3285 return TRUE;
3286}
3287
3288#if defined(UNIX) || defined(PROTO)
3289/*
3290 * Set inode and device number for a buffer.
3291 * Must always be called when b_fname is changed!.
3292 */
3293 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003294buf_setino(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003296 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297
3298 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3299 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003300 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 buf->b_dev = st.st_dev;
3302 buf->b_ino = st.st_ino;
3303 }
3304 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003305 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306}
3307
3308/*
3309 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3310 */
3311 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003312buf_same_ino(
3313 buf_T *buf,
Bram Moolenaar8767f522016-07-01 17:17:39 +02003314 stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003316 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 && stp->st_dev == buf->b_dev
3318 && stp->st_ino == buf->b_ino);
3319}
3320#endif
3321
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003322/*
3323 * Print info about the current buffer.
3324 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003326fileinfo(
3327 int fullname, /* when non-zero print full path */
3328 int shorthelp,
3329 int dont_truncate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330{
3331 char_u *name;
3332 int n;
3333 char_u *p;
3334 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003335 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336
3337 buffer = alloc(IOSIZE);
3338 if (buffer == NULL)
3339 return;
3340
3341 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3342 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003343 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 p = buffer + STRLEN(buffer);
3345 }
3346 else
3347 p = buffer;
3348
3349 *p++ = '"';
3350 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003351 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 else
3353 {
3354 if (!fullname && curbuf->b_fname != NULL)
3355 name = curbuf->b_fname;
3356 else
3357 name = curbuf->b_ffname;
3358 home_replace(shorthelp ? curbuf : NULL, name, p,
3359 (int)(IOSIZE - (p - buffer)), TRUE);
3360 }
3361
Bram Moolenaara800b422010-06-27 01:15:55 +02003362 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 curbufIsChanged() ? (shortmess(SHM_MOD)
3364 ? " [+]" : _(" [Modified]")) : " ",
3365 (curbuf->b_flags & BF_NOTEDITED)
3366#ifdef FEAT_QUICKFIX
3367 && !bt_dontwrite(curbuf)
3368#endif
3369 ? _("[Not edited]") : "",
3370 (curbuf->b_flags & BF_NEW)
3371#ifdef FEAT_QUICKFIX
3372 && !bt_dontwrite(curbuf)
3373#endif
3374 ? _("[New file]") : "",
3375 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003376 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 : _("[readonly]")) : "",
3378 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3379 || curbuf->b_p_ro) ?
3380 " " : "");
3381 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3382 * causes an overflow, thus for large numbers divide instead. */
3383 if (curwin->w_cursor.lnum > 1000000L)
3384 n = (int)(((long)curwin->w_cursor.lnum) /
3385 ((long)curbuf->b_ml.ml_line_count / 100L));
3386 else
3387 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3388 (long)curbuf->b_ml.ml_line_count);
3389 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3390 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003391 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 }
3393#ifdef FEAT_CMDL_INFO
3394 else if (p_ru)
3395 {
3396 /* Current line and column are already on the screen -- webb */
3397 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003398 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003400 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 (long)curbuf->b_ml.ml_line_count, n);
3402 }
3403#endif
3404 else
3405 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003406 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 _("line %ld of %ld --%d%%-- col "),
3408 (long)curwin->w_cursor.lnum,
3409 (long)curbuf->b_ml.ml_line_count,
3410 n);
3411 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003412 len = STRLEN(buffer);
3413 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3415 }
3416
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003417 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418
3419 if (dont_truncate)
3420 {
3421 /* Temporarily set msg_scroll to avoid the message being truncated.
3422 * First call msg_start() to get the message in the right place. */
3423 msg_start();
3424 n = msg_scroll;
3425 msg_scroll = TRUE;
3426 msg(buffer);
3427 msg_scroll = n;
3428 }
3429 else
3430 {
3431 p = msg_trunc_attr(buffer, FALSE, 0);
3432 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 /* Need to repeat the message after redrawing when:
3434 * - When restart_edit is set (otherwise there will be a delay
3435 * before redrawing).
3436 * - When the screen was scrolled but there is no wait-return
3437 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003438 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 }
3440
3441 vim_free(buffer);
3442}
3443
3444 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003445col_print(
3446 char_u *buf,
3447 size_t buflen,
3448 int col,
3449 int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450{
3451 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003452 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003454 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455}
3456
3457#if defined(FEAT_TITLE) || defined(PROTO)
3458/*
3459 * put file name in title bar of window and in icon title
3460 */
3461
3462static char_u *lasttitle = NULL;
3463static char_u *lasticon = NULL;
3464
3465 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003466maketitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467{
3468 char_u *p;
3469 char_u *t_str = NULL;
3470 char_u *i_name;
3471 char_u *i_str = NULL;
3472 int maxlen = 0;
3473 int len;
3474 int mustset;
3475 char_u buf[IOSIZE];
3476 int off;
3477
3478 if (!redrawing())
3479 {
3480 /* Postpone updating the title when 'lazyredraw' is set. */
3481 need_maketitle = TRUE;
3482 return;
3483 }
3484
3485 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003486 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 return;
3488
3489 if (p_title)
3490 {
3491 if (p_titlelen > 0)
3492 {
3493 maxlen = p_titlelen * Columns / 100;
3494 if (maxlen < 10)
3495 maxlen = 10;
3496 }
3497
3498 t_str = buf;
3499 if (*p_titlestring != NUL)
3500 {
3501#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003502 if (stl_syntax & STL_IN_TITLE)
3503 {
3504 int use_sandbox = FALSE;
3505 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003506
3507# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003508 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003509# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003510 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003512 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003513 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003514 if (called_emsg)
3515 set_string_option_direct((char_u *)"titlestring", -1,
3516 (char_u *)"", OPT_FREE, SID_ERROR);
3517 called_emsg |= save_called_emsg;
3518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 else
3520#endif
3521 t_str = p_titlestring;
3522 }
3523 else
3524 {
3525 /* format: "fname + (path) (1 of 2) - VIM" */
3526
Bram Moolenaar2c666692012-09-05 13:30:40 +02003527#define SPACE_FOR_FNAME (IOSIZE - 100)
3528#define SPACE_FOR_DIR (IOSIZE - 20)
3529#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003531 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 else
3533 {
3534 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003535 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 }
3538
3539 switch (bufIsChanged(curbuf)
3540 + (curbuf->b_p_ro * 2)
3541 + (!curbuf->b_p_ma * 4))
3542 {
3543 case 1: STRCAT(buf, " +"); break;
3544 case 2: STRCAT(buf, " ="); break;
3545 case 3: STRCAT(buf, " =+"); break;
3546 case 4:
3547 case 6: STRCAT(buf, " -"); break;
3548 case 5:
3549 case 7: STRCAT(buf, " -+"); break;
3550 }
3551
3552 if (curbuf->b_fname != NULL)
3553 {
3554 /* Get path of file, replace home dir with ~ */
3555 off = (int)STRLEN(buf);
3556 buf[off++] = ' ';
3557 buf[off++] = '(';
3558 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003559 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560#ifdef BACKSLASH_IN_FILENAME
3561 /* avoid "c:/name" to be reduced to "c" */
3562 if (isalpha(buf[off]) && buf[off + 1] == ':')
3563 off += 2;
3564#endif
3565 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003566 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 if (p == buf + off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 /* must be a help buffer */
Bram Moolenaarb6356332005-07-18 21:40:44 +00003569 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003570 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003573
Bram Moolenaar2c666692012-09-05 13:30:40 +02003574 /* Translate unprintable chars and concatenate. Keep some
3575 * room for the server name. When there is no room (very long
3576 * file name) use (...). */
3577 if (off < SPACE_FOR_DIR)
3578 {
3579 p = transstr(buf + off);
3580 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3581 vim_free(p);
3582 }
3583 else
3584 {
3585 vim_strncpy(buf + off, (char_u *)"...",
3586 (size_t)(SPACE_FOR_ARGNR - off));
3587 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 STRCAT(buf, ")");
3589 }
3590
Bram Moolenaar2c666692012-09-05 13:30:40 +02003591 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592
3593#if defined(FEAT_CLIENTSERVER)
3594 if (serverName != NULL)
3595 {
3596 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003597 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 }
3599 else
3600#endif
3601 STRCAT(buf, " - VIM");
3602
3603 if (maxlen > 0)
3604 {
3605 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003606 if (vim_strsize(buf) > maxlen)
3607 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 }
3609 }
3610 }
3611 mustset = ti_change(t_str, &lasttitle);
3612
3613 if (p_icon)
3614 {
3615 i_str = buf;
3616 if (*p_iconstring != NUL)
3617 {
3618#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003619 if (stl_syntax & STL_IN_ICON)
3620 {
3621 int use_sandbox = FALSE;
3622 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003623
3624# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003625 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003626# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003627 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003629 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003630 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003631 if (called_emsg)
3632 set_string_option_direct((char_u *)"iconstring", -1,
3633 (char_u *)"", OPT_FREE, SID_ERROR);
3634 called_emsg |= save_called_emsg;
3635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 else
3637#endif
3638 i_str = p_iconstring;
3639 }
3640 else
3641 {
3642 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003643 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 else /* use file name only in icon */
3645 i_name = gettail(curbuf->b_ffname);
3646 *i_str = NUL;
3647 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003648 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 if (len > 100)
3650 {
3651 len -= 100;
3652#ifdef FEAT_MBYTE
3653 if (has_mbyte)
3654 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3655#endif
3656 i_name += len;
3657 }
3658 STRCPY(i_str, i_name);
3659 trans_characters(i_str, IOSIZE);
3660 }
3661 }
3662
3663 mustset |= ti_change(i_str, &lasticon);
3664
3665 if (mustset)
3666 resettitle();
3667}
3668
3669/*
3670 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3671 * from "str" if it does.
3672 * Return TRUE when "*last" changed.
3673 */
3674 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003675ti_change(char_u *str, char_u **last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676{
3677 if ((str == NULL) != (*last == NULL)
3678 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3679 {
3680 vim_free(*last);
3681 if (str == NULL)
3682 *last = NULL;
3683 else
3684 *last = vim_strsave(str);
3685 return TRUE;
3686 }
3687 return FALSE;
3688}
3689
3690/*
3691 * Put current window title back (used after calling a shell)
3692 */
3693 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003694resettitle(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695{
3696 mch_settitle(lasttitle, lasticon);
3697}
Bram Moolenaarea408852005-06-25 22:49:46 +00003698
3699# if defined(EXITFREE) || defined(PROTO)
3700 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003701free_titles(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00003702{
3703 vim_free(lasttitle);
3704 vim_free(lasticon);
3705}
3706# endif
3707
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708#endif /* FEAT_TITLE */
3709
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003710#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003712 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 * Return length of string in screen cells.
3714 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003715 * Normally works for window "wp", except when working for 'tabline' then it
3716 * is "curwin".
3717 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 * Items are drawn interspersed with the text that surrounds it
3719 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3720 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3721 *
3722 * If maxwidth is not zero, the string will be filled at any middle marker
3723 * or truncated if too long, fillchar is used for all whitespace.
3724 */
3725 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003726build_stl_str_hl(
3727 win_T *wp,
3728 char_u *out, /* buffer to write into != NameBuff */
3729 size_t outlen, /* length of out[] */
3730 char_u *fmt,
3731 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3732 int fillchar,
3733 int maxwidth,
3734 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */
3735 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736{
3737 char_u *p;
3738 char_u *s;
3739 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003740 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741#ifdef FEAT_EVAL
3742 win_T *o_curwin;
3743 buf_T *o_curbuf;
3744#endif
3745 int empty_line;
3746 colnr_T virtcol;
3747 long l;
3748 long n;
3749 int prevchar_isflag;
3750 int prevchar_isitem;
3751 int itemisflag;
3752 int fillable;
3753 char_u *str;
3754 long num;
3755 int width;
3756 int itemcnt;
3757 int curitem;
3758 int groupitem[STL_MAX_ITEM];
3759 int groupdepth;
3760 struct stl_item
3761 {
3762 char_u *start;
3763 int minwid;
3764 int maxwid;
3765 enum
3766 {
3767 Normal,
3768 Empty,
3769 Group,
3770 Middle,
3771 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003772 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 Trunc
3774 } type;
3775 } item[STL_MAX_ITEM];
3776 int minwid;
3777 int maxwid;
3778 int zeropad;
3779 char_u base;
3780 char_u opt;
3781#define TMPLEN 70
3782 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003783 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003784 struct stl_hlrec *sp;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003785
3786#ifdef FEAT_EVAL
3787 /*
3788 * When the format starts with "%!" then evaluate it as an expression and
3789 * use the result as the actual format string.
3790 */
3791 if (fmt[0] == '%' && fmt[1] == '!')
3792 {
3793 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3794 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003795 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003796 }
3797#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798
3799 if (fillchar == 0)
3800 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003801#ifdef FEAT_MBYTE
3802 /* Can't handle a multi-byte fill character yet. */
3803 else if (mb_char2len(fillchar) > 1)
3804 fillchar = '-';
3805#endif
3806
Bram Moolenaar567199b2013-04-24 16:52:36 +02003807 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3808 * p will become invalid when getting another buffer line. */
3809 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3810 empty_line = (*p == NUL);
3811
3812 /* Get the byte value now, in case we need it below. This is more
3813 * efficient than making a copy of the line. */
3814 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3815 byteval = 0;
3816 else
3817#ifdef FEAT_MBYTE
3818 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3819#else
3820 byteval = p[wp->w_cursor.col];
3821#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822
3823 groupdepth = 0;
3824 p = out;
3825 curitem = 0;
3826 prevchar_isflag = TRUE;
3827 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003828 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003830 if (curitem == STL_MAX_ITEM)
3831 {
3832 /* There are too many items. Add the error code to the statusline
3833 * to give the user a hint about what went wrong. */
3834 if (p + 6 < out + outlen)
3835 {
3836 mch_memmove(p, " E541", (size_t)5);
3837 p += 5;
3838 }
3839 break;
3840 }
3841
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 if (*s != NUL && *s != '%')
3843 prevchar_isflag = prevchar_isitem = FALSE;
3844
3845 /*
3846 * Handle up to the next '%' or the end.
3847 */
3848 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3849 *p++ = *s++;
3850 if (*s == NUL || p + 1 >= out + outlen)
3851 break;
3852
3853 /*
3854 * Handle one '%' item.
3855 */
3856 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003857 if (*s == NUL) /* ignore trailing % */
3858 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 if (*s == '%')
3860 {
3861 if (p + 1 >= out + outlen)
3862 break;
3863 *p++ = *s++;
3864 prevchar_isflag = prevchar_isitem = FALSE;
3865 continue;
3866 }
3867 if (*s == STL_MIDDLEMARK)
3868 {
3869 s++;
3870 if (groupdepth > 0)
3871 continue;
3872 item[curitem].type = Middle;
3873 item[curitem++].start = p;
3874 continue;
3875 }
3876 if (*s == STL_TRUNCMARK)
3877 {
3878 s++;
3879 item[curitem].type = Trunc;
3880 item[curitem++].start = p;
3881 continue;
3882 }
3883 if (*s == ')')
3884 {
3885 s++;
3886 if (groupdepth < 1)
3887 continue;
3888 groupdepth--;
3889
3890 t = item[groupitem[groupdepth]].start;
3891 *p = NUL;
3892 l = vim_strsize(t);
3893 if (curitem > groupitem[groupdepth] + 1
3894 && item[groupitem[groupdepth]].minwid == 0)
3895 {
3896 /* remove group if all items are empty */
3897 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
Bram Moolenaaraf6e36f2016-03-08 12:56:33 +01003898 if (item[n].type == Normal || item[n].type == Highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 break;
3900 if (n == curitem)
3901 {
3902 p = t;
3903 l = 0;
3904 }
3905 }
3906 if (l > item[groupitem[groupdepth]].maxwid)
3907 {
3908 /* truncate, remove n bytes of text at the start */
3909#ifdef FEAT_MBYTE
3910 if (has_mbyte)
3911 {
3912 /* Find the first character that should be included. */
3913 n = 0;
3914 while (l >= item[groupitem[groupdepth]].maxwid)
3915 {
3916 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003917 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 }
3919 }
3920 else
3921#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003922 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923
3924 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003925 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 p = p - n + 1;
3927#ifdef FEAT_MBYTE
3928 /* Fill up space left over by half a double-wide char. */
3929 while (++l < item[groupitem[groupdepth]].minwid)
3930 *p++ = fillchar;
3931#endif
3932
3933 /* correct the start of the items for the truncation */
3934 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
3935 {
3936 item[l].start -= n;
3937 if (item[l].start < t)
3938 item[l].start = t;
3939 }
3940 }
3941 else if (abs(item[groupitem[groupdepth]].minwid) > l)
3942 {
3943 /* fill */
3944 n = item[groupitem[groupdepth]].minwid;
3945 if (n < 0)
3946 {
3947 /* fill by appending characters */
3948 n = 0 - n;
3949 while (l++ < n && p + 1 < out + outlen)
3950 *p++ = fillchar;
3951 }
3952 else
3953 {
3954 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003955 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 l = n - l;
3957 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003958 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 p += l;
3960 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3961 item[n].start += l;
3962 for ( ; l > 0; l--)
3963 *t++ = fillchar;
3964 }
3965 }
3966 continue;
3967 }
3968 minwid = 0;
3969 maxwid = 9999;
3970 zeropad = FALSE;
3971 l = 1;
3972 if (*s == '0')
3973 {
3974 s++;
3975 zeropad = TRUE;
3976 }
3977 if (*s == '-')
3978 {
3979 s++;
3980 l = -1;
3981 }
3982 if (VIM_ISDIGIT(*s))
3983 {
3984 minwid = (int)getdigits(&s);
3985 if (minwid < 0) /* overflow */
3986 minwid = 0;
3987 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003988 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 {
3990 item[curitem].type = Highlight;
3991 item[curitem].start = p;
3992 item[curitem].minwid = minwid > 9 ? 1 : minwid;
3993 s++;
3994 curitem++;
3995 continue;
3996 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003997 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
3998 {
3999 if (*s == STL_TABCLOSENR)
4000 {
4001 if (minwid == 0)
4002 {
4003 /* %X ends the close label, go back to the previously
4004 * define tab label nr. */
4005 for (n = curitem - 1; n >= 0; --n)
4006 if (item[n].type == TabPage && item[n].minwid >= 0)
4007 {
4008 minwid = item[n].minwid;
4009 break;
4010 }
4011 }
4012 else
4013 /* close nrs are stored as negative values */
4014 minwid = - minwid;
4015 }
4016 item[curitem].type = TabPage;
4017 item[curitem].start = p;
4018 item[curitem].minwid = minwid;
4019 s++;
4020 curitem++;
4021 continue;
4022 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 if (*s == '.')
4024 {
4025 s++;
4026 if (VIM_ISDIGIT(*s))
4027 {
4028 maxwid = (int)getdigits(&s);
4029 if (maxwid <= 0) /* overflow */
4030 maxwid = 50;
4031 }
4032 }
4033 minwid = (minwid > 50 ? 50 : minwid) * l;
4034 if (*s == '(')
4035 {
4036 groupitem[groupdepth++] = curitem;
4037 item[curitem].type = Group;
4038 item[curitem].start = p;
4039 item[curitem].minwid = minwid;
4040 item[curitem].maxwid = maxwid;
4041 s++;
4042 curitem++;
4043 continue;
4044 }
4045 if (vim_strchr(STL_ALL, *s) == NULL)
4046 {
4047 s++;
4048 continue;
4049 }
4050 opt = *s++;
4051
4052 /* OK - now for the real work */
4053 base = 'D';
4054 itemisflag = FALSE;
4055 fillable = TRUE;
4056 num = -1;
4057 str = NULL;
4058 switch (opt)
4059 {
4060 case STL_FILEPATH:
4061 case STL_FULLPATH:
4062 case STL_FILENAME:
4063 fillable = FALSE; /* don't change ' ' to fillchar */
4064 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004065 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 else
4067 {
4068 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004069 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4071 }
4072 trans_characters(NameBuff, MAXPATHL);
4073 if (opt != STL_FILENAME)
4074 str = NameBuff;
4075 else
4076 str = gettail(NameBuff);
4077 break;
4078
4079 case STL_VIM_EXPR: /* '{' */
4080 itemisflag = TRUE;
4081 t = p;
4082 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4083 *p++ = *s++;
4084 if (*s != '}') /* missing '}' or out of space */
4085 break;
4086 s++;
4087 *p = 0;
4088 p = t;
4089
4090#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004091 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 set_internal_string_var((char_u *)"actual_curbuf", tmp);
4093
4094 o_curbuf = curbuf;
4095 o_curwin = curwin;
4096 curwin = wp;
4097 curbuf = wp->w_buffer;
4098
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00004099 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100
4101 curwin = o_curwin;
4102 curbuf = o_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00004103 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104
4105 if (str != NULL && *str != 0)
4106 {
4107 if (*skipdigits(str) == NUL)
4108 {
4109 num = atoi((char *)str);
4110 vim_free(str);
4111 str = NULL;
4112 itemisflag = FALSE;
4113 }
4114 }
4115#endif
4116 break;
4117
4118 case STL_LINE:
4119 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4120 ? 0L : (long)(wp->w_cursor.lnum);
4121 break;
4122
4123 case STL_NUMLINES:
4124 num = wp->w_buffer->b_ml.ml_line_count;
4125 break;
4126
4127 case STL_COLUMN:
4128 num = !(State & INSERT) && empty_line
4129 ? 0 : (int)wp->w_cursor.col + 1;
4130 break;
4131
4132 case STL_VIRTCOL:
4133 case STL_VIRTCOL_ALT:
4134 /* In list mode virtcol needs to be recomputed */
4135 virtcol = wp->w_virtcol;
4136 if (wp->w_p_list && lcs_tab1 == NUL)
4137 {
4138 wp->w_p_list = FALSE;
4139 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4140 wp->w_p_list = TRUE;
4141 }
4142 ++virtcol;
4143 /* Don't display %V if it's the same as %c. */
4144 if (opt == STL_VIRTCOL_ALT
4145 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4146 ? 0 : (int)wp->w_cursor.col + 1)))
4147 break;
4148 num = (long)virtcol;
4149 break;
4150
4151 case STL_PERCENTAGE:
4152 num = (int)(((long)wp->w_cursor.lnum * 100L) /
4153 (long)wp->w_buffer->b_ml.ml_line_count);
4154 break;
4155
4156 case STL_ALTPERCENT:
4157 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004158 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 break;
4160
4161 case STL_ARGLISTSTAT:
4162 fillable = FALSE;
4163 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004164 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 str = tmp;
4166 break;
4167
4168 case STL_KEYMAP:
4169 fillable = FALSE;
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004170 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 str = tmp;
4172 break;
4173 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004174#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004175 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176#else
4177 num = 0;
4178#endif
4179 break;
4180
4181 case STL_BUFNO:
4182 num = wp->w_buffer->b_fnum;
4183 break;
4184
4185 case STL_OFFSET_X:
4186 base = 'X';
4187 case STL_OFFSET:
4188#ifdef FEAT_BYTEOFF
4189 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4190 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4191 0L : l + 1 + (!(State & INSERT) && empty_line ?
4192 0 : (int)wp->w_cursor.col);
4193#endif
4194 break;
4195
4196 case STL_BYTEVAL_X:
4197 base = 'X';
4198 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02004199 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200 if (num == NL)
4201 num = 0;
4202 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4203 num = NL;
4204 break;
4205
4206 case STL_ROFLAG:
4207 case STL_ROFLAG_ALT:
4208 itemisflag = TRUE;
4209 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02004210 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 break;
4212
4213 case STL_HELPFLAG:
4214 case STL_HELPFLAG_ALT:
4215 itemisflag = TRUE;
4216 if (wp->w_buffer->b_help)
4217 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00004218 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 break;
4220
4221#ifdef FEAT_AUTOCMD
4222 case STL_FILETYPE:
4223 if (*wp->w_buffer->b_p_ft != NUL
4224 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4225 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004226 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4227 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 str = tmp;
4229 }
4230 break;
4231
4232 case STL_FILETYPE_ALT:
4233 itemisflag = TRUE;
4234 if (*wp->w_buffer->b_p_ft != NUL
4235 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4236 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004237 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4238 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 for (t = tmp; *t != 0; t++)
4240 *t = TOUPPER_LOC(*t);
4241 str = tmp;
4242 }
4243 break;
4244#endif
4245
4246#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4247 case STL_PREVIEWFLAG:
4248 case STL_PREVIEWFLAG_ALT:
4249 itemisflag = TRUE;
4250 if (wp->w_p_pvw)
4251 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4252 : _("[Preview]"));
4253 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004254
4255 case STL_QUICKFIX:
4256 if (bt_quickfix(wp->w_buffer))
4257 str = (char_u *)(wp->w_llist_ref
4258 ? _(msg_loclist)
4259 : _(msg_qflist));
4260 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261#endif
4262
4263 case STL_MODIFIED:
4264 case STL_MODIFIED_ALT:
4265 itemisflag = TRUE;
4266 switch ((opt == STL_MODIFIED_ALT)
4267 + bufIsChanged(wp->w_buffer) * 2
4268 + (!wp->w_buffer->b_p_ma) * 4)
4269 {
4270 case 2: str = (char_u *)"[+]"; break;
4271 case 3: str = (char_u *)",+"; break;
4272 case 4: str = (char_u *)"[-]"; break;
4273 case 5: str = (char_u *)",-"; break;
4274 case 6: str = (char_u *)"[+-]"; break;
4275 case 7: str = (char_u *)",+-"; break;
4276 }
4277 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004278
4279 case STL_HIGHLIGHT:
4280 t = s;
4281 while (*s != '#' && *s != NUL)
4282 ++s;
4283 if (*s == '#')
4284 {
4285 item[curitem].type = Highlight;
4286 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004287 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004288 curitem++;
4289 }
Bram Moolenaar11808222013-11-02 04:39:38 +01004290 if (*s != NUL)
4291 ++s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004292 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 }
4294
4295 item[curitem].start = p;
4296 item[curitem].type = Normal;
4297 if (str != NULL && *str)
4298 {
4299 t = str;
4300 if (itemisflag)
4301 {
4302 if ((t[0] && t[1])
4303 && ((!prevchar_isitem && *t == ',')
4304 || (prevchar_isflag && *t == ' ')))
4305 t++;
4306 prevchar_isflag = TRUE;
4307 }
4308 l = vim_strsize(t);
4309 if (l > 0)
4310 prevchar_isitem = TRUE;
4311 if (l > maxwid)
4312 {
4313 while (l >= maxwid)
4314#ifdef FEAT_MBYTE
4315 if (has_mbyte)
4316 {
4317 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004318 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 }
4320 else
4321#endif
4322 l -= byte2cells(*t++);
4323 if (p + 1 >= out + outlen)
4324 break;
4325 *p++ = '<';
4326 }
4327 if (minwid > 0)
4328 {
4329 for (; l < minwid && p + 1 < out + outlen; l++)
4330 {
4331 /* Don't put a "-" in front of a digit. */
4332 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4333 *p++ = ' ';
4334 else
4335 *p++ = fillchar;
4336 }
4337 minwid = 0;
4338 }
4339 else
4340 minwid *= -1;
4341 while (*t && p + 1 < out + outlen)
4342 {
4343 *p++ = *t++;
4344 /* Change a space by fillchar, unless fillchar is '-' and a
4345 * digit follows. */
4346 if (fillable && p[-1] == ' '
4347 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4348 p[-1] = fillchar;
4349 }
4350 for (; l < minwid && p + 1 < out + outlen; l++)
4351 *p++ = fillchar;
4352 }
4353 else if (num >= 0)
4354 {
4355 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4356 char_u nstr[20];
4357
4358 if (p + 20 >= out + outlen)
4359 break; /* not sufficient space */
4360 prevchar_isitem = TRUE;
4361 t = nstr;
4362 if (opt == STL_VIRTCOL_ALT)
4363 {
4364 *t++ = '-';
4365 minwid--;
4366 }
4367 *t++ = '%';
4368 if (zeropad)
4369 *t++ = '0';
4370 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004371 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 *t = 0;
4373
4374 for (n = num, l = 1; n >= nbase; n /= nbase)
4375 l++;
4376 if (opt == STL_VIRTCOL_ALT)
4377 l++;
4378 if (l > maxwid)
4379 {
4380 l += 2;
4381 n = l - maxwid;
4382 while (l-- > maxwid)
4383 num /= nbase;
4384 *t++ = '>';
4385 *t++ = '%';
4386 *t = t[-3];
4387 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004388 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4389 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 }
4391 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004392 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4393 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 p += STRLEN(p);
4395 }
4396 else
4397 item[curitem].type = Empty;
4398
4399 if (opt == STL_VIM_EXPR)
4400 vim_free(str);
4401
4402 if (num >= 0 || (!itemisflag && str && *str))
4403 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4404 curitem++;
4405 }
4406 *p = NUL;
4407 itemcnt = curitem;
4408
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004409#ifdef FEAT_EVAL
4410 if (usefmt != fmt)
4411 vim_free(usefmt);
4412#endif
4413
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 width = vim_strsize(out);
4415 if (maxwidth > 0 && width > maxwidth)
4416 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004417 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 l = 0;
4419 if (itemcnt == 0)
4420 s = out;
4421 else
4422 {
4423 for ( ; l < itemcnt; l++)
4424 if (item[l].type == Trunc)
4425 {
4426 /* Truncate at %< item. */
4427 s = item[l].start;
4428 break;
4429 }
4430 if (l == itemcnt)
4431 {
4432 /* No %< item, truncate first item. */
4433 s = item[0].start;
4434 l = 0;
4435 }
4436 }
4437
4438 if (width - vim_strsize(s) >= maxwidth)
4439 {
4440 /* Truncation mark is beyond max length */
4441#ifdef FEAT_MBYTE
4442 if (has_mbyte)
4443 {
4444 s = out;
4445 width = 0;
4446 for (;;)
4447 {
4448 width += ptr2cells(s);
4449 if (width >= maxwidth)
4450 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004451 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 }
4453 /* Fill up for half a double-wide character. */
4454 while (++width < maxwidth)
4455 *s++ = fillchar;
4456 }
4457 else
4458#endif
4459 s = out + maxwidth - 1;
4460 for (l = 0; l < itemcnt; l++)
4461 if (item[l].start > s)
4462 break;
4463 itemcnt = l;
4464 *s++ = '>';
4465 *s = 0;
4466 }
4467 else
4468 {
4469#ifdef FEAT_MBYTE
4470 if (has_mbyte)
4471 {
4472 n = 0;
4473 while (width >= maxwidth)
4474 {
4475 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004476 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 }
4478 }
4479 else
4480#endif
4481 n = width - maxwidth + 1;
4482 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004483 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 *s = '<';
4485
4486 /* Fill up for half a double-wide character. */
4487 while (++width < maxwidth)
4488 {
4489 s = s + STRLEN(s);
4490 *s++ = fillchar;
4491 *s = NUL;
4492 }
4493
4494 --n; /* count the '<' */
4495 for (; l < itemcnt; l++)
4496 {
4497 if (item[l].start - n >= s)
4498 item[l].start -= n;
4499 else
4500 item[l].start = s;
4501 }
4502 }
4503 width = maxwidth;
4504 }
4505 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4506 {
4507 /* Apply STL_MIDDLE if any */
4508 for (l = 0; l < itemcnt; l++)
4509 if (item[l].type == Middle)
4510 break;
4511 if (l < itemcnt)
4512 {
4513 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004514 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 for (s = item[l].start; s < p; s++)
4516 *s = fillchar;
4517 for (l++; l < itemcnt; l++)
4518 item[l].start += maxwidth - width;
4519 width = maxwidth;
4520 }
4521 }
4522
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004523 /* Store the info about highlighting. */
4524 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004526 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 for (l = 0; l < itemcnt; l++)
4528 {
4529 if (item[l].type == Highlight)
4530 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004531 sp->start = item[l].start;
4532 sp->userhl = item[l].minwid;
4533 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 }
4535 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004536 sp->start = NULL;
4537 sp->userhl = 0;
4538 }
4539
4540 /* Store the info about tab pages labels. */
4541 if (tabtab != NULL)
4542 {
4543 sp = tabtab;
4544 for (l = 0; l < itemcnt; l++)
4545 {
4546 if (item[l].type == TabPage)
4547 {
4548 sp->start = item[l].start;
4549 sp->userhl = item[l].minwid;
4550 sp++;
4551 }
4552 }
4553 sp->start = NULL;
4554 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 }
4556
4557 return width;
4558}
4559#endif /* FEAT_STL_OPT */
4560
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004561#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4562 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004564 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4565 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 */
4567 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004568get_rel_pos(
4569 win_T *wp,
4570 char_u *buf,
4571 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572{
4573 long above; /* number of lines above window */
4574 long below; /* number of lines below window */
4575
Bram Moolenaar0027c212015-01-07 13:31:52 +01004576 if (buflen < 3) /* need at least 3 chars for writing */
4577 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 above = wp->w_topline - 1;
4579#ifdef FEAT_DIFF
4580 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
Bram Moolenaar29bc9db2015-08-04 17:43:25 +02004581 if (wp->w_topline == 1 && wp->w_topfill >= 1)
4582 above = 0; /* All buffer lines are displayed and there is an
4583 * indication of filler lines, that can be considered
4584 * seeing all lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585#endif
4586 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4587 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004588 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4589 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004591 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004593 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 ? (int)(above / ((above + below) / 100L))
4595 : (int)(above * 100L / (above + below)));
4596}
4597#endif
4598
4599/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004600 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 * Return TRUE if it was appended.
4602 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004603 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004604append_arg_number(
4605 win_T *wp,
4606 char_u *buf,
4607 int buflen,
4608 int add_file) /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609{
4610 char_u *p;
4611
4612 if (ARGCOUNT <= 1) /* nothing to do */
4613 return FALSE;
4614
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004615 p = buf + STRLEN(buf); /* go to the end of the buffer */
4616 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 return FALSE;
4618 *p++ = ' ';
4619 *p++ = '(';
4620 if (add_file)
4621 {
4622 STRCPY(p, "file ");
4623 p += 5;
4624 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004625 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4626 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4628 return TRUE;
4629}
4630
4631/*
4632 * If fname is not a full path, make it a full path.
4633 * Returns pointer to allocated memory (NULL for failure).
4634 */
4635 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004636fix_fname(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637{
4638 /*
4639 * Force expanding the path always for Unix, because symbolic links may
4640 * mess up the full path name, even though it starts with a '/'.
4641 * Also expand when there is ".." in the file name, try to remove it,
4642 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004643 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 * For MS-Windows also expand names like "longna~1" to "longname".
4645 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004646#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 return FullName_save(fname, TRUE);
4648#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004649 if (!vim_isAbsName(fname)
4650 || strstr((char *)fname, "..") != NULL
4651 || strstr((char *)fname, "//") != NULL
4652# ifdef BACKSLASH_IN_FILENAME
4653 || strstr((char *)fname, "\\\\") != NULL
4654# endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004655# if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004657# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 )
4659 return FullName_save(fname, FALSE);
4660
4661 fname = vim_strsave(fname);
4662
Bram Moolenaar9b942202007-10-03 12:31:33 +00004663# ifdef USE_FNAME_CASE
4664# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004666# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 {
4668 if (fname != NULL)
4669 fname_case(fname, 0); /* set correct case for file name */
4670 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004671# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672
4673 return fname;
4674#endif
4675}
4676
4677/*
4678 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4679 * "ffname" becomes a pointer to allocated memory (or NULL).
4680 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004682fname_expand(
4683 buf_T *buf UNUSED,
4684 char_u **ffname,
4685 char_u **sfname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686{
4687 if (*ffname == NULL) /* if no file name given, nothing to do */
4688 return;
4689 if (*sfname == NULL) /* if no short file name given, use ffname */
4690 *sfname = *ffname;
4691 *ffname = fix_fname(*ffname); /* expand to full path */
4692
4693#ifdef FEAT_SHORTCUT
4694 if (!buf->b_p_bin)
4695 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004696 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697
4698 /* If the file name is a shortcut file, use the file it links to. */
4699 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004700 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701 {
4702 vim_free(*ffname);
4703 *ffname = rfname;
4704 *sfname = rfname;
4705 }
4706 }
4707#endif
4708}
4709
4710/*
4711 * Get the file name for an argument list entry.
4712 */
4713 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004714alist_name(aentry_T *aep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715{
4716 buf_T *bp;
4717
4718 /* Use the name from the associated buffer if it exists. */
4719 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004720 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 return aep->ae_fname;
4722 return bp->b_fname;
4723}
4724
4725#if defined(FEAT_WINDOWS) || defined(PROTO)
4726/*
4727 * do_arg_all(): Open up to 'count' windows, one for each argument.
4728 */
4729 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004730do_arg_all(
4731 int count,
4732 int forceit, /* hide buffers in current windows */
4733 int keep_tabs) /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734{
4735 int i;
4736 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004737 char_u *opened; /* Array of weight for which args are open:
4738 * 0: not opened
4739 * 1: opened in other tab
4740 * 2: opened in curtab
4741 * 3: opened in curtab and curwin
4742 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004743 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 int use_firstwin = FALSE; /* use first window for arglist */
4745 int split_ret = OK;
4746 int p_ea_save;
4747 alist_T *alist; /* argument list to be used */
4748 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004749 tabpage_T *tpnext;
4750 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004751 win_T *old_curwin, *last_curwin;
4752 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004753 win_T *new_curwin = NULL;
4754 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755
4756 if (ARGCOUNT <= 0)
4757 {
4758 /* Don't give an error message. We don't want it when the ":all"
4759 * command is in the .vimrc. */
4760 return;
4761 }
4762 setpcmark();
4763
4764 opened_len = ARGCOUNT;
4765 opened = alloc_clear((unsigned)opened_len);
4766 if (opened == NULL)
4767 return;
4768
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004769 /* Autocommands may do anything to the argument list. Make sure it's not
4770 * freed while we are working here by "locking" it. We still have to
4771 * watch out for its size to be changed. */
4772 alist = curwin->w_alist;
4773 ++alist->al_refcount;
4774
4775 old_curwin = curwin;
4776 old_curtab = curtab;
4777
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004778# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004780# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781
4782 /*
4783 * Try closing all windows that are not in the argument list.
4784 * Also close windows that are not full width;
4785 * When 'hidden' or "forceit" set the buffer becomes hidden.
4786 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004787 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004789 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004790 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004791 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004793 tpnext = curtab->tp_next;
4794 for (wp = firstwin; wp != NULL; wp = wpnext)
4795 {
4796 wpnext = wp->w_next;
4797 buf = wp->w_buffer;
4798 if (buf->b_ffname == NULL
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004799 || (!keep_tabs && buf->b_nwindows > 1)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004800 || wp->w_width != Columns)
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004801 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004802 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004804 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004805 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004807 if (i < alist->al_ga.ga_len
4808 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4809 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4810 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004812 int weight = 1;
4813
4814 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004815 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004816 ++weight;
4817 if (old_curwin == wp)
4818 ++weight;
4819 }
4820
4821 if (weight > (int)opened[i])
4822 {
4823 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004824 if (i == 0)
4825 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004826 if (new_curwin != NULL)
4827 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004828 new_curwin = wp;
4829 new_curtab = curtab;
4830 }
4831 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004832 else if (keep_tabs)
4833 i = opened_len;
4834
4835 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004836 {
4837 /* Use the current argument list for all windows
4838 * containing a file from it. */
4839 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004840 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004841 ++wp->w_alist->al_refcount;
4842 }
4843 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 }
4846 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004847 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004849 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004851 if (P_HID(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004852 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004854 /* If the buffer was changed, and we would like to hide it,
4855 * try autowriting. */
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004856 if (!P_HID(buf) && buf->b_nwindows <= 1
4857 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004859#ifdef FEAT_AUTOCMD
4860 bufref_T bufref;
4861
4862 set_bufref(&bufref, buf);
4863#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004864 (void)autowrite(buf, FALSE);
4865#ifdef FEAT_AUTOCMD
4866 /* check if autocommands removed the window */
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02004867 if (!win_valid(wp) || !bufref_valid(&bufref))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004868 {
4869 wpnext = firstwin; /* start all over... */
4870 continue;
4871 }
4872#endif
4873 }
4874#ifdef FEAT_WINDOWS
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004875 /* don't close last window */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004876 if (firstwin == lastwin
4877 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004878#endif
4879 use_firstwin = TRUE;
4880#ifdef FEAT_WINDOWS
4881 else
4882 {
4883 win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4884# ifdef FEAT_AUTOCMD
4885 /* check if autocommands removed the next window */
4886 if (!win_valid(wpnext))
4887 wpnext = firstwin; /* start all over... */
4888# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 }
4890#endif
4891 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 }
4893 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004894
4895 /* Without the ":tab" modifier only do the current tab page. */
4896 if (had_tab == 0 || tpnext == NULL)
4897 break;
4898
4899# ifdef FEAT_AUTOCMD
4900 /* check if autocommands removed the next tab page */
4901 if (!valid_tabpage(tpnext))
4902 tpnext = first_tabpage; /* start all over...*/
4903# endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004904 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 }
4906
4907 /*
4908 * Open a window for files in the argument list that don't have one.
4909 * ARGCOUNT may change while doing this, because of autocommands.
4910 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004911 if (count > opened_len || count <= 0)
4912 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913
4914#ifdef FEAT_AUTOCMD
4915 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4916 ++autocmd_no_enter;
4917 ++autocmd_no_leave;
4918#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004919 last_curwin = curwin;
4920 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004922#ifdef FEAT_WINDOWS
4923 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
4924 * leaving an empty tab page when executed locally. */
4925 if (keep_tabs && bufempty() && curbuf->b_nwindows == 1
4926 && curbuf->b_ffname == NULL && !curbuf->b_changed)
4927 use_firstwin = TRUE;
4928#endif
4929
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004930 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 {
4932 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4933 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004934 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 {
4936 /* Move the already present window to below the current window */
4937 if (curwin->w_arg_idx != i)
4938 {
4939 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
4940 {
4941 if (wpnext->w_arg_idx == i)
4942 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004943 if (keep_tabs)
4944 {
4945 new_curwin = wpnext;
4946 new_curtab = curtab;
4947 }
4948 else
4949 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 break;
4951 }
4952 }
4953 }
4954 }
4955 else if (split_ret == OK)
4956 {
4957 if (!use_firstwin) /* split current window */
4958 {
4959 p_ea_save = p_ea;
4960 p_ea = TRUE; /* use space from all windows */
4961 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4962 p_ea = p_ea_save;
4963 if (split_ret == FAIL)
4964 continue;
4965 }
4966#ifdef FEAT_AUTOCMD
4967 else /* first window: do autocmd for leaving this buffer */
4968 --autocmd_no_leave;
4969#endif
4970
4971 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004972 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 */
4974 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004975 if (i == 0)
4976 {
4977 new_curwin = curwin;
4978 new_curtab = curtab;
4979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
4981 ECMD_ONE,
4982 ((P_HID(curwin->w_buffer)
4983 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00004984 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985#ifdef FEAT_AUTOCMD
4986 if (use_firstwin)
4987 ++autocmd_no_leave;
4988#endif
4989 use_firstwin = FALSE;
4990 }
4991 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004992
4993 /* When ":tab" was used open a new tab for a new window repeatedly. */
4994 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
4995 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 }
4997
4998 /* Remove the "lock" on the argument list. */
4999 alist_unlink(alist);
5000
5001#ifdef FEAT_AUTOCMD
5002 --autocmd_no_enter;
5003#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005004 /* restore last referenced tabpage's curwin */
5005 if (last_curtab != new_curtab)
5006 {
5007 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005008 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01005009 if (win_valid(last_curwin))
5010 win_enter(last_curwin, FALSE);
5011 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005012 /* to window with first arg */
5013 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005014 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00005015 if (win_valid(new_curwin))
5016 win_enter(new_curwin, FALSE);
5017
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018#ifdef FEAT_AUTOCMD
5019 --autocmd_no_leave;
5020#endif
5021 vim_free(opened);
5022}
5023
5024# if defined(FEAT_LISTCMDS) || defined(PROTO)
5025/*
5026 * Open a window for a number of buffers.
5027 */
5028 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005029ex_buffer_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030{
5031 buf_T *buf;
5032 win_T *wp, *wpnext;
5033 int split_ret = OK;
5034 int p_ea_save;
5035 int open_wins = 0;
5036 int r;
5037 int count; /* Maximum number of windows to open. */
5038 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005039#ifdef FEAT_WINDOWS
5040 int had_tab = cmdmod.tab;
5041 tabpage_T *tpnext;
5042#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043
5044 if (eap->addr_count == 0) /* make as many windows as possible */
5045 count = 9999;
5046 else
5047 count = eap->line2; /* make as many windows as specified */
5048 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5049 all = FALSE;
5050 else
5051 all = TRUE;
5052
5053 setpcmark();
5054
5055#ifdef FEAT_GUI
5056 need_mouse_correct = TRUE;
5057#endif
5058
5059 /*
5060 * Close superfluous windows (two windows for the same buffer).
5061 * Also close windows that are not full-width.
5062 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005063#ifdef FEAT_WINDOWS
5064 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005065 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005066 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005069 tpnext = curtab->tp_next;
5070 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005072 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005073 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005074#ifdef FEAT_WINDOWS
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005075 || ((cmdmod.split & WSP_VERT)
5076 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00005077 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005078 : wp->w_width != Columns)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005079 || (had_tab > 0 && wp != firstwin)
5080#endif
Bram Moolenaar362ce482012-06-06 19:02:45 +02005081 ) && firstwin != lastwin
5082#ifdef FEAT_AUTOCMD
5083 && !(wp->w_closing || wp->w_buffer->b_closing)
5084#endif
5085 )
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005086 {
5087 win_close(wp, FALSE);
5088#ifdef FEAT_AUTOCMD
5089 wpnext = firstwin; /* just in case an autocommand does
5090 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005091 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005092 open_wins = 0;
5093#endif
5094 }
5095 else
5096 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005098
5099#ifdef FEAT_WINDOWS
5100 /* Without the ":tab" modifier only do the current tab page. */
5101 if (had_tab == 0 || tpnext == NULL)
5102 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02005103 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005105#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106
5107 /*
5108 * Go through the buffer list. When a buffer doesn't have a window yet,
5109 * open one. Otherwise move the window to the right position.
5110 * Watch out for autocommands that delete buffers or windows!
5111 */
5112#ifdef FEAT_AUTOCMD
5113 /* Don't execute Win/Buf Enter/Leave autocommands here. */
5114 ++autocmd_no_enter;
5115#endif
5116 win_enter(lastwin, FALSE);
5117#ifdef FEAT_AUTOCMD
5118 ++autocmd_no_leave;
5119#endif
5120 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5121 {
5122 /* Check if this buffer needs a window */
5123 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5124 continue;
5125
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005126#ifdef FEAT_WINDOWS
5127 if (had_tab != 0)
5128 {
5129 /* With the ":tab" modifier don't move the window. */
5130 if (buf->b_nwindows > 0)
5131 wp = lastwin; /* buffer has a window, skip it */
5132 else
5133 wp = NULL;
5134 }
5135 else
5136#endif
5137 {
5138 /* Check if this buffer already has a window */
Bram Moolenaar29323592016-07-24 22:04:11 +02005139 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb475fb92006-03-02 22:40:52 +00005140 if (wp->w_buffer == buf)
5141 break;
5142 /* If the buffer already has a window, move it */
5143 if (wp != NULL)
5144 win_move_after(wp, curwin);
5145 }
5146
5147 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005149#ifdef FEAT_AUTOCMD
5150 bufref_T bufref;
5151
5152 set_bufref(&bufref, buf);
5153#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 /* Split the window and put the buffer in it */
5155 p_ea_save = p_ea;
5156 p_ea = TRUE; /* use space from all windows */
5157 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5158 ++open_wins;
5159 p_ea = p_ea_save;
5160 if (split_ret == FAIL)
5161 continue;
5162
5163 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005164#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 swap_exists_action = SEA_DIALOG;
5166#endif
5167 set_curbuf(buf, DOBUF_GOTO);
5168#ifdef FEAT_AUTOCMD
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005169 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02005171 /* autocommands deleted the buffer!!! */
Bram Moolenaare64ac772005-12-07 20:54:59 +00005172#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005174# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175 break;
5176 }
5177#endif
Bram Moolenaare64ac772005-12-07 20:54:59 +00005178#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 if (swap_exists_action == SEA_QUIT)
5180 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005181# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5182 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005183
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005184 /* Reset the error/interrupt/exception state here so that
5185 * aborting() returns FALSE when closing a window. */
5186 enter_cleanup(&cs);
5187# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005188
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005189 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 win_close(curwin, TRUE);
5191 --open_wins;
5192 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005193 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005194
5195# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5196 /* Restore the error/interrupt/exception state if not
5197 * discarded by a new aborting error, interrupt, or uncaught
5198 * exception. */
5199 leave_cleanup(&cs);
5200# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 }
5202 else
5203 handle_swap_exists(NULL);
5204#endif
5205 }
5206
5207 ui_breakcheck();
5208 if (got_int)
5209 {
5210 (void)vgetc(); /* only break the file loading, not the rest */
5211 break;
5212 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005213#ifdef FEAT_EVAL
5214 /* Autocommands deleted the buffer or aborted script processing!!! */
5215 if (aborting())
5216 break;
5217#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005218#ifdef FEAT_WINDOWS
5219 /* When ":tab" was used open a new tab for a new window repeatedly. */
5220 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5221 cmdmod.tab = 9999;
5222#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223 }
5224#ifdef FEAT_AUTOCMD
5225 --autocmd_no_enter;
5226#endif
5227 win_enter(firstwin, FALSE); /* back to first window */
5228#ifdef FEAT_AUTOCMD
5229 --autocmd_no_leave;
5230#endif
5231
5232 /*
5233 * Close superfluous windows.
5234 */
5235 for (wp = lastwin; open_wins > count; )
5236 {
5237 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
5238 || autowrite(wp->w_buffer, FALSE) == OK);
5239#ifdef FEAT_AUTOCMD
5240 if (!win_valid(wp))
5241 {
5242 /* BufWrite Autocommands made the window invalid, start over */
5243 wp = lastwin;
5244 }
5245 else
5246#endif
5247 if (r)
5248 {
5249 win_close(wp, !P_HID(wp->w_buffer));
5250 --open_wins;
5251 wp = lastwin;
5252 }
5253 else
5254 {
5255 wp = wp->w_prev;
5256 if (wp == NULL)
5257 break;
5258 }
5259 }
5260}
5261# endif /* FEAT_LISTCMDS */
5262
5263#endif /* FEAT_WINDOWS */
5264
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01005265static int chk_modeline(linenr_T, int);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005266
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267/*
5268 * do_modelines() - process mode lines for the current file
5269 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005270 * "flags" can be:
5271 * OPT_WINONLY only set options local to window
5272 * OPT_NOWIN don't set options local to window
5273 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 * Returns immediately if the "ml" option isn't set.
5275 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005277do_modelines(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005279 linenr_T lnum;
5280 int nmlines;
5281 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282
5283 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5284 return;
5285
5286 /* Disallow recursive entry here. Can happen when executing a modeline
5287 * triggers an autocommand, which reloads modelines with a ":do". */
5288 if (entered)
5289 return;
5290
5291 ++entered;
5292 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5293 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005294 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 nmlines = 0;
5296
5297 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5298 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005299 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 nmlines = 0;
5301 --entered;
5302}
5303
5304#include "version.h" /* for version number */
5305
5306/*
5307 * chk_modeline() - check a single line for a mode string
5308 * Return FAIL if an error encountered.
5309 */
5310 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005311chk_modeline(
5312 linenr_T lnum,
5313 int flags) /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314{
5315 char_u *s;
5316 char_u *e;
5317 char_u *linecopy; /* local copy of any modeline found */
5318 int prev;
5319 int vers;
5320 int end;
5321 int retval = OK;
5322 char_u *save_sourcing_name;
5323 linenr_T save_sourcing_lnum;
5324#ifdef FEAT_EVAL
5325 scid_T save_SID;
5326#endif
5327
5328 prev = -1;
5329 for (s = ml_get(lnum); *s != NUL; ++s)
5330 {
5331 if (prev == -1 || vim_isspace(prev))
5332 {
5333 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5334 || STRNCMP(s, "vi:", (size_t)3) == 0)
5335 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005336 /* Accept both "vim" and "Vim". */
5337 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 {
5339 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5340 e = s + 4;
5341 else
5342 e = s + 3;
5343 vers = getdigits(&e);
5344 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005345 && (s[0] != 'V'
5346 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347 && (s[3] == ':'
5348 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5349 || (VIM_VERSION_100 < vers && s[3] == '<')
5350 || (VIM_VERSION_100 > vers && s[3] == '>')
5351 || (VIM_VERSION_100 == vers && s[3] == '=')))
5352 break;
5353 }
5354 }
5355 prev = *s;
5356 }
5357
5358 if (*s)
5359 {
5360 do /* skip over "ex:", "vi:" or "vim:" */
5361 ++s;
5362 while (s[-1] != ':');
5363
5364 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5365 if (linecopy == NULL)
5366 return FAIL;
5367
5368 save_sourcing_lnum = sourcing_lnum;
5369 save_sourcing_name = sourcing_name;
5370 sourcing_lnum = lnum; /* prepare for emsg() */
5371 sourcing_name = (char_u *)"modelines";
5372
5373 end = FALSE;
5374 while (end == FALSE)
5375 {
5376 s = skipwhite(s);
5377 if (*s == NUL)
5378 break;
5379
5380 /*
5381 * Find end of set command: ':' or end of line.
5382 * Skip over "\:", replacing it with ":".
5383 */
5384 for (e = s; *e != ':' && *e != NUL; ++e)
5385 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005386 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 if (*e == NUL)
5388 end = TRUE;
5389
5390 /*
5391 * If there is a "set" command, require a terminating ':' and
5392 * ignore the stuff after the ':'.
5393 * "vi:set opt opt opt: foo" -- foo not interpreted
5394 * "vi:opt opt opt: foo" -- foo interpreted
5395 * Accept "se" for compatibility with Elvis.
5396 */
5397 if (STRNCMP(s, "set ", (size_t)4) == 0
5398 || STRNCMP(s, "se ", (size_t)3) == 0)
5399 {
5400 if (*e != ':') /* no terminating ':'? */
5401 break;
5402 end = TRUE;
5403 s = vim_strchr(s, ' ') + 1;
5404 }
5405 *e = NUL; /* truncate the set command */
5406
5407 if (*s != NUL) /* skip over an empty "::" */
5408 {
5409#ifdef FEAT_EVAL
5410 save_SID = current_SID;
5411 current_SID = SID_MODELINE;
5412#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005413 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414#ifdef FEAT_EVAL
5415 current_SID = save_SID;
5416#endif
5417 if (retval == FAIL) /* stop if error found */
5418 break;
5419 }
5420 s = e + 1; /* advance to next part */
5421 }
5422
5423 sourcing_lnum = save_sourcing_lnum;
5424 sourcing_name = save_sourcing_name;
5425
5426 vim_free(linecopy);
5427 }
5428 return retval;
5429}
5430
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005431#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005433read_viminfo_bufferlist(
5434 vir_T *virp,
5435 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436{
5437 char_u *tab;
5438 linenr_T lnum;
5439 colnr_T col;
5440 buf_T *buf;
5441 char_u *sfname;
5442 char_u *xline;
5443
5444 /* Handle long line and escaped characters. */
5445 xline = viminfo_readstring(virp, 1, FALSE);
5446
5447 /* don't read in if there are files on the command-line or if writing: */
5448 if (xline != NULL && !writing && ARGCOUNT == 0
5449 && find_viminfo_parameter('%') != NULL)
5450 {
5451 /* Format is: <fname> Tab <lnum> Tab <col>.
5452 * Watch out for a Tab in the file name, work from the end. */
5453 lnum = 0;
5454 col = 0;
5455 tab = vim_strrchr(xline, '\t');
5456 if (tab != NULL)
5457 {
5458 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005459 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460 tab = vim_strrchr(xline, '\t');
5461 if (tab != NULL)
5462 {
5463 *tab++ = '\0';
5464 lnum = atol((char *)tab);
5465 }
5466 }
5467
5468 /* Expand "~/" in the file name at "line + 1" to a full path.
5469 * Then try shortening it by comparing with the current directory */
5470 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005471 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472
5473 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5474 if (buf != NULL) /* just in case... */
5475 {
5476 buf->b_last_cursor.lnum = lnum;
5477 buf->b_last_cursor.col = col;
5478 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5479 }
5480 }
5481 vim_free(xline);
5482
5483 return viminfo_readline(virp);
5484}
5485
5486 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005487write_viminfo_bufferlist(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488{
5489 buf_T *buf;
5490#ifdef FEAT_WINDOWS
5491 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005492 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493#endif
5494 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005495 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496
5497 if (find_viminfo_parameter('%') == NULL)
5498 return;
5499
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005500 /* Without a number -1 is returned: do all buffers. */
5501 max_buffers = get_viminfo_parameter('%');
5502
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005504#define LINE_BUF_LEN (MAXPATHL + 40)
5505 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 if (line == NULL)
5507 return;
5508
5509#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00005510 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 set_last_cursor(win);
5512#else
5513 set_last_cursor(curwin);
5514#endif
5515
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005516 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar29323592016-07-24 22:04:11 +02005517 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 {
5519 if (buf->b_fname == NULL
5520 || !buf->b_p_bl
5521#ifdef FEAT_QUICKFIX
5522 || bt_quickfix(buf)
5523#endif
5524 || removable(buf->b_ffname))
5525 continue;
5526
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005527 if (max_buffers-- == 0)
5528 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 putc('%', fp);
5530 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005531 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 (long)buf->b_last_cursor.lnum,
5533 buf->b_last_cursor.col);
5534 viminfo_writestring(fp, line);
5535 }
5536 vim_free(line);
5537}
5538#endif
5539
5540
5541/*
5542 * Return special buffer name.
5543 * Returns NULL when the buffer has a normal file name.
5544 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005545 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005546buf_spname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547{
5548#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
5549 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005550 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005551 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005552 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005553
5554 /*
5555 * For location list window, w_llist_ref points to the location list.
5556 * For quickfix window, w_llist_ref is NULL.
5557 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005558 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005559 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005560 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005561 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005562 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563#endif
5564#ifdef FEAT_QUICKFIX
5565 /* There is no _file_ when 'buftype' is "nofile", b_sfname
5566 * contains the name as specified by the user */
5567 if (bt_nofile(buf))
5568 {
5569 if (buf->b_sfname != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005570 return buf->b_sfname;
5571 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 }
5573#endif
5574 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005575 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 return NULL;
5577}
5578
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005579#if (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
5580 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5581 || defined(PROTO)
5582/*
5583 * Find a window for buffer "buf".
5584 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5585 * If not found FAIL is returned.
5586 */
5587 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005588find_win_for_buf(
5589 buf_T *buf,
5590 win_T **wp,
5591 tabpage_T **tp)
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005592{
5593 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5594 if ((*wp)->w_buffer == buf)
5595 goto win_found;
5596 return FAIL;
5597win_found:
5598 return OK;
5599}
5600#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601
5602#if defined(FEAT_SIGNS) || defined(PROTO)
5603/*
5604 * Insert the sign into the signlist.
5605 */
5606 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005607insert_sign(
5608 buf_T *buf, /* buffer to store sign in */
5609 signlist_T *prev, /* previous sign entry */
5610 signlist_T *next, /* next sign entry */
5611 int id, /* sign ID */
5612 linenr_T lnum, /* line number which gets the mark */
5613 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614{
5615 signlist_T *newsign;
5616
5617 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5618 if (newsign != NULL)
5619 {
5620 newsign->id = id;
5621 newsign->lnum = lnum;
5622 newsign->typenr = typenr;
5623 newsign->next = next;
5624#ifdef FEAT_NETBEANS_INTG
5625 newsign->prev = prev;
5626 if (next != NULL)
5627 next->prev = newsign;
5628#endif
5629
5630 if (prev == NULL)
5631 {
5632 /* When adding first sign need to redraw the windows to create the
5633 * column for signs. */
5634 if (buf->b_signlist == NULL)
5635 {
5636 redraw_buf_later(buf, NOT_VALID);
5637 changed_cline_bef_curs();
5638 }
5639
5640 /* first sign in signlist */
5641 buf->b_signlist = newsign;
Bram Moolenaar3b7b8362015-03-20 18:11:48 +01005642#ifdef FEAT_NETBEANS_INTG
5643 if (netbeans_active())
5644 buf->b_has_sign_column = TRUE;
5645#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 }
5647 else
5648 prev->next = newsign;
5649 }
5650}
5651
5652/*
5653 * Add the sign into the signlist. Find the right spot to do it though.
5654 */
5655 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005656buf_addsign(
5657 buf_T *buf, /* buffer to store sign in */
5658 int id, /* sign ID */
5659 linenr_T lnum, /* line number which gets the mark */
5660 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661{
5662 signlist_T *sign; /* a sign in the signlist */
5663 signlist_T *prev; /* the previous sign */
5664
5665 prev = NULL;
5666 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5667 {
5668 if (lnum == sign->lnum && id == sign->id)
5669 {
5670 sign->typenr = typenr;
5671 return;
5672 }
5673 else if (
5674#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5675 id < 0 &&
5676#endif
5677 lnum < sign->lnum)
5678 {
5679#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5680 /* XXX - GRP: Is this because of sign slide problem? Or is it
5681 * really needed? Or is it because we allow multiple signs per
5682 * line? If so, should I add that feature to FEAT_SIGNS?
5683 */
5684 while (prev != NULL && prev->lnum == lnum)
5685 prev = prev->prev;
5686 if (prev == NULL)
5687 sign = buf->b_signlist;
5688 else
5689 sign = prev->next;
5690#endif
5691 insert_sign(buf, prev, sign, id, lnum, typenr);
5692 return;
5693 }
5694 prev = sign;
5695 }
5696#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5697 /* XXX - GRP: See previous comment */
5698 while (prev != NULL && prev->lnum == lnum)
5699 prev = prev->prev;
5700 if (prev == NULL)
5701 sign = buf->b_signlist;
5702 else
5703 sign = prev->next;
5704#endif
5705 insert_sign(buf, prev, sign, id, lnum, typenr);
5706
5707 return;
5708}
5709
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005710/*
5711 * For an existing, placed sign "markId" change the type to "typenr".
5712 * Returns the line number of the sign, or zero if the sign is not found.
5713 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005714 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005715buf_change_sign_type(
5716 buf_T *buf, /* buffer to store sign in */
5717 int markId, /* sign ID */
5718 int typenr) /* typenr of sign we are adding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719{
5720 signlist_T *sign; /* a sign in the signlist */
5721
5722 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5723 {
5724 if (sign->id == markId)
5725 {
5726 sign->typenr = typenr;
5727 return sign->lnum;
5728 }
5729 }
5730
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005731 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732}
5733
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005734 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005735buf_getsigntype(
5736 buf_T *buf,
5737 linenr_T lnum,
5738 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739{
5740 signlist_T *sign; /* a sign in a b_signlist */
5741
5742 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5743 if (sign->lnum == lnum
5744 && (type == SIGN_ANY
5745# ifdef FEAT_SIGN_ICONS
5746 || (type == SIGN_ICON
5747 && sign_get_image(sign->typenr) != NULL)
5748# endif
5749 || (type == SIGN_TEXT
5750 && sign_get_text(sign->typenr) != NULL)
5751 || (type == SIGN_LINEHL
5752 && sign_get_attr(sign->typenr, TRUE) != 0)))
5753 return sign->typenr;
5754 return 0;
5755}
5756
5757
5758 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005759buf_delsign(
5760 buf_T *buf, /* buffer sign is stored in */
5761 int id) /* sign id */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762{
5763 signlist_T **lastp; /* pointer to pointer to current sign */
5764 signlist_T *sign; /* a sign in a b_signlist */
5765 signlist_T *next; /* the next sign in a b_signlist */
5766 linenr_T lnum; /* line number whose sign was deleted */
5767
5768 lastp = &buf->b_signlist;
5769 lnum = 0;
5770 for (sign = buf->b_signlist; sign != NULL; sign = next)
5771 {
5772 next = sign->next;
5773 if (sign->id == id)
5774 {
5775 *lastp = next;
5776#ifdef FEAT_NETBEANS_INTG
5777 if (next != NULL)
5778 next->prev = sign->prev;
5779#endif
5780 lnum = sign->lnum;
5781 vim_free(sign);
5782 break;
5783 }
5784 else
5785 lastp = &sign->next;
5786 }
5787
5788 /* When deleted the last sign need to redraw the windows to remove the
5789 * sign column. */
5790 if (buf->b_signlist == NULL)
5791 {
5792 redraw_buf_later(buf, NOT_VALID);
5793 changed_cline_bef_curs();
5794 }
5795
5796 return lnum;
5797}
5798
5799
5800/*
5801 * Find the line number of the sign with the requested id. If the sign does
5802 * not exist, return 0 as the line number. This will still let the correct file
5803 * get loaded.
5804 */
5805 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005806buf_findsign(
5807 buf_T *buf, /* buffer to store sign in */
5808 int id) /* sign ID */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809{
5810 signlist_T *sign; /* a sign in the signlist */
5811
5812 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5813 if (sign->id == id)
5814 return sign->lnum;
5815
5816 return 0;
5817}
5818
5819 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005820buf_findsign_id(
5821 buf_T *buf, /* buffer whose sign we are searching for */
5822 linenr_T lnum) /* line number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823{
5824 signlist_T *sign; /* a sign in the signlist */
5825
5826 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5827 if (sign->lnum == lnum)
5828 return sign->id;
5829
5830 return 0;
5831}
5832
5833
5834# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5835/* see if a given type of sign exists on a specific line */
5836 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005837buf_findsigntype_id(
5838 buf_T *buf, /* buffer whose sign we are searching for */
5839 linenr_T lnum, /* line number of sign */
5840 int typenr) /* sign type number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841{
5842 signlist_T *sign; /* a sign in the signlist */
5843
5844 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5845 if (sign->lnum == lnum && sign->typenr == typenr)
5846 return sign->id;
5847
5848 return 0;
5849}
5850
5851
5852# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5853/* return the number of icons on the given line */
5854 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005855buf_signcount(buf_T *buf, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856{
5857 signlist_T *sign; /* a sign in the signlist */
5858 int count = 0;
5859
5860 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5861 if (sign->lnum == lnum)
5862 if (sign_get_image(sign->typenr) != NULL)
5863 count++;
5864
5865 return count;
5866}
5867# endif /* FEAT_SIGN_ICONS */
5868# endif /* FEAT_NETBEANS_INTG */
5869
5870
5871/*
5872 * Delete signs in buffer "buf".
5873 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02005874 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005875buf_delete_signs(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876{
5877 signlist_T *next;
5878
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005879 /* When deleting the last sign need to redraw the windows to remove the
Bram Moolenaar4e036c92014-07-16 16:30:28 +02005880 * sign column. Not when curwin is NULL (this means we're exiting). */
5881 if (buf->b_signlist != NULL && curwin != NULL)
Bram Moolenaar0d3d5e02014-05-07 16:35:08 +02005882 {
5883 redraw_buf_later(buf, NOT_VALID);
5884 changed_cline_bef_curs();
5885 }
5886
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 while (buf->b_signlist != NULL)
5888 {
5889 next = buf->b_signlist->next;
5890 vim_free(buf->b_signlist);
5891 buf->b_signlist = next;
5892 }
5893}
5894
5895/*
5896 * Delete all signs in all buffers.
5897 */
5898 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005899buf_delete_all_signs(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900{
5901 buf_T *buf; /* buffer we are checking for signs */
5902
Bram Moolenaar29323592016-07-24 22:04:11 +02005903 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 if (buf->b_signlist != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 buf_delete_signs(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906}
5907
5908/*
5909 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
5910 */
5911 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005912sign_list_placed(buf_T *rbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913{
5914 buf_T *buf;
5915 signlist_T *p;
5916 char lbuf[BUFSIZ];
5917
5918 MSG_PUTS_TITLE(_("\n--- Signs ---"));
5919 msg_putchar('\n');
5920 if (rbuf == NULL)
5921 buf = firstbuf;
5922 else
5923 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005924 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 {
5926 if (buf->b_signlist != NULL)
5927 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005928 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
5930 msg_putchar('\n');
5931 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005932 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005934 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
5936 MSG_PUTS(lbuf);
5937 msg_putchar('\n');
5938 }
5939 if (rbuf != NULL)
5940 break;
5941 buf = buf->b_next;
5942 }
5943}
5944
5945/*
5946 * Adjust a placed sign for inserted/deleted lines.
5947 */
5948 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005949sign_mark_adjust(
5950 linenr_T line1,
5951 linenr_T line2,
5952 long amount,
5953 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005954{
5955 signlist_T *sign; /* a sign in a b_signlist */
5956
5957 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
5958 {
5959 if (sign->lnum >= line1 && sign->lnum <= line2)
5960 {
5961 if (amount == MAXLNUM)
5962 sign->lnum = line1;
5963 else
5964 sign->lnum += amount;
5965 }
5966 else if (sign->lnum > line2)
5967 sign->lnum += amount_after;
5968 }
5969}
5970#endif /* FEAT_SIGNS */
5971
5972/*
5973 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5974 */
5975 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005976set_buflisted(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977{
5978 if (on != curbuf->b_p_bl)
5979 {
5980 curbuf->b_p_bl = on;
5981#ifdef FEAT_AUTOCMD
5982 if (on)
5983 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5984 else
5985 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
5986#endif
5987 }
5988}
5989
5990/*
5991 * Read the file for "buf" again and check if the contents changed.
5992 * Return TRUE if it changed or this could not be checked.
5993 */
5994 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005995buf_contents_changed(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996{
5997 buf_T *newbuf;
5998 int differ = TRUE;
5999 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 exarg_T ea;
6002
6003 /* Allocate a buffer without putting it in the buffer list. */
6004 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6005 if (newbuf == NULL)
6006 return TRUE;
6007
6008 /* Force the 'fileencoding' and 'fileformat' to be equal. */
6009 if (prep_exarg(&ea, buf) == FAIL)
6010 {
6011 wipe_buffer(newbuf, FALSE);
6012 return TRUE;
6013 }
6014
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 /* set curwin/curbuf to buf and save a few things */
6016 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017
Bram Moolenaar4770d092006-01-12 23:22:24 +00006018 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 && readfile(buf->b_ffname, buf->b_fname,
6020 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6021 &ea, READ_NEW | READ_DUMMY) == OK)
6022 {
6023 /* compare the two files line by line */
6024 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6025 {
6026 differ = FALSE;
6027 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6028 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6029 {
6030 differ = TRUE;
6031 break;
6032 }
6033 }
6034 }
6035 vim_free(ea.cmd);
6036
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037 /* restore curwin/curbuf and a few other things */
6038 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039
6040 if (curbuf != newbuf) /* safety check */
6041 wipe_buffer(newbuf, FALSE);
6042
6043 return differ;
6044}
6045
6046/*
6047 * Wipe out a buffer and decrement the last buffer number if it was used for
6048 * this buffer. Call this to wipe out a temp buffer that does not contain any
6049 * marks.
6050 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006052wipe_buffer(
6053 buf_T *buf,
6054 int aucmd UNUSED) /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006055{
6056 if (buf->b_fnum == top_file_num - 1)
6057 --top_file_num;
6058
6059#ifdef FEAT_AUTOCMD
6060 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006061 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +01006063 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064#ifdef FEAT_AUTOCMD
6065 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00006066 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067#endif
6068}