blob: 44aac3453ed8ae10e19c5d6e5bac754189acb9b2 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * buffer.c: functions for dealing with the buffer structure
12 */
13
14/*
15 * The buffer list is a double linked list of all buffers.
16 * Each buffer can be in one of these states:
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19 * hidden: b_nwindows == 0, loaded but not displayed in a window
20 * normal: loaded and displayed in a window
21 *
22 * Instead of storing file names all over the place, each file name is
23 * stored in the buffer list. It can be referenced by a number.
24 *
25 * The current implementation remembers all file names ever used.
26 */
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#include "vim.h"
29
30#if defined(FEAT_CMDL_COMPL) || defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL)
31static char_u *buflist_match __ARGS((regprog_T *prog, buf_T *buf));
32# define HAVE_BUFLIST_MATCH
33static char_u *fname_match __ARGS((regprog_T *prog, char_u *name));
34#endif
35static void buflist_setfpos __ARGS((buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options));
36static wininfo_T *find_wininfo __ARGS((buf_T *buf));
37#ifdef UNIX
38static buf_T *buflist_findname_stat __ARGS((char_u *ffname, struct stat *st));
39static int otherfile_buf __ARGS((buf_T *buf, char_u *ffname, struct stat *stp));
40static int buf_same_ino __ARGS((buf_T *buf, struct stat *stp));
41#else
42static int otherfile_buf __ARGS((buf_T *buf, char_u *ffname));
43#endif
44#ifdef FEAT_TITLE
45static int ti_change __ARGS((char_u *str, char_u **last));
46#endif
47static void free_buffer __ARGS((buf_T *));
48static void free_buffer_stuff __ARGS((buf_T *buf, int free_options));
49static void clear_wininfo __ARGS((buf_T *buf));
50
51#ifdef UNIX
52# define dev_T dev_t
53#else
54# define dev_T unsigned
55#endif
56
57#if defined(FEAT_SIGNS)
58static void insert_sign __ARGS((buf_T *buf, signlist_T *prev, signlist_T *next, int id, linenr_T lnum, int typenr));
59static void buf_delete_signs __ARGS((buf_T *buf));
60#endif
61
62/*
63 * Open current buffer, that is: open the memfile and read the file into memory
64 * return FAIL for failure, OK otherwise
65 */
66 int
67open_buffer(read_stdin, eap)
68 int read_stdin; /* read file from stdin */
69 exarg_T *eap; /* for forced 'ff' and 'fenc' or NULL */
70{
71 int retval = OK;
72#ifdef FEAT_AUTOCMD
73 buf_T *old_curbuf;
74#endif
75
76 /*
77 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
78 * When re-entering the same buffer, it should not change, because the
79 * user may have reset the flag by hand.
80 */
81 if (readonlymode && curbuf->b_ffname != NULL
82 && (curbuf->b_flags & BF_NEVERLOADED))
83 curbuf->b_p_ro = TRUE;
84
Bram Moolenaar4770d092006-01-12 23:22:24 +000085 if (ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000086 {
87 /*
88 * There MUST be a memfile, otherwise we can't do anything
89 * If we can't create one for the current buffer, take another buffer
90 */
91 close_buffer(NULL, curbuf, 0);
92 for (curbuf = firstbuf; curbuf != NULL; curbuf = curbuf->b_next)
93 if (curbuf->b_ml.ml_mfp != NULL)
94 break;
95 /*
96 * if there is no memfile at all, exit
97 * This is OK, since there are no changes to loose.
98 */
99 if (curbuf == NULL)
100 {
101 EMSG(_("E82: Cannot allocate any buffer, exiting..."));
102 getout(2);
103 }
104 EMSG(_("E83: Cannot allocate buffer, using other one..."));
105 enter_buffer(curbuf);
106 return FAIL;
107 }
108
109#ifdef FEAT_AUTOCMD
110 /* The autocommands in readfile() may change the buffer, but only AFTER
111 * reading the file. */
112 old_curbuf = curbuf;
113 modified_was_set = FALSE;
114#endif
115
116 /* mark cursor position as being invalid */
117 changed_line_abv_curs();
118
119 if (curbuf->b_ffname != NULL
120#ifdef FEAT_NETBEANS_INTG
121 && netbeansReadFile
122#endif
123 )
124 {
125#ifdef FEAT_NETBEANS_INTG
126 int oldFire = netbeansFireChanges;
127
128 netbeansFireChanges = 0;
129#endif
130 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
131 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap, READ_NEW);
132#ifdef FEAT_NETBEANS_INTG
133 netbeansFireChanges = oldFire;
134#endif
135 /* Help buffer is filtered. */
136 if (curbuf->b_help)
137 fix_help_buffer();
138 }
139 else if (read_stdin)
140 {
141 int save_bin = curbuf->b_p_bin;
142 linenr_T line_count;
143
144 /*
145 * First read the text in binary mode into the buffer.
146 * Then read from that same buffer and append at the end. This makes
147 * it possible to retry when 'fileformat' or 'fileencoding' was
148 * guessed wrong.
149 */
150 curbuf->b_p_bin = TRUE;
151 retval = readfile(NULL, NULL, (linenr_T)0,
152 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW + READ_STDIN);
153 curbuf->b_p_bin = save_bin;
154 if (retval == OK)
155 {
156 line_count = curbuf->b_ml.ml_line_count;
157 retval = readfile(NULL, NULL, (linenr_T)line_count,
158 (linenr_T)0, (linenr_T)MAXLNUM, eap, READ_BUFFER);
159 if (retval == OK)
160 {
161 /* Delete the binary lines. */
162 while (--line_count >= 0)
163 ml_delete((linenr_T)1, FALSE);
164 }
165 else
166 {
167 /* Delete the converted lines. */
168 while (curbuf->b_ml.ml_line_count > line_count)
169 ml_delete(line_count, FALSE);
170 }
171 /* Put the cursor on the first line. */
172 curwin->w_cursor.lnum = 1;
173 curwin->w_cursor.col = 0;
174#ifdef FEAT_AUTOCMD
175# ifdef FEAT_EVAL
176 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
177 curbuf, &retval);
178# else
179 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
180# endif
181#endif
182 }
183 }
184
185 /* if first time loading this buffer, init b_chartab[] */
186 if (curbuf->b_flags & BF_NEVERLOADED)
187 (void)buf_init_chartab(curbuf, FALSE);
188
189 /*
190 * Set/reset the Changed flag first, autocmds may change the buffer.
191 * Apply the automatic commands, before processing the modelines.
192 * So the modelines have priority over auto commands.
193 */
194 /* When reading stdin, the buffer contents always needs writing, so set
195 * the changed flag. Unless in readonly mode: "ls | gview -".
196 * When interrupted and 'cpoptions' contains 'i' set changed flag. */
197 if ((read_stdin && !readonlymode && !bufempty())
198#ifdef FEAT_AUTOCMD
199 || modified_was_set /* ":set modified" used in autocmd */
200# ifdef FEAT_EVAL
201 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
202# endif
203#endif
204 || (got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL))
205 changed();
206 else if (retval != FAIL)
207 unchanged(curbuf, FALSE);
208 save_file_ff(curbuf); /* keep this fileformat */
209
210 /* require "!" to overwrite the file, because it wasn't read completely */
211#ifdef FEAT_EVAL
212 if (aborting())
213#else
214 if (got_int)
215#endif
216 curbuf->b_flags |= BF_READERR;
217
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000218#ifdef FEAT_FOLDING
219 /* Need to update automatic folding. Do this before the autocommands,
220 * they may use the fold info. */
221 foldUpdateAll(curwin);
222#endif
223
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224#ifdef FEAT_AUTOCMD
225 /* need to set w_topline, unless some autocommand already did that. */
226 if (!(curwin->w_valid & VALID_TOPLINE))
227 {
228 curwin->w_topline = 1;
229# ifdef FEAT_DIFF
230 curwin->w_topfill = 0;
231# endif
232 }
233# ifdef FEAT_EVAL
234 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
235# else
236 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
237# endif
238#endif
239
240 if (retval != FAIL)
241 {
242#ifdef FEAT_AUTOCMD
243 /*
244 * The autocommands may have changed the current buffer. Apply the
245 * modelines to the correct buffer, if it still exists and is loaded.
246 */
247 if (buf_valid(old_curbuf) && old_curbuf->b_ml.ml_mfp != NULL)
248 {
249 aco_save_T aco;
250
251 /* Go to the buffer that was opened. */
252 aucmd_prepbuf(&aco, old_curbuf);
253#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +0000254 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
256
257#ifdef FEAT_AUTOCMD
258# ifdef FEAT_EVAL
259 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
260 &retval);
261# else
262 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
263# endif
264
265 /* restore curwin/curbuf and a few other things */
266 aucmd_restbuf(&aco);
267 }
268#endif
269 }
270
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 return retval;
272}
273
274/*
275 * Return TRUE if "buf" points to a valid buffer (in the buffer list).
276 */
277 int
278buf_valid(buf)
279 buf_T *buf;
280{
281 buf_T *bp;
282
283 for (bp = firstbuf; bp != NULL; bp = bp->b_next)
284 if (bp == buf)
285 return TRUE;
286 return FALSE;
287}
288
289/*
290 * Close the link to a buffer.
291 * "action" is used when there is no longer a window for the buffer.
292 * It can be:
293 * 0 buffer becomes hidden
294 * DOBUF_UNLOAD buffer is unloaded
295 * DOBUF_DELETE buffer is unloaded and removed from buffer list
296 * DOBUF_WIPE buffer is unloaded and really deleted
297 * When doing all but the first one on the current buffer, the caller should
298 * get a new buffer very soon!
299 *
300 * The 'bufhidden' option can force freeing and deleting.
301 */
302 void
303close_buffer(win, buf, action)
304 win_T *win; /* if not NULL, set b_last_cursor */
305 buf_T *buf;
306 int action;
307{
308#ifdef FEAT_AUTOCMD
309 int is_curbuf;
310 int nwindows = buf->b_nwindows;
311#endif
312 int unload_buf = (action != 0);
313 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
314 int wipe_buf = (action == DOBUF_WIPE);
315
316#ifdef FEAT_QUICKFIX
317 /*
318 * Force unloading or deleting when 'bufhidden' says so.
319 * The caller must take care of NOT deleting/freeing when 'bufhidden' is
320 * "hide" (otherwise we could never free or delete a buffer).
321 */
322 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */
323 {
324 del_buf = TRUE;
325 unload_buf = TRUE;
326 }
327 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */
328 {
329 del_buf = TRUE;
330 unload_buf = TRUE;
331 wipe_buf = TRUE;
332 }
333 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */
334 unload_buf = TRUE;
335#endif
336
337 if (win != NULL)
338 {
339 /* Set b_last_cursor when closing the last window for the buffer.
340 * Remember the last cursor position and window options of the buffer.
341 * This used to be only for the current window, but then options like
342 * 'foldmethod' may be lost with a ":only" command. */
343 if (buf->b_nwindows == 1)
344 set_last_cursor(win);
345 buflist_setfpos(buf, win,
346 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
347 win->w_cursor.col, TRUE);
348 }
349
350#ifdef FEAT_AUTOCMD
351 /* When the buffer is no longer in a window, trigger BufWinLeave */
352 if (buf->b_nwindows == 1)
353 {
354 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
355 FALSE, buf);
356 if (!buf_valid(buf)) /* autocommands may delete the buffer */
357 return;
358
359 /* When the buffer becomes hidden, but is not unloaded, trigger
360 * BufHidden */
361 if (!unload_buf)
362 {
363 apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
364 FALSE, buf);
365 if (!buf_valid(buf)) /* autocmds may delete the buffer */
366 return;
367 }
368# ifdef FEAT_EVAL
369 if (aborting()) /* autocmds may abort script processing */
370 return;
371# endif
372 }
373 nwindows = buf->b_nwindows;
374#endif
375
376 /* decrease the link count from windows (unless not in any window) */
377 if (buf->b_nwindows > 0)
378 --buf->b_nwindows;
379
380 /* Return when a window is displaying the buffer or when it's not
381 * unloaded. */
382 if (buf->b_nwindows > 0 || !unload_buf)
383 {
384 if (buf == curbuf)
385 u_sync(); /* sync undo before going to another buffer */
386 return;
387 }
388
389 /* Always remove the buffer when there is no file name. */
390 if (buf->b_ffname == NULL)
391 del_buf = TRUE;
392
393 /*
394 * Free all things allocated for this buffer.
395 * Also calls the "BufDelete" autocommands when del_buf is TRUE.
396 */
397#ifdef FEAT_AUTOCMD
398 /* Remember if we are closing the current buffer. Restore the number of
399 * windows, so that autocommands in buf_freeall() don't get confused. */
400 is_curbuf = (buf == curbuf);
401 buf->b_nwindows = nwindows;
402#endif
403
404 buf_freeall(buf, del_buf, wipe_buf);
405
406#ifdef FEAT_AUTOCMD
407 /* Autocommands may have deleted the buffer. */
408 if (!buf_valid(buf))
409 return;
410# ifdef FEAT_EVAL
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000411 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412 return;
413# endif
414
415 /* Autocommands may have opened or closed windows for this buffer.
416 * Decrement the count for the close we do here. */
417 if (buf->b_nwindows > 0)
418 --buf->b_nwindows;
419
420 /*
421 * It's possible that autocommands change curbuf to the one being deleted.
422 * This might cause the previous curbuf to be deleted unexpectedly. But
423 * in some cases it's OK to delete the curbuf, because a new one is
424 * obtained anyway. Therefore only return if curbuf changed to the
425 * deleted buffer.
426 */
427 if (buf == curbuf && !is_curbuf)
428 return;
429#endif
430
431#ifdef FEAT_NETBEANS_INTG
432 if (usingNetbeans)
433 netbeans_file_closed(buf);
434#endif
435#if defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP)
436 /* Change directories when the acd option is set on. */
437 if (p_acd && curbuf->b_ffname != NULL
438 && vim_chdirfile(curbuf->b_ffname) == OK)
439 shorten_fnames(TRUE);
440#endif
441
442 /*
443 * Remove the buffer from the list.
444 */
445 if (wipe_buf)
446 {
447#ifdef FEAT_SUN_WORKSHOP
448 if (usingSunWorkShop)
449 workshop_file_closed_lineno((char *)buf->b_ffname,
450 (int)buf->b_last_cursor.lnum);
451#endif
452 vim_free(buf->b_ffname);
453 vim_free(buf->b_sfname);
454 if (buf->b_prev == NULL)
455 firstbuf = buf->b_next;
456 else
457 buf->b_prev->b_next = buf->b_next;
458 if (buf->b_next == NULL)
459 lastbuf = buf->b_prev;
460 else
461 buf->b_next->b_prev = buf->b_prev;
462 free_buffer(buf);
463 }
464 else
465 {
466 if (del_buf)
467 {
468 /* Free all internal variables and reset option values, to make
469 * ":bdel" compatible with Vim 5.7. */
470 free_buffer_stuff(buf, TRUE);
471
472 /* Make it look like a new buffer. */
473 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
474
475 /* Init the options when loaded again. */
476 buf->b_p_initialized = FALSE;
477 }
478 buf_clear_file(buf);
479 if (del_buf)
480 buf->b_p_bl = FALSE;
481 }
482}
483
484/*
485 * Make buffer not contain a file.
486 */
487 void
488buf_clear_file(buf)
489 buf_T *buf;
490{
491 buf->b_ml.ml_line_count = 1;
492 unchanged(buf, TRUE);
493#ifndef SHORT_FNAME
494 buf->b_shortname = FALSE;
495#endif
496 buf->b_p_eol = TRUE;
497 buf->b_start_eol = TRUE;
498#ifdef FEAT_MBYTE
499 buf->b_p_bomb = FALSE;
500#endif
501 buf->b_ml.ml_mfp = NULL;
502 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */
503#ifdef FEAT_NETBEANS_INTG
504 netbeans_deleted_all_lines(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505#endif
506}
507
508/*
509 * buf_freeall() - free all things allocated for a buffer that are related to
510 * the file.
511 */
512/*ARGSUSED*/
513 void
514buf_freeall(buf, del_buf, wipe_buf)
515 buf_T *buf;
516 int del_buf; /* buffer is going to be deleted */
517 int wipe_buf; /* buffer is going to be wiped out */
518{
519#ifdef FEAT_AUTOCMD
520 int is_curbuf = (buf == curbuf);
521
522 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname, FALSE, buf);
523 if (!buf_valid(buf)) /* autocommands may delete the buffer */
524 return;
525 if (del_buf && buf->b_p_bl)
526 {
527 apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname, FALSE, buf);
528 if (!buf_valid(buf)) /* autocommands may delete the buffer */
529 return;
530 }
531 if (wipe_buf)
532 {
533 apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
534 FALSE, buf);
535 if (!buf_valid(buf)) /* autocommands may delete the buffer */
536 return;
537 }
538# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000539 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 return;
541# endif
542
543 /*
544 * It's possible that autocommands change curbuf to the one being deleted.
545 * This might cause curbuf to be deleted unexpectedly. But in some cases
546 * it's OK to delete the curbuf, because a new one is obtained anyway.
547 * Therefore only return if curbuf changed to the deleted buffer.
548 */
549 if (buf == curbuf && !is_curbuf)
550 return;
551#endif
552#ifdef FEAT_DIFF
553 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */
554#endif
555#ifdef FEAT_TCL
556 tcl_buffer_free(buf);
557#endif
558 u_blockfree(buf); /* free the memory allocated for undo */
559 ml_close(buf, TRUE); /* close and delete the memline/memfile */
560 buf->b_ml.ml_line_count = 0; /* no lines in buffer */
561 u_clearall(buf); /* reset all undo information */
562#ifdef FEAT_SYN_HL
563 syntax_clear(buf); /* reset syntax info */
564#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000565 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566}
567
568/*
569 * Free a buffer structure and the things it contains related to the buffer
570 * itself (not the file, that must have been done already).
571 */
572 static void
573free_buffer(buf)
574 buf_T *buf;
575{
576 free_buffer_stuff(buf, TRUE);
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000577#ifdef FEAT_MZSCHEME
578 mzscheme_buffer_free(buf);
579#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580#ifdef FEAT_PERL
581 perl_buf_free(buf);
582#endif
583#ifdef FEAT_PYTHON
584 python_buffer_free(buf);
585#endif
586#ifdef FEAT_RUBY
587 ruby_buffer_free(buf);
588#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000589#ifdef FEAT_AUTOCMD
590 aubuflocal_remove(buf);
591#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 vim_free(buf);
593}
594
595/*
596 * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
597 */
598 static void
599free_buffer_stuff(buf, free_options)
600 buf_T *buf;
601 int free_options; /* free options as well */
602{
603 if (free_options)
604 {
605 clear_wininfo(buf); /* including window-local options */
606 free_buf_options(buf, TRUE);
607 }
608#ifdef FEAT_EVAL
Bram Moolenaar1fad5d42005-01-25 21:44:33 +0000609 vars_clear(&buf->b_vars.dv_hashtab); /* free all internal variables */
610 hash_init(&buf->b_vars.dv_hashtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611#endif
612#ifdef FEAT_USR_CMDS
613 uc_clear(&buf->b_ucmds); /* clear local user commands */
614#endif
615#ifdef FEAT_SIGNS
616 buf_delete_signs(buf); /* delete any signs */
617#endif
618#ifdef FEAT_LOCALMAP
619 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
620 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */
621#endif
622#ifdef FEAT_MBYTE
623 vim_free(buf->b_start_fenc);
624 buf->b_start_fenc = NULL;
625#endif
626}
627
628/*
629 * Free the b_wininfo list for buffer "buf".
630 */
631 static void
632clear_wininfo(buf)
633 buf_T *buf;
634{
635 wininfo_T *wip;
636
637 while (buf->b_wininfo != NULL)
638 {
639 wip = buf->b_wininfo;
640 buf->b_wininfo = wip->wi_next;
641 if (wip->wi_optset)
642 {
643 clear_winopt(&wip->wi_opt);
644#ifdef FEAT_FOLDING
645 deleteFoldRecurse(&wip->wi_folds);
646#endif
647 }
648 vim_free(wip);
649 }
650}
651
652#if defined(FEAT_LISTCMDS) || defined(PROTO)
653/*
654 * Go to another buffer. Handles the result of the ATTENTION dialog.
655 */
656 void
657goto_buffer(eap, start, dir, count)
658 exarg_T *eap;
659 int start;
660 int dir;
661 int count;
662{
Bram Moolenaare64ac772005-12-07 20:54:59 +0000663# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 buf_T *old_curbuf = curbuf;
665
666 swap_exists_action = SEA_DIALOG;
667# endif
668 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
669 start, dir, count, eap->forceit);
Bram Moolenaare64ac772005-12-07 20:54:59 +0000670# if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
672 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000673# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
674 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000675
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000676 /* Reset the error/interrupt/exception state here so that
677 * aborting() returns FALSE when closing a window. */
678 enter_cleanup(&cs);
679# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000680
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000681 /* Quitting means closing the split window, nothing else. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 win_close(curwin, TRUE);
683 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000684 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000685
686# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
687 /* Restore the error/interrupt/exception state if not discarded by a
688 * new aborting error, interrupt, or uncaught exception. */
689 leave_cleanup(&cs);
690# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 }
692 else
693 handle_swap_exists(old_curbuf);
694# endif
695}
696#endif
697
Bram Moolenaare64ac772005-12-07 20:54:59 +0000698#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699/*
700 * Handle the situation of swap_exists_action being set.
701 * It is allowed for "old_curbuf" to be NULL or invalid.
702 */
703 void
704handle_swap_exists(old_curbuf)
705 buf_T *old_curbuf;
706{
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000707# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
708 cleanup_T cs;
709# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000710
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 if (swap_exists_action == SEA_QUIT)
712 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000713# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
714 /* Reset the error/interrupt/exception state here so that
715 * aborting() returns FALSE when closing a buffer. */
716 enter_cleanup(&cs);
717# endif
718
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 /* User selected Quit at ATTENTION prompt. Go back to previous
720 * buffer. If that buffer is gone or the same as the current one,
721 * open a new, empty buffer. */
722 swap_exists_action = SEA_NONE; /* don't want it again */
Bram Moolenaar12033fb2005-12-16 21:49:31 +0000723 swap_exists_did_quit = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 close_buffer(curwin, curbuf, DOBUF_UNLOAD);
725 if (!buf_valid(old_curbuf) || old_curbuf == curbuf)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000726 old_curbuf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 if (old_curbuf != NULL)
728 enter_buffer(old_curbuf);
729 /* If "old_curbuf" is NULL we are in big trouble here... */
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000730
731# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
732 /* Restore the error/interrupt/exception state if not discarded by a
733 * new aborting error, interrupt, or uncaught exception. */
734 leave_cleanup(&cs);
735# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 }
737 else if (swap_exists_action == SEA_RECOVER)
738 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000739# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
740 /* Reset the error/interrupt/exception state here so that
741 * aborting() returns FALSE when closing a buffer. */
742 enter_cleanup(&cs);
743# endif
744
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 /* User selected Recover at ATTENTION prompt. */
746 msg_scroll = TRUE;
747 ml_recover();
748 MSG_PUTS("\n"); /* don't overwrite the last message */
749 cmdline_row = msg_row;
Bram Moolenaara3227e22006-03-08 21:32:40 +0000750 do_modelines(0);
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000751
752# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
753 /* Restore the error/interrupt/exception state if not discarded by a
754 * new aborting error, interrupt, or uncaught exception. */
755 leave_cleanup(&cs);
756# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 }
758 swap_exists_action = SEA_NONE;
759}
760#endif
761
762#if defined(FEAT_LISTCMDS) || defined(PROTO)
763/*
764 * do_bufdel() - delete or unload buffer(s)
765 *
766 * addr_count == 0: ":bdel" - delete current buffer
767 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
768 * buffer "end_bnr", then any other arguments.
769 * addr_count == 2: ":N,N bdel" - delete buffers in range
770 *
771 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
772 * DOBUF_DEL (":bdel")
773 *
774 * Returns error message or NULL
775 */
776 char_u *
777do_bufdel(command, arg, addr_count, start_bnr, end_bnr, forceit)
778 int command;
779 char_u *arg; /* pointer to extra arguments */
780 int addr_count;
781 int start_bnr; /* first buffer number in a range */
782 int end_bnr; /* buffer nr or last buffer nr in a range */
783 int forceit;
784{
785 int do_current = 0; /* delete current buffer? */
786 int deleted = 0; /* number of buffers deleted */
787 char_u *errormsg = NULL; /* return value */
788 int bnr; /* buffer number */
789 char_u *p;
790
791#ifdef FEAT_NETBEANS_INTG
792 netbeansCloseFile = 1;
793#endif
794 if (addr_count == 0)
795 {
796 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
797 }
798 else
799 {
800 if (addr_count == 2)
801 {
802 if (*arg) /* both range and argument is not allowed */
803 return (char_u *)_(e_trailing);
804 bnr = start_bnr;
805 }
806 else /* addr_count == 1 */
807 bnr = end_bnr;
808
809 for ( ;!got_int; ui_breakcheck())
810 {
811 /*
812 * delete the current buffer last, otherwise when the
813 * current buffer is deleted, the next buffer becomes
814 * the current one and will be loaded, which may then
815 * also be deleted, etc.
816 */
817 if (bnr == curbuf->b_fnum)
818 do_current = bnr;
819 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
820 forceit) == OK)
821 ++deleted;
822
823 /*
824 * find next buffer number to delete/unload
825 */
826 if (addr_count == 2)
827 {
828 if (++bnr > end_bnr)
829 break;
830 }
831 else /* addr_count == 1 */
832 {
833 arg = skipwhite(arg);
834 if (*arg == NUL)
835 break;
836 if (!VIM_ISDIGIT(*arg))
837 {
838 p = skiptowhite_esc(arg);
839 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE, FALSE);
840 if (bnr < 0) /* failed */
841 break;
842 arg = p;
843 }
844 else
845 bnr = getdigits(&arg);
846 }
847 }
848 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
849 FORWARD, do_current, forceit) == OK)
850 ++deleted;
851
852 if (deleted == 0)
853 {
854 if (command == DOBUF_UNLOAD)
Bram Moolenaar51485f02005-06-04 21:55:20 +0000855 STRCPY(IObuff, _("E515: No buffers were unloaded"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 else if (command == DOBUF_DEL)
Bram Moolenaar51485f02005-06-04 21:55:20 +0000857 STRCPY(IObuff, _("E516: No buffers were deleted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 else
Bram Moolenaar51485f02005-06-04 21:55:20 +0000859 STRCPY(IObuff, _("E517: No buffers were wiped out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 errormsg = IObuff;
861 }
862 else if (deleted >= p_report)
863 {
864 if (command == DOBUF_UNLOAD)
865 {
866 if (deleted == 1)
867 MSG(_("1 buffer unloaded"));
868 else
869 smsg((char_u *)_("%d buffers unloaded"), deleted);
870 }
871 else if (command == DOBUF_DEL)
872 {
873 if (deleted == 1)
874 MSG(_("1 buffer deleted"));
875 else
876 smsg((char_u *)_("%d buffers deleted"), deleted);
877 }
878 else
879 {
880 if (deleted == 1)
881 MSG(_("1 buffer wiped out"));
882 else
883 smsg((char_u *)_("%d buffers wiped out"), deleted);
884 }
885 }
886 }
887
888#ifdef FEAT_NETBEANS_INTG
889 netbeansCloseFile = 0;
890#endif
891
892 return errormsg;
893}
894
895/*
896 * Implementation of the commands for the buffer list.
897 *
898 * action == DOBUF_GOTO go to specified buffer
899 * action == DOBUF_SPLIT split window and go to specified buffer
900 * action == DOBUF_UNLOAD unload specified buffer(s)
901 * action == DOBUF_DEL delete specified buffer(s) from buffer list
902 * action == DOBUF_WIPE delete specified buffer(s) really
903 *
904 * start == DOBUF_CURRENT go to "count" buffer from current buffer
905 * start == DOBUF_FIRST go to "count" buffer from first buffer
906 * start == DOBUF_LAST go to "count" buffer from last buffer
907 * start == DOBUF_MOD go to "count" modified buffer from current buffer
908 *
909 * Return FAIL or OK.
910 */
911 int
912do_buffer(action, start, dir, count, forceit)
913 int action;
914 int start;
915 int dir; /* FORWARD or BACKWARD */
916 int count; /* buffer number or number of buffers */
917 int forceit; /* TRUE for :...! */
918{
919 buf_T *buf;
920 buf_T *bp;
921 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
922 || action == DOBUF_WIPE);
923
924 switch (start)
925 {
926 case DOBUF_FIRST: buf = firstbuf; break;
927 case DOBUF_LAST: buf = lastbuf; break;
928 default: buf = curbuf; break;
929 }
930 if (start == DOBUF_MOD) /* find next modified buffer */
931 {
932 while (count-- > 0)
933 {
934 do
935 {
936 buf = buf->b_next;
937 if (buf == NULL)
938 buf = firstbuf;
939 }
940 while (buf != curbuf && !bufIsChanged(buf));
941 }
942 if (!bufIsChanged(buf))
943 {
944 EMSG(_("E84: No modified buffer found"));
945 return FAIL;
946 }
947 }
948 else if (start == DOBUF_FIRST && count) /* find specified buffer number */
949 {
950 while (buf != NULL && buf->b_fnum != count)
951 buf = buf->b_next;
952 }
953 else
954 {
955 bp = NULL;
956 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
957 {
958 /* remember the buffer where we start, we come back there when all
959 * buffers are unlisted. */
960 if (bp == NULL)
961 bp = buf;
962 if (dir == FORWARD)
963 {
964 buf = buf->b_next;
965 if (buf == NULL)
966 buf = firstbuf;
967 }
968 else
969 {
970 buf = buf->b_prev;
971 if (buf == NULL)
972 buf = lastbuf;
973 }
974 /* don't count unlisted buffers */
975 if (unload || buf->b_p_bl)
976 {
977 --count;
978 bp = NULL; /* use this buffer as new starting point */
979 }
980 if (bp == buf)
981 {
982 /* back where we started, didn't find anything. */
983 EMSG(_("E85: There is no listed buffer"));
984 return FAIL;
985 }
986 }
987 }
988
989 if (buf == NULL) /* could not find it */
990 {
991 if (start == DOBUF_FIRST)
992 {
993 /* don't warn when deleting */
994 if (!unload)
995 EMSGN(_("E86: Buffer %ld does not exist"), count);
996 }
997 else if (dir == FORWARD)
998 EMSG(_("E87: Cannot go beyond last buffer"));
999 else
1000 EMSG(_("E88: Cannot go before first buffer"));
1001 return FAIL;
1002 }
1003
1004#ifdef FEAT_GUI
1005 need_mouse_correct = TRUE;
1006#endif
1007
1008#ifdef FEAT_LISTCMDS
1009 /*
1010 * delete buffer buf from memory and/or the list
1011 */
1012 if (unload)
1013 {
1014 int forward;
1015 int retval;
1016
1017 /* When unloading or deleting a buffer that's already unloaded and
1018 * unlisted: fail silently. */
1019 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1020 return FAIL;
1021
1022 if (!forceit && bufIsChanged(buf))
1023 {
1024#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1025 if ((p_confirm || cmdmod.confirm) && p_write)
1026 {
1027 dialog_changed(buf, FALSE);
1028# ifdef FEAT_AUTOCMD
1029 if (!buf_valid(buf))
1030 /* Autocommand deleted buffer, oops! It's not changed
1031 * now. */
1032 return FAIL;
1033# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001034 /* If it's still changed fail silently, the dialog already
1035 * mentioned why it fails. */
1036 if (bufIsChanged(buf))
1037 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001039 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040#endif
1041 {
1042 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1043 buf->b_fnum);
1044 return FAIL;
1045 }
1046 }
1047
1048 /*
1049 * If deleting the last (listed) buffer, make it empty.
1050 * The last (listed) buffer cannot be unloaded.
1051 */
1052 for (bp = firstbuf; bp != NULL; bp = bp->b_next)
1053 if (bp->b_p_bl && bp != buf)
1054 break;
1055 if (bp == NULL && buf == curbuf)
1056 {
1057 if (action == DOBUF_UNLOAD)
1058 {
1059 EMSG(_("E90: Cannot unload last buffer"));
1060 return FAIL;
1061 }
1062
1063 /* Close any other windows on this buffer, then make it empty. */
1064#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00001065 close_windows(buf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066#endif
1067 setpcmark();
1068 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1069 forceit ? ECMD_FORCEIT : 0);
1070
1071 /*
1072 * do_ecmd() may create a new buffer, then we have to delete
1073 * the old one. But do_ecmd() may have done that already, check
1074 * if the buffer still exists.
1075 */
1076 if (buf != curbuf && buf_valid(buf) && buf->b_nwindows == 0)
1077 close_buffer(NULL, buf, action);
1078 return retval;
1079 }
1080
1081#ifdef FEAT_WINDOWS
1082 /*
1083 * If the deleted buffer is the current one, close the current window
Bram Moolenaarf740b292006-02-16 22:11:02 +00001084 * (unless it's the only window). Repeat this so long as we end up in
1085 * a window with this buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001087 while (buf == curbuf
1088 && (firstwin != lastwin || first_tabpage->tp_next != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 win_close(curwin, FALSE);
1090#endif
1091
1092 /*
1093 * If the buffer to be deleted is not the current one, delete it here.
1094 */
1095 if (buf != curbuf)
1096 {
1097#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00001098 close_windows(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099#endif
1100 if (buf != curbuf && buf_valid(buf) && buf->b_nwindows <= 0)
1101 close_buffer(NULL, buf, action);
1102 return OK;
1103 }
1104
1105 /*
1106 * Deleting the current buffer: Need to find another buffer to go to.
1107 * There must be another, otherwise it would have been handled above.
1108 * First use au_new_curbuf, if it is valid.
1109 * Then prefer the buffer we most recently visited.
1110 * Else try to find one that is loaded, after the current buffer,
1111 * then before the current buffer.
1112 * Finally use any buffer.
1113 */
1114 buf = NULL; /* selected buffer */
1115 bp = NULL; /* used when no loaded buffer found */
1116#ifdef FEAT_AUTOCMD
1117 if (au_new_curbuf != NULL && buf_valid(au_new_curbuf))
1118 buf = au_new_curbuf;
1119# ifdef FEAT_JUMPLIST
1120 else
1121# endif
1122#endif
1123#ifdef FEAT_JUMPLIST
1124 if (curwin->w_jumplistlen > 0)
1125 {
1126 int jumpidx;
1127
1128 jumpidx = curwin->w_jumplistidx - 1;
1129 if (jumpidx < 0)
1130 jumpidx = curwin->w_jumplistlen - 1;
1131
1132 forward = jumpidx;
1133 while (jumpidx != curwin->w_jumplistidx)
1134 {
1135 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1136 if (buf != NULL)
1137 {
1138 if (buf == curbuf || !buf->b_p_bl)
1139 buf = NULL; /* skip current and unlisted bufs */
1140 else if (buf->b_ml.ml_mfp == NULL)
1141 {
1142 /* skip unloaded buf, but may keep it for later */
1143 if (bp == NULL)
1144 bp = buf;
1145 buf = NULL;
1146 }
1147 }
1148 if (buf != NULL) /* found a valid buffer: stop searching */
1149 break;
1150 /* advance to older entry in jump list */
1151 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1152 break;
1153 if (--jumpidx < 0)
1154 jumpidx = curwin->w_jumplistlen - 1;
1155 if (jumpidx == forward) /* List exhausted for sure */
1156 break;
1157 }
1158 }
1159#endif
1160
1161 if (buf == NULL) /* No previous buffer, Try 2'nd approach */
1162 {
1163 forward = TRUE;
1164 buf = curbuf->b_next;
1165 for (;;)
1166 {
1167 if (buf == NULL)
1168 {
1169 if (!forward) /* tried both directions */
1170 break;
1171 buf = curbuf->b_prev;
1172 forward = FALSE;
1173 continue;
1174 }
1175 /* in non-help buffer, try to skip help buffers, and vv */
1176 if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1177 {
1178 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */
1179 break;
1180 if (bp == NULL) /* remember unloaded buf for later */
1181 bp = buf;
1182 }
1183 if (forward)
1184 buf = buf->b_next;
1185 else
1186 buf = buf->b_prev;
1187 }
1188 }
1189 if (buf == NULL) /* No loaded buffer, use unloaded one */
1190 buf = bp;
1191 if (buf == NULL) /* No loaded buffer, find listed one */
1192 {
1193 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1194 if (buf->b_p_bl && buf != curbuf)
1195 break;
1196 }
1197 if (buf == NULL) /* Still no buffer, just take one */
1198 {
1199 if (curbuf->b_next != NULL)
1200 buf = curbuf->b_next;
1201 else
1202 buf = curbuf->b_prev;
1203 }
1204 }
1205
1206 /*
1207 * make buf current buffer
1208 */
1209 if (action == DOBUF_SPLIT) /* split window first */
1210 {
1211# ifdef FEAT_WINDOWS
1212 /* jump to first window containing buf if one exists ("useopen") */
1213 if (vim_strchr(p_swb, 'u') && buf_jump_open_win(buf))
1214 return OK;
1215 if (win_split(0, 0) == FAIL)
1216# endif
1217 return FAIL;
1218 }
1219#endif
1220
1221 /* go to current buffer - nothing to do */
1222 if (buf == curbuf)
1223 return OK;
1224
1225 /*
1226 * Check if the current buffer may be abandoned.
1227 */
1228 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1229 {
1230#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1231 if ((p_confirm || cmdmod.confirm) && p_write)
1232 {
1233 dialog_changed(curbuf, FALSE);
1234# ifdef FEAT_AUTOCMD
1235 if (!buf_valid(buf))
1236 /* Autocommand deleted buffer, oops! */
1237 return FAIL;
1238# endif
1239 }
1240 if (bufIsChanged(curbuf))
1241#endif
1242 {
1243 EMSG(_(e_nowrtmsg));
1244 return FAIL;
1245 }
1246 }
1247
1248 /* Go to the other buffer. */
1249 set_curbuf(buf, action);
1250
1251#if defined(FEAT_LISTCMDS) && defined(FEAT_SCROLLBIND)
1252 if (action == DOBUF_SPLIT)
1253 curwin->w_p_scb = FALSE; /* reset 'scrollbind' */
1254#endif
1255
1256#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1257 if (aborting()) /* autocmds may abort script processing */
1258 return FAIL;
1259#endif
1260
1261 return OK;
1262}
1263
1264#endif /* FEAT_LISTCMDS */
1265
1266/*
1267 * Set current buffer to "buf". Executes autocommands and closes current
1268 * buffer. "action" tells how to close the current buffer:
1269 * DOBUF_GOTO free or hide it
1270 * DOBUF_SPLIT nothing
1271 * DOBUF_UNLOAD unload it
1272 * DOBUF_DEL delete it
1273 * DOBUF_WIPE wipe it out
1274 */
1275 void
1276set_curbuf(buf, action)
1277 buf_T *buf;
1278 int action;
1279{
1280 buf_T *prevbuf;
1281 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1282 || action == DOBUF_WIPE);
1283
1284 setpcmark();
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001285 if (!cmdmod.keepalt)
1286 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 buflist_altfpos(); /* remember curpos */
1288
1289#ifdef FEAT_VISUAL
1290 /* Don't restart Select mode after switching to another buffer. */
1291 VIsual_reselect = FALSE;
1292#endif
1293
1294 /* close_windows() or apply_autocmds() may change curbuf */
1295 prevbuf = curbuf;
1296
1297#ifdef FEAT_AUTOCMD
1298 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
1299# ifdef FEAT_EVAL
1300 if (buf_valid(prevbuf) && !aborting())
1301# else
1302 if (buf_valid(prevbuf))
1303# endif
1304#endif
1305 {
1306#ifdef FEAT_WINDOWS
1307 if (unload)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001308 close_windows(prevbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309#endif
1310#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1311 if (buf_valid(prevbuf) && !aborting())
1312#else
1313 if (buf_valid(prevbuf))
1314#endif
1315 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1316 unload ? action : (action == DOBUF_GOTO
1317 && !P_HID(prevbuf)
1318 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0);
1319 }
1320#ifdef FEAT_AUTOCMD
1321# ifdef FEAT_EVAL
1322 /* An autocommand may have deleted buf or aborted the script processing! */
1323 if (buf_valid(buf) && !aborting())
1324# else
1325 if (buf_valid(buf)) /* an autocommand may have deleted buf! */
1326# endif
1327#endif
1328 enter_buffer(buf);
1329}
1330
1331/*
1332 * Enter a new current buffer.
1333 * Old curbuf must have been abandoned already!
1334 */
1335 void
1336enter_buffer(buf)
1337 buf_T *buf;
1338{
1339 /* Copy buffer and window local option values. Not for a help buffer. */
1340 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1341 if (!buf->b_help)
1342 get_winopts(buf);
1343#ifdef FEAT_FOLDING
1344 else
1345 /* Remove all folds in the window. */
1346 clearFolding(curwin);
1347 foldUpdateAll(curwin); /* update folds (later). */
1348#endif
1349
1350 /* Get the buffer in the current window. */
1351 curwin->w_buffer = buf;
1352 curbuf = buf;
1353 ++curbuf->b_nwindows;
1354
1355#ifdef FEAT_DIFF
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001356 if (curwin->w_p_diff)
1357 diff_buf_add(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358#endif
1359
1360 /* Cursor on first line by default. */
1361 curwin->w_cursor.lnum = 1;
1362 curwin->w_cursor.col = 0;
1363#ifdef FEAT_VIRTUALEDIT
1364 curwin->w_cursor.coladd = 0;
1365#endif
1366 curwin->w_set_curswant = TRUE;
1367
1368 /* Make sure the buffer is loaded. */
1369 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001370 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001371#ifdef FEAT_AUTOCMD
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001372 /* If there is no filetype, allow for detecting one. Esp. useful for
1373 * ":ball" used in a autocommand. If there already is a filetype we
1374 * might prefer to keep it. */
1375 if (*curbuf->b_p_ft == NUL)
1376 did_filetype = FALSE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001377#endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001378
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 open_buffer(FALSE, NULL);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001380 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 else
1382 {
1383 need_fileinfo = TRUE; /* display file info after redraw */
1384 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1385#ifdef FEAT_AUTOCMD
1386 curwin->w_topline = 1;
1387# ifdef FEAT_DIFF
1388 curwin->w_topfill = 0;
1389# endif
1390 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1391 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1392#endif
1393 }
1394
1395 /* If autocommands did not change the cursor position, restore cursor lnum
1396 * and possibly cursor col. */
1397 if (curwin->w_cursor.lnum == 1 && inindent(0))
1398 buflist_getfpos();
1399
1400 check_arg_idx(curwin); /* check for valid arg_idx */
1401#ifdef FEAT_TITLE
1402 maketitle();
1403#endif
1404#ifdef FEAT_AUTOCMD
1405 if (curwin->w_topline == 1) /* when autocmds didn't change it */
1406#endif
1407 scroll_cursor_halfway(FALSE); /* redisplay at correct position */
1408
Bram Moolenaar009b2592004-10-24 19:18:58 +00001409#ifdef FEAT_NETBEANS_INTG
1410 /* Send fileOpened event because we've changed buffers. */
1411 if (usingNetbeans && isNetbeansBuffer(curbuf))
1412 netbeans_file_activated(curbuf);
1413#endif
1414
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415#if defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP)
1416 /* Change directories when the acd option is set on. */
1417 if (p_acd && curbuf->b_ffname != NULL
1418 && vim_chdirfile(curbuf->b_ffname) == OK)
1419 shorten_fnames(TRUE);
1420#endif
1421
1422#ifdef FEAT_KEYMAP
1423 if (curbuf->b_kmap_state & KEYMAP_INIT)
1424 keymap_init();
1425#endif
1426 redraw_later(NOT_VALID);
1427}
1428
1429/*
1430 * functions for dealing with the buffer list
1431 */
1432
1433/*
1434 * Add a file name to the buffer list. Return a pointer to the buffer.
1435 * If the same file name already exists return a pointer to that buffer.
1436 * If it does not exist, or if fname == NULL, a new entry is created.
1437 * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1438 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1439 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 * This is the ONLY way to create a new buffer.
1441 */
1442static int top_file_num = 1; /* highest file number */
1443
1444 buf_T *
1445buflist_new(ffname, sfname, lnum, flags)
1446 char_u *ffname; /* full path of fname or relative */
1447 char_u *sfname; /* short fname or NULL */
1448 linenr_T lnum; /* preferred cursor line */
1449 int flags; /* BLN_ defines */
1450{
1451 buf_T *buf;
1452#ifdef UNIX
1453 struct stat st;
1454#endif
1455
1456 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */
1457
1458 /*
1459 * If file name already exists in the list, update the entry.
1460 */
1461#ifdef UNIX
1462 /* On Unix we can use inode numbers when the file exists. Works better
1463 * for hard links. */
1464 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1465 st.st_dev = (dev_T)-1;
1466#endif
1467 if (ffname != NULL && !(flags & BLN_DUMMY) && (buf =
1468#ifdef UNIX
1469 buflist_findname_stat(ffname, &st)
1470#else
1471 buflist_findname(ffname)
1472#endif
1473 ) != NULL)
1474 {
1475 vim_free(ffname);
1476 if (lnum != 0)
1477 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
1478 /* copy the options now, if 'cpo' doesn't have 's' and not done
1479 * already */
1480 buf_copy_options(buf, 0);
1481 if ((flags & BLN_LISTED) && !buf->b_p_bl)
1482 {
1483 buf->b_p_bl = TRUE;
1484#ifdef FEAT_AUTOCMD
1485 if (!(flags & BLN_DUMMY))
1486 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf);
1487#endif
1488 }
1489 return buf;
1490 }
1491
1492 /*
1493 * If the current buffer has no name and no contents, use the current
1494 * buffer. Otherwise: Need to allocate a new buffer structure.
1495 *
1496 * This is the ONLY place where a new buffer structure is allocated!
Bram Moolenaar4770d092006-01-12 23:22:24 +00001497 * (A spell file buffer is allocated in spell.c, but that's not a normal
1498 * buffer.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 */
1500 buf = NULL;
1501 if ((flags & BLN_CURBUF)
1502 && curbuf != NULL
1503 && curbuf->b_ffname == NULL
1504 && curbuf->b_nwindows <= 1
1505 && (curbuf->b_ml.ml_mfp == NULL || bufempty()))
1506 {
1507 buf = curbuf;
1508#ifdef FEAT_AUTOCMD
1509 /* It's like this buffer is deleted. Watch out for autocommands that
1510 * change curbuf! If that happens, allocate a new buffer anyway. */
1511 if (curbuf->b_p_bl)
1512 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1513 if (buf == curbuf)
1514 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
1515# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001516 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 return NULL;
1518# endif
1519#endif
1520#ifdef FEAT_QUICKFIX
1521# ifdef FEAT_AUTOCMD
1522 if (buf == curbuf)
1523# endif
1524 {
1525 /* Make sure 'bufhidden' and 'buftype' are empty */
1526 clear_string_option(&buf->b_p_bh);
1527 clear_string_option(&buf->b_p_bt);
1528 }
1529#endif
1530 }
1531 if (buf != curbuf || curbuf == NULL)
1532 {
1533 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1534 if (buf == NULL)
1535 {
1536 vim_free(ffname);
1537 return NULL;
1538 }
1539 }
1540
1541 if (ffname != NULL)
1542 {
1543 buf->b_ffname = ffname;
1544 buf->b_sfname = vim_strsave(sfname);
1545 }
1546
1547 clear_wininfo(buf);
1548 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1549
1550 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1551 || buf->b_wininfo == NULL)
1552 {
1553 vim_free(buf->b_ffname);
1554 buf->b_ffname = NULL;
1555 vim_free(buf->b_sfname);
1556 buf->b_sfname = NULL;
1557 if (buf != curbuf)
1558 free_buffer(buf);
1559 return NULL;
1560 }
1561
1562 if (buf == curbuf)
1563 {
1564 /* free all things allocated for this buffer */
1565 buf_freeall(buf, FALSE, FALSE);
1566 if (buf != curbuf) /* autocommands deleted the buffer! */
1567 return NULL;
1568#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001569 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 return NULL;
1571#endif
1572 /* buf->b_nwindows = 0; why was this here? */
1573 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */
1574#ifdef FEAT_KEYMAP
1575 /* need to reload lmaps and set b:keymap_name */
1576 curbuf->b_kmap_state |= KEYMAP_INIT;
1577#endif
1578 }
1579 else
1580 {
1581 /*
1582 * put new buffer at the end of the buffer list
1583 */
1584 buf->b_next = NULL;
1585 if (firstbuf == NULL) /* buffer list is empty */
1586 {
1587 buf->b_prev = NULL;
1588 firstbuf = buf;
1589 }
1590 else /* append new buffer at end of list */
1591 {
1592 lastbuf->b_next = buf;
1593 buf->b_prev = lastbuf;
1594 }
1595 lastbuf = buf;
1596
1597 buf->b_fnum = top_file_num++;
1598 if (top_file_num < 0) /* wrap around (may cause duplicates) */
1599 {
1600 EMSG(_("W14: Warning: List of file names overflow"));
1601 if (emsg_silent == 0)
1602 {
1603 out_flush();
1604 ui_delay(3000L, TRUE); /* make sure it is noticed */
1605 }
1606 top_file_num = 1;
1607 }
1608
1609 /*
1610 * Always copy the options from the current buffer.
1611 */
1612 buf_copy_options(buf, BCO_ALWAYS);
1613 }
1614
1615 buf->b_wininfo->wi_fpos.lnum = lnum;
1616 buf->b_wininfo->wi_win = curwin;
1617
1618#ifdef FEAT_EVAL
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00001619 init_var_dict(&buf->b_vars, &buf->b_bufvar); /* init b: variables */
1620#endif
1621#ifdef FEAT_SYN_HL
1622 hash_init(&buf->b_keywtab);
1623 hash_init(&buf->b_keywtab_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624#endif
1625
1626 buf->b_fname = buf->b_sfname;
1627#ifdef UNIX
1628 if (st.st_dev == (dev_T)-1)
1629 buf->b_dev = -1;
1630 else
1631 {
1632 buf->b_dev = st.st_dev;
1633 buf->b_ino = st.st_ino;
1634 }
1635#endif
1636 buf->b_u_synced = TRUE;
1637 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
Bram Moolenaar81695252004-12-29 20:58:21 +00001638 if (flags & BLN_DUMMY)
1639 buf->b_flags |= BF_DUMMY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 buf_clear_file(buf);
1641 clrallmarks(buf); /* clear marks */
1642 fmarks_check_names(buf); /* check file marks for this file */
1643 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
1644#ifdef FEAT_AUTOCMD
1645 if (!(flags & BLN_DUMMY))
1646 {
1647 apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf);
1648 if (flags & BLN_LISTED)
1649 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf);
1650# ifdef FEAT_EVAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001651 if (aborting()) /* autocmds may abort script processing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 return NULL;
1653# endif
1654 }
1655#endif
1656
1657 return buf;
1658}
1659
1660/*
1661 * Free the memory for the options of a buffer.
1662 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
1663 * 'fileencoding'.
1664 */
1665 void
1666free_buf_options(buf, free_p_ff)
1667 buf_T *buf;
1668 int free_p_ff;
1669{
1670 if (free_p_ff)
1671 {
1672#ifdef FEAT_MBYTE
1673 clear_string_option(&buf->b_p_fenc);
1674#endif
1675 clear_string_option(&buf->b_p_ff);
1676#ifdef FEAT_QUICKFIX
1677 clear_string_option(&buf->b_p_bh);
1678 clear_string_option(&buf->b_p_bt);
1679#endif
1680 }
1681#ifdef FEAT_FIND_ID
1682 clear_string_option(&buf->b_p_def);
1683 clear_string_option(&buf->b_p_inc);
1684# ifdef FEAT_EVAL
1685 clear_string_option(&buf->b_p_inex);
1686# endif
1687#endif
1688#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
1689 clear_string_option(&buf->b_p_inde);
1690 clear_string_option(&buf->b_p_indk);
1691#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001692#if defined(FEAT_EVAL)
1693 clear_string_option(&buf->b_p_fex);
1694#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695#ifdef FEAT_CRYPT
1696 clear_string_option(&buf->b_p_key);
1697#endif
1698 clear_string_option(&buf->b_p_kp);
1699 clear_string_option(&buf->b_p_mps);
1700 clear_string_option(&buf->b_p_fo);
Bram Moolenaar86b68352004-12-27 21:59:20 +00001701 clear_string_option(&buf->b_p_flp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 clear_string_option(&buf->b_p_isk);
1703#ifdef FEAT_KEYMAP
1704 clear_string_option(&buf->b_p_keymap);
1705 ga_clear(&buf->b_kmap_ga);
1706#endif
1707#ifdef FEAT_COMMENTS
1708 clear_string_option(&buf->b_p_com);
1709#endif
1710#ifdef FEAT_FOLDING
1711 clear_string_option(&buf->b_p_cms);
1712#endif
1713 clear_string_option(&buf->b_p_nf);
1714#ifdef FEAT_SYN_HL
1715 clear_string_option(&buf->b_p_syn);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00001716#endif
1717#ifdef FEAT_SPELL
Bram Moolenaar0f7d31a2005-07-02 23:09:03 +00001718 clear_string_option(&buf->b_p_spc);
Bram Moolenaar86bc1fb2005-06-07 20:58:01 +00001719 clear_string_option(&buf->b_p_spf);
Bram Moolenaar0f7d31a2005-07-02 23:09:03 +00001720 vim_free(buf->b_cap_prog);
1721 buf->b_cap_prog = NULL;
Bram Moolenaara0dea672005-03-20 22:23:10 +00001722 clear_string_option(&buf->b_p_spl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723#endif
1724#ifdef FEAT_SEARCHPATH
1725 clear_string_option(&buf->b_p_sua);
1726#endif
1727#ifdef FEAT_AUTOCMD
1728 clear_string_option(&buf->b_p_ft);
1729#endif
1730#ifdef FEAT_OSFILETYPE
1731 clear_string_option(&buf->b_p_oft);
1732#endif
1733#ifdef FEAT_CINDENT
1734 clear_string_option(&buf->b_p_cink);
1735 clear_string_option(&buf->b_p_cino);
1736#endif
1737#if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
1738 clear_string_option(&buf->b_p_cinw);
1739#endif
1740#ifdef FEAT_INS_EXPAND
1741 clear_string_option(&buf->b_p_cpt);
1742#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001743#ifdef FEAT_COMPL_FUNC
1744 clear_string_option(&buf->b_p_cfu);
Bram Moolenaare344bea2005-09-01 20:46:49 +00001745 clear_string_option(&buf->b_p_ofu);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001746#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747#ifdef FEAT_QUICKFIX
1748 clear_string_option(&buf->b_p_gp);
1749 clear_string_option(&buf->b_p_mp);
1750 clear_string_option(&buf->b_p_efm);
1751#endif
1752 clear_string_option(&buf->b_p_ep);
1753 clear_string_option(&buf->b_p_path);
1754 clear_string_option(&buf->b_p_tags);
1755#ifdef FEAT_INS_EXPAND
1756 clear_string_option(&buf->b_p_dict);
1757 clear_string_option(&buf->b_p_tsr);
1758#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001759#ifdef FEAT_TEXTOBJ
1760 clear_string_option(&buf->b_p_qe);
1761#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 buf->b_p_ar = -1;
1763}
1764
1765/*
1766 * get alternate file n
1767 * set linenr to lnum or altfpos.lnum if lnum == 0
1768 * also set cursor column to altfpos.col if 'startofline' is not set.
1769 * if (options & GETF_SETMARK) call setpcmark()
1770 * if (options & GETF_ALT) we are jumping to an alternate file.
1771 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
1772 *
1773 * return FAIL for failure, OK for success
1774 */
1775 int
1776buflist_getfile(n, lnum, options, forceit)
1777 int n;
1778 linenr_T lnum;
1779 int options;
1780 int forceit;
1781{
1782 buf_T *buf;
1783#ifdef FEAT_WINDOWS
1784 win_T *wp = NULL;
1785#endif
1786 pos_T *fpos;
1787 colnr_T col;
1788
1789 buf = buflist_findnr(n);
1790 if (buf == NULL)
1791 {
1792 if ((options & GETF_ALT) && n == 0)
1793 EMSG(_(e_noalt));
1794 else
1795 EMSGN(_("E92: Buffer %ld not found"), n);
1796 return FAIL;
1797 }
1798
1799 /* if alternate file is the current buffer, nothing to do */
1800 if (buf == curbuf)
1801 return OK;
1802
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00001803 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001804 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00001805 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 return FAIL;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001807 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808
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
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002105 * attempt == 1: try match without '\<', match anywhere
Bram Moolenaar05159a02005-02-26 23:04:13 +00002106 */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002107 for (attempt = 0; attempt <= 1; ++attempt)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002108 {
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002109 if (attempt > 0 && patc == pat)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002110 break; /* there was no anchor, no need to try again */
Bram Moolenaard8a4e562005-05-18 22:06:55 +00002111 prog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002112 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
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00002393
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002394#ifdef FEAT_SPELL
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00002395 if (curwin->w_p_spell && *buf->b_p_spl != NUL)
2396 did_set_spelllang(buf);
2397#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398}
2399
2400/*
2401 * Find the position (lnum and col) for the buffer 'buf' for the current
2402 * window.
2403 * Returns a pointer to no_position if no position is found.
2404 */
2405 pos_T *
2406buflist_findfpos(buf)
2407 buf_T *buf;
2408{
2409 wininfo_T *wip;
2410 static pos_T no_position = {1, 0};
2411
2412 wip = find_wininfo(buf);
2413 if (wip != NULL)
2414 return &(wip->wi_fpos);
2415 else
2416 return &no_position;
2417}
2418
2419/*
2420 * Find the lnum for the buffer 'buf' for the current window.
2421 */
2422 linenr_T
2423buflist_findlnum(buf)
2424 buf_T *buf;
2425{
2426 return buflist_findfpos(buf)->lnum;
2427}
2428
2429#if defined(FEAT_LISTCMDS) || defined(PROTO)
2430/*
2431 * List all know file names (for :files and :buffers command).
2432 */
2433/*ARGSUSED*/
2434 void
2435buflist_list(eap)
2436 exarg_T *eap;
2437{
2438 buf_T *buf;
2439 int len;
2440 int i;
2441
2442 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2443 {
2444 /* skip unlisted buffers, unless ! was used */
2445 if (!buf->b_p_bl && !eap->forceit)
2446 continue;
2447 msg_putchar('\n');
2448 if (buf_spname(buf) != NULL)
2449 STRCPY(NameBuff, buf_spname(buf));
2450 else
2451 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
2452
Bram Moolenaar50cde822005-06-05 21:54:54 +00002453 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 buf->b_fnum,
2455 buf->b_p_bl ? ' ' : 'u',
2456 buf == curbuf ? '%' :
2457 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
2458 buf->b_ml.ml_mfp == NULL ? ' ' :
2459 (buf->b_nwindows == 0 ? 'h' : 'a'),
2460 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
2461 (buf->b_flags & BF_READERR) ? 'x'
Bram Moolenaar51485f02005-06-04 21:55:20 +00002462 : (bufIsChanged(buf) ? '+' : ' '),
2463 NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464
2465 /* put "line 999" in column 40 or after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 i = 40 - vim_strsize(IObuff);
2467 do
2468 {
2469 IObuff[len++] = ' ';
2470 } while (--i > 0 && len < IOSIZE - 18);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002471 vim_snprintf((char *)IObuff + len, IOSIZE - len, _("line %ld"),
2472 buf == curbuf ? curwin->w_cursor.lnum
2473 : (long)buflist_findlnum(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 msg_outtrans(IObuff);
2475 out_flush(); /* output one line at a time */
2476 ui_breakcheck();
2477 }
2478}
2479#endif
2480
2481/*
2482 * Get file name and line number for file 'fnum'.
2483 * Used by DoOneCmd() for translating '%' and '#'.
2484 * Used by insert_reg() and cmdline_paste() for '#' register.
2485 * Return FAIL if not found, OK for success.
2486 */
2487 int
2488buflist_name_nr(fnum, fname, lnum)
2489 int fnum;
2490 char_u **fname;
2491 linenr_T *lnum;
2492{
2493 buf_T *buf;
2494
2495 buf = buflist_findnr(fnum);
2496 if (buf == NULL || buf->b_fname == NULL)
2497 return FAIL;
2498
2499 *fname = buf->b_fname;
2500 *lnum = buflist_findlnum(buf);
2501
2502 return OK;
2503}
2504
2505/*
2506 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
2507 * The file name with the full path is also remembered, for when :cd is used.
2508 * Returns FAIL for failure (file name already in use by other buffer)
2509 * OK otherwise.
2510 */
2511 int
2512setfname(buf, ffname, sfname, message)
2513 buf_T *buf;
2514 char_u *ffname, *sfname;
Bram Moolenaar81695252004-12-29 20:58:21 +00002515 int message; /* give message when buffer already exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516{
Bram Moolenaar81695252004-12-29 20:58:21 +00002517 buf_T *obuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518#ifdef UNIX
2519 struct stat st;
2520#endif
2521
2522 if (ffname == NULL || *ffname == NUL)
2523 {
2524 /* Removing the name. */
2525 vim_free(buf->b_ffname);
2526 vim_free(buf->b_sfname);
2527 buf->b_ffname = NULL;
2528 buf->b_sfname = NULL;
2529#ifdef UNIX
2530 st.st_dev = (dev_T)-1;
2531#endif
2532 }
2533 else
2534 {
2535 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
2536 if (ffname == NULL) /* out of memory */
2537 return FAIL;
2538
2539 /*
2540 * if the file name is already used in another buffer:
2541 * - if the buffer is loaded, fail
2542 * - if the buffer is not loaded, delete it from the list
2543 */
2544#ifdef UNIX
2545 if (mch_stat((char *)ffname, &st) < 0)
2546 st.st_dev = (dev_T)-1;
Bram Moolenaar81695252004-12-29 20:58:21 +00002547#endif
2548 if (!(buf->b_flags & BF_DUMMY))
2549#ifdef UNIX
2550 obuf = buflist_findname_stat(ffname, &st);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551#else
Bram Moolenaar81695252004-12-29 20:58:21 +00002552 obuf = buflist_findname(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553#endif
2554 if (obuf != NULL && obuf != buf)
2555 {
2556 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */
2557 {
2558 if (message)
2559 EMSG(_("E95: Buffer with this name already exists"));
2560 vim_free(ffname);
2561 return FAIL;
2562 }
2563 close_buffer(NULL, obuf, DOBUF_WIPE); /* delete from the list */
2564 }
2565 sfname = vim_strsave(sfname);
2566 if (ffname == NULL || sfname == NULL)
2567 {
2568 vim_free(sfname);
2569 vim_free(ffname);
2570 return FAIL;
2571 }
2572#ifdef USE_FNAME_CASE
2573# ifdef USE_LONG_FNAME
2574 if (USE_LONG_FNAME)
2575# endif
2576 fname_case(sfname, 0); /* set correct case for short file name */
2577#endif
2578 vim_free(buf->b_ffname);
2579 vim_free(buf->b_sfname);
2580 buf->b_ffname = ffname;
2581 buf->b_sfname = sfname;
2582 }
2583 buf->b_fname = buf->b_sfname;
2584#ifdef UNIX
2585 if (st.st_dev == (dev_T)-1)
2586 buf->b_dev = -1;
2587 else
2588 {
2589 buf->b_dev = st.st_dev;
2590 buf->b_ino = st.st_ino;
2591 }
2592#endif
2593
2594#ifndef SHORT_FNAME
2595 buf->b_shortname = FALSE;
2596#endif
2597
2598 buf_name_changed(buf);
2599 return OK;
2600}
2601
2602/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002603 * Crude way of changing the name of a buffer. Use with care!
2604 * The name should be relative to the current directory.
2605 */
2606 void
2607buf_set_name(fnum, name)
2608 int fnum;
2609 char_u *name;
2610{
2611 buf_T *buf;
2612
2613 buf = buflist_findnr(fnum);
2614 if (buf != NULL)
2615 {
2616 vim_free(buf->b_sfname);
2617 vim_free(buf->b_ffname);
2618 buf->b_sfname = vim_strsave(name);
2619 buf->b_ffname = FullName_save(buf->b_sfname, FALSE);
2620 buf->b_fname = buf->b_sfname;
2621 }
2622}
2623
2624/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625 * Take care of what needs to be done when the name of buffer "buf" has
2626 * changed.
2627 */
2628 void
2629buf_name_changed(buf)
2630 buf_T *buf;
2631{
2632 /*
2633 * If the file name changed, also change the name of the swapfile
2634 */
2635 if (buf->b_ml.ml_mfp != NULL)
2636 ml_setname(buf);
2637
2638 if (curwin->w_buffer == buf)
2639 check_arg_idx(curwin); /* check file name for arg list */
2640#ifdef FEAT_TITLE
2641 maketitle(); /* set window title */
2642#endif
2643#ifdef FEAT_WINDOWS
2644 status_redraw_all(); /* status lines need to be redrawn */
2645#endif
2646 fmarks_check_names(buf); /* check named file marks */
2647 ml_timestamp(buf); /* reset timestamp */
2648}
2649
2650/*
2651 * set alternate file name for current window
2652 *
2653 * Used by do_one_cmd(), do_write() and do_ecmd().
2654 * Return the buffer.
2655 */
2656 buf_T *
2657setaltfname(ffname, sfname, lnum)
2658 char_u *ffname;
2659 char_u *sfname;
2660 linenr_T lnum;
2661{
2662 buf_T *buf;
2663
2664 /* Create a buffer. 'buflisted' is not set if it's a new buffer */
2665 buf = buflist_new(ffname, sfname, lnum, 0);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002666 if (buf != NULL && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 curwin->w_alt_fnum = buf->b_fnum;
2668 return buf;
2669}
2670
2671/*
2672 * Get alternate file name for current window.
2673 * Return NULL if there isn't any, and give error message if requested.
2674 */
2675 char_u *
2676getaltfname(errmsg)
2677 int errmsg; /* give error message */
2678{
2679 char_u *fname;
2680 linenr_T dummy;
2681
2682 if (buflist_name_nr(0, &fname, &dummy) == FAIL)
2683 {
2684 if (errmsg)
2685 EMSG(_(e_noalt));
2686 return NULL;
2687 }
2688 return fname;
2689}
2690
2691/*
2692 * Add a file name to the buflist and return its number.
2693 * Uses same flags as buflist_new(), except BLN_DUMMY.
2694 *
2695 * used by qf_init(), main() and doarglist()
2696 */
2697 int
2698buflist_add(fname, flags)
2699 char_u *fname;
2700 int flags;
2701{
2702 buf_T *buf;
2703
2704 buf = buflist_new(fname, NULL, (linenr_T)0, flags);
2705 if (buf != NULL)
2706 return buf->b_fnum;
2707 return 0;
2708}
2709
2710#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
2711/*
2712 * Adjust slashes in file names. Called after 'shellslash' was set.
2713 */
2714 void
2715buflist_slash_adjust()
2716{
2717 buf_T *bp;
2718
2719 for (bp = firstbuf; bp != NULL; bp = bp->b_next)
2720 {
2721 if (bp->b_ffname != NULL)
2722 slash_adjust(bp->b_ffname);
2723 if (bp->b_sfname != NULL)
2724 slash_adjust(bp->b_sfname);
2725 }
2726}
2727#endif
2728
2729/*
2730 * Set alternate cursor position for current window.
2731 * Also save the local window option values.
2732 */
2733 void
2734buflist_altfpos()
2735{
2736 buflist_setfpos(curbuf, curwin, curwin->w_cursor.lnum,
2737 curwin->w_cursor.col, TRUE);
2738}
2739
2740/*
2741 * Return TRUE if 'ffname' is not the same file as current file.
2742 * Fname must have a full path (expanded by mch_FullName()).
2743 */
2744 int
2745otherfile(ffname)
2746 char_u *ffname;
2747{
2748 return otherfile_buf(curbuf, ffname
2749#ifdef UNIX
2750 , NULL
2751#endif
2752 );
2753}
2754
2755 static int
2756otherfile_buf(buf, ffname
2757#ifdef UNIX
2758 , stp
2759#endif
2760 )
2761 buf_T *buf;
2762 char_u *ffname;
2763#ifdef UNIX
2764 struct stat *stp;
2765#endif
2766{
2767 /* no name is different */
2768 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
2769 return TRUE;
2770 if (fnamecmp(ffname, buf->b_ffname) == 0)
2771 return FALSE;
2772#ifdef UNIX
2773 {
2774 struct stat st;
2775
2776 /* If no struct stat given, get it now */
2777 if (stp == NULL)
2778 {
2779 if (buf->b_dev < 0 || mch_stat((char *)ffname, &st) < 0)
2780 st.st_dev = (dev_T)-1;
2781 stp = &st;
2782 }
2783 /* Use dev/ino to check if the files are the same, even when the names
2784 * are different (possible with links). Still need to compare the
2785 * name above, for when the file doesn't exist yet.
2786 * Problem: The dev/ino changes when a file is deleted (and created
2787 * again) and remains the same when renamed/moved. We don't want to
2788 * mch_stat() each buffer each time, that would be too slow. Get the
2789 * dev/ino again when they appear to match, but not when they appear
2790 * to be different: Could skip a buffer when it's actually the same
2791 * file. */
2792 if (buf_same_ino(buf, stp))
2793 {
2794 buf_setino(buf);
2795 if (buf_same_ino(buf, stp))
2796 return FALSE;
2797 }
2798 }
2799#endif
2800 return TRUE;
2801}
2802
2803#if defined(UNIX) || defined(PROTO)
2804/*
2805 * Set inode and device number for a buffer.
2806 * Must always be called when b_fname is changed!.
2807 */
2808 void
2809buf_setino(buf)
2810 buf_T *buf;
2811{
2812 struct stat st;
2813
2814 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
2815 {
2816 buf->b_dev = st.st_dev;
2817 buf->b_ino = st.st_ino;
2818 }
2819 else
2820 buf->b_dev = -1;
2821}
2822
2823/*
2824 * Return TRUE if dev/ino in buffer "buf" matches with "stp".
2825 */
2826 static int
2827buf_same_ino(buf, stp)
2828 buf_T *buf;
2829 struct stat *stp;
2830{
2831 return (buf->b_dev >= 0
2832 && stp->st_dev == buf->b_dev
2833 && stp->st_ino == buf->b_ino);
2834}
2835#endif
2836
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002837/*
2838 * Print info about the current buffer.
2839 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 void
2841fileinfo(fullname, shorthelp, dont_truncate)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002842 int fullname; /* when non-zero print full path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 int shorthelp;
2844 int dont_truncate;
2845{
2846 char_u *name;
2847 int n;
2848 char_u *p;
2849 char_u *buffer;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002850 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851
2852 buffer = alloc(IOSIZE);
2853 if (buffer == NULL)
2854 return;
2855
2856 if (fullname > 1) /* 2 CTRL-G: include buffer number */
2857 {
2858 sprintf((char *)buffer, "buf %d: ", curbuf->b_fnum);
2859 p = buffer + STRLEN(buffer);
2860 }
2861 else
2862 p = buffer;
2863
2864 *p++ = '"';
2865 if (buf_spname(curbuf) != NULL)
2866 STRCPY(p, buf_spname(curbuf));
2867 else
2868 {
2869 if (!fullname && curbuf->b_fname != NULL)
2870 name = curbuf->b_fname;
2871 else
2872 name = curbuf->b_ffname;
2873 home_replace(shorthelp ? curbuf : NULL, name, p,
2874 (int)(IOSIZE - (p - buffer)), TRUE);
2875 }
2876
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002877 len = STRLEN(buffer);
2878 vim_snprintf((char *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 "\"%s%s%s%s%s%s",
2880 curbufIsChanged() ? (shortmess(SHM_MOD)
2881 ? " [+]" : _(" [Modified]")) : " ",
2882 (curbuf->b_flags & BF_NOTEDITED)
2883#ifdef FEAT_QUICKFIX
2884 && !bt_dontwrite(curbuf)
2885#endif
2886 ? _("[Not edited]") : "",
2887 (curbuf->b_flags & BF_NEW)
2888#ifdef FEAT_QUICKFIX
2889 && !bt_dontwrite(curbuf)
2890#endif
2891 ? _("[New file]") : "",
2892 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
2893 curbuf->b_p_ro ? (shortmess(SHM_RO) ? "[RO]"
2894 : _("[readonly]")) : "",
2895 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
2896 || curbuf->b_p_ro) ?
2897 " " : "");
2898 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
2899 * causes an overflow, thus for large numbers divide instead. */
2900 if (curwin->w_cursor.lnum > 1000000L)
2901 n = (int)(((long)curwin->w_cursor.lnum) /
2902 ((long)curbuf->b_ml.ml_line_count / 100L));
2903 else
2904 n = (int)(((long)curwin->w_cursor.lnum * 100L) /
2905 (long)curbuf->b_ml.ml_line_count);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002906 len = STRLEN(buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2908 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002909 vim_snprintf((char *)buffer + len, IOSIZE - len, "%s", _(no_lines_msg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 }
2911#ifdef FEAT_CMDL_INFO
2912 else if (p_ru)
2913 {
2914 /* Current line and column are already on the screen -- webb */
2915 if (curbuf->b_ml.ml_line_count == 1)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002916 vim_snprintf((char *)buffer + len, IOSIZE - len,
2917 _("1 line --%d%%--"), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002919 vim_snprintf((char *)buffer + len, IOSIZE - len,
2920 _("%ld lines --%d%%--"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 (long)curbuf->b_ml.ml_line_count, n);
2922 }
2923#endif
2924 else
2925 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00002926 vim_snprintf((char *)buffer + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 _("line %ld of %ld --%d%%-- col "),
2928 (long)curwin->w_cursor.lnum,
2929 (long)curbuf->b_ml.ml_line_count,
2930 n);
2931 validate_virtcol();
2932 col_print(buffer + STRLEN(buffer),
2933 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
2934 }
2935
2936 (void)append_arg_number(curwin, buffer, !shortmess(SHM_FILE), IOSIZE);
2937
2938 if (dont_truncate)
2939 {
2940 /* Temporarily set msg_scroll to avoid the message being truncated.
2941 * First call msg_start() to get the message in the right place. */
2942 msg_start();
2943 n = msg_scroll;
2944 msg_scroll = TRUE;
2945 msg(buffer);
2946 msg_scroll = n;
2947 }
2948 else
2949 {
2950 p = msg_trunc_attr(buffer, FALSE, 0);
2951 if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 /* Need to repeat the message after redrawing when:
2953 * - When restart_edit is set (otherwise there will be a delay
2954 * before redrawing).
2955 * - When the screen was scrolled but there is no wait-return
2956 * prompt. */
Bram Moolenaar030f0df2006-02-21 22:02:53 +00002957 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 }
2959
2960 vim_free(buffer);
2961}
2962
2963 void
2964col_print(buf, col, vcol)
2965 char_u *buf;
2966 int col;
2967 int vcol;
2968{
2969 if (col == vcol)
2970 sprintf((char *)buf, "%d", col);
2971 else
2972 sprintf((char *)buf, "%d-%d", col, vcol);
2973}
2974
2975#if defined(FEAT_TITLE) || defined(PROTO)
2976/*
2977 * put file name in title bar of window and in icon title
2978 */
2979
2980static char_u *lasttitle = NULL;
2981static char_u *lasticon = NULL;
2982
2983 void
2984maketitle()
2985{
2986 char_u *p;
2987 char_u *t_str = NULL;
2988 char_u *i_name;
2989 char_u *i_str = NULL;
2990 int maxlen = 0;
2991 int len;
2992 int mustset;
2993 char_u buf[IOSIZE];
2994 int off;
2995
2996 if (!redrawing())
2997 {
2998 /* Postpone updating the title when 'lazyredraw' is set. */
2999 need_maketitle = TRUE;
3000 return;
3001 }
3002
3003 need_maketitle = FALSE;
3004 if (!p_title && !p_icon)
3005 return;
3006
3007 if (p_title)
3008 {
3009 if (p_titlelen > 0)
3010 {
3011 maxlen = p_titlelen * Columns / 100;
3012 if (maxlen < 10)
3013 maxlen = 10;
3014 }
3015
3016 t_str = buf;
3017 if (*p_titlestring != NUL)
3018 {
3019#ifdef FEAT_STL_OPT
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003020 int use_sandbox = FALSE;
3021
3022# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003023 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003024# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 if (stl_syntax & STL_IN_TITLE)
3026 build_stl_str_hl(curwin, t_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003027 p_titlestring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003028 0, maxlen, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 else
3030#endif
3031 t_str = p_titlestring;
3032 }
3033 else
3034 {
3035 /* format: "fname + (path) (1 of 2) - VIM" */
3036
3037 if (curbuf->b_fname == NULL)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003038 STRCPY(buf, _("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039 else
3040 {
3041 p = transstr(gettail(curbuf->b_fname));
Bram Moolenaarb6356332005-07-18 21:40:44 +00003042 vim_strncpy(buf, p, IOSIZE - 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 }
3045
3046 switch (bufIsChanged(curbuf)
3047 + (curbuf->b_p_ro * 2)
3048 + (!curbuf->b_p_ma * 4))
3049 {
3050 case 1: STRCAT(buf, " +"); break;
3051 case 2: STRCAT(buf, " ="); break;
3052 case 3: STRCAT(buf, " =+"); break;
3053 case 4:
3054 case 6: STRCAT(buf, " -"); break;
3055 case 5:
3056 case 7: STRCAT(buf, " -+"); break;
3057 }
3058
3059 if (curbuf->b_fname != NULL)
3060 {
3061 /* Get path of file, replace home dir with ~ */
3062 off = (int)STRLEN(buf);
3063 buf[off++] = ' ';
3064 buf[off++] = '(';
3065 home_replace(curbuf, curbuf->b_ffname,
3066 buf + off, IOSIZE - off, TRUE);
3067#ifdef BACKSLASH_IN_FILENAME
3068 /* avoid "c:/name" to be reduced to "c" */
3069 if (isalpha(buf[off]) && buf[off + 1] == ':')
3070 off += 2;
3071#endif
3072 /* remove the file name */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003073 p = gettail_sep(buf + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074 if (p == buf + off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 /* must be a help buffer */
Bram Moolenaarb6356332005-07-18 21:40:44 +00003076 vim_strncpy(buf + off, (char_u *)_("help"),
3077 IOSIZE - off - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 *p = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003080
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 /* translate unprintable chars */
3082 p = transstr(buf + off);
Bram Moolenaarb6356332005-07-18 21:40:44 +00003083 vim_strncpy(buf + off, p, IOSIZE - off - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085 STRCAT(buf, ")");
3086 }
3087
3088 append_arg_number(curwin, buf, FALSE, IOSIZE);
3089
3090#if defined(FEAT_CLIENTSERVER)
3091 if (serverName != NULL)
3092 {
3093 STRCAT(buf, " - ");
3094 STRCAT(buf, serverName);
3095 }
3096 else
3097#endif
3098 STRCAT(buf, " - VIM");
3099
3100 if (maxlen > 0)
3101 {
3102 /* make it shorter by removing a bit in the middle */
3103 len = vim_strsize(buf);
3104 if (len > maxlen)
3105 trunc_string(buf, buf, maxlen);
3106 }
3107 }
3108 }
3109 mustset = ti_change(t_str, &lasttitle);
3110
3111 if (p_icon)
3112 {
3113 i_str = buf;
3114 if (*p_iconstring != NUL)
3115 {
3116#ifdef FEAT_STL_OPT
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003117 int use_sandbox = FALSE;
3118
3119# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003120 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003121# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 if (stl_syntax & STL_IN_ICON)
3123 build_stl_str_hl(curwin, i_str, sizeof(buf),
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003124 p_iconstring, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003125 0, 0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 else
3127#endif
3128 i_str = p_iconstring;
3129 }
3130 else
3131 {
3132 if (buf_spname(curbuf) != NULL)
3133 i_name = (char_u *)buf_spname(curbuf);
3134 else /* use file name only in icon */
3135 i_name = gettail(curbuf->b_ffname);
3136 *i_str = NUL;
3137 /* Truncate name at 100 bytes. */
3138 len = STRLEN(i_name);
3139 if (len > 100)
3140 {
3141 len -= 100;
3142#ifdef FEAT_MBYTE
3143 if (has_mbyte)
3144 len += (*mb_tail_off)(i_name, i_name + len) + 1;
3145#endif
3146 i_name += len;
3147 }
3148 STRCPY(i_str, i_name);
3149 trans_characters(i_str, IOSIZE);
3150 }
3151 }
3152
3153 mustset |= ti_change(i_str, &lasticon);
3154
3155 if (mustset)
3156 resettitle();
3157}
3158
3159/*
3160 * Used for title and icon: Check if "str" differs from "*last". Set "*last"
3161 * from "str" if it does.
3162 * Return TRUE when "*last" changed.
3163 */
3164 static int
3165ti_change(str, last)
3166 char_u *str;
3167 char_u **last;
3168{
3169 if ((str == NULL) != (*last == NULL)
3170 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3171 {
3172 vim_free(*last);
3173 if (str == NULL)
3174 *last = NULL;
3175 else
3176 *last = vim_strsave(str);
3177 return TRUE;
3178 }
3179 return FALSE;
3180}
3181
3182/*
3183 * Put current window title back (used after calling a shell)
3184 */
3185 void
3186resettitle()
3187{
3188 mch_settitle(lasttitle, lasticon);
3189}
Bram Moolenaarea408852005-06-25 22:49:46 +00003190
3191# if defined(EXITFREE) || defined(PROTO)
3192 void
3193free_titles()
3194{
3195 vim_free(lasttitle);
3196 vim_free(lasticon);
3197}
3198# endif
3199
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200#endif /* FEAT_TITLE */
3201
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003202#if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003204 * Build a string from the status line items in "fmt".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 * Return length of string in screen cells.
3206 *
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003207 * Normally works for window "wp", except when working for 'tabline' then it
3208 * is "curwin".
3209 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 * Items are drawn interspersed with the text that surrounds it
3211 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3212 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3213 *
3214 * If maxwidth is not zero, the string will be filled at any middle marker
3215 * or truncated if too long, fillchar is used for all whitespace.
3216 */
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003217/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 int
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003219build_stl_str_hl(wp, out, outlen, fmt, use_sandbox, fillchar, maxwidth, hltab, tabtab)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 win_T *wp;
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003221 char_u *out; /* buffer to write into != NameBuff */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 size_t outlen; /* length of out[] */
3223 char_u *fmt;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003224 int use_sandbox; /* "fmt" was set insecurely, use sandbox */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 int fillchar;
3226 int maxwidth;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003227 struct stl_hlrec *hltab; /* return: HL attributes (can be NULL) */
3228 struct stl_hlrec *tabtab; /* return: tab page nrs (can be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229{
3230 char_u *p;
3231 char_u *s;
3232 char_u *t;
3233 char_u *linecont;
3234#ifdef FEAT_EVAL
3235 win_T *o_curwin;
3236 buf_T *o_curbuf;
3237#endif
3238 int empty_line;
3239 colnr_T virtcol;
3240 long l;
3241 long n;
3242 int prevchar_isflag;
3243 int prevchar_isitem;
3244 int itemisflag;
3245 int fillable;
3246 char_u *str;
3247 long num;
3248 int width;
3249 int itemcnt;
3250 int curitem;
3251 int groupitem[STL_MAX_ITEM];
3252 int groupdepth;
3253 struct stl_item
3254 {
3255 char_u *start;
3256 int minwid;
3257 int maxwid;
3258 enum
3259 {
3260 Normal,
3261 Empty,
3262 Group,
3263 Middle,
3264 Highlight,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003265 TabPage,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 Trunc
3267 } type;
3268 } item[STL_MAX_ITEM];
3269 int minwid;
3270 int maxwid;
3271 int zeropad;
3272 char_u base;
3273 char_u opt;
3274#define TMPLEN 70
3275 char_u tmp[TMPLEN];
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003276 char_u *usefmt = fmt;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003277 struct stl_hlrec *sp;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003278
3279#ifdef FEAT_EVAL
3280 /*
3281 * When the format starts with "%!" then evaluate it as an expression and
3282 * use the result as the actual format string.
3283 */
3284 if (fmt[0] == '%' && fmt[1] == '!')
3285 {
3286 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3287 if (usefmt == NULL)
3288 usefmt = (char_u *)"";
3289 }
3290#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291
3292 if (fillchar == 0)
3293 fillchar = ' ';
3294 /*
3295 * Get line & check if empty (cursorpos will show "0-1").
3296 * If inversion is possible we use it. Else '=' characters are used.
3297 */
3298 linecont = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3299 empty_line = (*linecont == NUL);
3300
3301 groupdepth = 0;
3302 p = out;
3303 curitem = 0;
3304 prevchar_isflag = TRUE;
3305 prevchar_isitem = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003306 for (s = usefmt; *s; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 {
3308 if (*s != NUL && *s != '%')
3309 prevchar_isflag = prevchar_isitem = FALSE;
3310
3311 /*
3312 * Handle up to the next '%' or the end.
3313 */
3314 while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3315 *p++ = *s++;
3316 if (*s == NUL || p + 1 >= out + outlen)
3317 break;
3318
3319 /*
3320 * Handle one '%' item.
3321 */
3322 s++;
3323 if (*s == '%')
3324 {
3325 if (p + 1 >= out + outlen)
3326 break;
3327 *p++ = *s++;
3328 prevchar_isflag = prevchar_isitem = FALSE;
3329 continue;
3330 }
3331 if (*s == STL_MIDDLEMARK)
3332 {
3333 s++;
3334 if (groupdepth > 0)
3335 continue;
3336 item[curitem].type = Middle;
3337 item[curitem++].start = p;
3338 continue;
3339 }
3340 if (*s == STL_TRUNCMARK)
3341 {
3342 s++;
3343 item[curitem].type = Trunc;
3344 item[curitem++].start = p;
3345 continue;
3346 }
3347 if (*s == ')')
3348 {
3349 s++;
3350 if (groupdepth < 1)
3351 continue;
3352 groupdepth--;
3353
3354 t = item[groupitem[groupdepth]].start;
3355 *p = NUL;
3356 l = vim_strsize(t);
3357 if (curitem > groupitem[groupdepth] + 1
3358 && item[groupitem[groupdepth]].minwid == 0)
3359 {
3360 /* remove group if all items are empty */
3361 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3362 if (item[n].type == Normal)
3363 break;
3364 if (n == curitem)
3365 {
3366 p = t;
3367 l = 0;
3368 }
3369 }
3370 if (l > item[groupitem[groupdepth]].maxwid)
3371 {
3372 /* truncate, remove n bytes of text at the start */
3373#ifdef FEAT_MBYTE
3374 if (has_mbyte)
3375 {
3376 /* Find the first character that should be included. */
3377 n = 0;
3378 while (l >= item[groupitem[groupdepth]].maxwid)
3379 {
3380 l -= ptr2cells(t + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003381 n += (*mb_ptr2len)(t + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 }
3383 }
3384 else
3385#endif
3386 n = (p - t) - item[groupitem[groupdepth]].maxwid + 1;
3387
3388 *t = '<';
3389 mch_memmove(t + 1, t + n, p - (t + n));
3390 p = p - n + 1;
3391#ifdef FEAT_MBYTE
3392 /* Fill up space left over by half a double-wide char. */
3393 while (++l < item[groupitem[groupdepth]].minwid)
3394 *p++ = fillchar;
3395#endif
3396
3397 /* correct the start of the items for the truncation */
3398 for (l = groupitem[groupdepth] + 1; l < curitem; l++)
3399 {
3400 item[l].start -= n;
3401 if (item[l].start < t)
3402 item[l].start = t;
3403 }
3404 }
3405 else if (abs(item[groupitem[groupdepth]].minwid) > l)
3406 {
3407 /* fill */
3408 n = item[groupitem[groupdepth]].minwid;
3409 if (n < 0)
3410 {
3411 /* fill by appending characters */
3412 n = 0 - n;
3413 while (l++ < n && p + 1 < out + outlen)
3414 *p++ = fillchar;
3415 }
3416 else
3417 {
3418 /* fill by inserting characters */
3419 mch_memmove(t + n - l, t, p - t);
3420 l = n - l;
3421 if (p + l >= out + outlen)
3422 l = (out + outlen) - p - 1;
3423 p += l;
3424 for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3425 item[n].start += l;
3426 for ( ; l > 0; l--)
3427 *t++ = fillchar;
3428 }
3429 }
3430 continue;
3431 }
3432 minwid = 0;
3433 maxwid = 9999;
3434 zeropad = FALSE;
3435 l = 1;
3436 if (*s == '0')
3437 {
3438 s++;
3439 zeropad = TRUE;
3440 }
3441 if (*s == '-')
3442 {
3443 s++;
3444 l = -1;
3445 }
3446 if (VIM_ISDIGIT(*s))
3447 {
3448 minwid = (int)getdigits(&s);
3449 if (minwid < 0) /* overflow */
3450 minwid = 0;
3451 }
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003452 if (*s == STL_USER_HL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 {
3454 item[curitem].type = Highlight;
3455 item[curitem].start = p;
3456 item[curitem].minwid = minwid > 9 ? 1 : minwid;
3457 s++;
3458 curitem++;
3459 continue;
3460 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003461 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
3462 {
3463 if (*s == STL_TABCLOSENR)
3464 {
3465 if (minwid == 0)
3466 {
3467 /* %X ends the close label, go back to the previously
3468 * define tab label nr. */
3469 for (n = curitem - 1; n >= 0; --n)
3470 if (item[n].type == TabPage && item[n].minwid >= 0)
3471 {
3472 minwid = item[n].minwid;
3473 break;
3474 }
3475 }
3476 else
3477 /* close nrs are stored as negative values */
3478 minwid = - minwid;
3479 }
3480 item[curitem].type = TabPage;
3481 item[curitem].start = p;
3482 item[curitem].minwid = minwid;
3483 s++;
3484 curitem++;
3485 continue;
3486 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 if (*s == '.')
3488 {
3489 s++;
3490 if (VIM_ISDIGIT(*s))
3491 {
3492 maxwid = (int)getdigits(&s);
3493 if (maxwid <= 0) /* overflow */
3494 maxwid = 50;
3495 }
3496 }
3497 minwid = (minwid > 50 ? 50 : minwid) * l;
3498 if (*s == '(')
3499 {
3500 groupitem[groupdepth++] = curitem;
3501 item[curitem].type = Group;
3502 item[curitem].start = p;
3503 item[curitem].minwid = minwid;
3504 item[curitem].maxwid = maxwid;
3505 s++;
3506 curitem++;
3507 continue;
3508 }
3509 if (vim_strchr(STL_ALL, *s) == NULL)
3510 {
3511 s++;
3512 continue;
3513 }
3514 opt = *s++;
3515
3516 /* OK - now for the real work */
3517 base = 'D';
3518 itemisflag = FALSE;
3519 fillable = TRUE;
3520 num = -1;
3521 str = NULL;
3522 switch (opt)
3523 {
3524 case STL_FILEPATH:
3525 case STL_FULLPATH:
3526 case STL_FILENAME:
3527 fillable = FALSE; /* don't change ' ' to fillchar */
3528 if (buf_spname(wp->w_buffer) != NULL)
3529 STRCPY(NameBuff, buf_spname(wp->w_buffer));
3530 else
3531 {
3532 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003533 : wp->w_buffer->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
3535 }
3536 trans_characters(NameBuff, MAXPATHL);
3537 if (opt != STL_FILENAME)
3538 str = NameBuff;
3539 else
3540 str = gettail(NameBuff);
3541 break;
3542
3543 case STL_VIM_EXPR: /* '{' */
3544 itemisflag = TRUE;
3545 t = p;
3546 while (*s != '}' && *s != NUL && p + 1 < out + outlen)
3547 *p++ = *s++;
3548 if (*s != '}') /* missing '}' or out of space */
3549 break;
3550 s++;
3551 *p = 0;
3552 p = t;
3553
3554#ifdef FEAT_EVAL
3555 sprintf((char *)tmp, "%d", curbuf->b_fnum);
3556 set_internal_string_var((char_u *)"actual_curbuf", tmp);
3557
3558 o_curbuf = curbuf;
3559 o_curwin = curwin;
3560 curwin = wp;
3561 curbuf = wp->w_buffer;
3562
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003563 str = eval_to_string_safe(p, &t, use_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564
3565 curwin = o_curwin;
3566 curbuf = o_curbuf;
Bram Moolenaar01824652005-01-31 18:58:23 +00003567 do_unlet((char_u *)"g:actual_curbuf", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568
3569 if (str != NULL && *str != 0)
3570 {
3571 if (*skipdigits(str) == NUL)
3572 {
3573 num = atoi((char *)str);
3574 vim_free(str);
3575 str = NULL;
3576 itemisflag = FALSE;
3577 }
3578 }
3579#endif
3580 break;
3581
3582 case STL_LINE:
3583 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
3584 ? 0L : (long)(wp->w_cursor.lnum);
3585 break;
3586
3587 case STL_NUMLINES:
3588 num = wp->w_buffer->b_ml.ml_line_count;
3589 break;
3590
3591 case STL_COLUMN:
3592 num = !(State & INSERT) && empty_line
3593 ? 0 : (int)wp->w_cursor.col + 1;
3594 break;
3595
3596 case STL_VIRTCOL:
3597 case STL_VIRTCOL_ALT:
3598 /* In list mode virtcol needs to be recomputed */
3599 virtcol = wp->w_virtcol;
3600 if (wp->w_p_list && lcs_tab1 == NUL)
3601 {
3602 wp->w_p_list = FALSE;
3603 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
3604 wp->w_p_list = TRUE;
3605 }
3606 ++virtcol;
3607 /* Don't display %V if it's the same as %c. */
3608 if (opt == STL_VIRTCOL_ALT
3609 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
3610 ? 0 : (int)wp->w_cursor.col + 1)))
3611 break;
3612 num = (long)virtcol;
3613 break;
3614
3615 case STL_PERCENTAGE:
3616 num = (int)(((long)wp->w_cursor.lnum * 100L) /
3617 (long)wp->w_buffer->b_ml.ml_line_count);
3618 break;
3619
3620 case STL_ALTPERCENT:
3621 str = tmp;
3622 get_rel_pos(wp, str);
3623 break;
3624
3625 case STL_ARGLISTSTAT:
3626 fillable = FALSE;
3627 tmp[0] = 0;
3628 if (append_arg_number(wp, tmp, FALSE, (int)sizeof(tmp)))
3629 str = tmp;
3630 break;
3631
3632 case STL_KEYMAP:
3633 fillable = FALSE;
3634 if (get_keymap_str(wp, tmp, TMPLEN))
3635 str = tmp;
3636 break;
3637 case STL_PAGENUM:
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003638#if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003639 num = printer_page_num;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640#else
3641 num = 0;
3642#endif
3643 break;
3644
3645 case STL_BUFNO:
3646 num = wp->w_buffer->b_fnum;
3647 break;
3648
3649 case STL_OFFSET_X:
3650 base = 'X';
3651 case STL_OFFSET:
3652#ifdef FEAT_BYTEOFF
3653 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
3654 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
3655 0L : l + 1 + (!(State & INSERT) && empty_line ?
3656 0 : (int)wp->w_cursor.col);
3657#endif
3658 break;
3659
3660 case STL_BYTEVAL_X:
3661 base = 'X';
3662 case STL_BYTEVAL:
3663 if (((State & INSERT) && wp == curwin) || empty_line)
3664 num = 0;
3665 else
3666 {
3667#ifdef FEAT_MBYTE
3668 num = (*mb_ptr2char)(linecont + wp->w_cursor.col);
3669#else
3670 num = linecont[wp->w_cursor.col];
3671#endif
3672 }
3673 if (num == NL)
3674 num = 0;
3675 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
3676 num = NL;
3677 break;
3678
3679 case STL_ROFLAG:
3680 case STL_ROFLAG_ALT:
3681 itemisflag = TRUE;
3682 if (wp->w_buffer->b_p_ro)
3683 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : "[RO]");
3684 break;
3685
3686 case STL_HELPFLAG:
3687 case STL_HELPFLAG_ALT:
3688 itemisflag = TRUE;
3689 if (wp->w_buffer->b_help)
3690 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
3691 : _("[help]"));
3692 break;
3693
3694#ifdef FEAT_AUTOCMD
3695 case STL_FILETYPE:
3696 if (*wp->w_buffer->b_p_ft != NUL
3697 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
3698 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003699 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
3700 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 str = tmp;
3702 }
3703 break;
3704
3705 case STL_FILETYPE_ALT:
3706 itemisflag = TRUE;
3707 if (*wp->w_buffer->b_p_ft != NUL
3708 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
3709 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003710 vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
3711 wp->w_buffer->b_p_ft);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 for (t = tmp; *t != 0; t++)
3713 *t = TOUPPER_LOC(*t);
3714 str = tmp;
3715 }
3716 break;
3717#endif
3718
3719#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
3720 case STL_PREVIEWFLAG:
3721 case STL_PREVIEWFLAG_ALT:
3722 itemisflag = TRUE;
3723 if (wp->w_p_pvw)
3724 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
3725 : _("[Preview]"));
3726 break;
3727#endif
3728
3729 case STL_MODIFIED:
3730 case STL_MODIFIED_ALT:
3731 itemisflag = TRUE;
3732 switch ((opt == STL_MODIFIED_ALT)
3733 + bufIsChanged(wp->w_buffer) * 2
3734 + (!wp->w_buffer->b_p_ma) * 4)
3735 {
3736 case 2: str = (char_u *)"[+]"; break;
3737 case 3: str = (char_u *)",+"; break;
3738 case 4: str = (char_u *)"[-]"; break;
3739 case 5: str = (char_u *)",-"; break;
3740 case 6: str = (char_u *)"[+-]"; break;
3741 case 7: str = (char_u *)",+-"; break;
3742 }
3743 break;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003744
3745 case STL_HIGHLIGHT:
3746 t = s;
3747 while (*s != '#' && *s != NUL)
3748 ++s;
3749 if (*s == '#')
3750 {
3751 item[curitem].type = Highlight;
3752 item[curitem].start = p;
3753 item[curitem].minwid = -syn_namen2id(t, s - t);
3754 curitem++;
3755 }
3756 ++s;
3757 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 }
3759
3760 item[curitem].start = p;
3761 item[curitem].type = Normal;
3762 if (str != NULL && *str)
3763 {
3764 t = str;
3765 if (itemisflag)
3766 {
3767 if ((t[0] && t[1])
3768 && ((!prevchar_isitem && *t == ',')
3769 || (prevchar_isflag && *t == ' ')))
3770 t++;
3771 prevchar_isflag = TRUE;
3772 }
3773 l = vim_strsize(t);
3774 if (l > 0)
3775 prevchar_isitem = TRUE;
3776 if (l > maxwid)
3777 {
3778 while (l >= maxwid)
3779#ifdef FEAT_MBYTE
3780 if (has_mbyte)
3781 {
3782 l -= ptr2cells(t);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003783 t += (*mb_ptr2len)(t);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 }
3785 else
3786#endif
3787 l -= byte2cells(*t++);
3788 if (p + 1 >= out + outlen)
3789 break;
3790 *p++ = '<';
3791 }
3792 if (minwid > 0)
3793 {
3794 for (; l < minwid && p + 1 < out + outlen; l++)
3795 {
3796 /* Don't put a "-" in front of a digit. */
3797 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
3798 *p++ = ' ';
3799 else
3800 *p++ = fillchar;
3801 }
3802 minwid = 0;
3803 }
3804 else
3805 minwid *= -1;
3806 while (*t && p + 1 < out + outlen)
3807 {
3808 *p++ = *t++;
3809 /* Change a space by fillchar, unless fillchar is '-' and a
3810 * digit follows. */
3811 if (fillable && p[-1] == ' '
3812 && (!VIM_ISDIGIT(*t) || fillchar != '-'))
3813 p[-1] = fillchar;
3814 }
3815 for (; l < minwid && p + 1 < out + outlen; l++)
3816 *p++ = fillchar;
3817 }
3818 else if (num >= 0)
3819 {
3820 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
3821 char_u nstr[20];
3822
3823 if (p + 20 >= out + outlen)
3824 break; /* not sufficient space */
3825 prevchar_isitem = TRUE;
3826 t = nstr;
3827 if (opt == STL_VIRTCOL_ALT)
3828 {
3829 *t++ = '-';
3830 minwid--;
3831 }
3832 *t++ = '%';
3833 if (zeropad)
3834 *t++ = '0';
3835 *t++ = '*';
3836 *t++ = nbase == 16 ? base : (nbase == 8 ? 'o' : 'd');
3837 *t = 0;
3838
3839 for (n = num, l = 1; n >= nbase; n /= nbase)
3840 l++;
3841 if (opt == STL_VIRTCOL_ALT)
3842 l++;
3843 if (l > maxwid)
3844 {
3845 l += 2;
3846 n = l - maxwid;
3847 while (l-- > maxwid)
3848 num /= nbase;
3849 *t++ = '>';
3850 *t++ = '%';
3851 *t = t[-3];
3852 *++t = 0;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003853 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
3854 0, num, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 }
3856 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003857 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
3858 minwid, num);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 p += STRLEN(p);
3860 }
3861 else
3862 item[curitem].type = Empty;
3863
3864 if (opt == STL_VIM_EXPR)
3865 vim_free(str);
3866
3867 if (num >= 0 || (!itemisflag && str && *str))
3868 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */
3869 curitem++;
3870 }
3871 *p = NUL;
3872 itemcnt = curitem;
3873
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003874#ifdef FEAT_EVAL
3875 if (usefmt != fmt)
3876 vim_free(usefmt);
3877#endif
3878
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 width = vim_strsize(out);
3880 if (maxwidth > 0 && width > maxwidth)
3881 {
3882 /* Result is too long, must trunctate somewhere. */
3883 l = 0;
3884 if (itemcnt == 0)
3885 s = out;
3886 else
3887 {
3888 for ( ; l < itemcnt; l++)
3889 if (item[l].type == Trunc)
3890 {
3891 /* Truncate at %< item. */
3892 s = item[l].start;
3893 break;
3894 }
3895 if (l == itemcnt)
3896 {
3897 /* No %< item, truncate first item. */
3898 s = item[0].start;
3899 l = 0;
3900 }
3901 }
3902
3903 if (width - vim_strsize(s) >= maxwidth)
3904 {
3905 /* Truncation mark is beyond max length */
3906#ifdef FEAT_MBYTE
3907 if (has_mbyte)
3908 {
3909 s = out;
3910 width = 0;
3911 for (;;)
3912 {
3913 width += ptr2cells(s);
3914 if (width >= maxwidth)
3915 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003916 s += (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 }
3918 /* Fill up for half a double-wide character. */
3919 while (++width < maxwidth)
3920 *s++ = fillchar;
3921 }
3922 else
3923#endif
3924 s = out + maxwidth - 1;
3925 for (l = 0; l < itemcnt; l++)
3926 if (item[l].start > s)
3927 break;
3928 itemcnt = l;
3929 *s++ = '>';
3930 *s = 0;
3931 }
3932 else
3933 {
3934#ifdef FEAT_MBYTE
3935 if (has_mbyte)
3936 {
3937 n = 0;
3938 while (width >= maxwidth)
3939 {
3940 width -= ptr2cells(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003941 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 }
3943 }
3944 else
3945#endif
3946 n = width - maxwidth + 1;
3947 p = s + n;
3948 mch_memmove(s + 1, p, STRLEN(p) + 1);
3949 *s = '<';
3950
3951 /* Fill up for half a double-wide character. */
3952 while (++width < maxwidth)
3953 {
3954 s = s + STRLEN(s);
3955 *s++ = fillchar;
3956 *s = NUL;
3957 }
3958
3959 --n; /* count the '<' */
3960 for (; l < itemcnt; l++)
3961 {
3962 if (item[l].start - n >= s)
3963 item[l].start -= n;
3964 else
3965 item[l].start = s;
3966 }
3967 }
3968 width = maxwidth;
3969 }
3970 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
3971 {
3972 /* Apply STL_MIDDLE if any */
3973 for (l = 0; l < itemcnt; l++)
3974 if (item[l].type == Middle)
3975 break;
3976 if (l < itemcnt)
3977 {
3978 p = item[l].start + maxwidth - width;
3979 mch_memmove(p, item[l].start, STRLEN(item[l].start) + 1);
3980 for (s = item[l].start; s < p; s++)
3981 *s = fillchar;
3982 for (l++; l < itemcnt; l++)
3983 item[l].start += maxwidth - width;
3984 width = maxwidth;
3985 }
3986 }
3987
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003988 /* Store the info about highlighting. */
3989 if (hltab != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003991 sp = hltab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 for (l = 0; l < itemcnt; l++)
3993 {
3994 if (item[l].type == Highlight)
3995 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003996 sp->start = item[l].start;
3997 sp->userhl = item[l].minwid;
3998 sp++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 }
4000 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004001 sp->start = NULL;
4002 sp->userhl = 0;
4003 }
4004
4005 /* Store the info about tab pages labels. */
4006 if (tabtab != NULL)
4007 {
4008 sp = tabtab;
4009 for (l = 0; l < itemcnt; l++)
4010 {
4011 if (item[l].type == TabPage)
4012 {
4013 sp->start = item[l].start;
4014 sp->userhl = item[l].minwid;
4015 sp++;
4016 }
4017 }
4018 sp->start = NULL;
4019 sp->userhl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 }
4021
4022 return width;
4023}
4024#endif /* FEAT_STL_OPT */
4025
Bram Moolenaarba6c0522006-02-25 21:45:02 +00004026#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4027 || defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028/*
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004029 * Get relative cursor position in window into "str[]", in the form 99%, using
4030 * "Top", "Bot" or "All" when appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 */
4032 void
4033get_rel_pos(wp, str)
4034 win_T *wp;
4035 char_u *str;
4036{
4037 long above; /* number of lines above window */
4038 long below; /* number of lines below window */
4039
4040 above = wp->w_topline - 1;
4041#ifdef FEAT_DIFF
4042 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
4043#endif
4044 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4045 if (below <= 0)
4046 STRCPY(str, above == 0 ? _("All") : _("Bot"));
4047 else if (above <= 0)
4048 STRCPY(str, _("Top"));
4049 else
4050 sprintf((char *)str, "%2d%%", above > 1000000L
4051 ? (int)(above / ((above + below) / 100L))
4052 : (int)(above * 100L / (above + below)));
4053}
4054#endif
4055
4056/*
4057 * Append (file 2 of 8) to 'buf', if editing more than one file.
4058 * Return TRUE if it was appended.
4059 */
4060 int
4061append_arg_number(wp, buf, add_file, maxlen)
4062 win_T *wp;
4063 char_u *buf;
4064 int add_file; /* Add "file" before the arg number */
4065 int maxlen; /* maximum nr of chars in buf or zero*/
4066{
4067 char_u *p;
4068
4069 if (ARGCOUNT <= 1) /* nothing to do */
4070 return FALSE;
4071
4072 p = buf + STRLEN(buf); /* go to the end of the buffer */
4073 if (maxlen && p - buf + 35 >= maxlen) /* getting too long */
4074 return FALSE;
4075 *p++ = ' ';
4076 *p++ = '(';
4077 if (add_file)
4078 {
4079 STRCPY(p, "file ");
4080 p += 5;
4081 }
4082 sprintf((char *)p, wp->w_arg_idx_invalid ? "(%d) of %d)"
4083 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4084 return TRUE;
4085}
4086
4087/*
4088 * If fname is not a full path, make it a full path.
4089 * Returns pointer to allocated memory (NULL for failure).
4090 */
4091 char_u *
4092fix_fname(fname)
4093 char_u *fname;
4094{
4095 /*
4096 * Force expanding the path always for Unix, because symbolic links may
4097 * mess up the full path name, even though it starts with a '/'.
4098 * Also expand when there is ".." in the file name, try to remove it,
4099 * because "c:/src/../README" is equal to "c:/README".
4100 * For MS-Windows also expand names like "longna~1" to "longname".
4101 */
4102#ifdef UNIX
4103 return FullName_save(fname, TRUE);
4104#else
4105 if (!vim_isAbsName(fname) || strstr((char *)fname, "..") != NULL
4106#if defined(MSWIN) || defined(DJGPP)
4107 || vim_strchr(fname, '~') != NULL
4108#endif
4109 )
4110 return FullName_save(fname, FALSE);
4111
4112 fname = vim_strsave(fname);
4113
4114#ifdef USE_FNAME_CASE
4115# ifdef USE_LONG_FNAME
4116 if (USE_LONG_FNAME)
4117# endif
4118 {
4119 if (fname != NULL)
4120 fname_case(fname, 0); /* set correct case for file name */
4121 }
4122#endif
4123
4124 return fname;
4125#endif
4126}
4127
4128/*
4129 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4130 * "ffname" becomes a pointer to allocated memory (or NULL).
4131 */
4132/*ARGSUSED*/
4133 void
4134fname_expand(buf, ffname, sfname)
4135 buf_T *buf;
4136 char_u **ffname;
4137 char_u **sfname;
4138{
4139 if (*ffname == NULL) /* if no file name given, nothing to do */
4140 return;
4141 if (*sfname == NULL) /* if no short file name given, use ffname */
4142 *sfname = *ffname;
4143 *ffname = fix_fname(*ffname); /* expand to full path */
4144
4145#ifdef FEAT_SHORTCUT
4146 if (!buf->b_p_bin)
4147 {
4148 char_u *rfname = NULL;
4149
4150 /* If the file name is a shortcut file, use the file it links to. */
4151 rfname = mch_resolve_shortcut(*ffname);
4152 if (rfname)
4153 {
4154 vim_free(*ffname);
4155 *ffname = rfname;
4156 *sfname = rfname;
4157 }
4158 }
4159#endif
4160}
4161
4162/*
4163 * Get the file name for an argument list entry.
4164 */
4165 char_u *
4166alist_name(aep)
4167 aentry_T *aep;
4168{
4169 buf_T *bp;
4170
4171 /* Use the name from the associated buffer if it exists. */
4172 bp = buflist_findnr(aep->ae_fnum);
4173 if (bp == NULL)
4174 return aep->ae_fname;
4175 return bp->b_fname;
4176}
4177
4178#if defined(FEAT_WINDOWS) || defined(PROTO)
4179/*
4180 * do_arg_all(): Open up to 'count' windows, one for each argument.
4181 */
4182 void
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004183do_arg_all(count, forceit, keep_tabs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 int count;
4185 int forceit; /* hide buffers in current windows */
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004186 int keep_tabs; /* keep curren tabs, for ":tab drop file" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187{
4188 int i;
4189 win_T *wp, *wpnext;
4190 char_u *opened; /* array of flags for which args are open */
4191 int opened_len; /* lenght of opened[] */
4192 int use_firstwin = FALSE; /* use first window for arglist */
4193 int split_ret = OK;
4194 int p_ea_save;
4195 alist_T *alist; /* argument list to be used */
4196 buf_T *buf;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004197 tabpage_T *tpnext;
4198 int had_tab = cmdmod.tab;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004199 win_T *new_curwin = NULL;
4200 tabpage_T *new_curtab = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201
4202 if (ARGCOUNT <= 0)
4203 {
4204 /* Don't give an error message. We don't want it when the ":all"
4205 * command is in the .vimrc. */
4206 return;
4207 }
4208 setpcmark();
4209
4210 opened_len = ARGCOUNT;
4211 opened = alloc_clear((unsigned)opened_len);
4212 if (opened == NULL)
4213 return;
4214
4215#ifdef FEAT_GUI
4216 need_mouse_correct = TRUE;
4217#endif
4218
4219 /*
4220 * Try closing all windows that are not in the argument list.
4221 * Also close windows that are not full width;
4222 * When 'hidden' or "forceit" set the buffer becomes hidden.
4223 * Windows that have a changed buffer and can't be hidden won't be closed.
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004224 * When the ":tab" modifier was used do this for all tab pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004226 if (had_tab > 0)
4227 goto_tabpage_tp(first_tabpage);
4228 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004230 tpnext = curtab->tp_next;
4231 for (wp = firstwin; wp != NULL; wp = wpnext)
4232 {
4233 wpnext = wp->w_next;
4234 buf = wp->w_buffer;
4235 if (buf->b_ffname == NULL
4236 || buf->b_nwindows > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237#ifdef FEAT_VERTSPLIT
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004238 || wp->w_width != Columns
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004240 )
4241 i = ARGCOUNT;
4242 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004244 /* check if the buffer in this window is in the arglist */
4245 for (i = 0; i < ARGCOUNT; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004247 if (ARGLIST[i].ae_fnum == buf->b_fnum
4248 || fullpathcmp(alist_name(&ARGLIST[i]),
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004249 buf->b_ffname, TRUE) & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004251 if (i < opened_len)
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004252 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004253 opened[i] = TRUE;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004254 if (i == 0)
4255 {
4256 new_curwin = wp;
4257 new_curtab = curtab;
4258 }
4259 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004260 if (wp->w_alist != curwin->w_alist)
4261 {
4262 /* Use the current argument list for all windows
4263 * containing a file from it. */
4264 alist_unlink(wp->w_alist);
4265 wp->w_alist = curwin->w_alist;
4266 ++wp->w_alist->al_refcount;
4267 }
4268 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270 }
4271 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004272 wp->w_arg_idx = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004274 if (i == ARGCOUNT && !keep_tabs) /* close this window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004276 if (P_HID(buf) || forceit || buf->b_nwindows > 1
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004277 || !bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004279 /* If the buffer was changed, and we would like to hide it,
4280 * try autowriting. */
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004281 if (!P_HID(buf) && buf->b_nwindows <= 1
4282 && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004284 (void)autowrite(buf, FALSE);
4285#ifdef FEAT_AUTOCMD
4286 /* check if autocommands removed the window */
4287 if (!win_valid(wp) || !buf_valid(buf))
4288 {
4289 wpnext = firstwin; /* start all over... */
4290 continue;
4291 }
4292#endif
4293 }
4294#ifdef FEAT_WINDOWS
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004295 /* don't close last window */
4296 if (firstwin == lastwin && first_tabpage->tp_next == NULL)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004297#endif
4298 use_firstwin = TRUE;
4299#ifdef FEAT_WINDOWS
4300 else
4301 {
4302 win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4303# ifdef FEAT_AUTOCMD
4304 /* check if autocommands removed the next window */
4305 if (!win_valid(wpnext))
4306 wpnext = firstwin; /* start all over... */
4307# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 }
4309#endif
4310 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 }
4312 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004313
4314 /* Without the ":tab" modifier only do the current tab page. */
4315 if (had_tab == 0 || tpnext == NULL)
4316 break;
4317
4318# ifdef FEAT_AUTOCMD
4319 /* check if autocommands removed the next tab page */
4320 if (!valid_tabpage(tpnext))
4321 tpnext = first_tabpage; /* start all over...*/
4322# endif
4323 goto_tabpage_tp(tpnext);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 }
4325
4326 /*
4327 * Open a window for files in the argument list that don't have one.
4328 * ARGCOUNT may change while doing this, because of autocommands.
4329 */
4330 if (count > ARGCOUNT || count <= 0)
4331 count = ARGCOUNT;
4332
4333 /* Autocommands may do anything to the argument list. Make sure it's not
4334 * freed while we are working here by "locking" it. We still have to
4335 * watch out for its size to be changed. */
4336 alist = curwin->w_alist;
4337 ++alist->al_refcount;
4338
4339#ifdef FEAT_AUTOCMD
4340 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4341 ++autocmd_no_enter;
4342 ++autocmd_no_leave;
4343#endif
4344 win_enter(lastwin, FALSE);
4345 for (i = 0; i < count && i < alist->al_ga.ga_len && !got_int; ++i)
4346 {
4347 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4348 arg_had_last = TRUE;
4349 if (i < opened_len && opened[i])
4350 {
4351 /* Move the already present window to below the current window */
4352 if (curwin->w_arg_idx != i)
4353 {
4354 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
4355 {
4356 if (wpnext->w_arg_idx == i)
4357 {
4358 win_move_after(wpnext, curwin);
4359 break;
4360 }
4361 }
4362 }
4363 }
4364 else if (split_ret == OK)
4365 {
4366 if (!use_firstwin) /* split current window */
4367 {
4368 p_ea_save = p_ea;
4369 p_ea = TRUE; /* use space from all windows */
4370 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4371 p_ea = p_ea_save;
4372 if (split_ret == FAIL)
4373 continue;
4374 }
4375#ifdef FEAT_AUTOCMD
4376 else /* first window: do autocmd for leaving this buffer */
4377 --autocmd_no_leave;
4378#endif
4379
4380 /*
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004381 * edit file "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 */
4383 curwin->w_arg_idx = i;
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004384 if (i == 0)
4385 {
4386 new_curwin = curwin;
4387 new_curtab = curtab;
4388 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
4390 ECMD_ONE,
4391 ((P_HID(curwin->w_buffer)
4392 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
4393 + ECMD_OLDBUF);
4394#ifdef FEAT_AUTOCMD
4395 if (use_firstwin)
4396 ++autocmd_no_leave;
4397#endif
4398 use_firstwin = FALSE;
4399 }
4400 ui_breakcheck();
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004401
4402 /* When ":tab" was used open a new tab for a new window repeatedly. */
4403 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
4404 cmdmod.tab = 9999;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 }
4406
4407 /* Remove the "lock" on the argument list. */
4408 alist_unlink(alist);
4409
4410#ifdef FEAT_AUTOCMD
4411 --autocmd_no_enter;
4412#endif
Bram Moolenaar8ee89262006-03-11 21:16:47 +00004413 /* to window with first arg */
4414 if (valid_tabpage(new_curtab))
4415 goto_tabpage_tp(new_curtab);
4416 if (win_valid(new_curwin))
4417 win_enter(new_curwin, FALSE);
4418
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419#ifdef FEAT_AUTOCMD
4420 --autocmd_no_leave;
4421#endif
4422 vim_free(opened);
4423}
4424
4425# if defined(FEAT_LISTCMDS) || defined(PROTO)
4426/*
4427 * Open a window for a number of buffers.
4428 */
4429 void
4430ex_buffer_all(eap)
4431 exarg_T *eap;
4432{
4433 buf_T *buf;
4434 win_T *wp, *wpnext;
4435 int split_ret = OK;
4436 int p_ea_save;
4437 int open_wins = 0;
4438 int r;
4439 int count; /* Maximum number of windows to open. */
4440 int all; /* When TRUE also load inactive buffers. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004441#ifdef FEAT_WINDOWS
4442 int had_tab = cmdmod.tab;
4443 tabpage_T *tpnext;
4444#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445
4446 if (eap->addr_count == 0) /* make as many windows as possible */
4447 count = 9999;
4448 else
4449 count = eap->line2; /* make as many windows as specified */
4450 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
4451 all = FALSE;
4452 else
4453 all = TRUE;
4454
4455 setpcmark();
4456
4457#ifdef FEAT_GUI
4458 need_mouse_correct = TRUE;
4459#endif
4460
4461 /*
4462 * Close superfluous windows (two windows for the same buffer).
4463 * Also close windows that are not full-width.
4464 */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004465#ifdef FEAT_WINDOWS
4466 if (had_tab > 0)
4467 goto_tabpage_tp(first_tabpage);
4468 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004471 tpnext = curtab->tp_next;
4472 for (wp = firstwin; wp != NULL; wp = wpnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004474 wpnext = wp->w_next;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004475 if ((wp->w_buffer->b_nwindows > 1
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004476#ifdef FEAT_VERTSPLIT
4477 || ((cmdmod.split & WSP_VERT)
4478 ? wp->w_height + wp->w_status_height < Rows - p_ch
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004479 - tabline_height()
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004480 : wp->w_width != Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481#endif
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004482#ifdef FEAT_WINDOWS
4483 || (had_tab > 0 && wp != firstwin)
4484#endif
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00004485 ) && firstwin != lastwin)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004486 {
4487 win_close(wp, FALSE);
4488#ifdef FEAT_AUTOCMD
4489 wpnext = firstwin; /* just in case an autocommand does
4490 something strange with windows */
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004491 tpnext = first_tabpage; /* start all over...*/
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004492 open_wins = 0;
4493#endif
4494 }
4495 else
4496 ++open_wins;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004498
4499#ifdef FEAT_WINDOWS
4500 /* Without the ":tab" modifier only do the current tab page. */
4501 if (had_tab == 0 || tpnext == NULL)
4502 break;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004503 goto_tabpage_tp(tpnext);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004505#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506
4507 /*
4508 * Go through the buffer list. When a buffer doesn't have a window yet,
4509 * open one. Otherwise move the window to the right position.
4510 * Watch out for autocommands that delete buffers or windows!
4511 */
4512#ifdef FEAT_AUTOCMD
4513 /* Don't execute Win/Buf Enter/Leave autocommands here. */
4514 ++autocmd_no_enter;
4515#endif
4516 win_enter(lastwin, FALSE);
4517#ifdef FEAT_AUTOCMD
4518 ++autocmd_no_leave;
4519#endif
4520 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
4521 {
4522 /* Check if this buffer needs a window */
4523 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
4524 continue;
4525
Bram Moolenaarb475fb92006-03-02 22:40:52 +00004526#ifdef FEAT_WINDOWS
4527 if (had_tab != 0)
4528 {
4529 /* With the ":tab" modifier don't move the window. */
4530 if (buf->b_nwindows > 0)
4531 wp = lastwin; /* buffer has a window, skip it */
4532 else
4533 wp = NULL;
4534 }
4535 else
4536#endif
4537 {
4538 /* Check if this buffer already has a window */
4539 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4540 if (wp->w_buffer == buf)
4541 break;
4542 /* If the buffer already has a window, move it */
4543 if (wp != NULL)
4544 win_move_after(wp, curwin);
4545 }
4546
4547 if (wp == NULL && split_ret == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 {
4549 /* Split the window and put the buffer in it */
4550 p_ea_save = p_ea;
4551 p_ea = TRUE; /* use space from all windows */
4552 split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
4553 ++open_wins;
4554 p_ea = p_ea_save;
4555 if (split_ret == FAIL)
4556 continue;
4557
4558 /* Open the buffer in this window. */
Bram Moolenaare64ac772005-12-07 20:54:59 +00004559#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 swap_exists_action = SEA_DIALOG;
4561#endif
4562 set_curbuf(buf, DOBUF_GOTO);
4563#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 if (!buf_valid(buf)) /* autocommands deleted the buffer!!! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 {
Bram Moolenaare64ac772005-12-07 20:54:59 +00004566#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 swap_exists_action = SEA_NONE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004568# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 break;
4570 }
4571#endif
Bram Moolenaare64ac772005-12-07 20:54:59 +00004572#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 if (swap_exists_action == SEA_QUIT)
4574 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004575# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4576 cleanup_T cs;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004577
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004578 /* Reset the error/interrupt/exception state here so that
4579 * aborting() returns FALSE when closing a window. */
4580 enter_cleanup(&cs);
4581# endif
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004582
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004583 /* User selected Quit at ATTENTION prompt; close this window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 win_close(curwin, TRUE);
4585 --open_wins;
4586 swap_exists_action = SEA_NONE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004587 swap_exists_did_quit = TRUE;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004588
4589# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4590 /* Restore the error/interrupt/exception state if not
4591 * discarded by a new aborting error, interrupt, or uncaught
4592 * exception. */
4593 leave_cleanup(&cs);
4594# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 }
4596 else
4597 handle_swap_exists(NULL);
4598#endif
4599 }
4600
4601 ui_breakcheck();
4602 if (got_int)
4603 {
4604 (void)vgetc(); /* only break the file loading, not the rest */
4605 break;
4606 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004607#ifdef FEAT_EVAL
4608 /* Autocommands deleted the buffer or aborted script processing!!! */
4609 if (aborting())
4610 break;
4611#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004612#ifdef FEAT_WINDOWS
4613 /* When ":tab" was used open a new tab for a new window repeatedly. */
4614 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
4615 cmdmod.tab = 9999;
4616#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 }
4618#ifdef FEAT_AUTOCMD
4619 --autocmd_no_enter;
4620#endif
4621 win_enter(firstwin, FALSE); /* back to first window */
4622#ifdef FEAT_AUTOCMD
4623 --autocmd_no_leave;
4624#endif
4625
4626 /*
4627 * Close superfluous windows.
4628 */
4629 for (wp = lastwin; open_wins > count; )
4630 {
4631 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
4632 || autowrite(wp->w_buffer, FALSE) == OK);
4633#ifdef FEAT_AUTOCMD
4634 if (!win_valid(wp))
4635 {
4636 /* BufWrite Autocommands made the window invalid, start over */
4637 wp = lastwin;
4638 }
4639 else
4640#endif
4641 if (r)
4642 {
4643 win_close(wp, !P_HID(wp->w_buffer));
4644 --open_wins;
4645 wp = lastwin;
4646 }
4647 else
4648 {
4649 wp = wp->w_prev;
4650 if (wp == NULL)
4651 break;
4652 }
4653 }
4654}
4655# endif /* FEAT_LISTCMDS */
4656
4657#endif /* FEAT_WINDOWS */
4658
Bram Moolenaara3227e22006-03-08 21:32:40 +00004659static int chk_modeline __ARGS((linenr_T, int));
4660
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661/*
4662 * do_modelines() - process mode lines for the current file
4663 *
Bram Moolenaara3227e22006-03-08 21:32:40 +00004664 * "flags" can be:
4665 * OPT_WINONLY only set options local to window
4666 * OPT_NOWIN don't set options local to window
4667 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 * Returns immediately if the "ml" option isn't set.
4669 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 void
Bram Moolenaara3227e22006-03-08 21:32:40 +00004671do_modelines(flags)
4672 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673{
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004674 linenr_T lnum;
4675 int nmlines;
4676 static int entered = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677
4678 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
4679 return;
4680
4681 /* Disallow recursive entry here. Can happen when executing a modeline
4682 * triggers an autocommand, which reloads modelines with a ":do". */
4683 if (entered)
4684 return;
4685
4686 ++entered;
4687 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
4688 ++lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00004689 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 nmlines = 0;
4691
4692 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
4693 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
Bram Moolenaara3227e22006-03-08 21:32:40 +00004694 if (chk_modeline(lnum, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 nmlines = 0;
4696 --entered;
4697}
4698
4699#include "version.h" /* for version number */
4700
4701/*
4702 * chk_modeline() - check a single line for a mode string
4703 * Return FAIL if an error encountered.
4704 */
4705 static int
Bram Moolenaara3227e22006-03-08 21:32:40 +00004706chk_modeline(lnum, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 linenr_T lnum;
Bram Moolenaara3227e22006-03-08 21:32:40 +00004708 int flags; /* Same as for do_modelines(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709{
4710 char_u *s;
4711 char_u *e;
4712 char_u *linecopy; /* local copy of any modeline found */
4713 int prev;
4714 int vers;
4715 int end;
4716 int retval = OK;
4717 char_u *save_sourcing_name;
4718 linenr_T save_sourcing_lnum;
4719#ifdef FEAT_EVAL
4720 scid_T save_SID;
4721#endif
4722
4723 prev = -1;
4724 for (s = ml_get(lnum); *s != NUL; ++s)
4725 {
4726 if (prev == -1 || vim_isspace(prev))
4727 {
4728 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
4729 || STRNCMP(s, "vi:", (size_t)3) == 0)
4730 break;
4731 if (STRNCMP(s, "vim", 3) == 0)
4732 {
4733 if (s[3] == '<' || s[3] == '=' || s[3] == '>')
4734 e = s + 4;
4735 else
4736 e = s + 3;
4737 vers = getdigits(&e);
4738 if (*e == ':'
4739 && (s[3] == ':'
4740 || (VIM_VERSION_100 >= vers && isdigit(s[3]))
4741 || (VIM_VERSION_100 < vers && s[3] == '<')
4742 || (VIM_VERSION_100 > vers && s[3] == '>')
4743 || (VIM_VERSION_100 == vers && s[3] == '=')))
4744 break;
4745 }
4746 }
4747 prev = *s;
4748 }
4749
4750 if (*s)
4751 {
4752 do /* skip over "ex:", "vi:" or "vim:" */
4753 ++s;
4754 while (s[-1] != ':');
4755
4756 s = linecopy = vim_strsave(s); /* copy the line, it will change */
4757 if (linecopy == NULL)
4758 return FAIL;
4759
4760 save_sourcing_lnum = sourcing_lnum;
4761 save_sourcing_name = sourcing_name;
4762 sourcing_lnum = lnum; /* prepare for emsg() */
4763 sourcing_name = (char_u *)"modelines";
4764
4765 end = FALSE;
4766 while (end == FALSE)
4767 {
4768 s = skipwhite(s);
4769 if (*s == NUL)
4770 break;
4771
4772 /*
4773 * Find end of set command: ':' or end of line.
4774 * Skip over "\:", replacing it with ":".
4775 */
4776 for (e = s; *e != ':' && *e != NUL; ++e)
4777 if (e[0] == '\\' && e[1] == ':')
4778 STRCPY(e, e + 1);
4779 if (*e == NUL)
4780 end = TRUE;
4781
4782 /*
4783 * If there is a "set" command, require a terminating ':' and
4784 * ignore the stuff after the ':'.
4785 * "vi:set opt opt opt: foo" -- foo not interpreted
4786 * "vi:opt opt opt: foo" -- foo interpreted
4787 * Accept "se" for compatibility with Elvis.
4788 */
4789 if (STRNCMP(s, "set ", (size_t)4) == 0
4790 || STRNCMP(s, "se ", (size_t)3) == 0)
4791 {
4792 if (*e != ':') /* no terminating ':'? */
4793 break;
4794 end = TRUE;
4795 s = vim_strchr(s, ' ') + 1;
4796 }
4797 *e = NUL; /* truncate the set command */
4798
4799 if (*s != NUL) /* skip over an empty "::" */
4800 {
4801#ifdef FEAT_EVAL
4802 save_SID = current_SID;
4803 current_SID = SID_MODELINE;
4804#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00004805 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806#ifdef FEAT_EVAL
4807 current_SID = save_SID;
4808#endif
4809 if (retval == FAIL) /* stop if error found */
4810 break;
4811 }
4812 s = e + 1; /* advance to next part */
4813 }
4814
4815 sourcing_lnum = save_sourcing_lnum;
4816 sourcing_name = save_sourcing_name;
4817
4818 vim_free(linecopy);
4819 }
4820 return retval;
4821}
4822
4823#ifdef FEAT_VIMINFO
4824 int
4825read_viminfo_bufferlist(virp, writing)
4826 vir_T *virp;
4827 int writing;
4828{
4829 char_u *tab;
4830 linenr_T lnum;
4831 colnr_T col;
4832 buf_T *buf;
4833 char_u *sfname;
4834 char_u *xline;
4835
4836 /* Handle long line and escaped characters. */
4837 xline = viminfo_readstring(virp, 1, FALSE);
4838
4839 /* don't read in if there are files on the command-line or if writing: */
4840 if (xline != NULL && !writing && ARGCOUNT == 0
4841 && find_viminfo_parameter('%') != NULL)
4842 {
4843 /* Format is: <fname> Tab <lnum> Tab <col>.
4844 * Watch out for a Tab in the file name, work from the end. */
4845 lnum = 0;
4846 col = 0;
4847 tab = vim_strrchr(xline, '\t');
4848 if (tab != NULL)
4849 {
4850 *tab++ = '\0';
4851 col = atoi((char *)tab);
4852 tab = vim_strrchr(xline, '\t');
4853 if (tab != NULL)
4854 {
4855 *tab++ = '\0';
4856 lnum = atol((char *)tab);
4857 }
4858 }
4859
4860 /* Expand "~/" in the file name at "line + 1" to a full path.
4861 * Then try shortening it by comparing with the current directory */
4862 expand_env(xline, NameBuff, MAXPATHL);
4863 mch_dirname(IObuff, IOSIZE);
4864 sfname = shorten_fname(NameBuff, IObuff);
4865 if (sfname == NULL)
4866 sfname = NameBuff;
4867
4868 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
4869 if (buf != NULL) /* just in case... */
4870 {
4871 buf->b_last_cursor.lnum = lnum;
4872 buf->b_last_cursor.col = col;
4873 buflist_setfpos(buf, curwin, lnum, col, FALSE);
4874 }
4875 }
4876 vim_free(xline);
4877
4878 return viminfo_readline(virp);
4879}
4880
4881 void
4882write_viminfo_bufferlist(fp)
4883 FILE *fp;
4884{
4885 buf_T *buf;
4886#ifdef FEAT_WINDOWS
4887 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004888 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889#endif
4890 char_u *line;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004891 int max_buffers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892
4893 if (find_viminfo_parameter('%') == NULL)
4894 return;
4895
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004896 /* Without a number -1 is returned: do all buffers. */
4897 max_buffers = get_viminfo_parameter('%');
4898
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 /* Allocate room for the file name, lnum and col. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004900 line = alloc(MAXPATHL + 40);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 if (line == NULL)
4902 return;
4903
4904#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00004905 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 set_last_cursor(win);
4907#else
4908 set_last_cursor(curwin);
4909#endif
4910
4911 fprintf(fp, _("\n# Buffer list:\n"));
4912 for (buf = firstbuf; buf != NULL ; buf = buf->b_next)
4913 {
4914 if (buf->b_fname == NULL
4915 || !buf->b_p_bl
4916#ifdef FEAT_QUICKFIX
4917 || bt_quickfix(buf)
4918#endif
4919 || removable(buf->b_ffname))
4920 continue;
4921
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004922 if (max_buffers-- == 0)
4923 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 putc('%', fp);
4925 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
4926 sprintf((char *)line + STRLEN(line), "\t%ld\t%d",
4927 (long)buf->b_last_cursor.lnum,
4928 buf->b_last_cursor.col);
4929 viminfo_writestring(fp, line);
4930 }
4931 vim_free(line);
4932}
4933#endif
4934
4935
4936/*
4937 * Return special buffer name.
4938 * Returns NULL when the buffer has a normal file name.
4939 */
4940 char *
4941buf_spname(buf)
4942 buf_T *buf;
4943{
4944#if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
4945 if (bt_quickfix(buf))
Bram Moolenaar28c258f2006-01-25 22:02:51 +00004946 {
4947 win_T *win;
4948
4949 /*
4950 * For location list window, w_llist_ref points to the location list.
4951 * For quickfix window, w_llist_ref is NULL.
4952 */
4953 FOR_ALL_WINDOWS(win)
4954 if (win->w_buffer == buf)
4955 break;
4956 if (win != NULL && win->w_llist_ref != NULL)
4957 return _("[Location List]");
4958 else
4959 return _("[Error List]");
4960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961#endif
4962#ifdef FEAT_QUICKFIX
4963 /* There is no _file_ when 'buftype' is "nofile", b_sfname
4964 * contains the name as specified by the user */
4965 if (bt_nofile(buf))
4966 {
4967 if (buf->b_sfname != NULL)
4968 return (char *)buf->b_sfname;
4969 return "[Scratch]";
4970 }
4971#endif
4972 if (buf->b_fname == NULL)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004973 return _("[No Name]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 return NULL;
4975}
4976
4977
4978#if defined(FEAT_SIGNS) || defined(PROTO)
4979/*
4980 * Insert the sign into the signlist.
4981 */
4982 static void
4983insert_sign(buf, prev, next, id, lnum, typenr)
4984 buf_T *buf; /* buffer to store sign in */
4985 signlist_T *prev; /* previous sign entry */
4986 signlist_T *next; /* next sign entry */
4987 int id; /* sign ID */
4988 linenr_T lnum; /* line number which gets the mark */
4989 int typenr; /* typenr of sign we are adding */
4990{
4991 signlist_T *newsign;
4992
4993 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
4994 if (newsign != NULL)
4995 {
4996 newsign->id = id;
4997 newsign->lnum = lnum;
4998 newsign->typenr = typenr;
4999 newsign->next = next;
5000#ifdef FEAT_NETBEANS_INTG
5001 newsign->prev = prev;
5002 if (next != NULL)
5003 next->prev = newsign;
5004#endif
5005
5006 if (prev == NULL)
5007 {
5008 /* When adding first sign need to redraw the windows to create the
5009 * column for signs. */
5010 if (buf->b_signlist == NULL)
5011 {
5012 redraw_buf_later(buf, NOT_VALID);
5013 changed_cline_bef_curs();
5014 }
5015
5016 /* first sign in signlist */
5017 buf->b_signlist = newsign;
5018 }
5019 else
5020 prev->next = newsign;
5021 }
5022}
5023
5024/*
5025 * Add the sign into the signlist. Find the right spot to do it though.
5026 */
5027 void
5028buf_addsign(buf, id, lnum, typenr)
5029 buf_T *buf; /* buffer to store sign in */
5030 int id; /* sign ID */
5031 linenr_T lnum; /* line number which gets the mark */
5032 int typenr; /* typenr of sign we are adding */
5033{
5034 signlist_T *sign; /* a sign in the signlist */
5035 signlist_T *prev; /* the previous sign */
5036
5037 prev = NULL;
5038 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5039 {
5040 if (lnum == sign->lnum && id == sign->id)
5041 {
5042 sign->typenr = typenr;
5043 return;
5044 }
5045 else if (
5046#ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */
5047 id < 0 &&
5048#endif
5049 lnum < sign->lnum)
5050 {
5051#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5052 /* XXX - GRP: Is this because of sign slide problem? Or is it
5053 * really needed? Or is it because we allow multiple signs per
5054 * line? If so, should I add that feature to FEAT_SIGNS?
5055 */
5056 while (prev != NULL && prev->lnum == lnum)
5057 prev = prev->prev;
5058 if (prev == NULL)
5059 sign = buf->b_signlist;
5060 else
5061 sign = prev->next;
5062#endif
5063 insert_sign(buf, prev, sign, id, lnum, typenr);
5064 return;
5065 }
5066 prev = sign;
5067 }
5068#ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5069 /* XXX - GRP: See previous comment */
5070 while (prev != NULL && prev->lnum == lnum)
5071 prev = prev->prev;
5072 if (prev == NULL)
5073 sign = buf->b_signlist;
5074 else
5075 sign = prev->next;
5076#endif
5077 insert_sign(buf, prev, sign, id, lnum, typenr);
5078
5079 return;
5080}
5081
5082 int
5083buf_change_sign_type(buf, markId, typenr)
5084 buf_T *buf; /* buffer to store sign in */
5085 int markId; /* sign ID */
5086 int typenr; /* typenr of sign we are adding */
5087{
5088 signlist_T *sign; /* a sign in the signlist */
5089
5090 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5091 {
5092 if (sign->id == markId)
5093 {
5094 sign->typenr = typenr;
5095 return sign->lnum;
5096 }
5097 }
5098
5099 return 0;
5100}
5101
5102 int_u
5103buf_getsigntype(buf, lnum, type)
5104 buf_T *buf;
5105 linenr_T lnum;
5106 int type; /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
5107{
5108 signlist_T *sign; /* a sign in a b_signlist */
5109
5110 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5111 if (sign->lnum == lnum
5112 && (type == SIGN_ANY
5113# ifdef FEAT_SIGN_ICONS
5114 || (type == SIGN_ICON
5115 && sign_get_image(sign->typenr) != NULL)
5116# endif
5117 || (type == SIGN_TEXT
5118 && sign_get_text(sign->typenr) != NULL)
5119 || (type == SIGN_LINEHL
5120 && sign_get_attr(sign->typenr, TRUE) != 0)))
5121 return sign->typenr;
5122 return 0;
5123}
5124
5125
5126 linenr_T
5127buf_delsign(buf, id)
5128 buf_T *buf; /* buffer sign is stored in */
5129 int id; /* sign id */
5130{
5131 signlist_T **lastp; /* pointer to pointer to current sign */
5132 signlist_T *sign; /* a sign in a b_signlist */
5133 signlist_T *next; /* the next sign in a b_signlist */
5134 linenr_T lnum; /* line number whose sign was deleted */
5135
5136 lastp = &buf->b_signlist;
5137 lnum = 0;
5138 for (sign = buf->b_signlist; sign != NULL; sign = next)
5139 {
5140 next = sign->next;
5141 if (sign->id == id)
5142 {
5143 *lastp = next;
5144#ifdef FEAT_NETBEANS_INTG
5145 if (next != NULL)
5146 next->prev = sign->prev;
5147#endif
5148 lnum = sign->lnum;
5149 vim_free(sign);
5150 break;
5151 }
5152 else
5153 lastp = &sign->next;
5154 }
5155
5156 /* When deleted the last sign need to redraw the windows to remove the
5157 * sign column. */
5158 if (buf->b_signlist == NULL)
5159 {
5160 redraw_buf_later(buf, NOT_VALID);
5161 changed_cline_bef_curs();
5162 }
5163
5164 return lnum;
5165}
5166
5167
5168/*
5169 * Find the line number of the sign with the requested id. If the sign does
5170 * not exist, return 0 as the line number. This will still let the correct file
5171 * get loaded.
5172 */
5173 int
5174buf_findsign(buf, id)
5175 buf_T *buf; /* buffer to store sign in */
5176 int id; /* sign ID */
5177{
5178 signlist_T *sign; /* a sign in the signlist */
5179
5180 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5181 if (sign->id == id)
5182 return sign->lnum;
5183
5184 return 0;
5185}
5186
5187 int
5188buf_findsign_id(buf, lnum)
5189 buf_T *buf; /* buffer whose sign we are searching for */
5190 linenr_T lnum; /* line number of sign */
5191{
5192 signlist_T *sign; /* a sign in the signlist */
5193
5194 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5195 if (sign->lnum == lnum)
5196 return sign->id;
5197
5198 return 0;
5199}
5200
5201
5202# if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5203/* see if a given type of sign exists on a specific line */
5204 int
5205buf_findsigntype_id(buf, lnum, typenr)
5206 buf_T *buf; /* buffer whose sign we are searching for */
5207 linenr_T lnum; /* line number of sign */
5208 int typenr; /* sign type number */
5209{
5210 signlist_T *sign; /* a sign in the signlist */
5211
5212 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5213 if (sign->lnum == lnum && sign->typenr == typenr)
5214 return sign->id;
5215
5216 return 0;
5217}
5218
5219
5220# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5221/* return the number of icons on the given line */
5222 int
5223buf_signcount(buf, lnum)
5224 buf_T *buf;
5225 linenr_T lnum;
5226{
5227 signlist_T *sign; /* a sign in the signlist */
5228 int count = 0;
5229
5230 for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5231 if (sign->lnum == lnum)
5232 if (sign_get_image(sign->typenr) != NULL)
5233 count++;
5234
5235 return count;
5236}
5237# endif /* FEAT_SIGN_ICONS */
5238# endif /* FEAT_NETBEANS_INTG */
5239
5240
5241/*
5242 * Delete signs in buffer "buf".
5243 */
5244 static void
5245buf_delete_signs(buf)
5246 buf_T *buf;
5247{
5248 signlist_T *next;
5249
5250 while (buf->b_signlist != NULL)
5251 {
5252 next = buf->b_signlist->next;
5253 vim_free(buf->b_signlist);
5254 buf->b_signlist = next;
5255 }
5256}
5257
5258/*
5259 * Delete all signs in all buffers.
5260 */
5261 void
5262buf_delete_all_signs()
5263{
5264 buf_T *buf; /* buffer we are checking for signs */
5265
5266 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
5267 if (buf->b_signlist != NULL)
5268 {
5269 /* Need to redraw the windows to remove the sign column. */
5270 redraw_buf_later(buf, NOT_VALID);
5271 buf_delete_signs(buf);
5272 }
5273}
5274
5275/*
5276 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers.
5277 */
5278 void
5279sign_list_placed(rbuf)
5280 buf_T *rbuf;
5281{
5282 buf_T *buf;
5283 signlist_T *p;
5284 char lbuf[BUFSIZ];
5285
5286 MSG_PUTS_TITLE(_("\n--- Signs ---"));
5287 msg_putchar('\n');
5288 if (rbuf == NULL)
5289 buf = firstbuf;
5290 else
5291 buf = rbuf;
5292 while (buf != NULL)
5293 {
5294 if (buf->b_signlist != NULL)
5295 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005296 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
5298 msg_putchar('\n');
5299 }
5300 for (p = buf->b_signlist; p != NULL; p = p->next)
5301 {
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005302 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 (long)p->lnum, p->id, sign_typenr2name(p->typenr));
5304 MSG_PUTS(lbuf);
5305 msg_putchar('\n');
5306 }
5307 if (rbuf != NULL)
5308 break;
5309 buf = buf->b_next;
5310 }
5311}
5312
5313/*
5314 * Adjust a placed sign for inserted/deleted lines.
5315 */
5316 void
5317sign_mark_adjust(line1, line2, amount, amount_after)
5318 linenr_T line1;
5319 linenr_T line2;
5320 long amount;
5321 long amount_after;
5322{
5323 signlist_T *sign; /* a sign in a b_signlist */
5324
5325 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
5326 {
5327 if (sign->lnum >= line1 && sign->lnum <= line2)
5328 {
5329 if (amount == MAXLNUM)
5330 sign->lnum = line1;
5331 else
5332 sign->lnum += amount;
5333 }
5334 else if (sign->lnum > line2)
5335 sign->lnum += amount_after;
5336 }
5337}
5338#endif /* FEAT_SIGNS */
5339
5340/*
5341 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
5342 */
5343 void
5344set_buflisted(on)
5345 int on;
5346{
5347 if (on != curbuf->b_p_bl)
5348 {
5349 curbuf->b_p_bl = on;
5350#ifdef FEAT_AUTOCMD
5351 if (on)
5352 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
5353 else
5354 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
5355#endif
5356 }
5357}
5358
5359/*
5360 * Read the file for "buf" again and check if the contents changed.
5361 * Return TRUE if it changed or this could not be checked.
5362 */
5363 int
5364buf_contents_changed(buf)
5365 buf_T *buf;
5366{
5367 buf_T *newbuf;
5368 int differ = TRUE;
5369 linenr_T lnum;
5370#ifdef FEAT_AUTOCMD
5371 aco_save_T aco;
5372#else
5373 buf_T *old_curbuf = curbuf;
5374#endif
5375 exarg_T ea;
5376
5377 /* Allocate a buffer without putting it in the buffer list. */
5378 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
5379 if (newbuf == NULL)
5380 return TRUE;
5381
5382 /* Force the 'fileencoding' and 'fileformat' to be equal. */
5383 if (prep_exarg(&ea, buf) == FAIL)
5384 {
5385 wipe_buffer(newbuf, FALSE);
5386 return TRUE;
5387 }
5388
5389#ifdef FEAT_AUTOCMD
5390 /* set curwin/curbuf to buf and save a few things */
5391 aucmd_prepbuf(&aco, newbuf);
5392#else
5393 curbuf = newbuf;
5394 curwin->w_buffer = newbuf;
5395#endif
5396
Bram Moolenaar4770d092006-01-12 23:22:24 +00005397 if (ml_open(curbuf) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 && readfile(buf->b_ffname, buf->b_fname,
5399 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
5400 &ea, READ_NEW | READ_DUMMY) == OK)
5401 {
5402 /* compare the two files line by line */
5403 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
5404 {
5405 differ = FALSE;
5406 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
5407 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
5408 {
5409 differ = TRUE;
5410 break;
5411 }
5412 }
5413 }
5414 vim_free(ea.cmd);
5415
5416#ifdef FEAT_AUTOCMD
5417 /* restore curwin/curbuf and a few other things */
5418 aucmd_restbuf(&aco);
5419#else
5420 curbuf = old_curbuf;
5421 curwin->w_buffer = old_curbuf;
5422#endif
5423
5424 if (curbuf != newbuf) /* safety check */
5425 wipe_buffer(newbuf, FALSE);
5426
5427 return differ;
5428}
5429
5430/*
5431 * Wipe out a buffer and decrement the last buffer number if it was used for
5432 * this buffer. Call this to wipe out a temp buffer that does not contain any
5433 * marks.
5434 */
5435/*ARGSUSED*/
5436 void
5437wipe_buffer(buf, aucmd)
5438 buf_T *buf;
5439 int aucmd; /* When TRUE trigger autocommands. */
5440{
5441 if (buf->b_fnum == top_file_num - 1)
5442 --top_file_num;
5443
5444#ifdef FEAT_AUTOCMD
5445 if (!aucmd) /* Don't trigger BufDelete autocommands here. */
5446 ++autocmd_block;
5447#endif
5448 close_buffer(NULL, buf, DOBUF_WIPE);
5449#ifdef FEAT_AUTOCMD
5450 if (!aucmd)
5451 --autocmd_block;
5452#endif
5453}