blob: 993e14d34b0c3ca3237f5c60967d1d3cfcbe8ae9 [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);
Bram Moolenaara0dea672005-03-20 22:23:10 +00001724 clear_string_option(&buf->b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725#endif
1726#ifdef FEAT_SEARCHPATH
1727 clear_string_option(&buf->b_p_sua);
1728#endif
1729#ifdef FEAT_AUTOCMD
1730 clear_string_option(&buf->b_p_ft);
1731#endif
1732#ifdef FEAT_OSFILETYPE
1733 clear_string_option(&buf->b_p_oft);
1734#endif
1735#ifdef FEAT_CINDENT
1736 clear_string_option(&buf->b_p_cink);
1737 clear_string_option(&buf->b_p_cino);
1738#endif
1739#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
1740 clear_string_option(&buf->b_p_cinw);
1741#endif
1742#ifdef FEAT_INS_EXPAND
1743 clear_string_option(&buf->b_p_cpt);
1744#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001745#ifdef FEAT_COMPL_FUNC
1746 clear_string_option(&buf->b_p_cfu);
1747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748#ifdef FEAT_QUICKFIX
1749 clear_string_option(&buf->b_p_gp);
1750 clear_string_option(&buf->b_p_mp);
1751 clear_string_option(&buf->b_p_efm);
1752#endif
1753 clear_string_option(&buf->b_p_ep);
1754 clear_string_option(&buf->b_p_path);
1755 clear_string_option(&buf->b_p_tags);
1756#ifdef FEAT_INS_EXPAND
1757 clear_string_option(&buf->b_p_dict);
1758 clear_string_option(&buf->b_p_tsr);
1759#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001760#ifdef FEAT_TEXTOBJ
1761 clear_string_option(&buf->b_p_qe);
1762#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 buf->b_p_ar = -1;
1764}
1765
1766/*
1767 * get alternate file n
1768 * set linenr to lnum or altfpos.lnum if lnum == 0
1769 * also set cursor column to altfpos.col if 'startofline' is not set.
1770 * if (options & GETF_SETMARK) call setpcmark()
1771 * if (options & GETF_ALT) we are jumping to an alternate file.
1772 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
1773 *
1774 * return FAIL for failure, OK for success
1775 */
1776 int
1777buflist_getfile(n, lnum, options, forceit)
1778 int n;
1779 linenr_T lnum;
1780 int options;
1781 int forceit;
1782{
1783 buf_T *buf;
1784#ifdef FEAT_WINDOWS
1785 win_T *wp = NULL;
1786#endif
1787 pos_T *fpos;
1788 colnr_T col;
1789
1790 buf = buflist_findnr(n);
1791 if (buf == NULL)
1792 {
1793 if ((options & GETF_ALT) && n == 0)
1794 EMSG(_(e_noalt));
1795 else
1796 EMSGN(_("E92: Buffer %ld not found"), n);
1797 return FAIL;
1798 }
1799
1800 /* if alternate file is the current buffer, nothing to do */
1801 if (buf == curbuf)
1802 return OK;
1803
1804#ifdef FEAT_CMDWIN
1805 if (cmdwin_type != 0)
1806 return FAIL;
1807#endif
1808
1809 /* altfpos may be changed by getfile(), get it now */
1810 if (lnum == 0)
1811 {
1812 fpos = buflist_findfpos(buf);
1813 lnum = fpos->lnum;
1814 col = fpos->col;
1815 }
1816 else
1817 col = 0;
1818
1819#ifdef FEAT_WINDOWS
1820 if (options & GETF_SWITCH)
1821 {
1822 /* use existing open window for buffer if wanted */
1823 if (vim_strchr(p_swb, 'u')) /* useopen */
1824 wp = buf_jump_open_win(buf);
1825 /* split window if wanted ("split") */
1826 if (wp == NULL && vim_strchr(p_swb, 't') && !bufempty())
1827 {
1828 if (win_split(0, 0) == FAIL)
1829 return FAIL;
1830# ifdef FEAT_SCROLLBIND
1831 curwin->w_p_scb = FALSE;
1832# endif
1833 }
1834 }
1835#endif
1836
1837 ++RedrawingDisabled;
1838 if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK),
1839 lnum, forceit) <= 0)
1840 {
1841 --RedrawingDisabled;
1842
1843 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
1844 if (!p_sol && col != 0)
1845 {
1846 curwin->w_cursor.col = col;
1847 check_cursor_col();
1848#ifdef FEAT_VIRTUALEDIT
1849 curwin->w_cursor.coladd = 0;
1850#endif
1851 curwin->w_set_curswant = TRUE;
1852 }
1853 return OK;
1854 }
1855 --RedrawingDisabled;
1856 return FAIL;
1857}
1858
1859/*
1860 * go to the last know line number for the current buffer
1861 */
1862 void
1863buflist_getfpos()
1864{
1865 pos_T *fpos;
1866
1867 fpos = buflist_findfpos(curbuf);
1868
1869 curwin->w_cursor.lnum = fpos->lnum;
1870 check_cursor_lnum();
1871
1872 if (p_sol)
1873 curwin->w_cursor.col = 0;
1874 else
1875 {
1876 curwin->w_cursor.col = fpos->col;
1877 check_cursor_col();
1878#ifdef FEAT_VIRTUALEDIT
1879 curwin->w_cursor.coladd = 0;
1880#endif
1881 curwin->w_set_curswant = TRUE;
1882 }
1883}
1884
Bram Moolenaar81695252004-12-29 20:58:21 +00001885#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
1886/*
1887 * Find file in buffer list by name (it has to be for the current window).
1888 * Returns NULL if not found.
1889 */
1890 buf_T *
1891buflist_findname_exp(fname)
1892 char_u *fname;
1893{
1894 char_u *ffname;
1895 buf_T *buf = NULL;
1896
1897 /* First make the name into a full path name */
1898 ffname = FullName_save(fname,
1899#ifdef UNIX
1900 TRUE /* force expansion, get rid of symbolic links */
1901#else
1902 FALSE
1903#endif
1904 );
1905 if (ffname != NULL)
1906 {
1907 buf = buflist_findname(ffname);
1908 vim_free(ffname);
1909 }
1910 return buf;
1911}
1912#endif
1913
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914/*
1915 * Find file in buffer list by name (it has to be for the current window).
1916 * "ffname" must have a full path.
Bram Moolenaar81695252004-12-29 20:58:21 +00001917 * Skips dummy buffers.
1918 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 */
1920 buf_T *
1921buflist_findname(ffname)
1922 char_u *ffname;
1923{
1924#ifdef UNIX
1925 struct stat st;
1926
1927 if (mch_stat((char *)ffname, &st) < 0)
1928 st.st_dev = (dev_T)-1;
1929 return buflist_findname_stat(ffname, &st);
1930}
1931
1932/*
1933 * Same as buflist_findname(), but pass the stat structure to avoid getting it
1934 * twice for the same file.
Bram Moolenaar81695252004-12-29 20:58:21 +00001935 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 */
1937 static buf_T *
1938buflist_findname_stat(ffname, stp)
1939 char_u *ffname;
1940 struct stat *stp;
1941{
1942#endif
1943 buf_T *buf;
1944
1945 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
Bram Moolenaar81695252004-12-29 20:58:21 +00001946 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947#ifdef UNIX
1948 , stp
1949#endif
1950 ))
1951 return buf;
1952 return NULL;
1953}
1954
1955#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) || defined(PROTO)
1956/*
1957 * Find file in buffer list by a regexp pattern.
1958 * Return fnum of the found buffer.
1959 * Return < 0 for error.
1960 */
1961/*ARGSUSED*/
1962 int
1963buflist_findpat(pattern, pattern_end, unlisted, diffmode)
1964 char_u *pattern;
1965 char_u *pattern_end; /* pointer to first char after pattern */
1966 int unlisted; /* find unlisted buffers */
1967 int diffmode; /* find diff-mode buffers only */
1968{
1969 buf_T *buf;
1970 regprog_T *prog;
1971 int match = -1;
1972 int find_listed;
1973 char_u *pat;
1974 char_u *patend;
1975 int attempt;
1976 char_u *p;
1977 int toggledollar;
1978
1979 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
1980 {
1981 if (*pattern == '%')
1982 match = curbuf->b_fnum;
1983 else
1984 match = curwin->w_alt_fnum;
1985#ifdef FEAT_DIFF
1986 if (diffmode && !diff_mode_buf(buflist_findnr(match)))
1987 match = -1;
1988#endif
1989 }
1990
1991 /*
1992 * Try four ways of matching a listed buffer:
1993 * attempt == 0: without '^' or '$' (at any position)
1994 * attempt == 1: with '^' at start (only at postion 0)
1995 * attempt == 2: with '$' at end (only match at end)
1996 * attempt == 3: with '^' at start and '$' at end (only full match)
1997 * Repeat this for finding an unlisted buffer if there was no matching
1998 * listed buffer.
1999 */
2000 else
2001 {
2002 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2003 if (pat == NULL)
2004 return -1;
2005 patend = pat + STRLEN(pat) - 1;
2006 toggledollar = (patend > pat && *patend == '$');
2007
2008 /* First try finding a listed buffer. If not found and "unlisted"
2009 * is TRUE, try finding an unlisted buffer. */
2010 find_listed = TRUE;
2011 for (;;)
2012 {
2013 for (attempt = 0; attempt <= 3; ++attempt)
2014 {
2015 /* may add '^' and '$' */
2016 if (toggledollar)
2017 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2018 p = pat;
2019 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */
2020 ++p;
2021 prog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2022 if (prog == NULL)
2023 {
2024 vim_free(pat);
2025 return -1;
2026 }
2027
2028 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2029 if (buf->b_p_bl == find_listed
2030#ifdef FEAT_DIFF
2031 && (!diffmode || diff_mode_buf(buf))
2032#endif
2033 && buflist_match(prog, buf) != NULL)
2034 {
2035 if (match >= 0) /* already found a match */
2036 {
2037 match = -2;
2038 break;
2039 }
2040 match = buf->b_fnum; /* remember first match */
2041 }
2042
2043 vim_free(prog);
2044 if (match >= 0) /* found one match */
2045 break;
2046 }
2047
2048 /* Only search for unlisted buffers if there was no match with
2049 * a listed buffer. */
2050 if (!unlisted || !find_listed || match != -1)
2051 break;
2052 find_listed = FALSE;
2053 }
2054
2055 vim_free(pat);
2056 }
2057
2058 if (match == -2)
2059 EMSG2(_("E93: More than one match for %s"), pattern);
2060 else if (match < 0)
2061 EMSG2(_("E94: No matching buffer for %s"), pattern);
2062 return match;
2063}
2064#endif
2065
2066#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2067
2068/*
2069 * Find all buffer names that match.
2070 * For command line expansion of ":buf" and ":sbuf".
2071 * Return OK if matches found, FAIL otherwise.
2072 */
2073 int
2074ExpandBufnames(pat, num_file, file, options)
2075 char_u *pat;
2076 int *num_file;
2077 char_u ***file;
2078 int options;
2079{
2080 int count = 0;
2081 buf_T *buf;
2082 int round;
2083 char_u *p;
2084 int attempt;
2085 regprog_T *prog;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002086 char_u *patc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087
2088 *num_file = 0; /* return values in case of FAIL */
2089 *file = NULL;
2090
Bram Moolenaar05159a02005-02-26 23:04:13 +00002091 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2092 if (*pat == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002094 patc = alloc((unsigned)STRLEN(pat) + 11);
2095 if (patc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002097 STRCPY(patc, "\\(^\\|[\\/]\\)");
2098 STRCPY(patc + 11, pat + 1);
2099 }
2100 else
2101 patc = pat;
2102
2103 /*
2104 * attempt == 0: try match with '\<', match at start of word
2105 * attempt == 2: try match without '\<', match anywhere
2106 */
2107 for (attempt = 0; attempt <= 2; attempt += 2)
2108 {
2109 if (attempt == 2 && patc == pat)
2110 break; /* there was no anchor, no need to try again */
2111 prog = vim_regcomp(patc + attempt, RE_MAGIC);
2112 if (prog == NULL)
2113 {
2114 if (patc != pat)
2115 vim_free(patc);
2116 return FAIL;
2117 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118
2119 /*
2120 * round == 1: Count the matches.
2121 * round == 2: Build the array to keep the matches.
2122 */
2123 for (round = 1; round <= 2; ++round)
2124 {
2125 count = 0;
2126 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2127 {
2128 if (!buf->b_p_bl) /* skip unlisted buffers */
2129 continue;
2130 p = buflist_match(prog, buf);
2131 if (p != NULL)
2132 {
2133 if (round == 1)
2134 ++count;
2135 else
2136 {
2137 if (options & WILD_HOME_REPLACE)
2138 p = home_replace_save(buf, p);
2139 else
2140 p = vim_strsave(p);
2141 (*file)[count++] = p;
2142 }
2143 }
2144 }
2145 if (count == 0) /* no match found, break here */
2146 break;
2147 if (round == 1)
2148 {
2149 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2150 if (*file == NULL)
2151 {
2152 vim_free(prog);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002153 if (patc != pat)
2154 vim_free(patc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 return FAIL;
2156 }
2157 }
2158 }
2159 vim_free(prog);
2160 if (count) /* match(es) found, break here */
2161 break;
2162 }
2163
Bram Moolenaar05159a02005-02-26 23:04:13 +00002164 if (patc != pat)
2165 vim_free(patc);
2166
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 *num_file = count;
2168 return (count == 0 ? FAIL : OK);
2169}
2170
2171#endif /* FEAT_CMDL_COMPL */
2172
2173#ifdef HAVE_BUFLIST_MATCH
2174/*
2175 * Check for a match on the file name for buffer "buf" with regprog "prog".
2176 */
2177 static char_u *
2178buflist_match(prog, buf)
2179 regprog_T *prog;
2180 buf_T *buf;
2181{
2182 char_u *match;
2183
2184 /* First try the short file name, then the long file name. */
2185 match = fname_match(prog, buf->b_sfname);
2186 if (match == NULL)
2187 match = fname_match(prog, buf->b_ffname);
2188
2189 return match;
2190}
2191
2192/*
2193 * Try matching the regexp in "prog" with file name "name".
2194 * Return "name" when there is a match, NULL when not.
2195 */
2196 static char_u *
2197fname_match(prog, name)
2198 regprog_T *prog;
2199 char_u *name;
2200{
2201 char_u *match = NULL;
2202 char_u *p;
2203 regmatch_T regmatch;
2204
2205 if (name != NULL)
2206 {
2207 regmatch.regprog = prog;
2208#ifdef CASE_INSENSITIVE_FILENAME
2209 regmatch.rm_ic = TRUE; /* Always ignore case */
2210#else
2211 regmatch.rm_ic = FALSE; /* Never ignore case */
2212#endif
2213
2214 if (vim_regexec(&regmatch, name, (colnr_T)0))
2215 match = name;
2216 else
2217 {
2218 /* Replace $(HOME) with '~' and try matching again. */
2219 p = home_replace_save(NULL, name);
2220 if (p != NULL && vim_regexec(&regmatch, p, (colnr_T)0))
2221 match = name;
2222 vim_free(p);
2223 }
2224 }
2225
2226 return match;
2227}
2228#endif
2229
2230/*
2231 * find file in buffer list by number
2232 */
2233 buf_T *
2234buflist_findnr(nr)
2235 int nr;
2236{
2237 buf_T *buf;
2238
2239 if (nr == 0)
2240 nr = curwin->w_alt_fnum;
2241 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2242 if (buf->b_fnum == nr)
2243 return (buf);
2244 return NULL;
2245}
2246
2247/*
2248 * Get name of file 'n' in the buffer list.
2249 * When the file has no name an empty string is returned.
2250 * home_replace() is used to shorten the file name (used for marks).
2251 * Returns a pointer to allocated memory, of NULL when failed.
2252 */
2253 char_u *
2254buflist_nr2name(n, fullname, helptail)
2255 int n;
2256 int fullname;
2257 int helptail; /* for help buffers return tail only */
2258{
2259 buf_T *buf;
2260
2261 buf = buflist_findnr(n);
2262 if (buf == NULL)
2263 return NULL;
2264 return home_replace_save(helptail ? buf : NULL,
2265 fullname ? buf->b_ffname : buf->b_fname);
2266}
2267
2268/*
2269 * Set the "lnum" and "col" for the buffer "buf" and the current window.
2270 * When "copy_options" is TRUE save the local window option values.
2271 * When "lnum" is 0 only do the options.
2272 */
2273 static void
2274buflist_setfpos(buf, win, lnum, col, copy_options)
2275 buf_T *buf;
2276 win_T *win;
2277 linenr_T lnum;
2278 colnr_T col;
2279 int copy_options;
2280{
2281 wininfo_T *wip;
2282
2283 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2284 if (wip->wi_win == win)
2285 break;
2286 if (wip == NULL)
2287 {
2288 /* allocate a new entry */
2289 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2290 if (wip == NULL)
2291 return;
2292 wip->wi_win = win;
2293 if (lnum == 0) /* set lnum even when it's 0 */
2294 lnum = 1;
2295 }
2296 else
2297 {
2298 /* remove the entry from the list */
2299 if (wip->wi_prev)
2300 wip->wi_prev->wi_next = wip->wi_next;
2301 else
2302 buf->b_wininfo = wip->wi_next;
2303 if (wip->wi_next)
2304 wip->wi_next->wi_prev = wip->wi_prev;
2305 if (copy_options && wip->wi_optset)
2306 {
2307 clear_winopt(&wip->wi_opt);
2308#ifdef FEAT_FOLDING
2309 deleteFoldRecurse(&wip->wi_folds);
2310#endif
2311 }
2312 }
2313 if (lnum != 0)
2314 {
2315 wip->wi_fpos.lnum = lnum;
2316 wip->wi_fpos.col = col;
2317 }
2318 if (copy_options)
2319 {
2320 /* Save the window-specific option values. */
2321 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2322#ifdef FEAT_FOLDING
2323 wip->wi_fold_manual = win->w_fold_manual;
2324 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2325#endif
2326 wip->wi_optset = TRUE;
2327 }
2328
2329 /* insert the entry in front of the list */
2330 wip->wi_next = buf->b_wininfo;
2331 buf->b_wininfo = wip;
2332 wip->wi_prev = NULL;
2333 if (wip->wi_next)
2334 wip->wi_next->wi_prev = wip;
2335
2336 return;
2337}
2338
2339/*
2340 * Find info for the current window in buffer "buf".
2341 * If not found, return the info for the most recently used window.
2342 * Returns NULL when there isn't any info.
2343 */
2344 static wininfo_T *
2345find_wininfo(buf)
2346 buf_T *buf;
2347{
2348 wininfo_T *wip;
2349
2350 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2351 if (wip->wi_win == curwin)
2352 break;
2353 if (wip == NULL) /* if no fpos for curwin, use the first in the list */
2354 wip = buf->b_wininfo;
2355 return wip;
2356}
2357
2358/*
2359 * Reset the local window options to the values last used in this window.
2360 * If the buffer wasn't used in this window before, use the values from
2361 * the most recently used window. If the values were never set, use the
2362 * global values for the window.
2363 */
2364 void
2365get_winopts(buf)
2366 buf_T *buf;
2367{
2368 wininfo_T *wip;
2369
2370 clear_winopt(&curwin->w_onebuf_opt);
2371#ifdef FEAT_FOLDING
2372 clearFolding(curwin);
2373#endif
2374
2375 wip = find_wininfo(buf);
2376 if (wip != NULL && wip->wi_optset)
2377 {
2378 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2379#ifdef FEAT_FOLDING
2380 curwin->w_fold_manual = wip->wi_fold_manual;
2381 curwin->w_foldinvalid = TRUE;
2382 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2383#endif
2384 }
2385 else
2386 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2387
2388#ifdef FEAT_FOLDING
2389 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2390 if (p_fdls >= 0)
2391 curwin->w_p_fdl = p_fdls;
2392#endif
2393}
2394
2395/*
2396 * Find the position (lnum and col) for the buffer 'buf' for the current
2397 * window.
2398 * Returns a pointer to no_position if no position is found.
2399 */
2400 pos_T *
2401buflist_findfpos(buf)
2402 buf_T *buf;
2403{
2404 wininfo_T *wip;
2405 static pos_T no_position = {1, 0};
2406
2407 wip = find_wininfo(buf);
2408 if (wip != NULL)
2409 return &(wip->wi_fpos);
2410 else
2411 return &no_position;
2412}
2413
2414/*
2415 * Find the lnum for the buffer 'buf' for the current window.
2416 */
2417 linenr_T
2418buflist_findlnum(buf)
2419 buf_T *buf;
2420{
2421 return buflist_findfpos(buf)->lnum;
2422}
2423
2424#if defined(FEAT_LISTCMDS) || defined(PROTO)
2425/*
2426 * List all know file names (for :files and :buffers command).
2427 */
2428/*ARGSUSED*/
2429 void
2430buflist_list(eap)
2431 exarg_T *eap;
2432{
2433 buf_T *buf;
2434 int len;
2435 int i;
2436
2437 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2438 {
2439 /* skip unlisted buffers, unless ! was used */
2440 if (!buf->b_p_bl && !eap->forceit)
2441 continue;
2442 msg_putchar('\n');
2443 if (buf_spname(buf) != NULL)
2444 STRCPY(NameBuff, buf_spname(buf));
2445 else
2446 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
2447
2448 sprintf((char *)IObuff, "%3d%c%c%c%c%c \"",
2449 buf->b_fnum,
2450 buf->b_p_bl ? ' ' : 'u',
2451 buf == curbuf ? '%' :
2452 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
2453 buf->b_ml.ml_mfp == NULL ? ' ' :
2454 (buf->b_nwindows == 0 ? 'h' : 'a'),
2455 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
2456 (buf->b_flags & BF_READERR) ? 'x'
2457 : (bufIsChanged(buf) ? '+' : ' ')
2458 );
2459
2460 len = (int)STRLEN(IObuff);
2461 STRNCPY(IObuff + len, NameBuff, IOSIZE - 20 - len);
2462 IObuff[IOSIZE - 20 - len] = NUL; /* make sure it's terminated */
2463
2464 len = (int)STRLEN(IObuff);
2465 IObuff[len++] = '"';
2466
2467 /* put "line 999" in column 40 or after the file name */
2468 IObuff[len] = NUL;
2469 i = 40 - vim_strsize(IObuff);
2470 do
2471 {
2472 IObuff[len++] = ' ';
2473 } while (--i > 0 && len < IOSIZE - 18);
2474 sprintf((char *)IObuff + len, _("line %ld"),
2475 buf == curbuf ? curwin->w_cursor.lnum :
2476 (long)buflist_findlnum(buf));
2477 msg_outtrans(IObuff);
2478 out_flush(); /* output one line at a time */
2479 ui_breakcheck();
2480 }
2481}
2482#endif
2483
2484/*
2485 * Get file name and line number for file 'fnum'.
2486 * Used by DoOneCmd() for translating '%' and '#'.
2487 * Used by insert_reg() and cmdline_paste() for '#' register.
2488 * Return FAIL if not found, OK for success.
2489 */
2490 int
2491buflist_name_nr(fnum, fname, lnum)
2492 int fnum;
2493 char_u **fname;
2494 linenr_T *lnum;
2495{
2496 buf_T *buf;
2497
2498 buf = buflist_findnr(fnum);
2499 if (buf == NULL || buf->b_fname == NULL)
2500 return FAIL;
2501
2502 *fname = buf->b_fname;
2503 *lnum = buflist_findlnum(buf);
2504
2505 return OK;
2506}
2507
2508/*
2509 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
2510 * The file name with the full path is also remembered, for when :cd is used.
2511 * Returns FAIL for failure (file name already in use by other buffer)
2512 * OK otherwise.
2513 */
2514 int
2515setfname(buf, ffname, sfname, message)
2516 buf_T *buf;
2517 char_u *ffname, *sfname;
Bram Moolenaar81695252004-12-29 20:58:21 +00002518 int message; /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519{
Bram Moolenaar81695252004-12-29 20:58:21 +00002520 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521#ifdef UNIX
2522 struct stat st;
2523#endif
2524
2525 if (ffname == NULL || *ffname == NUL)
2526 {
2527 /* Removing the name. */
2528 vim_free(buf->b_ffname);
2529 vim_free(buf->b_sfname);
2530 buf->b_ffname = NULL;
2531 buf->b_sfname = NULL;
2532#ifdef UNIX
2533 st.st_dev = (dev_T)-1;
2534#endif
2535 }
2536 else
2537 {
2538 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
2539 if (ffname == NULL) /* out of memory */
2540 return FAIL;
2541
2542 /*
2543 * if the file name is already used in another buffer:
2544 * - if the buffer is loaded, fail
2545 * - if the buffer is not loaded, delete it from the list
2546 */
2547#ifdef UNIX
2548 if (mch_stat((char *)ffname, &st) < 0)
2549 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00002550#endif
2551 if (!(buf->b_flags & BF_DUMMY))
2552#ifdef UNIX
2553 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554#else
Bram Moolenaar81695252004-12-29 20:58:21 +00002555 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556#endif
2557 if (obuf != NULL && obuf != buf)
2558 {
2559 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
2560 {
2561 if (message)
2562 EMSG(_("E95: Buffer with this name already exists"));
2563 vim_free(ffname);
2564 return FAIL;
2565 }
2566 close_buffer(NULL, obuf, DOBUF_WIPE); /* delete from the list */
2567 }
2568 sfname = vim_strsave(sfname);
2569 if (ffname == NULL || sfname == NULL)
2570 {
2571 vim_free(sfname);
2572 vim_free(ffname);
2573 return FAIL;
2574 }
2575#ifdef USE_FNAME_CASE
2576# ifdef USE_LONG_FNAME
2577 if (USE_LONG_FNAME)
2578# endif
2579 fname_case(sfname, 0); /* set correct case for short file name */
2580#endif
2581 vim_free(buf->b_ffname);
2582 vim_free(buf->b_sfname);
2583 buf->b_ffname = ffname;
2584 buf->b_sfname = sfname;
2585 }
2586 buf->b_fname = buf->b_sfname;
2587#ifdef UNIX
2588 if (st.st_dev == (dev_T)-1)
2589 buf->b_dev = -1;
2590 else
2591 {
2592 buf->b_dev = st.st_dev;
2593 buf->b_ino = st.st_ino;
2594 }
2595#endif
2596
2597#ifndef SHORT_FNAME
2598 buf->b_shortname = FALSE;
2599#endif
2600
2601 buf_name_changed(buf);
2602 return OK;
2603}
2604
2605/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002606 * Crude way of changing the name of a buffer. Use with care!
2607 * The name should be relative to the current directory.
2608 */
2609 void
2610buf_set_name(fnum, name)
2611 int fnum;
2612 char_u *name;
2613{
2614 buf_T *buf;
2615
2616 buf = buflist_findnr(fnum);
2617 if (buf != NULL)
2618 {
2619 vim_free(buf->b_sfname);
2620 vim_free(buf->b_ffname);
2621 buf->b_sfname = vim_strsave(name);
2622 buf->b_ffname = FullName_save(buf->b_sfname, FALSE);
2623 buf->b_fname = buf->b_sfname;
2624 }
2625}
2626
2627/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 * Take care of what needs to be done when the name of buffer "buf" has
2629 * changed.
2630 */
2631 void
2632buf_name_changed(buf)
2633 buf_T *buf;
2634{
2635 /*
2636 * If the file name changed, also change the name of the swapfile
2637 */
2638 if (buf->b_ml.ml_mfp != NULL)
2639 ml_setname(buf);
2640
2641 if (curwin->w_buffer == buf)
2642 check_arg_idx(curwin); /* check file name for arg list */
2643#ifdef FEAT_TITLE
2644 maketitle(); /* set window title */
2645#endif
2646#ifdef FEAT_WINDOWS
2647 status_redraw_all(); /* status lines need to be redrawn */
2648#endif
2649 fmarks_check_names(buf); /* check named file marks */
2650 ml_timestamp(buf); /* reset timestamp */
2651}
2652
2653/*
2654 * set alternate file name for current window
2655 *
2656 * Used by do_one_cmd(), do_write() and do_ecmd().
2657 * Return the buffer.
2658 */
2659 buf_T *
2660setaltfname(ffname, sfname, lnum)
2661 char_u *ffname;
2662 char_u *sfname;
2663 linenr_T lnum;
2664{
2665 buf_T *buf;
2666
2667 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
2668 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002669 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 curwin->w_alt_fnum = buf->b_fnum;
2671 return buf;
2672}
2673
2674/*
2675 * Get alternate file name for current window.
2676 * Return NULL if there isn't any, and give error message if requested.
2677 */
2678 char_u *
2679getaltfname(errmsg)
2680 int errmsg; /* give error message */
2681{
2682 char_u *fname;
2683 linenr_T dummy;
2684
2685 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
2686 {
2687 if (errmsg)
2688 EMSG(_(e_noalt));
2689 return NULL;
2690 }
2691 return fname;
2692}
2693
2694/*
2695 * Add a file name to the buflist and return its number.
2696 * Uses same flags as buflist_new(), except BLN_DUMMY.
2697 *
2698 * used by qf_init(), main() and doarglist()
2699 */
2700 int
2701buflist_add(fname, flags)
2702 char_u *fname;
2703 int flags;
2704{
2705 buf_T *buf;
2706
2707 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
2708 if (buf != NULL)
2709 return buf->b_fnum;
2710 return 0;
2711}
2712
2713#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
2714/*
2715 * Adjust slashes in file names. Called after 'shellslash' was set.
2716 */
2717 void
2718buflist_slash_adjust()
2719{
2720 buf_T *bp;
2721
2722 for (bp = firstbuf; bp != NULL; bp = bp->b_next)
2723 {
2724 if (bp->b_ffname != NULL)
2725 slash_adjust(bp->b_ffname);
2726 if (bp->b_sfname != NULL)
2727 slash_adjust(bp->b_sfname);
2728 }
2729}
2730#endif
2731
2732/*
2733 * Set alternate cursor position for current window.
2734 * Also save the local window option values.
2735 */
2736 void
2737buflist_altfpos()
2738{
2739 buflist_setfpos(curbuf, curwin, curwin->w_cursor.lnum,
2740 curwin->w_cursor.col, TRUE);
2741}
2742
2743/*
2744 * Return TRUE if 'ffname' is not the same file as current file.
2745 * Fname must have a full path (expanded by mch_FullName()).
2746 */
2747 int
2748otherfile(ffname)
2749 char_u *ffname;
2750{
2751 return otherfile_buf(curbuf, ffname
2752#ifdef UNIX
2753 , NULL
2754#endif
2755 );
2756}
2757
2758 static int
2759otherfile_buf(buf, ffname
2760#ifdef UNIX
2761 , stp
2762#endif
2763 )
2764 buf_T *buf;
2765 char_u *ffname;
2766#ifdef UNIX
2767 struct stat *stp;
2768#endif
2769{
2770 /* no name is different */
2771 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
2772 return TRUE;
2773 if (fnamecmp(ffname, buf->b_ffname) == 0)
2774 return FALSE;
2775#ifdef UNIX
2776 {
2777 struct stat st;
2778
2779 /* If no struct stat given, get it now */
2780 if (stp == NULL)
2781 {
2782 if (buf->b_dev < 0 || mch_stat((char *)ffname, &st) < 0)
2783 st.st_dev = (dev_T)-1;
2784 stp = &st;
2785 }
2786 /* Use dev/ino to check if the files are the same, even when the names
2787 * are different (possible with links). Still need to compare the
2788 * name above, for when the file doesn't exist yet.
2789 * Problem: The dev/ino changes when a file is deleted (and created
2790 * again) and remains the same when renamed/moved. We don't want to
2791 * mch_stat() each buffer each time, that would be too slow. Get the
2792 * dev/ino again when they appear to match, but not when they appear
2793 * to be different: Could skip a buffer when it's actually the same
2794 * file. */
2795 if (buf_same_ino(buf, stp))
2796 {
2797 buf_setino(buf);
2798 if (buf_same_ino(buf, stp))
2799 return FALSE;
2800 }
2801 }
2802#endif
2803 return TRUE;
2804}
2805
2806#if defined(UNIX) || defined(PROTO)
2807/*
2808 * Set inode and device number for a buffer.
2809 * Must always be called when b_fname is changed!.
2810 */
2811 void
2812buf_setino(buf)
2813 buf_T *buf;
2814{
2815 struct stat st;
2816
2817 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
2818 {
2819 buf->b_dev = st.st_dev;
2820 buf->b_ino = st.st_ino;
2821 }
2822 else
2823 buf->b_dev = -1;
2824}
2825
2826/*
2827 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
2828 */
2829 static int
2830buf_same_ino(buf, stp)
2831 buf_T *buf;
2832 struct stat *stp;
2833{
2834 return (buf->b_dev >= 0
2835 && stp->st_dev == buf->b_dev
2836 && stp->st_ino == buf->b_ino);
2837}
2838#endif
2839
2840 void
2841fileinfo(fullname, shorthelp, dont_truncate)
2842 int fullname;
2843 int shorthelp;
2844 int dont_truncate;
2845{
2846 char_u *name;
2847 int n;
2848 char_u *p;
2849 char_u *buffer;
2850
2851 buffer = alloc(IOSIZE);
2852 if (buffer == NULL)
2853 return;
2854
2855 if (fullname > 1) /* 2 CTRL-G: include buffer number */
2856 {
2857 sprintf((char *)buffer, "buf %d: ", curbuf->b_fnum);
2858 p = buffer + STRLEN(buffer);
2859 }
2860 else
2861 p = buffer;
2862
2863 *p++ = '"';
2864 if (buf_spname(curbuf) != NULL)
2865 STRCPY(p, buf_spname(curbuf));
2866 else
2867 {
2868 if (!fullname && curbuf->b_fname != NULL)
2869 name = curbuf->b_fname;
2870 else
2871 name = curbuf->b_ffname;
2872 home_replace(shorthelp ? curbuf : NULL, name, p,
2873 (int)(IOSIZE - (p - buffer)), TRUE);
2874 }
2875
2876 sprintf((char *)buffer + STRLEN(buffer),
2877 "\"%s%s%s%s%s%s",
2878 curbufIsChanged() ? (shortmess(SHM_MOD)
2879 ? " [+]" : _(" [Modified]")) : " ",
2880 (curbuf->b_flags & BF_NOTEDITED)
2881#ifdef FEAT_QUICKFIX
2882 && !bt_dontwrite(curbuf)
2883#endif
2884 ? _("[Not edited]") : "",
2885 (curbuf->b_flags & BF_NEW)
2886#ifdef FEAT_QUICKFIX
2887 && !bt_dontwrite(curbuf)
2888#endif
2889 ? _("[New file]") : "",
2890 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
2891 curbuf->b_p_ro ? (shortmess(SHM_RO) ? "[RO]"
2892 : _("[readonly]")) : "",
2893 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
2894 || curbuf->b_p_ro) ?
2895 " " : "");
2896 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
2897 * causes an overflow, thus for large numbers divide instead. */
2898 if (curwin->w_cursor.lnum > 1000000L)
2899 n = (int)(((long)curwin->w_cursor.lnum) /
2900 ((long)curbuf->b_ml.ml_line_count / 100L));
2901 else
2902 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
2903 (long)curbuf->b_ml.ml_line_count);
2904 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2905 {
2906 STRCPY(buffer + STRLEN(buffer), _(no_lines_msg));
2907 }
2908#ifdef FEAT_CMDL_INFO
2909 else if (p_ru)
2910 {
2911 /* Current line and column are already on the screen -- webb */
2912 if (curbuf->b_ml.ml_line_count == 1)
2913 sprintf((char *)buffer + STRLEN(buffer), _("1 line --%d%%--"), n);
2914 else
2915 sprintf((char *)buffer + STRLEN(buffer), _("%ld lines --%d%%--"),
2916 (long)curbuf->b_ml.ml_line_count, n);
2917 }
2918#endif
2919 else
2920 {
2921 sprintf((char *)buffer + STRLEN(buffer),
2922 _("line %ld of %ld --%d%%-- col "),
2923 (long)curwin->w_cursor.lnum,
2924 (long)curbuf->b_ml.ml_line_count,
2925 n);
2926 validate_virtcol();
2927 col_print(buffer + STRLEN(buffer),
2928 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
2929 }
2930
2931 (void)append_arg_number(curwin, buffer, !shortmess(SHM_FILE), IOSIZE);
2932
2933 if (dont_truncate)
2934 {
2935 /* Temporarily set msg_scroll to avoid the message being truncated.
2936 * First call msg_start() to get the message in the right place. */
2937 msg_start();
2938 n = msg_scroll;
2939 msg_scroll = TRUE;
2940 msg(buffer);
2941 msg_scroll = n;
2942 }
2943 else
2944 {
2945 p = msg_trunc_attr(buffer, FALSE, 0);
2946 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
2947 {
2948 /* Need to repeat the message after redrawing when:
2949 * - When restart_edit is set (otherwise there will be a delay
2950 * before redrawing).
2951 * - When the screen was scrolled but there is no wait-return
2952 * prompt. */
2953 set_keep_msg(p);
2954 keep_msg_attr = 0;
2955 }
2956 }
2957
2958 vim_free(buffer);
2959}
2960
2961 void
2962col_print(buf, col, vcol)
2963 char_u *buf;
2964 int col;
2965 int vcol;
2966{
2967 if (col == vcol)
2968 sprintf((char *)buf, "%d", col);
2969 else
2970 sprintf((char *)buf, "%d-%d", col, vcol);
2971}
2972
2973#if defined(FEAT_TITLE) || defined(PROTO)
2974/*
2975 * put file name in title bar of window and in icon title
2976 */
2977
2978static char_u *lasttitle = NULL;
2979static char_u *lasticon = NULL;
2980
2981 void
2982maketitle()
2983{
2984 char_u *p;
2985 char_u *t_str = NULL;
2986 char_u *i_name;
2987 char_u *i_str = NULL;
2988 int maxlen = 0;
2989 int len;
2990 int mustset;
2991 char_u buf[IOSIZE];
2992 int off;
2993
2994 if (!redrawing())
2995 {
2996 /* Postpone updating the title when 'lazyredraw' is set. */
2997 need_maketitle = TRUE;
2998 return;
2999 }
3000
3001 need_maketitle = FALSE;
3002 if (!p_title && !p_icon)
3003 return;
3004
3005 if (p_title)
3006 {
3007 if (p_titlelen > 0)
3008 {
3009 maxlen = p_titlelen * Columns / 100;
3010 if (maxlen < 10)
3011 maxlen = 10;
3012 }
3013
3014 t_str = buf;
3015 if (*p_titlestring != NUL)
3016 {
3017#ifdef FEAT_STL_OPT
3018 if (stl_syntax & STL_IN_TITLE)
3019 build_stl_str_hl(curwin, t_str, sizeof(buf),
3020 p_titlestring, 0, maxlen, NULL);
3021 else
3022#endif
3023 t_str = p_titlestring;
3024 }
3025 else
3026 {
3027 /* format: "fname + (path) (1 of 2) - VIM" */
3028
3029 if (curbuf->b_fname == NULL)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003030 STRCPY(buf, _("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 else
3032 {
3033 p = transstr(gettail(curbuf->b_fname));
3034 STRNCPY(buf, p, IOSIZE - 100);
3035 vim_free(p);
3036 buf[IOSIZE - 100] = NUL; /* in case it was too long */
3037 }
3038
3039 switch (bufIsChanged(curbuf)
3040 + (curbuf->b_p_ro * 2)
3041 + (!curbuf->b_p_ma * 4))
3042 {
3043 case 1: STRCAT(buf, " +"); break;
3044 case 2: STRCAT(buf, " ="); break;
3045 case 3: STRCAT(buf, " =+"); break;
3046 case 4:
3047 case 6: STRCAT(buf, " -"); break;
3048 case 5:
3049 case 7: STRCAT(buf, " -+"); break;
3050 }
3051
3052 if (curbuf->b_fname != NULL)
3053 {
3054 /* Get path of file, replace home dir with ~ */
3055 off = (int)STRLEN(buf);
3056 buf[off++] = ' ';
3057 buf[off++] = '(';
3058 home_replace(curbuf, curbuf->b_ffname,
3059 buf + off, IOSIZE - off, TRUE);
3060#ifdef BACKSLASH_IN_FILENAME
3061 /* avoid "c:/name" to be reduced to "c" */
3062 if (isalpha(buf[off]) && buf[off + 1] == ':')
3063 off += 2;
3064#endif
3065 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003066 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 if (p == buf + off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 /* must be a help buffer */
3069 STRCPY(buf + off, _("help"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003072
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 /* translate unprintable chars */
3074 p = transstr(buf + off);
3075 STRNCPY(buf + off, p, IOSIZE - off);
3076 vim_free(p);
3077 buf[IOSIZE - 1] = NUL; /* in case it was too long */
3078 STRCAT(buf, ")");
3079 }
3080
3081 append_arg_number(curwin, buf, FALSE, IOSIZE);
3082
3083#if defined(FEAT_CLIENTSERVER)
3084 if (serverName != NULL)
3085 {
3086 STRCAT(buf, " - ");
3087 STRCAT(buf, serverName);
3088 }
3089 else
3090#endif
3091 STRCAT(buf, " - VIM");
3092
3093 if (maxlen > 0)
3094 {
3095 /* make it shorter by removing a bit in the middle */
3096 len = vim_strsize(buf);
3097 if (len > maxlen)
3098 trunc_string(buf, buf, maxlen);
3099 }
3100 }
3101 }
3102 mustset = ti_change(t_str, &lasttitle);
3103
3104 if (p_icon)
3105 {
3106 i_str = buf;
3107 if (*p_iconstring != NUL)
3108 {
3109#ifdef FEAT_STL_OPT
3110 if (stl_syntax & STL_IN_ICON)
3111 build_stl_str_hl(curwin, i_str, sizeof(buf),
3112 p_iconstring, 0, 0, NULL);
3113 else
3114#endif
3115 i_str = p_iconstring;
3116 }
3117 else
3118 {
3119 if (buf_spname(curbuf) != NULL)
3120 i_name = (char_u *)buf_spname(curbuf);
3121 else /* use file name only in icon */
3122 i_name = gettail(curbuf->b_ffname);
3123 *i_str = NUL;
3124 /* Truncate name at 100 bytes. */
3125 len = STRLEN(i_name);
3126 if (len > 100)
3127 {
3128 len -= 100;
3129#ifdef FEAT_MBYTE
3130 if (has_mbyte)
3131 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3132#endif
3133 i_name += len;
3134 }
3135 STRCPY(i_str, i_name);
3136 trans_characters(i_str, IOSIZE);
3137 }
3138 }
3139
3140 mustset |= ti_change(i_str, &lasticon);
3141
3142 if (mustset)
3143 resettitle();
3144}
3145
3146/*
3147 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3148 * from "str" if it does.
3149 * Return TRUE when "*last" changed.
3150 */
3151 static int
3152ti_change(str, last)
3153 char_u *str;
3154 char_u **last;
3155{
3156 if ((str == NULL) != (*last == NULL)
3157 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3158 {
3159 vim_free(*last);
3160 if (str == NULL)
3161 *last = NULL;
3162 else
3163 *last = vim_strsave(str);
3164 return TRUE;
3165 }
3166 return FALSE;
3167}
3168
3169/*
3170 * Put current window title back (used after calling a shell)
3171 */
3172 void
3173resettitle()
3174{
3175 mch_settitle(lasttitle, lasticon);
3176}
3177#endif /* FEAT_TITLE */
3178
3179#if defined(FEAT_STL_OPT) || defined(PROTO)
3180/*
3181 * Build a string from the status line items in fmt.
3182 * Return length of string in screen cells.
3183 *
3184 * Items are drawn interspersed with the text that surrounds it
3185 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3186 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3187 *
3188 * If maxwidth is not zero, the string will be filled at any middle marker
3189 * or truncated if too long, fillchar is used for all whitespace.
3190 */
3191 int
3192build_stl_str_hl(wp, out, outlen, fmt, fillchar, maxwidth, hl)
3193 win_T *wp;
3194 char_u *out; /* buffer to write into */
3195 size_t outlen; /* length of out[] */
3196 char_u *fmt;
3197 int fillchar;
3198 int maxwidth;
3199 struct stl_hlrec *hl;
3200{
3201 char_u *p;
3202 char_u *s;
3203 char_u *t;
3204 char_u *linecont;
3205#ifdef FEAT_EVAL
3206 win_T *o_curwin;
3207 buf_T *o_curbuf;
3208#endif
3209 int empty_line;
3210 colnr_T virtcol;
3211 long l;
3212 long n;
3213 int prevchar_isflag;
3214 int prevchar_isitem;
3215 int itemisflag;
3216 int fillable;
3217 char_u *str;
3218 long num;
3219 int width;
3220 int itemcnt;
3221 int curitem;
3222 int groupitem[STL_MAX_ITEM];
3223 int groupdepth;
3224 struct stl_item
3225 {
3226 char_u *start;
3227 int minwid;
3228 int maxwid;
3229 enum
3230 {
3231 Normal,
3232 Empty,
3233 Group,
3234 Middle,
3235 Highlight,
3236 Trunc
3237 } type;
3238 } item[STL_MAX_ITEM];
3239 int minwid;
3240 int maxwid;
3241 int zeropad;
3242 char_u base;
3243 char_u opt;
3244#define TMPLEN 70
3245 char_u tmp[TMPLEN];
3246
3247 if (fillchar == 0)
3248 fillchar = ' ';
3249 /*
3250 * Get line & check if empty (cursorpos will show "0-1").
3251 * If inversion is possible we use it. Else '=' characters are used.
3252 */
3253 linecont = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3254 empty_line = (*linecont == NUL);
3255
3256 groupdepth = 0;
3257 p = out;
3258 curitem = 0;
3259 prevchar_isflag = TRUE;
3260 prevchar_isitem = FALSE;
3261 for (s = fmt; *s;)
3262 {
3263 if (*s != NUL && *s != '%')
3264 prevchar_isflag = prevchar_isitem = FALSE;
3265
3266 /*
3267 * Handle up to the next '%' or the end.
3268 */
3269 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3270 *p++ = *s++;
3271 if (*s == NUL || p + 1 >= out + outlen)
3272 break;
3273
3274 /*
3275 * Handle one '%' item.
3276 */
3277 s++;
3278 if (*s == '%')
3279 {
3280 if (p + 1 >= out + outlen)
3281 break;
3282 *p++ = *s++;
3283 prevchar_isflag = prevchar_isitem = FALSE;
3284 continue;
3285 }
3286 if (*s == STL_MIDDLEMARK)
3287 {
3288 s++;
3289 if (groupdepth > 0)
3290 continue;
3291 item[curitem].type = Middle;
3292 item[curitem++].start = p;
3293 continue;
3294 }
3295 if (*s == STL_TRUNCMARK)
3296 {
3297 s++;
3298 item[curitem].type = Trunc;
3299 item[curitem++].start = p;
3300 continue;
3301 }
3302 if (*s == ')')
3303 {
3304 s++;
3305 if (groupdepth < 1)
3306 continue;
3307 groupdepth--;
3308
3309 t = item[groupitem[groupdepth]].start;
3310 *p = NUL;
3311 l = vim_strsize(t);
3312 if (curitem > groupitem[groupdepth] + 1
3313 && item[groupitem[groupdepth]].minwid == 0)
3314 {
3315 /* remove group if all items are empty */
3316 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3317 if (item[n].type == Normal)
3318 break;
3319 if (n == curitem)
3320 {
3321 p = t;
3322 l = 0;
3323 }
3324 }
3325 if (l > item[groupitem[groupdepth]].maxwid)
3326 {
3327 /* truncate, remove n bytes of text at the start */
3328#ifdef FEAT_MBYTE
3329 if (has_mbyte)
3330 {
3331 /* Find the first character that should be included. */
3332 n = 0;
3333 while (l >= item[groupitem[groupdepth]].maxwid)
3334 {
3335 l -= ptr2cells(t + n);
3336 n += (*mb_ptr2len_check)(t + n);
3337 }
3338 }
3339 else
3340#endif
3341 n = (p - t) - item[groupitem[groupdepth]].maxwid + 1;
3342
3343 *t = '<';
3344 mch_memmove(t + 1, t + n, p - (t + n));
3345 p = p - n + 1;
3346#ifdef FEAT_MBYTE
3347 /* Fill up space left over by half a double-wide char. */
3348 while (++l < item[groupitem[groupdepth]].minwid)
3349 *p++ = fillchar;
3350#endif
3351
3352 /* correct the start of the items for the truncation */
3353 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
3354 {
3355 item[l].start -= n;
3356 if (item[l].start < t)
3357 item[l].start = t;
3358 }
3359 }
3360 else if (abs(item[groupitem[groupdepth]].minwid) > l)
3361 {
3362 /* fill */
3363 n = item[groupitem[groupdepth]].minwid;
3364 if (n < 0)
3365 {
3366 /* fill by appending characters */
3367 n = 0 - n;
3368 while (l++ < n && p + 1 < out + outlen)
3369 *p++ = fillchar;
3370 }
3371 else
3372 {
3373 /* fill by inserting characters */
3374 mch_memmove(t + n - l, t, p - t);
3375 l = n - l;
3376 if (p + l >= out + outlen)
3377 l = (out + outlen) - p - 1;
3378 p += l;
3379 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3380 item[n].start += l;
3381 for ( ; l > 0; l--)
3382 *t++ = fillchar;
3383 }
3384 }
3385 continue;
3386 }
3387 minwid = 0;
3388 maxwid = 9999;
3389 zeropad = FALSE;
3390 l = 1;
3391 if (*s == '0')
3392 {
3393 s++;
3394 zeropad = TRUE;
3395 }
3396 if (*s == '-')
3397 {
3398 s++;
3399 l = -1;
3400 }
3401 if (VIM_ISDIGIT(*s))
3402 {
3403 minwid = (int)getdigits(&s);
3404 if (minwid < 0) /* overflow */
3405 minwid = 0;
3406 }
3407 if (*s == STL_HIGHLIGHT)
3408 {
3409 item[curitem].type = Highlight;
3410 item[curitem].start = p;
3411 item[curitem].minwid = minwid > 9 ? 1 : minwid;
3412 s++;
3413 curitem++;
3414 continue;
3415 }
3416 if (*s == '.')
3417 {
3418 s++;
3419 if (VIM_ISDIGIT(*s))
3420 {
3421 maxwid = (int)getdigits(&s);
3422 if (maxwid <= 0) /* overflow */
3423 maxwid = 50;
3424 }
3425 }
3426 minwid = (minwid > 50 ? 50 : minwid) * l;
3427 if (*s == '(')
3428 {
3429 groupitem[groupdepth++] = curitem;
3430 item[curitem].type = Group;
3431 item[curitem].start = p;
3432 item[curitem].minwid = minwid;
3433 item[curitem].maxwid = maxwid;
3434 s++;
3435 curitem++;
3436 continue;
3437 }
3438 if (vim_strchr(STL_ALL, *s) == NULL)
3439 {
3440 s++;
3441 continue;
3442 }
3443 opt = *s++;
3444
3445 /* OK - now for the real work */
3446 base = 'D';
3447 itemisflag = FALSE;
3448 fillable = TRUE;
3449 num = -1;
3450 str = NULL;
3451 switch (opt)
3452 {
3453 case STL_FILEPATH:
3454 case STL_FULLPATH:
3455 case STL_FILENAME:
3456 fillable = FALSE; /* don't change ' ' to fillchar */
3457 if (buf_spname(wp->w_buffer) != NULL)
3458 STRCPY(NameBuff, buf_spname(wp->w_buffer));
3459 else
3460 {
3461 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
3462 : wp->w_buffer->b_fname;
3463 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
3464 }
3465 trans_characters(NameBuff, MAXPATHL);
3466 if (opt != STL_FILENAME)
3467 str = NameBuff;
3468 else
3469 str = gettail(NameBuff);
3470 break;
3471
3472 case STL_VIM_EXPR: /* '{' */
3473 itemisflag = TRUE;
3474 t = p;
3475 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
3476 *p++ = *s++;
3477 if (*s != '}') /* missing '}' or out of space */
3478 break;
3479 s++;
3480 *p = 0;
3481 p = t;
3482
3483#ifdef FEAT_EVAL
3484 sprintf((char *)tmp, "%d", curbuf->b_fnum);
3485 set_internal_string_var((char_u *)"actual_curbuf", tmp);
3486
3487 o_curbuf = curbuf;
3488 o_curwin = curwin;
3489 curwin = wp;
3490 curbuf = wp->w_buffer;
3491
3492 str = eval_to_string_safe(p, &t);
3493
3494 curwin = o_curwin;
3495 curbuf = o_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00003496 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497
3498 if (str != NULL && *str != 0)
3499 {
3500 if (*skipdigits(str) == NUL)
3501 {
3502 num = atoi((char *)str);
3503 vim_free(str);
3504 str = NULL;
3505 itemisflag = FALSE;
3506 }
3507 }
3508#endif
3509 break;
3510
3511 case STL_LINE:
3512 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
3513 ? 0L : (long)(wp->w_cursor.lnum);
3514 break;
3515
3516 case STL_NUMLINES:
3517 num = wp->w_buffer->b_ml.ml_line_count;
3518 break;
3519
3520 case STL_COLUMN:
3521 num = !(State & INSERT) && empty_line
3522 ? 0 : (int)wp->w_cursor.col + 1;
3523 break;
3524
3525 case STL_VIRTCOL:
3526 case STL_VIRTCOL_ALT:
3527 /* In list mode virtcol needs to be recomputed */
3528 virtcol = wp->w_virtcol;
3529 if (wp->w_p_list && lcs_tab1 == NUL)
3530 {
3531 wp->w_p_list = FALSE;
3532 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
3533 wp->w_p_list = TRUE;
3534 }
3535 ++virtcol;
3536 /* Don't display %V if it's the same as %c. */
3537 if (opt == STL_VIRTCOL_ALT
3538 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
3539 ? 0 : (int)wp->w_cursor.col + 1)))
3540 break;
3541 num = (long)virtcol;
3542 break;
3543
3544 case STL_PERCENTAGE:
3545 num = (int)(((long)wp->w_cursor.lnum * 100L) /
3546 (long)wp->w_buffer->b_ml.ml_line_count);
3547 break;
3548
3549 case STL_ALTPERCENT:
3550 str = tmp;
3551 get_rel_pos(wp, str);
3552 break;
3553
3554 case STL_ARGLISTSTAT:
3555 fillable = FALSE;
3556 tmp[0] = 0;
3557 if (append_arg_number(wp, tmp, FALSE, (int)sizeof(tmp)))
3558 str = tmp;
3559 break;
3560
3561 case STL_KEYMAP:
3562 fillable = FALSE;
3563 if (get_keymap_str(wp, tmp, TMPLEN))
3564 str = tmp;
3565 break;
3566 case STL_PAGENUM:
3567#ifdef FEAT_PRINTER
3568 num = get_printer_page_num();
3569#else
3570 num = 0;
3571#endif
3572 break;
3573
3574 case STL_BUFNO:
3575 num = wp->w_buffer->b_fnum;
3576 break;
3577
3578 case STL_OFFSET_X:
3579 base = 'X';
3580 case STL_OFFSET:
3581#ifdef FEAT_BYTEOFF
3582 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
3583 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
3584 0L : l + 1 + (!(State & INSERT) && empty_line ?
3585 0 : (int)wp->w_cursor.col);
3586#endif
3587 break;
3588
3589 case STL_BYTEVAL_X:
3590 base = 'X';
3591 case STL_BYTEVAL:
3592 if (((State & INSERT) && wp == curwin) || empty_line)
3593 num = 0;
3594 else
3595 {
3596#ifdef FEAT_MBYTE
3597 num = (*mb_ptr2char)(linecont + wp->w_cursor.col);
3598#else
3599 num = linecont[wp->w_cursor.col];
3600#endif
3601 }
3602 if (num == NL)
3603 num = 0;
3604 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
3605 num = NL;
3606 break;
3607
3608 case STL_ROFLAG:
3609 case STL_ROFLAG_ALT:
3610 itemisflag = TRUE;
3611 if (wp->w_buffer->b_p_ro)
3612 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : "[RO]");
3613 break;
3614
3615 case STL_HELPFLAG:
3616 case STL_HELPFLAG_ALT:
3617 itemisflag = TRUE;
3618 if (wp->w_buffer->b_help)
3619 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
3620 : _("[help]"));
3621 break;
3622
3623#ifdef FEAT_AUTOCMD
3624 case STL_FILETYPE:
3625 if (*wp->w_buffer->b_p_ft != NUL
3626 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
3627 {
3628 sprintf((char *)tmp, "[%s]", wp->w_buffer->b_p_ft);
3629 str = tmp;
3630 }
3631 break;
3632
3633 case STL_FILETYPE_ALT:
3634 itemisflag = TRUE;
3635 if (*wp->w_buffer->b_p_ft != NUL
3636 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
3637 {
3638 sprintf((char *)tmp, ",%s", wp->w_buffer->b_p_ft);
3639 for (t = tmp; *t != 0; t++)
3640 *t = TOUPPER_LOC(*t);
3641 str = tmp;
3642 }
3643 break;
3644#endif
3645
3646#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
3647 case STL_PREVIEWFLAG:
3648 case STL_PREVIEWFLAG_ALT:
3649 itemisflag = TRUE;
3650 if (wp->w_p_pvw)
3651 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
3652 : _("[Preview]"));
3653 break;
3654#endif
3655
3656 case STL_MODIFIED:
3657 case STL_MODIFIED_ALT:
3658 itemisflag = TRUE;
3659 switch ((opt == STL_MODIFIED_ALT)
3660 + bufIsChanged(wp->w_buffer) * 2
3661 + (!wp->w_buffer->b_p_ma) * 4)
3662 {
3663 case 2: str = (char_u *)"[+]"; break;
3664 case 3: str = (char_u *)",+"; break;
3665 case 4: str = (char_u *)"[-]"; break;
3666 case 5: str = (char_u *)",-"; break;
3667 case 6: str = (char_u *)"[+-]"; break;
3668 case 7: str = (char_u *)",+-"; break;
3669 }
3670 break;
3671 }
3672
3673 item[curitem].start = p;
3674 item[curitem].type = Normal;
3675 if (str != NULL && *str)
3676 {
3677 t = str;
3678 if (itemisflag)
3679 {
3680 if ((t[0] && t[1])
3681 && ((!prevchar_isitem && *t == ',')
3682 || (prevchar_isflag && *t == ' ')))
3683 t++;
3684 prevchar_isflag = TRUE;
3685 }
3686 l = vim_strsize(t);
3687 if (l > 0)
3688 prevchar_isitem = TRUE;
3689 if (l > maxwid)
3690 {
3691 while (l >= maxwid)
3692#ifdef FEAT_MBYTE
3693 if (has_mbyte)
3694 {
3695 l -= ptr2cells(t);
3696 t += (*mb_ptr2len_check)(t);
3697 }
3698 else
3699#endif
3700 l -= byte2cells(*t++);
3701 if (p + 1 >= out + outlen)
3702 break;
3703 *p++ = '<';
3704 }
3705 if (minwid > 0)
3706 {
3707 for (; l < minwid && p + 1 < out + outlen; l++)
3708 {
3709 /* Don't put a "-" in front of a digit. */
3710 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
3711 *p++ = ' ';
3712 else
3713 *p++ = fillchar;
3714 }
3715 minwid = 0;
3716 }
3717 else
3718 minwid *= -1;
3719 while (*t && p + 1 < out + outlen)
3720 {
3721 *p++ = *t++;
3722 /* Change a space by fillchar, unless fillchar is '-' and a
3723 * digit follows. */
3724 if (fillable && p[-1] == ' '
3725 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
3726 p[-1] = fillchar;
3727 }
3728 for (; l < minwid && p + 1 < out + outlen; l++)
3729 *p++ = fillchar;
3730 }
3731 else if (num >= 0)
3732 {
3733 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
3734 char_u nstr[20];
3735
3736 if (p + 20 >= out + outlen)
3737 break; /* not sufficient space */
3738 prevchar_isitem = TRUE;
3739 t = nstr;
3740 if (opt == STL_VIRTCOL_ALT)
3741 {
3742 *t++ = '-';
3743 minwid--;
3744 }
3745 *t++ = '%';
3746 if (zeropad)
3747 *t++ = '0';
3748 *t++ = '*';
3749 *t++ = nbase == 16 ? base : (nbase == 8 ? 'o' : 'd');
3750 *t = 0;
3751
3752 for (n = num, l = 1; n >= nbase; n /= nbase)
3753 l++;
3754 if (opt == STL_VIRTCOL_ALT)
3755 l++;
3756 if (l > maxwid)
3757 {
3758 l += 2;
3759 n = l - maxwid;
3760 while (l-- > maxwid)
3761 num /= nbase;
3762 *t++ = '>';
3763 *t++ = '%';
3764 *t = t[-3];
3765 *++t = 0;
3766 sprintf((char *)p, (char *)nstr, 0, num, n);
3767 }
3768 else
3769 sprintf((char *)p, (char *)nstr, minwid, num);
3770 p += STRLEN(p);
3771 }
3772 else
3773 item[curitem].type = Empty;
3774
3775 if (opt == STL_VIM_EXPR)
3776 vim_free(str);
3777
3778 if (num >= 0 || (!itemisflag && str && *str))
3779 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
3780 curitem++;
3781 }
3782 *p = NUL;
3783 itemcnt = curitem;
3784
3785 width = vim_strsize(out);
3786 if (maxwidth > 0 && width > maxwidth)
3787 {
3788 /* Result is too long, must trunctate somewhere. */
3789 l = 0;
3790 if (itemcnt == 0)
3791 s = out;
3792 else
3793 {
3794 for ( ; l < itemcnt; l++)
3795 if (item[l].type == Trunc)
3796 {
3797 /* Truncate at %< item. */
3798 s = item[l].start;
3799 break;
3800 }
3801 if (l == itemcnt)
3802 {
3803 /* No %< item, truncate first item. */
3804 s = item[0].start;
3805 l = 0;
3806 }
3807 }
3808
3809 if (width - vim_strsize(s) >= maxwidth)
3810 {
3811 /* Truncation mark is beyond max length */
3812#ifdef FEAT_MBYTE
3813 if (has_mbyte)
3814 {
3815 s = out;
3816 width = 0;
3817 for (;;)
3818 {
3819 width += ptr2cells(s);
3820 if (width >= maxwidth)
3821 break;
3822 s += (*mb_ptr2len_check)(s);
3823 }
3824 /* Fill up for half a double-wide character. */
3825 while (++width < maxwidth)
3826 *s++ = fillchar;
3827 }
3828 else
3829#endif
3830 s = out + maxwidth - 1;
3831 for (l = 0; l < itemcnt; l++)
3832 if (item[l].start > s)
3833 break;
3834 itemcnt = l;
3835 *s++ = '>';
3836 *s = 0;
3837 }
3838 else
3839 {
3840#ifdef FEAT_MBYTE
3841 if (has_mbyte)
3842 {
3843 n = 0;
3844 while (width >= maxwidth)
3845 {
3846 width -= ptr2cells(s + n);
3847 n += (*mb_ptr2len_check)(s + n);
3848 }
3849 }
3850 else
3851#endif
3852 n = width - maxwidth + 1;
3853 p = s + n;
3854 mch_memmove(s + 1, p, STRLEN(p) + 1);
3855 *s = '<';
3856
3857 /* Fill up for half a double-wide character. */
3858 while (++width < maxwidth)
3859 {
3860 s = s + STRLEN(s);
3861 *s++ = fillchar;
3862 *s = NUL;
3863 }
3864
3865 --n; /* count the '<' */
3866 for (; l < itemcnt; l++)
3867 {
3868 if (item[l].start - n >= s)
3869 item[l].start -= n;
3870 else
3871 item[l].start = s;
3872 }
3873 }
3874 width = maxwidth;
3875 }
3876 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
3877 {
3878 /* Apply STL_MIDDLE if any */
3879 for (l = 0; l < itemcnt; l++)
3880 if (item[l].type == Middle)
3881 break;
3882 if (l < itemcnt)
3883 {
3884 p = item[l].start + maxwidth - width;
3885 mch_memmove(p, item[l].start, STRLEN(item[l].start) + 1);
3886 for (s = item[l].start; s < p; s++)
3887 *s = fillchar;
3888 for (l++; l < itemcnt; l++)
3889 item[l].start += maxwidth - width;
3890 width = maxwidth;
3891 }
3892 }
3893
3894 if (hl != NULL)
3895 {
3896 for (l = 0; l < itemcnt; l++)
3897 {
3898 if (item[l].type == Highlight)
3899 {
3900 hl->start = item[l].start;
3901 hl->userhl = item[l].minwid;
3902 hl++;
3903 }
3904 }
3905 hl->start = NULL;
3906 hl->userhl = 0;
3907 }
3908
3909 return width;
3910}
3911#endif /* FEAT_STL_OPT */
3912
3913#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) || defined(PROTO)
3914/*
3915 * Get relative cursor position in window, in the form 99%, using "Top", "Bot"
3916 * or "All" when appropriate.
3917 */
3918 void
3919get_rel_pos(wp, str)
3920 win_T *wp;
3921 char_u *str;
3922{
3923 long above; /* number of lines above window */
3924 long below; /* number of lines below window */
3925
3926 above = wp->w_topline - 1;
3927#ifdef FEAT_DIFF
3928 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
3929#endif
3930 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
3931 if (below <= 0)
3932 STRCPY(str, above == 0 ? _("All") : _("Bot"));
3933 else if (above <= 0)
3934 STRCPY(str, _("Top"));
3935 else
3936 sprintf((char *)str, "%2d%%", above > 1000000L
3937 ? (int)(above / ((above + below) / 100L))
3938 : (int)(above * 100L / (above + below)));
3939}
3940#endif
3941
3942/*
3943 * Append (file 2 of 8) to 'buf', if editing more than one file.
3944 * Return TRUE if it was appended.
3945 */
3946 int
3947append_arg_number(wp, buf, add_file, maxlen)
3948 win_T *wp;
3949 char_u *buf;
3950 int add_file; /* Add "file" before the arg number */
3951 int maxlen; /* maximum nr of chars in buf or zero*/
3952{
3953 char_u *p;
3954
3955 if (ARGCOUNT <= 1) /* nothing to do */
3956 return FALSE;
3957
3958 p = buf + STRLEN(buf); /* go to the end of the buffer */
3959 if (maxlen && p - buf + 35 >= maxlen) /* getting too long */
3960 return FALSE;
3961 *p++ = ' ';
3962 *p++ = '(';
3963 if (add_file)
3964 {
3965 STRCPY(p, "file ");
3966 p += 5;
3967 }
3968 sprintf((char *)p, wp->w_arg_idx_invalid ? "(%d) of %d)"
3969 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
3970 return TRUE;
3971}
3972
3973/*
3974 * If fname is not a full path, make it a full path.
3975 * Returns pointer to allocated memory (NULL for failure).
3976 */
3977 char_u *
3978fix_fname(fname)
3979 char_u *fname;
3980{
3981 /*
3982 * Force expanding the path always for Unix, because symbolic links may
3983 * mess up the full path name, even though it starts with a '/'.
3984 * Also expand when there is ".." in the file name, try to remove it,
3985 * because "c:/src/../README" is equal to "c:/README".
3986 * For MS-Windows also expand names like "longna~1" to "longname".
3987 */
3988#ifdef UNIX
3989 return FullName_save(fname, TRUE);
3990#else
3991 if (!vim_isAbsName(fname) || strstr((char *)fname, "..") != NULL
3992#if defined(MSWIN) || defined(DJGPP)
3993 || vim_strchr(fname, '~') != NULL
3994#endif
3995 )
3996 return FullName_save(fname, FALSE);
3997
3998 fname = vim_strsave(fname);
3999
4000#ifdef USE_FNAME_CASE
4001# ifdef USE_LONG_FNAME
4002 if (USE_LONG_FNAME)
4003# endif
4004 {
4005 if (fname != NULL)
4006 fname_case(fname, 0); /* set correct case for file name */
4007 }
4008#endif
4009
4010 return fname;
4011#endif
4012}
4013
4014/*
4015 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4016 * "ffname" becomes a pointer to allocated memory (or NULL).
4017 */
4018/*ARGSUSED*/
4019 void
4020fname_expand(buf, ffname, sfname)
4021 buf_T *buf;
4022 char_u **ffname;
4023 char_u **sfname;
4024{
4025 if (*ffname == NULL) /* if no file name given, nothing to do */
4026 return;
4027 if (*sfname == NULL) /* if no short file name given, use ffname */
4028 *sfname = *ffname;
4029 *ffname = fix_fname(*ffname); /* expand to full path */
4030
4031#ifdef FEAT_SHORTCUT
4032 if (!buf->b_p_bin)
4033 {
4034 char_u *rfname = NULL;
4035
4036 /* If the file name is a shortcut file, use the file it links to. */
4037 rfname = mch_resolve_shortcut(*ffname);
4038 if (rfname)
4039 {
4040 vim_free(*ffname);
4041 *ffname = rfname;
4042 *sfname = rfname;
4043 }
4044 }
4045#endif
4046}
4047
4048/*
4049 * Get the file name for an argument list entry.
4050 */
4051 char_u *
4052alist_name(aep)
4053 aentry_T *aep;
4054{
4055 buf_T *bp;
4056
4057 /* Use the name from the associated buffer if it exists. */
4058 bp = buflist_findnr(aep->ae_fnum);
4059 if (bp == NULL)
4060 return aep->ae_fname;
4061 return bp->b_fname;
4062}
4063
4064#if defined(FEAT_WINDOWS) || defined(PROTO)
4065/*
4066 * do_arg_all(): Open up to 'count' windows, one for each argument.
4067 */
4068 void
4069do_arg_all(count, forceit)
4070 int count;
4071 int forceit; /* hide buffers in current windows */
4072{
4073 int i;
4074 win_T *wp, *wpnext;
4075 char_u *opened; /* array of flags for which args are open */
4076 int opened_len; /* lenght of opened[] */
4077 int use_firstwin = FALSE; /* use first window for arglist */
4078 int split_ret = OK;
4079 int p_ea_save;
4080 alist_T *alist; /* argument list to be used */
4081 buf_T *buf;
4082
4083 if (ARGCOUNT <= 0)
4084 {
4085 /* Don't give an error message. We don't want it when the ":all"
4086 * command is in the .vimrc. */
4087 return;
4088 }
4089 setpcmark();
4090
4091 opened_len = ARGCOUNT;
4092 opened = alloc_clear((unsigned)opened_len);
4093 if (opened == NULL)
4094 return;
4095
4096#ifdef FEAT_GUI
4097 need_mouse_correct = TRUE;
4098#endif
4099
4100 /*
4101 * Try closing all windows that are not in the argument list.
4102 * Also close windows that are not full width;
4103 * When 'hidden' or "forceit" set the buffer becomes hidden.
4104 * Windows that have a changed buffer and can't be hidden won't be closed.
4105 */
4106 for (wp = firstwin; wp != NULL; wp = wpnext)
4107 {
4108 wpnext = wp->w_next;
4109 buf = wp->w_buffer;
4110 if (buf->b_ffname == NULL
4111 || buf->b_nwindows > 1
4112#ifdef FEAT_VERTSPLIT
4113 || wp->w_width != Columns
4114#endif
4115 )
4116 i = ARGCOUNT;
4117 else
4118 {
4119 /* check if the buffer in this window is in the arglist */
4120 for (i = 0; i < ARGCOUNT; ++i)
4121 {
4122 if (ARGLIST[i].ae_fnum == buf->b_fnum
4123 || fullpathcmp(alist_name(&ARGLIST[i]),
4124 buf->b_ffname, TRUE) & FPC_SAME)
4125 {
4126 if (i < opened_len)
4127 opened[i] = TRUE;
4128 if (wp->w_alist != curwin->w_alist)
4129 {
4130 /* Use the current argument list for all windows
4131 * containing a file from it. */
4132 alist_unlink(wp->w_alist);
4133 wp->w_alist = curwin->w_alist;
4134 ++wp->w_alist->al_refcount;
4135 }
4136 break;
4137 }
4138 }
4139 }
4140 wp->w_arg_idx = i;
4141
4142 if (i == ARGCOUNT) /* close this window */
4143 {
4144 if (P_HID(buf) || forceit || buf->b_nwindows > 1
4145 || !bufIsChanged(buf))
4146 {
4147 /* If the buffer was changed, and we would like to hide it,
4148 * try autowriting. */
4149 if (!P_HID(buf) && buf->b_nwindows <= 1 && bufIsChanged(buf))
4150 {
4151 (void)autowrite(buf, FALSE);
4152#ifdef FEAT_AUTOCMD
4153 /* check if autocommands removed the window */
4154 if (!win_valid(wp) || !buf_valid(buf))
4155 {
4156 wpnext = firstwin; /* start all over... */
4157 continue;
4158 }
4159#endif
4160 }
4161#ifdef FEAT_WINDOWS
4162 if (firstwin == lastwin) /* can't close last window */
4163#endif
4164 use_firstwin = TRUE;
4165#ifdef FEAT_WINDOWS
4166 else
4167 {
4168 win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4169# ifdef FEAT_AUTOCMD
4170 /* check if autocommands removed the next window */
4171 if (!win_valid(wpnext))
4172 wpnext = firstwin; /* start all over... */
4173# endif
4174 }
4175#endif
4176 }
4177 }
4178 }
4179
4180 /*
4181 * Open a window for files in the argument list that don't have one.
4182 * ARGCOUNT may change while doing this, because of autocommands.
4183 */
4184 if (count > ARGCOUNT || count <= 0)
4185 count = ARGCOUNT;
4186
4187 /* Autocommands may do anything to the argument list. Make sure it's not
4188 * freed while we are working here by "locking" it. We still have to
4189 * watch out for its size to be changed. */
4190 alist = curwin->w_alist;
4191 ++alist->al_refcount;
4192
4193#ifdef FEAT_AUTOCMD
4194 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4195 ++autocmd_no_enter;
4196 ++autocmd_no_leave;
4197#endif
4198 win_enter(lastwin, FALSE);
4199 for (i = 0; i < count && i < alist->al_ga.ga_len && !got_int; ++i)
4200 {
4201 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4202 arg_had_last = TRUE;
4203 if (i < opened_len && opened[i])
4204 {
4205 /* Move the already present window to below the current window */
4206 if (curwin->w_arg_idx != i)
4207 {
4208 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
4209 {
4210 if (wpnext->w_arg_idx == i)
4211 {
4212 win_move_after(wpnext, curwin);
4213 break;
4214 }
4215 }
4216 }
4217 }
4218 else if (split_ret == OK)
4219 {
4220 if (!use_firstwin) /* split current window */
4221 {
4222 p_ea_save = p_ea;
4223 p_ea = TRUE; /* use space from all windows */
4224 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4225 p_ea = p_ea_save;
4226 if (split_ret == FAIL)
4227 continue;
4228 }
4229#ifdef FEAT_AUTOCMD
4230 else /* first window: do autocmd for leaving this buffer */
4231 --autocmd_no_leave;
4232#endif
4233
4234 /*
4235 * edit file i
4236 */
4237 curwin->w_arg_idx = i;
4238 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
4239 ECMD_ONE,
4240 ((P_HID(curwin->w_buffer)
4241 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
4242 + ECMD_OLDBUF);
4243#ifdef FEAT_AUTOCMD
4244 if (use_firstwin)
4245 ++autocmd_no_leave;
4246#endif
4247 use_firstwin = FALSE;
4248 }
4249 ui_breakcheck();
4250 }
4251
4252 /* Remove the "lock" on the argument list. */
4253 alist_unlink(alist);
4254
4255#ifdef FEAT_AUTOCMD
4256 --autocmd_no_enter;
4257#endif
4258 win_enter(firstwin, FALSE); /* back to first window */
4259#ifdef FEAT_AUTOCMD
4260 --autocmd_no_leave;
4261#endif
4262 vim_free(opened);
4263}
4264
4265# if defined(FEAT_LISTCMDS) || defined(PROTO)
4266/*
4267 * Open a window for a number of buffers.
4268 */
4269 void
4270ex_buffer_all(eap)
4271 exarg_T *eap;
4272{
4273 buf_T *buf;
4274 win_T *wp, *wpnext;
4275 int split_ret = OK;
4276 int p_ea_save;
4277 int open_wins = 0;
4278 int r;
4279 int count; /* Maximum number of windows to open. */
4280 int all; /* When TRUE also load inactive buffers. */
4281
4282 if (eap->addr_count == 0) /* make as many windows as possible */
4283 count = 9999;
4284 else
4285 count = eap->line2; /* make as many windows as specified */
4286 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
4287 all = FALSE;
4288 else
4289 all = TRUE;
4290
4291 setpcmark();
4292
4293#ifdef FEAT_GUI
4294 need_mouse_correct = TRUE;
4295#endif
4296
4297 /*
4298 * Close superfluous windows (two windows for the same buffer).
4299 * Also close windows that are not full-width.
4300 */
4301 for (wp = firstwin; wp != NULL; wp = wpnext)
4302 {
4303 wpnext = wp->w_next;
4304 if (wp->w_buffer->b_nwindows > 1
4305#ifdef FEAT_VERTSPLIT
4306 || ((cmdmod.split & WSP_VERT)
4307 ? wp->w_height + wp->w_status_height < Rows - p_ch
4308 : wp->w_width != Columns)
4309#endif
4310 )
4311 {
4312 win_close(wp, FALSE);
4313#ifdef FEAT_AUTOCMD
4314 wpnext = firstwin; /* just in case an autocommand does something
4315 strange with windows */
4316 open_wins = 0;
4317#endif
4318 }
4319 else
4320 ++open_wins;
4321 }
4322
4323 /*
4324 * Go through the buffer list. When a buffer doesn't have a window yet,
4325 * open one. Otherwise move the window to the right position.
4326 * Watch out for autocommands that delete buffers or windows!
4327 */
4328#ifdef FEAT_AUTOCMD
4329 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4330 ++autocmd_no_enter;
4331#endif
4332 win_enter(lastwin, FALSE);
4333#ifdef FEAT_AUTOCMD
4334 ++autocmd_no_leave;
4335#endif
4336 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
4337 {
4338 /* Check if this buffer needs a window */
4339 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
4340 continue;
4341
4342 /* Check if this buffer already has a window */
4343 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4344 if (wp->w_buffer == buf)
4345 break;
4346 /* If the buffer already has a window, move it */
4347 if (wp != NULL)
4348 win_move_after(wp, curwin);
4349 else if (split_ret == OK)
4350 {
4351 /* Split the window and put the buffer in it */
4352 p_ea_save = p_ea;
4353 p_ea = TRUE; /* use space from all windows */
4354 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4355 ++open_wins;
4356 p_ea = p_ea_save;
4357 if (split_ret == FAIL)
4358 continue;
4359
4360 /* Open the buffer in this window. */
4361#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
4362 swap_exists_action = SEA_DIALOG;
4363#endif
4364 set_curbuf(buf, DOBUF_GOTO);
4365#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 if (!buf_valid(buf)) /* autocommands deleted the buffer!!! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004368# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004370# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371 break;
4372 }
4373#endif
4374#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
4375 if (swap_exists_action == SEA_QUIT)
4376 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004377# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4378 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004379
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004380 /* Reset the error/interrupt/exception state here so that
4381 * aborting() returns FALSE when closing a window. */
4382 enter_cleanup(&cs);
4383# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004384
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004385 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 win_close(curwin, TRUE);
4387 --open_wins;
4388 swap_exists_action = SEA_NONE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004389
4390# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4391 /* Restore the error/interrupt/exception state if not
4392 * discarded by a new aborting error, interrupt, or uncaught
4393 * exception. */
4394 leave_cleanup(&cs);
4395# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 }
4397 else
4398 handle_swap_exists(NULL);
4399#endif
4400 }
4401
4402 ui_breakcheck();
4403 if (got_int)
4404 {
4405 (void)vgetc(); /* only break the file loading, not the rest */
4406 break;
4407 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004408#ifdef FEAT_EVAL
4409 /* Autocommands deleted the buffer or aborted script processing!!! */
4410 if (aborting())
4411 break;
4412#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 }
4414#ifdef FEAT_AUTOCMD
4415 --autocmd_no_enter;
4416#endif
4417 win_enter(firstwin, FALSE); /* back to first window */
4418#ifdef FEAT_AUTOCMD
4419 --autocmd_no_leave;
4420#endif
4421
4422 /*
4423 * Close superfluous windows.
4424 */
4425 for (wp = lastwin; open_wins > count; )
4426 {
4427 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
4428 || autowrite(wp->w_buffer, FALSE) == OK);
4429#ifdef FEAT_AUTOCMD
4430 if (!win_valid(wp))
4431 {
4432 /* BufWrite Autocommands made the window invalid, start over */
4433 wp = lastwin;
4434 }
4435 else
4436#endif
4437 if (r)
4438 {
4439 win_close(wp, !P_HID(wp->w_buffer));
4440 --open_wins;
4441 wp = lastwin;
4442 }
4443 else
4444 {
4445 wp = wp->w_prev;
4446 if (wp == NULL)
4447 break;
4448 }
4449 }
4450}
4451# endif /* FEAT_LISTCMDS */
4452
4453#endif /* FEAT_WINDOWS */
4454
4455/*
4456 * do_modelines() - process mode lines for the current file
4457 *
4458 * Returns immediately if the "ml" option isn't set.
4459 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004460static int chk_modeline __ARGS((linenr_T, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461
4462 void
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004463do_modelines(win_only)
4464 int win_only; /* Only do window-local options. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004466 linenr_T lnum;
4467 int nmlines;
4468 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469
4470 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
4471 return;
4472
4473 /* Disallow recursive entry here. Can happen when executing a modeline
4474 * triggers an autocommand, which reloads modelines with a ":do". */
4475 if (entered)
4476 return;
4477
4478 ++entered;
4479 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
4480 ++lnum)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004481 if (chk_modeline(lnum, win_only) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 nmlines = 0;
4483
4484 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
4485 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004486 if (chk_modeline(lnum, win_only) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 nmlines = 0;
4488 --entered;
4489}
4490
4491#include "version.h" /* for version number */
4492
4493/*
4494 * chk_modeline() - check a single line for a mode string
4495 * Return FAIL if an error encountered.
4496 */
4497 static int
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004498chk_modeline(lnum, win_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 linenr_T lnum;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004500 int win_only; /* Only do window-local options. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501{
4502 char_u *s;
4503 char_u *e;
4504 char_u *linecopy; /* local copy of any modeline found */
4505 int prev;
4506 int vers;
4507 int end;
4508 int retval = OK;
4509 char_u *save_sourcing_name;
4510 linenr_T save_sourcing_lnum;
4511#ifdef FEAT_EVAL
4512 scid_T save_SID;
4513#endif
4514
4515 prev = -1;
4516 for (s = ml_get(lnum); *s != NUL; ++s)
4517 {
4518 if (prev == -1 || vim_isspace(prev))
4519 {
4520 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
4521 || STRNCMP(s, "vi:", (size_t)3) == 0)
4522 break;
4523 if (STRNCMP(s, "vim", 3) == 0)
4524 {
4525 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
4526 e = s + 4;
4527 else
4528 e = s + 3;
4529 vers = getdigits(&e);
4530 if (*e == ':'
4531 && (s[3] == ':'
4532 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
4533 || (VIM_VERSION_100 < vers && s[3] == '<')
4534 || (VIM_VERSION_100 > vers && s[3] == '>')
4535 || (VIM_VERSION_100 == vers && s[3] == '=')))
4536 break;
4537 }
4538 }
4539 prev = *s;
4540 }
4541
4542 if (*s)
4543 {
4544 do /* skip over "ex:", "vi:" or "vim:" */
4545 ++s;
4546 while (s[-1] != ':');
4547
4548 s = linecopy = vim_strsave(s); /* copy the line, it will change */
4549 if (linecopy == NULL)
4550 return FAIL;
4551
4552 save_sourcing_lnum = sourcing_lnum;
4553 save_sourcing_name = sourcing_name;
4554 sourcing_lnum = lnum; /* prepare for emsg() */
4555 sourcing_name = (char_u *)"modelines";
4556
4557 end = FALSE;
4558 while (end == FALSE)
4559 {
4560 s = skipwhite(s);
4561 if (*s == NUL)
4562 break;
4563
4564 /*
4565 * Find end of set command: ':' or end of line.
4566 * Skip over "\:", replacing it with ":".
4567 */
4568 for (e = s; *e != ':' && *e != NUL; ++e)
4569 if (e[0] == '\\' && e[1] == ':')
4570 STRCPY(e, e + 1);
4571 if (*e == NUL)
4572 end = TRUE;
4573
4574 /*
4575 * If there is a "set" command, require a terminating ':' and
4576 * ignore the stuff after the ':'.
4577 * "vi:set opt opt opt: foo" -- foo not interpreted
4578 * "vi:opt opt opt: foo" -- foo interpreted
4579 * Accept "se" for compatibility with Elvis.
4580 */
4581 if (STRNCMP(s, "set ", (size_t)4) == 0
4582 || STRNCMP(s, "se ", (size_t)3) == 0)
4583 {
4584 if (*e != ':') /* no terminating ':'? */
4585 break;
4586 end = TRUE;
4587 s = vim_strchr(s, ' ') + 1;
4588 }
4589 *e = NUL; /* truncate the set command */
4590
4591 if (*s != NUL) /* skip over an empty "::" */
4592 {
4593#ifdef FEAT_EVAL
4594 save_SID = current_SID;
4595 current_SID = SID_MODELINE;
4596#endif
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004597 retval = do_set(s, OPT_MODELINE | OPT_LOCAL
4598 | (win_only ? OPT_WINONLY : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599#ifdef FEAT_EVAL
4600 current_SID = save_SID;
4601#endif
4602 if (retval == FAIL) /* stop if error found */
4603 break;
4604 }
4605 s = e + 1; /* advance to next part */
4606 }
4607
4608 sourcing_lnum = save_sourcing_lnum;
4609 sourcing_name = save_sourcing_name;
4610
4611 vim_free(linecopy);
4612 }
4613 return retval;
4614}
4615
4616#ifdef FEAT_VIMINFO
4617 int
4618read_viminfo_bufferlist(virp, writing)
4619 vir_T *virp;
4620 int writing;
4621{
4622 char_u *tab;
4623 linenr_T lnum;
4624 colnr_T col;
4625 buf_T *buf;
4626 char_u *sfname;
4627 char_u *xline;
4628
4629 /* Handle long line and escaped characters. */
4630 xline = viminfo_readstring(virp, 1, FALSE);
4631
4632 /* don't read in if there are files on the command-line or if writing: */
4633 if (xline != NULL && !writing && ARGCOUNT == 0
4634 && find_viminfo_parameter('%') != NULL)
4635 {
4636 /* Format is: <fname> Tab <lnum> Tab <col>.
4637 * Watch out for a Tab in the file name, work from the end. */
4638 lnum = 0;
4639 col = 0;
4640 tab = vim_strrchr(xline, '\t');
4641 if (tab != NULL)
4642 {
4643 *tab++ = '\0';
4644 col = atoi((char *)tab);
4645 tab = vim_strrchr(xline, '\t');
4646 if (tab != NULL)
4647 {
4648 *tab++ = '\0';
4649 lnum = atol((char *)tab);
4650 }
4651 }
4652
4653 /* Expand "~/" in the file name at "line + 1" to a full path.
4654 * Then try shortening it by comparing with the current directory */
4655 expand_env(xline, NameBuff, MAXPATHL);
4656 mch_dirname(IObuff, IOSIZE);
4657 sfname = shorten_fname(NameBuff, IObuff);
4658 if (sfname == NULL)
4659 sfname = NameBuff;
4660
4661 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
4662 if (buf != NULL) /* just in case... */
4663 {
4664 buf->b_last_cursor.lnum = lnum;
4665 buf->b_last_cursor.col = col;
4666 buflist_setfpos(buf, curwin, lnum, col, FALSE);
4667 }
4668 }
4669 vim_free(xline);
4670
4671 return viminfo_readline(virp);
4672}
4673
4674 void
4675write_viminfo_bufferlist(fp)
4676 FILE *fp;
4677{
4678 buf_T *buf;
4679#ifdef FEAT_WINDOWS
4680 win_T *win;
4681#endif
4682 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004683 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684
4685 if (find_viminfo_parameter('%') == NULL)
4686 return;
4687
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004688 /* Without a number -1 is returned: do all buffers. */
4689 max_buffers = get_viminfo_parameter('%');
4690
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 /* Allocate room for the file name, lnum and col. */
4692 line = alloc(MAXPATHL + 30);
4693 if (line == NULL)
4694 return;
4695
4696#ifdef FEAT_WINDOWS
4697 for (win = firstwin; win != NULL; win = win->w_next)
4698 set_last_cursor(win);
4699#else
4700 set_last_cursor(curwin);
4701#endif
4702
4703 fprintf(fp, _("\n# Buffer list:\n"));
4704 for (buf = firstbuf; buf != NULL ; buf = buf->b_next)
4705 {
4706 if (buf->b_fname == NULL
4707 || !buf->b_p_bl
4708#ifdef FEAT_QUICKFIX
4709 || bt_quickfix(buf)
4710#endif
4711 || removable(buf->b_ffname))
4712 continue;
4713
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004714 if (max_buffers-- == 0)
4715 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 putc('%', fp);
4717 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
4718 sprintf((char *)line + STRLEN(line), "\t%ld\t%d",
4719 (long)buf->b_last_cursor.lnum,
4720 buf->b_last_cursor.col);
4721 viminfo_writestring(fp, line);
4722 }
4723 vim_free(line);
4724}
4725#endif
4726
4727
4728/*
4729 * Return special buffer name.
4730 * Returns NULL when the buffer has a normal file name.
4731 */
4732 char *
4733buf_spname(buf)
4734 buf_T *buf;
4735{
4736#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
4737 if (bt_quickfix(buf))
4738 return _("[Error List]");
4739#endif
4740#ifdef FEAT_QUICKFIX
4741 /* There is no _file_ when 'buftype' is "nofile", b_sfname
4742 * contains the name as specified by the user */
4743 if (bt_nofile(buf))
4744 {
4745 if (buf->b_sfname != NULL)
4746 return (char *)buf->b_sfname;
4747 return "[Scratch]";
4748 }
4749#endif
4750 if (buf->b_fname == NULL)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004751 return _("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 return NULL;
4753}
4754
4755
4756#if defined(FEAT_SIGNS) || defined(PROTO)
4757/*
4758 * Insert the sign into the signlist.
4759 */
4760 static void
4761insert_sign(buf, prev, next, id, lnum, typenr)
4762 buf_T *buf; /* buffer to store sign in */
4763 signlist_T *prev; /* previous sign entry */
4764 signlist_T *next; /* next sign entry */
4765 int id; /* sign ID */
4766 linenr_T lnum; /* line number which gets the mark */
4767 int typenr; /* typenr of sign we are adding */
4768{
4769 signlist_T *newsign;
4770
4771 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
4772 if (newsign != NULL)
4773 {
4774 newsign->id = id;
4775 newsign->lnum = lnum;
4776 newsign->typenr = typenr;
4777 newsign->next = next;
4778#ifdef FEAT_NETBEANS_INTG
4779 newsign->prev = prev;
4780 if (next != NULL)
4781 next->prev = newsign;
4782#endif
4783
4784 if (prev == NULL)
4785 {
4786 /* When adding first sign need to redraw the windows to create the
4787 * column for signs. */
4788 if (buf->b_signlist == NULL)
4789 {
4790 redraw_buf_later(buf, NOT_VALID);
4791 changed_cline_bef_curs();
4792 }
4793
4794 /* first sign in signlist */
4795 buf->b_signlist = newsign;
4796 }
4797 else
4798 prev->next = newsign;
4799 }
4800}
4801
4802/*
4803 * Add the sign into the signlist. Find the right spot to do it though.
4804 */
4805 void
4806buf_addsign(buf, id, lnum, typenr)
4807 buf_T *buf; /* buffer to store sign in */
4808 int id; /* sign ID */
4809 linenr_T lnum; /* line number which gets the mark */
4810 int typenr; /* typenr of sign we are adding */
4811{
4812 signlist_T *sign; /* a sign in the signlist */
4813 signlist_T *prev; /* the previous sign */
4814
4815 prev = NULL;
4816 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4817 {
4818 if (lnum == sign->lnum && id == sign->id)
4819 {
4820 sign->typenr = typenr;
4821 return;
4822 }
4823 else if (
4824#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
4825 id < 0 &&
4826#endif
4827 lnum < sign->lnum)
4828 {
4829#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
4830 /* XXX - GRP: Is this because of sign slide problem? Or is it
4831 * really needed? Or is it because we allow multiple signs per
4832 * line? If so, should I add that feature to FEAT_SIGNS?
4833 */
4834 while (prev != NULL && prev->lnum == lnum)
4835 prev = prev->prev;
4836 if (prev == NULL)
4837 sign = buf->b_signlist;
4838 else
4839 sign = prev->next;
4840#endif
4841 insert_sign(buf, prev, sign, id, lnum, typenr);
4842 return;
4843 }
4844 prev = sign;
4845 }
4846#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
4847 /* XXX - GRP: See previous comment */
4848 while (prev != NULL && prev->lnum == lnum)
4849 prev = prev->prev;
4850 if (prev == NULL)
4851 sign = buf->b_signlist;
4852 else
4853 sign = prev->next;
4854#endif
4855 insert_sign(buf, prev, sign, id, lnum, typenr);
4856
4857 return;
4858}
4859
4860 int
4861buf_change_sign_type(buf, markId, typenr)
4862 buf_T *buf; /* buffer to store sign in */
4863 int markId; /* sign ID */
4864 int typenr; /* typenr of sign we are adding */
4865{
4866 signlist_T *sign; /* a sign in the signlist */
4867
4868 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4869 {
4870 if (sign->id == markId)
4871 {
4872 sign->typenr = typenr;
4873 return sign->lnum;
4874 }
4875 }
4876
4877 return 0;
4878}
4879
4880 int_u
4881buf_getsigntype(buf, lnum, type)
4882 buf_T *buf;
4883 linenr_T lnum;
4884 int type; /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
4885{
4886 signlist_T *sign; /* a sign in a b_signlist */
4887
4888 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4889 if (sign->lnum == lnum
4890 && (type == SIGN_ANY
4891# ifdef FEAT_SIGN_ICONS
4892 || (type == SIGN_ICON
4893 && sign_get_image(sign->typenr) != NULL)
4894# endif
4895 || (type == SIGN_TEXT
4896 && sign_get_text(sign->typenr) != NULL)
4897 || (type == SIGN_LINEHL
4898 && sign_get_attr(sign->typenr, TRUE) != 0)))
4899 return sign->typenr;
4900 return 0;
4901}
4902
4903
4904 linenr_T
4905buf_delsign(buf, id)
4906 buf_T *buf; /* buffer sign is stored in */
4907 int id; /* sign id */
4908{
4909 signlist_T **lastp; /* pointer to pointer to current sign */
4910 signlist_T *sign; /* a sign in a b_signlist */
4911 signlist_T *next; /* the next sign in a b_signlist */
4912 linenr_T lnum; /* line number whose sign was deleted */
4913
4914 lastp = &buf->b_signlist;
4915 lnum = 0;
4916 for (sign = buf->b_signlist; sign != NULL; sign = next)
4917 {
4918 next = sign->next;
4919 if (sign->id == id)
4920 {
4921 *lastp = next;
4922#ifdef FEAT_NETBEANS_INTG
4923 if (next != NULL)
4924 next->prev = sign->prev;
4925#endif
4926 lnum = sign->lnum;
4927 vim_free(sign);
4928 break;
4929 }
4930 else
4931 lastp = &sign->next;
4932 }
4933
4934 /* When deleted the last sign need to redraw the windows to remove the
4935 * sign column. */
4936 if (buf->b_signlist == NULL)
4937 {
4938 redraw_buf_later(buf, NOT_VALID);
4939 changed_cline_bef_curs();
4940 }
4941
4942 return lnum;
4943}
4944
4945
4946/*
4947 * Find the line number of the sign with the requested id. If the sign does
4948 * not exist, return 0 as the line number. This will still let the correct file
4949 * get loaded.
4950 */
4951 int
4952buf_findsign(buf, id)
4953 buf_T *buf; /* buffer to store sign in */
4954 int id; /* sign ID */
4955{
4956 signlist_T *sign; /* a sign in the signlist */
4957
4958 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4959 if (sign->id == id)
4960 return sign->lnum;
4961
4962 return 0;
4963}
4964
4965 int
4966buf_findsign_id(buf, lnum)
4967 buf_T *buf; /* buffer whose sign we are searching for */
4968 linenr_T lnum; /* line number of sign */
4969{
4970 signlist_T *sign; /* a sign in the signlist */
4971
4972 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4973 if (sign->lnum == lnum)
4974 return sign->id;
4975
4976 return 0;
4977}
4978
4979
4980# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
4981/* see if a given type of sign exists on a specific line */
4982 int
4983buf_findsigntype_id(buf, lnum, typenr)
4984 buf_T *buf; /* buffer whose sign we are searching for */
4985 linenr_T lnum; /* line number of sign */
4986 int typenr; /* sign type number */
4987{
4988 signlist_T *sign; /* a sign in the signlist */
4989
4990 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
4991 if (sign->lnum == lnum && sign->typenr == typenr)
4992 return sign->id;
4993
4994 return 0;
4995}
4996
4997
4998# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
4999/* return the number of icons on the given line */
5000 int
5001buf_signcount(buf, lnum)
5002 buf_T *buf;
5003 linenr_T lnum;
5004{
5005 signlist_T *sign; /* a sign in the signlist */
5006 int count = 0;
5007
5008 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5009 if (sign->lnum == lnum)
5010 if (sign_get_image(sign->typenr) != NULL)
5011 count++;
5012
5013 return count;
5014}
5015# endif /* FEAT_SIGN_ICONS */
5016# endif /* FEAT_NETBEANS_INTG */
5017
5018
5019/*
5020 * Delete signs in buffer "buf".
5021 */
5022 static void
5023buf_delete_signs(buf)
5024 buf_T *buf;
5025{
5026 signlist_T *next;
5027
5028 while (buf->b_signlist != NULL)
5029 {
5030 next = buf->b_signlist->next;
5031 vim_free(buf->b_signlist);
5032 buf->b_signlist = next;
5033 }
5034}
5035
5036/*
5037 * Delete all signs in all buffers.
5038 */
5039 void
5040buf_delete_all_signs()
5041{
5042 buf_T *buf; /* buffer we are checking for signs */
5043
5044 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
5045 if (buf->b_signlist != NULL)
5046 {
5047 /* Need to redraw the windows to remove the sign column. */
5048 redraw_buf_later(buf, NOT_VALID);
5049 buf_delete_signs(buf);
5050 }
5051}
5052
5053/*
5054 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
5055 */
5056 void
5057sign_list_placed(rbuf)
5058 buf_T *rbuf;
5059{
5060 buf_T *buf;
5061 signlist_T *p;
5062 char lbuf[BUFSIZ];
5063
5064 MSG_PUTS_TITLE(_("\n--- Signs ---"));
5065 msg_putchar('\n');
5066 if (rbuf == NULL)
5067 buf = firstbuf;
5068 else
5069 buf = rbuf;
5070 while (buf != NULL)
5071 {
5072 if (buf->b_signlist != NULL)
5073 {
5074#ifdef HAVE_SNPRINTF
5075 snprintf
5076#else
5077 sprintf
5078#endif
5079 (lbuf,
5080#ifdef HAVE_SNPRINTF
5081 BUFSIZ,
5082#endif
5083 _("Signs for %s:"), buf->b_fname);
5084 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
5085 msg_putchar('\n');
5086 }
5087 for (p = buf->b_signlist; p != NULL; p = p->next)
5088 {
5089 sprintf(lbuf, _(" line=%ld id=%d name=%s"),
5090 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
5091 MSG_PUTS(lbuf);
5092 msg_putchar('\n');
5093 }
5094 if (rbuf != NULL)
5095 break;
5096 buf = buf->b_next;
5097 }
5098}
5099
5100/*
5101 * Adjust a placed sign for inserted/deleted lines.
5102 */
5103 void
5104sign_mark_adjust(line1, line2, amount, amount_after)
5105 linenr_T line1;
5106 linenr_T line2;
5107 long amount;
5108 long amount_after;
5109{
5110 signlist_T *sign; /* a sign in a b_signlist */
5111
5112 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
5113 {
5114 if (sign->lnum >= line1 && sign->lnum <= line2)
5115 {
5116 if (amount == MAXLNUM)
5117 sign->lnum = line1;
5118 else
5119 sign->lnum += amount;
5120 }
5121 else if (sign->lnum > line2)
5122 sign->lnum += amount_after;
5123 }
5124}
5125#endif /* FEAT_SIGNS */
5126
5127/*
5128 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5129 */
5130 void
5131set_buflisted(on)
5132 int on;
5133{
5134 if (on != curbuf->b_p_bl)
5135 {
5136 curbuf->b_p_bl = on;
5137#ifdef FEAT_AUTOCMD
5138 if (on)
5139 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5140 else
5141 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
5142#endif
5143 }
5144}
5145
5146/*
5147 * Read the file for "buf" again and check if the contents changed.
5148 * Return TRUE if it changed or this could not be checked.
5149 */
5150 int
5151buf_contents_changed(buf)
5152 buf_T *buf;
5153{
5154 buf_T *newbuf;
5155 int differ = TRUE;
5156 linenr_T lnum;
5157#ifdef FEAT_AUTOCMD
5158 aco_save_T aco;
5159#else
5160 buf_T *old_curbuf = curbuf;
5161#endif
5162 exarg_T ea;
5163
5164 /* Allocate a buffer without putting it in the buffer list. */
5165 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5166 if (newbuf == NULL)
5167 return TRUE;
5168
5169 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5170 if (prep_exarg(&ea, buf) == FAIL)
5171 {
5172 wipe_buffer(newbuf, FALSE);
5173 return TRUE;
5174 }
5175
5176#ifdef FEAT_AUTOCMD
5177 /* set curwin/curbuf to buf and save a few things */
5178 aucmd_prepbuf(&aco, newbuf);
5179#else
5180 curbuf = newbuf;
5181 curwin->w_buffer = newbuf;
5182#endif
5183
5184 if (ml_open() == OK
5185 && readfile(buf->b_ffname, buf->b_fname,
5186 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5187 &ea, READ_NEW | READ_DUMMY) == OK)
5188 {
5189 /* compare the two files line by line */
5190 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5191 {
5192 differ = FALSE;
5193 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5194 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5195 {
5196 differ = TRUE;
5197 break;
5198 }
5199 }
5200 }
5201 vim_free(ea.cmd);
5202
5203#ifdef FEAT_AUTOCMD
5204 /* restore curwin/curbuf and a few other things */
5205 aucmd_restbuf(&aco);
5206#else
5207 curbuf = old_curbuf;
5208 curwin->w_buffer = old_curbuf;
5209#endif
5210
5211 if (curbuf != newbuf) /* safety check */
5212 wipe_buffer(newbuf, FALSE);
5213
5214 return differ;
5215}
5216
5217/*
5218 * Wipe out a buffer and decrement the last buffer number if it was used for
5219 * this buffer. Call this to wipe out a temp buffer that does not contain any
5220 * marks.
5221 */
5222/*ARGSUSED*/
5223 void
5224wipe_buffer(buf, aucmd)
5225 buf_T *buf;
5226 int aucmd; /* When TRUE trigger autocommands. */
5227{
5228 if (buf->b_fnum == top_file_num - 1)
5229 --top_file_num;
5230
5231#ifdef FEAT_AUTOCMD
5232 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
5233 ++autocmd_block;
5234#endif
5235 close_buffer(NULL, buf, DOBUF_WIPE);
5236#ifdef FEAT_AUTOCMD
5237 if (!aucmd)
5238 --autocmd_block;
5239#endif
5240}