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