blob: 4003b9c986f0cbcbd00ab13c8b64a5f108bbdd73 [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
28
29#include "vim.h"
30
31#if defined(FEAT_CMDL_COMPL) || defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL)
32static char_u *buflist_match __ARGS((regprog_T *prog, buf_T *buf));
33# define HAVE_BUFLIST_MATCH
34static char_u *fname_match __ARGS((regprog_T *prog, char_u *name));
35#endif
36static void buflist_setfpos __ARGS((buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options));
37static wininfo_T *find_wininfo __ARGS((buf_T *buf));
38#ifdef UNIX
39static buf_T *buflist_findname_stat __ARGS((char_u *ffname, struct stat *st));
40static int otherfile_buf __ARGS((buf_T *buf, char_u *ffname, struct stat *stp));
41static int buf_same_ino __ARGS((buf_T *buf, struct stat *stp));
42#else
43static int otherfile_buf __ARGS((buf_T *buf, char_u *ffname));
44#endif
45#ifdef FEAT_TITLE
46static int ti_change __ARGS((char_u *str, char_u **last));
47#endif
48static 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));
60static void buf_delete_signs __ARGS((buf_T *buf));
61#endif
62
63/*
64 * Open current buffer, that is: open the memfile and read the file into memory
65 * return FAIL for failure, OK otherwise
66 */
67 int
68open_buffer(read_stdin, eap)
69 int read_stdin; /* read file from stdin */
70 exarg_T *eap; /* for forced 'ff' and 'fenc' or NULL */
71{
72 int retval = OK;
73#ifdef FEAT_AUTOCMD
74 buf_T *old_curbuf;
75#endif
76
77 /*
78 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
79 * When re-entering the same buffer, it should not change, because the
80 * user may have reset the flag by hand.
81 */
82 if (readonlymode && curbuf->b_ffname != NULL
83 && (curbuf->b_flags & BF_NEVERLOADED))
84 curbuf->b_p_ro = TRUE;
85
86 if (ml_open() == FAIL)
87 {
88 /*
89 * There MUST be a memfile, otherwise we can't do anything
90 * If we can't create one for the current buffer, take another buffer
91 */
92 close_buffer(NULL, curbuf, 0);
93 for (curbuf = firstbuf; curbuf != NULL; curbuf = curbuf->b_next)
94 if (curbuf->b_ml.ml_mfp != NULL)
95 break;
96 /*
97 * if there is no memfile at all, exit
98 * This is OK, since there are no changes to loose.
99 */
100 if (curbuf == NULL)
101 {
102 EMSG(_("E82: Cannot allocate any buffer, exiting..."));
103 getout(2);
104 }
105 EMSG(_("E83: Cannot allocate buffer, using other one..."));
106 enter_buffer(curbuf);
107 return FAIL;
108 }
109
110#ifdef FEAT_AUTOCMD
111 /* The autocommands in readfile() may change the buffer, but only AFTER
112 * reading the file. */
113 old_curbuf = curbuf;
114 modified_was_set = FALSE;
115#endif
116
117 /* mark cursor position as being invalid */
118 changed_line_abv_curs();
119
120 if (curbuf->b_ffname != NULL
121#ifdef FEAT_NETBEANS_INTG
122 && netbeansReadFile
123#endif
124 )
125 {
126#ifdef FEAT_NETBEANS_INTG
127 int oldFire = netbeansFireChanges;
128
129 netbeansFireChanges = 0;
130#endif
131 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
132 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap, READ_NEW);
133#ifdef FEAT_NETBEANS_INTG
134 netbeansFireChanges = oldFire;
135#endif
136 /* Help buffer is filtered. */
137 if (curbuf->b_help)
138 fix_help_buffer();
139 }
140 else if (read_stdin)
141 {
142 int save_bin = curbuf->b_p_bin;
143 linenr_T line_count;
144
145 /*
146 * First read the text in binary mode into the buffer.
147 * Then read from that same buffer and append at the end. This makes
148 * it possible to retry when 'fileformat' or 'fileencoding' was
149 * guessed wrong.
150 */
151 curbuf->b_p_bin = TRUE;
152 retval = readfile(NULL, NULL, (linenr_T)0,
153 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW + READ_STDIN);
154 curbuf->b_p_bin = save_bin;
155 if (retval == OK)
156 {
157 line_count = curbuf->b_ml.ml_line_count;
158 retval = readfile(NULL, NULL, (linenr_T)line_count,
159 (linenr_T)0, (linenr_T)MAXLNUM, eap, READ_BUFFER);
160 if (retval == OK)
161 {
162 /* Delete the binary lines. */
163 while (--line_count >= 0)
164 ml_delete((linenr_T)1, FALSE);
165 }
166 else
167 {
168 /* Delete the converted lines. */
169 while (curbuf->b_ml.ml_line_count > line_count)
170 ml_delete(line_count, FALSE);
171 }
172 /* Put the cursor on the first line. */
173 curwin->w_cursor.lnum = 1;
174 curwin->w_cursor.col = 0;
175#ifdef FEAT_AUTOCMD
176# ifdef FEAT_EVAL
177 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
178 curbuf, &retval);
179# else
180 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
181# endif
182#endif
183 }
184 }
185
186 /* if first time loading this buffer, init b_chartab[] */
187 if (curbuf->b_flags & BF_NEVERLOADED)
188 (void)buf_init_chartab(curbuf, FALSE);
189
190 /*
191 * Set/reset the Changed flag first, autocmds may change the buffer.
192 * Apply the automatic commands, before processing the modelines.
193 * So the modelines have priority over auto commands.
194 */
195 /* When reading stdin, the buffer contents always needs writing, so set
196 * the changed flag. Unless in readonly mode: "ls | gview -".
197 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
198 if ((read_stdin && !readonlymode && !bufempty())
199#ifdef FEAT_AUTOCMD
200 || modified_was_set /* ":set modified" used in autocmd */
201# ifdef FEAT_EVAL
202 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
203# endif
204#endif
205 || (got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL))
206 changed();
207 else if (retval != FAIL)
208 unchanged(curbuf, FALSE);
209 save_file_ff(curbuf); /* keep this fileformat */
210
211 /* require "!" to overwrite the file, because it wasn't read completely */
212#ifdef FEAT_EVAL
213 if (aborting())
214#else
215 if (got_int)
216#endif
217 curbuf->b_flags |= BF_READERR;
218
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000219#ifdef FEAT_FOLDING
220 /* Need to update automatic folding. Do this before the autocommands,
221 * they may use the fold info. */
222 foldUpdateAll(curwin);
223#endif
224
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225#ifdef FEAT_AUTOCMD
226 /* need to set w_topline, unless some autocommand already did that. */
227 if (!(curwin->w_valid & VALID_TOPLINE))
228 {
229 curwin->w_topline = 1;
230# ifdef FEAT_DIFF
231 curwin->w_topfill = 0;
232# endif
233 }
234# ifdef FEAT_EVAL
235 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
236# else
237 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
238# endif
239#endif
240
241 if (retval != FAIL)
242 {
243#ifdef FEAT_AUTOCMD
244 /*
245 * The autocommands may have changed the current buffer. Apply the
246 * modelines to the correct buffer, if it still exists and is loaded.
247 */
248 if (buf_valid(old_curbuf) && old_curbuf->b_ml.ml_mfp != NULL)
249 {
250 aco_save_T aco;
251
252 /* Go to the buffer that was opened. */
253 aucmd_prepbuf(&aco, old_curbuf);
254#endif
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000255 do_modelines(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
257
258#ifdef FEAT_AUTOCMD
259# ifdef FEAT_EVAL
260 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
261 &retval);
262# else
263 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
264# endif
265
266 /* restore curwin/curbuf and a few other things */
267 aucmd_restbuf(&aco);
268 }
269#endif
270 }
271
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 return retval;
273}
274
275/*
276 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
277 */
278 int
279buf_valid(buf)
280 buf_T *buf;
281{
282 buf_T *bp;
283
284 for (bp = firstbuf; bp != NULL; bp = bp->b_next)
285 if (bp == buf)
286 return TRUE;
287 return FALSE;
288}
289
290/*
291 * Close the link to a buffer.
292 * "action" is used when there is no longer a window for the buffer.
293 * It can be:
294 * 0 buffer becomes hidden
295 * DOBUF_UNLOAD buffer is unloaded
296 * DOBUF_DELETE buffer is unloaded and removed from buffer list
297 * DOBUF_WIPE buffer is unloaded and really deleted
298 * When doing all but the first one on the current buffer, the caller should
299 * get a new buffer very soon!
300 *
301 * The 'bufhidden' option can force freeing and deleting.
302 */
303 void
304close_buffer(win, buf, action)
305 win_T *win; /* if not NULL, set b_last_cursor */
306 buf_T *buf;
307 int action;
308{
309#ifdef FEAT_AUTOCMD
310 int is_curbuf;
311 int nwindows = buf->b_nwindows;
312#endif
313 int unload_buf = (action != 0);
314 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
315 int wipe_buf = (action == DOBUF_WIPE);
316
317#ifdef FEAT_QUICKFIX
318 /*
319 * Force unloading or deleting when 'bufhidden' says so.
320 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
321 * "hide" (otherwise we could never free or delete a buffer).
322 */
323 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
324 {
325 del_buf = TRUE;
326 unload_buf = TRUE;
327 }
328 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
329 {
330 del_buf = TRUE;
331 unload_buf = TRUE;
332 wipe_buf = TRUE;
333 }
334 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
335 unload_buf = TRUE;
336#endif
337
338 if (win != NULL)
339 {
340 /* Set b_last_cursor when closing the last window for the buffer.
341 * Remember the last cursor position and window options of the buffer.
342 * This used to be only for the current window, but then options like
343 * 'foldmethod' may be lost with a ":only" command. */
344 if (buf->b_nwindows == 1)
345 set_last_cursor(win);
346 buflist_setfpos(buf, win,
347 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
348 win->w_cursor.col, TRUE);
349 }
350
351#ifdef FEAT_AUTOCMD
352 /* When the buffer is no longer in a window, trigger BufWinLeave */
353 if (buf->b_nwindows == 1)
354 {
355 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
356 FALSE, buf);
357 if (!buf_valid(buf)) /* autocommands may delete the buffer */
358 return;
359
360 /* When the buffer becomes hidden, but is not unloaded, trigger
361 * BufHidden */
362 if (!unload_buf)
363 {
364 apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
365 FALSE, buf);
366 if (!buf_valid(buf)) /* autocmds may delete the buffer */
367 return;
368 }
369# ifdef FEAT_EVAL
370 if (aborting()) /* autocmds may abort script processing */
371 return;
372# endif
373 }
374 nwindows = buf->b_nwindows;
375#endif
376
377 /* decrease the link count from windows (unless not in any window) */
378 if (buf->b_nwindows > 0)
379 --buf->b_nwindows;
380
381 /* Return when a window is displaying the buffer or when it's not
382 * unloaded. */
383 if (buf->b_nwindows > 0 || !unload_buf)
384 {
385 if (buf == curbuf)
386 u_sync(); /* sync undo before going to another buffer */
387 return;
388 }
389
390 /* Always remove the buffer when there is no file name. */
391 if (buf->b_ffname == NULL)
392 del_buf = TRUE;
393
394 /*
395 * Free all things allocated for this buffer.
396 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
397 */
398#ifdef FEAT_AUTOCMD
399 /* Remember if we are closing the current buffer. Restore the number of
400 * windows, so that autocommands in buf_freeall() don't get confused. */
401 is_curbuf = (buf == curbuf);
402 buf->b_nwindows = nwindows;
403#endif
404
405 buf_freeall(buf, del_buf, wipe_buf);
406
407#ifdef FEAT_AUTOCMD
408 /* Autocommands may have deleted the buffer. */
409 if (!buf_valid(buf))
410 return;
411# ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000412 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 return;
414# endif
415
416 /* Autocommands may have opened or closed windows for this buffer.
417 * Decrement the count for the close we do here. */
418 if (buf->b_nwindows > 0)
419 --buf->b_nwindows;
420
421 /*
422 * It's possible that autocommands change curbuf to the one being deleted.
423 * This might cause the previous curbuf to be deleted unexpectedly. But
424 * in some cases it's OK to delete the curbuf, because a new one is
425 * obtained anyway. Therefore only return if curbuf changed to the
426 * deleted buffer.
427 */
428 if (buf == curbuf && !is_curbuf)
429 return;
430#endif
431
432#ifdef FEAT_NETBEANS_INTG
433 if (usingNetbeans)
434 netbeans_file_closed(buf);
435#endif
436#if defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP)
437 /* Change directories when the acd option is set on. */
438 if (p_acd && curbuf->b_ffname != NULL
439 && vim_chdirfile(curbuf->b_ffname) == OK)
440 shorten_fnames(TRUE);
441#endif
442
443 /*
444 * Remove the buffer from the list.
445 */
446 if (wipe_buf)
447 {
448#ifdef FEAT_SUN_WORKSHOP
449 if (usingSunWorkShop)
450 workshop_file_closed_lineno((char *)buf->b_ffname,
451 (int)buf->b_last_cursor.lnum);
452#endif
453 vim_free(buf->b_ffname);
454 vim_free(buf->b_sfname);
455 if (buf->b_prev == NULL)
456 firstbuf = buf->b_next;
457 else
458 buf->b_prev->b_next = buf->b_next;
459 if (buf->b_next == NULL)
460 lastbuf = buf->b_prev;
461 else
462 buf->b_next->b_prev = buf->b_prev;
463 free_buffer(buf);
464 }
465 else
466 {
467 if (del_buf)
468 {
469 /* Free all internal variables and reset option values, to make
470 * ":bdel" compatible with Vim 5.7. */
471 free_buffer_stuff(buf, TRUE);
472
473 /* Make it look like a new buffer. */
474 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
475
476 /* Init the options when loaded again. */
477 buf->b_p_initialized = FALSE;
478 }
479 buf_clear_file(buf);
480 if (del_buf)
481 buf->b_p_bl = FALSE;
482 }
483}
484
485/*
486 * Make buffer not contain a file.
487 */
488 void
489buf_clear_file(buf)
490 buf_T *buf;
491{
492 buf->b_ml.ml_line_count = 1;
493 unchanged(buf, TRUE);
494#ifndef SHORT_FNAME
495 buf->b_shortname = FALSE;
496#endif
497 buf->b_p_eol = TRUE;
498 buf->b_start_eol = TRUE;
499#ifdef FEAT_MBYTE
500 buf->b_p_bomb = FALSE;
501#endif
502 buf->b_ml.ml_mfp = NULL;
503 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
504#ifdef FEAT_NETBEANS_INTG
505 netbeans_deleted_all_lines(buf);
506 netbeansOpenFile = 0; /* reset in netbeans_file_opened() */
507#endif
508}
509
510/*
511 * buf_freeall() - free all things allocated for a buffer that are related to
512 * the file.
513 */
514/*ARGSUSED*/
515 void
516buf_freeall(buf, del_buf, wipe_buf)
517 buf_T *buf;
518 int del_buf; /* buffer is going to be deleted */
519 int wipe_buf; /* buffer is going to be wiped out */
520{
521#ifdef FEAT_AUTOCMD
522 int is_curbuf = (buf == curbuf);
523
524 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname, FALSE, buf);
525 if (!buf_valid(buf)) /* autocommands may delete the buffer */
526 return;
527 if (del_buf && buf->b_p_bl)
528 {
529 apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname, FALSE, buf);
530 if (!buf_valid(buf)) /* autocommands may delete the buffer */
531 return;
532 }
533 if (wipe_buf)
534 {
535 apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
536 FALSE, buf);
537 if (!buf_valid(buf)) /* autocommands may delete the buffer */
538 return;
539 }
540# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000541 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 return;
543# endif
544
545 /*
546 * It's possible that autocommands change curbuf to the one being deleted.
547 * This might cause curbuf to be deleted unexpectedly. But in some cases
548 * it's OK to delete the curbuf, because a new one is obtained anyway.
549 * Therefore only return if curbuf changed to the deleted buffer.
550 */
551 if (buf == curbuf && !is_curbuf)
552 return;
553#endif
554#ifdef FEAT_DIFF
555 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
556#endif
557#ifdef FEAT_TCL
558 tcl_buffer_free(buf);
559#endif
560 u_blockfree(buf); /* free the memory allocated for undo */
561 ml_close(buf, TRUE); /* close and delete the memline/memfile */
562 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
563 u_clearall(buf); /* reset all undo information */
564#ifdef FEAT_SYN_HL
565 syntax_clear(buf); /* reset syntax info */
566#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000567 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568}
569
570/*
571 * Free a buffer structure and the things it contains related to the buffer
572 * itself (not the file, that must have been done already).
573 */
574 static void
575free_buffer(buf)
576 buf_T *buf;
577{
578 free_buffer_stuff(buf, TRUE);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000579#ifdef FEAT_MZSCHEME
580 mzscheme_buffer_free(buf);
581#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582#ifdef FEAT_PERL
583 perl_buf_free(buf);
584#endif
585#ifdef FEAT_PYTHON
586 python_buffer_free(buf);
587#endif
588#ifdef FEAT_RUBY
589 ruby_buffer_free(buf);
590#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000591#ifdef FEAT_AUTOCMD
592 aubuflocal_remove(buf);
593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 vim_free(buf);
595}
596
597/*
598 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
599 */
600 static void
601free_buffer_stuff(buf, free_options)
602 buf_T *buf;
603 int free_options; /* free options as well */
604{
605 if (free_options)
606 {
607 clear_wininfo(buf); /* including window-local options */
608 free_buf_options(buf, TRUE);
609 }
610#ifdef FEAT_EVAL
611 var_clear(&buf->b_vars); /* free all internal variables */
612#endif
613#ifdef FEAT_USR_CMDS
614 uc_clear(&buf->b_ucmds); /* clear local user commands */
615#endif
616#ifdef FEAT_SIGNS
617 buf_delete_signs(buf); /* delete any signs */
618#endif
619#ifdef FEAT_LOCALMAP
620 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
621 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
622#endif
623#ifdef FEAT_MBYTE
624 vim_free(buf->b_start_fenc);
625 buf->b_start_fenc = NULL;
626#endif
627}
628
629/*
630 * Free the b_wininfo list for buffer "buf".
631 */
632 static void
633clear_wininfo(buf)
634 buf_T *buf;
635{
636 wininfo_T *wip;
637
638 while (buf->b_wininfo != NULL)
639 {
640 wip = buf->b_wininfo;
641 buf->b_wininfo = wip->wi_next;
642 if (wip->wi_optset)
643 {
644 clear_winopt(&wip->wi_opt);
645#ifdef FEAT_FOLDING
646 deleteFoldRecurse(&wip->wi_folds);
647#endif
648 }
649 vim_free(wip);
650 }
651}
652
653#if defined(FEAT_LISTCMDS) || defined(PROTO)
654/*
655 * Go to another buffer. Handles the result of the ATTENTION dialog.
656 */
657 void
658goto_buffer(eap, start, dir, count)
659 exarg_T *eap;
660 int start;
661 int dir;
662 int count;
663{
664# if defined(FEAT_WINDOWS) \
665 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
666 buf_T *old_curbuf = curbuf;
667
668 swap_exists_action = SEA_DIALOG;
669# endif
670 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
671 start, dir, count, eap->forceit);
672# if defined(FEAT_WINDOWS) \
673 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
674 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
675 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000676# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
677 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000678
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000679 /* Reset the error/interrupt/exception state here so that
680 * aborting() returns FALSE when closing a window. */
681 enter_cleanup(&cs);
682# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000683
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000684 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 win_close(curwin, TRUE);
686 swap_exists_action = SEA_NONE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000687
688# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
689 /* Restore the error/interrupt/exception state if not discarded by a
690 * new aborting error, interrupt, or uncaught exception. */
691 leave_cleanup(&cs);
692# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 }
694 else
695 handle_swap_exists(old_curbuf);
696# endif
697}
698#endif
699
700#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
701/*
702 * Handle the situation of swap_exists_action being set.
703 * It is allowed for "old_curbuf" to be NULL or invalid.
704 */
705 void
706handle_swap_exists(old_curbuf)
707 buf_T *old_curbuf;
708{
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000709# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
710 cleanup_T cs;
711# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000712
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 if (swap_exists_action == SEA_QUIT)
714 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000715# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
716 /* Reset the error/interrupt/exception state here so that
717 * aborting() returns FALSE when closing a buffer. */
718 enter_cleanup(&cs);
719# endif
720
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 /* User selected Quit at ATTENTION prompt. Go back to previous
722 * buffer. If that buffer is gone or the same as the current one,
723 * open a new, empty buffer. */
724 swap_exists_action = SEA_NONE; /* don't want it again */
725 close_buffer(curwin, curbuf, DOBUF_UNLOAD);
726 if (!buf_valid(old_curbuf) || old_curbuf == curbuf)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000727 old_curbuf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 if (old_curbuf != NULL)
729 enter_buffer(old_curbuf);
730 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000731
732# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
733 /* Restore the error/interrupt/exception state if not discarded by a
734 * new aborting error, interrupt, or uncaught exception. */
735 leave_cleanup(&cs);
736# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 }
738 else if (swap_exists_action == SEA_RECOVER)
739 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000740# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
741 /* Reset the error/interrupt/exception state here so that
742 * aborting() returns FALSE when closing a buffer. */
743 enter_cleanup(&cs);
744# endif
745
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 /* User selected Recover at ATTENTION prompt. */
747 msg_scroll = TRUE;
748 ml_recover();
749 MSG_PUTS("\n"); /* don't overwrite the last message */
750 cmdline_row = msg_row;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000751 do_modelines(FALSE);
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000752
753# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
754 /* Restore the error/interrupt/exception state if not discarded by a
755 * new aborting error, interrupt, or uncaught exception. */
756 leave_cleanup(&cs);
757# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 }
759 swap_exists_action = SEA_NONE;
760}
761#endif
762
763#if defined(FEAT_LISTCMDS) || defined(PROTO)
764/*
765 * do_bufdel() - delete or unload buffer(s)
766 *
767 * addr_count == 0: ":bdel" - delete current buffer
768 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
769 * buffer "end_bnr", then any other arguments.
770 * addr_count == 2: ":N,N bdel" - delete buffers in range
771 *
772 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
773 * DOBUF_DEL (":bdel")
774 *
775 * Returns error message or NULL
776 */
777 char_u *
778do_bufdel(command, arg, addr_count, start_bnr, end_bnr, forceit)
779 int command;
780 char_u *arg; /* pointer to extra arguments */
781 int addr_count;
782 int start_bnr; /* first buffer number in a range */
783 int end_bnr; /* buffer nr or last buffer nr in a range */
784 int forceit;
785{
786 int do_current = 0; /* delete current buffer? */
787 int deleted = 0; /* number of buffers deleted */
788 char_u *errormsg = NULL; /* return value */
789 int bnr; /* buffer number */
790 char_u *p;
791
792#ifdef FEAT_NETBEANS_INTG
793 netbeansCloseFile = 1;
794#endif
795 if (addr_count == 0)
796 {
797 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
798 }
799 else
800 {
801 if (addr_count == 2)
802 {
803 if (*arg) /* both range and argument is not allowed */
804 return (char_u *)_(e_trailing);
805 bnr = start_bnr;
806 }
807 else /* addr_count == 1 */
808 bnr = end_bnr;
809
810 for ( ;!got_int; ui_breakcheck())
811 {
812 /*
813 * delete the current buffer last, otherwise when the
814 * current buffer is deleted, the next buffer becomes
815 * the current one and will be loaded, which may then
816 * also be deleted, etc.
817 */
818 if (bnr == curbuf->b_fnum)
819 do_current = bnr;
820 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
821 forceit) == OK)
822 ++deleted;
823
824 /*
825 * find next buffer number to delete/unload
826 */
827 if (addr_count == 2)
828 {
829 if (++bnr > end_bnr)
830 break;
831 }
832 else /* addr_count == 1 */
833 {
834 arg = skipwhite(arg);
835 if (*arg == NUL)
836 break;
837 if (!VIM_ISDIGIT(*arg))
838 {
839 p = skiptowhite_esc(arg);
840 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE, FALSE);
841 if (bnr < 0) /* failed */
842 break;
843 arg = p;
844 }
845 else
846 bnr = getdigits(&arg);
847 }
848 }
849 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
850 FORWARD, do_current, forceit) == OK)
851 ++deleted;
852
853 if (deleted == 0)
854 {
855 if (command == DOBUF_UNLOAD)
856 sprintf((char *)IObuff, _("E515: No buffers were unloaded"));
857 else if (command == DOBUF_DEL)
858 sprintf((char *)IObuff, _("E516: No buffers were deleted"));
859 else
860 sprintf((char *)IObuff, _("E517: No buffers were wiped out"));
861 errormsg = IObuff;
862 }
863 else if (deleted >= p_report)
864 {
865 if (command == DOBUF_UNLOAD)
866 {
867 if (deleted == 1)
868 MSG(_("1 buffer unloaded"));
869 else
870 smsg((char_u *)_("%d buffers unloaded"), deleted);
871 }
872 else if (command == DOBUF_DEL)
873 {
874 if (deleted == 1)
875 MSG(_("1 buffer deleted"));
876 else
877 smsg((char_u *)_("%d buffers deleted"), deleted);
878 }
879 else
880 {
881 if (deleted == 1)
882 MSG(_("1 buffer wiped out"));
883 else
884 smsg((char_u *)_("%d buffers wiped out"), deleted);
885 }
886 }
887 }
888
889#ifdef FEAT_NETBEANS_INTG
890 netbeansCloseFile = 0;
891#endif
892
893 return errormsg;
894}
895
896/*
897 * Implementation of the commands for the buffer list.
898 *
899 * action == DOBUF_GOTO go to specified buffer
900 * action == DOBUF_SPLIT split window and go to specified buffer
901 * action == DOBUF_UNLOAD unload specified buffer(s)
902 * action == DOBUF_DEL delete specified buffer(s) from buffer list
903 * action == DOBUF_WIPE delete specified buffer(s) really
904 *
905 * start == DOBUF_CURRENT go to "count" buffer from current buffer
906 * start == DOBUF_FIRST go to "count" buffer from first buffer
907 * start == DOBUF_LAST go to "count" buffer from last buffer
908 * start == DOBUF_MOD go to "count" modified buffer from current buffer
909 *
910 * Return FAIL or OK.
911 */
912 int
913do_buffer(action, start, dir, count, forceit)
914 int action;
915 int start;
916 int dir; /* FORWARD or BACKWARD */
917 int count; /* buffer number or number of buffers */
918 int forceit; /* TRUE for :...! */
919{
920 buf_T *buf;
921 buf_T *bp;
922 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
923 || action == DOBUF_WIPE);
924
925 switch (start)
926 {
927 case DOBUF_FIRST: buf = firstbuf; break;
928 case DOBUF_LAST: buf = lastbuf; break;
929 default: buf = curbuf; break;
930 }
931 if (start == DOBUF_MOD) /* find next modified buffer */
932 {
933 while (count-- > 0)
934 {
935 do
936 {
937 buf = buf->b_next;
938 if (buf == NULL)
939 buf = firstbuf;
940 }
941 while (buf != curbuf && !bufIsChanged(buf));
942 }
943 if (!bufIsChanged(buf))
944 {
945 EMSG(_("E84: No modified buffer found"));
946 return FAIL;
947 }
948 }
949 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
950 {
951 while (buf != NULL && buf->b_fnum != count)
952 buf = buf->b_next;
953 }
954 else
955 {
956 bp = NULL;
957 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
958 {
959 /* remember the buffer where we start, we come back there when all
960 * buffers are unlisted. */
961 if (bp == NULL)
962 bp = buf;
963 if (dir == FORWARD)
964 {
965 buf = buf->b_next;
966 if (buf == NULL)
967 buf = firstbuf;
968 }
969 else
970 {
971 buf = buf->b_prev;
972 if (buf == NULL)
973 buf = lastbuf;
974 }
975 /* don't count unlisted buffers */
976 if (unload || buf->b_p_bl)
977 {
978 --count;
979 bp = NULL; /* use this buffer as new starting point */
980 }
981 if (bp == buf)
982 {
983 /* back where we started, didn't find anything. */
984 EMSG(_("E85: There is no listed buffer"));
985 return FAIL;
986 }
987 }
988 }
989
990 if (buf == NULL) /* could not find it */
991 {
992 if (start == DOBUF_FIRST)
993 {
994 /* don't warn when deleting */
995 if (!unload)
996 EMSGN(_("E86: Buffer %ld does not exist"), count);
997 }
998 else if (dir == FORWARD)
999 EMSG(_("E87: Cannot go beyond last buffer"));
1000 else
1001 EMSG(_("E88: Cannot go before first buffer"));
1002 return FAIL;
1003 }
1004
1005#ifdef FEAT_GUI
1006 need_mouse_correct = TRUE;
1007#endif
1008
1009#ifdef FEAT_LISTCMDS
1010 /*
1011 * delete buffer buf from memory and/or the list
1012 */
1013 if (unload)
1014 {
1015 int forward;
1016 int retval;
1017
1018 /* When unloading or deleting a buffer that's already unloaded and
1019 * unlisted: fail silently. */
1020 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1021 return FAIL;
1022
1023 if (!forceit && bufIsChanged(buf))
1024 {
1025#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1026 if ((p_confirm || cmdmod.confirm) && p_write)
1027 {
1028 dialog_changed(buf, FALSE);
1029# ifdef FEAT_AUTOCMD
1030 if (!buf_valid(buf))
1031 /* Autocommand deleted buffer, oops! It's not changed
1032 * now. */
1033 return FAIL;
1034# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001035 /* If it's still changed fail silently, the dialog already
1036 * mentioned why it fails. */
1037 if (bufIsChanged(buf))
1038 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001040 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041#endif
1042 {
1043 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1044 buf->b_fnum);
1045 return FAIL;
1046 }
1047 }
1048
1049 /*
1050 * If deleting the last (listed) buffer, make it empty.
1051 * The last (listed) buffer cannot be unloaded.
1052 */
1053 for (bp = firstbuf; bp != NULL; bp = bp->b_next)
1054 if (bp->b_p_bl && bp != buf)
1055 break;
1056 if (bp == NULL && buf == curbuf)
1057 {
1058 if (action == DOBUF_UNLOAD)
1059 {
1060 EMSG(_("E90: Cannot unload last buffer"));
1061 return FAIL;
1062 }
1063
1064 /* Close any other windows on this buffer, then make it empty. */
1065#ifdef FEAT_WINDOWS
1066 {
1067 win_T *wp, *nextwp;
1068
1069 for (wp = firstwin; wp != NULL; wp = nextwp)
1070 {
1071 nextwp = wp->w_next;
1072 if (wp != curwin && wp->w_buffer == buf)
1073 {
1074 /* Start all over, autocommands may change the window
1075 * layout. */
1076 nextwp = firstwin;
1077 win_close(wp, FALSE);
1078 }
1079 }
1080 }
1081#endif
1082 setpcmark();
1083 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1084 forceit ? ECMD_FORCEIT : 0);
1085
1086 /*
1087 * do_ecmd() may create a new buffer, then we have to delete
1088 * the old one. But do_ecmd() may have done that already, check
1089 * if the buffer still exists.
1090 */
1091 if (buf != curbuf && buf_valid(buf) && buf->b_nwindows == 0)
1092 close_buffer(NULL, buf, action);
1093 return retval;
1094 }
1095
1096#ifdef FEAT_WINDOWS
1097 /*
1098 * If the deleted buffer is the current one, close the current window
1099 * (unless it's the only window).
1100 */
1101 while (buf == curbuf && firstwin != lastwin)
1102 win_close(curwin, FALSE);
1103#endif
1104
1105 /*
1106 * If the buffer to be deleted is not the current one, delete it here.
1107 */
1108 if (buf != curbuf)
1109 {
1110#ifdef FEAT_WINDOWS
1111 close_windows(buf);
1112#endif
1113 if (buf != curbuf && buf_valid(buf) && buf->b_nwindows <= 0)
1114 close_buffer(NULL, buf, action);
1115 return OK;
1116 }
1117
1118 /*
1119 * Deleting the current buffer: Need to find another buffer to go to.
1120 * There must be another, otherwise it would have been handled above.
1121 * First use au_new_curbuf, if it is valid.
1122 * Then prefer the buffer we most recently visited.
1123 * Else try to find one that is loaded, after the current buffer,
1124 * then before the current buffer.
1125 * Finally use any buffer.
1126 */
1127 buf = NULL; /* selected buffer */
1128 bp = NULL; /* used when no loaded buffer found */
1129#ifdef FEAT_AUTOCMD
1130 if (au_new_curbuf != NULL && buf_valid(au_new_curbuf))
1131 buf = au_new_curbuf;
1132# ifdef FEAT_JUMPLIST
1133 else
1134# endif
1135#endif
1136#ifdef FEAT_JUMPLIST
1137 if (curwin->w_jumplistlen > 0)
1138 {
1139 int jumpidx;
1140
1141 jumpidx = curwin->w_jumplistidx - 1;
1142 if (jumpidx < 0)
1143 jumpidx = curwin->w_jumplistlen - 1;
1144
1145 forward = jumpidx;
1146 while (jumpidx != curwin->w_jumplistidx)
1147 {
1148 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1149 if (buf != NULL)
1150 {
1151 if (buf == curbuf || !buf->b_p_bl)
1152 buf = NULL; /* skip current and unlisted bufs */
1153 else if (buf->b_ml.ml_mfp == NULL)
1154 {
1155 /* skip unloaded buf, but may keep it for later */
1156 if (bp == NULL)
1157 bp = buf;
1158 buf = NULL;
1159 }
1160 }
1161 if (buf != NULL) /* found a valid buffer: stop searching */
1162 break;
1163 /* advance to older entry in jump list */
1164 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1165 break;
1166 if (--jumpidx < 0)
1167 jumpidx = curwin->w_jumplistlen - 1;
1168 if (jumpidx == forward) /* List exhausted for sure */
1169 break;
1170 }
1171 }
1172#endif
1173
1174 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1175 {
1176 forward = TRUE;
1177 buf = curbuf->b_next;
1178 for (;;)
1179 {
1180 if (buf == NULL)
1181 {
1182 if (!forward) /* tried both directions */
1183 break;
1184 buf = curbuf->b_prev;
1185 forward = FALSE;
1186 continue;
1187 }
1188 /* in non-help buffer, try to skip help buffers, and vv */
1189 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1190 {
1191 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1192 break;
1193 if (bp == NULL) /* remember unloaded buf for later */
1194 bp = buf;
1195 }
1196 if (forward)
1197 buf = buf->b_next;
1198 else
1199 buf = buf->b_prev;
1200 }
1201 }
1202 if (buf == NULL) /* No loaded buffer, use unloaded one */
1203 buf = bp;
1204 if (buf == NULL) /* No loaded buffer, find listed one */
1205 {
1206 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1207 if (buf->b_p_bl && buf != curbuf)
1208 break;
1209 }
1210 if (buf == NULL) /* Still no buffer, just take one */
1211 {
1212 if (curbuf->b_next != NULL)
1213 buf = curbuf->b_next;
1214 else
1215 buf = curbuf->b_prev;
1216 }
1217 }
1218
1219 /*
1220 * make buf current buffer
1221 */
1222 if (action == DOBUF_SPLIT) /* split window first */
1223 {
1224# ifdef FEAT_WINDOWS
1225 /* jump to first window containing buf if one exists ("useopen") */
1226 if (vim_strchr(p_swb, 'u') && buf_jump_open_win(buf))
1227 return OK;
1228 if (win_split(0, 0) == FAIL)
1229# endif
1230 return FAIL;
1231 }
1232#endif
1233
1234 /* go to current buffer - nothing to do */
1235 if (buf == curbuf)
1236 return OK;
1237
1238 /*
1239 * Check if the current buffer may be abandoned.
1240 */
1241 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1242 {
1243#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1244 if ((p_confirm || cmdmod.confirm) && p_write)
1245 {
1246 dialog_changed(curbuf, FALSE);
1247# ifdef FEAT_AUTOCMD
1248 if (!buf_valid(buf))
1249 /* Autocommand deleted buffer, oops! */
1250 return FAIL;
1251# endif
1252 }
1253 if (bufIsChanged(curbuf))
1254#endif
1255 {
1256 EMSG(_(e_nowrtmsg));
1257 return FAIL;
1258 }
1259 }
1260
1261 /* Go to the other buffer. */
1262 set_curbuf(buf, action);
1263
1264#if defined(FEAT_LISTCMDS) && defined(FEAT_SCROLLBIND)
1265 if (action == DOBUF_SPLIT)
1266 curwin->w_p_scb = FALSE; /* reset 'scrollbind' */
1267#endif
1268
1269#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1270 if (aborting()) /* autocmds may abort script processing */
1271 return FAIL;
1272#endif
1273
1274 return OK;
1275}
1276
1277#endif /* FEAT_LISTCMDS */
1278
1279/*
1280 * Set current buffer to "buf". Executes autocommands and closes current
1281 * buffer. "action" tells how to close the current buffer:
1282 * DOBUF_GOTO free or hide it
1283 * DOBUF_SPLIT nothing
1284 * DOBUF_UNLOAD unload it
1285 * DOBUF_DEL delete it
1286 * DOBUF_WIPE wipe it out
1287 */
1288 void
1289set_curbuf(buf, action)
1290 buf_T *buf;
1291 int action;
1292{
1293 buf_T *prevbuf;
1294 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1295 || action == DOBUF_WIPE);
1296
1297 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001298 if (!cmdmod.keepalt)
1299 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 buflist_altfpos(); /* remember curpos */
1301
1302#ifdef FEAT_VISUAL
1303 /* Don't restart Select mode after switching to another buffer. */
1304 VIsual_reselect = FALSE;
1305#endif
1306
1307 /* close_windows() or apply_autocmds() may change curbuf */
1308 prevbuf = curbuf;
1309
1310#ifdef FEAT_AUTOCMD
1311 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
1312# ifdef FEAT_EVAL
1313 if (buf_valid(prevbuf) && !aborting())
1314# else
1315 if (buf_valid(prevbuf))
1316# endif
1317#endif
1318 {
1319#ifdef FEAT_WINDOWS
1320 if (unload)
1321 close_windows(prevbuf);
1322#endif
1323#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1324 if (buf_valid(prevbuf) && !aborting())
1325#else
1326 if (buf_valid(prevbuf))
1327#endif
1328 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1329 unload ? action : (action == DOBUF_GOTO
1330 && !P_HID(prevbuf)
1331 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0);
1332 }
1333#ifdef FEAT_AUTOCMD
1334# ifdef FEAT_EVAL
1335 /* An autocommand may have deleted buf or aborted the script processing! */
1336 if (buf_valid(buf) && !aborting())
1337# else
1338 if (buf_valid(buf)) /* an autocommand may have deleted buf! */
1339# endif
1340#endif
1341 enter_buffer(buf);
1342}
1343
1344/*
1345 * Enter a new current buffer.
1346 * Old curbuf must have been abandoned already!
1347 */
1348 void
1349enter_buffer(buf)
1350 buf_T *buf;
1351{
1352 /* Copy buffer and window local option values. Not for a help buffer. */
1353 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1354 if (!buf->b_help)
1355 get_winopts(buf);
1356#ifdef FEAT_FOLDING
1357 else
1358 /* Remove all folds in the window. */
1359 clearFolding(curwin);
1360 foldUpdateAll(curwin); /* update folds (later). */
1361#endif
1362
1363 /* Get the buffer in the current window. */
1364 curwin->w_buffer = buf;
1365 curbuf = buf;
1366 ++curbuf->b_nwindows;
1367
1368#ifdef FEAT_DIFF
1369 diff_new_buffer();
1370#endif
1371
1372 /* Cursor on first line by default. */
1373 curwin->w_cursor.lnum = 1;
1374 curwin->w_cursor.col = 0;
1375#ifdef FEAT_VIRTUALEDIT
1376 curwin->w_cursor.coladd = 0;
1377#endif
1378 curwin->w_set_curswant = TRUE;
1379
1380 /* Make sure the buffer is loaded. */
1381 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001382 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001383#ifdef FEAT_AUTOCMD
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001384 /* If there is no filetype, allow for detecting one. Esp. useful for
1385 * ":ball" used in a autocommand. If there already is a filetype we
1386 * might prefer to keep it. */
1387 if (*curbuf->b_p_ft == NUL)
1388 did_filetype = FALSE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001389#endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001390
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 open_buffer(FALSE, NULL);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001392 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 else
1394 {
1395 need_fileinfo = TRUE; /* display file info after redraw */
1396 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1397#ifdef FEAT_AUTOCMD
1398 curwin->w_topline = 1;
1399# ifdef FEAT_DIFF
1400 curwin->w_topfill = 0;
1401# endif
1402 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1403 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1404#endif
1405 }
1406
1407 /* If autocommands did not change the cursor position, restore cursor lnum
1408 * and possibly cursor col. */
1409 if (curwin->w_cursor.lnum == 1 && inindent(0))
1410 buflist_getfpos();
1411
1412 check_arg_idx(curwin); /* check for valid arg_idx */
1413#ifdef FEAT_TITLE
1414 maketitle();
1415#endif
1416#ifdef FEAT_AUTOCMD
1417 if (curwin->w_topline == 1) /* when autocmds didn't change it */
1418#endif
1419 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1420
Bram Moolenaar009b2592004-10-24 19:18:58 +00001421#ifdef FEAT_NETBEANS_INTG
1422 /* Send fileOpened event because we've changed buffers. */
1423 if (usingNetbeans && isNetbeansBuffer(curbuf))
1424 netbeans_file_activated(curbuf);
1425#endif
1426
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427#if defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP)
1428 /* Change directories when the acd option is set on. */
1429 if (p_acd && curbuf->b_ffname != NULL
1430 && vim_chdirfile(curbuf->b_ffname) == OK)
1431 shorten_fnames(TRUE);
1432#endif
1433
1434#ifdef FEAT_KEYMAP
1435 if (curbuf->b_kmap_state & KEYMAP_INIT)
1436 keymap_init();
1437#endif
1438 redraw_later(NOT_VALID);
1439}
1440
1441/*
1442 * functions for dealing with the buffer list
1443 */
1444
1445/*
1446 * Add a file name to the buffer list. Return a pointer to the buffer.
1447 * If the same file name already exists return a pointer to that buffer.
1448 * If it does not exist, or if fname == NULL, a new entry is created.
1449 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1450 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1451 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 * This is the ONLY way to create a new buffer.
1453 */
1454static int top_file_num = 1; /* highest file number */
1455
1456 buf_T *
1457buflist_new(ffname, sfname, lnum, flags)
1458 char_u *ffname; /* full path of fname or relative */
1459 char_u *sfname; /* short fname or NULL */
1460 linenr_T lnum; /* preferred cursor line */
1461 int flags; /* BLN_ defines */
1462{
1463 buf_T *buf;
1464#ifdef UNIX
1465 struct stat st;
1466#endif
1467
1468 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1469
1470 /*
1471 * If file name already exists in the list, update the entry.
1472 */
1473#ifdef UNIX
1474 /* On Unix we can use inode numbers when the file exists. Works better
1475 * for hard links. */
1476 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1477 st.st_dev = (dev_T)-1;
1478#endif
1479 if (ffname != NULL && !(flags & BLN_DUMMY) && (buf =
1480#ifdef UNIX
1481 buflist_findname_stat(ffname, &st)
1482#else
1483 buflist_findname(ffname)
1484#endif
1485 ) != NULL)
1486 {
1487 vim_free(ffname);
1488 if (lnum != 0)
1489 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
1490 /* copy the options now, if 'cpo' doesn't have 's' and not done
1491 * already */
1492 buf_copy_options(buf, 0);
1493 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1494 {
1495 buf->b_p_bl = TRUE;
1496#ifdef FEAT_AUTOCMD
1497 if (!(flags & BLN_DUMMY))
1498 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf);
1499#endif
1500 }
1501 return buf;
1502 }
1503
1504 /*
1505 * If the current buffer has no name and no contents, use the current
1506 * buffer. Otherwise: Need to allocate a new buffer structure.
1507 *
1508 * This is the ONLY place where a new buffer structure is allocated!
1509 */
1510 buf = NULL;
1511 if ((flags & BLN_CURBUF)
1512 && curbuf != NULL
1513 && curbuf->b_ffname == NULL
1514 && curbuf->b_nwindows <= 1
1515 && (curbuf->b_ml.ml_mfp == NULL || bufempty()))
1516 {
1517 buf = curbuf;
1518#ifdef FEAT_AUTOCMD
1519 /* It's like this buffer is deleted. Watch out for autocommands that
1520 * change curbuf! If that happens, allocate a new buffer anyway. */
1521 if (curbuf->b_p_bl)
1522 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1523 if (buf == curbuf)
1524 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
1525# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001526 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 return NULL;
1528# endif
1529#endif
1530#ifdef FEAT_QUICKFIX
1531# ifdef FEAT_AUTOCMD
1532 if (buf == curbuf)
1533# endif
1534 {
1535 /* Make sure 'bufhidden' and 'buftype' are empty */
1536 clear_string_option(&buf->b_p_bh);
1537 clear_string_option(&buf->b_p_bt);
1538 }
1539#endif
1540 }
1541 if (buf != curbuf || curbuf == NULL)
1542 {
1543 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1544 if (buf == NULL)
1545 {
1546 vim_free(ffname);
1547 return NULL;
1548 }
1549 }
1550
1551 if (ffname != NULL)
1552 {
1553 buf->b_ffname = ffname;
1554 buf->b_sfname = vim_strsave(sfname);
1555 }
1556
1557 clear_wininfo(buf);
1558 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1559
1560 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1561 || buf->b_wininfo == NULL)
1562 {
1563 vim_free(buf->b_ffname);
1564 buf->b_ffname = NULL;
1565 vim_free(buf->b_sfname);
1566 buf->b_sfname = NULL;
1567 if (buf != curbuf)
1568 free_buffer(buf);
1569 return NULL;
1570 }
1571
1572 if (buf == curbuf)
1573 {
1574 /* free all things allocated for this buffer */
1575 buf_freeall(buf, FALSE, FALSE);
1576 if (buf != curbuf) /* autocommands deleted the buffer! */
1577 return NULL;
1578#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001579 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 return NULL;
1581#endif
1582 /* buf->b_nwindows = 0; why was this here? */
1583 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
1584#ifdef FEAT_KEYMAP
1585 /* need to reload lmaps and set b:keymap_name */
1586 curbuf->b_kmap_state |= KEYMAP_INIT;
1587#endif
1588 }
1589 else
1590 {
1591 /*
1592 * put new buffer at the end of the buffer list
1593 */
1594 buf->b_next = NULL;
1595 if (firstbuf == NULL) /* buffer list is empty */
1596 {
1597 buf->b_prev = NULL;
1598 firstbuf = buf;
1599 }
1600 else /* append new buffer at end of list */
1601 {
1602 lastbuf->b_next = buf;
1603 buf->b_prev = lastbuf;
1604 }
1605 lastbuf = buf;
1606
1607 buf->b_fnum = top_file_num++;
1608 if (top_file_num < 0) /* wrap around (may cause duplicates) */
1609 {
1610 EMSG(_("W14: Warning: List of file names overflow"));
1611 if (emsg_silent == 0)
1612 {
1613 out_flush();
1614 ui_delay(3000L, TRUE); /* make sure it is noticed */
1615 }
1616 top_file_num = 1;
1617 }
1618
1619 /*
1620 * Always copy the options from the current buffer.
1621 */
1622 buf_copy_options(buf, BCO_ALWAYS);
1623 }
1624
1625 buf->b_wininfo->wi_fpos.lnum = lnum;
1626 buf->b_wininfo->wi_win = curwin;
1627
1628#ifdef FEAT_EVAL
1629 var_init(&buf->b_vars); /* init internal variables */
1630#endif
1631
1632 buf->b_fname = buf->b_sfname;
1633#ifdef UNIX
1634 if (st.st_dev == (dev_T)-1)
1635 buf->b_dev = -1;
1636 else
1637 {
1638 buf->b_dev = st.st_dev;
1639 buf->b_ino = st.st_ino;
1640 }
1641#endif
1642 buf->b_u_synced = TRUE;
1643 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
1644 buf_clear_file(buf);
1645 clrallmarks(buf); /* clear marks */
1646 fmarks_check_names(buf); /* check file marks for this file */
1647 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
1648#ifdef FEAT_AUTOCMD
1649 if (!(flags & BLN_DUMMY))
1650 {
1651 apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf);
1652 if (flags & BLN_LISTED)
1653 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf);
1654# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001655 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 return NULL;
1657# endif
1658 }
1659#endif
1660
1661 return buf;
1662}
1663
1664/*
1665 * Free the memory for the options of a buffer.
1666 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
1667 * 'fileencoding'.
1668 */
1669 void
1670free_buf_options(buf, free_p_ff)
1671 buf_T *buf;
1672 int free_p_ff;
1673{
1674 if (free_p_ff)
1675 {
1676#ifdef FEAT_MBYTE
1677 clear_string_option(&buf->b_p_fenc);
1678#endif
1679 clear_string_option(&buf->b_p_ff);
1680#ifdef FEAT_QUICKFIX
1681 clear_string_option(&buf->b_p_bh);
1682 clear_string_option(&buf->b_p_bt);
1683#endif
1684 }
1685#ifdef FEAT_FIND_ID
1686 clear_string_option(&buf->b_p_def);
1687 clear_string_option(&buf->b_p_inc);
1688# ifdef FEAT_EVAL
1689 clear_string_option(&buf->b_p_inex);
1690# endif
1691#endif
1692#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1693 clear_string_option(&buf->b_p_inde);
1694 clear_string_option(&buf->b_p_indk);
1695#endif
1696#ifdef FEAT_CRYPT
1697 clear_string_option(&buf->b_p_key);
1698#endif
1699 clear_string_option(&buf->b_p_kp);
1700 clear_string_option(&buf->b_p_mps);
1701 clear_string_option(&buf->b_p_fo);
1702 clear_string_option(&buf->b_p_isk);
1703#ifdef FEAT_KEYMAP
1704 clear_string_option(&buf->b_p_keymap);
1705 ga_clear(&buf->b_kmap_ga);
1706#endif
1707#ifdef FEAT_COMMENTS
1708 clear_string_option(&buf->b_p_com);
1709#endif
1710#ifdef FEAT_FOLDING
1711 clear_string_option(&buf->b_p_cms);
1712#endif
1713 clear_string_option(&buf->b_p_nf);
1714#ifdef FEAT_SYN_HL
1715 clear_string_option(&buf->b_p_syn);
1716#endif
1717#ifdef FEAT_SEARCHPATH
1718 clear_string_option(&buf->b_p_sua);
1719#endif
1720#ifdef FEAT_AUTOCMD
1721 clear_string_option(&buf->b_p_ft);
1722#endif
1723#ifdef FEAT_OSFILETYPE
1724 clear_string_option(&buf->b_p_oft);
1725#endif
1726#ifdef FEAT_CINDENT
1727 clear_string_option(&buf->b_p_cink);
1728 clear_string_option(&buf->b_p_cino);
1729#endif
1730#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
1731 clear_string_option(&buf->b_p_cinw);
1732#endif
1733#ifdef FEAT_INS_EXPAND
1734 clear_string_option(&buf->b_p_cpt);
1735#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001736#ifdef FEAT_COMPL_FUNC
1737 clear_string_option(&buf->b_p_cfu);
1738#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739#ifdef FEAT_QUICKFIX
1740 clear_string_option(&buf->b_p_gp);
1741 clear_string_option(&buf->b_p_mp);
1742 clear_string_option(&buf->b_p_efm);
1743#endif
1744 clear_string_option(&buf->b_p_ep);
1745 clear_string_option(&buf->b_p_path);
1746 clear_string_option(&buf->b_p_tags);
1747#ifdef FEAT_INS_EXPAND
1748 clear_string_option(&buf->b_p_dict);
1749 clear_string_option(&buf->b_p_tsr);
1750#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001751#ifdef FEAT_TEXTOBJ
1752 clear_string_option(&buf->b_p_qe);
1753#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 buf->b_p_ar = -1;
1755}
1756
1757/*
1758 * get alternate file n
1759 * set linenr to lnum or altfpos.lnum if lnum == 0
1760 * also set cursor column to altfpos.col if 'startofline' is not set.
1761 * if (options & GETF_SETMARK) call setpcmark()
1762 * if (options & GETF_ALT) we are jumping to an alternate file.
1763 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
1764 *
1765 * return FAIL for failure, OK for success
1766 */
1767 int
1768buflist_getfile(n, lnum, options, forceit)
1769 int n;
1770 linenr_T lnum;
1771 int options;
1772 int forceit;
1773{
1774 buf_T *buf;
1775#ifdef FEAT_WINDOWS
1776 win_T *wp = NULL;
1777#endif
1778 pos_T *fpos;
1779 colnr_T col;
1780
1781 buf = buflist_findnr(n);
1782 if (buf == NULL)
1783 {
1784 if ((options & GETF_ALT) && n == 0)
1785 EMSG(_(e_noalt));
1786 else
1787 EMSGN(_("E92: Buffer %ld not found"), n);
1788 return FAIL;
1789 }
1790
1791 /* if alternate file is the current buffer, nothing to do */
1792 if (buf == curbuf)
1793 return OK;
1794
1795#ifdef FEAT_CMDWIN
1796 if (cmdwin_type != 0)
1797 return FAIL;
1798#endif
1799
1800 /* altfpos may be changed by getfile(), get it now */
1801 if (lnum == 0)
1802 {
1803 fpos = buflist_findfpos(buf);
1804 lnum = fpos->lnum;
1805 col = fpos->col;
1806 }
1807 else
1808 col = 0;
1809
1810#ifdef FEAT_WINDOWS
1811 if (options & GETF_SWITCH)
1812 {
1813 /* use existing open window for buffer if wanted */
1814 if (vim_strchr(p_swb, 'u')) /* useopen */
1815 wp = buf_jump_open_win(buf);
1816 /* split window if wanted ("split") */
1817 if (wp == NULL && vim_strchr(p_swb, 't') && !bufempty())
1818 {
1819 if (win_split(0, 0) == FAIL)
1820 return FAIL;
1821# ifdef FEAT_SCROLLBIND
1822 curwin->w_p_scb = FALSE;
1823# endif
1824 }
1825 }
1826#endif
1827
1828 ++RedrawingDisabled;
1829 if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK),
1830 lnum, forceit) <= 0)
1831 {
1832 --RedrawingDisabled;
1833
1834 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
1835 if (!p_sol && col != 0)
1836 {
1837 curwin->w_cursor.col = col;
1838 check_cursor_col();
1839#ifdef FEAT_VIRTUALEDIT
1840 curwin->w_cursor.coladd = 0;
1841#endif
1842 curwin->w_set_curswant = TRUE;
1843 }
1844 return OK;
1845 }
1846 --RedrawingDisabled;
1847 return FAIL;
1848}
1849
1850/*
1851 * go to the last know line number for the current buffer
1852 */
1853 void
1854buflist_getfpos()
1855{
1856 pos_T *fpos;
1857
1858 fpos = buflist_findfpos(curbuf);
1859
1860 curwin->w_cursor.lnum = fpos->lnum;
1861 check_cursor_lnum();
1862
1863 if (p_sol)
1864 curwin->w_cursor.col = 0;
1865 else
1866 {
1867 curwin->w_cursor.col = fpos->col;
1868 check_cursor_col();
1869#ifdef FEAT_VIRTUALEDIT
1870 curwin->w_cursor.coladd = 0;
1871#endif
1872 curwin->w_set_curswant = TRUE;
1873 }
1874}
1875
1876/*
1877 * Find file in buffer list by name (it has to be for the current window).
1878 * "ffname" must have a full path.
1879 */
1880 buf_T *
1881buflist_findname(ffname)
1882 char_u *ffname;
1883{
1884#ifdef UNIX
1885 struct stat st;
1886
1887 if (mch_stat((char *)ffname, &st) < 0)
1888 st.st_dev = (dev_T)-1;
1889 return buflist_findname_stat(ffname, &st);
1890}
1891
1892/*
1893 * Same as buflist_findname(), but pass the stat structure to avoid getting it
1894 * twice for the same file.
1895 */
1896 static buf_T *
1897buflist_findname_stat(ffname, stp)
1898 char_u *ffname;
1899 struct stat *stp;
1900{
1901#endif
1902 buf_T *buf;
1903
1904 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1905 if (!otherfile_buf(buf, ffname
1906#ifdef UNIX
1907 , stp
1908#endif
1909 ))
1910 return buf;
1911 return NULL;
1912}
1913
1914#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) || defined(PROTO)
1915/*
1916 * Find file in buffer list by a regexp pattern.
1917 * Return fnum of the found buffer.
1918 * Return < 0 for error.
1919 */
1920/*ARGSUSED*/
1921 int
1922buflist_findpat(pattern, pattern_end, unlisted, diffmode)
1923 char_u *pattern;
1924 char_u *pattern_end; /* pointer to first char after pattern */
1925 int unlisted; /* find unlisted buffers */
1926 int diffmode; /* find diff-mode buffers only */
1927{
1928 buf_T *buf;
1929 regprog_T *prog;
1930 int match = -1;
1931 int find_listed;
1932 char_u *pat;
1933 char_u *patend;
1934 int attempt;
1935 char_u *p;
1936 int toggledollar;
1937
1938 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
1939 {
1940 if (*pattern == '%')
1941 match = curbuf->b_fnum;
1942 else
1943 match = curwin->w_alt_fnum;
1944#ifdef FEAT_DIFF
1945 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
1946 match = -1;
1947#endif
1948 }
1949
1950 /*
1951 * Try four ways of matching a listed buffer:
1952 * attempt == 0: without '^' or '$' (at any position)
1953 * attempt == 1: with '^' at start (only at postion 0)
1954 * attempt == 2: with '$' at end (only match at end)
1955 * attempt == 3: with '^' at start and '$' at end (only full match)
1956 * Repeat this for finding an unlisted buffer if there was no matching
1957 * listed buffer.
1958 */
1959 else
1960 {
1961 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
1962 if (pat == NULL)
1963 return -1;
1964 patend = pat + STRLEN(pat) - 1;
1965 toggledollar = (patend > pat && *patend == '$');
1966
1967 /* First try finding a listed buffer. If not found and "unlisted"
1968 * is TRUE, try finding an unlisted buffer. */
1969 find_listed = TRUE;
1970 for (;;)
1971 {
1972 for (attempt = 0; attempt <= 3; ++attempt)
1973 {
1974 /* may add '^' and '$' */
1975 if (toggledollar)
1976 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
1977 p = pat;
1978 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
1979 ++p;
1980 prog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
1981 if (prog == NULL)
1982 {
1983 vim_free(pat);
1984 return -1;
1985 }
1986
1987 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1988 if (buf->b_p_bl == find_listed
1989#ifdef FEAT_DIFF
1990 && (!diffmode || diff_mode_buf(buf))
1991#endif
1992 && buflist_match(prog, buf) != NULL)
1993 {
1994 if (match >= 0) /* already found a match */
1995 {
1996 match = -2;
1997 break;
1998 }
1999 match = buf->b_fnum; /* remember first match */
2000 }
2001
2002 vim_free(prog);
2003 if (match >= 0) /* found one match */
2004 break;
2005 }
2006
2007 /* Only search for unlisted buffers if there was no match with
2008 * a listed buffer. */
2009 if (!unlisted || !find_listed || match != -1)
2010 break;
2011 find_listed = FALSE;
2012 }
2013
2014 vim_free(pat);
2015 }
2016
2017 if (match == -2)
2018 EMSG2(_("E93: More than one match for %s"), pattern);
2019 else if (match < 0)
2020 EMSG2(_("E94: No matching buffer for %s"), pattern);
2021 return match;
2022}
2023#endif
2024
2025#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2026
2027/*
2028 * Find all buffer names that match.
2029 * For command line expansion of ":buf" and ":sbuf".
2030 * Return OK if matches found, FAIL otherwise.
2031 */
2032 int
2033ExpandBufnames(pat, num_file, file, options)
2034 char_u *pat;
2035 int *num_file;
2036 char_u ***file;
2037 int options;
2038{
2039 int count = 0;
2040 buf_T *buf;
2041 int round;
2042 char_u *p;
2043 int attempt;
2044 regprog_T *prog;
2045
2046 *num_file = 0; /* return values in case of FAIL */
2047 *file = NULL;
2048
2049 /*
2050 * attempt == 1: try match with '^', match at start
2051 * attempt == 2: try match without '^', match anywhere
2052 */
2053 for (attempt = 1; attempt <= 2; ++attempt)
2054 {
2055 if (attempt == 2)
2056 {
2057 if (*pat != '^') /* there's no '^', no need to try again */
2058 break;
2059 ++pat; /* skip the '^' */
2060 }
2061 prog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
2062 if (prog == NULL)
2063 return FAIL;
2064
2065 /*
2066 * round == 1: Count the matches.
2067 * round == 2: Build the array to keep the matches.
2068 */
2069 for (round = 1; round <= 2; ++round)
2070 {
2071 count = 0;
2072 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2073 {
2074 if (!buf->b_p_bl) /* skip unlisted buffers */
2075 continue;
2076 p = buflist_match(prog, buf);
2077 if (p != NULL)
2078 {
2079 if (round == 1)
2080 ++count;
2081 else
2082 {
2083 if (options & WILD_HOME_REPLACE)
2084 p = home_replace_save(buf, p);
2085 else
2086 p = vim_strsave(p);
2087 (*file)[count++] = p;
2088 }
2089 }
2090 }
2091 if (count == 0) /* no match found, break here */
2092 break;
2093 if (round == 1)
2094 {
2095 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2096 if (*file == NULL)
2097 {
2098 vim_free(prog);
2099 return FAIL;
2100 }
2101 }
2102 }
2103 vim_free(prog);
2104 if (count) /* match(es) found, break here */
2105 break;
2106 }
2107
2108 *num_file = count;
2109 return (count == 0 ? FAIL : OK);
2110}
2111
2112#endif /* FEAT_CMDL_COMPL */
2113
2114#ifdef HAVE_BUFLIST_MATCH
2115/*
2116 * Check for a match on the file name for buffer "buf" with regprog "prog".
2117 */
2118 static char_u *
2119buflist_match(prog, buf)
2120 regprog_T *prog;
2121 buf_T *buf;
2122{
2123 char_u *match;
2124
2125 /* First try the short file name, then the long file name. */
2126 match = fname_match(prog, buf->b_sfname);
2127 if (match == NULL)
2128 match = fname_match(prog, buf->b_ffname);
2129
2130 return match;
2131}
2132
2133/*
2134 * Try matching the regexp in "prog" with file name "name".
2135 * Return "name" when there is a match, NULL when not.
2136 */
2137 static char_u *
2138fname_match(prog, name)
2139 regprog_T *prog;
2140 char_u *name;
2141{
2142 char_u *match = NULL;
2143 char_u *p;
2144 regmatch_T regmatch;
2145
2146 if (name != NULL)
2147 {
2148 regmatch.regprog = prog;
2149#ifdef CASE_INSENSITIVE_FILENAME
2150 regmatch.rm_ic = TRUE; /* Always ignore case */
2151#else
2152 regmatch.rm_ic = FALSE; /* Never ignore case */
2153#endif
2154
2155 if (vim_regexec(&regmatch, name, (colnr_T)0))
2156 match = name;
2157 else
2158 {
2159 /* Replace $(HOME) with '~' and try matching again. */
2160 p = home_replace_save(NULL, name);
2161 if (p != NULL && vim_regexec(&regmatch, p, (colnr_T)0))
2162 match = name;
2163 vim_free(p);
2164 }
2165 }
2166
2167 return match;
2168}
2169#endif
2170
2171/*
2172 * find file in buffer list by number
2173 */
2174 buf_T *
2175buflist_findnr(nr)
2176 int nr;
2177{
2178 buf_T *buf;
2179
2180 if (nr == 0)
2181 nr = curwin->w_alt_fnum;
2182 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2183 if (buf->b_fnum == nr)
2184 return (buf);
2185 return NULL;
2186}
2187
2188/*
2189 * Get name of file 'n' in the buffer list.
2190 * When the file has no name an empty string is returned.
2191 * home_replace() is used to shorten the file name (used for marks).
2192 * Returns a pointer to allocated memory, of NULL when failed.
2193 */
2194 char_u *
2195buflist_nr2name(n, fullname, helptail)
2196 int n;
2197 int fullname;
2198 int helptail; /* for help buffers return tail only */
2199{
2200 buf_T *buf;
2201
2202 buf = buflist_findnr(n);
2203 if (buf == NULL)
2204 return NULL;
2205 return home_replace_save(helptail ? buf : NULL,
2206 fullname ? buf->b_ffname : buf->b_fname);
2207}
2208
2209/*
2210 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2211 * When "copy_options" is TRUE save the local window option values.
2212 * When "lnum" is 0 only do the options.
2213 */
2214 static void
2215buflist_setfpos(buf, win, lnum, col, copy_options)
2216 buf_T *buf;
2217 win_T *win;
2218 linenr_T lnum;
2219 colnr_T col;
2220 int copy_options;
2221{
2222 wininfo_T *wip;
2223
2224 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2225 if (wip->wi_win == win)
2226 break;
2227 if (wip == NULL)
2228 {
2229 /* allocate a new entry */
2230 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2231 if (wip == NULL)
2232 return;
2233 wip->wi_win = win;
2234 if (lnum == 0) /* set lnum even when it's 0 */
2235 lnum = 1;
2236 }
2237 else
2238 {
2239 /* remove the entry from the list */
2240 if (wip->wi_prev)
2241 wip->wi_prev->wi_next = wip->wi_next;
2242 else
2243 buf->b_wininfo = wip->wi_next;
2244 if (wip->wi_next)
2245 wip->wi_next->wi_prev = wip->wi_prev;
2246 if (copy_options && wip->wi_optset)
2247 {
2248 clear_winopt(&wip->wi_opt);
2249#ifdef FEAT_FOLDING
2250 deleteFoldRecurse(&wip->wi_folds);
2251#endif
2252 }
2253 }
2254 if (lnum != 0)
2255 {
2256 wip->wi_fpos.lnum = lnum;
2257 wip->wi_fpos.col = col;
2258 }
2259 if (copy_options)
2260 {
2261 /* Save the window-specific option values. */
2262 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2263#ifdef FEAT_FOLDING
2264 wip->wi_fold_manual = win->w_fold_manual;
2265 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2266#endif
2267 wip->wi_optset = TRUE;
2268 }
2269
2270 /* insert the entry in front of the list */
2271 wip->wi_next = buf->b_wininfo;
2272 buf->b_wininfo = wip;
2273 wip->wi_prev = NULL;
2274 if (wip->wi_next)
2275 wip->wi_next->wi_prev = wip;
2276
2277 return;
2278}
2279
2280/*
2281 * Find info for the current window in buffer "buf".
2282 * If not found, return the info for the most recently used window.
2283 * Returns NULL when there isn't any info.
2284 */
2285 static wininfo_T *
2286find_wininfo(buf)
2287 buf_T *buf;
2288{
2289 wininfo_T *wip;
2290
2291 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2292 if (wip->wi_win == curwin)
2293 break;
2294 if (wip == NULL) /* if no fpos for curwin, use the first in the list */
2295 wip = buf->b_wininfo;
2296 return wip;
2297}
2298
2299/*
2300 * Reset the local window options to the values last used in this window.
2301 * If the buffer wasn't used in this window before, use the values from
2302 * the most recently used window. If the values were never set, use the
2303 * global values for the window.
2304 */
2305 void
2306get_winopts(buf)
2307 buf_T *buf;
2308{
2309 wininfo_T *wip;
2310
2311 clear_winopt(&curwin->w_onebuf_opt);
2312#ifdef FEAT_FOLDING
2313 clearFolding(curwin);
2314#endif
2315
2316 wip = find_wininfo(buf);
2317 if (wip != NULL && wip->wi_optset)
2318 {
2319 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2320#ifdef FEAT_FOLDING
2321 curwin->w_fold_manual = wip->wi_fold_manual;
2322 curwin->w_foldinvalid = TRUE;
2323 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2324#endif
2325 }
2326 else
2327 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2328
2329#ifdef FEAT_FOLDING
2330 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2331 if (p_fdls >= 0)
2332 curwin->w_p_fdl = p_fdls;
2333#endif
2334}
2335
2336/*
2337 * Find the position (lnum and col) for the buffer 'buf' for the current
2338 * window.
2339 * Returns a pointer to no_position if no position is found.
2340 */
2341 pos_T *
2342buflist_findfpos(buf)
2343 buf_T *buf;
2344{
2345 wininfo_T *wip;
2346 static pos_T no_position = {1, 0};
2347
2348 wip = find_wininfo(buf);
2349 if (wip != NULL)
2350 return &(wip->wi_fpos);
2351 else
2352 return &no_position;
2353}
2354
2355/*
2356 * Find the lnum for the buffer 'buf' for the current window.
2357 */
2358 linenr_T
2359buflist_findlnum(buf)
2360 buf_T *buf;
2361{
2362 return buflist_findfpos(buf)->lnum;
2363}
2364
2365#if defined(FEAT_LISTCMDS) || defined(PROTO)
2366/*
2367 * List all know file names (for :files and :buffers command).
2368 */
2369/*ARGSUSED*/
2370 void
2371buflist_list(eap)
2372 exarg_T *eap;
2373{
2374 buf_T *buf;
2375 int len;
2376 int i;
2377
2378 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2379 {
2380 /* skip unlisted buffers, unless ! was used */
2381 if (!buf->b_p_bl && !eap->forceit)
2382 continue;
2383 msg_putchar('\n');
2384 if (buf_spname(buf) != NULL)
2385 STRCPY(NameBuff, buf_spname(buf));
2386 else
2387 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
2388
2389 sprintf((char *)IObuff, "%3d%c%c%c%c%c \"",
2390 buf->b_fnum,
2391 buf->b_p_bl ? ' ' : 'u',
2392 buf == curbuf ? '%' :
2393 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
2394 buf->b_ml.ml_mfp == NULL ? ' ' :
2395 (buf->b_nwindows == 0 ? 'h' : 'a'),
2396 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
2397 (buf->b_flags & BF_READERR) ? 'x'
2398 : (bufIsChanged(buf) ? '+' : ' ')
2399 );
2400
2401 len = (int)STRLEN(IObuff);
2402 STRNCPY(IObuff + len, NameBuff, IOSIZE - 20 - len);
2403 IObuff[IOSIZE - 20 - len] = NUL; /* make sure it's terminated */
2404
2405 len = (int)STRLEN(IObuff);
2406 IObuff[len++] = '"';
2407
2408 /* put "line 999" in column 40 or after the file name */
2409 IObuff[len] = NUL;
2410 i = 40 - vim_strsize(IObuff);
2411 do
2412 {
2413 IObuff[len++] = ' ';
2414 } while (--i > 0 && len < IOSIZE - 18);
2415 sprintf((char *)IObuff + len, _("line %ld"),
2416 buf == curbuf ? curwin->w_cursor.lnum :
2417 (long)buflist_findlnum(buf));
2418 msg_outtrans(IObuff);
2419 out_flush(); /* output one line at a time */
2420 ui_breakcheck();
2421 }
2422}
2423#endif
2424
2425/*
2426 * Get file name and line number for file 'fnum'.
2427 * Used by DoOneCmd() for translating '%' and '#'.
2428 * Used by insert_reg() and cmdline_paste() for '#' register.
2429 * Return FAIL if not found, OK for success.
2430 */
2431 int
2432buflist_name_nr(fnum, fname, lnum)
2433 int fnum;
2434 char_u **fname;
2435 linenr_T *lnum;
2436{
2437 buf_T *buf;
2438
2439 buf = buflist_findnr(fnum);
2440 if (buf == NULL || buf->b_fname == NULL)
2441 return FAIL;
2442
2443 *fname = buf->b_fname;
2444 *lnum = buflist_findlnum(buf);
2445
2446 return OK;
2447}
2448
2449/*
2450 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
2451 * The file name with the full path is also remembered, for when :cd is used.
2452 * Returns FAIL for failure (file name already in use by other buffer)
2453 * OK otherwise.
2454 */
2455 int
2456setfname(buf, ffname, sfname, message)
2457 buf_T *buf;
2458 char_u *ffname, *sfname;
2459 int message;
2460{
2461 buf_T *obuf;
2462#ifdef UNIX
2463 struct stat st;
2464#endif
2465
2466 if (ffname == NULL || *ffname == NUL)
2467 {
2468 /* Removing the name. */
2469 vim_free(buf->b_ffname);
2470 vim_free(buf->b_sfname);
2471 buf->b_ffname = NULL;
2472 buf->b_sfname = NULL;
2473#ifdef UNIX
2474 st.st_dev = (dev_T)-1;
2475#endif
2476 }
2477 else
2478 {
2479 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
2480 if (ffname == NULL) /* out of memory */
2481 return FAIL;
2482
2483 /*
2484 * if the file name is already used in another buffer:
2485 * - if the buffer is loaded, fail
2486 * - if the buffer is not loaded, delete it from the list
2487 */
2488#ifdef UNIX
2489 if (mch_stat((char *)ffname, &st) < 0)
2490 st.st_dev = (dev_T)-1;
2491 obuf = buflist_findname_stat(ffname, &st);
2492#else
2493 obuf = buflist_findname(ffname);
2494#endif
2495 if (obuf != NULL && obuf != buf)
2496 {
2497 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
2498 {
2499 if (message)
2500 EMSG(_("E95: Buffer with this name already exists"));
2501 vim_free(ffname);
2502 return FAIL;
2503 }
2504 close_buffer(NULL, obuf, DOBUF_WIPE); /* delete from the list */
2505 }
2506 sfname = vim_strsave(sfname);
2507 if (ffname == NULL || sfname == NULL)
2508 {
2509 vim_free(sfname);
2510 vim_free(ffname);
2511 return FAIL;
2512 }
2513#ifdef USE_FNAME_CASE
2514# ifdef USE_LONG_FNAME
2515 if (USE_LONG_FNAME)
2516# endif
2517 fname_case(sfname, 0); /* set correct case for short file name */
2518#endif
2519 vim_free(buf->b_ffname);
2520 vim_free(buf->b_sfname);
2521 buf->b_ffname = ffname;
2522 buf->b_sfname = sfname;
2523 }
2524 buf->b_fname = buf->b_sfname;
2525#ifdef UNIX
2526 if (st.st_dev == (dev_T)-1)
2527 buf->b_dev = -1;
2528 else
2529 {
2530 buf->b_dev = st.st_dev;
2531 buf->b_ino = st.st_ino;
2532 }
2533#endif
2534
2535#ifndef SHORT_FNAME
2536 buf->b_shortname = FALSE;
2537#endif
2538
2539 buf_name_changed(buf);
2540 return OK;
2541}
2542
2543/*
2544 * Take care of what needs to be done when the name of buffer "buf" has
2545 * changed.
2546 */
2547 void
2548buf_name_changed(buf)
2549 buf_T *buf;
2550{
2551 /*
2552 * If the file name changed, also change the name of the swapfile
2553 */
2554 if (buf->b_ml.ml_mfp != NULL)
2555 ml_setname(buf);
2556
2557 if (curwin->w_buffer == buf)
2558 check_arg_idx(curwin); /* check file name for arg list */
2559#ifdef FEAT_TITLE
2560 maketitle(); /* set window title */
2561#endif
2562#ifdef FEAT_WINDOWS
2563 status_redraw_all(); /* status lines need to be redrawn */
2564#endif
2565 fmarks_check_names(buf); /* check named file marks */
2566 ml_timestamp(buf); /* reset timestamp */
2567}
2568
2569/*
2570 * set alternate file name for current window
2571 *
2572 * Used by do_one_cmd(), do_write() and do_ecmd().
2573 * Return the buffer.
2574 */
2575 buf_T *
2576setaltfname(ffname, sfname, lnum)
2577 char_u *ffname;
2578 char_u *sfname;
2579 linenr_T lnum;
2580{
2581 buf_T *buf;
2582
2583 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
2584 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002585 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586 curwin->w_alt_fnum = buf->b_fnum;
2587 return buf;
2588}
2589
2590/*
2591 * Get alternate file name for current window.
2592 * Return NULL if there isn't any, and give error message if requested.
2593 */
2594 char_u *
2595getaltfname(errmsg)
2596 int errmsg; /* give error message */
2597{
2598 char_u *fname;
2599 linenr_T dummy;
2600
2601 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
2602 {
2603 if (errmsg)
2604 EMSG(_(e_noalt));
2605 return NULL;
2606 }
2607 return fname;
2608}
2609
2610/*
2611 * Add a file name to the buflist and return its number.
2612 * Uses same flags as buflist_new(), except BLN_DUMMY.
2613 *
2614 * used by qf_init(), main() and doarglist()
2615 */
2616 int
2617buflist_add(fname, flags)
2618 char_u *fname;
2619 int flags;
2620{
2621 buf_T *buf;
2622
2623 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
2624 if (buf != NULL)
2625 return buf->b_fnum;
2626 return 0;
2627}
2628
2629#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
2630/*
2631 * Adjust slashes in file names. Called after 'shellslash' was set.
2632 */
2633 void
2634buflist_slash_adjust()
2635{
2636 buf_T *bp;
2637
2638 for (bp = firstbuf; bp != NULL; bp = bp->b_next)
2639 {
2640 if (bp->b_ffname != NULL)
2641 slash_adjust(bp->b_ffname);
2642 if (bp->b_sfname != NULL)
2643 slash_adjust(bp->b_sfname);
2644 }
2645}
2646#endif
2647
2648/*
2649 * Set alternate cursor position for current window.
2650 * Also save the local window option values.
2651 */
2652 void
2653buflist_altfpos()
2654{
2655 buflist_setfpos(curbuf, curwin, curwin->w_cursor.lnum,
2656 curwin->w_cursor.col, TRUE);
2657}
2658
2659/*
2660 * Return TRUE if 'ffname' is not the same file as current file.
2661 * Fname must have a full path (expanded by mch_FullName()).
2662 */
2663 int
2664otherfile(ffname)
2665 char_u *ffname;
2666{
2667 return otherfile_buf(curbuf, ffname
2668#ifdef UNIX
2669 , NULL
2670#endif
2671 );
2672}
2673
2674 static int
2675otherfile_buf(buf, ffname
2676#ifdef UNIX
2677 , stp
2678#endif
2679 )
2680 buf_T *buf;
2681 char_u *ffname;
2682#ifdef UNIX
2683 struct stat *stp;
2684#endif
2685{
2686 /* no name is different */
2687 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
2688 return TRUE;
2689 if (fnamecmp(ffname, buf->b_ffname) == 0)
2690 return FALSE;
2691#ifdef UNIX
2692 {
2693 struct stat st;
2694
2695 /* If no struct stat given, get it now */
2696 if (stp == NULL)
2697 {
2698 if (buf->b_dev < 0 || mch_stat((char *)ffname, &st) < 0)
2699 st.st_dev = (dev_T)-1;
2700 stp = &st;
2701 }
2702 /* Use dev/ino to check if the files are the same, even when the names
2703 * are different (possible with links). Still need to compare the
2704 * name above, for when the file doesn't exist yet.
2705 * Problem: The dev/ino changes when a file is deleted (and created
2706 * again) and remains the same when renamed/moved. We don't want to
2707 * mch_stat() each buffer each time, that would be too slow. Get the
2708 * dev/ino again when they appear to match, but not when they appear
2709 * to be different: Could skip a buffer when it's actually the same
2710 * file. */
2711 if (buf_same_ino(buf, stp))
2712 {
2713 buf_setino(buf);
2714 if (buf_same_ino(buf, stp))
2715 return FALSE;
2716 }
2717 }
2718#endif
2719 return TRUE;
2720}
2721
2722#if defined(UNIX) || defined(PROTO)
2723/*
2724 * Set inode and device number for a buffer.
2725 * Must always be called when b_fname is changed!.
2726 */
2727 void
2728buf_setino(buf)
2729 buf_T *buf;
2730{
2731 struct stat st;
2732
2733 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
2734 {
2735 buf->b_dev = st.st_dev;
2736 buf->b_ino = st.st_ino;
2737 }
2738 else
2739 buf->b_dev = -1;
2740}
2741
2742/*
2743 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
2744 */
2745 static int
2746buf_same_ino(buf, stp)
2747 buf_T *buf;
2748 struct stat *stp;
2749{
2750 return (buf->b_dev >= 0
2751 && stp->st_dev == buf->b_dev
2752 && stp->st_ino == buf->b_ino);
2753}
2754#endif
2755
2756 void
2757fileinfo(fullname, shorthelp, dont_truncate)
2758 int fullname;
2759 int shorthelp;
2760 int dont_truncate;
2761{
2762 char_u *name;
2763 int n;
2764 char_u *p;
2765 char_u *buffer;
2766
2767 buffer = alloc(IOSIZE);
2768 if (buffer == NULL)
2769 return;
2770
2771 if (fullname > 1) /* 2 CTRL-G: include buffer number */
2772 {
2773 sprintf((char *)buffer, "buf %d: ", curbuf->b_fnum);
2774 p = buffer + STRLEN(buffer);
2775 }
2776 else
2777 p = buffer;
2778
2779 *p++ = '"';
2780 if (buf_spname(curbuf) != NULL)
2781 STRCPY(p, buf_spname(curbuf));
2782 else
2783 {
2784 if (!fullname && curbuf->b_fname != NULL)
2785 name = curbuf->b_fname;
2786 else
2787 name = curbuf->b_ffname;
2788 home_replace(shorthelp ? curbuf : NULL, name, p,
2789 (int)(IOSIZE - (p - buffer)), TRUE);
2790 }
2791
2792 sprintf((char *)buffer + STRLEN(buffer),
2793 "\"%s%s%s%s%s%s",
2794 curbufIsChanged() ? (shortmess(SHM_MOD)
2795 ? " [+]" : _(" [Modified]")) : " ",
2796 (curbuf->b_flags & BF_NOTEDITED)
2797#ifdef FEAT_QUICKFIX
2798 && !bt_dontwrite(curbuf)
2799#endif
2800 ? _("[Not edited]") : "",
2801 (curbuf->b_flags & BF_NEW)
2802#ifdef FEAT_QUICKFIX
2803 && !bt_dontwrite(curbuf)
2804#endif
2805 ? _("[New file]") : "",
2806 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
2807 curbuf->b_p_ro ? (shortmess(SHM_RO) ? "[RO]"
2808 : _("[readonly]")) : "",
2809 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
2810 || curbuf->b_p_ro) ?
2811 " " : "");
2812 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
2813 * causes an overflow, thus for large numbers divide instead. */
2814 if (curwin->w_cursor.lnum > 1000000L)
2815 n = (int)(((long)curwin->w_cursor.lnum) /
2816 ((long)curbuf->b_ml.ml_line_count / 100L));
2817 else
2818 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
2819 (long)curbuf->b_ml.ml_line_count);
2820 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2821 {
2822 STRCPY(buffer + STRLEN(buffer), _(no_lines_msg));
2823 }
2824#ifdef FEAT_CMDL_INFO
2825 else if (p_ru)
2826 {
2827 /* Current line and column are already on the screen -- webb */
2828 if (curbuf->b_ml.ml_line_count == 1)
2829 sprintf((char *)buffer + STRLEN(buffer), _("1 line --%d%%--"), n);
2830 else
2831 sprintf((char *)buffer + STRLEN(buffer), _("%ld lines --%d%%--"),
2832 (long)curbuf->b_ml.ml_line_count, n);
2833 }
2834#endif
2835 else
2836 {
2837 sprintf((char *)buffer + STRLEN(buffer),
2838 _("line %ld of %ld --%d%%-- col "),
2839 (long)curwin->w_cursor.lnum,
2840 (long)curbuf->b_ml.ml_line_count,
2841 n);
2842 validate_virtcol();
2843 col_print(buffer + STRLEN(buffer),
2844 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
2845 }
2846
2847 (void)append_arg_number(curwin, buffer, !shortmess(SHM_FILE), IOSIZE);
2848
2849 if (dont_truncate)
2850 {
2851 /* Temporarily set msg_scroll to avoid the message being truncated.
2852 * First call msg_start() to get the message in the right place. */
2853 msg_start();
2854 n = msg_scroll;
2855 msg_scroll = TRUE;
2856 msg(buffer);
2857 msg_scroll = n;
2858 }
2859 else
2860 {
2861 p = msg_trunc_attr(buffer, FALSE, 0);
2862 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
2863 {
2864 /* Need to repeat the message after redrawing when:
2865 * - When restart_edit is set (otherwise there will be a delay
2866 * before redrawing).
2867 * - When the screen was scrolled but there is no wait-return
2868 * prompt. */
2869 set_keep_msg(p);
2870 keep_msg_attr = 0;
2871 }
2872 }
2873
2874 vim_free(buffer);
2875}
2876
2877 void
2878col_print(buf, col, vcol)
2879 char_u *buf;
2880 int col;
2881 int vcol;
2882{
2883 if (col == vcol)
2884 sprintf((char *)buf, "%d", col);
2885 else
2886 sprintf((char *)buf, "%d-%d", col, vcol);
2887}
2888
2889#if defined(FEAT_TITLE) || defined(PROTO)
2890/*
2891 * put file name in title bar of window and in icon title
2892 */
2893
2894static char_u *lasttitle = NULL;
2895static char_u *lasticon = NULL;
2896
2897 void
2898maketitle()
2899{
2900 char_u *p;
2901 char_u *t_str = NULL;
2902 char_u *i_name;
2903 char_u *i_str = NULL;
2904 int maxlen = 0;
2905 int len;
2906 int mustset;
2907 char_u buf[IOSIZE];
2908 int off;
2909
2910 if (!redrawing())
2911 {
2912 /* Postpone updating the title when 'lazyredraw' is set. */
2913 need_maketitle = TRUE;
2914 return;
2915 }
2916
2917 need_maketitle = FALSE;
2918 if (!p_title && !p_icon)
2919 return;
2920
2921 if (p_title)
2922 {
2923 if (p_titlelen > 0)
2924 {
2925 maxlen = p_titlelen * Columns / 100;
2926 if (maxlen < 10)
2927 maxlen = 10;
2928 }
2929
2930 t_str = buf;
2931 if (*p_titlestring != NUL)
2932 {
2933#ifdef FEAT_STL_OPT
2934 if (stl_syntax & STL_IN_TITLE)
2935 build_stl_str_hl(curwin, t_str, sizeof(buf),
2936 p_titlestring, 0, maxlen, NULL);
2937 else
2938#endif
2939 t_str = p_titlestring;
2940 }
2941 else
2942 {
2943 /* format: "fname + (path) (1 of 2) - VIM" */
2944
2945 if (curbuf->b_fname == NULL)
2946 STRCPY(buf, _("[No file]"));
2947 else
2948 {
2949 p = transstr(gettail(curbuf->b_fname));
2950 STRNCPY(buf, p, IOSIZE - 100);
2951 vim_free(p);
2952 buf[IOSIZE - 100] = NUL; /* in case it was too long */
2953 }
2954
2955 switch (bufIsChanged(curbuf)
2956 + (curbuf->b_p_ro * 2)
2957 + (!curbuf->b_p_ma * 4))
2958 {
2959 case 1: STRCAT(buf, " +"); break;
2960 case 2: STRCAT(buf, " ="); break;
2961 case 3: STRCAT(buf, " =+"); break;
2962 case 4:
2963 case 6: STRCAT(buf, " -"); break;
2964 case 5:
2965 case 7: STRCAT(buf, " -+"); break;
2966 }
2967
2968 if (curbuf->b_fname != NULL)
2969 {
2970 /* Get path of file, replace home dir with ~ */
2971 off = (int)STRLEN(buf);
2972 buf[off++] = ' ';
2973 buf[off++] = '(';
2974 home_replace(curbuf, curbuf->b_ffname,
2975 buf + off, IOSIZE - off, TRUE);
2976#ifdef BACKSLASH_IN_FILENAME
2977 /* avoid "c:/name" to be reduced to "c" */
2978 if (isalpha(buf[off]) && buf[off + 1] == ':')
2979 off += 2;
2980#endif
2981 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002982 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 if (p == buf + off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 /* must be a help buffer */
2985 STRCPY(buf + off, _("help"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002988
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 /* translate unprintable chars */
2990 p = transstr(buf + off);
2991 STRNCPY(buf + off, p, IOSIZE - off);
2992 vim_free(p);
2993 buf[IOSIZE - 1] = NUL; /* in case it was too long */
2994 STRCAT(buf, ")");
2995 }
2996
2997 append_arg_number(curwin, buf, FALSE, IOSIZE);
2998
2999#if defined(FEAT_CLIENTSERVER)
3000 if (serverName != NULL)
3001 {
3002 STRCAT(buf, " - ");
3003 STRCAT(buf, serverName);
3004 }
3005 else
3006#endif
3007 STRCAT(buf, " - VIM");
3008
3009 if (maxlen > 0)
3010 {
3011 /* make it shorter by removing a bit in the middle */
3012 len = vim_strsize(buf);
3013 if (len > maxlen)
3014 trunc_string(buf, buf, maxlen);
3015 }
3016 }
3017 }
3018 mustset = ti_change(t_str, &lasttitle);
3019
3020 if (p_icon)
3021 {
3022 i_str = buf;
3023 if (*p_iconstring != NUL)
3024 {
3025#ifdef FEAT_STL_OPT
3026 if (stl_syntax & STL_IN_ICON)
3027 build_stl_str_hl(curwin, i_str, sizeof(buf),
3028 p_iconstring, 0, 0, NULL);
3029 else
3030#endif
3031 i_str = p_iconstring;
3032 }
3033 else
3034 {
3035 if (buf_spname(curbuf) != NULL)
3036 i_name = (char_u *)buf_spname(curbuf);
3037 else /* use file name only in icon */
3038 i_name = gettail(curbuf->b_ffname);
3039 *i_str = NUL;
3040 /* Truncate name at 100 bytes. */
3041 len = STRLEN(i_name);
3042 if (len > 100)
3043 {
3044 len -= 100;
3045#ifdef FEAT_MBYTE
3046 if (has_mbyte)
3047 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3048#endif
3049 i_name += len;
3050 }
3051 STRCPY(i_str, i_name);
3052 trans_characters(i_str, IOSIZE);
3053 }
3054 }
3055
3056 mustset |= ti_change(i_str, &lasticon);
3057
3058 if (mustset)
3059 resettitle();
3060}
3061
3062/*
3063 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3064 * from "str" if it does.
3065 * Return TRUE when "*last" changed.
3066 */
3067 static int
3068ti_change(str, last)
3069 char_u *str;
3070 char_u **last;
3071{
3072 if ((str == NULL) != (*last == NULL)
3073 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3074 {
3075 vim_free(*last);
3076 if (str == NULL)
3077 *last = NULL;
3078 else
3079 *last = vim_strsave(str);
3080 return TRUE;
3081 }
3082 return FALSE;
3083}
3084
3085/*
3086 * Put current window title back (used after calling a shell)
3087 */
3088 void
3089resettitle()
3090{
3091 mch_settitle(lasttitle, lasticon);
3092}
3093#endif /* FEAT_TITLE */
3094
3095#if defined(FEAT_STL_OPT) || defined(PROTO)
3096/*
3097 * Build a string from the status line items in fmt.
3098 * Return length of string in screen cells.
3099 *
3100 * Items are drawn interspersed with the text that surrounds it
3101 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3102 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3103 *
3104 * If maxwidth is not zero, the string will be filled at any middle marker
3105 * or truncated if too long, fillchar is used for all whitespace.
3106 */
3107 int
3108build_stl_str_hl(wp, out, outlen, fmt, fillchar, maxwidth, hl)
3109 win_T *wp;
3110 char_u *out; /* buffer to write into */
3111 size_t outlen; /* length of out[] */
3112 char_u *fmt;
3113 int fillchar;
3114 int maxwidth;
3115 struct stl_hlrec *hl;
3116{
3117 char_u *p;
3118 char_u *s;
3119 char_u *t;
3120 char_u *linecont;
3121#ifdef FEAT_EVAL
3122 win_T *o_curwin;
3123 buf_T *o_curbuf;
3124#endif
3125 int empty_line;
3126 colnr_T virtcol;
3127 long l;
3128 long n;
3129 int prevchar_isflag;
3130 int prevchar_isitem;
3131 int itemisflag;
3132 int fillable;
3133 char_u *str;
3134 long num;
3135 int width;
3136 int itemcnt;
3137 int curitem;
3138 int groupitem[STL_MAX_ITEM];
3139 int groupdepth;
3140 struct stl_item
3141 {
3142 char_u *start;
3143 int minwid;
3144 int maxwid;
3145 enum
3146 {
3147 Normal,
3148 Empty,
3149 Group,
3150 Middle,
3151 Highlight,
3152 Trunc
3153 } type;
3154 } item[STL_MAX_ITEM];
3155 int minwid;
3156 int maxwid;
3157 int zeropad;
3158 char_u base;
3159 char_u opt;
3160#define TMPLEN 70
3161 char_u tmp[TMPLEN];
3162
3163 if (fillchar == 0)
3164 fillchar = ' ';
3165 /*
3166 * Get line & check if empty (cursorpos will show "0-1").
3167 * If inversion is possible we use it. Else '=' characters are used.
3168 */
3169 linecont = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3170 empty_line = (*linecont == NUL);
3171
3172 groupdepth = 0;
3173 p = out;
3174 curitem = 0;
3175 prevchar_isflag = TRUE;
3176 prevchar_isitem = FALSE;
3177 for (s = fmt; *s;)
3178 {
3179 if (*s != NUL && *s != '%')
3180 prevchar_isflag = prevchar_isitem = FALSE;
3181
3182 /*
3183 * Handle up to the next '%' or the end.
3184 */
3185 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3186 *p++ = *s++;
3187 if (*s == NUL || p + 1 >= out + outlen)
3188 break;
3189
3190 /*
3191 * Handle one '%' item.
3192 */
3193 s++;
3194 if (*s == '%')
3195 {
3196 if (p + 1 >= out + outlen)
3197 break;
3198 *p++ = *s++;
3199 prevchar_isflag = prevchar_isitem = FALSE;
3200 continue;
3201 }
3202 if (*s == STL_MIDDLEMARK)
3203 {
3204 s++;
3205 if (groupdepth > 0)
3206 continue;
3207 item[curitem].type = Middle;
3208 item[curitem++].start = p;
3209 continue;
3210 }
3211 if (*s == STL_TRUNCMARK)
3212 {
3213 s++;
3214 item[curitem].type = Trunc;
3215 item[curitem++].start = p;
3216 continue;
3217 }
3218 if (*s == ')')
3219 {
3220 s++;
3221 if (groupdepth < 1)
3222 continue;
3223 groupdepth--;
3224
3225 t = item[groupitem[groupdepth]].start;
3226 *p = NUL;
3227 l = vim_strsize(t);
3228 if (curitem > groupitem[groupdepth] + 1
3229 && item[groupitem[groupdepth]].minwid == 0)
3230 {
3231 /* remove group if all items are empty */
3232 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3233 if (item[n].type == Normal)
3234 break;
3235 if (n == curitem)
3236 {
3237 p = t;
3238 l = 0;
3239 }
3240 }
3241 if (l > item[groupitem[groupdepth]].maxwid)
3242 {
3243 /* truncate, remove n bytes of text at the start */
3244#ifdef FEAT_MBYTE
3245 if (has_mbyte)
3246 {
3247 /* Find the first character that should be included. */
3248 n = 0;
3249 while (l >= item[groupitem[groupdepth]].maxwid)
3250 {
3251 l -= ptr2cells(t + n);
3252 n += (*mb_ptr2len_check)(t + n);
3253 }
3254 }
3255 else
3256#endif
3257 n = (p - t) - item[groupitem[groupdepth]].maxwid + 1;
3258
3259 *t = '<';
3260 mch_memmove(t + 1, t + n, p - (t + n));
3261 p = p - n + 1;
3262#ifdef FEAT_MBYTE
3263 /* Fill up space left over by half a double-wide char. */
3264 while (++l < item[groupitem[groupdepth]].minwid)
3265 *p++ = fillchar;
3266#endif
3267
3268 /* correct the start of the items for the truncation */
3269 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
3270 {
3271 item[l].start -= n;
3272 if (item[l].start < t)
3273 item[l].start = t;
3274 }
3275 }
3276 else if (abs(item[groupitem[groupdepth]].minwid) > l)
3277 {
3278 /* fill */
3279 n = item[groupitem[groupdepth]].minwid;
3280 if (n < 0)
3281 {
3282 /* fill by appending characters */
3283 n = 0 - n;
3284 while (l++ < n && p + 1 < out + outlen)
3285 *p++ = fillchar;
3286 }
3287 else
3288 {
3289 /* fill by inserting characters */
3290 mch_memmove(t + n - l, t, p - t);
3291 l = n - l;
3292 if (p + l >= out + outlen)
3293 l = (out + outlen) - p - 1;
3294 p += l;
3295 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3296 item[n].start += l;
3297 for ( ; l > 0; l--)
3298 *t++ = fillchar;
3299 }
3300 }
3301 continue;
3302 }
3303 minwid = 0;
3304 maxwid = 9999;
3305 zeropad = FALSE;
3306 l = 1;
3307 if (*s == '0')
3308 {
3309 s++;
3310 zeropad = TRUE;
3311 }
3312 if (*s == '-')
3313 {
3314 s++;
3315 l = -1;
3316 }
3317 if (VIM_ISDIGIT(*s))
3318 {
3319 minwid = (int)getdigits(&s);
3320 if (minwid < 0) /* overflow */
3321 minwid = 0;
3322 }
3323 if (*s == STL_HIGHLIGHT)
3324 {
3325 item[curitem].type = Highlight;
3326 item[curitem].start = p;
3327 item[curitem].minwid = minwid > 9 ? 1 : minwid;
3328 s++;
3329 curitem++;
3330 continue;
3331 }
3332 if (*s == '.')
3333 {
3334 s++;
3335 if (VIM_ISDIGIT(*s))
3336 {
3337 maxwid = (int)getdigits(&s);
3338 if (maxwid <= 0) /* overflow */
3339 maxwid = 50;
3340 }
3341 }
3342 minwid = (minwid > 50 ? 50 : minwid) * l;
3343 if (*s == '(')
3344 {
3345 groupitem[groupdepth++] = curitem;
3346 item[curitem].type = Group;
3347 item[curitem].start = p;
3348 item[curitem].minwid = minwid;
3349 item[curitem].maxwid = maxwid;
3350 s++;
3351 curitem++;
3352 continue;
3353 }
3354 if (vim_strchr(STL_ALL, *s) == NULL)
3355 {
3356 s++;
3357 continue;
3358 }
3359 opt = *s++;
3360
3361 /* OK - now for the real work */
3362 base = 'D';
3363 itemisflag = FALSE;
3364 fillable = TRUE;
3365 num = -1;
3366 str = NULL;
3367 switch (opt)
3368 {
3369 case STL_FILEPATH:
3370 case STL_FULLPATH:
3371 case STL_FILENAME:
3372 fillable = FALSE; /* don't change ' ' to fillchar */
3373 if (buf_spname(wp->w_buffer) != NULL)
3374 STRCPY(NameBuff, buf_spname(wp->w_buffer));
3375 else
3376 {
3377 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
3378 : wp->w_buffer->b_fname;
3379 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
3380 }
3381 trans_characters(NameBuff, MAXPATHL);
3382 if (opt != STL_FILENAME)
3383 str = NameBuff;
3384 else
3385 str = gettail(NameBuff);
3386 break;
3387
3388 case STL_VIM_EXPR: /* '{' */
3389 itemisflag = TRUE;
3390 t = p;
3391 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
3392 *p++ = *s++;
3393 if (*s != '}') /* missing '}' or out of space */
3394 break;
3395 s++;
3396 *p = 0;
3397 p = t;
3398
3399#ifdef FEAT_EVAL
3400 sprintf((char *)tmp, "%d", curbuf->b_fnum);
3401 set_internal_string_var((char_u *)"actual_curbuf", tmp);
3402
3403 o_curbuf = curbuf;
3404 o_curwin = curwin;
3405 curwin = wp;
3406 curbuf = wp->w_buffer;
3407
3408 str = eval_to_string_safe(p, &t);
3409
3410 curwin = o_curwin;
3411 curbuf = o_curbuf;
3412 do_unlet((char_u *)"g:actual_curbuf");
3413
3414 if (str != NULL && *str != 0)
3415 {
3416 if (*skipdigits(str) == NUL)
3417 {
3418 num = atoi((char *)str);
3419 vim_free(str);
3420 str = NULL;
3421 itemisflag = FALSE;
3422 }
3423 }
3424#endif
3425 break;
3426
3427 case STL_LINE:
3428 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
3429 ? 0L : (long)(wp->w_cursor.lnum);
3430 break;
3431
3432 case STL_NUMLINES:
3433 num = wp->w_buffer->b_ml.ml_line_count;
3434 break;
3435
3436 case STL_COLUMN:
3437 num = !(State & INSERT) && empty_line
3438 ? 0 : (int)wp->w_cursor.col + 1;
3439 break;
3440
3441 case STL_VIRTCOL:
3442 case STL_VIRTCOL_ALT:
3443 /* In list mode virtcol needs to be recomputed */
3444 virtcol = wp->w_virtcol;
3445 if (wp->w_p_list && lcs_tab1 == NUL)
3446 {
3447 wp->w_p_list = FALSE;
3448 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
3449 wp->w_p_list = TRUE;
3450 }
3451 ++virtcol;
3452 /* Don't display %V if it's the same as %c. */
3453 if (opt == STL_VIRTCOL_ALT
3454 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
3455 ? 0 : (int)wp->w_cursor.col + 1)))
3456 break;
3457 num = (long)virtcol;
3458 break;
3459
3460 case STL_PERCENTAGE:
3461 num = (int)(((long)wp->w_cursor.lnum * 100L) /
3462 (long)wp->w_buffer->b_ml.ml_line_count);
3463 break;
3464
3465 case STL_ALTPERCENT:
3466 str = tmp;
3467 get_rel_pos(wp, str);
3468 break;
3469
3470 case STL_ARGLISTSTAT:
3471 fillable = FALSE;
3472 tmp[0] = 0;
3473 if (append_arg_number(wp, tmp, FALSE, (int)sizeof(tmp)))
3474 str = tmp;
3475 break;
3476
3477 case STL_KEYMAP:
3478 fillable = FALSE;
3479 if (get_keymap_str(wp, tmp, TMPLEN))
3480 str = tmp;
3481 break;
3482 case STL_PAGENUM:
3483#ifdef FEAT_PRINTER
3484 num = get_printer_page_num();
3485#else
3486 num = 0;
3487#endif
3488 break;
3489
3490 case STL_BUFNO:
3491 num = wp->w_buffer->b_fnum;
3492 break;
3493
3494 case STL_OFFSET_X:
3495 base = 'X';
3496 case STL_OFFSET:
3497#ifdef FEAT_BYTEOFF
3498 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
3499 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
3500 0L : l + 1 + (!(State & INSERT) && empty_line ?
3501 0 : (int)wp->w_cursor.col);
3502#endif
3503 break;
3504
3505 case STL_BYTEVAL_X:
3506 base = 'X';
3507 case STL_BYTEVAL:
3508 if (((State & INSERT) && wp == curwin) || empty_line)
3509 num = 0;
3510 else
3511 {
3512#ifdef FEAT_MBYTE
3513 num = (*mb_ptr2char)(linecont + wp->w_cursor.col);
3514#else
3515 num = linecont[wp->w_cursor.col];
3516#endif
3517 }
3518 if (num == NL)
3519 num = 0;
3520 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
3521 num = NL;
3522 break;
3523
3524 case STL_ROFLAG:
3525 case STL_ROFLAG_ALT:
3526 itemisflag = TRUE;
3527 if (wp->w_buffer->b_p_ro)
3528 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : "[RO]");
3529 break;
3530
3531 case STL_HELPFLAG:
3532 case STL_HELPFLAG_ALT:
3533 itemisflag = TRUE;
3534 if (wp->w_buffer->b_help)
3535 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
3536 : _("[help]"));
3537 break;
3538
3539#ifdef FEAT_AUTOCMD
3540 case STL_FILETYPE:
3541 if (*wp->w_buffer->b_p_ft != NUL
3542 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
3543 {
3544 sprintf((char *)tmp, "[%s]", wp->w_buffer->b_p_ft);
3545 str = tmp;
3546 }
3547 break;
3548
3549 case STL_FILETYPE_ALT:
3550 itemisflag = TRUE;
3551 if (*wp->w_buffer->b_p_ft != NUL
3552 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
3553 {
3554 sprintf((char *)tmp, ",%s", wp->w_buffer->b_p_ft);
3555 for (t = tmp; *t != 0; t++)
3556 *t = TOUPPER_LOC(*t);
3557 str = tmp;
3558 }
3559 break;
3560#endif
3561
3562#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
3563 case STL_PREVIEWFLAG:
3564 case STL_PREVIEWFLAG_ALT:
3565 itemisflag = TRUE;
3566 if (wp->w_p_pvw)
3567 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
3568 : _("[Preview]"));
3569 break;
3570#endif
3571
3572 case STL_MODIFIED:
3573 case STL_MODIFIED_ALT:
3574 itemisflag = TRUE;
3575 switch ((opt == STL_MODIFIED_ALT)
3576 + bufIsChanged(wp->w_buffer) * 2
3577 + (!wp->w_buffer->b_p_ma) * 4)
3578 {
3579 case 2: str = (char_u *)"[+]"; break;
3580 case 3: str = (char_u *)",+"; break;
3581 case 4: str = (char_u *)"[-]"; break;
3582 case 5: str = (char_u *)",-"; break;
3583 case 6: str = (char_u *)"[+-]"; break;
3584 case 7: str = (char_u *)",+-"; break;
3585 }
3586 break;
3587 }
3588
3589 item[curitem].start = p;
3590 item[curitem].type = Normal;
3591 if (str != NULL && *str)
3592 {
3593 t = str;
3594 if (itemisflag)
3595 {
3596 if ((t[0] && t[1])
3597 && ((!prevchar_isitem && *t == ',')
3598 || (prevchar_isflag && *t == ' ')))
3599 t++;
3600 prevchar_isflag = TRUE;
3601 }
3602 l = vim_strsize(t);
3603 if (l > 0)
3604 prevchar_isitem = TRUE;
3605 if (l > maxwid)
3606 {
3607 while (l >= maxwid)
3608#ifdef FEAT_MBYTE
3609 if (has_mbyte)
3610 {
3611 l -= ptr2cells(t);
3612 t += (*mb_ptr2len_check)(t);
3613 }
3614 else
3615#endif
3616 l -= byte2cells(*t++);
3617 if (p + 1 >= out + outlen)
3618 break;
3619 *p++ = '<';
3620 }
3621 if (minwid > 0)
3622 {
3623 for (; l < minwid && p + 1 < out + outlen; l++)
3624 {
3625 /* Don't put a "-" in front of a digit. */
3626 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
3627 *p++ = ' ';
3628 else
3629 *p++ = fillchar;
3630 }
3631 minwid = 0;
3632 }
3633 else
3634 minwid *= -1;
3635 while (*t && p + 1 < out + outlen)
3636 {
3637 *p++ = *t++;
3638 /* Change a space by fillchar, unless fillchar is '-' and a
3639 * digit follows. */
3640 if (fillable && p[-1] == ' '
3641 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
3642 p[-1] = fillchar;
3643 }
3644 for (; l < minwid && p + 1 < out + outlen; l++)
3645 *p++ = fillchar;
3646 }
3647 else if (num >= 0)
3648 {
3649 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
3650 char_u nstr[20];
3651
3652 if (p + 20 >= out + outlen)
3653 break; /* not sufficient space */
3654 prevchar_isitem = TRUE;
3655 t = nstr;
3656 if (opt == STL_VIRTCOL_ALT)
3657 {
3658 *t++ = '-';
3659 minwid--;
3660 }
3661 *t++ = '%';
3662 if (zeropad)
3663 *t++ = '0';
3664 *t++ = '*';
3665 *t++ = nbase == 16 ? base : (nbase == 8 ? 'o' : 'd');
3666 *t = 0;
3667
3668 for (n = num, l = 1; n >= nbase; n /= nbase)
3669 l++;
3670 if (opt == STL_VIRTCOL_ALT)
3671 l++;
3672 if (l > maxwid)
3673 {
3674 l += 2;
3675 n = l - maxwid;
3676 while (l-- > maxwid)
3677 num /= nbase;
3678 *t++ = '>';
3679 *t++ = '%';
3680 *t = t[-3];
3681 *++t = 0;
3682 sprintf((char *)p, (char *)nstr, 0, num, n);
3683 }
3684 else
3685 sprintf((char *)p, (char *)nstr, minwid, num);
3686 p += STRLEN(p);
3687 }
3688 else
3689 item[curitem].type = Empty;
3690
3691 if (opt == STL_VIM_EXPR)
3692 vim_free(str);
3693
3694 if (num >= 0 || (!itemisflag && str && *str))
3695 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
3696 curitem++;
3697 }
3698 *p = NUL;
3699 itemcnt = curitem;
3700
3701 width = vim_strsize(out);
3702 if (maxwidth > 0 && width > maxwidth)
3703 {
3704 /* Result is too long, must trunctate somewhere. */
3705 l = 0;
3706 if (itemcnt == 0)
3707 s = out;
3708 else
3709 {
3710 for ( ; l < itemcnt; l++)
3711 if (item[l].type == Trunc)
3712 {
3713 /* Truncate at %< item. */
3714 s = item[l].start;
3715 break;
3716 }
3717 if (l == itemcnt)
3718 {
3719 /* No %< item, truncate first item. */
3720 s = item[0].start;
3721 l = 0;
3722 }
3723 }
3724
3725 if (width - vim_strsize(s) >= maxwidth)
3726 {
3727 /* Truncation mark is beyond max length */
3728#ifdef FEAT_MBYTE
3729 if (has_mbyte)
3730 {
3731 s = out;
3732 width = 0;
3733 for (;;)
3734 {
3735 width += ptr2cells(s);
3736 if (width >= maxwidth)
3737 break;
3738 s += (*mb_ptr2len_check)(s);
3739 }
3740 /* Fill up for half a double-wide character. */
3741 while (++width < maxwidth)
3742 *s++ = fillchar;
3743 }
3744 else
3745#endif
3746 s = out + maxwidth - 1;
3747 for (l = 0; l < itemcnt; l++)
3748 if (item[l].start > s)
3749 break;
3750 itemcnt = l;
3751 *s++ = '>';
3752 *s = 0;
3753 }
3754 else
3755 {
3756#ifdef FEAT_MBYTE
3757 if (has_mbyte)
3758 {
3759 n = 0;
3760 while (width >= maxwidth)
3761 {
3762 width -= ptr2cells(s + n);
3763 n += (*mb_ptr2len_check)(s + n);
3764 }
3765 }
3766 else
3767#endif
3768 n = width - maxwidth + 1;
3769 p = s + n;
3770 mch_memmove(s + 1, p, STRLEN(p) + 1);
3771 *s = '<';
3772
3773 /* Fill up for half a double-wide character. */
3774 while (++width < maxwidth)
3775 {
3776 s = s + STRLEN(s);
3777 *s++ = fillchar;
3778 *s = NUL;
3779 }
3780
3781 --n; /* count the '<' */
3782 for (; l < itemcnt; l++)
3783 {
3784 if (item[l].start - n >= s)
3785 item[l].start -= n;
3786 else
3787 item[l].start = s;
3788 }
3789 }
3790 width = maxwidth;
3791 }
3792 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
3793 {
3794 /* Apply STL_MIDDLE if any */
3795 for (l = 0; l < itemcnt; l++)
3796 if (item[l].type == Middle)
3797 break;
3798 if (l < itemcnt)
3799 {
3800 p = item[l].start + maxwidth - width;
3801 mch_memmove(p, item[l].start, STRLEN(item[l].start) + 1);
3802 for (s = item[l].start; s < p; s++)
3803 *s = fillchar;
3804 for (l++; l < itemcnt; l++)
3805 item[l].start += maxwidth - width;
3806 width = maxwidth;
3807 }
3808 }
3809
3810 if (hl != NULL)
3811 {
3812 for (l = 0; l < itemcnt; l++)
3813 {
3814 if (item[l].type == Highlight)
3815 {
3816 hl->start = item[l].start;
3817 hl->userhl = item[l].minwid;
3818 hl++;
3819 }
3820 }
3821 hl->start = NULL;
3822 hl->userhl = 0;
3823 }
3824
3825 return width;
3826}
3827#endif /* FEAT_STL_OPT */
3828
3829#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) || defined(PROTO)
3830/*
3831 * Get relative cursor position in window, in the form 99%, using "Top", "Bot"
3832 * or "All" when appropriate.
3833 */
3834 void
3835get_rel_pos(wp, str)
3836 win_T *wp;
3837 char_u *str;
3838{
3839 long above; /* number of lines above window */
3840 long below; /* number of lines below window */
3841
3842 above = wp->w_topline - 1;
3843#ifdef FEAT_DIFF
3844 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
3845#endif
3846 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
3847 if (below <= 0)
3848 STRCPY(str, above == 0 ? _("All") : _("Bot"));
3849 else if (above <= 0)
3850 STRCPY(str, _("Top"));
3851 else
3852 sprintf((char *)str, "%2d%%", above > 1000000L
3853 ? (int)(above / ((above + below) / 100L))
3854 : (int)(above * 100L / (above + below)));
3855}
3856#endif
3857
3858/*
3859 * Append (file 2 of 8) to 'buf', if editing more than one file.
3860 * Return TRUE if it was appended.
3861 */
3862 int
3863append_arg_number(wp, buf, add_file, maxlen)
3864 win_T *wp;
3865 char_u *buf;
3866 int add_file; /* Add "file" before the arg number */
3867 int maxlen; /* maximum nr of chars in buf or zero*/
3868{
3869 char_u *p;
3870
3871 if (ARGCOUNT <= 1) /* nothing to do */
3872 return FALSE;
3873
3874 p = buf + STRLEN(buf); /* go to the end of the buffer */
3875 if (maxlen && p - buf + 35 >= maxlen) /* getting too long */
3876 return FALSE;
3877 *p++ = ' ';
3878 *p++ = '(';
3879 if (add_file)
3880 {
3881 STRCPY(p, "file ");
3882 p += 5;
3883 }
3884 sprintf((char *)p, wp->w_arg_idx_invalid ? "(%d) of %d)"
3885 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
3886 return TRUE;
3887}
3888
3889/*
3890 * If fname is not a full path, make it a full path.
3891 * Returns pointer to allocated memory (NULL for failure).
3892 */
3893 char_u *
3894fix_fname(fname)
3895 char_u *fname;
3896{
3897 /*
3898 * Force expanding the path always for Unix, because symbolic links may
3899 * mess up the full path name, even though it starts with a '/'.
3900 * Also expand when there is ".." in the file name, try to remove it,
3901 * because "c:/src/../README" is equal to "c:/README".
3902 * For MS-Windows also expand names like "longna~1" to "longname".
3903 */
3904#ifdef UNIX
3905 return FullName_save(fname, TRUE);
3906#else
3907 if (!vim_isAbsName(fname) || strstr((char *)fname, "..") != NULL
3908#if defined(MSWIN) || defined(DJGPP)
3909 || vim_strchr(fname, '~') != NULL
3910#endif
3911 )
3912 return FullName_save(fname, FALSE);
3913
3914 fname = vim_strsave(fname);
3915
3916#ifdef USE_FNAME_CASE
3917# ifdef USE_LONG_FNAME
3918 if (USE_LONG_FNAME)
3919# endif
3920 {
3921 if (fname != NULL)
3922 fname_case(fname, 0); /* set correct case for file name */
3923 }
3924#endif
3925
3926 return fname;
3927#endif
3928}
3929
3930/*
3931 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
3932 * "ffname" becomes a pointer to allocated memory (or NULL).
3933 */
3934/*ARGSUSED*/
3935 void
3936fname_expand(buf, ffname, sfname)
3937 buf_T *buf;
3938 char_u **ffname;
3939 char_u **sfname;
3940{
3941 if (*ffname == NULL) /* if no file name given, nothing to do */
3942 return;
3943 if (*sfname == NULL) /* if no short file name given, use ffname */
3944 *sfname = *ffname;
3945 *ffname = fix_fname(*ffname); /* expand to full path */
3946
3947#ifdef FEAT_SHORTCUT
3948 if (!buf->b_p_bin)
3949 {
3950 char_u *rfname = NULL;
3951
3952 /* If the file name is a shortcut file, use the file it links to. */
3953 rfname = mch_resolve_shortcut(*ffname);
3954 if (rfname)
3955 {
3956 vim_free(*ffname);
3957 *ffname = rfname;
3958 *sfname = rfname;
3959 }
3960 }
3961#endif
3962}
3963
3964/*
3965 * Get the file name for an argument list entry.
3966 */
3967 char_u *
3968alist_name(aep)
3969 aentry_T *aep;
3970{
3971 buf_T *bp;
3972
3973 /* Use the name from the associated buffer if it exists. */
3974 bp = buflist_findnr(aep->ae_fnum);
3975 if (bp == NULL)
3976 return aep->ae_fname;
3977 return bp->b_fname;
3978}
3979
3980#if defined(FEAT_WINDOWS) || defined(PROTO)
3981/*
3982 * do_arg_all(): Open up to 'count' windows, one for each argument.
3983 */
3984 void
3985do_arg_all(count, forceit)
3986 int count;
3987 int forceit; /* hide buffers in current windows */
3988{
3989 int i;
3990 win_T *wp, *wpnext;
3991 char_u *opened; /* array of flags for which args are open */
3992 int opened_len; /* lenght of opened[] */
3993 int use_firstwin = FALSE; /* use first window for arglist */
3994 int split_ret = OK;
3995 int p_ea_save;
3996 alist_T *alist; /* argument list to be used */
3997 buf_T *buf;
3998
3999 if (ARGCOUNT <= 0)
4000 {
4001 /* Don't give an error message. We don't want it when the ":all"
4002 * command is in the .vimrc. */
4003 return;
4004 }
4005 setpcmark();
4006
4007 opened_len = ARGCOUNT;
4008 opened = alloc_clear((unsigned)opened_len);
4009 if (opened == NULL)
4010 return;
4011
4012#ifdef FEAT_GUI
4013 need_mouse_correct = TRUE;
4014#endif
4015
4016 /*
4017 * Try closing all windows that are not in the argument list.
4018 * Also close windows that are not full width;
4019 * When 'hidden' or "forceit" set the buffer becomes hidden.
4020 * Windows that have a changed buffer and can't be hidden won't be closed.
4021 */
4022 for (wp = firstwin; wp != NULL; wp = wpnext)
4023 {
4024 wpnext = wp->w_next;
4025 buf = wp->w_buffer;
4026 if (buf->b_ffname == NULL
4027 || buf->b_nwindows > 1
4028#ifdef FEAT_VERTSPLIT
4029 || wp->w_width != Columns
4030#endif
4031 )
4032 i = ARGCOUNT;
4033 else
4034 {
4035 /* check if the buffer in this window is in the arglist */
4036 for (i = 0; i < ARGCOUNT; ++i)
4037 {
4038 if (ARGLIST[i].ae_fnum == buf->b_fnum
4039 || fullpathcmp(alist_name(&ARGLIST[i]),
4040 buf->b_ffname, TRUE) & FPC_SAME)
4041 {
4042 if (i < opened_len)
4043 opened[i] = TRUE;
4044 if (wp->w_alist != curwin->w_alist)
4045 {
4046 /* Use the current argument list for all windows
4047 * containing a file from it. */
4048 alist_unlink(wp->w_alist);
4049 wp->w_alist = curwin->w_alist;
4050 ++wp->w_alist->al_refcount;
4051 }
4052 break;
4053 }
4054 }
4055 }
4056 wp->w_arg_idx = i;
4057
4058 if (i == ARGCOUNT) /* close this window */
4059 {
4060 if (P_HID(buf) || forceit || buf->b_nwindows > 1
4061 || !bufIsChanged(buf))
4062 {
4063 /* If the buffer was changed, and we would like to hide it,
4064 * try autowriting. */
4065 if (!P_HID(buf) && buf->b_nwindows <= 1 && bufIsChanged(buf))
4066 {
4067 (void)autowrite(buf, FALSE);
4068#ifdef FEAT_AUTOCMD
4069 /* check if autocommands removed the window */
4070 if (!win_valid(wp) || !buf_valid(buf))
4071 {
4072 wpnext = firstwin; /* start all over... */
4073 continue;
4074 }
4075#endif
4076 }
4077#ifdef FEAT_WINDOWS
4078 if (firstwin == lastwin) /* can't close last window */
4079#endif
4080 use_firstwin = TRUE;
4081#ifdef FEAT_WINDOWS
4082 else
4083 {
4084 win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4085# ifdef FEAT_AUTOCMD
4086 /* check if autocommands removed the next window */
4087 if (!win_valid(wpnext))
4088 wpnext = firstwin; /* start all over... */
4089# endif
4090 }
4091#endif
4092 }
4093 }
4094 }
4095
4096 /*
4097 * Open a window for files in the argument list that don't have one.
4098 * ARGCOUNT may change while doing this, because of autocommands.
4099 */
4100 if (count > ARGCOUNT || count <= 0)
4101 count = ARGCOUNT;
4102
4103 /* Autocommands may do anything to the argument list. Make sure it's not
4104 * freed while we are working here by "locking" it. We still have to
4105 * watch out for its size to be changed. */
4106 alist = curwin->w_alist;
4107 ++alist->al_refcount;
4108
4109#ifdef FEAT_AUTOCMD
4110 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4111 ++autocmd_no_enter;
4112 ++autocmd_no_leave;
4113#endif
4114 win_enter(lastwin, FALSE);
4115 for (i = 0; i < count && i < alist->al_ga.ga_len && !got_int; ++i)
4116 {
4117 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4118 arg_had_last = TRUE;
4119 if (i < opened_len && opened[i])
4120 {
4121 /* Move the already present window to below the current window */
4122 if (curwin->w_arg_idx != i)
4123 {
4124 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
4125 {
4126 if (wpnext->w_arg_idx == i)
4127 {
4128 win_move_after(wpnext, curwin);
4129 break;
4130 }
4131 }
4132 }
4133 }
4134 else if (split_ret == OK)
4135 {
4136 if (!use_firstwin) /* split current window */
4137 {
4138 p_ea_save = p_ea;
4139 p_ea = TRUE; /* use space from all windows */
4140 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4141 p_ea = p_ea_save;
4142 if (split_ret == FAIL)
4143 continue;
4144 }
4145#ifdef FEAT_AUTOCMD
4146 else /* first window: do autocmd for leaving this buffer */
4147 --autocmd_no_leave;
4148#endif
4149
4150 /*
4151 * edit file i
4152 */
4153 curwin->w_arg_idx = i;
4154 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
4155 ECMD_ONE,
4156 ((P_HID(curwin->w_buffer)
4157 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
4158 + ECMD_OLDBUF);
4159#ifdef FEAT_AUTOCMD
4160 if (use_firstwin)
4161 ++autocmd_no_leave;
4162#endif
4163 use_firstwin = FALSE;
4164 }
4165 ui_breakcheck();
4166 }
4167
4168 /* Remove the "lock" on the argument list. */
4169 alist_unlink(alist);
4170
4171#ifdef FEAT_AUTOCMD
4172 --autocmd_no_enter;
4173#endif
4174 win_enter(firstwin, FALSE); /* back to first window */
4175#ifdef FEAT_AUTOCMD
4176 --autocmd_no_leave;
4177#endif
4178 vim_free(opened);
4179}
4180
4181# if defined(FEAT_LISTCMDS) || defined(PROTO)
4182/*
4183 * Open a window for a number of buffers.
4184 */
4185 void
4186ex_buffer_all(eap)
4187 exarg_T *eap;
4188{
4189 buf_T *buf;
4190 win_T *wp, *wpnext;
4191 int split_ret = OK;
4192 int p_ea_save;
4193 int open_wins = 0;
4194 int r;
4195 int count; /* Maximum number of windows to open. */
4196 int all; /* When TRUE also load inactive buffers. */
4197
4198 if (eap->addr_count == 0) /* make as many windows as possible */
4199 count = 9999;
4200 else
4201 count = eap->line2; /* make as many windows as specified */
4202 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
4203 all = FALSE;
4204 else
4205 all = TRUE;
4206
4207 setpcmark();
4208
4209#ifdef FEAT_GUI
4210 need_mouse_correct = TRUE;
4211#endif
4212
4213 /*
4214 * Close superfluous windows (two windows for the same buffer).
4215 * Also close windows that are not full-width.
4216 */
4217 for (wp = firstwin; wp != NULL; wp = wpnext)
4218 {
4219 wpnext = wp->w_next;
4220 if (wp->w_buffer->b_nwindows > 1
4221#ifdef FEAT_VERTSPLIT
4222 || ((cmdmod.split & WSP_VERT)
4223 ? wp->w_height + wp->w_status_height < Rows - p_ch
4224 : wp->w_width != Columns)
4225#endif
4226 )
4227 {
4228 win_close(wp, FALSE);
4229#ifdef FEAT_AUTOCMD
4230 wpnext = firstwin; /* just in case an autocommand does something
4231 strange with windows */
4232 open_wins = 0;
4233#endif
4234 }
4235 else
4236 ++open_wins;
4237 }
4238
4239 /*
4240 * Go through the buffer list. When a buffer doesn't have a window yet,
4241 * open one. Otherwise move the window to the right position.
4242 * Watch out for autocommands that delete buffers or windows!
4243 */
4244#ifdef FEAT_AUTOCMD
4245 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4246 ++autocmd_no_enter;
4247#endif
4248 win_enter(lastwin, FALSE);
4249#ifdef FEAT_AUTOCMD
4250 ++autocmd_no_leave;
4251#endif
4252 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
4253 {
4254 /* Check if this buffer needs a window */
4255 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
4256 continue;
4257
4258 /* Check if this buffer already has a window */
4259 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4260 if (wp->w_buffer == buf)
4261 break;
4262 /* If the buffer already has a window, move it */
4263 if (wp != NULL)
4264 win_move_after(wp, curwin);
4265 else if (split_ret == OK)
4266 {
4267 /* Split the window and put the buffer in it */
4268 p_ea_save = p_ea;
4269 p_ea = TRUE; /* use space from all windows */
4270 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4271 ++open_wins;
4272 p_ea = p_ea_save;
4273 if (split_ret == FAIL)
4274 continue;
4275
4276 /* Open the buffer in this window. */
4277#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
4278 swap_exists_action = SEA_DIALOG;
4279#endif
4280 set_curbuf(buf, DOBUF_GOTO);
4281#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 if (!buf_valid(buf)) /* autocommands deleted the buffer!!! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004284# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004286# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 break;
4288 }
4289#endif
4290#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
4291 if (swap_exists_action == SEA_QUIT)
4292 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004293# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4294 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004295
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004296 /* Reset the error/interrupt/exception state here so that
4297 * aborting() returns FALSE when closing a window. */
4298 enter_cleanup(&cs);
4299# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004300
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004301 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 win_close(curwin, TRUE);
4303 --open_wins;
4304 swap_exists_action = SEA_NONE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004305
4306# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4307 /* Restore the error/interrupt/exception state if not
4308 * discarded by a new aborting error, interrupt, or uncaught
4309 * exception. */
4310 leave_cleanup(&cs);
4311# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 }
4313 else
4314 handle_swap_exists(NULL);
4315#endif
4316 }
4317
4318 ui_breakcheck();
4319 if (got_int)
4320 {
4321 (void)vgetc(); /* only break the file loading, not the rest */
4322 break;
4323 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004324#ifdef FEAT_EVAL
4325 /* Autocommands deleted the buffer or aborted script processing!!! */
4326 if (aborting())
4327 break;
4328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 }
4330#ifdef FEAT_AUTOCMD
4331 --autocmd_no_enter;
4332#endif
4333 win_enter(firstwin, FALSE); /* back to first window */
4334#ifdef FEAT_AUTOCMD
4335 --autocmd_no_leave;
4336#endif
4337
4338 /*
4339 * Close superfluous windows.
4340 */
4341 for (wp = lastwin; open_wins > count; )
4342 {
4343 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
4344 || autowrite(wp->w_buffer, FALSE) == OK);
4345#ifdef FEAT_AUTOCMD
4346 if (!win_valid(wp))
4347 {
4348 /* BufWrite Autocommands made the window invalid, start over */
4349 wp = lastwin;
4350 }
4351 else
4352#endif
4353 if (r)
4354 {
4355 win_close(wp, !P_HID(wp->w_buffer));
4356 --open_wins;
4357 wp = lastwin;
4358 }
4359 else
4360 {
4361 wp = wp->w_prev;
4362 if (wp == NULL)
4363 break;
4364 }
4365 }
4366}
4367# endif /* FEAT_LISTCMDS */
4368
4369#endif /* FEAT_WINDOWS */
4370
4371/*
4372 * do_modelines() - process mode lines for the current file
4373 *
4374 * Returns immediately if the "ml" option isn't set.
4375 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004376static int chk_modeline __ARGS((linenr_T, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377
4378 void
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004379do_modelines(win_only)
4380 int win_only; /* Only do window-local options. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004382 linenr_T lnum;
4383 int nmlines;
4384 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385
4386 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
4387 return;
4388
4389 /* Disallow recursive entry here. Can happen when executing a modeline
4390 * triggers an autocommand, which reloads modelines with a ":do". */
4391 if (entered)
4392 return;
4393
4394 ++entered;
4395 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
4396 ++lnum)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004397 if (chk_modeline(lnum, win_only) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 nmlines = 0;
4399
4400 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
4401 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004402 if (chk_modeline(lnum, win_only) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 nmlines = 0;
4404 --entered;
4405}
4406
4407#include "version.h" /* for version number */
4408
4409/*
4410 * chk_modeline() - check a single line for a mode string
4411 * Return FAIL if an error encountered.
4412 */
4413 static int
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004414chk_modeline(lnum, win_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 linenr_T lnum;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004416 int win_only; /* Only do window-local options. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417{
4418 char_u *s;
4419 char_u *e;
4420 char_u *linecopy; /* local copy of any modeline found */
4421 int prev;
4422 int vers;
4423 int end;
4424 int retval = OK;
4425 char_u *save_sourcing_name;
4426 linenr_T save_sourcing_lnum;
4427#ifdef FEAT_EVAL
4428 scid_T save_SID;
4429#endif
4430
4431 prev = -1;
4432 for (s = ml_get(lnum); *s != NUL; ++s)
4433 {
4434 if (prev == -1 || vim_isspace(prev))
4435 {
4436 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
4437 || STRNCMP(s, "vi:", (size_t)3) == 0)
4438 break;
4439 if (STRNCMP(s, "vim", 3) == 0)
4440 {
4441 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
4442 e = s + 4;
4443 else
4444 e = s + 3;
4445 vers = getdigits(&e);
4446 if (*e == ':'
4447 && (s[3] == ':'
4448 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
4449 || (VIM_VERSION_100 < vers && s[3] == '<')
4450 || (VIM_VERSION_100 > vers && s[3] == '>')
4451 || (VIM_VERSION_100 == vers && s[3] == '=')))
4452 break;
4453 }
4454 }
4455 prev = *s;
4456 }
4457
4458 if (*s)
4459 {
4460 do /* skip over "ex:", "vi:" or "vim:" */
4461 ++s;
4462 while (s[-1] != ':');
4463
4464 s = linecopy = vim_strsave(s); /* copy the line, it will change */
4465 if (linecopy == NULL)
4466 return FAIL;
4467
4468 save_sourcing_lnum = sourcing_lnum;
4469 save_sourcing_name = sourcing_name;
4470 sourcing_lnum = lnum; /* prepare for emsg() */
4471 sourcing_name = (char_u *)"modelines";
4472
4473 end = FALSE;
4474 while (end == FALSE)
4475 {
4476 s = skipwhite(s);
4477 if (*s == NUL)
4478 break;
4479
4480 /*
4481 * Find end of set command: ':' or end of line.
4482 * Skip over "\:", replacing it with ":".
4483 */
4484 for (e = s; *e != ':' && *e != NUL; ++e)
4485 if (e[0] == '\\' && e[1] == ':')
4486 STRCPY(e, e + 1);
4487 if (*e == NUL)
4488 end = TRUE;
4489
4490 /*
4491 * If there is a "set" command, require a terminating ':' and
4492 * ignore the stuff after the ':'.
4493 * "vi:set opt opt opt: foo" -- foo not interpreted
4494 * "vi:opt opt opt: foo" -- foo interpreted
4495 * Accept "se" for compatibility with Elvis.
4496 */
4497 if (STRNCMP(s, "set ", (size_t)4) == 0
4498 || STRNCMP(s, "se ", (size_t)3) == 0)
4499 {
4500 if (*e != ':') /* no terminating ':'? */
4501 break;
4502 end = TRUE;
4503 s = vim_strchr(s, ' ') + 1;
4504 }
4505 *e = NUL; /* truncate the set command */
4506
4507 if (*s != NUL) /* skip over an empty "::" */
4508 {
4509#ifdef FEAT_EVAL
4510 save_SID = current_SID;
4511 current_SID = SID_MODELINE;
4512#endif
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004513 retval = do_set(s, OPT_MODELINE | OPT_LOCAL
4514 | (win_only ? OPT_WINONLY : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515#ifdef FEAT_EVAL
4516 current_SID = save_SID;
4517#endif
4518 if (retval == FAIL) /* stop if error found */
4519 break;
4520 }
4521 s = e + 1; /* advance to next part */
4522 }
4523
4524 sourcing_lnum = save_sourcing_lnum;
4525 sourcing_name = save_sourcing_name;
4526
4527 vim_free(linecopy);
4528 }
4529 return retval;
4530}
4531
4532#ifdef FEAT_VIMINFO
4533 int
4534read_viminfo_bufferlist(virp, writing)
4535 vir_T *virp;
4536 int writing;
4537{
4538 char_u *tab;
4539 linenr_T lnum;
4540 colnr_T col;
4541 buf_T *buf;
4542 char_u *sfname;
4543 char_u *xline;
4544
4545 /* Handle long line and escaped characters. */
4546 xline = viminfo_readstring(virp, 1, FALSE);
4547
4548 /* don't read in if there are files on the command-line or if writing: */
4549 if (xline != NULL && !writing && ARGCOUNT == 0
4550 && find_viminfo_parameter('%') != NULL)
4551 {
4552 /* Format is: <fname> Tab <lnum> Tab <col>.
4553 * Watch out for a Tab in the file name, work from the end. */
4554 lnum = 0;
4555 col = 0;
4556 tab = vim_strrchr(xline, '\t');
4557 if (tab != NULL)
4558 {
4559 *tab++ = '\0';
4560 col = atoi((char *)tab);
4561 tab = vim_strrchr(xline, '\t');
4562 if (tab != NULL)
4563 {
4564 *tab++ = '\0';
4565 lnum = atol((char *)tab);
4566 }
4567 }
4568
4569 /* Expand "~/" in the file name at "line + 1" to a full path.
4570 * Then try shortening it by comparing with the current directory */
4571 expand_env(xline, NameBuff, MAXPATHL);
4572 mch_dirname(IObuff, IOSIZE);
4573 sfname = shorten_fname(NameBuff, IObuff);
4574 if (sfname == NULL)
4575 sfname = NameBuff;
4576
4577 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
4578 if (buf != NULL) /* just in case... */
4579 {
4580 buf->b_last_cursor.lnum = lnum;
4581 buf->b_last_cursor.col = col;
4582 buflist_setfpos(buf, curwin, lnum, col, FALSE);
4583 }
4584 }
4585 vim_free(xline);
4586
4587 return viminfo_readline(virp);
4588}
4589
4590 void
4591write_viminfo_bufferlist(fp)
4592 FILE *fp;
4593{
4594 buf_T *buf;
4595#ifdef FEAT_WINDOWS
4596 win_T *win;
4597#endif
4598 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004599 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600
4601 if (find_viminfo_parameter('%') == NULL)
4602 return;
4603
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004604 /* Without a number -1 is returned: do all buffers. */
4605 max_buffers = get_viminfo_parameter('%');
4606
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 /* Allocate room for the file name, lnum and col. */
4608 line = alloc(MAXPATHL + 30);
4609 if (line == NULL)
4610 return;
4611
4612#ifdef FEAT_WINDOWS
4613 for (win = firstwin; win != NULL; win = win->w_next)
4614 set_last_cursor(win);
4615#else
4616 set_last_cursor(curwin);
4617#endif
4618
4619 fprintf(fp, _("\n# Buffer list:\n"));
4620 for (buf = firstbuf; buf != NULL ; buf = buf->b_next)
4621 {
4622 if (buf->b_fname == NULL
4623 || !buf->b_p_bl
4624#ifdef FEAT_QUICKFIX
4625 || bt_quickfix(buf)
4626#endif
4627 || removable(buf->b_ffname))
4628 continue;
4629
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004630 if (max_buffers-- == 0)
4631 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 putc('%', fp);
4633 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
4634 sprintf((char *)line + STRLEN(line), "\t%ld\t%d",
4635 (long)buf->b_last_cursor.lnum,
4636 buf->b_last_cursor.col);
4637 viminfo_writestring(fp, line);
4638 }
4639 vim_free(line);
4640}
4641#endif
4642
4643
4644/*
4645 * Return special buffer name.
4646 * Returns NULL when the buffer has a normal file name.
4647 */
4648 char *
4649buf_spname(buf)
4650 buf_T *buf;
4651{
4652#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
4653 if (bt_quickfix(buf))
4654 return _("[Error List]");
4655#endif
4656#ifdef FEAT_QUICKFIX
4657 /* There is no _file_ when 'buftype' is "nofile", b_sfname
4658 * contains the name as specified by the user */
4659 if (bt_nofile(buf))
4660 {
4661 if (buf->b_sfname != NULL)
4662 return (char *)buf->b_sfname;
4663 return "[Scratch]";
4664 }
4665#endif
4666 if (buf->b_fname == NULL)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004667 return _("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 return NULL;
4669}
4670
4671
4672#if defined(FEAT_SIGNS) || defined(PROTO)
4673/*
4674 * Insert the sign into the signlist.
4675 */
4676 static void
4677insert_sign(buf, prev, next, id, lnum, typenr)
4678 buf_T *buf; /* buffer to store sign in */
4679 signlist_T *prev; /* previous sign entry */
4680 signlist_T *next; /* next sign entry */
4681 int id; /* sign ID */
4682 linenr_T lnum; /* line number which gets the mark */
4683 int typenr; /* typenr of sign we are adding */
4684{
4685 signlist_T *newsign;
4686
4687 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
4688 if (newsign != NULL)
4689 {
4690 newsign->id = id;
4691 newsign->lnum = lnum;
4692 newsign->typenr = typenr;
4693 newsign->next = next;
4694#ifdef FEAT_NETBEANS_INTG
4695 newsign->prev = prev;
4696 if (next != NULL)
4697 next->prev = newsign;
4698#endif
4699
4700 if (prev == NULL)
4701 {
4702 /* When adding first sign need to redraw the windows to create the
4703 * column for signs. */
4704 if (buf->b_signlist == NULL)
4705 {
4706 redraw_buf_later(buf, NOT_VALID);
4707 changed_cline_bef_curs();
4708 }
4709
4710 /* first sign in signlist */
4711 buf->b_signlist = newsign;
4712 }
4713 else
4714 prev->next = newsign;
4715 }
4716}
4717
4718/*
4719 * Add the sign into the signlist. Find the right spot to do it though.
4720 */
4721 void
4722buf_addsign(buf, id, lnum, typenr)
4723 buf_T *buf; /* buffer to store sign in */
4724 int id; /* sign ID */
4725 linenr_T lnum; /* line number which gets the mark */
4726 int typenr; /* typenr of sign we are adding */
4727{
4728 signlist_T *sign; /* a sign in the signlist */
4729 signlist_T *prev; /* the previous sign */
4730
4731 prev = NULL;
4732 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4733 {
4734 if (lnum == sign->lnum && id == sign->id)
4735 {
4736 sign->typenr = typenr;
4737 return;
4738 }
4739 else if (
4740#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
4741 id < 0 &&
4742#endif
4743 lnum < sign->lnum)
4744 {
4745#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
4746 /* XXX - GRP: Is this because of sign slide problem? Or is it
4747 * really needed? Or is it because we allow multiple signs per
4748 * line? If so, should I add that feature to FEAT_SIGNS?
4749 */
4750 while (prev != NULL && prev->lnum == lnum)
4751 prev = prev->prev;
4752 if (prev == NULL)
4753 sign = buf->b_signlist;
4754 else
4755 sign = prev->next;
4756#endif
4757 insert_sign(buf, prev, sign, id, lnum, typenr);
4758 return;
4759 }
4760 prev = sign;
4761 }
4762#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
4763 /* XXX - GRP: See previous comment */
4764 while (prev != NULL && prev->lnum == lnum)
4765 prev = prev->prev;
4766 if (prev == NULL)
4767 sign = buf->b_signlist;
4768 else
4769 sign = prev->next;
4770#endif
4771 insert_sign(buf, prev, sign, id, lnum, typenr);
4772
4773 return;
4774}
4775
4776 int
4777buf_change_sign_type(buf, markId, typenr)
4778 buf_T *buf; /* buffer to store sign in */
4779 int markId; /* sign ID */
4780 int typenr; /* typenr of sign we are adding */
4781{
4782 signlist_T *sign; /* a sign in the signlist */
4783
4784 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4785 {
4786 if (sign->id == markId)
4787 {
4788 sign->typenr = typenr;
4789 return sign->lnum;
4790 }
4791 }
4792
4793 return 0;
4794}
4795
4796 int_u
4797buf_getsigntype(buf, lnum, type)
4798 buf_T *buf;
4799 linenr_T lnum;
4800 int type; /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
4801{
4802 signlist_T *sign; /* a sign in a b_signlist */
4803
4804 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4805 if (sign->lnum == lnum
4806 && (type == SIGN_ANY
4807# ifdef FEAT_SIGN_ICONS
4808 || (type == SIGN_ICON
4809 && sign_get_image(sign->typenr) != NULL)
4810# endif
4811 || (type == SIGN_TEXT
4812 && sign_get_text(sign->typenr) != NULL)
4813 || (type == SIGN_LINEHL
4814 && sign_get_attr(sign->typenr, TRUE) != 0)))
4815 return sign->typenr;
4816 return 0;
4817}
4818
4819
4820 linenr_T
4821buf_delsign(buf, id)
4822 buf_T *buf; /* buffer sign is stored in */
4823 int id; /* sign id */
4824{
4825 signlist_T **lastp; /* pointer to pointer to current sign */
4826 signlist_T *sign; /* a sign in a b_signlist */
4827 signlist_T *next; /* the next sign in a b_signlist */
4828 linenr_T lnum; /* line number whose sign was deleted */
4829
4830 lastp = &buf->b_signlist;
4831 lnum = 0;
4832 for (sign = buf->b_signlist; sign != NULL; sign = next)
4833 {
4834 next = sign->next;
4835 if (sign->id == id)
4836 {
4837 *lastp = next;
4838#ifdef FEAT_NETBEANS_INTG
4839 if (next != NULL)
4840 next->prev = sign->prev;
4841#endif
4842 lnum = sign->lnum;
4843 vim_free(sign);
4844 break;
4845 }
4846 else
4847 lastp = &sign->next;
4848 }
4849
4850 /* When deleted the last sign need to redraw the windows to remove the
4851 * sign column. */
4852 if (buf->b_signlist == NULL)
4853 {
4854 redraw_buf_later(buf, NOT_VALID);
4855 changed_cline_bef_curs();
4856 }
4857
4858 return lnum;
4859}
4860
4861
4862/*
4863 * Find the line number of the sign with the requested id. If the sign does
4864 * not exist, return 0 as the line number. This will still let the correct file
4865 * get loaded.
4866 */
4867 int
4868buf_findsign(buf, id)
4869 buf_T *buf; /* buffer to store sign in */
4870 int id; /* sign ID */
4871{
4872 signlist_T *sign; /* a sign in the signlist */
4873
4874 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4875 if (sign->id == id)
4876 return sign->lnum;
4877
4878 return 0;
4879}
4880
4881 int
4882buf_findsign_id(buf, lnum)
4883 buf_T *buf; /* buffer whose sign we are searching for */
4884 linenr_T lnum; /* line number of sign */
4885{
4886 signlist_T *sign; /* a sign in the signlist */
4887
4888 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4889 if (sign->lnum == lnum)
4890 return sign->id;
4891
4892 return 0;
4893}
4894
4895
4896# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
4897/* see if a given type of sign exists on a specific line */
4898 int
4899buf_findsigntype_id(buf, lnum, typenr)
4900 buf_T *buf; /* buffer whose sign we are searching for */
4901 linenr_T lnum; /* line number of sign */
4902 int typenr; /* sign type number */
4903{
4904 signlist_T *sign; /* a sign in the signlist */
4905
4906 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4907 if (sign->lnum == lnum && sign->typenr == typenr)
4908 return sign->id;
4909
4910 return 0;
4911}
4912
4913
4914# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
4915/* return the number of icons on the given line */
4916 int
4917buf_signcount(buf, lnum)
4918 buf_T *buf;
4919 linenr_T lnum;
4920{
4921 signlist_T *sign; /* a sign in the signlist */
4922 int count = 0;
4923
4924 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4925 if (sign->lnum == lnum)
4926 if (sign_get_image(sign->typenr) != NULL)
4927 count++;
4928
4929 return count;
4930}
4931# endif /* FEAT_SIGN_ICONS */
4932# endif /* FEAT_NETBEANS_INTG */
4933
4934
4935/*
4936 * Delete signs in buffer "buf".
4937 */
4938 static void
4939buf_delete_signs(buf)
4940 buf_T *buf;
4941{
4942 signlist_T *next;
4943
4944 while (buf->b_signlist != NULL)
4945 {
4946 next = buf->b_signlist->next;
4947 vim_free(buf->b_signlist);
4948 buf->b_signlist = next;
4949 }
4950}
4951
4952/*
4953 * Delete all signs in all buffers.
4954 */
4955 void
4956buf_delete_all_signs()
4957{
4958 buf_T *buf; /* buffer we are checking for signs */
4959
4960 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
4961 if (buf->b_signlist != NULL)
4962 {
4963 /* Need to redraw the windows to remove the sign column. */
4964 redraw_buf_later(buf, NOT_VALID);
4965 buf_delete_signs(buf);
4966 }
4967}
4968
4969/*
4970 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
4971 */
4972 void
4973sign_list_placed(rbuf)
4974 buf_T *rbuf;
4975{
4976 buf_T *buf;
4977 signlist_T *p;
4978 char lbuf[BUFSIZ];
4979
4980 MSG_PUTS_TITLE(_("\n--- Signs ---"));
4981 msg_putchar('\n');
4982 if (rbuf == NULL)
4983 buf = firstbuf;
4984 else
4985 buf = rbuf;
4986 while (buf != NULL)
4987 {
4988 if (buf->b_signlist != NULL)
4989 {
4990#ifdef HAVE_SNPRINTF
4991 snprintf
4992#else
4993 sprintf
4994#endif
4995 (lbuf,
4996#ifdef HAVE_SNPRINTF
4997 BUFSIZ,
4998#endif
4999 _("Signs for %s:"), buf->b_fname);
5000 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
5001 msg_putchar('\n');
5002 }
5003 for (p = buf->b_signlist; p != NULL; p = p->next)
5004 {
5005 sprintf(lbuf, _(" line=%ld id=%d name=%s"),
5006 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
5007 MSG_PUTS(lbuf);
5008 msg_putchar('\n');
5009 }
5010 if (rbuf != NULL)
5011 break;
5012 buf = buf->b_next;
5013 }
5014}
5015
5016/*
5017 * Adjust a placed sign for inserted/deleted lines.
5018 */
5019 void
5020sign_mark_adjust(line1, line2, amount, amount_after)
5021 linenr_T line1;
5022 linenr_T line2;
5023 long amount;
5024 long amount_after;
5025{
5026 signlist_T *sign; /* a sign in a b_signlist */
5027
5028 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
5029 {
5030 if (sign->lnum >= line1 && sign->lnum <= line2)
5031 {
5032 if (amount == MAXLNUM)
5033 sign->lnum = line1;
5034 else
5035 sign->lnum += amount;
5036 }
5037 else if (sign->lnum > line2)
5038 sign->lnum += amount_after;
5039 }
5040}
5041#endif /* FEAT_SIGNS */
5042
5043/*
5044 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5045 */
5046 void
5047set_buflisted(on)
5048 int on;
5049{
5050 if (on != curbuf->b_p_bl)
5051 {
5052 curbuf->b_p_bl = on;
5053#ifdef FEAT_AUTOCMD
5054 if (on)
5055 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5056 else
5057 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
5058#endif
5059 }
5060}
5061
5062/*
5063 * Read the file for "buf" again and check if the contents changed.
5064 * Return TRUE if it changed or this could not be checked.
5065 */
5066 int
5067buf_contents_changed(buf)
5068 buf_T *buf;
5069{
5070 buf_T *newbuf;
5071 int differ = TRUE;
5072 linenr_T lnum;
5073#ifdef FEAT_AUTOCMD
5074 aco_save_T aco;
5075#else
5076 buf_T *old_curbuf = curbuf;
5077#endif
5078 exarg_T ea;
5079
5080 /* Allocate a buffer without putting it in the buffer list. */
5081 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5082 if (newbuf == NULL)
5083 return TRUE;
5084
5085 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5086 if (prep_exarg(&ea, buf) == FAIL)
5087 {
5088 wipe_buffer(newbuf, FALSE);
5089 return TRUE;
5090 }
5091
5092#ifdef FEAT_AUTOCMD
5093 /* set curwin/curbuf to buf and save a few things */
5094 aucmd_prepbuf(&aco, newbuf);
5095#else
5096 curbuf = newbuf;
5097 curwin->w_buffer = newbuf;
5098#endif
5099
5100 if (ml_open() == OK
5101 && readfile(buf->b_ffname, buf->b_fname,
5102 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5103 &ea, READ_NEW | READ_DUMMY) == OK)
5104 {
5105 /* compare the two files line by line */
5106 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5107 {
5108 differ = FALSE;
5109 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5110 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5111 {
5112 differ = TRUE;
5113 break;
5114 }
5115 }
5116 }
5117 vim_free(ea.cmd);
5118
5119#ifdef FEAT_AUTOCMD
5120 /* restore curwin/curbuf and a few other things */
5121 aucmd_restbuf(&aco);
5122#else
5123 curbuf = old_curbuf;
5124 curwin->w_buffer = old_curbuf;
5125#endif
5126
5127 if (curbuf != newbuf) /* safety check */
5128 wipe_buffer(newbuf, FALSE);
5129
5130 return differ;
5131}
5132
5133/*
5134 * Wipe out a buffer and decrement the last buffer number if it was used for
5135 * this buffer. Call this to wipe out a temp buffer that does not contain any
5136 * marks.
5137 */
5138/*ARGSUSED*/
5139 void
5140wipe_buffer(buf, aucmd)
5141 buf_T *buf;
5142 int aucmd; /* When TRUE trigger autocommands. */
5143{
5144 if (buf->b_fnum == top_file_num - 1)
5145 --top_file_num;
5146
5147#ifdef FEAT_AUTOCMD
5148 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
5149 ++autocmd_block;
5150#endif
5151 close_buffer(NULL, buf, DOBUF_WIPE);
5152#ifdef FEAT_AUTOCMD
5153 if (!aucmd)
5154 --autocmd_block;
5155#endif
5156}