blob: 34273d83b5dfe5341e26d1da3030d264b88eaaeb [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)
31static char_u *buflist_match __ARGS((regprog_T *prog, buf_T *buf));
32# define HAVE_BUFLIST_MATCH
33static char_u *fname_match __ARGS((regprog_T *prog, char_u *name));
34#endif
35static void buflist_setfpos __ARGS((buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options));
Bram Moolenaar701f7af2008-11-15 13:12:07 +000036static wininfo_T *find_wininfo __ARGS((buf_T *buf, int skip_diff_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +000037#ifdef UNIX
38static buf_T *buflist_findname_stat __ARGS((char_u *ffname, struct stat *st));
39static int otherfile_buf __ARGS((buf_T *buf, char_u *ffname, struct stat *stp));
40static int buf_same_ino __ARGS((buf_T *buf, struct stat *stp));
41#else
42static int otherfile_buf __ARGS((buf_T *buf, char_u *ffname));
43#endif
44#ifdef FEAT_TITLE
45static int ti_change __ARGS((char_u *str, char_u **last));
46#endif
Bram Moolenaar0ab2a882009-05-13 10:51:08 +000047static int append_arg_number __ARGS((win_T *wp, char_u *buf, int buflen, int add_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +000048static void free_buffer __ARGS((buf_T *));
49static void free_buffer_stuff __ARGS((buf_T *buf, int free_options));
50static void clear_wininfo __ARGS((buf_T *buf));
51
52#ifdef UNIX
53# define dev_T dev_t
54#else
55# define dev_T unsigned
56#endif
57
58#if defined(FEAT_SIGNS)
59static void insert_sign __ARGS((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 Moolenaar071d4272004-06-13 20:20:40 +000070/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +020071 * Open current buffer, that is: open the memfile and read the file into
72 * memory.
73 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000074 */
75 int
Bram Moolenaar59f931e2010-07-24 20:27:03 +020076open_buffer(read_stdin, eap, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000077 int read_stdin; /* read file from stdin */
78 exarg_T *eap; /* for forced 'ff' and 'fenc' or NULL */
Bram Moolenaar59f931e2010-07-24 20:27:03 +020079 int flags; /* extra flags for readfile() */
Bram Moolenaar071d4272004-06-13 20:20:40 +000080{
81 int retval = OK;
82#ifdef FEAT_AUTOCMD
83 buf_T *old_curbuf;
84#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +010085#ifdef FEAT_SYN_HL
86 long old_tw = curbuf->b_p_tw;
87#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000088
89 /*
90 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
91 * When re-entering the same buffer, it should not change, because the
92 * user may have reset the flag by hand.
93 */
94 if (readonlymode && curbuf->b_ffname != NULL
95 && (curbuf->b_flags & BF_NEVERLOADED))
96 curbuf->b_p_ro = TRUE;
97
Bram Moolenaar4770d092006-01-12 23:22:24 +000098 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000099 {
100 /*
101 * There MUST be a memfile, otherwise we can't do anything
102 * If we can't create one for the current buffer, take another buffer
103 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100104 close_buffer(NULL, curbuf, 0, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105 for (curbuf = firstbuf; curbuf != NULL; curbuf = curbuf->b_next)
106 if (curbuf->b_ml.ml_mfp != NULL)
107 break;
108 /*
109 * if there is no memfile at all, exit
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000110 * This is OK, since there are no changes to lose.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111 */
112 if (curbuf == NULL)
113 {
114 EMSG(_("E82: Cannot allocate any buffer, exiting..."));
115 getout(2);
116 }
117 EMSG(_("E83: Cannot allocate buffer, using other one..."));
118 enter_buffer(curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100119#ifdef FEAT_SYN_HL
120 if (old_tw != curbuf->b_p_tw)
121 check_colorcolumn(curwin);
122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123 return FAIL;
124 }
125
126#ifdef FEAT_AUTOCMD
127 /* The autocommands in readfile() may change the buffer, but only AFTER
128 * reading the file. */
129 old_curbuf = curbuf;
130 modified_was_set = FALSE;
131#endif
132
133 /* mark cursor position as being invalid */
Bram Moolenaar89c0ea42010-02-24 16:58:36 +0100134 curwin->w_valid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135
136 if (curbuf->b_ffname != NULL
137#ifdef FEAT_NETBEANS_INTG
138 && netbeansReadFile
139#endif
140 )
141 {
142#ifdef FEAT_NETBEANS_INTG
143 int oldFire = netbeansFireChanges;
144
145 netbeansFireChanges = 0;
146#endif
147 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200148 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
149 flags | READ_NEW);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150#ifdef FEAT_NETBEANS_INTG
151 netbeansFireChanges = oldFire;
152#endif
153 /* Help buffer is filtered. */
154 if (curbuf->b_help)
155 fix_help_buffer();
156 }
157 else if (read_stdin)
158 {
159 int save_bin = curbuf->b_p_bin;
160 linenr_T line_count;
161
162 /*
163 * First read the text in binary mode into the buffer.
164 * Then read from that same buffer and append at the end. This makes
165 * it possible to retry when 'fileformat' or 'fileencoding' was
166 * guessed wrong.
167 */
168 curbuf->b_p_bin = TRUE;
169 retval = readfile(NULL, NULL, (linenr_T)0,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200170 (linenr_T)0, (linenr_T)MAXLNUM, NULL,
171 flags | (READ_NEW + READ_STDIN));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 curbuf->b_p_bin = save_bin;
173 if (retval == OK)
174 {
175 line_count = curbuf->b_ml.ml_line_count;
176 retval = readfile(NULL, NULL, (linenr_T)line_count,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200177 (linenr_T)0, (linenr_T)MAXLNUM, eap,
178 flags | READ_BUFFER);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179 if (retval == OK)
180 {
181 /* Delete the binary lines. */
182 while (--line_count >= 0)
183 ml_delete((linenr_T)1, FALSE);
184 }
185 else
186 {
187 /* Delete the converted lines. */
188 while (curbuf->b_ml.ml_line_count > line_count)
189 ml_delete(line_count, FALSE);
190 }
191 /* Put the cursor on the first line. */
192 curwin->w_cursor.lnum = 1;
193 curwin->w_cursor.col = 0;
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000194
195 /* Set or reset 'modified' before executing autocommands, so that
196 * it can be changed there. */
197 if (!readonlymode && !bufempty())
198 changed();
199 else if (retval != FAIL)
200 unchanged(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201#ifdef FEAT_AUTOCMD
202# ifdef FEAT_EVAL
203 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
204 curbuf, &retval);
205# else
206 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
207# endif
208#endif
209 }
210 }
211
212 /* if first time loading this buffer, init b_chartab[] */
213 if (curbuf->b_flags & BF_NEVERLOADED)
214 (void)buf_init_chartab(curbuf, FALSE);
215
216 /*
217 * Set/reset the Changed flag first, autocmds may change the buffer.
218 * Apply the automatic commands, before processing the modelines.
219 * So the modelines have priority over auto commands.
220 */
221 /* When reading stdin, the buffer contents always needs writing, so set
222 * the changed flag. Unless in readonly mode: "ls | gview -".
223 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000224 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225#ifdef FEAT_AUTOCMD
226 || modified_was_set /* ":set modified" used in autocmd */
227# ifdef FEAT_EVAL
228 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
229# endif
230#endif
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000231 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 changed();
Bram Moolenaar512e6b82007-06-19 13:36:52 +0000233 else if (retval != FAIL && !read_stdin)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 unchanged(curbuf, FALSE);
235 save_file_ff(curbuf); /* keep this fileformat */
236
237 /* require "!" to overwrite the file, because it wasn't read completely */
238#ifdef FEAT_EVAL
239 if (aborting())
240#else
241 if (got_int)
242#endif
243 curbuf->b_flags |= BF_READERR;
244
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000245#ifdef FEAT_FOLDING
246 /* Need to update automatic folding. Do this before the autocommands,
247 * they may use the fold info. */
248 foldUpdateAll(curwin);
249#endif
250
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251#ifdef FEAT_AUTOCMD
252 /* need to set w_topline, unless some autocommand already did that. */
253 if (!(curwin->w_valid & VALID_TOPLINE))
254 {
255 curwin->w_topline = 1;
256# ifdef FEAT_DIFF
257 curwin->w_topfill = 0;
258# endif
259 }
260# ifdef FEAT_EVAL
261 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
262# else
263 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
264# endif
265#endif
266
267 if (retval != FAIL)
268 {
269#ifdef FEAT_AUTOCMD
270 /*
271 * The autocommands may have changed the current buffer. Apply the
272 * modelines to the correct buffer, if it still exists and is loaded.
273 */
274 if (buf_valid(old_curbuf) && old_curbuf->b_ml.ml_mfp != NULL)
275 {
276 aco_save_T aco;
277
278 /* Go to the buffer that was opened. */
279 aucmd_prepbuf(&aco, old_curbuf);
280#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +0000281 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
283
284#ifdef FEAT_AUTOCMD
285# ifdef FEAT_EVAL
286 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
287 &retval);
288# else
289 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
290# endif
291
292 /* restore curwin/curbuf and a few other things */
293 aucmd_restbuf(&aco);
294 }
295#endif
296 }
297
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 return retval;
299}
300
301/*
302 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
303 */
304 int
305buf_valid(buf)
306 buf_T *buf;
307{
308 buf_T *bp;
309
310 for (bp = firstbuf; bp != NULL; bp = bp->b_next)
311 if (bp == buf)
312 return TRUE;
313 return FALSE;
314}
315
316/*
317 * Close the link to a buffer.
318 * "action" is used when there is no longer a window for the buffer.
319 * It can be:
320 * 0 buffer becomes hidden
321 * DOBUF_UNLOAD buffer is unloaded
322 * DOBUF_DELETE buffer is unloaded and removed from buffer list
323 * DOBUF_WIPE buffer is unloaded and really deleted
324 * When doing all but the first one on the current buffer, the caller should
325 * get a new buffer very soon!
326 *
327 * The 'bufhidden' option can force freeing and deleting.
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100328 *
329 * When "abort_if_last" is TRUE then do not close the buffer if autocommands
330 * cause there to be only one window with this buffer. e.g. when ":quit" is
331 * supposed to close the window but autocommands close all other windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 */
333 void
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100334close_buffer(win, buf, action, abort_if_last)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 win_T *win; /* if not NULL, set b_last_cursor */
336 buf_T *buf;
337 int action;
Bram Moolenaar5fbe6992012-03-07 22:52:36 +0100338 int abort_if_last UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339{
340#ifdef FEAT_AUTOCMD
341 int is_curbuf;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +0100342 int nwindows;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343#endif
344 int unload_buf = (action != 0);
345 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
346 int wipe_buf = (action == DOBUF_WIPE);
347
348#ifdef FEAT_QUICKFIX
349 /*
350 * Force unloading or deleting when 'bufhidden' says so.
351 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
352 * "hide" (otherwise we could never free or delete a buffer).
353 */
354 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
355 {
356 del_buf = TRUE;
357 unload_buf = TRUE;
358 }
359 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
360 {
361 del_buf = TRUE;
362 unload_buf = TRUE;
363 wipe_buf = TRUE;
364 }
365 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
366 unload_buf = TRUE;
367#endif
368
369 if (win != NULL)
370 {
371 /* Set b_last_cursor when closing the last window for the buffer.
372 * Remember the last cursor position and window options of the buffer.
373 * This used to be only for the current window, but then options like
374 * 'foldmethod' may be lost with a ":only" command. */
375 if (buf->b_nwindows == 1)
376 set_last_cursor(win);
377 buflist_setfpos(buf, win,
378 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
379 win->w_cursor.col, TRUE);
380 }
381
382#ifdef FEAT_AUTOCMD
383 /* When the buffer is no longer in a window, trigger BufWinLeave */
384 if (buf->b_nwindows == 1)
385 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200386 buf->b_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
388 FALSE, buf);
Bram Moolenaar362ce482012-06-06 19:02:45 +0200389 if (!buf_valid(buf))
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100390 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200391 /* Autocommands deleted the buffer. */
392aucmd_abort:
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100393 EMSG(_(e_auabort));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 return;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100395 }
Bram Moolenaar362ce482012-06-06 19:02:45 +0200396 buf->b_closing = FALSE;
397 if (abort_if_last && one_window())
398 /* Autocommands made this the only window. */
399 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400
401 /* When the buffer becomes hidden, but is not unloaded, trigger
402 * BufHidden */
403 if (!unload_buf)
404 {
Bram Moolenaar362ce482012-06-06 19:02:45 +0200405 buf->b_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
407 FALSE, buf);
Bram Moolenaar362ce482012-06-06 19:02:45 +0200408 if (!buf_valid(buf))
409 /* Autocommands deleted the buffer. */
410 goto aucmd_abort;
411 buf->b_closing = FALSE;
412 if (abort_if_last && one_window())
413 /* Autocommands made this the only window. */
414 goto aucmd_abort;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 }
416# ifdef FEAT_EVAL
417 if (aborting()) /* autocmds may abort script processing */
418 return;
419# endif
420 }
421 nwindows = buf->b_nwindows;
422#endif
423
424 /* decrease the link count from windows (unless not in any window) */
425 if (buf->b_nwindows > 0)
426 --buf->b_nwindows;
427
428 /* Return when a window is displaying the buffer or when it's not
429 * unloaded. */
430 if (buf->b_nwindows > 0 || !unload_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432
433 /* Always remove the buffer when there is no file name. */
434 if (buf->b_ffname == NULL)
435 del_buf = TRUE;
436
437 /*
438 * Free all things allocated for this buffer.
439 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
440 */
441#ifdef FEAT_AUTOCMD
442 /* Remember if we are closing the current buffer. Restore the number of
443 * windows, so that autocommands in buf_freeall() don't get confused. */
444 is_curbuf = (buf == curbuf);
445 buf->b_nwindows = nwindows;
446#endif
447
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200448 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
Bram Moolenaarddab3322011-09-14 17:50:14 +0200449 if (
450#ifdef FEAT_WINDOWS
451 win_valid(win) &&
Bram Moolenaar83bac4c2011-12-30 13:39:10 +0100452#else
453 win != NULL &&
Bram Moolenaarddab3322011-09-14 17:50:14 +0200454#endif
455 win->w_buffer == buf)
Bram Moolenaara971b822011-09-14 14:43:25 +0200456 win->w_buffer = NULL; /* make sure we don't use the buffer now */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457
458#ifdef FEAT_AUTOCMD
459 /* Autocommands may have deleted the buffer. */
460 if (!buf_valid(buf))
461 return;
462# ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000463 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 return;
465# endif
466
467 /* Autocommands may have opened or closed windows for this buffer.
468 * Decrement the count for the close we do here. */
469 if (buf->b_nwindows > 0)
470 --buf->b_nwindows;
471
472 /*
473 * It's possible that autocommands change curbuf to the one being deleted.
474 * This might cause the previous curbuf to be deleted unexpectedly. But
475 * in some cases it's OK to delete the curbuf, because a new one is
476 * obtained anyway. Therefore only return if curbuf changed to the
477 * deleted buffer.
478 */
479 if (buf == curbuf && !is_curbuf)
480 return;
481#endif
482
Bram Moolenaar498efdb2006-09-05 14:31:54 +0000483 /* Change directories when the 'acd' option is set. */
484 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485
486 /*
487 * Remove the buffer from the list.
488 */
489 if (wipe_buf)
490 {
491#ifdef FEAT_SUN_WORKSHOP
492 if (usingSunWorkShop)
493 workshop_file_closed_lineno((char *)buf->b_ffname,
494 (int)buf->b_last_cursor.lnum);
495#endif
496 vim_free(buf->b_ffname);
497 vim_free(buf->b_sfname);
498 if (buf->b_prev == NULL)
499 firstbuf = buf->b_next;
500 else
501 buf->b_prev->b_next = buf->b_next;
502 if (buf->b_next == NULL)
503 lastbuf = buf->b_prev;
504 else
505 buf->b_next->b_prev = buf->b_prev;
506 free_buffer(buf);
507 }
508 else
509 {
510 if (del_buf)
511 {
512 /* Free all internal variables and reset option values, to make
513 * ":bdel" compatible with Vim 5.7. */
514 free_buffer_stuff(buf, TRUE);
515
516 /* Make it look like a new buffer. */
517 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
518
519 /* Init the options when loaded again. */
520 buf->b_p_initialized = FALSE;
521 }
522 buf_clear_file(buf);
523 if (del_buf)
524 buf->b_p_bl = FALSE;
525 }
526}
527
528/*
529 * Make buffer not contain a file.
530 */
531 void
532buf_clear_file(buf)
533 buf_T *buf;
534{
535 buf->b_ml.ml_line_count = 1;
536 unchanged(buf, TRUE);
537#ifndef SHORT_FNAME
538 buf->b_shortname = FALSE;
539#endif
540 buf->b_p_eol = TRUE;
541 buf->b_start_eol = TRUE;
542#ifdef FEAT_MBYTE
543 buf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000544 buf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545#endif
546 buf->b_ml.ml_mfp = NULL;
547 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
548#ifdef FEAT_NETBEANS_INTG
549 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550#endif
551}
552
553/*
554 * buf_freeall() - free all things allocated for a buffer that are related to
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200555 * the file. flags:
556 * BFA_DEL buffer is going to be deleted
557 * BFA_WIPE buffer is going to be wiped out
558 * BFA_KEEP_UNDO do not free undo information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 void
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200561buf_freeall(buf, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 buf_T *buf;
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200563 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564{
565#ifdef FEAT_AUTOCMD
566 int is_curbuf = (buf == curbuf);
567
Bram Moolenaar362ce482012-06-06 19:02:45 +0200568 buf->b_closing = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname, FALSE, buf);
570 if (!buf_valid(buf)) /* autocommands may delete the buffer */
571 return;
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200572 if ((flags & BFA_DEL) && buf->b_p_bl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 {
574 apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname, FALSE, buf);
575 if (!buf_valid(buf)) /* autocommands may delete the buffer */
576 return;
577 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200578 if (flags & BFA_WIPE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 {
580 apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
581 FALSE, buf);
582 if (!buf_valid(buf)) /* autocommands may delete the buffer */
583 return;
584 }
Bram Moolenaar362ce482012-06-06 19:02:45 +0200585 buf->b_closing = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000587 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 return;
589# endif
590
591 /*
592 * It's possible that autocommands change curbuf to the one being deleted.
593 * This might cause curbuf to be deleted unexpectedly. But in some cases
594 * it's OK to delete the curbuf, because a new one is obtained anyway.
595 * Therefore only return if curbuf changed to the deleted buffer.
596 */
597 if (buf == curbuf && !is_curbuf)
598 return;
599#endif
600#ifdef FEAT_DIFF
601 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
602#endif
Bram Moolenaara971b822011-09-14 14:43:25 +0200603#ifdef FEAT_SYN_HL
Bram Moolenaar89c71222011-11-30 15:40:56 +0100604 /* Remove any ownsyntax, unless exiting. */
605 if (firstwin != NULL && curwin->w_buffer == buf)
606 reset_synblock(curwin);
Bram Moolenaara971b822011-09-14 14:43:25 +0200607#endif
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000608
609#ifdef FEAT_FOLDING
610 /* No folds in an empty buffer. */
611# ifdef FEAT_WINDOWS
612 {
613 win_T *win;
614 tabpage_T *tp;
615
616 FOR_ALL_TAB_WINDOWS(tp, win)
617 if (win->w_buffer == buf)
618 clearFolding(win);
619 }
620# else
621 if (curwin->w_buffer == buf)
622 clearFolding(curwin);
623# endif
624#endif
625
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626#ifdef FEAT_TCL
627 tcl_buffer_free(buf);
628#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 ml_close(buf, TRUE); /* close and delete the memline/memfile */
630 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200631 if ((flags & BFA_KEEP_UNDO) == 0)
632 {
633 u_blockfree(buf); /* free the memory allocated for undo */
634 u_clearall(buf); /* reset all undo information */
635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +0200637 syntax_clear(&buf->b_s); /* reset syntax info */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000639 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640}
641
642/*
643 * Free a buffer structure and the things it contains related to the buffer
644 * itself (not the file, that must have been done already).
645 */
646 static void
647free_buffer(buf)
648 buf_T *buf;
649{
650 free_buffer_stuff(buf, TRUE);
Bram Moolenaar429fa852013-04-15 12:27:36 +0200651#ifdef FEAT_EVAL
652 unref_var_dict(buf->b_vars);
653#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200654#ifdef FEAT_LUA
655 lua_buffer_free(buf);
656#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000657#ifdef FEAT_MZSCHEME
658 mzscheme_buffer_free(buf);
659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660#ifdef FEAT_PERL
661 perl_buf_free(buf);
662#endif
663#ifdef FEAT_PYTHON
664 python_buffer_free(buf);
665#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200666#ifdef FEAT_PYTHON3
667 python3_buffer_free(buf);
668#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669#ifdef FEAT_RUBY
670 ruby_buffer_free(buf);
671#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000672#ifdef FEAT_AUTOCMD
673 aubuflocal_remove(buf);
674#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 vim_free(buf);
676}
677
678/*
679 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
680 */
681 static void
682free_buffer_stuff(buf, free_options)
683 buf_T *buf;
684 int free_options; /* free options as well */
685{
686 if (free_options)
687 {
688 clear_wininfo(buf); /* including window-local options */
689 free_buf_options(buf, TRUE);
Bram Moolenaarbeca0552010-10-27 16:18:00 +0200690#ifdef FEAT_SPELL
691 ga_clear(&buf->b_s.b_langp);
692#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 }
694#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +0200695 vars_clear(&buf->b_vars->dv_hashtab); /* free all internal variables */
696 hash_init(&buf->b_vars->dv_hashtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697#endif
698#ifdef FEAT_USR_CMDS
699 uc_clear(&buf->b_ucmds); /* clear local user commands */
700#endif
701#ifdef FEAT_SIGNS
702 buf_delete_signs(buf); /* delete any signs */
703#endif
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000704#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200705 netbeans_file_killed(buf);
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +0000706#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707#ifdef FEAT_LOCALMAP
708 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
709 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
710#endif
711#ifdef FEAT_MBYTE
712 vim_free(buf->b_start_fenc);
713 buf->b_start_fenc = NULL;
714#endif
715}
716
717/*
718 * Free the b_wininfo list for buffer "buf".
719 */
720 static void
721clear_wininfo(buf)
722 buf_T *buf;
723{
724 wininfo_T *wip;
725
726 while (buf->b_wininfo != NULL)
727 {
728 wip = buf->b_wininfo;
729 buf->b_wininfo = wip->wi_next;
730 if (wip->wi_optset)
731 {
732 clear_winopt(&wip->wi_opt);
733#ifdef FEAT_FOLDING
734 deleteFoldRecurse(&wip->wi_folds);
735#endif
736 }
737 vim_free(wip);
738 }
739}
740
741#if defined(FEAT_LISTCMDS) || defined(PROTO)
742/*
743 * Go to another buffer. Handles the result of the ATTENTION dialog.
744 */
745 void
746goto_buffer(eap, start, dir, count)
747 exarg_T *eap;
748 int start;
749 int dir;
750 int count;
751{
Bram Moolenaare64ac772005-12-07 20:54:59 +0000752# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 buf_T *old_curbuf = curbuf;
754
755 swap_exists_action = SEA_DIALOG;
756# endif
757 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
758 start, dir, count, eap->forceit);
Bram Moolenaare64ac772005-12-07 20:54:59 +0000759# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
761 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000762# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
763 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000764
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000765 /* Reset the error/interrupt/exception state here so that
766 * aborting() returns FALSE when closing a window. */
767 enter_cleanup(&cs);
768# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000769
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000770 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 win_close(curwin, TRUE);
772 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000773 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000774
775# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
776 /* Restore the error/interrupt/exception state if not discarded by a
777 * new aborting error, interrupt, or uncaught exception. */
778 leave_cleanup(&cs);
779# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 }
781 else
782 handle_swap_exists(old_curbuf);
783# endif
784}
785#endif
786
Bram Moolenaare64ac772005-12-07 20:54:59 +0000787#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788/*
789 * Handle the situation of swap_exists_action being set.
790 * It is allowed for "old_curbuf" to be NULL or invalid.
791 */
792 void
793handle_swap_exists(old_curbuf)
794 buf_T *old_curbuf;
795{
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000796# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
797 cleanup_T cs;
798# endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100799#ifdef FEAT_SYN_HL
800 long old_tw = curbuf->b_p_tw;
801#endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000802
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 if (swap_exists_action == SEA_QUIT)
804 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000805# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
806 /* Reset the error/interrupt/exception state here so that
807 * aborting() returns FALSE when closing a buffer. */
808 enter_cleanup(&cs);
809# endif
810
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 /* User selected Quit at ATTENTION prompt. Go back to previous
812 * buffer. If that buffer is gone or the same as the current one,
813 * open a new, empty buffer. */
814 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000815 swap_exists_did_quit = TRUE;
Bram Moolenaar42ec6562012-02-22 14:58:37 +0100816 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 if (!buf_valid(old_curbuf) || old_curbuf == curbuf)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000818 old_curbuf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 if (old_curbuf != NULL)
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100820 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 enter_buffer(old_curbuf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +0100822#ifdef FEAT_SYN_HL
823 if (old_tw != curbuf->b_p_tw)
824 check_colorcolumn(curwin);
825#endif
826 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000828
829# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
830 /* Restore the error/interrupt/exception state if not discarded by a
831 * new aborting error, interrupt, or uncaught exception. */
832 leave_cleanup(&cs);
833# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 }
835 else if (swap_exists_action == SEA_RECOVER)
836 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000837# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
838 /* Reset the error/interrupt/exception state here so that
839 * aborting() returns FALSE when closing a buffer. */
840 enter_cleanup(&cs);
841# endif
842
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 /* User selected Recover at ATTENTION prompt. */
844 msg_scroll = TRUE;
845 ml_recover();
846 MSG_PUTS("\n"); /* don't overwrite the last message */
847 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +0000848 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000849
850# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
851 /* Restore the error/interrupt/exception state if not discarded by a
852 * new aborting error, interrupt, or uncaught exception. */
853 leave_cleanup(&cs);
854# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 }
856 swap_exists_action = SEA_NONE;
857}
858#endif
859
860#if defined(FEAT_LISTCMDS) || defined(PROTO)
861/*
862 * do_bufdel() - delete or unload buffer(s)
863 *
864 * addr_count == 0: ":bdel" - delete current buffer
865 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
866 * buffer "end_bnr", then any other arguments.
867 * addr_count == 2: ":N,N bdel" - delete buffers in range
868 *
869 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
870 * DOBUF_DEL (":bdel")
871 *
872 * Returns error message or NULL
873 */
874 char_u *
875do_bufdel(command, arg, addr_count, start_bnr, end_bnr, forceit)
876 int command;
877 char_u *arg; /* pointer to extra arguments */
878 int addr_count;
879 int start_bnr; /* first buffer number in a range */
880 int end_bnr; /* buffer nr or last buffer nr in a range */
881 int forceit;
882{
883 int do_current = 0; /* delete current buffer? */
884 int deleted = 0; /* number of buffers deleted */
885 char_u *errormsg = NULL; /* return value */
886 int bnr; /* buffer number */
887 char_u *p;
888
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 if (addr_count == 0)
890 {
891 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
892 }
893 else
894 {
895 if (addr_count == 2)
896 {
897 if (*arg) /* both range and argument is not allowed */
898 return (char_u *)_(e_trailing);
899 bnr = start_bnr;
900 }
901 else /* addr_count == 1 */
902 bnr = end_bnr;
903
904 for ( ;!got_int; ui_breakcheck())
905 {
906 /*
907 * delete the current buffer last, otherwise when the
908 * current buffer is deleted, the next buffer becomes
909 * the current one and will be loaded, which may then
910 * also be deleted, etc.
911 */
912 if (bnr == curbuf->b_fnum)
913 do_current = bnr;
914 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
915 forceit) == OK)
916 ++deleted;
917
918 /*
919 * find next buffer number to delete/unload
920 */
921 if (addr_count == 2)
922 {
923 if (++bnr > end_bnr)
924 break;
925 }
926 else /* addr_count == 1 */
927 {
928 arg = skipwhite(arg);
929 if (*arg == NUL)
930 break;
931 if (!VIM_ISDIGIT(*arg))
932 {
933 p = skiptowhite_esc(arg);
Bram Moolenaar0c279bb2013-03-19 14:25:54 +0100934 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
935 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 if (bnr < 0) /* failed */
937 break;
938 arg = p;
939 }
940 else
941 bnr = getdigits(&arg);
942 }
943 }
944 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
945 FORWARD, do_current, forceit) == OK)
946 ++deleted;
947
948 if (deleted == 0)
949 {
950 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +0000951 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +0000953 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954 else
Bram Moolenaar51485f02005-06-04 21:55:20 +0000955 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 errormsg = IObuff;
957 }
958 else if (deleted >= p_report)
959 {
960 if (command == DOBUF_UNLOAD)
961 {
962 if (deleted == 1)
963 MSG(_("1 buffer unloaded"));
964 else
965 smsg((char_u *)_("%d buffers unloaded"), deleted);
966 }
967 else if (command == DOBUF_DEL)
968 {
969 if (deleted == 1)
970 MSG(_("1 buffer deleted"));
971 else
972 smsg((char_u *)_("%d buffers deleted"), deleted);
973 }
974 else
975 {
976 if (deleted == 1)
977 MSG(_("1 buffer wiped out"));
978 else
979 smsg((char_u *)_("%d buffers wiped out"), deleted);
980 }
981 }
982 }
983
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984
985 return errormsg;
986}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +0200987#endif /* FEAT_LISTCMDS */
988
989#if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \
990 || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991
992/*
993 * Implementation of the commands for the buffer list.
994 *
995 * action == DOBUF_GOTO go to specified buffer
996 * action == DOBUF_SPLIT split window and go to specified buffer
997 * action == DOBUF_UNLOAD unload specified buffer(s)
998 * action == DOBUF_DEL delete specified buffer(s) from buffer list
999 * action == DOBUF_WIPE delete specified buffer(s) really
1000 *
1001 * start == DOBUF_CURRENT go to "count" buffer from current buffer
1002 * start == DOBUF_FIRST go to "count" buffer from first buffer
1003 * start == DOBUF_LAST go to "count" buffer from last buffer
1004 * start == DOBUF_MOD go to "count" modified buffer from current buffer
1005 *
1006 * Return FAIL or OK.
1007 */
1008 int
1009do_buffer(action, start, dir, count, forceit)
1010 int action;
1011 int start;
1012 int dir; /* FORWARD or BACKWARD */
1013 int count; /* buffer number or number of buffers */
1014 int forceit; /* TRUE for :...! */
1015{
1016 buf_T *buf;
1017 buf_T *bp;
1018 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1019 || action == DOBUF_WIPE);
1020
1021 switch (start)
1022 {
1023 case DOBUF_FIRST: buf = firstbuf; break;
1024 case DOBUF_LAST: buf = lastbuf; break;
1025 default: buf = curbuf; break;
1026 }
1027 if (start == DOBUF_MOD) /* find next modified buffer */
1028 {
1029 while (count-- > 0)
1030 {
1031 do
1032 {
1033 buf = buf->b_next;
1034 if (buf == NULL)
1035 buf = firstbuf;
1036 }
1037 while (buf != curbuf && !bufIsChanged(buf));
1038 }
1039 if (!bufIsChanged(buf))
1040 {
1041 EMSG(_("E84: No modified buffer found"));
1042 return FAIL;
1043 }
1044 }
1045 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1046 {
1047 while (buf != NULL && buf->b_fnum != count)
1048 buf = buf->b_next;
1049 }
1050 else
1051 {
1052 bp = NULL;
1053 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1054 {
1055 /* remember the buffer where we start, we come back there when all
1056 * buffers are unlisted. */
1057 if (bp == NULL)
1058 bp = buf;
1059 if (dir == FORWARD)
1060 {
1061 buf = buf->b_next;
1062 if (buf == NULL)
1063 buf = firstbuf;
1064 }
1065 else
1066 {
1067 buf = buf->b_prev;
1068 if (buf == NULL)
1069 buf = lastbuf;
1070 }
1071 /* don't count unlisted buffers */
1072 if (unload || buf->b_p_bl)
1073 {
1074 --count;
1075 bp = NULL; /* use this buffer as new starting point */
1076 }
1077 if (bp == buf)
1078 {
1079 /* back where we started, didn't find anything. */
1080 EMSG(_("E85: There is no listed buffer"));
1081 return FAIL;
1082 }
1083 }
1084 }
1085
1086 if (buf == NULL) /* could not find it */
1087 {
1088 if (start == DOBUF_FIRST)
1089 {
1090 /* don't warn when deleting */
1091 if (!unload)
1092 EMSGN(_("E86: Buffer %ld does not exist"), count);
1093 }
1094 else if (dir == FORWARD)
1095 EMSG(_("E87: Cannot go beyond last buffer"));
1096 else
1097 EMSG(_("E88: Cannot go before first buffer"));
1098 return FAIL;
1099 }
1100
1101#ifdef FEAT_GUI
1102 need_mouse_correct = TRUE;
1103#endif
1104
1105#ifdef FEAT_LISTCMDS
1106 /*
1107 * delete buffer buf from memory and/or the list
1108 */
1109 if (unload)
1110 {
1111 int forward;
1112 int retval;
1113
1114 /* When unloading or deleting a buffer that's already unloaded and
1115 * unlisted: fail silently. */
1116 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1117 return FAIL;
1118
1119 if (!forceit && bufIsChanged(buf))
1120 {
1121#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1122 if ((p_confirm || cmdmod.confirm) && p_write)
1123 {
1124 dialog_changed(buf, FALSE);
1125# ifdef FEAT_AUTOCMD
1126 if (!buf_valid(buf))
1127 /* Autocommand deleted buffer, oops! It's not changed
1128 * now. */
1129 return FAIL;
1130# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001131 /* If it's still changed fail silently, the dialog already
1132 * mentioned why it fails. */
1133 if (bufIsChanged(buf))
1134 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001136 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137#endif
1138 {
1139 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1140 buf->b_fnum);
1141 return FAIL;
1142 }
1143 }
1144
1145 /*
1146 * If deleting the last (listed) buffer, make it empty.
1147 * The last (listed) buffer cannot be unloaded.
1148 */
1149 for (bp = firstbuf; bp != NULL; bp = bp->b_next)
1150 if (bp->b_p_bl && bp != buf)
1151 break;
1152 if (bp == NULL && buf == curbuf)
1153 {
1154 if (action == DOBUF_UNLOAD)
1155 {
1156 EMSG(_("E90: Cannot unload last buffer"));
1157 return FAIL;
1158 }
1159
1160 /* Close any other windows on this buffer, then make it empty. */
1161#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00001162 close_windows(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163#endif
1164 setpcmark();
1165 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001166 forceit ? ECMD_FORCEIT : 0, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167
1168 /*
1169 * do_ecmd() may create a new buffer, then we have to delete
1170 * the old one. But do_ecmd() may have done that already, check
1171 * if the buffer still exists.
1172 */
1173 if (buf != curbuf && buf_valid(buf) && buf->b_nwindows == 0)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001174 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 return retval;
1176 }
1177
1178#ifdef FEAT_WINDOWS
1179 /*
1180 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001181 * (unless it's the only window). Repeat this so long as we end up in
1182 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001184 while (buf == curbuf
Bram Moolenaar362ce482012-06-06 19:02:45 +02001185# ifdef FEAT_AUTOCMD
1186 && !(curwin->w_closing || curwin->w_buffer->b_closing)
1187# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00001188 && (firstwin != lastwin || first_tabpage->tp_next != NULL))
Bram Moolenaarc93df6b2013-08-14 17:11:20 +02001189 {
1190 if (win_close(curwin, FALSE) == FAIL)
1191 break;
1192 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193#endif
1194
1195 /*
1196 * If the buffer to be deleted is not the current one, delete it here.
1197 */
1198 if (buf != curbuf)
1199 {
1200#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00001201 close_windows(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202#endif
1203 if (buf != curbuf && buf_valid(buf) && buf->b_nwindows <= 0)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001204 close_buffer(NULL, buf, action, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 return OK;
1206 }
1207
1208 /*
1209 * Deleting the current buffer: Need to find another buffer to go to.
1210 * There must be another, otherwise it would have been handled above.
1211 * First use au_new_curbuf, if it is valid.
1212 * Then prefer the buffer we most recently visited.
1213 * Else try to find one that is loaded, after the current buffer,
1214 * then before the current buffer.
1215 * Finally use any buffer.
1216 */
1217 buf = NULL; /* selected buffer */
1218 bp = NULL; /* used when no loaded buffer found */
1219#ifdef FEAT_AUTOCMD
1220 if (au_new_curbuf != NULL && buf_valid(au_new_curbuf))
1221 buf = au_new_curbuf;
1222# ifdef FEAT_JUMPLIST
1223 else
1224# endif
1225#endif
1226#ifdef FEAT_JUMPLIST
1227 if (curwin->w_jumplistlen > 0)
1228 {
1229 int jumpidx;
1230
1231 jumpidx = curwin->w_jumplistidx - 1;
1232 if (jumpidx < 0)
1233 jumpidx = curwin->w_jumplistlen - 1;
1234
1235 forward = jumpidx;
1236 while (jumpidx != curwin->w_jumplistidx)
1237 {
1238 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1239 if (buf != NULL)
1240 {
1241 if (buf == curbuf || !buf->b_p_bl)
1242 buf = NULL; /* skip current and unlisted bufs */
1243 else if (buf->b_ml.ml_mfp == NULL)
1244 {
1245 /* skip unloaded buf, but may keep it for later */
1246 if (bp == NULL)
1247 bp = buf;
1248 buf = NULL;
1249 }
1250 }
1251 if (buf != NULL) /* found a valid buffer: stop searching */
1252 break;
1253 /* advance to older entry in jump list */
1254 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1255 break;
1256 if (--jumpidx < 0)
1257 jumpidx = curwin->w_jumplistlen - 1;
1258 if (jumpidx == forward) /* List exhausted for sure */
1259 break;
1260 }
1261 }
1262#endif
1263
1264 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1265 {
1266 forward = TRUE;
1267 buf = curbuf->b_next;
1268 for (;;)
1269 {
1270 if (buf == NULL)
1271 {
1272 if (!forward) /* tried both directions */
1273 break;
1274 buf = curbuf->b_prev;
1275 forward = FALSE;
1276 continue;
1277 }
1278 /* in non-help buffer, try to skip help buffers, and vv */
1279 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1280 {
1281 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1282 break;
1283 if (bp == NULL) /* remember unloaded buf for later */
1284 bp = buf;
1285 }
1286 if (forward)
1287 buf = buf->b_next;
1288 else
1289 buf = buf->b_prev;
1290 }
1291 }
1292 if (buf == NULL) /* No loaded buffer, use unloaded one */
1293 buf = bp;
1294 if (buf == NULL) /* No loaded buffer, find listed one */
1295 {
1296 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1297 if (buf->b_p_bl && buf != curbuf)
1298 break;
1299 }
1300 if (buf == NULL) /* Still no buffer, just take one */
1301 {
1302 if (curbuf->b_next != NULL)
1303 buf = curbuf->b_next;
1304 else
1305 buf = curbuf->b_prev;
1306 }
1307 }
1308
1309 /*
1310 * make buf current buffer
1311 */
1312 if (action == DOBUF_SPLIT) /* split window first */
1313 {
1314# ifdef FEAT_WINDOWS
Bram Moolenaarf2330482008-06-24 20:19:36 +00001315 /* If 'switchbuf' contains "useopen": jump to first window containing
1316 * "buf" if one exists */
1317 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001318 return OK;
Bram Moolenaar9381ab72008-11-12 11:52:19 +00001319 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00001320 * page containing "buf" if one exists */
1321 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 return OK;
1323 if (win_split(0, 0) == FAIL)
1324# endif
1325 return FAIL;
1326 }
1327#endif
1328
1329 /* go to current buffer - nothing to do */
1330 if (buf == curbuf)
1331 return OK;
1332
1333 /*
1334 * Check if the current buffer may be abandoned.
1335 */
1336 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1337 {
1338#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1339 if ((p_confirm || cmdmod.confirm) && p_write)
1340 {
1341 dialog_changed(curbuf, FALSE);
1342# ifdef FEAT_AUTOCMD
1343 if (!buf_valid(buf))
1344 /* Autocommand deleted buffer, oops! */
1345 return FAIL;
1346# endif
1347 }
1348 if (bufIsChanged(curbuf))
1349#endif
1350 {
1351 EMSG(_(e_nowrtmsg));
1352 return FAIL;
1353 }
1354 }
1355
1356 /* Go to the other buffer. */
1357 set_curbuf(buf, action);
1358
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001359#if defined(FEAT_LISTCMDS) \
1360 && (defined(FEAT_SCROLLBIND) || defined(FEAT_CURSORBIND))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 if (action == DOBUF_SPLIT)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001362 {
1363 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
1364 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365#endif
1366
1367#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1368 if (aborting()) /* autocmds may abort script processing */
1369 return FAIL;
1370#endif
1371
1372 return OK;
1373}
Bram Moolenaar8c0e3222013-06-16 17:32:40 +02001374#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375
1376/*
1377 * Set current buffer to "buf". Executes autocommands and closes current
1378 * buffer. "action" tells how to close the current buffer:
1379 * DOBUF_GOTO free or hide it
1380 * DOBUF_SPLIT nothing
1381 * DOBUF_UNLOAD unload it
1382 * DOBUF_DEL delete it
1383 * DOBUF_WIPE wipe it out
1384 */
1385 void
1386set_curbuf(buf, action)
1387 buf_T *buf;
1388 int action;
1389{
1390 buf_T *prevbuf;
1391 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1392 || action == DOBUF_WIPE);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001393#ifdef FEAT_SYN_HL
1394 long old_tw = curbuf->b_p_tw;
1395#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396
1397 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001398 if (!cmdmod.keepalt)
1399 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001400 buflist_altfpos(curwin); /* remember curpos */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401
1402#ifdef FEAT_VISUAL
1403 /* Don't restart Select mode after switching to another buffer. */
1404 VIsual_reselect = FALSE;
1405#endif
1406
1407 /* close_windows() or apply_autocmds() may change curbuf */
1408 prevbuf = curbuf;
1409
1410#ifdef FEAT_AUTOCMD
1411 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
1412# ifdef FEAT_EVAL
1413 if (buf_valid(prevbuf) && !aborting())
1414# else
1415 if (buf_valid(prevbuf))
1416# endif
1417#endif
1418 {
Bram Moolenaara971b822011-09-14 14:43:25 +02001419#ifdef FEAT_SYN_HL
1420 if (prevbuf == curwin->w_buffer)
1421 reset_synblock(curwin);
1422#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423#ifdef FEAT_WINDOWS
1424 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001425 close_windows(prevbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426#endif
1427#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1428 if (buf_valid(prevbuf) && !aborting())
1429#else
1430 if (buf_valid(prevbuf))
1431#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001432 {
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001433#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001434 win_T *previouswin = curwin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001435#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001436 if (prevbuf == curbuf)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001437 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1439 unload ? action : (action == DOBUF_GOTO
1440 && !P_HID(prevbuf)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001441 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001442#ifdef FEAT_WINDOWS
Bram Moolenaare25865a2012-07-06 16:22:02 +02001443 if (curwin != previouswin && win_valid(previouswin))
Bram Moolenaar9e931222012-06-20 11:55:01 +02001444 /* autocommands changed curwin, Grr! */
Bram Moolenaare25865a2012-07-06 16:22:02 +02001445 curwin = previouswin;
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001446#endif
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00001447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 }
1449#ifdef FEAT_AUTOCMD
Bram Moolenaar5bd266c2008-09-01 15:33:17 +00001450 /* An autocommand may have deleted "buf", already entered it (e.g., when
Bram Moolenaar9e931222012-06-20 11:55:01 +02001451 * it did ":bunload") or aborted the script processing!
1452 * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1453 if ((buf_valid(buf) && buf != curbuf
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001454# ifdef FEAT_EVAL
Bram Moolenaar9e931222012-06-20 11:55:01 +02001455 && !aborting()
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001456# endif
1457# ifdef FEAT_WINDOWS
Bram Moolenaar9e931222012-06-20 11:55:01 +02001458 ) || curwin->w_buffer == NULL
Bram Moolenaar50a12b42012-06-20 17:54:38 +02001459# endif
Bram Moolenaar9e931222012-06-20 11:55:01 +02001460 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461#endif
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001462 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 enter_buffer(buf);
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001464#ifdef FEAT_SYN_HL
1465 if (old_tw != curbuf->b_p_tw)
1466 check_colorcolumn(curwin);
1467#endif
1468 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469}
1470
1471/*
1472 * Enter a new current buffer.
Bram Moolenaar6d47df72013-02-17 15:45:37 +01001473 * Old curbuf must have been abandoned already! This also means "curbuf" may
1474 * be pointing to freed memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 */
1476 void
1477enter_buffer(buf)
1478 buf_T *buf;
1479{
1480 /* Copy buffer and window local option values. Not for a help buffer. */
1481 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1482 if (!buf->b_help)
1483 get_winopts(buf);
1484#ifdef FEAT_FOLDING
1485 else
1486 /* Remove all folds in the window. */
1487 clearFolding(curwin);
1488 foldUpdateAll(curwin); /* update folds (later). */
1489#endif
1490
1491 /* Get the buffer in the current window. */
1492 curwin->w_buffer = buf;
1493 curbuf = buf;
1494 ++curbuf->b_nwindows;
1495
1496#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001497 if (curwin->w_p_diff)
1498 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499#endif
1500
Bram Moolenaara971b822011-09-14 14:43:25 +02001501#ifdef FEAT_SYN_HL
1502 curwin->w_s = &(buf->b_s);
1503#endif
1504
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 /* Cursor on first line by default. */
1506 curwin->w_cursor.lnum = 1;
1507 curwin->w_cursor.col = 0;
1508#ifdef FEAT_VIRTUALEDIT
1509 curwin->w_cursor.coladd = 0;
1510#endif
1511 curwin->w_set_curswant = TRUE;
Bram Moolenaard4153d42008-11-15 15:06:17 +00001512#ifdef FEAT_AUTOCMD
1513 curwin->w_topline_was_set = FALSE;
1514#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515
Bram Moolenaar89c0ea42010-02-24 16:58:36 +01001516 /* mark cursor position as being invalid */
1517 curwin->w_valid = 0;
1518
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 /* Make sure the buffer is loaded. */
1520 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001521 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001522#ifdef FEAT_AUTOCMD
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001523 /* If there is no filetype, allow for detecting one. Esp. useful for
1524 * ":ball" used in a autocommand. If there already is a filetype we
1525 * might prefer to keep it. */
1526 if (*curbuf->b_p_ft == NUL)
1527 did_filetype = FALSE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001528#endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001529
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001530 open_buffer(FALSE, NULL, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001531 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 else
1533 {
Bram Moolenaar55b7cf82006-09-09 12:52:42 +00001534 if (!msg_silent)
1535 need_fileinfo = TRUE; /* display file info after redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1537#ifdef FEAT_AUTOCMD
1538 curwin->w_topline = 1;
1539# ifdef FEAT_DIFF
1540 curwin->w_topfill = 0;
1541# endif
1542 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1543 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1544#endif
1545 }
1546
1547 /* If autocommands did not change the cursor position, restore cursor lnum
1548 * and possibly cursor col. */
1549 if (curwin->w_cursor.lnum == 1 && inindent(0))
1550 buflist_getfpos();
1551
1552 check_arg_idx(curwin); /* check for valid arg_idx */
1553#ifdef FEAT_TITLE
1554 maketitle();
1555#endif
1556#ifdef FEAT_AUTOCMD
Bram Moolenaard4153d42008-11-15 15:06:17 +00001557 /* when autocmds didn't change it */
1558 if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559#endif
1560 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1561
Bram Moolenaar009b2592004-10-24 19:18:58 +00001562#ifdef FEAT_NETBEANS_INTG
1563 /* Send fileOpened event because we've changed buffers. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001564 netbeans_file_activated(curbuf);
Bram Moolenaar009b2592004-10-24 19:18:58 +00001565#endif
1566
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001567 /* Change directories when the 'acd' option is set. */
1568 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569
1570#ifdef FEAT_KEYMAP
1571 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001572 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573#endif
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001574#ifdef FEAT_SPELL
1575 /* May need to set the spell language. Can only do this after the buffer
1576 * has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001577 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1578 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00001579#endif
1580
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 redraw_later(NOT_VALID);
1582}
1583
Bram Moolenaar498efdb2006-09-05 14:31:54 +00001584#if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1585/*
1586 * Change to the directory of the current buffer.
1587 */
1588 void
1589do_autochdir()
1590{
1591 if (curbuf->b_ffname != NULL && vim_chdirfile(curbuf->b_ffname) == OK)
1592 shorten_fnames(TRUE);
1593}
1594#endif
1595
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596/*
1597 * functions for dealing with the buffer list
1598 */
1599
1600/*
1601 * Add a file name to the buffer list. Return a pointer to the buffer.
1602 * If the same file name already exists return a pointer to that buffer.
1603 * If it does not exist, or if fname == NULL, a new entry is created.
1604 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1605 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1606 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 * This is the ONLY way to create a new buffer.
1608 */
1609static int top_file_num = 1; /* highest file number */
1610
1611 buf_T *
1612buflist_new(ffname, sfname, lnum, flags)
1613 char_u *ffname; /* full path of fname or relative */
1614 char_u *sfname; /* short fname or NULL */
1615 linenr_T lnum; /* preferred cursor line */
1616 int flags; /* BLN_ defines */
1617{
1618 buf_T *buf;
1619#ifdef UNIX
1620 struct stat st;
1621#endif
1622
1623 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1624
1625 /*
1626 * If file name already exists in the list, update the entry.
1627 */
1628#ifdef UNIX
1629 /* On Unix we can use inode numbers when the file exists. Works better
1630 * for hard links. */
1631 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1632 st.st_dev = (dev_T)-1;
1633#endif
1634 if (ffname != NULL && !(flags & BLN_DUMMY) && (buf =
1635#ifdef UNIX
1636 buflist_findname_stat(ffname, &st)
1637#else
1638 buflist_findname(ffname)
1639#endif
1640 ) != NULL)
1641 {
1642 vim_free(ffname);
1643 if (lnum != 0)
1644 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
1645 /* copy the options now, if 'cpo' doesn't have 's' and not done
1646 * already */
1647 buf_copy_options(buf, 0);
1648 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1649 {
1650 buf->b_p_bl = TRUE;
1651#ifdef FEAT_AUTOCMD
1652 if (!(flags & BLN_DUMMY))
1653 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf);
1654#endif
1655 }
1656 return buf;
1657 }
1658
1659 /*
1660 * If the current buffer has no name and no contents, use the current
1661 * buffer. Otherwise: Need to allocate a new buffer structure.
1662 *
1663 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001664 * (A spell file buffer is allocated in spell.c, but that's not a normal
1665 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 */
1667 buf = NULL;
1668 if ((flags & BLN_CURBUF)
1669 && curbuf != NULL
1670 && curbuf->b_ffname == NULL
1671 && curbuf->b_nwindows <= 1
1672 && (curbuf->b_ml.ml_mfp == NULL || bufempty()))
1673 {
1674 buf = curbuf;
1675#ifdef FEAT_AUTOCMD
1676 /* It's like this buffer is deleted. Watch out for autocommands that
1677 * change curbuf! If that happens, allocate a new buffer anyway. */
1678 if (curbuf->b_p_bl)
1679 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1680 if (buf == curbuf)
1681 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
1682# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001683 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 return NULL;
1685# endif
1686#endif
1687#ifdef FEAT_QUICKFIX
1688# ifdef FEAT_AUTOCMD
1689 if (buf == curbuf)
1690# endif
1691 {
1692 /* Make sure 'bufhidden' and 'buftype' are empty */
1693 clear_string_option(&buf->b_p_bh);
1694 clear_string_option(&buf->b_p_bt);
1695 }
1696#endif
1697 }
1698 if (buf != curbuf || curbuf == NULL)
1699 {
1700 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1701 if (buf == NULL)
1702 {
1703 vim_free(ffname);
1704 return NULL;
1705 }
Bram Moolenaar429fa852013-04-15 12:27:36 +02001706#ifdef FEAT_EVAL
1707 /* init b: variables */
1708 buf->b_vars = dict_alloc();
1709 if (buf->b_vars == NULL)
1710 {
1711 vim_free(ffname);
1712 vim_free(buf);
1713 return NULL;
1714 }
1715 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1716#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 }
1718
1719 if (ffname != NULL)
1720 {
1721 buf->b_ffname = ffname;
1722 buf->b_sfname = vim_strsave(sfname);
1723 }
1724
1725 clear_wininfo(buf);
1726 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1727
1728 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1729 || buf->b_wininfo == NULL)
1730 {
1731 vim_free(buf->b_ffname);
1732 buf->b_ffname = NULL;
1733 vim_free(buf->b_sfname);
1734 buf->b_sfname = NULL;
1735 if (buf != curbuf)
1736 free_buffer(buf);
1737 return NULL;
1738 }
1739
1740 if (buf == curbuf)
1741 {
1742 /* free all things allocated for this buffer */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001743 buf_freeall(buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 if (buf != curbuf) /* autocommands deleted the buffer! */
1745 return NULL;
1746#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001747 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 return NULL;
1749#endif
1750 /* buf->b_nwindows = 0; why was this here? */
1751 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
Bram Moolenaar0ac24e12012-11-20 12:16:58 +01001752
1753 /* Init the options. */
1754 buf->b_p_initialized = FALSE;
1755 buf_copy_options(buf, BCO_ENTER);
1756
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757#ifdef FEAT_KEYMAP
1758 /* need to reload lmaps and set b:keymap_name */
1759 curbuf->b_kmap_state |= KEYMAP_INIT;
1760#endif
1761 }
1762 else
1763 {
1764 /*
1765 * put new buffer at the end of the buffer list
1766 */
1767 buf->b_next = NULL;
1768 if (firstbuf == NULL) /* buffer list is empty */
1769 {
1770 buf->b_prev = NULL;
1771 firstbuf = buf;
1772 }
1773 else /* append new buffer at end of list */
1774 {
1775 lastbuf->b_next = buf;
1776 buf->b_prev = lastbuf;
1777 }
1778 lastbuf = buf;
1779
1780 buf->b_fnum = top_file_num++;
1781 if (top_file_num < 0) /* wrap around (may cause duplicates) */
1782 {
1783 EMSG(_("W14: Warning: List of file names overflow"));
1784 if (emsg_silent == 0)
1785 {
1786 out_flush();
1787 ui_delay(3000L, TRUE); /* make sure it is noticed */
1788 }
1789 top_file_num = 1;
1790 }
1791
1792 /*
1793 * Always copy the options from the current buffer.
1794 */
1795 buf_copy_options(buf, BCO_ALWAYS);
1796 }
1797
1798 buf->b_wininfo->wi_fpos.lnum = lnum;
1799 buf->b_wininfo->wi_win = curwin;
1800
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00001801#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02001802 hash_init(&buf->b_s.b_keywtab);
1803 hash_init(&buf->b_s.b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804#endif
1805
1806 buf->b_fname = buf->b_sfname;
1807#ifdef UNIX
1808 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00001809 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 else
1811 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00001812 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 buf->b_dev = st.st_dev;
1814 buf->b_ino = st.st_ino;
1815 }
1816#endif
1817 buf->b_u_synced = TRUE;
1818 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00001819 if (flags & BLN_DUMMY)
1820 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 buf_clear_file(buf);
1822 clrallmarks(buf); /* clear marks */
1823 fmarks_check_names(buf); /* check file marks for this file */
1824 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
1825#ifdef FEAT_AUTOCMD
1826 if (!(flags & BLN_DUMMY))
1827 {
1828 apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf);
1829 if (flags & BLN_LISTED)
1830 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf);
1831# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001832 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 return NULL;
1834# endif
1835 }
1836#endif
1837
1838 return buf;
1839}
1840
1841/*
1842 * Free the memory for the options of a buffer.
1843 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
1844 * 'fileencoding'.
1845 */
1846 void
1847free_buf_options(buf, free_p_ff)
1848 buf_T *buf;
1849 int free_p_ff;
1850{
1851 if (free_p_ff)
1852 {
1853#ifdef FEAT_MBYTE
1854 clear_string_option(&buf->b_p_fenc);
1855#endif
1856 clear_string_option(&buf->b_p_ff);
1857#ifdef FEAT_QUICKFIX
1858 clear_string_option(&buf->b_p_bh);
1859 clear_string_option(&buf->b_p_bt);
1860#endif
1861 }
1862#ifdef FEAT_FIND_ID
1863 clear_string_option(&buf->b_p_def);
1864 clear_string_option(&buf->b_p_inc);
1865# ifdef FEAT_EVAL
1866 clear_string_option(&buf->b_p_inex);
1867# endif
1868#endif
1869#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1870 clear_string_option(&buf->b_p_inde);
1871 clear_string_option(&buf->b_p_indk);
1872#endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00001873#if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
1874 clear_string_option(&buf->b_p_bexpr);
1875#endif
Bram Moolenaar49771f42010-07-20 17:32:38 +02001876#if defined(FEAT_CRYPT)
1877 clear_string_option(&buf->b_p_cm);
1878#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001879#if defined(FEAT_EVAL)
1880 clear_string_option(&buf->b_p_fex);
1881#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882#ifdef FEAT_CRYPT
1883 clear_string_option(&buf->b_p_key);
1884#endif
1885 clear_string_option(&buf->b_p_kp);
1886 clear_string_option(&buf->b_p_mps);
1887 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00001888 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 clear_string_option(&buf->b_p_isk);
1890#ifdef FEAT_KEYMAP
1891 clear_string_option(&buf->b_p_keymap);
1892 ga_clear(&buf->b_kmap_ga);
1893#endif
1894#ifdef FEAT_COMMENTS
1895 clear_string_option(&buf->b_p_com);
1896#endif
1897#ifdef FEAT_FOLDING
1898 clear_string_option(&buf->b_p_cms);
1899#endif
1900 clear_string_option(&buf->b_p_nf);
1901#ifdef FEAT_SYN_HL
1902 clear_string_option(&buf->b_p_syn);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00001903#endif
1904#ifdef FEAT_SPELL
Bram Moolenaar860cae12010-06-05 23:22:07 +02001905 clear_string_option(&buf->b_s.b_p_spc);
1906 clear_string_option(&buf->b_s.b_p_spf);
Bram Moolenaar473de612013-06-08 18:19:48 +02001907 vim_regfree(buf->b_s.b_cap_prog);
Bram Moolenaar860cae12010-06-05 23:22:07 +02001908 buf->b_s.b_cap_prog = NULL;
1909 clear_string_option(&buf->b_s.b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910#endif
1911#ifdef FEAT_SEARCHPATH
1912 clear_string_option(&buf->b_p_sua);
1913#endif
1914#ifdef FEAT_AUTOCMD
1915 clear_string_option(&buf->b_p_ft);
1916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917#ifdef FEAT_CINDENT
1918 clear_string_option(&buf->b_p_cink);
1919 clear_string_option(&buf->b_p_cino);
1920#endif
1921#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
1922 clear_string_option(&buf->b_p_cinw);
1923#endif
1924#ifdef FEAT_INS_EXPAND
1925 clear_string_option(&buf->b_p_cpt);
1926#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001927#ifdef FEAT_COMPL_FUNC
1928 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00001929 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001930#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931#ifdef FEAT_QUICKFIX
1932 clear_string_option(&buf->b_p_gp);
1933 clear_string_option(&buf->b_p_mp);
1934 clear_string_option(&buf->b_p_efm);
1935#endif
1936 clear_string_option(&buf->b_p_ep);
1937 clear_string_option(&buf->b_p_path);
1938 clear_string_option(&buf->b_p_tags);
1939#ifdef FEAT_INS_EXPAND
1940 clear_string_option(&buf->b_p_dict);
1941 clear_string_option(&buf->b_p_tsr);
1942#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001943#ifdef FEAT_TEXTOBJ
1944 clear_string_option(&buf->b_p_qe);
1945#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 buf->b_p_ar = -1;
1947}
1948
1949/*
1950 * get alternate file n
1951 * set linenr to lnum or altfpos.lnum if lnum == 0
1952 * also set cursor column to altfpos.col if 'startofline' is not set.
1953 * if (options & GETF_SETMARK) call setpcmark()
1954 * if (options & GETF_ALT) we are jumping to an alternate file.
1955 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
1956 *
1957 * return FAIL for failure, OK for success
1958 */
1959 int
1960buflist_getfile(n, lnum, options, forceit)
1961 int n;
1962 linenr_T lnum;
1963 int options;
1964 int forceit;
1965{
1966 buf_T *buf;
1967#ifdef FEAT_WINDOWS
1968 win_T *wp = NULL;
1969#endif
1970 pos_T *fpos;
1971 colnr_T col;
1972
1973 buf = buflist_findnr(n);
1974 if (buf == NULL)
1975 {
1976 if ((options & GETF_ALT) && n == 0)
1977 EMSG(_(e_noalt));
1978 else
1979 EMSGN(_("E92: Buffer %ld not found"), n);
1980 return FAIL;
1981 }
1982
1983 /* if alternate file is the current buffer, nothing to do */
1984 if (buf == curbuf)
1985 return OK;
1986
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00001987 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001988 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00001989 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001991 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001992#ifdef FEAT_AUTOCMD
1993 if (curbuf_locked())
1994 return FAIL;
1995#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996
1997 /* altfpos may be changed by getfile(), get it now */
1998 if (lnum == 0)
1999 {
2000 fpos = buflist_findfpos(buf);
2001 lnum = fpos->lnum;
2002 col = fpos->col;
2003 }
2004 else
2005 col = 0;
2006
2007#ifdef FEAT_WINDOWS
2008 if (options & GETF_SWITCH)
2009 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002010 /* If 'switchbuf' contains "useopen": jump to first window containing
2011 * "buf" if one exists */
2012 if (swb_flags & SWB_USEOPEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 wp = buf_jump_open_win(buf);
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002014 /* If 'switchbuf' contains "usetab": jump to first window in any tab
Bram Moolenaarf2330482008-06-24 20:19:36 +00002015 * page containing "buf" if one exists */
2016 if (wp == NULL && (swb_flags & SWB_USETAB))
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002017 wp = buf_jump_open_tab(buf);
Bram Moolenaarf2330482008-06-24 20:19:36 +00002018 /* If 'switchbuf' contains "split" or "newtab" and the current buffer
2019 * isn't empty: open new window */
2020 if (wp == NULL && (swb_flags & (SWB_SPLIT | SWB_NEWTAB)) && !bufempty())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 {
Bram Moolenaarf2330482008-06-24 20:19:36 +00002022 if (swb_flags & SWB_NEWTAB) /* Open in a new tab */
2023 tabpage_new();
2024 else if (win_split(0, 0) == FAIL) /* Open in a new window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 return FAIL;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002026 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 }
2028 }
2029#endif
2030
2031 ++RedrawingDisabled;
2032 if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK),
2033 lnum, forceit) <= 0)
2034 {
2035 --RedrawingDisabled;
2036
2037 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2038 if (!p_sol && col != 0)
2039 {
2040 curwin->w_cursor.col = col;
2041 check_cursor_col();
2042#ifdef FEAT_VIRTUALEDIT
2043 curwin->w_cursor.coladd = 0;
2044#endif
2045 curwin->w_set_curswant = TRUE;
2046 }
2047 return OK;
2048 }
2049 --RedrawingDisabled;
2050 return FAIL;
2051}
2052
2053/*
2054 * go to the last know line number for the current buffer
2055 */
2056 void
2057buflist_getfpos()
2058{
2059 pos_T *fpos;
2060
2061 fpos = buflist_findfpos(curbuf);
2062
2063 curwin->w_cursor.lnum = fpos->lnum;
2064 check_cursor_lnum();
2065
2066 if (p_sol)
2067 curwin->w_cursor.col = 0;
2068 else
2069 {
2070 curwin->w_cursor.col = fpos->col;
2071 check_cursor_col();
2072#ifdef FEAT_VIRTUALEDIT
2073 curwin->w_cursor.coladd = 0;
2074#endif
2075 curwin->w_set_curswant = TRUE;
2076 }
2077}
2078
Bram Moolenaar81695252004-12-29 20:58:21 +00002079#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2080/*
2081 * Find file in buffer list by name (it has to be for the current window).
2082 * Returns NULL if not found.
2083 */
2084 buf_T *
2085buflist_findname_exp(fname)
2086 char_u *fname;
2087{
2088 char_u *ffname;
2089 buf_T *buf = NULL;
2090
2091 /* First make the name into a full path name */
2092 ffname = FullName_save(fname,
2093#ifdef UNIX
2094 TRUE /* force expansion, get rid of symbolic links */
2095#else
2096 FALSE
2097#endif
2098 );
2099 if (ffname != NULL)
2100 {
2101 buf = buflist_findname(ffname);
2102 vim_free(ffname);
2103 }
2104 return buf;
2105}
2106#endif
2107
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108/*
2109 * Find file in buffer list by name (it has to be for the current window).
2110 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00002111 * Skips dummy buffers.
2112 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 */
2114 buf_T *
2115buflist_findname(ffname)
2116 char_u *ffname;
2117{
2118#ifdef UNIX
2119 struct stat st;
2120
2121 if (mch_stat((char *)ffname, &st) < 0)
2122 st.st_dev = (dev_T)-1;
2123 return buflist_findname_stat(ffname, &st);
2124}
2125
2126/*
2127 * Same as buflist_findname(), but pass the stat structure to avoid getting it
2128 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00002129 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 */
2131 static buf_T *
2132buflist_findname_stat(ffname, stp)
2133 char_u *ffname;
2134 struct stat *stp;
2135{
2136#endif
2137 buf_T *buf;
2138
2139 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
Bram Moolenaar81695252004-12-29 20:58:21 +00002140 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141#ifdef UNIX
2142 , stp
2143#endif
2144 ))
2145 return buf;
2146 return NULL;
2147}
2148
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002149#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
2150 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151/*
2152 * Find file in buffer list by a regexp pattern.
2153 * Return fnum of the found buffer.
2154 * Return < 0 for error.
2155 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 int
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002157buflist_findpat(pattern, pattern_end, unlisted, diffmode, curtab_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 char_u *pattern;
2159 char_u *pattern_end; /* pointer to first char after pattern */
2160 int unlisted; /* find unlisted buffers */
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002161 int diffmode UNUSED; /* find diff-mode buffers only */
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002162 int curtab_only; /* find buffers in current tab only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163{
2164 buf_T *buf;
2165 regprog_T *prog;
2166 int match = -1;
2167 int find_listed;
2168 char_u *pat;
2169 char_u *patend;
2170 int attempt;
2171 char_u *p;
2172 int toggledollar;
2173
2174 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2175 {
2176 if (*pattern == '%')
2177 match = curbuf->b_fnum;
2178 else
2179 match = curwin->w_alt_fnum;
2180#ifdef FEAT_DIFF
2181 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2182 match = -1;
2183#endif
2184 }
2185
2186 /*
2187 * Try four ways of matching a listed buffer:
2188 * attempt == 0: without '^' or '$' (at any position)
Bram Moolenaarb6799ac2007-05-10 16:44:05 +00002189 * attempt == 1: with '^' at start (only at position 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 * attempt == 2: with '$' at end (only match at end)
2191 * attempt == 3: with '^' at start and '$' at end (only full match)
2192 * Repeat this for finding an unlisted buffer if there was no matching
2193 * listed buffer.
2194 */
2195 else
2196 {
2197 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2198 if (pat == NULL)
2199 return -1;
2200 patend = pat + STRLEN(pat) - 1;
2201 toggledollar = (patend > pat && *patend == '$');
2202
2203 /* First try finding a listed buffer. If not found and "unlisted"
2204 * is TRUE, try finding an unlisted buffer. */
2205 find_listed = TRUE;
2206 for (;;)
2207 {
2208 for (attempt = 0; attempt <= 3; ++attempt)
2209 {
2210 /* may add '^' and '$' */
2211 if (toggledollar)
2212 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2213 p = pat;
2214 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2215 ++p;
2216 prog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2217 if (prog == NULL)
2218 {
2219 vim_free(pat);
2220 return -1;
2221 }
2222
2223 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2224 if (buf->b_p_bl == find_listed
2225#ifdef FEAT_DIFF
2226 && (!diffmode || diff_mode_buf(buf))
2227#endif
2228 && buflist_match(prog, buf) != NULL)
2229 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002230 if (curtab_only)
2231 {
2232 /* Ignore the match if the buffer is not open in
2233 * the current tab. */
2234#ifdef FEAT_WINDOWS
2235 win_T *wp;
2236
2237 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2238 if (wp->w_buffer == buf)
2239 break;
2240 if (wp == NULL)
2241 continue;
2242#else
2243 if (curwin->w_buffer != buf)
2244 continue;
2245#endif
2246 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 if (match >= 0) /* already found a match */
2248 {
2249 match = -2;
2250 break;
2251 }
2252 match = buf->b_fnum; /* remember first match */
2253 }
2254
Bram Moolenaar473de612013-06-08 18:19:48 +02002255 vim_regfree(prog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 if (match >= 0) /* found one match */
2257 break;
2258 }
2259
2260 /* Only search for unlisted buffers if there was no match with
2261 * a listed buffer. */
2262 if (!unlisted || !find_listed || match != -1)
2263 break;
2264 find_listed = FALSE;
2265 }
2266
2267 vim_free(pat);
2268 }
2269
2270 if (match == -2)
2271 EMSG2(_("E93: More than one match for %s"), pattern);
2272 else if (match < 0)
2273 EMSG2(_("E94: No matching buffer for %s"), pattern);
2274 return match;
2275}
2276#endif
2277
2278#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2279
2280/*
2281 * Find all buffer names that match.
2282 * For command line expansion of ":buf" and ":sbuf".
2283 * Return OK if matches found, FAIL otherwise.
2284 */
2285 int
2286ExpandBufnames(pat, num_file, file, options)
2287 char_u *pat;
2288 int *num_file;
2289 char_u ***file;
2290 int options;
2291{
2292 int count = 0;
2293 buf_T *buf;
2294 int round;
2295 char_u *p;
2296 int attempt;
2297 regprog_T *prog;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002298 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299
2300 *num_file = 0; /* return values in case of FAIL */
2301 *file = NULL;
2302
Bram Moolenaar05159a02005-02-26 23:04:13 +00002303 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2304 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002306 patc = alloc((unsigned)STRLEN(pat) + 11);
2307 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002309 STRCPY(patc, "\\(^\\|[\\/]\\)");
2310 STRCPY(patc + 11, pat + 1);
2311 }
2312 else
2313 patc = pat;
2314
2315 /*
2316 * attempt == 0: try match with '\<', match at start of word
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002317 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002318 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002319 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002320 {
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002321 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002322 break; /* there was no anchor, no need to try again */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002323 prog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002324 if (prog == NULL)
2325 {
2326 if (patc != pat)
2327 vim_free(patc);
2328 return FAIL;
2329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330
2331 /*
2332 * round == 1: Count the matches.
2333 * round == 2: Build the array to keep the matches.
2334 */
2335 for (round = 1; round <= 2; ++round)
2336 {
2337 count = 0;
2338 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2339 {
2340 if (!buf->b_p_bl) /* skip unlisted buffers */
2341 continue;
2342 p = buflist_match(prog, buf);
2343 if (p != NULL)
2344 {
2345 if (round == 1)
2346 ++count;
2347 else
2348 {
2349 if (options & WILD_HOME_REPLACE)
2350 p = home_replace_save(buf, p);
2351 else
2352 p = vim_strsave(p);
2353 (*file)[count++] = p;
2354 }
2355 }
2356 }
2357 if (count == 0) /* no match found, break here */
2358 break;
2359 if (round == 1)
2360 {
2361 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2362 if (*file == NULL)
2363 {
Bram Moolenaar473de612013-06-08 18:19:48 +02002364 vim_regfree(prog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002365 if (patc != pat)
2366 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 return FAIL;
2368 }
2369 }
2370 }
Bram Moolenaar473de612013-06-08 18:19:48 +02002371 vim_regfree(prog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 if (count) /* match(es) found, break here */
2373 break;
2374 }
2375
Bram Moolenaar05159a02005-02-26 23:04:13 +00002376 if (patc != pat)
2377 vim_free(patc);
2378
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 *num_file = count;
2380 return (count == 0 ? FAIL : OK);
2381}
2382
2383#endif /* FEAT_CMDL_COMPL */
2384
2385#ifdef HAVE_BUFLIST_MATCH
2386/*
2387 * Check for a match on the file name for buffer "buf" with regprog "prog".
2388 */
2389 static char_u *
2390buflist_match(prog, buf)
2391 regprog_T *prog;
2392 buf_T *buf;
2393{
2394 char_u *match;
2395
2396 /* First try the short file name, then the long file name. */
2397 match = fname_match(prog, buf->b_sfname);
2398 if (match == NULL)
2399 match = fname_match(prog, buf->b_ffname);
2400
2401 return match;
2402}
2403
2404/*
2405 * Try matching the regexp in "prog" with file name "name".
2406 * Return "name" when there is a match, NULL when not.
2407 */
2408 static char_u *
2409fname_match(prog, name)
2410 regprog_T *prog;
2411 char_u *name;
2412{
2413 char_u *match = NULL;
2414 char_u *p;
2415 regmatch_T regmatch;
2416
2417 if (name != NULL)
2418 {
2419 regmatch.regprog = prog;
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01002420 regmatch.rm_ic = p_fic; /* ignore case when 'fileignorecase' is set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 if (vim_regexec(&regmatch, name, (colnr_T)0))
2422 match = name;
2423 else
2424 {
2425 /* Replace $(HOME) with '~' and try matching again. */
2426 p = home_replace_save(NULL, name);
2427 if (p != NULL && vim_regexec(&regmatch, p, (colnr_T)0))
2428 match = name;
2429 vim_free(p);
2430 }
2431 }
2432
2433 return match;
2434}
2435#endif
2436
2437/*
2438 * find file in buffer list by number
2439 */
2440 buf_T *
2441buflist_findnr(nr)
2442 int nr;
2443{
2444 buf_T *buf;
2445
2446 if (nr == 0)
2447 nr = curwin->w_alt_fnum;
2448 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2449 if (buf->b_fnum == nr)
2450 return (buf);
2451 return NULL;
2452}
2453
2454/*
2455 * Get name of file 'n' in the buffer list.
2456 * When the file has no name an empty string is returned.
2457 * home_replace() is used to shorten the file name (used for marks).
2458 * Returns a pointer to allocated memory, of NULL when failed.
2459 */
2460 char_u *
2461buflist_nr2name(n, fullname, helptail)
2462 int n;
2463 int fullname;
2464 int helptail; /* for help buffers return tail only */
2465{
2466 buf_T *buf;
2467
2468 buf = buflist_findnr(n);
2469 if (buf == NULL)
2470 return NULL;
2471 return home_replace_save(helptail ? buf : NULL,
2472 fullname ? buf->b_ffname : buf->b_fname);
2473}
2474
2475/*
2476 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2477 * When "copy_options" is TRUE save the local window option values.
2478 * When "lnum" is 0 only do the options.
2479 */
2480 static void
2481buflist_setfpos(buf, win, lnum, col, copy_options)
2482 buf_T *buf;
2483 win_T *win;
2484 linenr_T lnum;
2485 colnr_T col;
2486 int copy_options;
2487{
2488 wininfo_T *wip;
2489
2490 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2491 if (wip->wi_win == win)
2492 break;
2493 if (wip == NULL)
2494 {
2495 /* allocate a new entry */
2496 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2497 if (wip == NULL)
2498 return;
2499 wip->wi_win = win;
2500 if (lnum == 0) /* set lnum even when it's 0 */
2501 lnum = 1;
2502 }
2503 else
2504 {
2505 /* remove the entry from the list */
2506 if (wip->wi_prev)
2507 wip->wi_prev->wi_next = wip->wi_next;
2508 else
2509 buf->b_wininfo = wip->wi_next;
2510 if (wip->wi_next)
2511 wip->wi_next->wi_prev = wip->wi_prev;
2512 if (copy_options && wip->wi_optset)
2513 {
2514 clear_winopt(&wip->wi_opt);
2515#ifdef FEAT_FOLDING
2516 deleteFoldRecurse(&wip->wi_folds);
2517#endif
2518 }
2519 }
2520 if (lnum != 0)
2521 {
2522 wip->wi_fpos.lnum = lnum;
2523 wip->wi_fpos.col = col;
2524 }
2525 if (copy_options)
2526 {
2527 /* Save the window-specific option values. */
2528 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2529#ifdef FEAT_FOLDING
2530 wip->wi_fold_manual = win->w_fold_manual;
2531 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2532#endif
2533 wip->wi_optset = TRUE;
2534 }
2535
2536 /* insert the entry in front of the list */
2537 wip->wi_next = buf->b_wininfo;
2538 buf->b_wininfo = wip;
2539 wip->wi_prev = NULL;
2540 if (wip->wi_next)
2541 wip->wi_next->wi_prev = wip;
2542
2543 return;
2544}
2545
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002546#ifdef FEAT_DIFF
2547static int wininfo_other_tab_diff __ARGS((wininfo_T *wip));
2548
2549/*
2550 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2551 * page. That's because a diff is local to a tab page.
2552 */
2553 static int
2554wininfo_other_tab_diff(wip)
2555 wininfo_T *wip;
2556{
2557 win_T *wp;
2558
2559 if (wip->wi_opt.wo_diff)
2560 {
2561 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2562 /* return FALSE when it's a window in the current tab page, thus
2563 * the buffer was in diff mode here */
2564 if (wip->wi_win == wp)
2565 return FALSE;
2566 return TRUE;
2567 }
2568 return FALSE;
2569}
2570#endif
2571
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572/*
2573 * Find info for the current window in buffer "buf".
2574 * If not found, return the info for the most recently used window.
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002575 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2576 * another tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 * Returns NULL when there isn't any info.
2578 */
2579 static wininfo_T *
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002580find_wininfo(buf, skip_diff_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 buf_T *buf;
Bram Moolenaar0c094b92009-05-14 20:20:33 +00002582 int skip_diff_buffer UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583{
2584 wininfo_T *wip;
2585
2586 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002587 if (wip->wi_win == curwin
2588#ifdef FEAT_DIFF
2589 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2590#endif
2591 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 break;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002593
2594 /* If no wininfo for curwin, use the first in the list (that doesn't have
2595 * 'diff' set and is in another tab page). */
2596 if (wip == NULL)
2597 {
2598#ifdef FEAT_DIFF
2599 if (skip_diff_buffer)
2600 {
2601 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2602 if (!wininfo_other_tab_diff(wip))
2603 break;
2604 }
2605 else
2606#endif
2607 wip = buf->b_wininfo;
2608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 return wip;
2610}
2611
2612/*
2613 * Reset the local window options to the values last used in this window.
2614 * If the buffer wasn't used in this window before, use the values from
2615 * the most recently used window. If the values were never set, use the
2616 * global values for the window.
2617 */
2618 void
2619get_winopts(buf)
2620 buf_T *buf;
2621{
2622 wininfo_T *wip;
2623
2624 clear_winopt(&curwin->w_onebuf_opt);
2625#ifdef FEAT_FOLDING
2626 clearFolding(curwin);
2627#endif
2628
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002629 wip = find_wininfo(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 if (wip != NULL && wip->wi_optset)
2631 {
2632 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2633#ifdef FEAT_FOLDING
2634 curwin->w_fold_manual = wip->wi_fold_manual;
2635 curwin->w_foldinvalid = TRUE;
2636 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2637#endif
2638 }
2639 else
2640 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2641
2642#ifdef FEAT_FOLDING
2643 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2644 if (p_fdls >= 0)
2645 curwin->w_p_fdl = p_fdls;
2646#endif
Bram Moolenaar1701e402011-05-05 17:32:44 +02002647#ifdef FEAT_SYN_HL
2648 check_colorcolumn(curwin);
2649#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650}
2651
2652/*
2653 * Find the position (lnum and col) for the buffer 'buf' for the current
2654 * window.
2655 * Returns a pointer to no_position if no position is found.
2656 */
2657 pos_T *
2658buflist_findfpos(buf)
2659 buf_T *buf;
2660{
2661 wininfo_T *wip;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002662 static pos_T no_position = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002664 wip = find_wininfo(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 if (wip != NULL)
2666 return &(wip->wi_fpos);
2667 else
2668 return &no_position;
2669}
2670
2671/*
2672 * Find the lnum for the buffer 'buf' for the current window.
2673 */
2674 linenr_T
2675buflist_findlnum(buf)
2676 buf_T *buf;
2677{
2678 return buflist_findfpos(buf)->lnum;
2679}
2680
2681#if defined(FEAT_LISTCMDS) || defined(PROTO)
2682/*
2683 * List all know file names (for :files and :buffers command).
2684 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 void
2686buflist_list(eap)
2687 exarg_T *eap;
2688{
2689 buf_T *buf;
2690 int len;
2691 int i;
2692
2693 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2694 {
2695 /* skip unlisted buffers, unless ! was used */
2696 if (!buf->b_p_bl && !eap->forceit)
2697 continue;
2698 msg_putchar('\n');
2699 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02002700 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 else
2702 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
2703
Bram Moolenaar50cde822005-06-05 21:54:54 +00002704 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 buf->b_fnum,
2706 buf->b_p_bl ? ' ' : 'u',
2707 buf == curbuf ? '%' :
2708 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
2709 buf->b_ml.ml_mfp == NULL ? ' ' :
2710 (buf->b_nwindows == 0 ? 'h' : 'a'),
2711 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
2712 (buf->b_flags & BF_READERR) ? 'x'
Bram Moolenaar51485f02005-06-04 21:55:20 +00002713 : (bufIsChanged(buf) ? '+' : ' '),
2714 NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715
2716 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 i = 40 - vim_strsize(IObuff);
2718 do
2719 {
2720 IObuff[len++] = ' ';
2721 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002722 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
2723 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002724 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 msg_outtrans(IObuff);
2726 out_flush(); /* output one line at a time */
2727 ui_breakcheck();
2728 }
2729}
2730#endif
2731
2732/*
2733 * Get file name and line number for file 'fnum'.
2734 * Used by DoOneCmd() for translating '%' and '#'.
2735 * Used by insert_reg() and cmdline_paste() for '#' register.
2736 * Return FAIL if not found, OK for success.
2737 */
2738 int
2739buflist_name_nr(fnum, fname, lnum)
2740 int fnum;
2741 char_u **fname;
2742 linenr_T *lnum;
2743{
2744 buf_T *buf;
2745
2746 buf = buflist_findnr(fnum);
2747 if (buf == NULL || buf->b_fname == NULL)
2748 return FAIL;
2749
2750 *fname = buf->b_fname;
2751 *lnum = buflist_findlnum(buf);
2752
2753 return OK;
2754}
2755
2756/*
2757 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
2758 * The file name with the full path is also remembered, for when :cd is used.
2759 * Returns FAIL for failure (file name already in use by other buffer)
2760 * OK otherwise.
2761 */
2762 int
2763setfname(buf, ffname, sfname, message)
2764 buf_T *buf;
2765 char_u *ffname, *sfname;
Bram Moolenaar81695252004-12-29 20:58:21 +00002766 int message; /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767{
Bram Moolenaar81695252004-12-29 20:58:21 +00002768 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769#ifdef UNIX
2770 struct stat st;
2771#endif
2772
2773 if (ffname == NULL || *ffname == NUL)
2774 {
2775 /* Removing the name. */
2776 vim_free(buf->b_ffname);
2777 vim_free(buf->b_sfname);
2778 buf->b_ffname = NULL;
2779 buf->b_sfname = NULL;
2780#ifdef UNIX
2781 st.st_dev = (dev_T)-1;
2782#endif
2783 }
2784 else
2785 {
2786 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
2787 if (ffname == NULL) /* out of memory */
2788 return FAIL;
2789
2790 /*
2791 * if the file name is already used in another buffer:
2792 * - if the buffer is loaded, fail
2793 * - if the buffer is not loaded, delete it from the list
2794 */
2795#ifdef UNIX
2796 if (mch_stat((char *)ffname, &st) < 0)
2797 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00002798#endif
2799 if (!(buf->b_flags & BF_DUMMY))
2800#ifdef UNIX
2801 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802#else
Bram Moolenaar81695252004-12-29 20:58:21 +00002803 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804#endif
2805 if (obuf != NULL && obuf != buf)
2806 {
2807 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
2808 {
2809 if (message)
2810 EMSG(_("E95: Buffer with this name already exists"));
2811 vim_free(ffname);
2812 return FAIL;
2813 }
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002814 /* delete from the list */
2815 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 }
2817 sfname = vim_strsave(sfname);
2818 if (ffname == NULL || sfname == NULL)
2819 {
2820 vim_free(sfname);
2821 vim_free(ffname);
2822 return FAIL;
2823 }
2824#ifdef USE_FNAME_CASE
2825# ifdef USE_LONG_FNAME
2826 if (USE_LONG_FNAME)
2827# endif
2828 fname_case(sfname, 0); /* set correct case for short file name */
2829#endif
2830 vim_free(buf->b_ffname);
2831 vim_free(buf->b_sfname);
2832 buf->b_ffname = ffname;
2833 buf->b_sfname = sfname;
2834 }
2835 buf->b_fname = buf->b_sfname;
2836#ifdef UNIX
2837 if (st.st_dev == (dev_T)-1)
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002838 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 else
2840 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00002841 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 buf->b_dev = st.st_dev;
2843 buf->b_ino = st.st_ino;
2844 }
2845#endif
2846
2847#ifndef SHORT_FNAME
2848 buf->b_shortname = FALSE;
2849#endif
2850
2851 buf_name_changed(buf);
2852 return OK;
2853}
2854
2855/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002856 * Crude way of changing the name of a buffer. Use with care!
2857 * The name should be relative to the current directory.
2858 */
2859 void
2860buf_set_name(fnum, name)
2861 int fnum;
2862 char_u *name;
2863{
2864 buf_T *buf;
2865
2866 buf = buflist_findnr(fnum);
2867 if (buf != NULL)
2868 {
2869 vim_free(buf->b_sfname);
2870 vim_free(buf->b_ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002871 buf->b_ffname = vim_strsave(name);
2872 buf->b_sfname = NULL;
2873 /* Allocate ffname and expand into full path. Also resolves .lnk
2874 * files on Win32. */
2875 fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002876 buf->b_fname = buf->b_sfname;
2877 }
2878}
2879
2880/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 * Take care of what needs to be done when the name of buffer "buf" has
2882 * changed.
2883 */
2884 void
2885buf_name_changed(buf)
2886 buf_T *buf;
2887{
2888 /*
2889 * If the file name changed, also change the name of the swapfile
2890 */
2891 if (buf->b_ml.ml_mfp != NULL)
2892 ml_setname(buf);
2893
2894 if (curwin->w_buffer == buf)
2895 check_arg_idx(curwin); /* check file name for arg list */
2896#ifdef FEAT_TITLE
2897 maketitle(); /* set window title */
2898#endif
2899#ifdef FEAT_WINDOWS
2900 status_redraw_all(); /* status lines need to be redrawn */
2901#endif
2902 fmarks_check_names(buf); /* check named file marks */
2903 ml_timestamp(buf); /* reset timestamp */
2904}
2905
2906/*
2907 * set alternate file name for current window
2908 *
2909 * Used by do_one_cmd(), do_write() and do_ecmd().
2910 * Return the buffer.
2911 */
2912 buf_T *
2913setaltfname(ffname, sfname, lnum)
2914 char_u *ffname;
2915 char_u *sfname;
2916 linenr_T lnum;
2917{
2918 buf_T *buf;
2919
2920 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
2921 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002922 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 curwin->w_alt_fnum = buf->b_fnum;
2924 return buf;
2925}
2926
2927/*
2928 * Get alternate file name for current window.
2929 * Return NULL if there isn't any, and give error message if requested.
2930 */
2931 char_u *
2932getaltfname(errmsg)
2933 int errmsg; /* give error message */
2934{
2935 char_u *fname;
2936 linenr_T dummy;
2937
2938 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
2939 {
2940 if (errmsg)
2941 EMSG(_(e_noalt));
2942 return NULL;
2943 }
2944 return fname;
2945}
2946
2947/*
2948 * Add a file name to the buflist and return its number.
2949 * Uses same flags as buflist_new(), except BLN_DUMMY.
2950 *
2951 * used by qf_init(), main() and doarglist()
2952 */
2953 int
2954buflist_add(fname, flags)
2955 char_u *fname;
2956 int flags;
2957{
2958 buf_T *buf;
2959
2960 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
2961 if (buf != NULL)
2962 return buf->b_fnum;
2963 return 0;
2964}
2965
2966#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
2967/*
2968 * Adjust slashes in file names. Called after 'shellslash' was set.
2969 */
2970 void
2971buflist_slash_adjust()
2972{
2973 buf_T *bp;
2974
2975 for (bp = firstbuf; bp != NULL; bp = bp->b_next)
2976 {
2977 if (bp->b_ffname != NULL)
2978 slash_adjust(bp->b_ffname);
2979 if (bp->b_sfname != NULL)
2980 slash_adjust(bp->b_sfname);
2981 }
2982}
2983#endif
2984
2985/*
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002986 * Set alternate cursor position for the current buffer and window "win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 * Also save the local window option values.
2988 */
2989 void
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002990buflist_altfpos(win)
2991 win_T *win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992{
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002993 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994}
2995
2996/*
2997 * Return TRUE if 'ffname' is not the same file as current file.
2998 * Fname must have a full path (expanded by mch_FullName()).
2999 */
3000 int
3001otherfile(ffname)
3002 char_u *ffname;
3003{
3004 return otherfile_buf(curbuf, ffname
3005#ifdef UNIX
3006 , NULL
3007#endif
3008 );
3009}
3010
3011 static int
3012otherfile_buf(buf, ffname
3013#ifdef UNIX
3014 , stp
3015#endif
3016 )
3017 buf_T *buf;
3018 char_u *ffname;
3019#ifdef UNIX
3020 struct stat *stp;
3021#endif
3022{
3023 /* no name is different */
3024 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3025 return TRUE;
3026 if (fnamecmp(ffname, buf->b_ffname) == 0)
3027 return FALSE;
3028#ifdef UNIX
3029 {
3030 struct stat st;
3031
3032 /* If no struct stat given, get it now */
3033 if (stp == NULL)
3034 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003035 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 st.st_dev = (dev_T)-1;
3037 stp = &st;
3038 }
3039 /* Use dev/ino to check if the files are the same, even when the names
3040 * are different (possible with links). Still need to compare the
3041 * name above, for when the file doesn't exist yet.
3042 * Problem: The dev/ino changes when a file is deleted (and created
3043 * again) and remains the same when renamed/moved. We don't want to
3044 * mch_stat() each buffer each time, that would be too slow. Get the
3045 * dev/ino again when they appear to match, but not when they appear
3046 * to be different: Could skip a buffer when it's actually the same
3047 * file. */
3048 if (buf_same_ino(buf, stp))
3049 {
3050 buf_setino(buf);
3051 if (buf_same_ino(buf, stp))
3052 return FALSE;
3053 }
3054 }
3055#endif
3056 return TRUE;
3057}
3058
3059#if defined(UNIX) || defined(PROTO)
3060/*
3061 * Set inode and device number for a buffer.
3062 * Must always be called when b_fname is changed!.
3063 */
3064 void
3065buf_setino(buf)
3066 buf_T *buf;
3067{
3068 struct stat st;
3069
3070 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3071 {
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003072 buf->b_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 buf->b_dev = st.st_dev;
3074 buf->b_ino = st.st_ino;
3075 }
3076 else
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003077 buf->b_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078}
3079
3080/*
3081 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3082 */
3083 static int
3084buf_same_ino(buf, stp)
3085 buf_T *buf;
3086 struct stat *stp;
3087{
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00003088 return (buf->b_dev_valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 && stp->st_dev == buf->b_dev
3090 && stp->st_ino == buf->b_ino);
3091}
3092#endif
3093
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003094/*
3095 * Print info about the current buffer.
3096 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 void
3098fileinfo(fullname, shorthelp, dont_truncate)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003099 int fullname; /* when non-zero print full path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 int shorthelp;
3101 int dont_truncate;
3102{
3103 char_u *name;
3104 int n;
3105 char_u *p;
3106 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003107 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108
3109 buffer = alloc(IOSIZE);
3110 if (buffer == NULL)
3111 return;
3112
3113 if (fullname > 1) /* 2 CTRL-G: include buffer number */
3114 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003115 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116 p = buffer + STRLEN(buffer);
3117 }
3118 else
3119 p = buffer;
3120
3121 *p++ = '"';
3122 if (buf_spname(curbuf) != NULL)
Bram Moolenaarec3cfeb2012-10-03 17:12:47 +02003123 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 else
3125 {
3126 if (!fullname && curbuf->b_fname != NULL)
3127 name = curbuf->b_fname;
3128 else
3129 name = curbuf->b_ffname;
3130 home_replace(shorthelp ? curbuf : NULL, name, p,
3131 (int)(IOSIZE - (p - buffer)), TRUE);
3132 }
3133
Bram Moolenaara800b422010-06-27 01:15:55 +02003134 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 curbufIsChanged() ? (shortmess(SHM_MOD)
3136 ? " [+]" : _(" [Modified]")) : " ",
3137 (curbuf->b_flags & BF_NOTEDITED)
3138#ifdef FEAT_QUICKFIX
3139 && !bt_dontwrite(curbuf)
3140#endif
3141 ? _("[Not edited]") : "",
3142 (curbuf->b_flags & BF_NEW)
3143#ifdef FEAT_QUICKFIX
3144 && !bt_dontwrite(curbuf)
3145#endif
3146 ? _("[New file]") : "",
3147 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
Bram Moolenaar23584032013-06-07 20:17:11 +02003148 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 : _("[readonly]")) : "",
3150 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3151 || curbuf->b_p_ro) ?
3152 " " : "");
3153 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3154 * causes an overflow, thus for large numbers divide instead. */
3155 if (curwin->w_cursor.lnum > 1000000L)
3156 n = (int)(((long)curwin->w_cursor.lnum) /
3157 ((long)curbuf->b_ml.ml_line_count / 100L));
3158 else
3159 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3160 (long)curbuf->b_ml.ml_line_count);
3161 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3162 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003163 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 }
3165#ifdef FEAT_CMDL_INFO
3166 else if (p_ru)
3167 {
3168 /* Current line and column are already on the screen -- webb */
3169 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02003170 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 else
Bram Moolenaara800b422010-06-27 01:15:55 +02003172 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 (long)curbuf->b_ml.ml_line_count, n);
3174 }
3175#endif
3176 else
3177 {
Bram Moolenaara800b422010-06-27 01:15:55 +02003178 vim_snprintf_add((char *)buffer, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 _("line %ld of %ld --%d%%-- col "),
3180 (long)curwin->w_cursor.lnum,
3181 (long)curbuf->b_ml.ml_line_count,
3182 n);
3183 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003184 len = STRLEN(buffer);
3185 col_print(buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3187 }
3188
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003189 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190
3191 if (dont_truncate)
3192 {
3193 /* Temporarily set msg_scroll to avoid the message being truncated.
3194 * First call msg_start() to get the message in the right place. */
3195 msg_start();
3196 n = msg_scroll;
3197 msg_scroll = TRUE;
3198 msg(buffer);
3199 msg_scroll = n;
3200 }
3201 else
3202 {
3203 p = msg_trunc_attr(buffer, FALSE, 0);
3204 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 /* Need to repeat the message after redrawing when:
3206 * - When restart_edit is set (otherwise there will be a delay
3207 * before redrawing).
3208 * - When the screen was scrolled but there is no wait-return
3209 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003210 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211 }
3212
3213 vim_free(buffer);
3214}
3215
3216 void
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003217col_print(buf, buflen, col, vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 char_u *buf;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003219 size_t buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 int col;
3221 int vcol;
3222{
3223 if (col == vcol)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003224 vim_snprintf((char *)buf, buflen, "%d", col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003226 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227}
3228
3229#if defined(FEAT_TITLE) || defined(PROTO)
3230/*
3231 * put file name in title bar of window and in icon title
3232 */
3233
3234static char_u *lasttitle = NULL;
3235static char_u *lasticon = NULL;
3236
3237 void
3238maketitle()
3239{
3240 char_u *p;
3241 char_u *t_str = NULL;
3242 char_u *i_name;
3243 char_u *i_str = NULL;
3244 int maxlen = 0;
3245 int len;
3246 int mustset;
3247 char_u buf[IOSIZE];
3248 int off;
3249
3250 if (!redrawing())
3251 {
3252 /* Postpone updating the title when 'lazyredraw' is set. */
3253 need_maketitle = TRUE;
3254 return;
3255 }
3256
3257 need_maketitle = FALSE;
Bram Moolenaarbed7bec2010-07-25 13:42:29 +02003258 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 return;
3260
3261 if (p_title)
3262 {
3263 if (p_titlelen > 0)
3264 {
3265 maxlen = p_titlelen * Columns / 100;
3266 if (maxlen < 10)
3267 maxlen = 10;
3268 }
3269
3270 t_str = buf;
3271 if (*p_titlestring != NUL)
3272 {
3273#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003274 if (stl_syntax & STL_IN_TITLE)
3275 {
3276 int use_sandbox = FALSE;
3277 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003278
3279# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003280 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003281# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003282 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003284 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003285 0, maxlen, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003286 if (called_emsg)
3287 set_string_option_direct((char_u *)"titlestring", -1,
3288 (char_u *)"", OPT_FREE, SID_ERROR);
3289 called_emsg |= save_called_emsg;
3290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 else
3292#endif
3293 t_str = p_titlestring;
3294 }
3295 else
3296 {
3297 /* format: "fname + (path) (1 of 2) - VIM" */
3298
Bram Moolenaar2c666692012-09-05 13:30:40 +02003299#define SPACE_FOR_FNAME (IOSIZE - 100)
3300#define SPACE_FOR_DIR (IOSIZE - 20)
3301#define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 if (curbuf->b_fname == NULL)
Bram Moolenaar2c666692012-09-05 13:30:40 +02003303 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 else
3305 {
3306 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaar2c666692012-09-05 13:30:40 +02003307 vim_strncpy(buf, p, SPACE_FOR_FNAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 }
3310
3311 switch (bufIsChanged(curbuf)
3312 + (curbuf->b_p_ro * 2)
3313 + (!curbuf->b_p_ma * 4))
3314 {
3315 case 1: STRCAT(buf, " +"); break;
3316 case 2: STRCAT(buf, " ="); break;
3317 case 3: STRCAT(buf, " =+"); break;
3318 case 4:
3319 case 6: STRCAT(buf, " -"); break;
3320 case 5:
3321 case 7: STRCAT(buf, " -+"); break;
3322 }
3323
3324 if (curbuf->b_fname != NULL)
3325 {
3326 /* Get path of file, replace home dir with ~ */
3327 off = (int)STRLEN(buf);
3328 buf[off++] = ' ';
3329 buf[off++] = '(';
3330 home_replace(curbuf, curbuf->b_ffname,
Bram Moolenaar2c666692012-09-05 13:30:40 +02003331 buf + off, SPACE_FOR_DIR - off, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332#ifdef BACKSLASH_IN_FILENAME
3333 /* avoid "c:/name" to be reduced to "c" */
3334 if (isalpha(buf[off]) && buf[off + 1] == ':')
3335 off += 2;
3336#endif
3337 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003338 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 if (p == buf + off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 /* must be a help buffer */
Bram Moolenaarb6356332005-07-18 21:40:44 +00003341 vim_strncpy(buf + off, (char_u *)_("help"),
Bram Moolenaar2c666692012-09-05 13:30:40 +02003342 (size_t)(SPACE_FOR_DIR - off - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003345
Bram Moolenaar2c666692012-09-05 13:30:40 +02003346 /* Translate unprintable chars and concatenate. Keep some
3347 * room for the server name. When there is no room (very long
3348 * file name) use (...). */
3349 if (off < SPACE_FOR_DIR)
3350 {
3351 p = transstr(buf + off);
3352 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3353 vim_free(p);
3354 }
3355 else
3356 {
3357 vim_strncpy(buf + off, (char_u *)"...",
3358 (size_t)(SPACE_FOR_ARGNR - off));
3359 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 STRCAT(buf, ")");
3361 }
3362
Bram Moolenaar2c666692012-09-05 13:30:40 +02003363 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364
3365#if defined(FEAT_CLIENTSERVER)
3366 if (serverName != NULL)
3367 {
3368 STRCAT(buf, " - ");
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02003369 vim_strcat(buf, serverName, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 }
3371 else
3372#endif
3373 STRCAT(buf, " - VIM");
3374
3375 if (maxlen > 0)
3376 {
3377 /* make it shorter by removing a bit in the middle */
Bram Moolenaarf31b7642012-01-20 20:44:43 +01003378 if (vim_strsize(buf) > maxlen)
3379 trunc_string(buf, buf, maxlen, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 }
3381 }
3382 }
3383 mustset = ti_change(t_str, &lasttitle);
3384
3385 if (p_icon)
3386 {
3387 i_str = buf;
3388 if (*p_iconstring != NUL)
3389 {
3390#ifdef FEAT_STL_OPT
Bram Moolenaard3667a22006-03-16 21:35:52 +00003391 if (stl_syntax & STL_IN_ICON)
3392 {
3393 int use_sandbox = FALSE;
3394 int save_called_emsg = called_emsg;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003395
3396# ifdef FEAT_EVAL
Bram Moolenaard3667a22006-03-16 21:35:52 +00003397 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003398# endif
Bram Moolenaard3667a22006-03-16 21:35:52 +00003399 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003401 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003402 0, 0, NULL, NULL);
Bram Moolenaard3667a22006-03-16 21:35:52 +00003403 if (called_emsg)
3404 set_string_option_direct((char_u *)"iconstring", -1,
3405 (char_u *)"", OPT_FREE, SID_ERROR);
3406 called_emsg |= save_called_emsg;
3407 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 else
3409#endif
3410 i_str = p_iconstring;
3411 }
3412 else
3413 {
3414 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003415 i_name = buf_spname(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 else /* use file name only in icon */
3417 i_name = gettail(curbuf->b_ffname);
3418 *i_str = NUL;
3419 /* Truncate name at 100 bytes. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003420 len = (int)STRLEN(i_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 if (len > 100)
3422 {
3423 len -= 100;
3424#ifdef FEAT_MBYTE
3425 if (has_mbyte)
3426 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3427#endif
3428 i_name += len;
3429 }
3430 STRCPY(i_str, i_name);
3431 trans_characters(i_str, IOSIZE);
3432 }
3433 }
3434
3435 mustset |= ti_change(i_str, &lasticon);
3436
3437 if (mustset)
3438 resettitle();
3439}
3440
3441/*
3442 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3443 * from "str" if it does.
3444 * Return TRUE when "*last" changed.
3445 */
3446 static int
3447ti_change(str, last)
3448 char_u *str;
3449 char_u **last;
3450{
3451 if ((str == NULL) != (*last == NULL)
3452 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3453 {
3454 vim_free(*last);
3455 if (str == NULL)
3456 *last = NULL;
3457 else
3458 *last = vim_strsave(str);
3459 return TRUE;
3460 }
3461 return FALSE;
3462}
3463
3464/*
3465 * Put current window title back (used after calling a shell)
3466 */
3467 void
3468resettitle()
3469{
3470 mch_settitle(lasttitle, lasticon);
3471}
Bram Moolenaarea408852005-06-25 22:49:46 +00003472
3473# if defined(EXITFREE) || defined(PROTO)
3474 void
3475free_titles()
3476{
3477 vim_free(lasttitle);
3478 vim_free(lasticon);
3479}
3480# endif
3481
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482#endif /* FEAT_TITLE */
3483
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003484#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003486 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 * Return length of string in screen cells.
3488 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003489 * Normally works for window "wp", except when working for 'tabline' then it
3490 * is "curwin".
3491 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 * Items are drawn interspersed with the text that surrounds it
3493 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3494 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3495 *
3496 * If maxwidth is not zero, the string will be filled at any middle marker
3497 * or truncated if too long, fillchar is used for all whitespace.
3498 */
3499 int
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003500build_stl_str_hl(wp, out, outlen, fmt, use_sandbox, fillchar,
3501 maxwidth, hltab, tabtab)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 win_T *wp;
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003503 char_u *out; /* buffer to write into != NameBuff */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 size_t outlen; /* length of out[] */
3505 char_u *fmt;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003506 int use_sandbox UNUSED; /* "fmt" was set insecurely, use sandbox */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 int fillchar;
3508 int maxwidth;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003509 struct stl_hlrec *hltab; /* return: HL attributes (can be NULL) */
3510 struct stl_hlrec *tabtab; /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511{
3512 char_u *p;
3513 char_u *s;
3514 char_u *t;
Bram Moolenaar567199b2013-04-24 16:52:36 +02003515 int byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516#ifdef FEAT_EVAL
3517 win_T *o_curwin;
3518 buf_T *o_curbuf;
3519#endif
3520 int empty_line;
3521 colnr_T virtcol;
3522 long l;
3523 long n;
3524 int prevchar_isflag;
3525 int prevchar_isitem;
3526 int itemisflag;
3527 int fillable;
3528 char_u *str;
3529 long num;
3530 int width;
3531 int itemcnt;
3532 int curitem;
3533 int groupitem[STL_MAX_ITEM];
3534 int groupdepth;
3535 struct stl_item
3536 {
3537 char_u *start;
3538 int minwid;
3539 int maxwid;
3540 enum
3541 {
3542 Normal,
3543 Empty,
3544 Group,
3545 Middle,
3546 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003547 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 Trunc
3549 } type;
3550 } item[STL_MAX_ITEM];
3551 int minwid;
3552 int maxwid;
3553 int zeropad;
3554 char_u base;
3555 char_u opt;
3556#define TMPLEN 70
3557 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003558 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003559 struct stl_hlrec *sp;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003560
3561#ifdef FEAT_EVAL
3562 /*
3563 * When the format starts with "%!" then evaluate it as an expression and
3564 * use the result as the actual format string.
3565 */
3566 if (fmt[0] == '%' && fmt[1] == '!')
3567 {
3568 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3569 if (usefmt == NULL)
Bram Moolenaar4100af72006-08-29 14:48:14 +00003570 usefmt = fmt;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003571 }
3572#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573
3574 if (fillchar == 0)
3575 fillchar = ' ';
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003576#ifdef FEAT_MBYTE
3577 /* Can't handle a multi-byte fill character yet. */
3578 else if (mb_char2len(fillchar) > 1)
3579 fillchar = '-';
3580#endif
3581
Bram Moolenaar567199b2013-04-24 16:52:36 +02003582 /* Get line & check if empty (cursorpos will show "0-1"). Note that
3583 * p will become invalid when getting another buffer line. */
3584 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3585 empty_line = (*p == NUL);
3586
3587 /* Get the byte value now, in case we need it below. This is more
3588 * efficient than making a copy of the line. */
3589 if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3590 byteval = 0;
3591 else
3592#ifdef FEAT_MBYTE
3593 byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3594#else
3595 byteval = p[wp->w_cursor.col];
3596#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597
3598 groupdepth = 0;
3599 p = out;
3600 curitem = 0;
3601 prevchar_isflag = TRUE;
3602 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003603 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 {
Bram Moolenaarb75d09d2011-02-15 14:24:46 +01003605 if (curitem == STL_MAX_ITEM)
3606 {
3607 /* There are too many items. Add the error code to the statusline
3608 * to give the user a hint about what went wrong. */
3609 if (p + 6 < out + outlen)
3610 {
3611 mch_memmove(p, " E541", (size_t)5);
3612 p += 5;
3613 }
3614 break;
3615 }
3616
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 if (*s != NUL && *s != '%')
3618 prevchar_isflag = prevchar_isitem = FALSE;
3619
3620 /*
3621 * Handle up to the next '%' or the end.
3622 */
3623 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3624 *p++ = *s++;
3625 if (*s == NUL || p + 1 >= out + outlen)
3626 break;
3627
3628 /*
3629 * Handle one '%' item.
3630 */
3631 s++;
Bram Moolenaar1d87f512011-02-01 21:55:01 +01003632 if (*s == NUL) /* ignore trailing % */
3633 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 if (*s == '%')
3635 {
3636 if (p + 1 >= out + outlen)
3637 break;
3638 *p++ = *s++;
3639 prevchar_isflag = prevchar_isitem = FALSE;
3640 continue;
3641 }
3642 if (*s == STL_MIDDLEMARK)
3643 {
3644 s++;
3645 if (groupdepth > 0)
3646 continue;
3647 item[curitem].type = Middle;
3648 item[curitem++].start = p;
3649 continue;
3650 }
3651 if (*s == STL_TRUNCMARK)
3652 {
3653 s++;
3654 item[curitem].type = Trunc;
3655 item[curitem++].start = p;
3656 continue;
3657 }
3658 if (*s == ')')
3659 {
3660 s++;
3661 if (groupdepth < 1)
3662 continue;
3663 groupdepth--;
3664
3665 t = item[groupitem[groupdepth]].start;
3666 *p = NUL;
3667 l = vim_strsize(t);
3668 if (curitem > groupitem[groupdepth] + 1
3669 && item[groupitem[groupdepth]].minwid == 0)
3670 {
3671 /* remove group if all items are empty */
3672 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3673 if (item[n].type == Normal)
3674 break;
3675 if (n == curitem)
3676 {
3677 p = t;
3678 l = 0;
3679 }
3680 }
3681 if (l > item[groupitem[groupdepth]].maxwid)
3682 {
3683 /* truncate, remove n bytes of text at the start */
3684#ifdef FEAT_MBYTE
3685 if (has_mbyte)
3686 {
3687 /* Find the first character that should be included. */
3688 n = 0;
3689 while (l >= item[groupitem[groupdepth]].maxwid)
3690 {
3691 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003692 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 }
3694 }
3695 else
3696#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003697 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698
3699 *t = '<';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003700 mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 p = p - n + 1;
3702#ifdef FEAT_MBYTE
3703 /* Fill up space left over by half a double-wide char. */
3704 while (++l < item[groupitem[groupdepth]].minwid)
3705 *p++ = fillchar;
3706#endif
3707
3708 /* correct the start of the items for the truncation */
3709 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
3710 {
3711 item[l].start -= n;
3712 if (item[l].start < t)
3713 item[l].start = t;
3714 }
3715 }
3716 else if (abs(item[groupitem[groupdepth]].minwid) > l)
3717 {
3718 /* fill */
3719 n = item[groupitem[groupdepth]].minwid;
3720 if (n < 0)
3721 {
3722 /* fill by appending characters */
3723 n = 0 - n;
3724 while (l++ < n && p + 1 < out + outlen)
3725 *p++ = fillchar;
3726 }
3727 else
3728 {
3729 /* fill by inserting characters */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003730 mch_memmove(t + n - l, t, (size_t)(p - t));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 l = n - l;
3732 if (p + l >= out + outlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003733 l = (long)((out + outlen) - p - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 p += l;
3735 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3736 item[n].start += l;
3737 for ( ; l > 0; l--)
3738 *t++ = fillchar;
3739 }
3740 }
3741 continue;
3742 }
3743 minwid = 0;
3744 maxwid = 9999;
3745 zeropad = FALSE;
3746 l = 1;
3747 if (*s == '0')
3748 {
3749 s++;
3750 zeropad = TRUE;
3751 }
3752 if (*s == '-')
3753 {
3754 s++;
3755 l = -1;
3756 }
3757 if (VIM_ISDIGIT(*s))
3758 {
3759 minwid = (int)getdigits(&s);
3760 if (minwid < 0) /* overflow */
3761 minwid = 0;
3762 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003763 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 {
3765 item[curitem].type = Highlight;
3766 item[curitem].start = p;
3767 item[curitem].minwid = minwid > 9 ? 1 : minwid;
3768 s++;
3769 curitem++;
3770 continue;
3771 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003772 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
3773 {
3774 if (*s == STL_TABCLOSENR)
3775 {
3776 if (minwid == 0)
3777 {
3778 /* %X ends the close label, go back to the previously
3779 * define tab label nr. */
3780 for (n = curitem - 1; n >= 0; --n)
3781 if (item[n].type == TabPage && item[n].minwid >= 0)
3782 {
3783 minwid = item[n].minwid;
3784 break;
3785 }
3786 }
3787 else
3788 /* close nrs are stored as negative values */
3789 minwid = - minwid;
3790 }
3791 item[curitem].type = TabPage;
3792 item[curitem].start = p;
3793 item[curitem].minwid = minwid;
3794 s++;
3795 curitem++;
3796 continue;
3797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 if (*s == '.')
3799 {
3800 s++;
3801 if (VIM_ISDIGIT(*s))
3802 {
3803 maxwid = (int)getdigits(&s);
3804 if (maxwid <= 0) /* overflow */
3805 maxwid = 50;
3806 }
3807 }
3808 minwid = (minwid > 50 ? 50 : minwid) * l;
3809 if (*s == '(')
3810 {
3811 groupitem[groupdepth++] = curitem;
3812 item[curitem].type = Group;
3813 item[curitem].start = p;
3814 item[curitem].minwid = minwid;
3815 item[curitem].maxwid = maxwid;
3816 s++;
3817 curitem++;
3818 continue;
3819 }
3820 if (vim_strchr(STL_ALL, *s) == NULL)
3821 {
3822 s++;
3823 continue;
3824 }
3825 opt = *s++;
3826
3827 /* OK - now for the real work */
3828 base = 'D';
3829 itemisflag = FALSE;
3830 fillable = TRUE;
3831 num = -1;
3832 str = NULL;
3833 switch (opt)
3834 {
3835 case STL_FILEPATH:
3836 case STL_FULLPATH:
3837 case STL_FILENAME:
3838 fillable = FALSE; /* don't change ' ' to fillchar */
3839 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02003840 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 else
3842 {
3843 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003844 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
3846 }
3847 trans_characters(NameBuff, MAXPATHL);
3848 if (opt != STL_FILENAME)
3849 str = NameBuff;
3850 else
3851 str = gettail(NameBuff);
3852 break;
3853
3854 case STL_VIM_EXPR: /* '{' */
3855 itemisflag = TRUE;
3856 t = p;
3857 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
3858 *p++ = *s++;
3859 if (*s != '}') /* missing '}' or out of space */
3860 break;
3861 s++;
3862 *p = 0;
3863 p = t;
3864
3865#ifdef FEAT_EVAL
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003866 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 set_internal_string_var((char_u *)"actual_curbuf", tmp);
3868
3869 o_curbuf = curbuf;
3870 o_curwin = curwin;
3871 curwin = wp;
3872 curbuf = wp->w_buffer;
3873
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003874 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875
3876 curwin = o_curwin;
3877 curbuf = o_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00003878 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879
3880 if (str != NULL && *str != 0)
3881 {
3882 if (*skipdigits(str) == NUL)
3883 {
3884 num = atoi((char *)str);
3885 vim_free(str);
3886 str = NULL;
3887 itemisflag = FALSE;
3888 }
3889 }
3890#endif
3891 break;
3892
3893 case STL_LINE:
3894 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
3895 ? 0L : (long)(wp->w_cursor.lnum);
3896 break;
3897
3898 case STL_NUMLINES:
3899 num = wp->w_buffer->b_ml.ml_line_count;
3900 break;
3901
3902 case STL_COLUMN:
3903 num = !(State & INSERT) && empty_line
3904 ? 0 : (int)wp->w_cursor.col + 1;
3905 break;
3906
3907 case STL_VIRTCOL:
3908 case STL_VIRTCOL_ALT:
3909 /* In list mode virtcol needs to be recomputed */
3910 virtcol = wp->w_virtcol;
3911 if (wp->w_p_list && lcs_tab1 == NUL)
3912 {
3913 wp->w_p_list = FALSE;
3914 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
3915 wp->w_p_list = TRUE;
3916 }
3917 ++virtcol;
3918 /* Don't display %V if it's the same as %c. */
3919 if (opt == STL_VIRTCOL_ALT
3920 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
3921 ? 0 : (int)wp->w_cursor.col + 1)))
3922 break;
3923 num = (long)virtcol;
3924 break;
3925
3926 case STL_PERCENTAGE:
3927 num = (int)(((long)wp->w_cursor.lnum * 100L) /
3928 (long)wp->w_buffer->b_ml.ml_line_count);
3929 break;
3930
3931 case STL_ALTPERCENT:
3932 str = tmp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003933 get_rel_pos(wp, str, TMPLEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 break;
3935
3936 case STL_ARGLISTSTAT:
3937 fillable = FALSE;
3938 tmp[0] = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003939 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 str = tmp;
3941 break;
3942
3943 case STL_KEYMAP:
3944 fillable = FALSE;
3945 if (get_keymap_str(wp, tmp, TMPLEN))
3946 str = tmp;
3947 break;
3948 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003949#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003950 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951#else
3952 num = 0;
3953#endif
3954 break;
3955
3956 case STL_BUFNO:
3957 num = wp->w_buffer->b_fnum;
3958 break;
3959
3960 case STL_OFFSET_X:
3961 base = 'X';
3962 case STL_OFFSET:
3963#ifdef FEAT_BYTEOFF
3964 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
3965 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
3966 0L : l + 1 + (!(State & INSERT) && empty_line ?
3967 0 : (int)wp->w_cursor.col);
3968#endif
3969 break;
3970
3971 case STL_BYTEVAL_X:
3972 base = 'X';
3973 case STL_BYTEVAL:
Bram Moolenaar567199b2013-04-24 16:52:36 +02003974 num = byteval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 if (num == NL)
3976 num = 0;
3977 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
3978 num = NL;
3979 break;
3980
3981 case STL_ROFLAG:
3982 case STL_ROFLAG_ALT:
3983 itemisflag = TRUE;
3984 if (wp->w_buffer->b_p_ro)
Bram Moolenaar23584032013-06-07 20:17:11 +02003985 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 break;
3987
3988 case STL_HELPFLAG:
3989 case STL_HELPFLAG_ALT:
3990 itemisflag = TRUE;
3991 if (wp->w_buffer->b_help)
3992 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
Bram Moolenaar899dddf2006-03-26 21:06:50 +00003993 : _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 break;
3995
3996#ifdef FEAT_AUTOCMD
3997 case STL_FILETYPE:
3998 if (*wp->w_buffer->b_p_ft != NUL
3999 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4000 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004001 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4002 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 str = tmp;
4004 }
4005 break;
4006
4007 case STL_FILETYPE_ALT:
4008 itemisflag = TRUE;
4009 if (*wp->w_buffer->b_p_ft != NUL
4010 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4011 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004012 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4013 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014 for (t = tmp; *t != 0; t++)
4015 *t = TOUPPER_LOC(*t);
4016 str = tmp;
4017 }
4018 break;
4019#endif
4020
4021#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4022 case STL_PREVIEWFLAG:
4023 case STL_PREVIEWFLAG_ALT:
4024 itemisflag = TRUE;
4025 if (wp->w_p_pvw)
4026 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4027 : _("[Preview]"));
4028 break;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004029
4030 case STL_QUICKFIX:
4031 if (bt_quickfix(wp->w_buffer))
4032 str = (char_u *)(wp->w_llist_ref
4033 ? _(msg_loclist)
4034 : _(msg_qflist));
4035 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036#endif
4037
4038 case STL_MODIFIED:
4039 case STL_MODIFIED_ALT:
4040 itemisflag = TRUE;
4041 switch ((opt == STL_MODIFIED_ALT)
4042 + bufIsChanged(wp->w_buffer) * 2
4043 + (!wp->w_buffer->b_p_ma) * 4)
4044 {
4045 case 2: str = (char_u *)"[+]"; break;
4046 case 3: str = (char_u *)",+"; break;
4047 case 4: str = (char_u *)"[-]"; break;
4048 case 5: str = (char_u *)",-"; break;
4049 case 6: str = (char_u *)"[+-]"; break;
4050 case 7: str = (char_u *)",+-"; break;
4051 }
4052 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004053
4054 case STL_HIGHLIGHT:
4055 t = s;
4056 while (*s != '#' && *s != NUL)
4057 ++s;
4058 if (*s == '#')
4059 {
4060 item[curitem].type = Highlight;
4061 item[curitem].start = p;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004062 item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004063 curitem++;
4064 }
4065 ++s;
4066 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 }
4068
4069 item[curitem].start = p;
4070 item[curitem].type = Normal;
4071 if (str != NULL && *str)
4072 {
4073 t = str;
4074 if (itemisflag)
4075 {
4076 if ((t[0] && t[1])
4077 && ((!prevchar_isitem && *t == ',')
4078 || (prevchar_isflag && *t == ' ')))
4079 t++;
4080 prevchar_isflag = TRUE;
4081 }
4082 l = vim_strsize(t);
4083 if (l > 0)
4084 prevchar_isitem = TRUE;
4085 if (l > maxwid)
4086 {
4087 while (l >= maxwid)
4088#ifdef FEAT_MBYTE
4089 if (has_mbyte)
4090 {
4091 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004092 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 }
4094 else
4095#endif
4096 l -= byte2cells(*t++);
4097 if (p + 1 >= out + outlen)
4098 break;
4099 *p++ = '<';
4100 }
4101 if (minwid > 0)
4102 {
4103 for (; l < minwid && p + 1 < out + outlen; l++)
4104 {
4105 /* Don't put a "-" in front of a digit. */
4106 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4107 *p++ = ' ';
4108 else
4109 *p++ = fillchar;
4110 }
4111 minwid = 0;
4112 }
4113 else
4114 minwid *= -1;
4115 while (*t && p + 1 < out + outlen)
4116 {
4117 *p++ = *t++;
4118 /* Change a space by fillchar, unless fillchar is '-' and a
4119 * digit follows. */
4120 if (fillable && p[-1] == ' '
4121 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4122 p[-1] = fillchar;
4123 }
4124 for (; l < minwid && p + 1 < out + outlen; l++)
4125 *p++ = fillchar;
4126 }
4127 else if (num >= 0)
4128 {
4129 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4130 char_u nstr[20];
4131
4132 if (p + 20 >= out + outlen)
4133 break; /* not sufficient space */
4134 prevchar_isitem = TRUE;
4135 t = nstr;
4136 if (opt == STL_VIRTCOL_ALT)
4137 {
4138 *t++ = '-';
4139 minwid--;
4140 }
4141 *t++ = '%';
4142 if (zeropad)
4143 *t++ = '0';
4144 *t++ = '*';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004145 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 *t = 0;
4147
4148 for (n = num, l = 1; n >= nbase; n /= nbase)
4149 l++;
4150 if (opt == STL_VIRTCOL_ALT)
4151 l++;
4152 if (l > maxwid)
4153 {
4154 l += 2;
4155 n = l - maxwid;
4156 while (l-- > maxwid)
4157 num /= nbase;
4158 *t++ = '>';
4159 *t++ = '%';
4160 *t = t[-3];
4161 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004162 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4163 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 }
4165 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004166 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4167 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 p += STRLEN(p);
4169 }
4170 else
4171 item[curitem].type = Empty;
4172
4173 if (opt == STL_VIM_EXPR)
4174 vim_free(str);
4175
4176 if (num >= 0 || (!itemisflag && str && *str))
4177 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
4178 curitem++;
4179 }
4180 *p = NUL;
4181 itemcnt = curitem;
4182
Bram Moolenaar030f0df2006-02-21 22:02:53 +00004183#ifdef FEAT_EVAL
4184 if (usefmt != fmt)
4185 vim_free(usefmt);
4186#endif
4187
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 width = vim_strsize(out);
4189 if (maxwidth > 0 && width > maxwidth)
4190 {
Bram Moolenaar9381ab72008-11-12 11:52:19 +00004191 /* Result is too long, must truncate somewhere. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 l = 0;
4193 if (itemcnt == 0)
4194 s = out;
4195 else
4196 {
4197 for ( ; l < itemcnt; l++)
4198 if (item[l].type == Trunc)
4199 {
4200 /* Truncate at %< item. */
4201 s = item[l].start;
4202 break;
4203 }
4204 if (l == itemcnt)
4205 {
4206 /* No %< item, truncate first item. */
4207 s = item[0].start;
4208 l = 0;
4209 }
4210 }
4211
4212 if (width - vim_strsize(s) >= maxwidth)
4213 {
4214 /* Truncation mark is beyond max length */
4215#ifdef FEAT_MBYTE
4216 if (has_mbyte)
4217 {
4218 s = out;
4219 width = 0;
4220 for (;;)
4221 {
4222 width += ptr2cells(s);
4223 if (width >= maxwidth)
4224 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004225 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 }
4227 /* Fill up for half a double-wide character. */
4228 while (++width < maxwidth)
4229 *s++ = fillchar;
4230 }
4231 else
4232#endif
4233 s = out + maxwidth - 1;
4234 for (l = 0; l < itemcnt; l++)
4235 if (item[l].start > s)
4236 break;
4237 itemcnt = l;
4238 *s++ = '>';
4239 *s = 0;
4240 }
4241 else
4242 {
4243#ifdef FEAT_MBYTE
4244 if (has_mbyte)
4245 {
4246 n = 0;
4247 while (width >= maxwidth)
4248 {
4249 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004250 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 }
4252 }
4253 else
4254#endif
4255 n = width - maxwidth + 1;
4256 p = s + n;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004257 STRMOVE(s + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 *s = '<';
4259
4260 /* Fill up for half a double-wide character. */
4261 while (++width < maxwidth)
4262 {
4263 s = s + STRLEN(s);
4264 *s++ = fillchar;
4265 *s = NUL;
4266 }
4267
4268 --n; /* count the '<' */
4269 for (; l < itemcnt; l++)
4270 {
4271 if (item[l].start - n >= s)
4272 item[l].start -= n;
4273 else
4274 item[l].start = s;
4275 }
4276 }
4277 width = maxwidth;
4278 }
4279 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4280 {
4281 /* Apply STL_MIDDLE if any */
4282 for (l = 0; l < itemcnt; l++)
4283 if (item[l].type == Middle)
4284 break;
4285 if (l < itemcnt)
4286 {
4287 p = item[l].start + maxwidth - width;
Bram Moolenaarf2330482008-06-24 20:19:36 +00004288 STRMOVE(p, item[l].start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 for (s = item[l].start; s < p; s++)
4290 *s = fillchar;
4291 for (l++; l < itemcnt; l++)
4292 item[l].start += maxwidth - width;
4293 width = maxwidth;
4294 }
4295 }
4296
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004297 /* Store the info about highlighting. */
4298 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004300 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 for (l = 0; l < itemcnt; l++)
4302 {
4303 if (item[l].type == Highlight)
4304 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004305 sp->start = item[l].start;
4306 sp->userhl = item[l].minwid;
4307 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 }
4309 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004310 sp->start = NULL;
4311 sp->userhl = 0;
4312 }
4313
4314 /* Store the info about tab pages labels. */
4315 if (tabtab != NULL)
4316 {
4317 sp = tabtab;
4318 for (l = 0; l < itemcnt; l++)
4319 {
4320 if (item[l].type == TabPage)
4321 {
4322 sp->start = item[l].start;
4323 sp->userhl = item[l].minwid;
4324 sp++;
4325 }
4326 }
4327 sp->start = NULL;
4328 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 }
4330
4331 return width;
4332}
4333#endif /* FEAT_STL_OPT */
4334
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004335#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4336 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004338 * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4339 * using "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 */
4341 void
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004342get_rel_pos(wp, buf, buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 win_T *wp;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004344 char_u *buf;
4345 int buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346{
4347 long above; /* number of lines above window */
4348 long below; /* number of lines below window */
4349
4350 above = wp->w_topline - 1;
4351#ifdef FEAT_DIFF
4352 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
4353#endif
4354 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4355 if (below <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004356 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4357 (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 else if (above <= 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004359 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004361 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 ? (int)(above / ((above + below) / 100L))
4363 : (int)(above * 100L / (above + below)));
4364}
4365#endif
4366
4367/*
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004368 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 * Return TRUE if it was appended.
4370 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004371 static int
4372append_arg_number(wp, buf, buflen, add_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 win_T *wp;
4374 char_u *buf;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004375 int buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 int add_file; /* Add "file" before the arg number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377{
4378 char_u *p;
4379
4380 if (ARGCOUNT <= 1) /* nothing to do */
4381 return FALSE;
4382
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004383 p = buf + STRLEN(buf); /* go to the end of the buffer */
4384 if (p - buf + 35 >= buflen) /* getting too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 return FALSE;
4386 *p++ = ' ';
4387 *p++ = '(';
4388 if (add_file)
4389 {
4390 STRCPY(p, "file ");
4391 p += 5;
4392 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004393 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4394 wp->w_arg_idx_invalid ? "(%d) of %d)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4396 return TRUE;
4397}
4398
4399/*
4400 * If fname is not a full path, make it a full path.
4401 * Returns pointer to allocated memory (NULL for failure).
4402 */
4403 char_u *
4404fix_fname(fname)
4405 char_u *fname;
4406{
4407 /*
4408 * Force expanding the path always for Unix, because symbolic links may
4409 * mess up the full path name, even though it starts with a '/'.
4410 * Also expand when there is ".." in the file name, try to remove it,
4411 * because "c:/src/../README" is equal to "c:/README".
Bram Moolenaar9b942202007-10-03 12:31:33 +00004412 * Similarly "c:/src//file" is equal to "c:/src/file".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 * For MS-Windows also expand names like "longna~1" to "longname".
4414 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00004415#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 return FullName_save(fname, TRUE);
4417#else
Bram Moolenaar9b942202007-10-03 12:31:33 +00004418 if (!vim_isAbsName(fname)
4419 || strstr((char *)fname, "..") != NULL
4420 || strstr((char *)fname, "//") != NULL
4421# ifdef BACKSLASH_IN_FILENAME
4422 || strstr((char *)fname, "\\\\") != NULL
4423# endif
4424# if defined(MSWIN) || defined(DJGPP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 || vim_strchr(fname, '~') != NULL
Bram Moolenaar9b942202007-10-03 12:31:33 +00004426# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 )
4428 return FullName_save(fname, FALSE);
4429
4430 fname = vim_strsave(fname);
4431
Bram Moolenaar9b942202007-10-03 12:31:33 +00004432# ifdef USE_FNAME_CASE
4433# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 if (USE_LONG_FNAME)
Bram Moolenaar9b942202007-10-03 12:31:33 +00004435# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 {
4437 if (fname != NULL)
4438 fname_case(fname, 0); /* set correct case for file name */
4439 }
Bram Moolenaar9b942202007-10-03 12:31:33 +00004440# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441
4442 return fname;
4443#endif
4444}
4445
4446/*
4447 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4448 * "ffname" becomes a pointer to allocated memory (or NULL).
4449 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 void
4451fname_expand(buf, ffname, sfname)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00004452 buf_T *buf UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 char_u **ffname;
4454 char_u **sfname;
4455{
4456 if (*ffname == NULL) /* if no file name given, nothing to do */
4457 return;
4458 if (*sfname == NULL) /* if no short file name given, use ffname */
4459 *sfname = *ffname;
4460 *ffname = fix_fname(*ffname); /* expand to full path */
4461
4462#ifdef FEAT_SHORTCUT
4463 if (!buf->b_p_bin)
4464 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004465 char_u *rfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466
4467 /* If the file name is a shortcut file, use the file it links to. */
4468 rfname = mch_resolve_shortcut(*ffname);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004469 if (rfname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 {
4471 vim_free(*ffname);
4472 *ffname = rfname;
4473 *sfname = rfname;
4474 }
4475 }
4476#endif
4477}
4478
4479/*
4480 * Get the file name for an argument list entry.
4481 */
4482 char_u *
4483alist_name(aep)
4484 aentry_T *aep;
4485{
4486 buf_T *bp;
4487
4488 /* Use the name from the associated buffer if it exists. */
4489 bp = buflist_findnr(aep->ae_fnum);
Bram Moolenaar84212822006-11-07 21:59:47 +00004490 if (bp == NULL || bp->b_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 return aep->ae_fname;
4492 return bp->b_fname;
4493}
4494
4495#if defined(FEAT_WINDOWS) || defined(PROTO)
4496/*
4497 * do_arg_all(): Open up to 'count' windows, one for each argument.
4498 */
4499 void
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004500do_arg_all(count, forceit, keep_tabs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501 int count;
4502 int forceit; /* hide buffers in current windows */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004503 int keep_tabs; /* keep current tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504{
4505 int i;
4506 win_T *wp, *wpnext;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004507 char_u *opened; /* Array of weight for which args are open:
4508 * 0: not opened
4509 * 1: opened in other tab
4510 * 2: opened in curtab
4511 * 3: opened in curtab and curwin
4512 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004513 int opened_len; /* length of opened[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 int use_firstwin = FALSE; /* use first window for arglist */
4515 int split_ret = OK;
4516 int p_ea_save;
4517 alist_T *alist; /* argument list to be used */
4518 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004519 tabpage_T *tpnext;
4520 int had_tab = cmdmod.tab;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004521 win_T *old_curwin, *last_curwin;
4522 tabpage_T *old_curtab, *last_curtab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004523 win_T *new_curwin = NULL;
4524 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525
4526 if (ARGCOUNT <= 0)
4527 {
4528 /* Don't give an error message. We don't want it when the ":all"
4529 * command is in the .vimrc. */
4530 return;
4531 }
4532 setpcmark();
4533
4534 opened_len = ARGCOUNT;
4535 opened = alloc_clear((unsigned)opened_len);
4536 if (opened == NULL)
4537 return;
4538
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004539 /* Autocommands may do anything to the argument list. Make sure it's not
4540 * freed while we are working here by "locking" it. We still have to
4541 * watch out for its size to be changed. */
4542 alist = curwin->w_alist;
4543 ++alist->al_refcount;
4544
4545 old_curwin = curwin;
4546 old_curtab = curtab;
4547
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548#ifdef FEAT_GUI
4549 need_mouse_correct = TRUE;
4550#endif
4551
4552 /*
4553 * Try closing all windows that are not in the argument list.
4554 * Also close windows that are not full width;
4555 * When 'hidden' or "forceit" set the buffer becomes hidden.
4556 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004557 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004559 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004560 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004561 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004563 tpnext = curtab->tp_next;
4564 for (wp = firstwin; wp != NULL; wp = wpnext)
4565 {
4566 wpnext = wp->w_next;
4567 buf = wp->w_buffer;
4568 if (buf->b_ffname == NULL
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004569 || (!keep_tabs && buf->b_nwindows > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570#ifdef FEAT_VERTSPLIT
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004571 || wp->w_width != Columns
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004573 )
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004574 i = opened_len;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004575 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004577 /* check if the buffer in this window is in the arglist */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004578 for (i = 0; i < opened_len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004580 if (i < alist->al_ga.ga_len
4581 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4582 || fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4583 buf->b_ffname, TRUE) & FPC_SAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004585 int weight = 1;
4586
4587 if (old_curtab == curtab)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004588 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004589 ++weight;
4590 if (old_curwin == wp)
4591 ++weight;
4592 }
4593
4594 if (weight > (int)opened[i])
4595 {
4596 opened[i] = (char_u)weight;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004597 if (i == 0)
4598 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004599 if (new_curwin != NULL)
4600 new_curwin->w_arg_idx = opened_len;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004601 new_curwin = wp;
4602 new_curtab = curtab;
4603 }
4604 }
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004605 else if (keep_tabs)
4606 i = opened_len;
4607
4608 if (wp->w_alist != alist)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004609 {
4610 /* Use the current argument list for all windows
4611 * containing a file from it. */
4612 alist_unlink(wp->w_alist);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004613 wp->w_alist = alist;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004614 ++wp->w_alist->al_refcount;
4615 }
4616 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 }
4619 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004620 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004622 if (i == opened_len && !keep_tabs)/* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004624 if (P_HID(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004625 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004627 /* If the buffer was changed, and we would like to hide it,
4628 * try autowriting. */
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004629 if (!P_HID(buf) && buf->b_nwindows <= 1
4630 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004632 (void)autowrite(buf, FALSE);
4633#ifdef FEAT_AUTOCMD
4634 /* check if autocommands removed the window */
4635 if (!win_valid(wp) || !buf_valid(buf))
4636 {
4637 wpnext = firstwin; /* start all over... */
4638 continue;
4639 }
4640#endif
4641 }
4642#ifdef FEAT_WINDOWS
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004643 /* don't close last window */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004644 if (firstwin == lastwin
4645 && (first_tabpage->tp_next == NULL || !had_tab))
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004646#endif
4647 use_firstwin = TRUE;
4648#ifdef FEAT_WINDOWS
4649 else
4650 {
4651 win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4652# ifdef FEAT_AUTOCMD
4653 /* check if autocommands removed the next window */
4654 if (!win_valid(wpnext))
4655 wpnext = firstwin; /* start all over... */
4656# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 }
4658#endif
4659 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 }
4661 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004662
4663 /* Without the ":tab" modifier only do the current tab page. */
4664 if (had_tab == 0 || tpnext == NULL)
4665 break;
4666
4667# ifdef FEAT_AUTOCMD
4668 /* check if autocommands removed the next tab page */
4669 if (!valid_tabpage(tpnext))
4670 tpnext = first_tabpage; /* start all over...*/
4671# endif
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004672 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 }
4674
4675 /*
4676 * Open a window for files in the argument list that don't have one.
4677 * ARGCOUNT may change while doing this, because of autocommands.
4678 */
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004679 if (count > opened_len || count <= 0)
4680 count = opened_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681
4682#ifdef FEAT_AUTOCMD
4683 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4684 ++autocmd_no_enter;
4685 ++autocmd_no_leave;
4686#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004687 last_curwin = curwin;
4688 last_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 win_enter(lastwin, FALSE);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004690#ifdef FEAT_WINDOWS
4691 /* ":drop all" should re-use an empty window to avoid "--remote-tab"
4692 * leaving an empty tab page when executed locally. */
4693 if (keep_tabs && bufempty() && curbuf->b_nwindows == 1
4694 && curbuf->b_ffname == NULL && !curbuf->b_changed)
4695 use_firstwin = TRUE;
4696#endif
4697
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004698 for (i = 0; i < count && i < opened_len && !got_int; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 {
4700 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4701 arg_had_last = TRUE;
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004702 if (opened[i] > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 {
4704 /* Move the already present window to below the current window */
4705 if (curwin->w_arg_idx != i)
4706 {
4707 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
4708 {
4709 if (wpnext->w_arg_idx == i)
4710 {
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004711 if (keep_tabs)
4712 {
4713 new_curwin = wpnext;
4714 new_curtab = curtab;
4715 }
4716 else
4717 win_move_after(wpnext, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 break;
4719 }
4720 }
4721 }
4722 }
4723 else if (split_ret == OK)
4724 {
4725 if (!use_firstwin) /* split current window */
4726 {
4727 p_ea_save = p_ea;
4728 p_ea = TRUE; /* use space from all windows */
4729 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4730 p_ea = p_ea_save;
4731 if (split_ret == FAIL)
4732 continue;
4733 }
4734#ifdef FEAT_AUTOCMD
4735 else /* first window: do autocmd for leaving this buffer */
4736 --autocmd_no_leave;
4737#endif
4738
4739 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004740 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 */
4742 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004743 if (i == 0)
4744 {
4745 new_curwin = curwin;
4746 new_curtab = curtab;
4747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
4749 ECMD_ONE,
4750 ((P_HID(curwin->w_buffer)
4751 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00004752 + ECMD_OLDBUF, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753#ifdef FEAT_AUTOCMD
4754 if (use_firstwin)
4755 ++autocmd_no_leave;
4756#endif
4757 use_firstwin = FALSE;
4758 }
4759 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004760
4761 /* When ":tab" was used open a new tab for a new window repeatedly. */
4762 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
4763 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 }
4765
4766 /* Remove the "lock" on the argument list. */
4767 alist_unlink(alist);
4768
4769#ifdef FEAT_AUTOCMD
4770 --autocmd_no_enter;
4771#endif
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004772 /* restore last referenced tabpage's curwin */
4773 if (last_curtab != new_curtab)
4774 {
4775 if (valid_tabpage(last_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004776 goto_tabpage_tp(last_curtab, TRUE, TRUE);
Bram Moolenaar52379ea2012-02-22 19:13:08 +01004777 if (win_valid(last_curwin))
4778 win_enter(last_curwin, FALSE);
4779 }
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004780 /* to window with first arg */
4781 if (valid_tabpage(new_curtab))
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004782 goto_tabpage_tp(new_curtab, TRUE, TRUE);
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004783 if (win_valid(new_curwin))
4784 win_enter(new_curwin, FALSE);
4785
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786#ifdef FEAT_AUTOCMD
4787 --autocmd_no_leave;
4788#endif
4789 vim_free(opened);
4790}
4791
4792# if defined(FEAT_LISTCMDS) || defined(PROTO)
4793/*
4794 * Open a window for a number of buffers.
4795 */
4796 void
4797ex_buffer_all(eap)
4798 exarg_T *eap;
4799{
4800 buf_T *buf;
4801 win_T *wp, *wpnext;
4802 int split_ret = OK;
4803 int p_ea_save;
4804 int open_wins = 0;
4805 int r;
4806 int count; /* Maximum number of windows to open. */
4807 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004808#ifdef FEAT_WINDOWS
4809 int had_tab = cmdmod.tab;
4810 tabpage_T *tpnext;
4811#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812
4813 if (eap->addr_count == 0) /* make as many windows as possible */
4814 count = 9999;
4815 else
4816 count = eap->line2; /* make as many windows as specified */
4817 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
4818 all = FALSE;
4819 else
4820 all = TRUE;
4821
4822 setpcmark();
4823
4824#ifdef FEAT_GUI
4825 need_mouse_correct = TRUE;
4826#endif
4827
4828 /*
4829 * Close superfluous windows (two windows for the same buffer).
4830 * Also close windows that are not full-width.
4831 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004832#ifdef FEAT_WINDOWS
4833 if (had_tab > 0)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004834 goto_tabpage_tp(first_tabpage, TRUE, TRUE);
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004835 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004838 tpnext = curtab->tp_next;
4839 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004841 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004842 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004843#ifdef FEAT_VERTSPLIT
4844 || ((cmdmod.split & WSP_VERT)
4845 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004846 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004847 : wp->w_width != Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848#endif
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004849#ifdef FEAT_WINDOWS
4850 || (had_tab > 0 && wp != firstwin)
4851#endif
Bram Moolenaar362ce482012-06-06 19:02:45 +02004852 ) && firstwin != lastwin
4853#ifdef FEAT_AUTOCMD
4854 && !(wp->w_closing || wp->w_buffer->b_closing)
4855#endif
4856 )
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004857 {
4858 win_close(wp, FALSE);
4859#ifdef FEAT_AUTOCMD
4860 wpnext = firstwin; /* just in case an autocommand does
4861 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004862 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004863 open_wins = 0;
4864#endif
4865 }
4866 else
4867 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004869
4870#ifdef FEAT_WINDOWS
4871 /* Without the ":tab" modifier only do the current tab page. */
4872 if (had_tab == 0 || tpnext == NULL)
4873 break;
Bram Moolenaar49e649f2013-05-06 04:50:35 +02004874 goto_tabpage_tp(tpnext, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004876#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877
4878 /*
4879 * Go through the buffer list. When a buffer doesn't have a window yet,
4880 * open one. Otherwise move the window to the right position.
4881 * Watch out for autocommands that delete buffers or windows!
4882 */
4883#ifdef FEAT_AUTOCMD
4884 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4885 ++autocmd_no_enter;
4886#endif
4887 win_enter(lastwin, FALSE);
4888#ifdef FEAT_AUTOCMD
4889 ++autocmd_no_leave;
4890#endif
4891 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
4892 {
4893 /* Check if this buffer needs a window */
4894 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
4895 continue;
4896
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004897#ifdef FEAT_WINDOWS
4898 if (had_tab != 0)
4899 {
4900 /* With the ":tab" modifier don't move the window. */
4901 if (buf->b_nwindows > 0)
4902 wp = lastwin; /* buffer has a window, skip it */
4903 else
4904 wp = NULL;
4905 }
4906 else
4907#endif
4908 {
4909 /* Check if this buffer already has a window */
4910 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4911 if (wp->w_buffer == buf)
4912 break;
4913 /* If the buffer already has a window, move it */
4914 if (wp != NULL)
4915 win_move_after(wp, curwin);
4916 }
4917
4918 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 {
4920 /* Split the window and put the buffer in it */
4921 p_ea_save = p_ea;
4922 p_ea = TRUE; /* use space from all windows */
4923 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4924 ++open_wins;
4925 p_ea = p_ea_save;
4926 if (split_ret == FAIL)
4927 continue;
4928
4929 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00004930#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 swap_exists_action = SEA_DIALOG;
4932#endif
4933 set_curbuf(buf, DOBUF_GOTO);
4934#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 if (!buf_valid(buf)) /* autocommands deleted the buffer!!! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 {
Bram Moolenaare64ac772005-12-07 20:54:59 +00004937#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004939# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 break;
4941 }
4942#endif
Bram Moolenaare64ac772005-12-07 20:54:59 +00004943#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 if (swap_exists_action == SEA_QUIT)
4945 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004946# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4947 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004948
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004949 /* Reset the error/interrupt/exception state here so that
4950 * aborting() returns FALSE when closing a window. */
4951 enter_cleanup(&cs);
4952# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004953
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004954 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 win_close(curwin, TRUE);
4956 --open_wins;
4957 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004958 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004959
4960# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4961 /* Restore the error/interrupt/exception state if not
4962 * discarded by a new aborting error, interrupt, or uncaught
4963 * exception. */
4964 leave_cleanup(&cs);
4965# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 }
4967 else
4968 handle_swap_exists(NULL);
4969#endif
4970 }
4971
4972 ui_breakcheck();
4973 if (got_int)
4974 {
4975 (void)vgetc(); /* only break the file loading, not the rest */
4976 break;
4977 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004978#ifdef FEAT_EVAL
4979 /* Autocommands deleted the buffer or aborted script processing!!! */
4980 if (aborting())
4981 break;
4982#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004983#ifdef FEAT_WINDOWS
4984 /* When ":tab" was used open a new tab for a new window repeatedly. */
4985 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
4986 cmdmod.tab = 9999;
4987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 }
4989#ifdef FEAT_AUTOCMD
4990 --autocmd_no_enter;
4991#endif
4992 win_enter(firstwin, FALSE); /* back to first window */
4993#ifdef FEAT_AUTOCMD
4994 --autocmd_no_leave;
4995#endif
4996
4997 /*
4998 * Close superfluous windows.
4999 */
5000 for (wp = lastwin; open_wins > count; )
5001 {
5002 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
5003 || autowrite(wp->w_buffer, FALSE) == OK);
5004#ifdef FEAT_AUTOCMD
5005 if (!win_valid(wp))
5006 {
5007 /* BufWrite Autocommands made the window invalid, start over */
5008 wp = lastwin;
5009 }
5010 else
5011#endif
5012 if (r)
5013 {
5014 win_close(wp, !P_HID(wp->w_buffer));
5015 --open_wins;
5016 wp = lastwin;
5017 }
5018 else
5019 {
5020 wp = wp->w_prev;
5021 if (wp == NULL)
5022 break;
5023 }
5024 }
5025}
5026# endif /* FEAT_LISTCMDS */
5027
5028#endif /* FEAT_WINDOWS */
5029
Bram Moolenaara3227e22006-03-08 21:32:40 +00005030static int chk_modeline __ARGS((linenr_T, int));
5031
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032/*
5033 * do_modelines() - process mode lines for the current file
5034 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00005035 * "flags" can be:
5036 * OPT_WINONLY only set options local to window
5037 * OPT_NOWIN don't set options local to window
5038 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 * Returns immediately if the "ml" option isn't set.
5040 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 void
Bram Moolenaara3227e22006-03-08 21:32:40 +00005042do_modelines(flags)
5043 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005045 linenr_T lnum;
5046 int nmlines;
5047 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048
5049 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5050 return;
5051
5052 /* Disallow recursive entry here. Can happen when executing a modeline
5053 * triggers an autocommand, which reloads modelines with a ":do". */
5054 if (entered)
5055 return;
5056
5057 ++entered;
5058 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5059 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005060 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 nmlines = 0;
5062
5063 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5064 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00005065 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 nmlines = 0;
5067 --entered;
5068}
5069
5070#include "version.h" /* for version number */
5071
5072/*
5073 * chk_modeline() - check a single line for a mode string
5074 * Return FAIL if an error encountered.
5075 */
5076 static int
Bram Moolenaara3227e22006-03-08 21:32:40 +00005077chk_modeline(lnum, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 linenr_T lnum;
Bram Moolenaara3227e22006-03-08 21:32:40 +00005079 int flags; /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080{
5081 char_u *s;
5082 char_u *e;
5083 char_u *linecopy; /* local copy of any modeline found */
5084 int prev;
5085 int vers;
5086 int end;
5087 int retval = OK;
5088 char_u *save_sourcing_name;
5089 linenr_T save_sourcing_lnum;
5090#ifdef FEAT_EVAL
5091 scid_T save_SID;
5092#endif
5093
5094 prev = -1;
5095 for (s = ml_get(lnum); *s != NUL; ++s)
5096 {
5097 if (prev == -1 || vim_isspace(prev))
5098 {
5099 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5100 || STRNCMP(s, "vi:", (size_t)3) == 0)
5101 break;
Bram Moolenaarc14621e2013-06-26 20:04:35 +02005102 /* Accept both "vim" and "Vim". */
5103 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 {
5105 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5106 e = s + 4;
5107 else
5108 e = s + 3;
5109 vers = getdigits(&e);
5110 if (*e == ':'
Bram Moolenaar630a7302013-06-29 15:07:22 +02005111 && (s[0] != 'V'
5112 || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 && (s[3] == ':'
5114 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5115 || (VIM_VERSION_100 < vers && s[3] == '<')
5116 || (VIM_VERSION_100 > vers && s[3] == '>')
5117 || (VIM_VERSION_100 == vers && s[3] == '=')))
5118 break;
5119 }
5120 }
5121 prev = *s;
5122 }
5123
5124 if (*s)
5125 {
5126 do /* skip over "ex:", "vi:" or "vim:" */
5127 ++s;
5128 while (s[-1] != ':');
5129
5130 s = linecopy = vim_strsave(s); /* copy the line, it will change */
5131 if (linecopy == NULL)
5132 return FAIL;
5133
5134 save_sourcing_lnum = sourcing_lnum;
5135 save_sourcing_name = sourcing_name;
5136 sourcing_lnum = lnum; /* prepare for emsg() */
5137 sourcing_name = (char_u *)"modelines";
5138
5139 end = FALSE;
5140 while (end == FALSE)
5141 {
5142 s = skipwhite(s);
5143 if (*s == NUL)
5144 break;
5145
5146 /*
5147 * Find end of set command: ':' or end of line.
5148 * Skip over "\:", replacing it with ":".
5149 */
5150 for (e = s; *e != ':' && *e != NUL; ++e)
5151 if (e[0] == '\\' && e[1] == ':')
Bram Moolenaarf2330482008-06-24 20:19:36 +00005152 STRMOVE(e, e + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 if (*e == NUL)
5154 end = TRUE;
5155
5156 /*
5157 * If there is a "set" command, require a terminating ':' and
5158 * ignore the stuff after the ':'.
5159 * "vi:set opt opt opt: foo" -- foo not interpreted
5160 * "vi:opt opt opt: foo" -- foo interpreted
5161 * Accept "se" for compatibility with Elvis.
5162 */
5163 if (STRNCMP(s, "set ", (size_t)4) == 0
5164 || STRNCMP(s, "se ", (size_t)3) == 0)
5165 {
5166 if (*e != ':') /* no terminating ':'? */
5167 break;
5168 end = TRUE;
5169 s = vim_strchr(s, ' ') + 1;
5170 }
5171 *e = NUL; /* truncate the set command */
5172
5173 if (*s != NUL) /* skip over an empty "::" */
5174 {
5175#ifdef FEAT_EVAL
5176 save_SID = current_SID;
5177 current_SID = SID_MODELINE;
5178#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00005179 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180#ifdef FEAT_EVAL
5181 current_SID = save_SID;
5182#endif
5183 if (retval == FAIL) /* stop if error found */
5184 break;
5185 }
5186 s = e + 1; /* advance to next part */
5187 }
5188
5189 sourcing_lnum = save_sourcing_lnum;
5190 sourcing_name = save_sourcing_name;
5191
5192 vim_free(linecopy);
5193 }
5194 return retval;
5195}
5196
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005197#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 int
5199read_viminfo_bufferlist(virp, writing)
5200 vir_T *virp;
5201 int writing;
5202{
5203 char_u *tab;
5204 linenr_T lnum;
5205 colnr_T col;
5206 buf_T *buf;
5207 char_u *sfname;
5208 char_u *xline;
5209
5210 /* Handle long line and escaped characters. */
5211 xline = viminfo_readstring(virp, 1, FALSE);
5212
5213 /* don't read in if there are files on the command-line or if writing: */
5214 if (xline != NULL && !writing && ARGCOUNT == 0
5215 && find_viminfo_parameter('%') != NULL)
5216 {
5217 /* Format is: <fname> Tab <lnum> Tab <col>.
5218 * Watch out for a Tab in the file name, work from the end. */
5219 lnum = 0;
5220 col = 0;
5221 tab = vim_strrchr(xline, '\t');
5222 if (tab != NULL)
5223 {
5224 *tab++ = '\0';
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005225 col = (colnr_T)atoi((char *)tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 tab = vim_strrchr(xline, '\t');
5227 if (tab != NULL)
5228 {
5229 *tab++ = '\0';
5230 lnum = atol((char *)tab);
5231 }
5232 }
5233
5234 /* Expand "~/" in the file name at "line + 1" to a full path.
5235 * Then try shortening it by comparing with the current directory */
5236 expand_env(xline, NameBuff, MAXPATHL);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005237 sfname = shorten_fname1(NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238
5239 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5240 if (buf != NULL) /* just in case... */
5241 {
5242 buf->b_last_cursor.lnum = lnum;
5243 buf->b_last_cursor.col = col;
5244 buflist_setfpos(buf, curwin, lnum, col, FALSE);
5245 }
5246 }
5247 vim_free(xline);
5248
5249 return viminfo_readline(virp);
5250}
5251
5252 void
5253write_viminfo_bufferlist(fp)
5254 FILE *fp;
5255{
5256 buf_T *buf;
5257#ifdef FEAT_WINDOWS
5258 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005259 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260#endif
5261 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005262 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263
5264 if (find_viminfo_parameter('%') == NULL)
5265 return;
5266
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005267 /* Without a number -1 is returned: do all buffers. */
5268 max_buffers = get_viminfo_parameter('%');
5269
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005271#define LINE_BUF_LEN (MAXPATHL + 40)
5272 line = alloc(LINE_BUF_LEN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 if (line == NULL)
5274 return;
5275
5276#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00005277 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 set_last_cursor(win);
5279#else
5280 set_last_cursor(curwin);
5281#endif
5282
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005283 fputs(_("\n# Buffer list:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 for (buf = firstbuf; buf != NULL ; buf = buf->b_next)
5285 {
5286 if (buf->b_fname == NULL
5287 || !buf->b_p_bl
5288#ifdef FEAT_QUICKFIX
5289 || bt_quickfix(buf)
5290#endif
5291 || removable(buf->b_ffname))
5292 continue;
5293
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00005294 if (max_buffers-- == 0)
5295 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 putc('%', fp);
5297 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
Bram Moolenaara800b422010-06-27 01:15:55 +02005298 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 (long)buf->b_last_cursor.lnum,
5300 buf->b_last_cursor.col);
5301 viminfo_writestring(fp, line);
5302 }
5303 vim_free(line);
5304}
5305#endif
5306
5307
5308/*
5309 * Return special buffer name.
5310 * Returns NULL when the buffer has a normal file name.
5311 */
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005312 char_u *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313buf_spname(buf)
5314 buf_T *buf;
5315{
5316#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
5317 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005318 {
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005319 win_T *win;
Bram Moolenaar91d8e0c2008-03-12 11:23:53 +00005320 tabpage_T *tp;
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005321
5322 /*
5323 * For location list window, w_llist_ref points to the location list.
5324 * For quickfix window, w_llist_ref is NULL.
5325 */
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005326 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005327 return (char_u *)_(msg_loclist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005328 else
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005329 return (char_u *)_(msg_qflist);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00005330 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331#endif
5332#ifdef FEAT_QUICKFIX
5333 /* There is no _file_ when 'buftype' is "nofile", b_sfname
5334 * contains the name as specified by the user */
5335 if (bt_nofile(buf))
5336 {
5337 if (buf->b_sfname != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005338 return buf->b_sfname;
5339 return (char_u *)_("[Scratch]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 }
5341#endif
5342 if (buf->b_fname == NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005343 return (char_u *)_("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344 return NULL;
5345}
5346
Bram Moolenaar4a3aef72013-07-17 19:12:57 +02005347#if (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
5348 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5349 || defined(PROTO)
5350/*
5351 * Find a window for buffer "buf".
5352 * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5353 * If not found FAIL is returned.
5354 */
5355 int
5356find_win_for_buf(buf, wp, tp)
5357 buf_T *buf;
5358 win_T **wp;
5359 tabpage_T **tp;
5360{
5361 FOR_ALL_TAB_WINDOWS(*tp, *wp)
5362 if ((*wp)->w_buffer == buf)
5363 goto win_found;
5364 return FAIL;
5365win_found:
5366 return OK;
5367}
5368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369
5370#if defined(FEAT_SIGNS) || defined(PROTO)
5371/*
5372 * Insert the sign into the signlist.
5373 */
5374 static void
5375insert_sign(buf, prev, next, id, lnum, typenr)
5376 buf_T *buf; /* buffer to store sign in */
5377 signlist_T *prev; /* previous sign entry */
5378 signlist_T *next; /* next sign entry */
5379 int id; /* sign ID */
5380 linenr_T lnum; /* line number which gets the mark */
5381 int typenr; /* typenr of sign we are adding */
5382{
5383 signlist_T *newsign;
5384
5385 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5386 if (newsign != NULL)
5387 {
5388 newsign->id = id;
5389 newsign->lnum = lnum;
5390 newsign->typenr = typenr;
5391 newsign->next = next;
5392#ifdef FEAT_NETBEANS_INTG
5393 newsign->prev = prev;
5394 if (next != NULL)
5395 next->prev = newsign;
5396#endif
5397
5398 if (prev == NULL)
5399 {
5400 /* When adding first sign need to redraw the windows to create the
5401 * column for signs. */
5402 if (buf->b_signlist == NULL)
5403 {
5404 redraw_buf_later(buf, NOT_VALID);
5405 changed_cline_bef_curs();
5406 }
5407
5408 /* first sign in signlist */
5409 buf->b_signlist = newsign;
5410 }
5411 else
5412 prev->next = newsign;
5413 }
5414}
5415
5416/*
5417 * Add the sign into the signlist. Find the right spot to do it though.
5418 */
5419 void
5420buf_addsign(buf, id, lnum, typenr)
5421 buf_T *buf; /* buffer to store sign in */
5422 int id; /* sign ID */
5423 linenr_T lnum; /* line number which gets the mark */
5424 int typenr; /* typenr of sign we are adding */
5425{
5426 signlist_T *sign; /* a sign in the signlist */
5427 signlist_T *prev; /* the previous sign */
5428
5429 prev = NULL;
5430 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5431 {
5432 if (lnum == sign->lnum && id == sign->id)
5433 {
5434 sign->typenr = typenr;
5435 return;
5436 }
5437 else if (
5438#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5439 id < 0 &&
5440#endif
5441 lnum < sign->lnum)
5442 {
5443#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5444 /* XXX - GRP: Is this because of sign slide problem? Or is it
5445 * really needed? Or is it because we allow multiple signs per
5446 * line? If so, should I add that feature to FEAT_SIGNS?
5447 */
5448 while (prev != NULL && prev->lnum == lnum)
5449 prev = prev->prev;
5450 if (prev == NULL)
5451 sign = buf->b_signlist;
5452 else
5453 sign = prev->next;
5454#endif
5455 insert_sign(buf, prev, sign, id, lnum, typenr);
5456 return;
5457 }
5458 prev = sign;
5459 }
5460#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5461 /* XXX - GRP: See previous comment */
5462 while (prev != NULL && prev->lnum == lnum)
5463 prev = prev->prev;
5464 if (prev == NULL)
5465 sign = buf->b_signlist;
5466 else
5467 sign = prev->next;
5468#endif
5469 insert_sign(buf, prev, sign, id, lnum, typenr);
5470
5471 return;
5472}
5473
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005474 linenr_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475buf_change_sign_type(buf, markId, typenr)
5476 buf_T *buf; /* buffer to store sign in */
5477 int markId; /* sign ID */
5478 int typenr; /* typenr of sign we are adding */
5479{
5480 signlist_T *sign; /* a sign in the signlist */
5481
5482 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5483 {
5484 if (sign->id == markId)
5485 {
5486 sign->typenr = typenr;
5487 return sign->lnum;
5488 }
5489 }
5490
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005491 return (linenr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492}
5493
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005494 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495buf_getsigntype(buf, lnum, type)
5496 buf_T *buf;
5497 linenr_T lnum;
5498 int type; /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
5499{
5500 signlist_T *sign; /* a sign in a b_signlist */
5501
5502 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5503 if (sign->lnum == lnum
5504 && (type == SIGN_ANY
5505# ifdef FEAT_SIGN_ICONS
5506 || (type == SIGN_ICON
5507 && sign_get_image(sign->typenr) != NULL)
5508# endif
5509 || (type == SIGN_TEXT
5510 && sign_get_text(sign->typenr) != NULL)
5511 || (type == SIGN_LINEHL
5512 && sign_get_attr(sign->typenr, TRUE) != 0)))
5513 return sign->typenr;
5514 return 0;
5515}
5516
5517
5518 linenr_T
5519buf_delsign(buf, id)
5520 buf_T *buf; /* buffer sign is stored in */
5521 int id; /* sign id */
5522{
5523 signlist_T **lastp; /* pointer to pointer to current sign */
5524 signlist_T *sign; /* a sign in a b_signlist */
5525 signlist_T *next; /* the next sign in a b_signlist */
5526 linenr_T lnum; /* line number whose sign was deleted */
5527
5528 lastp = &buf->b_signlist;
5529 lnum = 0;
5530 for (sign = buf->b_signlist; sign != NULL; sign = next)
5531 {
5532 next = sign->next;
5533 if (sign->id == id)
5534 {
5535 *lastp = next;
5536#ifdef FEAT_NETBEANS_INTG
5537 if (next != NULL)
5538 next->prev = sign->prev;
5539#endif
5540 lnum = sign->lnum;
5541 vim_free(sign);
5542 break;
5543 }
5544 else
5545 lastp = &sign->next;
5546 }
5547
5548 /* When deleted the last sign need to redraw the windows to remove the
5549 * sign column. */
5550 if (buf->b_signlist == NULL)
5551 {
5552 redraw_buf_later(buf, NOT_VALID);
5553 changed_cline_bef_curs();
5554 }
5555
5556 return lnum;
5557}
5558
5559
5560/*
5561 * Find the line number of the sign with the requested id. If the sign does
5562 * not exist, return 0 as the line number. This will still let the correct file
5563 * get loaded.
5564 */
5565 int
5566buf_findsign(buf, id)
5567 buf_T *buf; /* buffer to store sign in */
5568 int id; /* sign ID */
5569{
5570 signlist_T *sign; /* a sign in the signlist */
5571
5572 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5573 if (sign->id == id)
5574 return sign->lnum;
5575
5576 return 0;
5577}
5578
5579 int
5580buf_findsign_id(buf, lnum)
5581 buf_T *buf; /* buffer whose sign we are searching for */
5582 linenr_T lnum; /* line number of sign */
5583{
5584 signlist_T *sign; /* a sign in the signlist */
5585
5586 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5587 if (sign->lnum == lnum)
5588 return sign->id;
5589
5590 return 0;
5591}
5592
5593
5594# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5595/* see if a given type of sign exists on a specific line */
5596 int
5597buf_findsigntype_id(buf, lnum, typenr)
5598 buf_T *buf; /* buffer whose sign we are searching for */
5599 linenr_T lnum; /* line number of sign */
5600 int typenr; /* sign type number */
5601{
5602 signlist_T *sign; /* a sign in the signlist */
5603
5604 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5605 if (sign->lnum == lnum && sign->typenr == typenr)
5606 return sign->id;
5607
5608 return 0;
5609}
5610
5611
5612# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5613/* return the number of icons on the given line */
5614 int
5615buf_signcount(buf, lnum)
5616 buf_T *buf;
5617 linenr_T lnum;
5618{
5619 signlist_T *sign; /* a sign in the signlist */
5620 int count = 0;
5621
5622 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5623 if (sign->lnum == lnum)
5624 if (sign_get_image(sign->typenr) != NULL)
5625 count++;
5626
5627 return count;
5628}
5629# endif /* FEAT_SIGN_ICONS */
5630# endif /* FEAT_NETBEANS_INTG */
5631
5632
5633/*
5634 * Delete signs in buffer "buf".
5635 */
Bram Moolenaarf65e5662012-07-10 15:18:22 +02005636 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637buf_delete_signs(buf)
5638 buf_T *buf;
5639{
5640 signlist_T *next;
5641
5642 while (buf->b_signlist != NULL)
5643 {
5644 next = buf->b_signlist->next;
5645 vim_free(buf->b_signlist);
5646 buf->b_signlist = next;
5647 }
5648}
5649
5650/*
5651 * Delete all signs in all buffers.
5652 */
5653 void
5654buf_delete_all_signs()
5655{
5656 buf_T *buf; /* buffer we are checking for signs */
5657
5658 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
5659 if (buf->b_signlist != NULL)
5660 {
5661 /* Need to redraw the windows to remove the sign column. */
5662 redraw_buf_later(buf, NOT_VALID);
5663 buf_delete_signs(buf);
5664 }
5665}
5666
5667/*
5668 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
5669 */
5670 void
5671sign_list_placed(rbuf)
5672 buf_T *rbuf;
5673{
5674 buf_T *buf;
5675 signlist_T *p;
5676 char lbuf[BUFSIZ];
5677
5678 MSG_PUTS_TITLE(_("\n--- Signs ---"));
5679 msg_putchar('\n');
5680 if (rbuf == NULL)
5681 buf = firstbuf;
5682 else
5683 buf = rbuf;
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005684 while (buf != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 {
5686 if (buf->b_signlist != NULL)
5687 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005688 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
5690 msg_putchar('\n');
5691 }
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01005692 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005694 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
5696 MSG_PUTS(lbuf);
5697 msg_putchar('\n');
5698 }
5699 if (rbuf != NULL)
5700 break;
5701 buf = buf->b_next;
5702 }
5703}
5704
5705/*
5706 * Adjust a placed sign for inserted/deleted lines.
5707 */
5708 void
5709sign_mark_adjust(line1, line2, amount, amount_after)
5710 linenr_T line1;
5711 linenr_T line2;
5712 long amount;
5713 long amount_after;
5714{
5715 signlist_T *sign; /* a sign in a b_signlist */
5716
5717 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
5718 {
5719 if (sign->lnum >= line1 && sign->lnum <= line2)
5720 {
5721 if (amount == MAXLNUM)
5722 sign->lnum = line1;
5723 else
5724 sign->lnum += amount;
5725 }
5726 else if (sign->lnum > line2)
5727 sign->lnum += amount_after;
5728 }
5729}
5730#endif /* FEAT_SIGNS */
5731
5732/*
5733 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5734 */
5735 void
5736set_buflisted(on)
5737 int on;
5738{
5739 if (on != curbuf->b_p_bl)
5740 {
5741 curbuf->b_p_bl = on;
5742#ifdef FEAT_AUTOCMD
5743 if (on)
5744 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5745 else
5746 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
5747#endif
5748 }
5749}
5750
5751/*
5752 * Read the file for "buf" again and check if the contents changed.
5753 * Return TRUE if it changed or this could not be checked.
5754 */
5755 int
5756buf_contents_changed(buf)
5757 buf_T *buf;
5758{
5759 buf_T *newbuf;
5760 int differ = TRUE;
5761 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 exarg_T ea;
5764
5765 /* Allocate a buffer without putting it in the buffer list. */
5766 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5767 if (newbuf == NULL)
5768 return TRUE;
5769
5770 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5771 if (prep_exarg(&ea, buf) == FAIL)
5772 {
5773 wipe_buffer(newbuf, FALSE);
5774 return TRUE;
5775 }
5776
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 /* set curwin/curbuf to buf and save a few things */
5778 aucmd_prepbuf(&aco, newbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779
Bram Moolenaar4770d092006-01-12 23:22:24 +00005780 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 && readfile(buf->b_ffname, buf->b_fname,
5782 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5783 &ea, READ_NEW | READ_DUMMY) == OK)
5784 {
5785 /* compare the two files line by line */
5786 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5787 {
5788 differ = FALSE;
5789 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5790 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5791 {
5792 differ = TRUE;
5793 break;
5794 }
5795 }
5796 }
5797 vim_free(ea.cmd);
5798
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 /* restore curwin/curbuf and a few other things */
5800 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801
5802 if (curbuf != newbuf) /* safety check */
5803 wipe_buffer(newbuf, FALSE);
5804
5805 return differ;
5806}
5807
5808/*
5809 * Wipe out a buffer and decrement the last buffer number if it was used for
5810 * this buffer. Call this to wipe out a temp buffer that does not contain any
5811 * marks.
5812 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 void
5814wipe_buffer(buf, aucmd)
5815 buf_T *buf;
Bram Moolenaar0c094b92009-05-14 20:20:33 +00005816 int aucmd UNUSED; /* When TRUE trigger autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817{
5818 if (buf->b_fnum == top_file_num - 1)
5819 --top_file_num;
5820
5821#ifdef FEAT_AUTOCMD
5822 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005823 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824#endif
Bram Moolenaar42ec6562012-02-22 14:58:37 +01005825 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826#ifdef FEAT_AUTOCMD
5827 if (!aucmd)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00005828 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829#endif
5830}