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