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