Mercurial > vim
annotate src/buffer.c @ 10431:676b185ca55f
Added tag v8.0.0109 for changeset 37a441352da22d99fce1d8af5eec22a23baf8815
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 01 Dec 2016 17:30:05 +0100 |
parents | 59d01e335858 |
children | 262f5bc3d38e |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9943
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * buffer.c: functions for dealing with the buffer structure | |
12 */ | |
13 | |
14 /* | |
15 * The buffer list is a double linked list of all buffers. | |
16 * Each buffer can be in one of these states: | |
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid | |
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated | |
19 * hidden: b_nwindows == 0, loaded but not displayed in a window | |
20 * normal: loaded and displayed in a window | |
21 * | |
22 * Instead of storing file names all over the place, each file name is | |
23 * stored in the buffer list. It can be referenced by a number. | |
24 * | |
25 * The current implementation remembers all file names ever used. | |
26 */ | |
27 | |
28 #include "vim.h" | |
29 | |
30 #if defined(FEAT_CMDL_COMPL) || defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
31 static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case); |
7 | 32 # define HAVE_BUFLIST_MATCH |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
33 static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
34 #endif |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
35 static void buflist_setfpos(buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
36 static wininfo_T *find_wininfo(buf_T *buf, int skip_diff_buffer); |
7 | 37 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
38 static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st); |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
39 static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp); |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
40 static int buf_same_ino(buf_T *buf, stat_T *stp); |
7 | 41 #else |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
42 static int otherfile_buf(buf_T *buf, char_u *ffname); |
7 | 43 #endif |
44 #ifdef FEAT_TITLE | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
45 static int ti_change(char_u *str, char_u **last); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
46 #endif |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
47 static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
48 static void free_buffer(buf_T *); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
49 static void free_buffer_stuff(buf_T *buf, int free_options); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
50 static void clear_wininfo(buf_T *buf); |
7 | 51 |
52 #ifdef UNIX | |
53 # define dev_T dev_t | |
54 #else | |
55 # define dev_T unsigned | |
56 #endif | |
57 | |
58 #if defined(FEAT_SIGNS) | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
59 static void insert_sign(buf_T *buf, signlist_T *prev, signlist_T *next, int id, linenr_T lnum, int typenr); |
7 | 60 #endif |
61 | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
62 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
63 static char *msg_loclist = N_("[Location List]"); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
64 static char *msg_qflist = N_("[Quickfix List]"); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
65 #endif |
3365 | 66 #ifdef FEAT_AUTOCMD |
67 static char *e_auabort = N_("E855: Autocommands caused command to abort"); | |
68 #endif | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
69 |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
70 /* Number of times free_buffer() was called. */ |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
71 static int buf_free_count = 0; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
72 |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
73 /* Read data from buffer for retrying. */ |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
74 static int |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
75 read_buffer( |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
76 int read_stdin, /* read file from stdin, otherwise fifo */ |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
77 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */ |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
78 int flags) /* extra flags for readfile() */ |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
79 { |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
80 int retval = OK; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
81 linenr_T line_count; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
82 |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
83 /* |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
84 * Read from the buffer which the text is already filled in and append at |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
85 * the end. This makes it possible to retry when 'fileformat' or |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
86 * 'fileencoding' was guessed wrong. |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
87 */ |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
88 line_count = curbuf->b_ml.ml_line_count; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
89 retval = readfile( |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
90 read_stdin ? NULL : curbuf->b_ffname, |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
91 read_stdin ? NULL : curbuf->b_fname, |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
92 (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap, |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
93 flags | READ_BUFFER); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
94 if (retval == OK) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
95 { |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
96 /* Delete the binary lines. */ |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
97 while (--line_count >= 0) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
98 ml_delete((linenr_T)1, FALSE); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
99 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
100 else |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
101 { |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
102 /* Delete the converted lines. */ |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
103 while (curbuf->b_ml.ml_line_count > line_count) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
104 ml_delete(line_count, FALSE); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
105 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
106 /* Put the cursor on the first line. */ |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
107 curwin->w_cursor.lnum = 1; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
108 curwin->w_cursor.col = 0; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
109 |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
110 if (read_stdin) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
111 { |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
112 /* Set or reset 'modified' before executing autocommands, so that |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
113 * it can be changed there. */ |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
114 if (!readonlymode && !bufempty()) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
115 changed(); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
116 else if (retval != FAIL) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
117 unchanged(curbuf, FALSE); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
118 |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
119 #ifdef FEAT_AUTOCMD |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
120 # ifdef FEAT_EVAL |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
121 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE, |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
122 curbuf, &retval); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
123 # else |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
124 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
125 # endif |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
126 #endif |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
127 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
128 return retval; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
129 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
130 |
7 | 131 /* |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
132 * Open current buffer, that is: open the memfile and read the file into |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
133 * memory. |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
134 * Return FAIL for failure, OK otherwise. |
7 | 135 */ |
136 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
137 open_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
138 int read_stdin, /* read file from stdin */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
139 exarg_T *eap, /* for forced 'ff' and 'fenc' or NULL */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
140 int flags) /* extra flags for readfile() */ |
7 | 141 { |
142 int retval = OK; | |
143 #ifdef FEAT_AUTOCMD | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
144 bufref_T old_curbuf; |
7 | 145 #endif |
4139 | 146 #ifdef FEAT_SYN_HL |
147 long old_tw = curbuf->b_p_tw; | |
148 #endif | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
149 int read_fifo = FALSE; |
7 | 150 |
151 /* | |
152 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset. | |
153 * When re-entering the same buffer, it should not change, because the | |
154 * user may have reset the flag by hand. | |
155 */ | |
156 if (readonlymode && curbuf->b_ffname != NULL | |
157 && (curbuf->b_flags & BF_NEVERLOADED)) | |
158 curbuf->b_p_ro = TRUE; | |
159 | |
625 | 160 if (ml_open(curbuf) == FAIL) |
7 | 161 { |
162 /* | |
163 * There MUST be a memfile, otherwise we can't do anything | |
164 * If we can't create one for the current buffer, take another buffer | |
165 */ | |
3365 | 166 close_buffer(NULL, curbuf, 0, FALSE); |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
167 FOR_ALL_BUFFERS(curbuf) |
7 | 168 if (curbuf->b_ml.ml_mfp != NULL) |
169 break; | |
170 /* | |
171 * if there is no memfile at all, exit | |
1698 | 172 * This is OK, since there are no changes to lose. |
7 | 173 */ |
174 if (curbuf == NULL) | |
175 { | |
176 EMSG(_("E82: Cannot allocate any buffer, exiting...")); | |
177 getout(2); | |
178 } | |
179 EMSG(_("E83: Cannot allocate buffer, using other one...")); | |
180 enter_buffer(curbuf); | |
4139 | 181 #ifdef FEAT_SYN_HL |
182 if (old_tw != curbuf->b_p_tw) | |
183 check_colorcolumn(curwin); | |
184 #endif | |
7 | 185 return FAIL; |
186 } | |
187 | |
188 #ifdef FEAT_AUTOCMD | |
189 /* The autocommands in readfile() may change the buffer, but only AFTER | |
190 * reading the file. */ | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
191 set_bufref(&old_curbuf, curbuf); |
7 | 192 modified_was_set = FALSE; |
193 #endif | |
194 | |
195 /* mark cursor position as being invalid */ | |
2091
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
196 curwin->w_valid = 0; |
7 | 197 |
198 if (curbuf->b_ffname != NULL | |
199 #ifdef FEAT_NETBEANS_INTG | |
200 && netbeansReadFile | |
201 #endif | |
202 ) | |
203 { | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
204 int old_msg_silent = msg_silent; |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
205 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
206 int save_bin = curbuf->b_p_bin; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
207 int perm; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
208 #endif |
7 | 209 #ifdef FEAT_NETBEANS_INTG |
210 int oldFire = netbeansFireChanges; | |
211 | |
212 netbeansFireChanges = 0; | |
213 #endif | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
214 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
215 perm = mch_getperm(curbuf->b_ffname); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
216 if (perm >= 0 && (0 |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
217 # ifdef S_ISFIFO |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
218 || S_ISFIFO(perm) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
219 # endif |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
220 # ifdef S_ISSOCK |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
221 || S_ISSOCK(perm) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
222 # endif |
9911
74e345d2878c
commit https://github.com/vim/vim/commit/f04507d132fbcb63999167ec006fc6e700b5af4f
Christian Brabandt <cb@256bit.org>
parents:
9875
diff
changeset
|
223 # ifdef OPEN_CHR_FILES |
74e345d2878c
commit https://github.com/vim/vim/commit/f04507d132fbcb63999167ec006fc6e700b5af4f
Christian Brabandt <cb@256bit.org>
parents:
9875
diff
changeset
|
224 || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname)) |
74e345d2878c
commit https://github.com/vim/vim/commit/f04507d132fbcb63999167ec006fc6e700b5af4f
Christian Brabandt <cb@256bit.org>
parents:
9875
diff
changeset
|
225 # endif |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
226 )) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
227 read_fifo = TRUE; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
228 if (read_fifo) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
229 curbuf->b_p_bin = TRUE; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
230 #endif |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
231 if (shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
232 msg_silent = 1; |
7 | 233 retval = readfile(curbuf->b_ffname, curbuf->b_fname, |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
234 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap, |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
235 flags | READ_NEW | (read_fifo ? READ_FIFO : 0)); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
236 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
237 if (read_fifo) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
238 { |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
239 curbuf->b_p_bin = save_bin; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
240 if (retval == OK) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
241 retval = read_buffer(FALSE, eap, flags); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
242 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
243 #endif |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
244 msg_silent = old_msg_silent; |
7 | 245 #ifdef FEAT_NETBEANS_INTG |
246 netbeansFireChanges = oldFire; | |
247 #endif | |
248 /* Help buffer is filtered. */ | |
249 if (curbuf->b_help) | |
250 fix_help_buffer(); | |
251 } | |
252 else if (read_stdin) | |
253 { | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
254 int save_bin = curbuf->b_p_bin; |
7 | 255 |
256 /* | |
257 * First read the text in binary mode into the buffer. | |
258 * Then read from that same buffer and append at the end. This makes | |
259 * it possible to retry when 'fileformat' or 'fileencoding' was | |
260 * guessed wrong. | |
261 */ | |
262 curbuf->b_p_bin = TRUE; | |
263 retval = readfile(NULL, NULL, (linenr_T)0, | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
264 (linenr_T)0, (linenr_T)MAXLNUM, NULL, |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
265 flags | (READ_NEW + READ_STDIN)); |
7 | 266 curbuf->b_p_bin = save_bin; |
267 if (retval == OK) | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
268 retval = read_buffer(TRUE, eap, flags); |
7 | 269 } |
270 | |
271 /* if first time loading this buffer, init b_chartab[] */ | |
272 if (curbuf->b_flags & BF_NEVERLOADED) | |
5438 | 273 { |
7 | 274 (void)buf_init_chartab(curbuf, FALSE); |
5440 | 275 #ifdef FEAT_CINDENT |
5438 | 276 parse_cino(curbuf); |
5440 | 277 #endif |
5438 | 278 } |
7 | 279 |
280 /* | |
281 * Set/reset the Changed flag first, autocmds may change the buffer. | |
282 * Apply the automatic commands, before processing the modelines. | |
283 * So the modelines have priority over auto commands. | |
284 */ | |
285 /* When reading stdin, the buffer contents always needs writing, so set | |
286 * the changed flag. Unless in readonly mode: "ls | gview -". | |
287 * When interrupted and 'cpoptions' contains 'i' set changed flag. */ | |
1291 | 288 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL) |
7 | 289 #ifdef FEAT_AUTOCMD |
290 || modified_was_set /* ":set modified" used in autocmd */ | |
291 # ifdef FEAT_EVAL | |
292 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL) | |
293 # endif | |
294 #endif | |
1291 | 295 ) |
7 | 296 changed(); |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
297 else if (retval != FAIL && !read_stdin && !read_fifo) |
7 | 298 unchanged(curbuf, FALSE); |
299 save_file_ff(curbuf); /* keep this fileformat */ | |
300 | |
301 /* require "!" to overwrite the file, because it wasn't read completely */ | |
302 #ifdef FEAT_EVAL | |
303 if (aborting()) | |
304 #else | |
305 if (got_int) | |
306 #endif | |
307 curbuf->b_flags |= BF_READERR; | |
308 | |
20 | 309 #ifdef FEAT_FOLDING |
310 /* Need to update automatic folding. Do this before the autocommands, | |
311 * they may use the fold info. */ | |
312 foldUpdateAll(curwin); | |
313 #endif | |
314 | |
7 | 315 #ifdef FEAT_AUTOCMD |
316 /* need to set w_topline, unless some autocommand already did that. */ | |
317 if (!(curwin->w_valid & VALID_TOPLINE)) | |
318 { | |
319 curwin->w_topline = 1; | |
320 # ifdef FEAT_DIFF | |
321 curwin->w_topfill = 0; | |
322 # endif | |
323 } | |
324 # ifdef FEAT_EVAL | |
325 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval); | |
326 # else | |
327 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
328 # endif | |
329 #endif | |
330 | |
331 if (retval != FAIL) | |
332 { | |
333 #ifdef FEAT_AUTOCMD | |
334 /* | |
335 * The autocommands may have changed the current buffer. Apply the | |
336 * modelines to the correct buffer, if it still exists and is loaded. | |
337 */ | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
338 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL) |
7 | 339 { |
340 aco_save_T aco; | |
341 | |
342 /* Go to the buffer that was opened. */ | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
343 aucmd_prepbuf(&aco, old_curbuf.br_buf); |
7 | 344 #endif |
717 | 345 do_modelines(0); |
7 | 346 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED); |
347 | |
348 #ifdef FEAT_AUTOCMD | |
349 # ifdef FEAT_EVAL | |
350 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, | |
351 &retval); | |
352 # else | |
353 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); | |
354 # endif | |
355 | |
356 /* restore curwin/curbuf and a few other things */ | |
357 aucmd_restbuf(&aco); | |
358 } | |
359 #endif | |
360 } | |
361 | |
362 return retval; | |
363 } | |
364 | |
365 /* | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
366 * Store "buf" in "bufref" and set the free count. |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
367 */ |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
368 void |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
369 set_bufref(bufref_T *bufref, buf_T *buf) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
370 { |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
371 bufref->br_buf = buf; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
372 bufref->br_buf_free_count = buf_free_count; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
373 } |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
374 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
375 /* |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
376 * Return TRUE if "bufref->br_buf" points to a valid buffer. |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
377 * Only goes through the buffer list if buf_free_count changed. |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
378 */ |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
379 int |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
380 bufref_valid(bufref_T *bufref) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
381 { |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
382 return bufref->br_buf_free_count == buf_free_count |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
383 ? TRUE : buf_valid(bufref->br_buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
384 } |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
385 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
386 /* |
7 | 387 * Return TRUE if "buf" points to a valid buffer (in the buffer list). |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
388 * This can be slow if there are many buffers, prefer using bufref_valid(). |
7 | 389 */ |
390 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
391 buf_valid(buf_T *buf) |
7 | 392 { |
393 buf_T *bp; | |
394 | |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
395 /* Assume that we more often have a recent buffer, start with the last |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
396 * one. */ |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
397 for (bp = lastbuf; bp != NULL; bp = bp->b_prev) |
7 | 398 if (bp == buf) |
399 return TRUE; | |
400 return FALSE; | |
401 } | |
402 | |
403 /* | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
404 * A hash table used to quickly lookup a buffer by its number. |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
405 */ |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
406 static hashtab_T buf_hashtab; |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
407 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
408 static void |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
409 buf_hashtab_add(buf_T *buf) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
410 { |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
411 sprintf((char *)buf->b_key, "%x", buf->b_fnum); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
412 if (hash_add(&buf_hashtab, buf->b_key) == FAIL) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
413 EMSG(_("E931: Buffer cannot be registered")); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
414 } |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
415 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
416 static void |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
417 buf_hashtab_remove(buf_T *buf) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
418 { |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
419 hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
420 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
421 if (!HASHITEM_EMPTY(hi)) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
422 hash_remove(&buf_hashtab, hi); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
423 } |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
424 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
425 /* |
7 | 426 * Close the link to a buffer. |
427 * "action" is used when there is no longer a window for the buffer. | |
428 * It can be: | |
429 * 0 buffer becomes hidden | |
430 * DOBUF_UNLOAD buffer is unloaded | |
431 * DOBUF_DELETE buffer is unloaded and removed from buffer list | |
432 * DOBUF_WIPE buffer is unloaded and really deleted | |
433 * When doing all but the first one on the current buffer, the caller should | |
434 * get a new buffer very soon! | |
435 * | |
436 * The 'bufhidden' option can force freeing and deleting. | |
3365 | 437 * |
438 * When "abort_if_last" is TRUE then do not close the buffer if autocommands | |
439 * cause there to be only one window with this buffer. e.g. when ":quit" is | |
440 * supposed to close the window but autocommands close all other windows. | |
7 | 441 */ |
442 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
443 close_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
444 win_T *win, /* if not NULL, set b_last_cursor */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
445 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
446 int action, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
447 int abort_if_last UNUSED) |
7 | 448 { |
449 #ifdef FEAT_AUTOCMD | |
450 int is_curbuf; | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1883
diff
changeset
|
451 int nwindows; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
452 bufref_T bufref; |
10114
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
453 # ifdef FEAT_WINDOWS |
10320
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10184
diff
changeset
|
454 int is_curwin = (curwin != NULL && curwin->w_buffer == buf); |
10114
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
455 win_T *the_curwin = curwin; |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
456 tabpage_T *the_curtab = curtab; |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
457 # endif |
7 | 458 #endif |
459 int unload_buf = (action != 0); | |
460 int del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE); | |
461 int wipe_buf = (action == DOBUF_WIPE); | |
462 | |
463 #ifdef FEAT_QUICKFIX | |
464 /* | |
465 * Force unloading or deleting when 'bufhidden' says so. | |
466 * The caller must take care of NOT deleting/freeing when 'bufhidden' is | |
467 * "hide" (otherwise we could never free or delete a buffer). | |
468 */ | |
469 if (buf->b_p_bh[0] == 'd') /* 'bufhidden' == "delete" */ | |
470 { | |
471 del_buf = TRUE; | |
472 unload_buf = TRUE; | |
473 } | |
474 else if (buf->b_p_bh[0] == 'w') /* 'bufhidden' == "wipe" */ | |
475 { | |
476 del_buf = TRUE; | |
477 unload_buf = TRUE; | |
478 wipe_buf = TRUE; | |
479 } | |
480 else if (buf->b_p_bh[0] == 'u') /* 'bufhidden' == "unload" */ | |
481 unload_buf = TRUE; | |
482 #endif | |
483 | |
10108
7cb49e98d582
commit https://github.com/vim/vim/commit/30180b8dad5c1478e7920e56a71352cb318fadb0
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
484 #ifdef FEAT_AUTOCMD |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
485 /* Disallow deleting the buffer when it is locked (already being closed or |
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
486 * halfway a command that relies on it). Unloading is allowed. */ |
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
487 if (buf->b_locked > 0 && (del_buf || wipe_buf)) |
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
488 { |
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
489 EMSG(_("E937: Attempt to delete a buffer that is in use")); |
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
490 return; |
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
491 } |
10108
7cb49e98d582
commit https://github.com/vim/vim/commit/30180b8dad5c1478e7920e56a71352cb318fadb0
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
492 #endif |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
493 |
5958 | 494 if (win != NULL |
495 #ifdef FEAT_WINDOWS | |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9828
diff
changeset
|
496 && win_valid_any_tab(win) /* in case autocommands closed the window */ |
5958 | 497 #endif |
498 ) | |
7 | 499 { |
500 /* Set b_last_cursor when closing the last window for the buffer. | |
501 * Remember the last cursor position and window options of the buffer. | |
502 * This used to be only for the current window, but then options like | |
503 * 'foldmethod' may be lost with a ":only" command. */ | |
504 if (buf->b_nwindows == 1) | |
505 set_last_cursor(win); | |
506 buflist_setfpos(buf, win, | |
507 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum, | |
508 win->w_cursor.col, TRUE); | |
509 } | |
510 | |
511 #ifdef FEAT_AUTOCMD | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
512 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
513 |
7 | 514 /* When the buffer is no longer in a window, trigger BufWinLeave */ |
515 if (buf->b_nwindows == 1) | |
516 { | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
517 ++buf->b_locked; |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
518 if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname, |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
519 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
520 && !bufref_valid(&bufref)) |
3365 | 521 { |
3570 | 522 /* Autocommands deleted the buffer. */ |
523 aucmd_abort: | |
3365 | 524 EMSG(_(e_auabort)); |
7 | 525 return; |
3365 | 526 } |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
527 --buf->b_locked; |
3570 | 528 if (abort_if_last && one_window()) |
529 /* Autocommands made this the only window. */ | |
530 goto aucmd_abort; | |
7 | 531 |
532 /* When the buffer becomes hidden, but is not unloaded, trigger | |
533 * BufHidden */ | |
534 if (!unload_buf) | |
535 { | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
536 ++buf->b_locked; |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
537 if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname, |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
538 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
539 && !bufref_valid(&bufref)) |
3570 | 540 /* Autocommands deleted the buffer. */ |
541 goto aucmd_abort; | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
542 --buf->b_locked; |
3570 | 543 if (abort_if_last && one_window()) |
544 /* Autocommands made this the only window. */ | |
545 goto aucmd_abort; | |
7 | 546 } |
547 # ifdef FEAT_EVAL | |
548 if (aborting()) /* autocmds may abort script processing */ | |
549 return; | |
550 # endif | |
551 } | |
10114
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
552 |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
553 # ifdef FEAT_WINDOWS |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
554 /* If the buffer was in curwin and the window has changed, go back to that |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
555 * window, if it still exists. This avoids that ":edit x" triggering a |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
556 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */ |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
557 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin)) |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
558 { |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
559 block_autocmds(); |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
560 goto_tabpage_win(the_curtab, the_curwin); |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
561 unblock_autocmds(); |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
562 } |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
563 # endif |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
564 |
7 | 565 nwindows = buf->b_nwindows; |
566 #endif | |
567 | |
568 /* decrease the link count from windows (unless not in any window) */ | |
569 if (buf->b_nwindows > 0) | |
570 --buf->b_nwindows; | |
571 | |
572 /* Return when a window is displaying the buffer or when it's not | |
573 * unloaded. */ | |
574 if (buf->b_nwindows > 0 || !unload_buf) | |
575 return; | |
576 | |
577 /* Always remove the buffer when there is no file name. */ | |
578 if (buf->b_ffname == NULL) | |
579 del_buf = TRUE; | |
580 | |
10154
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
581 /* When closing the current buffer stop Visual mode before freeing |
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
582 * anything. */ |
10184
4669440016f2
commit https://github.com/vim/vim/commit/4930a76a0357f76a829eafe4985d04cf3ce0e9e0
Christian Brabandt <cb@256bit.org>
parents:
10156
diff
changeset
|
583 if (buf == curbuf && VIsual_active |
10156
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
584 #if defined(EXITFREE) |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
585 && !entered_free_all_mem |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
586 #endif |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
587 ) |
10154
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
588 end_visual_mode(); |
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
589 |
7 | 590 /* |
591 * Free all things allocated for this buffer. | |
592 * Also calls the "BufDelete" autocommands when del_buf is TRUE. | |
593 */ | |
594 #ifdef FEAT_AUTOCMD | |
595 /* Remember if we are closing the current buffer. Restore the number of | |
596 * windows, so that autocommands in buf_freeall() don't get confused. */ | |
597 is_curbuf = (buf == curbuf); | |
598 buf->b_nwindows = nwindows; | |
599 #endif | |
600 | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
601 buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0)); |
7 | 602 |
603 #ifdef FEAT_AUTOCMD | |
604 /* Autocommands may have deleted the buffer. */ | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
605 if (!bufref_valid(&bufref)) |
7 | 606 return; |
607 # ifdef FEAT_EVAL | |
20 | 608 if (aborting()) /* autocmds may abort script processing */ |
7 | 609 return; |
610 # endif | |
611 | |
612 /* | |
613 * It's possible that autocommands change curbuf to the one being deleted. | |
614 * This might cause the previous curbuf to be deleted unexpectedly. But | |
615 * in some cases it's OK to delete the curbuf, because a new one is | |
616 * obtained anyway. Therefore only return if curbuf changed to the | |
617 * deleted buffer. | |
618 */ | |
619 if (buf == curbuf && !is_curbuf) | |
620 return; | |
9450
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
621 |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
622 if ( |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
623 #ifdef FEAT_WINDOWS |
9875
42adbf172ecd
commit https://github.com/vim/vim/commit/e59215c7dcae17b03daf39517560cfaa03314f5a
Christian Brabandt <cb@256bit.org>
parents:
9828
diff
changeset
|
624 win_valid_any_tab(win) && |
9450
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
625 #else |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
626 win != NULL && |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
627 #endif |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
628 win->w_buffer == buf) |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
629 win->w_buffer = NULL; /* make sure we don't use the buffer now */ |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
630 |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
631 /* Autocommands may have opened or closed windows for this buffer. |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
632 * Decrement the count for the close we do here. */ |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
633 if (buf->b_nwindows > 0) |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
634 --buf->b_nwindows; |
7 | 635 #endif |
636 | |
961 | 637 /* Change directories when the 'acd' option is set. */ |
638 DO_AUTOCHDIR | |
7 | 639 |
640 /* | |
641 * Remove the buffer from the list. | |
642 */ | |
643 if (wipe_buf) | |
644 { | |
645 #ifdef FEAT_SUN_WORKSHOP | |
646 if (usingSunWorkShop) | |
647 workshop_file_closed_lineno((char *)buf->b_ffname, | |
648 (int)buf->b_last_cursor.lnum); | |
649 #endif | |
650 vim_free(buf->b_ffname); | |
651 vim_free(buf->b_sfname); | |
652 if (buf->b_prev == NULL) | |
653 firstbuf = buf->b_next; | |
654 else | |
655 buf->b_prev->b_next = buf->b_next; | |
656 if (buf->b_next == NULL) | |
657 lastbuf = buf->b_prev; | |
658 else | |
659 buf->b_next->b_prev = buf->b_prev; | |
660 free_buffer(buf); | |
661 } | |
662 else | |
663 { | |
664 if (del_buf) | |
665 { | |
666 /* Free all internal variables and reset option values, to make | |
667 * ":bdel" compatible with Vim 5.7. */ | |
668 free_buffer_stuff(buf, TRUE); | |
669 | |
670 /* Make it look like a new buffer. */ | |
671 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; | |
672 | |
673 /* Init the options when loaded again. */ | |
674 buf->b_p_initialized = FALSE; | |
675 } | |
676 buf_clear_file(buf); | |
677 if (del_buf) | |
678 buf->b_p_bl = FALSE; | |
679 } | |
680 } | |
681 | |
682 /* | |
683 * Make buffer not contain a file. | |
684 */ | |
685 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
686 buf_clear_file(buf_T *buf) |
7 | 687 { |
688 buf->b_ml.ml_line_count = 1; | |
689 unchanged(buf, TRUE); | |
690 buf->b_shortname = FALSE; | |
691 buf->b_p_eol = TRUE; | |
692 buf->b_start_eol = TRUE; | |
693 #ifdef FEAT_MBYTE | |
694 buf->b_p_bomb = FALSE; | |
1352 | 695 buf->b_start_bomb = FALSE; |
7 | 696 #endif |
697 buf->b_ml.ml_mfp = NULL; | |
698 buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */ | |
699 #ifdef FEAT_NETBEANS_INTG | |
700 netbeans_deleted_all_lines(buf); | |
701 #endif | |
702 } | |
703 | |
704 /* | |
705 * buf_freeall() - free all things allocated for a buffer that are related to | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
706 * the file. Careful: get here with "curwin" NULL when exiting. |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
707 * flags: |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
708 * BFA_DEL buffer is going to be deleted |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
709 * BFA_WIPE buffer is going to be wiped out |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
710 * BFA_KEEP_UNDO do not free undo information |
7 | 711 */ |
712 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
713 buf_freeall(buf_T *buf, int flags) |
7 | 714 { |
715 #ifdef FEAT_AUTOCMD | |
716 int is_curbuf = (buf == curbuf); | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
717 bufref_T bufref; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
718 # ifdef FEAT_WINDOWS |
10118
5d77565e6222
commit https://github.com/vim/vim/commit/030cddc7ec0c3d2fe3969140cd1b92b2f18633c0
Christian Brabandt <cb@256bit.org>
parents:
10114
diff
changeset
|
719 int is_curwin = (curwin != NULL && curwin->w_buffer == buf); |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
720 win_T *the_curwin = curwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
721 tabpage_T *the_curtab = curtab; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
722 # endif |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
723 |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
724 /* Make sure the buffer isn't closed by autocommands. */ |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
725 ++buf->b_locked; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
726 set_bufref(&bufref, buf); |
9106
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
727 if (buf->b_ml.ml_mfp != NULL) |
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
728 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
729 if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname, |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
730 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
731 && !bufref_valid(&bufref)) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
732 /* autocommands deleted the buffer */ |
9106
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
733 return; |
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
734 } |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
735 if ((flags & BFA_DEL) && buf->b_p_bl) |
7 | 736 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
737 if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname, |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
738 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
739 && !bufref_valid(&bufref)) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
740 /* autocommands deleted the buffer */ |
7 | 741 return; |
742 } | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
743 if (flags & BFA_WIPE) |
7 | 744 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
745 if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname, |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
746 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
747 && !bufref_valid(&bufref)) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
748 /* autocommands deleted the buffer */ |
7 | 749 return; |
750 } | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
751 --buf->b_locked; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
752 |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
753 # ifdef FEAT_WINDOWS |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
754 /* If the buffer was in curwin and the window has changed, go back to that |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
755 * window, if it still exists. This avoids that ":edit x" triggering a |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
756 * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */ |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
757 if (is_curwin && curwin != the_curwin && win_valid_any_tab(the_curwin)) |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
758 { |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
759 block_autocmds(); |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
760 goto_tabpage_win(the_curtab, the_curwin); |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
761 unblock_autocmds(); |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
762 } |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
763 # endif |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
764 |
7 | 765 # ifdef FEAT_EVAL |
36 | 766 if (aborting()) /* autocmds may abort script processing */ |
7 | 767 return; |
768 # endif | |
769 | |
770 /* | |
771 * It's possible that autocommands change curbuf to the one being deleted. | |
772 * This might cause curbuf to be deleted unexpectedly. But in some cases | |
773 * it's OK to delete the curbuf, because a new one is obtained anyway. | |
774 * Therefore only return if curbuf changed to the deleted buffer. | |
775 */ | |
776 if (buf == curbuf && !is_curbuf) | |
777 return; | |
778 #endif | |
779 #ifdef FEAT_DIFF | |
780 diff_buf_delete(buf); /* Can't use 'diff' for unloaded buffer. */ | |
781 #endif | |
3068 | 782 #ifdef FEAT_SYN_HL |
3182 | 783 /* Remove any ownsyntax, unless exiting. */ |
10118
5d77565e6222
commit https://github.com/vim/vim/commit/030cddc7ec0c3d2fe3969140cd1b92b2f18633c0
Christian Brabandt <cb@256bit.org>
parents:
10114
diff
changeset
|
784 if (curwin != NULL && curwin->w_buffer == buf) |
3182 | 785 reset_synblock(curwin); |
3068 | 786 #endif |
1187 | 787 |
788 #ifdef FEAT_FOLDING | |
789 /* No folds in an empty buffer. */ | |
790 # ifdef FEAT_WINDOWS | |
791 { | |
792 win_T *win; | |
793 tabpage_T *tp; | |
794 | |
795 FOR_ALL_TAB_WINDOWS(tp, win) | |
796 if (win->w_buffer == buf) | |
797 clearFolding(win); | |
798 } | |
799 # else | |
10118
5d77565e6222
commit https://github.com/vim/vim/commit/030cddc7ec0c3d2fe3969140cd1b92b2f18633c0
Christian Brabandt <cb@256bit.org>
parents:
10114
diff
changeset
|
800 if (curwin != NULL && curwin->w_buffer == buf) |
1187 | 801 clearFolding(curwin); |
802 # endif | |
803 #endif | |
804 | |
7 | 805 #ifdef FEAT_TCL |
806 tcl_buffer_free(buf); | |
807 #endif | |
808 ml_close(buf, TRUE); /* close and delete the memline/memfile */ | |
809 buf->b_ml.ml_line_count = 0; /* no lines in buffer */ | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
810 if ((flags & BFA_KEEP_UNDO) == 0) |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
811 { |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
812 u_blockfree(buf); /* free the memory allocated for undo */ |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
813 u_clearall(buf); /* reset all undo information */ |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
814 } |
7 | 815 #ifdef FEAT_SYN_HL |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
816 syntax_clear(&buf->b_s); /* reset syntax info */ |
7 | 817 #endif |
24 | 818 buf->b_flags &= ~BF_READERR; /* a read error is no longer relevant */ |
7 | 819 } |
820 | |
821 /* | |
822 * Free a buffer structure and the things it contains related to the buffer | |
823 * itself (not the file, that must have been done already). | |
824 */ | |
825 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
826 free_buffer(buf_T *buf) |
7 | 827 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
828 ++buf_free_count; |
7 | 829 free_buffer_stuff(buf, TRUE); |
4287 | 830 #ifdef FEAT_EVAL |
831 unref_var_dict(buf->b_vars); | |
832 #endif | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
833 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
834 lua_buffer_free(buf); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
835 #endif |
14 | 836 #ifdef FEAT_MZSCHEME |
837 mzscheme_buffer_free(buf); | |
838 #endif | |
7 | 839 #ifdef FEAT_PERL |
840 perl_buf_free(buf); | |
841 #endif | |
842 #ifdef FEAT_PYTHON | |
843 python_buffer_free(buf); | |
844 #endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
845 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
846 python3_buffer_free(buf); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
847 #endif |
7 | 848 #ifdef FEAT_RUBY |
849 ruby_buffer_free(buf); | |
850 #endif | |
9087
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
851 #ifdef FEAT_JOB_CHANNEL |
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
852 channel_buffer_free(buf); |
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
853 #endif |
9515
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
854 |
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
855 buf_hashtab_remove(buf); |
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
856 |
40 | 857 #ifdef FEAT_AUTOCMD |
858 aubuflocal_remove(buf); | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
859 |
5816 | 860 if (autocmd_busy) |
861 { | |
862 /* Do not free the buffer structure while autocommands are executing, | |
863 * it's still needed. Free it when autocmd_busy is reset. */ | |
864 buf->b_next = au_pending_free_buf; | |
865 au_pending_free_buf = buf; | |
866 } | |
867 else | |
868 #endif | |
869 vim_free(buf); | |
7 | 870 } |
871 | |
872 /* | |
873 * Free stuff in the buffer for ":bdel" and when wiping out the buffer. | |
874 */ | |
875 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
876 free_buffer_stuff( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
877 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
878 int free_options) /* free options as well */ |
7 | 879 { |
880 if (free_options) | |
881 { | |
882 clear_wininfo(buf); /* including window-local options */ | |
883 free_buf_options(buf, TRUE); | |
2620 | 884 #ifdef FEAT_SPELL |
885 ga_clear(&buf->b_s.b_langp); | |
886 #endif | |
7 | 887 } |
888 #ifdef FEAT_EVAL | |
4287 | 889 vars_clear(&buf->b_vars->dv_hashtab); /* free all internal variables */ |
890 hash_init(&buf->b_vars->dv_hashtab); | |
7 | 891 #endif |
892 #ifdef FEAT_USR_CMDS | |
893 uc_clear(&buf->b_ucmds); /* clear local user commands */ | |
894 #endif | |
895 #ifdef FEAT_SIGNS | |
896 buf_delete_signs(buf); /* delete any signs */ | |
897 #endif | |
1781 | 898 #ifdef FEAT_NETBEANS_INTG |
2210 | 899 netbeans_file_killed(buf); |
1781 | 900 #endif |
7 | 901 #ifdef FEAT_LOCALMAP |
902 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */ | |
903 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); /* clear local abbrevs */ | |
904 #endif | |
905 #ifdef FEAT_MBYTE | |
906 vim_free(buf->b_start_fenc); | |
907 buf->b_start_fenc = NULL; | |
908 #endif | |
909 } | |
910 | |
911 /* | |
912 * Free the b_wininfo list for buffer "buf". | |
913 */ | |
914 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
915 clear_wininfo(buf_T *buf) |
7 | 916 { |
917 wininfo_T *wip; | |
918 | |
919 while (buf->b_wininfo != NULL) | |
920 { | |
921 wip = buf->b_wininfo; | |
922 buf->b_wininfo = wip->wi_next; | |
923 if (wip->wi_optset) | |
924 { | |
925 clear_winopt(&wip->wi_opt); | |
926 #ifdef FEAT_FOLDING | |
927 deleteFoldRecurse(&wip->wi_folds); | |
928 #endif | |
929 } | |
930 vim_free(wip); | |
931 } | |
932 } | |
933 | |
934 #if defined(FEAT_LISTCMDS) || defined(PROTO) | |
935 /* | |
936 * Go to another buffer. Handles the result of the ATTENTION dialog. | |
937 */ | |
938 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
939 goto_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
940 exarg_T *eap, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
941 int start, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
942 int dir, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
943 int count) |
7 | 944 { |
576 | 945 # if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION) |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
946 bufref_T old_curbuf; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
947 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
948 set_bufref(&old_curbuf, curbuf); |
7 | 949 |
950 swap_exists_action = SEA_DIALOG; | |
951 # endif | |
952 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO, | |
953 start, dir, count, eap->forceit); | |
576 | 954 # if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION) |
7 | 955 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's') |
956 { | |
24 | 957 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
958 cleanup_T cs; | |
959 | |
960 /* Reset the error/interrupt/exception state here so that | |
961 * aborting() returns FALSE when closing a window. */ | |
962 enter_cleanup(&cs); | |
963 # endif | |
964 | |
965 /* Quitting means closing the split window, nothing else. */ | |
7 | 966 win_close(curwin, TRUE); |
967 swap_exists_action = SEA_NONE; | |
602 | 968 swap_exists_did_quit = TRUE; |
24 | 969 |
970 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
971 /* Restore the error/interrupt/exception state if not discarded by a | |
972 * new aborting error, interrupt, or uncaught exception. */ | |
973 leave_cleanup(&cs); | |
974 # endif | |
7 | 975 } |
976 else | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
977 handle_swap_exists(&old_curbuf); |
7 | 978 # endif |
979 } | |
980 #endif | |
981 | |
576 | 982 #if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO) |
7 | 983 /* |
984 * Handle the situation of swap_exists_action being set. | |
985 * It is allowed for "old_curbuf" to be NULL or invalid. | |
986 */ | |
987 void | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
988 handle_swap_exists(bufref_T *old_curbuf) |
7 | 989 { |
24 | 990 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
991 cleanup_T cs; | |
992 # endif | |
4139 | 993 #ifdef FEAT_SYN_HL |
994 long old_tw = curbuf->b_p_tw; | |
995 #endif | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
996 buf_T *buf; |
20 | 997 |
7 | 998 if (swap_exists_action == SEA_QUIT) |
999 { | |
24 | 1000 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
1001 /* Reset the error/interrupt/exception state here so that | |
1002 * aborting() returns FALSE when closing a buffer. */ | |
1003 enter_cleanup(&cs); | |
1004 # endif | |
1005 | |
7 | 1006 /* User selected Quit at ATTENTION prompt. Go back to previous |
1007 * buffer. If that buffer is gone or the same as the current one, | |
1008 * open a new, empty buffer. */ | |
1009 swap_exists_action = SEA_NONE; /* don't want it again */ | |
602 | 1010 swap_exists_did_quit = TRUE; |
3365 | 1011 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE); |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1012 if (old_curbuf == NULL || !bufref_valid(old_curbuf) |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1013 || old_curbuf->br_buf == curbuf) |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1014 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED); |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1015 else |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1016 buf = old_curbuf->br_buf; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1017 if (buf != NULL) |
4139 | 1018 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1019 enter_buffer(buf); |
4139 | 1020 #ifdef FEAT_SYN_HL |
1021 if (old_tw != curbuf->b_p_tw) | |
1022 check_colorcolumn(curwin); | |
1023 #endif | |
1024 } | |
7 | 1025 /* If "old_curbuf" is NULL we are in big trouble here... */ |
24 | 1026 |
1027 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
1028 /* Restore the error/interrupt/exception state if not discarded by a | |
1029 * new aborting error, interrupt, or uncaught exception. */ | |
1030 leave_cleanup(&cs); | |
1031 # endif | |
7 | 1032 } |
1033 else if (swap_exists_action == SEA_RECOVER) | |
1034 { | |
24 | 1035 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
1036 /* Reset the error/interrupt/exception state here so that | |
1037 * aborting() returns FALSE when closing a buffer. */ | |
1038 enter_cleanup(&cs); | |
1039 # endif | |
1040 | |
7 | 1041 /* User selected Recover at ATTENTION prompt. */ |
1042 msg_scroll = TRUE; | |
1043 ml_recover(); | |
1044 MSG_PUTS("\n"); /* don't overwrite the last message */ | |
1045 cmdline_row = msg_row; | |
717 | 1046 do_modelines(0); |
24 | 1047 |
1048 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
1049 /* Restore the error/interrupt/exception state if not discarded by a | |
1050 * new aborting error, interrupt, or uncaught exception. */ | |
1051 leave_cleanup(&cs); | |
1052 # endif | |
7 | 1053 } |
1054 swap_exists_action = SEA_NONE; | |
1055 } | |
1056 #endif | |
1057 | |
1058 #if defined(FEAT_LISTCMDS) || defined(PROTO) | |
1059 /* | |
1060 * do_bufdel() - delete or unload buffer(s) | |
1061 * | |
1062 * addr_count == 0: ":bdel" - delete current buffer | |
1063 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete | |
1064 * buffer "end_bnr", then any other arguments. | |
1065 * addr_count == 2: ":N,N bdel" - delete buffers in range | |
1066 * | |
1067 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or | |
1068 * DOBUF_DEL (":bdel") | |
1069 * | |
1070 * Returns error message or NULL | |
1071 */ | |
1072 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1073 do_bufdel( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1074 int command, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1075 char_u *arg, /* pointer to extra arguments */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1076 int addr_count, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1077 int start_bnr, /* first buffer number in a range */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1078 int end_bnr, /* buffer nr or last buffer nr in a range */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1079 int forceit) |
7 | 1080 { |
1081 int do_current = 0; /* delete current buffer? */ | |
1082 int deleted = 0; /* number of buffers deleted */ | |
1083 char_u *errormsg = NULL; /* return value */ | |
1084 int bnr; /* buffer number */ | |
1085 char_u *p; | |
1086 | |
1087 if (addr_count == 0) | |
1088 { | |
1089 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit); | |
1090 } | |
1091 else | |
1092 { | |
1093 if (addr_count == 2) | |
1094 { | |
1095 if (*arg) /* both range and argument is not allowed */ | |
1096 return (char_u *)_(e_trailing); | |
1097 bnr = start_bnr; | |
1098 } | |
1099 else /* addr_count == 1 */ | |
1100 bnr = end_bnr; | |
1101 | |
1102 for ( ;!got_int; ui_breakcheck()) | |
1103 { | |
1104 /* | |
1105 * delete the current buffer last, otherwise when the | |
1106 * current buffer is deleted, the next buffer becomes | |
1107 * the current one and will be loaded, which may then | |
1108 * also be deleted, etc. | |
1109 */ | |
1110 if (bnr == curbuf->b_fnum) | |
1111 do_current = bnr; | |
1112 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr, | |
1113 forceit) == OK) | |
1114 ++deleted; | |
1115 | |
1116 /* | |
1117 * find next buffer number to delete/unload | |
1118 */ | |
1119 if (addr_count == 2) | |
1120 { | |
1121 if (++bnr > end_bnr) | |
1122 break; | |
1123 } | |
1124 else /* addr_count == 1 */ | |
1125 { | |
1126 arg = skipwhite(arg); | |
1127 if (*arg == NUL) | |
1128 break; | |
1129 if (!VIM_ISDIGIT(*arg)) | |
1130 { | |
1131 p = skiptowhite_esc(arg); | |
4236 | 1132 bnr = buflist_findpat(arg, p, command == DOBUF_WIPE, |
1133 FALSE, FALSE); | |
7 | 1134 if (bnr < 0) /* failed */ |
1135 break; | |
1136 arg = p; | |
1137 } | |
1138 else | |
1139 bnr = getdigits(&arg); | |
1140 } | |
1141 } | |
1142 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST, | |
1143 FORWARD, do_current, forceit) == OK) | |
1144 ++deleted; | |
1145 | |
1146 if (deleted == 0) | |
1147 { | |
1148 if (command == DOBUF_UNLOAD) | |
300 | 1149 STRCPY(IObuff, _("E515: No buffers were unloaded")); |
7 | 1150 else if (command == DOBUF_DEL) |
300 | 1151 STRCPY(IObuff, _("E516: No buffers were deleted")); |
7 | 1152 else |
300 | 1153 STRCPY(IObuff, _("E517: No buffers were wiped out")); |
7 | 1154 errormsg = IObuff; |
1155 } | |
1156 else if (deleted >= p_report) | |
1157 { | |
1158 if (command == DOBUF_UNLOAD) | |
1159 { | |
1160 if (deleted == 1) | |
1161 MSG(_("1 buffer unloaded")); | |
1162 else | |
1163 smsg((char_u *)_("%d buffers unloaded"), deleted); | |
1164 } | |
1165 else if (command == DOBUF_DEL) | |
1166 { | |
1167 if (deleted == 1) | |
1168 MSG(_("1 buffer deleted")); | |
1169 else | |
1170 smsg((char_u *)_("%d buffers deleted"), deleted); | |
1171 } | |
1172 else | |
1173 { | |
1174 if (deleted == 1) | |
1175 MSG(_("1 buffer wiped out")); | |
1176 else | |
1177 smsg((char_u *)_("%d buffers wiped out"), deleted); | |
1178 } | |
1179 } | |
1180 } | |
1181 | |
1182 | |
1183 return errormsg; | |
1184 } | |
4936
ae05437a744a
updated for version 7.3.1213
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1185 #endif /* FEAT_LISTCMDS */ |
ae05437a744a
updated for version 7.3.1213
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1186 |
ae05437a744a
updated for version 7.3.1213
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1187 #if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \ |
ae05437a744a
updated for version 7.3.1213
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1188 || defined(FEAT_PYTHON3) || defined(PROTO) |
7 | 1189 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
1190 static int empty_curbuf(int close_others, int forceit, int action); |
5586 | 1191 |
1192 /* | |
1193 * Make the current buffer empty. | |
1194 * Used when it is wiped out and it's the last buffer. | |
1195 */ | |
1196 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1197 empty_curbuf( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1198 int close_others, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1199 int forceit, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1200 int action) |
5586 | 1201 { |
1202 int retval; | |
1203 buf_T *buf = curbuf; | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1204 bufref_T bufref; |
5586 | 1205 |
1206 if (action == DOBUF_UNLOAD) | |
1207 { | |
1208 EMSG(_("E90: Cannot unload last buffer")); | |
1209 return FAIL; | |
1210 } | |
1211 | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1212 set_bufref(&bufref, buf); |
5586 | 1213 #ifdef FEAT_WINDOWS |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1214 if (close_others) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1215 /* Close any other windows on this buffer, then make it empty. */ |
5586 | 1216 close_windows(buf, TRUE); |
1217 #endif | |
1218 | |
1219 setpcmark(); | |
1220 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, | |
1221 forceit ? ECMD_FORCEIT : 0, curwin); | |
1222 | |
1223 /* | |
1224 * do_ecmd() may create a new buffer, then we have to delete | |
1225 * the old one. But do_ecmd() may have done that already, check | |
1226 * if the buffer still exists. | |
1227 */ | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1228 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0) |
5586 | 1229 close_buffer(NULL, buf, action, FALSE); |
1230 if (!close_others) | |
1231 need_fileinfo = FALSE; | |
1232 return retval; | |
1233 } | |
7 | 1234 /* |
1235 * Implementation of the commands for the buffer list. | |
1236 * | |
1237 * action == DOBUF_GOTO go to specified buffer | |
1238 * action == DOBUF_SPLIT split window and go to specified buffer | |
1239 * action == DOBUF_UNLOAD unload specified buffer(s) | |
1240 * action == DOBUF_DEL delete specified buffer(s) from buffer list | |
1241 * action == DOBUF_WIPE delete specified buffer(s) really | |
1242 * | |
1243 * start == DOBUF_CURRENT go to "count" buffer from current buffer | |
1244 * start == DOBUF_FIRST go to "count" buffer from first buffer | |
1245 * start == DOBUF_LAST go to "count" buffer from last buffer | |
1246 * start == DOBUF_MOD go to "count" modified buffer from current buffer | |
1247 * | |
1248 * Return FAIL or OK. | |
1249 */ | |
1250 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1251 do_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1252 int action, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1253 int start, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1254 int dir, /* FORWARD or BACKWARD */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1255 int count, /* buffer number or number of buffers */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1256 int forceit) /* TRUE for :...! */ |
7 | 1257 { |
1258 buf_T *buf; | |
1259 buf_T *bp; | |
1260 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL | |
1261 || action == DOBUF_WIPE); | |
1262 | |
1263 switch (start) | |
1264 { | |
1265 case DOBUF_FIRST: buf = firstbuf; break; | |
1266 case DOBUF_LAST: buf = lastbuf; break; | |
1267 default: buf = curbuf; break; | |
1268 } | |
1269 if (start == DOBUF_MOD) /* find next modified buffer */ | |
1270 { | |
1271 while (count-- > 0) | |
1272 { | |
1273 do | |
1274 { | |
1275 buf = buf->b_next; | |
1276 if (buf == NULL) | |
1277 buf = firstbuf; | |
1278 } | |
1279 while (buf != curbuf && !bufIsChanged(buf)); | |
1280 } | |
1281 if (!bufIsChanged(buf)) | |
1282 { | |
1283 EMSG(_("E84: No modified buffer found")); | |
1284 return FAIL; | |
1285 } | |
1286 } | |
1287 else if (start == DOBUF_FIRST && count) /* find specified buffer number */ | |
1288 { | |
1289 while (buf != NULL && buf->b_fnum != count) | |
1290 buf = buf->b_next; | |
1291 } | |
1292 else | |
1293 { | |
1294 bp = NULL; | |
1295 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf)) | |
1296 { | |
1297 /* remember the buffer where we start, we come back there when all | |
1298 * buffers are unlisted. */ | |
1299 if (bp == NULL) | |
1300 bp = buf; | |
1301 if (dir == FORWARD) | |
1302 { | |
1303 buf = buf->b_next; | |
1304 if (buf == NULL) | |
1305 buf = firstbuf; | |
1306 } | |
1307 else | |
1308 { | |
1309 buf = buf->b_prev; | |
1310 if (buf == NULL) | |
1311 buf = lastbuf; | |
1312 } | |
1313 /* don't count unlisted buffers */ | |
1314 if (unload || buf->b_p_bl) | |
1315 { | |
1316 --count; | |
1317 bp = NULL; /* use this buffer as new starting point */ | |
1318 } | |
1319 if (bp == buf) | |
1320 { | |
1321 /* back where we started, didn't find anything. */ | |
1322 EMSG(_("E85: There is no listed buffer")); | |
1323 return FAIL; | |
1324 } | |
1325 } | |
1326 } | |
1327 | |
1328 if (buf == NULL) /* could not find it */ | |
1329 { | |
1330 if (start == DOBUF_FIRST) | |
1331 { | |
1332 /* don't warn when deleting */ | |
1333 if (!unload) | |
6557 | 1334 EMSGN(_(e_nobufnr), count); |
7 | 1335 } |
1336 else if (dir == FORWARD) | |
1337 EMSG(_("E87: Cannot go beyond last buffer")); | |
1338 else | |
1339 EMSG(_("E88: Cannot go before first buffer")); | |
1340 return FAIL; | |
1341 } | |
1342 | |
1343 #ifdef FEAT_GUI | |
1344 need_mouse_correct = TRUE; | |
1345 #endif | |
1346 | |
1347 #ifdef FEAT_LISTCMDS | |
1348 /* | |
1349 * delete buffer buf from memory and/or the list | |
1350 */ | |
1351 if (unload) | |
1352 { | |
1353 int forward; | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1354 # if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1355 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1356 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1357 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1358 # endif |
7 | 1359 |
1360 /* When unloading or deleting a buffer that's already unloaded and | |
1361 * unlisted: fail silently. */ | |
1362 if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl) | |
1363 return FAIL; | |
1364 | |
1365 if (!forceit && bufIsChanged(buf)) | |
1366 { | |
1367 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
1368 if ((p_confirm || cmdmod.confirm) && p_write) | |
1369 { | |
1370 dialog_changed(buf, FALSE); | |
1371 # ifdef FEAT_AUTOCMD | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1372 if (!bufref_valid(&bufref)) |
7 | 1373 /* Autocommand deleted buffer, oops! It's not changed |
1374 * now. */ | |
1375 return FAIL; | |
1376 # endif | |
36 | 1377 /* If it's still changed fail silently, the dialog already |
1378 * mentioned why it fails. */ | |
1379 if (bufIsChanged(buf)) | |
1380 return FAIL; | |
7 | 1381 } |
36 | 1382 else |
7 | 1383 #endif |
1384 { | |
1385 EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"), | |
1386 buf->b_fnum); | |
1387 return FAIL; | |
1388 } | |
1389 } | |
1390 | |
10154
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
1391 /* When closing the current buffer stop Visual mode. */ |
10184
4669440016f2
commit https://github.com/vim/vim/commit/4930a76a0357f76a829eafe4985d04cf3ce0e9e0
Christian Brabandt <cb@256bit.org>
parents:
10156
diff
changeset
|
1392 if (buf == curbuf && VIsual_active) |
10154
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
1393 end_visual_mode(); |
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
1394 |
7 | 1395 /* |
1396 * If deleting the last (listed) buffer, make it empty. | |
1397 * The last (listed) buffer cannot be unloaded. | |
1398 */ | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
1399 FOR_ALL_BUFFERS(bp) |
7 | 1400 if (bp->b_p_bl && bp != buf) |
1401 break; | |
1402 if (bp == NULL && buf == curbuf) | |
5586 | 1403 return empty_curbuf(TRUE, forceit, action); |
7 | 1404 |
1405 #ifdef FEAT_WINDOWS | |
1406 /* | |
1407 * If the deleted buffer is the current one, close the current window | |
671 | 1408 * (unless it's the only window). Repeat this so long as we end up in |
1409 * a window with this buffer. | |
7 | 1410 */ |
671 | 1411 while (buf == curbuf |
3570 | 1412 # ifdef FEAT_AUTOCMD |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
1413 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0) |
3570 | 1414 # endif |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
1415 && (!ONE_WINDOW || first_tabpage->tp_next != NULL)) |
5302 | 1416 { |
1417 if (win_close(curwin, FALSE) == FAIL) | |
1418 break; | |
1419 } | |
7 | 1420 #endif |
1421 | |
1422 /* | |
1423 * If the buffer to be deleted is not the current one, delete it here. | |
1424 */ | |
1425 if (buf != curbuf) | |
1426 { | |
1427 #ifdef FEAT_WINDOWS | |
671 | 1428 close_windows(buf, FALSE); |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1429 if (buf != curbuf && bufref_valid(&bufref)) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1430 #endif |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1431 if (buf->b_nwindows <= 0) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1432 close_buffer(NULL, buf, action, FALSE); |
7 | 1433 return OK; |
1434 } | |
1435 | |
1436 /* | |
1437 * Deleting the current buffer: Need to find another buffer to go to. | |
5586 | 1438 * There should be another, otherwise it would have been handled |
1439 * above. However, autocommands may have deleted all buffers. | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9479
diff
changeset
|
1440 * First use au_new_curbuf.br_buf, if it is valid. |
7 | 1441 * Then prefer the buffer we most recently visited. |
1442 * Else try to find one that is loaded, after the current buffer, | |
1443 * then before the current buffer. | |
1444 * Finally use any buffer. | |
1445 */ | |
1446 buf = NULL; /* selected buffer */ | |
1447 bp = NULL; /* used when no loaded buffer found */ | |
1448 #ifdef FEAT_AUTOCMD | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9479
diff
changeset
|
1449 if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf)) |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9479
diff
changeset
|
1450 buf = au_new_curbuf.br_buf; |
7 | 1451 # ifdef FEAT_JUMPLIST |
1452 else | |
1453 # endif | |
1454 #endif | |
1455 #ifdef FEAT_JUMPLIST | |
1456 if (curwin->w_jumplistlen > 0) | |
1457 { | |
1458 int jumpidx; | |
1459 | |
1460 jumpidx = curwin->w_jumplistidx - 1; | |
1461 if (jumpidx < 0) | |
1462 jumpidx = curwin->w_jumplistlen - 1; | |
1463 | |
1464 forward = jumpidx; | |
1465 while (jumpidx != curwin->w_jumplistidx) | |
1466 { | |
1467 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum); | |
1468 if (buf != NULL) | |
1469 { | |
1470 if (buf == curbuf || !buf->b_p_bl) | |
1471 buf = NULL; /* skip current and unlisted bufs */ | |
1472 else if (buf->b_ml.ml_mfp == NULL) | |
1473 { | |
1474 /* skip unloaded buf, but may keep it for later */ | |
1475 if (bp == NULL) | |
1476 bp = buf; | |
1477 buf = NULL; | |
1478 } | |
1479 } | |
1480 if (buf != NULL) /* found a valid buffer: stop searching */ | |
1481 break; | |
1482 /* advance to older entry in jump list */ | |
1483 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen) | |
1484 break; | |
1485 if (--jumpidx < 0) | |
1486 jumpidx = curwin->w_jumplistlen - 1; | |
1487 if (jumpidx == forward) /* List exhausted for sure */ | |
1488 break; | |
1489 } | |
1490 } | |
1491 #endif | |
1492 | |
1493 if (buf == NULL) /* No previous buffer, Try 2'nd approach */ | |
1494 { | |
1495 forward = TRUE; | |
1496 buf = curbuf->b_next; | |
1497 for (;;) | |
1498 { | |
1499 if (buf == NULL) | |
1500 { | |
1501 if (!forward) /* tried both directions */ | |
1502 break; | |
1503 buf = curbuf->b_prev; | |
1504 forward = FALSE; | |
1505 continue; | |
1506 } | |
1507 /* in non-help buffer, try to skip help buffers, and vv */ | |
1508 if (buf->b_help == curbuf->b_help && buf->b_p_bl) | |
1509 { | |
1510 if (buf->b_ml.ml_mfp != NULL) /* found loaded buffer */ | |
1511 break; | |
1512 if (bp == NULL) /* remember unloaded buf for later */ | |
1513 bp = buf; | |
1514 } | |
1515 if (forward) | |
1516 buf = buf->b_next; | |
1517 else | |
1518 buf = buf->b_prev; | |
1519 } | |
1520 } | |
1521 if (buf == NULL) /* No loaded buffer, use unloaded one */ | |
1522 buf = bp; | |
1523 if (buf == NULL) /* No loaded buffer, find listed one */ | |
1524 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
1525 FOR_ALL_BUFFERS(buf) |
7 | 1526 if (buf->b_p_bl && buf != curbuf) |
1527 break; | |
1528 } | |
1529 if (buf == NULL) /* Still no buffer, just take one */ | |
1530 { | |
1531 if (curbuf->b_next != NULL) | |
1532 buf = curbuf->b_next; | |
1533 else | |
1534 buf = curbuf->b_prev; | |
1535 } | |
1536 } | |
1537 | |
5586 | 1538 if (buf == NULL) |
1539 { | |
1540 /* Autocommands must have wiped out all other buffers. Only option | |
1541 * now is to make the current buffer empty. */ | |
1542 return empty_curbuf(FALSE, forceit, action); | |
1543 } | |
1544 | |
7 | 1545 /* |
1546 * make buf current buffer | |
1547 */ | |
1548 if (action == DOBUF_SPLIT) /* split window first */ | |
1549 { | |
1550 # ifdef FEAT_WINDOWS | |
1618 | 1551 /* If 'switchbuf' contains "useopen": jump to first window containing |
1552 * "buf" if one exists */ | |
1553 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf)) | |
825 | 1554 return OK; |
1736 | 1555 /* If 'switchbuf' contains "usetab": jump to first window in any tab |
1618 | 1556 * page containing "buf" if one exists */ |
1557 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf)) | |
7 | 1558 return OK; |
1559 if (win_split(0, 0) == FAIL) | |
1560 # endif | |
1561 return FAIL; | |
1562 } | |
1563 #endif | |
1564 | |
1565 /* go to current buffer - nothing to do */ | |
1566 if (buf == curbuf) | |
1567 return OK; | |
1568 | |
1569 /* | |
1570 * Check if the current buffer may be abandoned. | |
1571 */ | |
1572 if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit)) | |
1573 { | |
1574 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
1575 if ((p_confirm || cmdmod.confirm) && p_write) | |
1576 { | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1577 # ifdef FEAT_AUTOCMD |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1578 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1579 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1580 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1581 # endif |
7 | 1582 dialog_changed(curbuf, FALSE); |
1583 # ifdef FEAT_AUTOCMD | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1584 if (!bufref_valid(&bufref)) |
7 | 1585 /* Autocommand deleted buffer, oops! */ |
1586 return FAIL; | |
1587 # endif | |
1588 } | |
1589 if (bufIsChanged(curbuf)) | |
1590 #endif | |
1591 { | |
1592 EMSG(_(e_nowrtmsg)); | |
1593 return FAIL; | |
1594 } | |
1595 } | |
1596 | |
1597 /* Go to the other buffer. */ | |
1598 set_curbuf(buf, action); | |
1599 | |
2583 | 1600 #if defined(FEAT_LISTCMDS) \ |
1601 && (defined(FEAT_SCROLLBIND) || defined(FEAT_CURSORBIND)) | |
7 | 1602 if (action == DOBUF_SPLIT) |
2583 | 1603 { |
1604 RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */ | |
1605 } | |
7 | 1606 #endif |
1607 | |
1608 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
1609 if (aborting()) /* autocmds may abort script processing */ | |
1610 return FAIL; | |
1611 #endif | |
1612 | |
1613 return OK; | |
1614 } | |
4936
ae05437a744a
updated for version 7.3.1213
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1615 #endif |
7 | 1616 |
1617 /* | |
1618 * Set current buffer to "buf". Executes autocommands and closes current | |
1619 * buffer. "action" tells how to close the current buffer: | |
1620 * DOBUF_GOTO free or hide it | |
1621 * DOBUF_SPLIT nothing | |
1622 * DOBUF_UNLOAD unload it | |
1623 * DOBUF_DEL delete it | |
1624 * DOBUF_WIPE wipe it out | |
1625 */ | |
1626 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1627 set_curbuf(buf_T *buf, int action) |
7 | 1628 { |
1629 buf_T *prevbuf; | |
1630 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL | |
1631 || action == DOBUF_WIPE); | |
4139 | 1632 #ifdef FEAT_SYN_HL |
1633 long old_tw = curbuf->b_p_tw; | |
1634 #endif | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1635 bufref_T bufref; |
7 | 1636 |
1637 setpcmark(); | |
22 | 1638 if (!cmdmod.keepalt) |
1639 curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */ | |
1743 | 1640 buflist_altfpos(curwin); /* remember curpos */ |
7 | 1641 |
1642 /* Don't restart Select mode after switching to another buffer. */ | |
1643 VIsual_reselect = FALSE; | |
1644 | |
1645 /* close_windows() or apply_autocmds() may change curbuf */ | |
1646 prevbuf = curbuf; | |
9479
6149d1374ea0
commit https://github.com/vim/vim/commit/453f37dbfd6f8304a36ea84e40a9965404206186
Christian Brabandt <cb@256bit.org>
parents:
9475
diff
changeset
|
1647 set_bufref(&bufref, prevbuf); |
7 | 1648 |
1649 #ifdef FEAT_AUTOCMD | |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1650 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf) |
7 | 1651 # ifdef FEAT_EVAL |
10320
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10184
diff
changeset
|
1652 || (bufref_valid(&bufref) && !aborting()) |
7 | 1653 # else |
10320
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10184
diff
changeset
|
1654 || bufref_valid(&bufref) |
7 | 1655 # endif |
10320
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10184
diff
changeset
|
1656 ) |
7 | 1657 #endif |
1658 { | |
3068 | 1659 #ifdef FEAT_SYN_HL |
1660 if (prevbuf == curwin->w_buffer) | |
1661 reset_synblock(curwin); | |
1662 #endif | |
7 | 1663 #ifdef FEAT_WINDOWS |
1664 if (unload) | |
671 | 1665 close_windows(prevbuf, FALSE); |
7 | 1666 #endif |
1667 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1668 if (bufref_valid(&bufref) && !aborting()) |
7 | 1669 #else |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1670 if (bufref_valid(&bufref)) |
7 | 1671 #endif |
815 | 1672 { |
3606 | 1673 #ifdef FEAT_WINDOWS |
3654 | 1674 win_T *previouswin = curwin; |
3606 | 1675 #endif |
815 | 1676 if (prevbuf == curbuf) |
825 | 1677 u_sync(FALSE); |
7 | 1678 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf, |
1679 unload ? action : (action == DOBUF_GOTO | |
1680 && !P_HID(prevbuf) | |
3365 | 1681 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE); |
3606 | 1682 #ifdef FEAT_WINDOWS |
3654 | 1683 if (curwin != previouswin && win_valid(previouswin)) |
3594 | 1684 /* autocommands changed curwin, Grr! */ |
3654 | 1685 curwin = previouswin; |
3606 | 1686 #endif |
815 | 1687 } |
7 | 1688 } |
1689 #ifdef FEAT_AUTOCMD | |
1710 | 1690 /* An autocommand may have deleted "buf", already entered it (e.g., when |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1691 * it did ":bunload") or aborted the script processing. |
3594 | 1692 * If curwin->w_buffer is null, enter_buffer() will make it valid again */ |
1693 if ((buf_valid(buf) && buf != curbuf | |
3606 | 1694 # ifdef FEAT_EVAL |
3594 | 1695 && !aborting() |
3606 | 1696 # endif |
1697 # ifdef FEAT_WINDOWS | |
3594 | 1698 ) || curwin->w_buffer == NULL |
3606 | 1699 # endif |
3594 | 1700 ) |
7 | 1701 #endif |
4139 | 1702 { |
7 | 1703 enter_buffer(buf); |
4139 | 1704 #ifdef FEAT_SYN_HL |
1705 if (old_tw != curbuf->b_p_tw) | |
1706 check_colorcolumn(curwin); | |
1707 #endif | |
1708 } | |
7 | 1709 } |
1710 | |
1711 /* | |
1712 * Enter a new current buffer. | |
4139 | 1713 * Old curbuf must have been abandoned already! This also means "curbuf" may |
1714 * be pointing to freed memory. | |
7 | 1715 */ |
1716 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1717 enter_buffer(buf_T *buf) |
7 | 1718 { |
1719 /* Copy buffer and window local option values. Not for a help buffer. */ | |
1720 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP); | |
1721 if (!buf->b_help) | |
1722 get_winopts(buf); | |
1723 #ifdef FEAT_FOLDING | |
1724 else | |
1725 /* Remove all folds in the window. */ | |
1726 clearFolding(curwin); | |
1727 foldUpdateAll(curwin); /* update folds (later). */ | |
1728 #endif | |
1729 | |
1730 /* Get the buffer in the current window. */ | |
1731 curwin->w_buffer = buf; | |
1732 curbuf = buf; | |
1733 ++curbuf->b_nwindows; | |
1734 | |
1735 #ifdef FEAT_DIFF | |
672 | 1736 if (curwin->w_p_diff) |
1737 diff_buf_add(curbuf); | |
7 | 1738 #endif |
1739 | |
3068 | 1740 #ifdef FEAT_SYN_HL |
1741 curwin->w_s = &(buf->b_s); | |
1742 #endif | |
1743 | |
7 | 1744 /* Cursor on first line by default. */ |
1745 curwin->w_cursor.lnum = 1; | |
1746 curwin->w_cursor.col = 0; | |
1747 #ifdef FEAT_VIRTUALEDIT | |
1748 curwin->w_cursor.coladd = 0; | |
1749 #endif | |
1750 curwin->w_set_curswant = TRUE; | |
1744 | 1751 #ifdef FEAT_AUTOCMD |
1752 curwin->w_topline_was_set = FALSE; | |
1753 #endif | |
7 | 1754 |
2091
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1755 /* mark cursor position as being invalid */ |
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1756 curwin->w_valid = 0; |
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1757 |
7 | 1758 /* Make sure the buffer is loaded. */ |
1759 if (curbuf->b_ml.ml_mfp == NULL) /* need to load the file */ | |
22 | 1760 { |
24 | 1761 #ifdef FEAT_AUTOCMD |
22 | 1762 /* If there is no filetype, allow for detecting one. Esp. useful for |
1763 * ":ball" used in a autocommand. If there already is a filetype we | |
1764 * might prefer to keep it. */ | |
1765 if (*curbuf->b_p_ft == NUL) | |
1766 did_filetype = FALSE; | |
24 | 1767 #endif |
22 | 1768 |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
1769 open_buffer(FALSE, NULL, 0); |
22 | 1770 } |
7 | 1771 else |
1772 { | |
968 | 1773 if (!msg_silent) |
1774 need_fileinfo = TRUE; /* display file info after redraw */ | |
7 | 1775 (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */ |
1776 #ifdef FEAT_AUTOCMD | |
1777 curwin->w_topline = 1; | |
1778 # ifdef FEAT_DIFF | |
1779 curwin->w_topfill = 0; | |
1780 # endif | |
1781 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
1782 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); | |
1783 #endif | |
1784 } | |
1785 | |
1786 /* If autocommands did not change the cursor position, restore cursor lnum | |
1787 * and possibly cursor col. */ | |
1788 if (curwin->w_cursor.lnum == 1 && inindent(0)) | |
1789 buflist_getfpos(); | |
1790 | |
1791 check_arg_idx(curwin); /* check for valid arg_idx */ | |
1792 #ifdef FEAT_TITLE | |
1793 maketitle(); | |
1794 #endif | |
1795 #ifdef FEAT_AUTOCMD | |
1744 | 1796 /* when autocmds didn't change it */ |
1797 if (curwin->w_topline == 1 && !curwin->w_topline_was_set) | |
7 | 1798 #endif |
1799 scroll_cursor_halfway(FALSE); /* redisplay at correct position */ | |
1800 | |
33 | 1801 #ifdef FEAT_NETBEANS_INTG |
1802 /* Send fileOpened event because we've changed buffers. */ | |
2210 | 1803 netbeans_file_activated(curbuf); |
33 | 1804 #endif |
1805 | |
961 | 1806 /* Change directories when the 'acd' option is set. */ |
1807 DO_AUTOCHDIR | |
7 | 1808 |
1809 #ifdef FEAT_KEYMAP | |
1810 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 1811 (void)keymap_init(); |
7 | 1812 #endif |
1185 | 1813 #ifdef FEAT_SPELL |
1814 /* May need to set the spell language. Can only do this after the buffer | |
1815 * has been properly setup. */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
1816 if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
1817 (void)did_set_spelllang(curwin); |
1185 | 1818 #endif |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1819 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1820 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1821 #endif |
1185 | 1822 |
7 | 1823 redraw_later(NOT_VALID); |
1824 } | |
1825 | |
961 | 1826 #if defined(FEAT_AUTOCHDIR) || defined(PROTO) |
1827 /* | |
1828 * Change to the directory of the current buffer. | |
8216
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1829 * Don't do this while still starting up. |
961 | 1830 */ |
1831 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1832 do_autochdir(void) |
961 | 1833 { |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9450
diff
changeset
|
1834 if ((starting == 0 || test_autochdir) |
8216
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1835 && curbuf->b_ffname != NULL |
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1836 && vim_chdirfile(curbuf->b_ffname) == OK) |
961 | 1837 shorten_fnames(TRUE); |
1838 } | |
1839 #endif | |
1840 | |
7 | 1841 /* |
1842 * functions for dealing with the buffer list | |
1843 */ | |
1844 | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1845 static int top_file_num = 1; /* highest file number */ |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1846 |
7 | 1847 /* |
1848 * Add a file name to the buffer list. Return a pointer to the buffer. | |
1849 * If the same file name already exists return a pointer to that buffer. | |
1850 * If it does not exist, or if fname == NULL, a new entry is created. | |
1851 * If (flags & BLN_CURBUF) is TRUE, may use current buffer. | |
1852 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list. | |
1853 * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer. | |
9149
18bbf31015c2
commit https://github.com/vim/vim/commit/b127cfd75f59e82580df395b6e2c009774644b16
Christian Brabandt <cb@256bit.org>
parents:
9106
diff
changeset
|
1854 * If (flags & BLN_NEW) is TRUE, don't use an existing buffer. |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1855 * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1856 * if the buffer already exists. |
7 | 1857 * This is the ONLY way to create a new buffer. |
1858 */ | |
1859 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1860 buflist_new( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1861 char_u *ffname, /* full path of fname or relative */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1862 char_u *sfname, /* short fname or NULL */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1863 linenr_T lnum, /* preferred cursor line */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1864 int flags) /* BLN_ defines */ |
7 | 1865 { |
1866 buf_T *buf; | |
1867 #ifdef UNIX | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
1868 stat_T st; |
7 | 1869 #endif |
1870 | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1871 if (top_file_num == 1) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1872 hash_init(&buf_hashtab); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1873 |
7 | 1874 fname_expand(curbuf, &ffname, &sfname); /* will allocate ffname */ |
1875 | |
1876 /* | |
1877 * If file name already exists in the list, update the entry. | |
1878 */ | |
1879 #ifdef UNIX | |
1880 /* On Unix we can use inode numbers when the file exists. Works better | |
1881 * for hard links. */ | |
1882 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0) | |
1883 st.st_dev = (dev_T)-1; | |
1884 #endif | |
9149
18bbf31015c2
commit https://github.com/vim/vim/commit/b127cfd75f59e82580df395b6e2c009774644b16
Christian Brabandt <cb@256bit.org>
parents:
9106
diff
changeset
|
1885 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf = |
7 | 1886 #ifdef UNIX |
1887 buflist_findname_stat(ffname, &st) | |
1888 #else | |
1889 buflist_findname(ffname) | |
1890 #endif | |
1891 ) != NULL) | |
1892 { | |
1893 vim_free(ffname); | |
1894 if (lnum != 0) | |
1895 buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE); | |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1896 |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1897 if ((flags & BLN_NOOPT) == 0) |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1898 /* copy the options now, if 'cpo' doesn't have 's' and not done |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1899 * already */ |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1900 buf_copy_options(buf, 0); |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1901 |
7 | 1902 if ((flags & BLN_LISTED) && !buf->b_p_bl) |
1903 { | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1904 #ifdef FEAT_AUTOCMD |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1905 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1906 #endif |
7 | 1907 buf->b_p_bl = TRUE; |
1908 #ifdef FEAT_AUTOCMD | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1909 set_bufref(&bufref, buf); |
7 | 1910 if (!(flags & BLN_DUMMY)) |
5816 | 1911 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1912 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1913 && !bufref_valid(&bufref)) |
5816 | 1914 return NULL; |
1915 } | |
7 | 1916 #endif |
1917 } | |
1918 return buf; | |
1919 } | |
1920 | |
1921 /* | |
1922 * If the current buffer has no name and no contents, use the current | |
1923 * buffer. Otherwise: Need to allocate a new buffer structure. | |
1924 * | |
1925 * This is the ONLY place where a new buffer structure is allocated! | |
625 | 1926 * (A spell file buffer is allocated in spell.c, but that's not a normal |
1927 * buffer.) | |
7 | 1928 */ |
1929 buf = NULL; | |
1930 if ((flags & BLN_CURBUF) | |
1931 && curbuf != NULL | |
1932 && curbuf->b_ffname == NULL | |
1933 && curbuf->b_nwindows <= 1 | |
1934 && (curbuf->b_ml.ml_mfp == NULL || bufempty())) | |
1935 { | |
1936 buf = curbuf; | |
1937 #ifdef FEAT_AUTOCMD | |
1938 /* It's like this buffer is deleted. Watch out for autocommands that | |
1939 * change curbuf! If that happens, allocate a new buffer anyway. */ | |
1940 if (curbuf->b_p_bl) | |
1941 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); | |
1942 if (buf == curbuf) | |
1943 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf); | |
1944 # ifdef FEAT_EVAL | |
36 | 1945 if (aborting()) /* autocmds may abort script processing */ |
7 | 1946 return NULL; |
1947 # endif | |
1948 #endif | |
1949 #ifdef FEAT_QUICKFIX | |
1950 # ifdef FEAT_AUTOCMD | |
1951 if (buf == curbuf) | |
1952 # endif | |
1953 { | |
1954 /* Make sure 'bufhidden' and 'buftype' are empty */ | |
1955 clear_string_option(&buf->b_p_bh); | |
1956 clear_string_option(&buf->b_p_bt); | |
1957 } | |
1958 #endif | |
1959 } | |
1960 if (buf != curbuf || curbuf == NULL) | |
1961 { | |
1962 buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T)); | |
1963 if (buf == NULL) | |
1964 { | |
1965 vim_free(ffname); | |
1966 return NULL; | |
1967 } | |
4287 | 1968 #ifdef FEAT_EVAL |
1969 /* init b: variables */ | |
1970 buf->b_vars = dict_alloc(); | |
1971 if (buf->b_vars == NULL) | |
1972 { | |
1973 vim_free(ffname); | |
1974 vim_free(buf); | |
1975 return NULL; | |
1976 } | |
1977 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE); | |
1978 #endif | |
7 | 1979 } |
1980 | |
1981 if (ffname != NULL) | |
1982 { | |
1983 buf->b_ffname = ffname; | |
1984 buf->b_sfname = vim_strsave(sfname); | |
1985 } | |
1986 | |
1987 clear_wininfo(buf); | |
1988 buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T)); | |
1989 | |
1990 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL)) | |
1991 || buf->b_wininfo == NULL) | |
1992 { | |
1993 vim_free(buf->b_ffname); | |
1994 buf->b_ffname = NULL; | |
1995 vim_free(buf->b_sfname); | |
1996 buf->b_sfname = NULL; | |
1997 if (buf != curbuf) | |
1998 free_buffer(buf); | |
1999 return NULL; | |
2000 } | |
2001 | |
2002 if (buf == curbuf) | |
2003 { | |
2004 /* free all things allocated for this buffer */ | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
2005 buf_freeall(buf, 0); |
7 | 2006 if (buf != curbuf) /* autocommands deleted the buffer! */ |
2007 return NULL; | |
2008 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
36 | 2009 if (aborting()) /* autocmds may abort script processing */ |
7 | 2010 return NULL; |
2011 #endif | |
2012 free_buffer_stuff(buf, FALSE); /* delete local variables et al. */ | |
3925 | 2013 |
2014 /* Init the options. */ | |
2015 buf->b_p_initialized = FALSE; | |
2016 buf_copy_options(buf, BCO_ENTER); | |
2017 | |
7 | 2018 #ifdef FEAT_KEYMAP |
2019 /* need to reload lmaps and set b:keymap_name */ | |
2020 curbuf->b_kmap_state |= KEYMAP_INIT; | |
2021 #endif | |
2022 } | |
2023 else | |
2024 { | |
2025 /* | |
2026 * put new buffer at the end of the buffer list | |
2027 */ | |
2028 buf->b_next = NULL; | |
2029 if (firstbuf == NULL) /* buffer list is empty */ | |
2030 { | |
2031 buf->b_prev = NULL; | |
2032 firstbuf = buf; | |
2033 } | |
2034 else /* append new buffer at end of list */ | |
2035 { | |
2036 lastbuf->b_next = buf; | |
2037 buf->b_prev = lastbuf; | |
2038 } | |
2039 lastbuf = buf; | |
2040 | |
2041 buf->b_fnum = top_file_num++; | |
2042 if (top_file_num < 0) /* wrap around (may cause duplicates) */ | |
2043 { | |
2044 EMSG(_("W14: Warning: List of file names overflow")); | |
2045 if (emsg_silent == 0) | |
2046 { | |
2047 out_flush(); | |
2048 ui_delay(3000L, TRUE); /* make sure it is noticed */ | |
2049 } | |
2050 top_file_num = 1; | |
2051 } | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2052 buf_hashtab_add(buf); |
7 | 2053 |
2054 /* | |
2055 * Always copy the options from the current buffer. | |
2056 */ | |
2057 buf_copy_options(buf, BCO_ALWAYS); | |
2058 } | |
2059 | |
2060 buf->b_wininfo->wi_fpos.lnum = lnum; | |
2061 buf->b_wininfo->wi_win = curwin; | |
2062 | |
126 | 2063 #ifdef FEAT_SYN_HL |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2064 hash_init(&buf->b_s.b_keywtab); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2065 hash_init(&buf->b_s.b_keywtab_ic); |
7 | 2066 #endif |
2067 | |
2068 buf->b_fname = buf->b_sfname; | |
2069 #ifdef UNIX | |
2070 if (st.st_dev == (dev_T)-1) | |
1873 | 2071 buf->b_dev_valid = FALSE; |
7 | 2072 else |
2073 { | |
1873 | 2074 buf->b_dev_valid = TRUE; |
7 | 2075 buf->b_dev = st.st_dev; |
2076 buf->b_ino = st.st_ino; | |
2077 } | |
2078 #endif | |
2079 buf->b_u_synced = TRUE; | |
2080 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; | |
42 | 2081 if (flags & BLN_DUMMY) |
2082 buf->b_flags |= BF_DUMMY; | |
7 | 2083 buf_clear_file(buf); |
2084 clrallmarks(buf); /* clear marks */ | |
2085 fmarks_check_names(buf); /* check file marks for this file */ | |
2086 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */ | |
2087 #ifdef FEAT_AUTOCMD | |
2088 if (!(flags & BLN_DUMMY)) | |
2089 { | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2090 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2091 |
6639 | 2092 /* Tricky: these autocommands may change the buffer list. They could |
2093 * also split the window with re-using the one empty buffer. This may | |
2094 * result in unexpectedly losing the empty buffer. */ | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2095 set_bufref(&bufref, buf); |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2096 if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2097 && !bufref_valid(&bufref)) |
5816 | 2098 return NULL; |
7 | 2099 if (flags & BLN_LISTED) |
5816 | 2100 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2101 if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2102 && !bufref_valid(&bufref)) |
5816 | 2103 return NULL; |
2104 } | |
7 | 2105 # ifdef FEAT_EVAL |
36 | 2106 if (aborting()) /* autocmds may abort script processing */ |
7 | 2107 return NULL; |
2108 # endif | |
2109 } | |
2110 #endif | |
2111 | |
2112 return buf; | |
2113 } | |
2114 | |
2115 /* | |
2116 * Free the memory for the options of a buffer. | |
2117 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and | |
2118 * 'fileencoding'. | |
2119 */ | |
2120 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2121 free_buf_options( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2122 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2123 int free_p_ff) |
7 | 2124 { |
2125 if (free_p_ff) | |
2126 { | |
2127 #ifdef FEAT_MBYTE | |
2128 clear_string_option(&buf->b_p_fenc); | |
2129 #endif | |
2130 clear_string_option(&buf->b_p_ff); | |
2131 #ifdef FEAT_QUICKFIX | |
2132 clear_string_option(&buf->b_p_bh); | |
2133 clear_string_option(&buf->b_p_bt); | |
2134 #endif | |
2135 } | |
2136 #ifdef FEAT_FIND_ID | |
2137 clear_string_option(&buf->b_p_def); | |
2138 clear_string_option(&buf->b_p_inc); | |
2139 # ifdef FEAT_EVAL | |
2140 clear_string_option(&buf->b_p_inex); | |
2141 # endif | |
2142 #endif | |
2143 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL) | |
2144 clear_string_option(&buf->b_p_inde); | |
2145 clear_string_option(&buf->b_p_indk); | |
2146 #endif | |
788 | 2147 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
2148 clear_string_option(&buf->b_p_bexpr); | |
2149 #endif | |
2360
d8e4b27cef80
Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
2150 #if defined(FEAT_CRYPT) |
d8e4b27cef80
Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
2151 clear_string_option(&buf->b_p_cm); |
d8e4b27cef80
Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
2152 #endif |
667 | 2153 #if defined(FEAT_EVAL) |
2154 clear_string_option(&buf->b_p_fex); | |
2155 #endif | |
7 | 2156 #ifdef FEAT_CRYPT |
2157 clear_string_option(&buf->b_p_key); | |
2158 #endif | |
2159 clear_string_option(&buf->b_p_kp); | |
2160 clear_string_option(&buf->b_p_mps); | |
2161 clear_string_option(&buf->b_p_fo); | |
41 | 2162 clear_string_option(&buf->b_p_flp); |
7 | 2163 clear_string_option(&buf->b_p_isk); |
2164 #ifdef FEAT_KEYMAP | |
2165 clear_string_option(&buf->b_p_keymap); | |
2166 ga_clear(&buf->b_kmap_ga); | |
2167 #endif | |
2168 #ifdef FEAT_COMMENTS | |
2169 clear_string_option(&buf->b_p_com); | |
2170 #endif | |
2171 #ifdef FEAT_FOLDING | |
2172 clear_string_option(&buf->b_p_cms); | |
2173 #endif | |
2174 clear_string_option(&buf->b_p_nf); | |
2175 #ifdef FEAT_SYN_HL | |
2176 clear_string_option(&buf->b_p_syn); | |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
2177 clear_string_option(&buf->b_s.b_syn_isk); |
737 | 2178 #endif |
2179 #ifdef FEAT_SPELL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2180 clear_string_option(&buf->b_s.b_p_spc); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2181 clear_string_option(&buf->b_s.b_p_spf); |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4795
diff
changeset
|
2182 vim_regfree(buf->b_s.b_cap_prog); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2183 buf->b_s.b_cap_prog = NULL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2184 clear_string_option(&buf->b_s.b_p_spl); |
7 | 2185 #endif |
2186 #ifdef FEAT_SEARCHPATH | |
2187 clear_string_option(&buf->b_p_sua); | |
2188 #endif | |
2189 #ifdef FEAT_AUTOCMD | |
2190 clear_string_option(&buf->b_p_ft); | |
2191 #endif | |
2192 #ifdef FEAT_CINDENT | |
2193 clear_string_option(&buf->b_p_cink); | |
2194 clear_string_option(&buf->b_p_cino); | |
2195 #endif | |
2196 #if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT) | |
2197 clear_string_option(&buf->b_p_cinw); | |
2198 #endif | |
2199 #ifdef FEAT_INS_EXPAND | |
2200 clear_string_option(&buf->b_p_cpt); | |
2201 #endif | |
12 | 2202 #ifdef FEAT_COMPL_FUNC |
2203 clear_string_option(&buf->b_p_cfu); | |
502 | 2204 clear_string_option(&buf->b_p_ofu); |
12 | 2205 #endif |
7 | 2206 #ifdef FEAT_QUICKFIX |
2207 clear_string_option(&buf->b_p_gp); | |
2208 clear_string_option(&buf->b_p_mp); | |
2209 clear_string_option(&buf->b_p_efm); | |
2210 #endif | |
2211 clear_string_option(&buf->b_p_ep); | |
2212 clear_string_option(&buf->b_p_path); | |
2213 clear_string_option(&buf->b_p_tags); | |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
2214 clear_string_option(&buf->b_p_tc); |
7 | 2215 #ifdef FEAT_INS_EXPAND |
2216 clear_string_option(&buf->b_p_dict); | |
2217 clear_string_option(&buf->b_p_tsr); | |
2218 #endif | |
12 | 2219 #ifdef FEAT_TEXTOBJ |
2220 clear_string_option(&buf->b_p_qe); | |
2221 #endif | |
7 | 2222 buf->b_p_ar = -1; |
5446 | 2223 buf->b_p_ul = NO_LOCAL_UNDOLEVEL; |
5712 | 2224 #ifdef FEAT_LISP |
2225 clear_string_option(&buf->b_p_lw); | |
2226 #endif | |
6243 | 2227 clear_string_option(&buf->b_p_bkc); |
7 | 2228 } |
2229 | |
2230 /* | |
2231 * get alternate file n | |
2232 * set linenr to lnum or altfpos.lnum if lnum == 0 | |
2233 * also set cursor column to altfpos.col if 'startofline' is not set. | |
2234 * if (options & GETF_SETMARK) call setpcmark() | |
2235 * if (options & GETF_ALT) we are jumping to an alternate file. | |
2236 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping | |
2237 * | |
2238 * return FAIL for failure, OK for success | |
2239 */ | |
2240 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2241 buflist_getfile( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2242 int n, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2243 linenr_T lnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2244 int options, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2245 int forceit) |
7 | 2246 { |
2247 buf_T *buf; | |
2248 #ifdef FEAT_WINDOWS | |
2249 win_T *wp = NULL; | |
2250 #endif | |
2251 pos_T *fpos; | |
2252 colnr_T col; | |
2253 | |
2254 buf = buflist_findnr(n); | |
2255 if (buf == NULL) | |
2256 { | |
2257 if ((options & GETF_ALT) && n == 0) | |
2258 EMSG(_(e_noalt)); | |
2259 else | |
2260 EMSGN(_("E92: Buffer %ld not found"), n); | |
2261 return FAIL; | |
2262 } | |
2263 | |
2264 /* if alternate file is the current buffer, nothing to do */ | |
2265 if (buf == curbuf) | |
2266 return OK; | |
2267 | |
633 | 2268 if (text_locked()) |
631 | 2269 { |
633 | 2270 text_locked_msg(); |
7 | 2271 return FAIL; |
631 | 2272 } |
819 | 2273 #ifdef FEAT_AUTOCMD |
2274 if (curbuf_locked()) | |
2275 return FAIL; | |
2276 #endif | |
7 | 2277 |
2278 /* altfpos may be changed by getfile(), get it now */ | |
2279 if (lnum == 0) | |
2280 { | |
2281 fpos = buflist_findfpos(buf); | |
2282 lnum = fpos->lnum; | |
2283 col = fpos->col; | |
2284 } | |
2285 else | |
2286 col = 0; | |
2287 | |
2288 #ifdef FEAT_WINDOWS | |
2289 if (options & GETF_SWITCH) | |
2290 { | |
1618 | 2291 /* If 'switchbuf' contains "useopen": jump to first window containing |
2292 * "buf" if one exists */ | |
2293 if (swb_flags & SWB_USEOPEN) | |
7 | 2294 wp = buf_jump_open_win(buf); |
6843 | 2295 |
4352 | 2296 /* If 'switchbuf' contains "usetab": jump to first window in any tab |
1618 | 2297 * page containing "buf" if one exists */ |
2298 if (wp == NULL && (swb_flags & SWB_USETAB)) | |
825 | 2299 wp = buf_jump_open_tab(buf); |
6843 | 2300 |
2301 /* If 'switchbuf' contains "split", "vsplit" or "newtab" and the | |
2302 * current buffer isn't empty: open new tab or window */ | |
2303 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB)) | |
2304 && !bufempty()) | |
7 | 2305 { |
6843 | 2306 if (swb_flags & SWB_NEWTAB) |
1618 | 2307 tabpage_new(); |
6843 | 2308 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0) |
2309 == FAIL) | |
7 | 2310 return FAIL; |
2583 | 2311 RESET_BINDING(curwin); |
7 | 2312 } |
2313 } | |
2314 #endif | |
2315 | |
2316 ++RedrawingDisabled; | |
2317 if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK), | |
2318 lnum, forceit) <= 0) | |
2319 { | |
2320 --RedrawingDisabled; | |
2321 | |
2322 /* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */ | |
2323 if (!p_sol && col != 0) | |
2324 { | |
2325 curwin->w_cursor.col = col; | |
2326 check_cursor_col(); | |
2327 #ifdef FEAT_VIRTUALEDIT | |
2328 curwin->w_cursor.coladd = 0; | |
2329 #endif | |
2330 curwin->w_set_curswant = TRUE; | |
2331 } | |
2332 return OK; | |
2333 } | |
2334 --RedrawingDisabled; | |
2335 return FAIL; | |
2336 } | |
2337 | |
2338 /* | |
2339 * go to the last know line number for the current buffer | |
2340 */ | |
2341 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2342 buflist_getfpos(void) |
7 | 2343 { |
2344 pos_T *fpos; | |
2345 | |
2346 fpos = buflist_findfpos(curbuf); | |
2347 | |
2348 curwin->w_cursor.lnum = fpos->lnum; | |
2349 check_cursor_lnum(); | |
2350 | |
2351 if (p_sol) | |
2352 curwin->w_cursor.col = 0; | |
2353 else | |
2354 { | |
2355 curwin->w_cursor.col = fpos->col; | |
2356 check_cursor_col(); | |
2357 #ifdef FEAT_VIRTUALEDIT | |
2358 curwin->w_cursor.coladd = 0; | |
2359 #endif | |
2360 curwin->w_set_curswant = TRUE; | |
2361 } | |
2362 } | |
2363 | |
42 | 2364 #if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO) |
2365 /* | |
2366 * Find file in buffer list by name (it has to be for the current window). | |
2367 * Returns NULL if not found. | |
2368 */ | |
2369 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2370 buflist_findname_exp(char_u *fname) |
42 | 2371 { |
2372 char_u *ffname; | |
2373 buf_T *buf = NULL; | |
2374 | |
2375 /* First make the name into a full path name */ | |
2376 ffname = FullName_save(fname, | |
2377 #ifdef UNIX | |
2378 TRUE /* force expansion, get rid of symbolic links */ | |
2379 #else | |
2380 FALSE | |
2381 #endif | |
2382 ); | |
2383 if (ffname != NULL) | |
2384 { | |
2385 buf = buflist_findname(ffname); | |
2386 vim_free(ffname); | |
2387 } | |
2388 return buf; | |
2389 } | |
2390 #endif | |
2391 | |
7 | 2392 /* |
2393 * Find file in buffer list by name (it has to be for the current window). | |
2394 * "ffname" must have a full path. | |
42 | 2395 * Skips dummy buffers. |
2396 * Returns NULL if not found. | |
7 | 2397 */ |
2398 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2399 buflist_findname(char_u *ffname) |
7 | 2400 { |
2401 #ifdef UNIX | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
2402 stat_T st; |
7 | 2403 |
2404 if (mch_stat((char *)ffname, &st) < 0) | |
2405 st.st_dev = (dev_T)-1; | |
2406 return buflist_findname_stat(ffname, &st); | |
2407 } | |
2408 | |
2409 /* | |
2410 * Same as buflist_findname(), but pass the stat structure to avoid getting it | |
2411 * twice for the same file. | |
42 | 2412 * Returns NULL if not found. |
7 | 2413 */ |
2414 static buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2415 buflist_findname_stat( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2416 char_u *ffname, |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
2417 stat_T *stp) |
7 | 2418 { |
2419 #endif | |
2420 buf_T *buf; | |
2421 | |
9485
c16e207dc465
commit https://github.com/vim/vim/commit/ea3f2e7be447a8f0c4436869620f908de5e8ef1e
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2422 /* Start at the last buffer, expect to find a match sooner. */ |
c16e207dc465
commit https://github.com/vim/vim/commit/ea3f2e7be447a8f0c4436869620f908de5e8ef1e
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2423 for (buf = lastbuf; buf != NULL; buf = buf->b_prev) |
42 | 2424 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname |
7 | 2425 #ifdef UNIX |
2426 , stp | |
2427 #endif | |
2428 )) | |
2429 return buf; | |
2430 return NULL; | |
2431 } | |
2432 | |
4236 | 2433 #if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \ |
2434 || defined(PROTO) | |
7 | 2435 /* |
2436 * Find file in buffer list by a regexp pattern. | |
2437 * Return fnum of the found buffer. | |
2438 * Return < 0 for error. | |
2439 */ | |
2440 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2441 buflist_findpat( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2442 char_u *pattern, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2443 char_u *pattern_end, /* pointer to first char after pattern */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2444 int unlisted, /* find unlisted buffers */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2445 int diffmode UNUSED, /* find diff-mode buffers only */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2446 int curtab_only) /* find buffers in current tab only */ |
7 | 2447 { |
2448 buf_T *buf; | |
2449 int match = -1; | |
2450 int find_listed; | |
2451 char_u *pat; | |
2452 char_u *patend; | |
2453 int attempt; | |
2454 char_u *p; | |
2455 int toggledollar; | |
2456 | |
2457 if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#')) | |
2458 { | |
2459 if (*pattern == '%') | |
2460 match = curbuf->b_fnum; | |
2461 else | |
2462 match = curwin->w_alt_fnum; | |
2463 #ifdef FEAT_DIFF | |
2464 if (diffmode && !diff_mode_buf(buflist_findnr(match))) | |
2465 match = -1; | |
2466 #endif | |
2467 } | |
2468 | |
2469 /* | |
2470 * Try four ways of matching a listed buffer: | |
2471 * attempt == 0: without '^' or '$' (at any position) | |
1187 | 2472 * attempt == 1: with '^' at start (only at position 0) |
7 | 2473 * attempt == 2: with '$' at end (only match at end) |
2474 * attempt == 3: with '^' at start and '$' at end (only full match) | |
2475 * Repeat this for finding an unlisted buffer if there was no matching | |
2476 * listed buffer. | |
2477 */ | |
2478 else | |
2479 { | |
2480 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE); | |
2481 if (pat == NULL) | |
2482 return -1; | |
2483 patend = pat + STRLEN(pat) - 1; | |
2484 toggledollar = (patend > pat && *patend == '$'); | |
2485 | |
2486 /* First try finding a listed buffer. If not found and "unlisted" | |
2487 * is TRUE, try finding an unlisted buffer. */ | |
2488 find_listed = TRUE; | |
2489 for (;;) | |
2490 { | |
2491 for (attempt = 0; attempt <= 3; ++attempt) | |
2492 { | |
6375 | 2493 regmatch_T regmatch; |
2494 | |
7 | 2495 /* may add '^' and '$' */ |
2496 if (toggledollar) | |
2497 *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */ | |
2498 p = pat; | |
2499 if (*p == '^' && !(attempt & 1)) /* add/remove '^' */ | |
2500 ++p; | |
6375 | 2501 regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0); |
2502 if (regmatch.regprog == NULL) | |
7 | 2503 { |
2504 vim_free(pat); | |
2505 return -1; | |
2506 } | |
2507 | |
9485
c16e207dc465
commit https://github.com/vim/vim/commit/ea3f2e7be447a8f0c4436869620f908de5e8ef1e
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2508 for (buf = lastbuf; buf != NULL; buf = buf->b_prev) |
7 | 2509 if (buf->b_p_bl == find_listed |
2510 #ifdef FEAT_DIFF | |
2511 && (!diffmode || diff_mode_buf(buf)) | |
2512 #endif | |
6375 | 2513 && buflist_match(®match, buf, FALSE) != NULL) |
7 | 2514 { |
4236 | 2515 if (curtab_only) |
2516 { | |
2517 /* Ignore the match if the buffer is not open in | |
2518 * the current tab. */ | |
2519 #ifdef FEAT_WINDOWS | |
2520 win_T *wp; | |
2521 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
2522 FOR_ALL_WINDOWS(wp) |
4236 | 2523 if (wp->w_buffer == buf) |
2524 break; | |
2525 if (wp == NULL) | |
2526 continue; | |
2527 #else | |
2528 if (curwin->w_buffer != buf) | |
2529 continue; | |
2530 #endif | |
2531 } | |
7 | 2532 if (match >= 0) /* already found a match */ |
2533 { | |
2534 match = -2; | |
2535 break; | |
2536 } | |
2537 match = buf->b_fnum; /* remember first match */ | |
2538 } | |
2539 | |
6375 | 2540 vim_regfree(regmatch.regprog); |
7 | 2541 if (match >= 0) /* found one match */ |
2542 break; | |
2543 } | |
2544 | |
2545 /* Only search for unlisted buffers if there was no match with | |
2546 * a listed buffer. */ | |
2547 if (!unlisted || !find_listed || match != -1) | |
2548 break; | |
2549 find_listed = FALSE; | |
2550 } | |
2551 | |
2552 vim_free(pat); | |
2553 } | |
2554 | |
2555 if (match == -2) | |
2556 EMSG2(_("E93: More than one match for %s"), pattern); | |
2557 else if (match < 0) | |
2558 EMSG2(_("E94: No matching buffer for %s"), pattern); | |
2559 return match; | |
2560 } | |
2561 #endif | |
2562 | |
2563 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) | |
2564 | |
2565 /* | |
2566 * Find all buffer names that match. | |
2567 * For command line expansion of ":buf" and ":sbuf". | |
2568 * Return OK if matches found, FAIL otherwise. | |
2569 */ | |
2570 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2571 ExpandBufnames( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2572 char_u *pat, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2573 int *num_file, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2574 char_u ***file, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2575 int options) |
7 | 2576 { |
2577 int count = 0; | |
2578 buf_T *buf; | |
2579 int round; | |
2580 char_u *p; | |
2581 int attempt; | |
170 | 2582 char_u *patc; |
7 | 2583 |
2584 *num_file = 0; /* return values in case of FAIL */ | |
2585 *file = NULL; | |
2586 | |
170 | 2587 /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */ |
2588 if (*pat == '^') | |
2589 { | |
2590 patc = alloc((unsigned)STRLEN(pat) + 11); | |
2591 if (patc == NULL) | |
2592 return FAIL; | |
2593 STRCPY(patc, "\\(^\\|[\\/]\\)"); | |
2594 STRCPY(patc + 11, pat + 1); | |
2595 } | |
2596 else | |
2597 patc = pat; | |
2598 | |
7 | 2599 /* |
170 | 2600 * attempt == 0: try match with '\<', match at start of word |
267 | 2601 * attempt == 1: try match without '\<', match anywhere |
7 | 2602 */ |
267 | 2603 for (attempt = 0; attempt <= 1; ++attempt) |
7 | 2604 { |
6375 | 2605 regmatch_T regmatch; |
2606 | |
267 | 2607 if (attempt > 0 && patc == pat) |
170 | 2608 break; /* there was no anchor, no need to try again */ |
6375 | 2609 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC); |
2610 if (regmatch.regprog == NULL) | |
7 | 2611 { |
170 | 2612 if (patc != pat) |
2613 vim_free(patc); | |
2614 return FAIL; | |
7 | 2615 } |
2616 | |
2617 /* | |
2618 * round == 1: Count the matches. | |
2619 * round == 2: Build the array to keep the matches. | |
2620 */ | |
2621 for (round = 1; round <= 2; ++round) | |
2622 { | |
2623 count = 0; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
2624 FOR_ALL_BUFFERS(buf) |
7 | 2625 { |
2626 if (!buf->b_p_bl) /* skip unlisted buffers */ | |
2627 continue; | |
6375 | 2628 p = buflist_match(®match, buf, p_wic); |
7 | 2629 if (p != NULL) |
2630 { | |
2631 if (round == 1) | |
2632 ++count; | |
2633 else | |
2634 { | |
2635 if (options & WILD_HOME_REPLACE) | |
2636 p = home_replace_save(buf, p); | |
2637 else | |
2638 p = vim_strsave(p); | |
2639 (*file)[count++] = p; | |
2640 } | |
2641 } | |
2642 } | |
2643 if (count == 0) /* no match found, break here */ | |
2644 break; | |
2645 if (round == 1) | |
2646 { | |
2647 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *))); | |
2648 if (*file == NULL) | |
2649 { | |
6375 | 2650 vim_regfree(regmatch.regprog); |
170 | 2651 if (patc != pat) |
2652 vim_free(patc); | |
7 | 2653 return FAIL; |
2654 } | |
2655 } | |
2656 } | |
6375 | 2657 vim_regfree(regmatch.regprog); |
7 | 2658 if (count) /* match(es) found, break here */ |
2659 break; | |
2660 } | |
2661 | |
170 | 2662 if (patc != pat) |
2663 vim_free(patc); | |
2664 | |
7 | 2665 *num_file = count; |
2666 return (count == 0 ? FAIL : OK); | |
2667 } | |
2668 | |
2669 #endif /* FEAT_CMDL_COMPL */ | |
2670 | |
2671 #ifdef HAVE_BUFLIST_MATCH | |
2672 /* | |
2673 * Check for a match on the file name for buffer "buf" with regprog "prog". | |
2674 */ | |
2675 static char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2676 buflist_match( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2677 regmatch_T *rmp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2678 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2679 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */ |
7 | 2680 { |
2681 char_u *match; | |
2682 | |
2683 /* First try the short file name, then the long file name. */ | |
6375 | 2684 match = fname_match(rmp, buf->b_sfname, ignore_case); |
7 | 2685 if (match == NULL) |
6375 | 2686 match = fname_match(rmp, buf->b_ffname, ignore_case); |
7 | 2687 |
2688 return match; | |
2689 } | |
2690 | |
2691 /* | |
2692 * Try matching the regexp in "prog" with file name "name". | |
2693 * Return "name" when there is a match, NULL when not. | |
2694 */ | |
2695 static char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2696 fname_match( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2697 regmatch_T *rmp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2698 char_u *name, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2699 int ignore_case) /* when TRUE ignore case, when FALSE use 'fic' */ |
7 | 2700 { |
2701 char_u *match = NULL; | |
2702 char_u *p; | |
2703 | |
2704 if (name != NULL) | |
2705 { | |
6241 | 2706 /* Ignore case when 'fileignorecase' or the argument is set. */ |
6375 | 2707 rmp->rm_ic = p_fic || ignore_case; |
2708 if (vim_regexec(rmp, name, (colnr_T)0)) | |
7 | 2709 match = name; |
2710 else | |
2711 { | |
2712 /* Replace $(HOME) with '~' and try matching again. */ | |
2713 p = home_replace_save(NULL, name); | |
6375 | 2714 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0)) |
7 | 2715 match = name; |
2716 vim_free(p); | |
2717 } | |
2718 } | |
2719 | |
2720 return match; | |
2721 } | |
2722 #endif | |
2723 | |
2724 /* | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2725 * Find a file in the buffer list by buffer number. |
7 | 2726 */ |
2727 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2728 buflist_findnr(int nr) |
7 | 2729 { |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2730 char_u key[VIM_SIZEOF_INT * 2 + 1]; |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2731 hashitem_T *hi; |
7 | 2732 |
2733 if (nr == 0) | |
2734 nr = curwin->w_alt_fnum; | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2735 sprintf((char *)key, "%x", nr); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2736 hi = hash_find(&buf_hashtab, key); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2737 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2738 if (!HASHITEM_EMPTY(hi)) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2739 return (buf_T *)(hi->hi_key |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2740 - ((unsigned)(curbuf->b_key - (char_u *)curbuf))); |
7 | 2741 return NULL; |
2742 } | |
2743 | |
2744 /* | |
2745 * Get name of file 'n' in the buffer list. | |
2746 * When the file has no name an empty string is returned. | |
2747 * home_replace() is used to shorten the file name (used for marks). | |
2748 * Returns a pointer to allocated memory, of NULL when failed. | |
2749 */ | |
2750 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2751 buflist_nr2name( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2752 int n, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2753 int fullname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2754 int helptail) /* for help buffers return tail only */ |
7 | 2755 { |
2756 buf_T *buf; | |
2757 | |
2758 buf = buflist_findnr(n); | |
2759 if (buf == NULL) | |
2760 return NULL; | |
2761 return home_replace_save(helptail ? buf : NULL, | |
2762 fullname ? buf->b_ffname : buf->b_fname); | |
2763 } | |
2764 | |
2765 /* | |
2766 * Set the "lnum" and "col" for the buffer "buf" and the current window. | |
2767 * When "copy_options" is TRUE save the local window option values. | |
2768 * When "lnum" is 0 only do the options. | |
2769 */ | |
2770 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2771 buflist_setfpos( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2772 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2773 win_T *win, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2774 linenr_T lnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2775 colnr_T col, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2776 int copy_options) |
7 | 2777 { |
2778 wininfo_T *wip; | |
2779 | |
2780 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next) | |
2781 if (wip->wi_win == win) | |
2782 break; | |
2783 if (wip == NULL) | |
2784 { | |
2785 /* allocate a new entry */ | |
2786 wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T)); | |
2787 if (wip == NULL) | |
2788 return; | |
2789 wip->wi_win = win; | |
2790 if (lnum == 0) /* set lnum even when it's 0 */ | |
2791 lnum = 1; | |
2792 } | |
2793 else | |
2794 { | |
2795 /* remove the entry from the list */ | |
2796 if (wip->wi_prev) | |
2797 wip->wi_prev->wi_next = wip->wi_next; | |
2798 else | |
2799 buf->b_wininfo = wip->wi_next; | |
2800 if (wip->wi_next) | |
2801 wip->wi_next->wi_prev = wip->wi_prev; | |
2802 if (copy_options && wip->wi_optset) | |
2803 { | |
2804 clear_winopt(&wip->wi_opt); | |
2805 #ifdef FEAT_FOLDING | |
2806 deleteFoldRecurse(&wip->wi_folds); | |
2807 #endif | |
2808 } | |
2809 } | |
2810 if (lnum != 0) | |
2811 { | |
2812 wip->wi_fpos.lnum = lnum; | |
2813 wip->wi_fpos.col = col; | |
2814 } | |
2815 if (copy_options) | |
2816 { | |
2817 /* Save the window-specific option values. */ | |
2818 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt); | |
2819 #ifdef FEAT_FOLDING | |
2820 wip->wi_fold_manual = win->w_fold_manual; | |
2821 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds); | |
2822 #endif | |
2823 wip->wi_optset = TRUE; | |
2824 } | |
2825 | |
2826 /* insert the entry in front of the list */ | |
2827 wip->wi_next = buf->b_wininfo; | |
2828 buf->b_wininfo = wip; | |
2829 wip->wi_prev = NULL; | |
2830 if (wip->wi_next) | |
2831 wip->wi_next->wi_prev = wip; | |
2832 | |
2833 return; | |
2834 } | |
2835 | |
1743 | 2836 #ifdef FEAT_DIFF |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
2837 static int wininfo_other_tab_diff(wininfo_T *wip); |
1743 | 2838 |
2839 /* | |
2840 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab | |
2841 * page. That's because a diff is local to a tab page. | |
2842 */ | |
2843 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2844 wininfo_other_tab_diff(wininfo_T *wip) |
1743 | 2845 { |
2846 win_T *wp; | |
2847 | |
2848 if (wip->wi_opt.wo_diff) | |
2849 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
2850 FOR_ALL_WINDOWS(wp) |
1743 | 2851 /* return FALSE when it's a window in the current tab page, thus |
2852 * the buffer was in diff mode here */ | |
2853 if (wip->wi_win == wp) | |
2854 return FALSE; | |
2855 return TRUE; | |
2856 } | |
2857 return FALSE; | |
2858 } | |
2859 #endif | |
2860 | |
7 | 2861 /* |
2862 * Find info for the current window in buffer "buf". | |
2863 * If not found, return the info for the most recently used window. | |
1743 | 2864 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in |
2865 * another tab page. | |
7 | 2866 * Returns NULL when there isn't any info. |
2867 */ | |
2868 static wininfo_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2869 find_wininfo( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2870 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2871 int skip_diff_buffer UNUSED) |
7 | 2872 { |
2873 wininfo_T *wip; | |
2874 | |
2875 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next) | |
1743 | 2876 if (wip->wi_win == curwin |
2877 #ifdef FEAT_DIFF | |
2878 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip)) | |
2879 #endif | |
2880 ) | |
7 | 2881 break; |
1743 | 2882 |
2883 /* If no wininfo for curwin, use the first in the list (that doesn't have | |
2884 * 'diff' set and is in another tab page). */ | |
2885 if (wip == NULL) | |
2886 { | |
2887 #ifdef FEAT_DIFF | |
2888 if (skip_diff_buffer) | |
2889 { | |
2890 for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next) | |
2891 if (!wininfo_other_tab_diff(wip)) | |
2892 break; | |
2893 } | |
2894 else | |
2895 #endif | |
2896 wip = buf->b_wininfo; | |
2897 } | |
7 | 2898 return wip; |
2899 } | |
2900 | |
2901 /* | |
2902 * Reset the local window options to the values last used in this window. | |
2903 * If the buffer wasn't used in this window before, use the values from | |
2904 * the most recently used window. If the values were never set, use the | |
2905 * global values for the window. | |
2906 */ | |
2907 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2908 get_winopts(buf_T *buf) |
7 | 2909 { |
2910 wininfo_T *wip; | |
2911 | |
2912 clear_winopt(&curwin->w_onebuf_opt); | |
2913 #ifdef FEAT_FOLDING | |
2914 clearFolding(curwin); | |
2915 #endif | |
2916 | |
1743 | 2917 wip = find_wininfo(buf, TRUE); |
7 | 2918 if (wip != NULL && wip->wi_optset) |
2919 { | |
2920 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt); | |
2921 #ifdef FEAT_FOLDING | |
2922 curwin->w_fold_manual = wip->wi_fold_manual; | |
2923 curwin->w_foldinvalid = TRUE; | |
2924 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds); | |
2925 #endif | |
2926 } | |
2927 else | |
2928 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt); | |
2929 | |
2930 #ifdef FEAT_FOLDING | |
2931 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */ | |
2932 if (p_fdls >= 0) | |
2933 curwin->w_p_fdl = p_fdls; | |
2934 #endif | |
2799 | 2935 #ifdef FEAT_SYN_HL |
2936 check_colorcolumn(curwin); | |
2937 #endif | |
7 | 2938 } |
2939 | |
2940 /* | |
2941 * Find the position (lnum and col) for the buffer 'buf' for the current | |
2942 * window. | |
2943 * Returns a pointer to no_position if no position is found. | |
2944 */ | |
2945 pos_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2946 buflist_findfpos(buf_T *buf) |
7 | 2947 { |
2948 wininfo_T *wip; | |
1869 | 2949 static pos_T no_position = INIT_POS_T(1, 0, 0); |
7 | 2950 |
1743 | 2951 wip = find_wininfo(buf, FALSE); |
7 | 2952 if (wip != NULL) |
2953 return &(wip->wi_fpos); | |
2954 else | |
2955 return &no_position; | |
2956 } | |
2957 | |
2958 /* | |
2959 * Find the lnum for the buffer 'buf' for the current window. | |
2960 */ | |
2961 linenr_T | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2962 buflist_findlnum(buf_T *buf) |
7 | 2963 { |
2964 return buflist_findfpos(buf)->lnum; | |
2965 } | |
2966 | |
2967 #if defined(FEAT_LISTCMDS) || defined(PROTO) | |
2968 /* | |
2969 * List all know file names (for :files and :buffers command). | |
2970 */ | |
2971 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2972 buflist_list(exarg_T *eap) |
7 | 2973 { |
2974 buf_T *buf; | |
2975 int len; | |
2976 int i; | |
2977 | |
2978 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next) | |
2979 { | |
2980 /* skip unlisted buffers, unless ! was used */ | |
6945 | 2981 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u')) |
2982 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl) | |
2983 || (vim_strchr(eap->arg, '+') | |
2984 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf))) | |
2985 || (vim_strchr(eap->arg, 'a') | |
2986 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0)) | |
2987 || (vim_strchr(eap->arg, 'h') | |
2988 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0)) | |
2989 || (vim_strchr(eap->arg, '-') && buf->b_p_ma) | |
2990 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro) | |
2991 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR)) | |
2992 || (vim_strchr(eap->arg, '%') && buf != curbuf) | |
2993 || (vim_strchr(eap->arg, '#') | |
2994 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum))) | |
7 | 2995 continue; |
2996 if (buf_spname(buf) != NULL) | |
3839 | 2997 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1); |
7 | 2998 else |
2999 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE); | |
9943
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3000 if (message_filtered(NameBuff)) |
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3001 continue; |
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3002 |
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3003 msg_putchar('\n'); |
302 | 3004 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"", |
7 | 3005 buf->b_fnum, |
3006 buf->b_p_bl ? ' ' : 'u', | |
3007 buf == curbuf ? '%' : | |
3008 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '), | |
3009 buf->b_ml.ml_mfp == NULL ? ' ' : | |
3010 (buf->b_nwindows == 0 ? 'h' : 'a'), | |
3011 !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '), | |
3012 (buf->b_flags & BF_READERR) ? 'x' | |
300 | 3013 : (bufIsChanged(buf) ? '+' : ' '), |
3014 NameBuff); | |
7572
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
3015 if (len > IOSIZE - 20) |
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
3016 len = IOSIZE - 20; |
7 | 3017 |
3018 /* put "line 999" in column 40 or after the file name */ | |
3019 i = 40 - vim_strsize(IObuff); | |
3020 do | |
3021 { | |
3022 IObuff[len++] = ' '; | |
3023 } while (--i > 0 && len < IOSIZE - 18); | |
1869 | 3024 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len), |
3025 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum | |
272 | 3026 : (long)buflist_findlnum(buf)); |
7 | 3027 msg_outtrans(IObuff); |
3028 out_flush(); /* output one line at a time */ | |
3029 ui_breakcheck(); | |
3030 } | |
3031 } | |
3032 #endif | |
3033 | |
3034 /* | |
3035 * Get file name and line number for file 'fnum'. | |
3036 * Used by DoOneCmd() for translating '%' and '#'. | |
3037 * Used by insert_reg() and cmdline_paste() for '#' register. | |
3038 * Return FAIL if not found, OK for success. | |
3039 */ | |
3040 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3041 buflist_name_nr( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3042 int fnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3043 char_u **fname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3044 linenr_T *lnum) |
7 | 3045 { |
3046 buf_T *buf; | |
3047 | |
3048 buf = buflist_findnr(fnum); | |
3049 if (buf == NULL || buf->b_fname == NULL) | |
3050 return FAIL; | |
3051 | |
3052 *fname = buf->b_fname; | |
3053 *lnum = buflist_findlnum(buf); | |
3054 | |
3055 return OK; | |
3056 } | |
3057 | |
3058 /* | |
3059 * Set the file name for "buf"' to 'ffname', short file name to 'sfname'. | |
3060 * The file name with the full path is also remembered, for when :cd is used. | |
3061 * Returns FAIL for failure (file name already in use by other buffer) | |
3062 * OK otherwise. | |
3063 */ | |
3064 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3065 setfname( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3066 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3067 char_u *ffname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3068 char_u *sfname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3069 int message) /* give message when buffer already exists */ |
7 | 3070 { |
42 | 3071 buf_T *obuf = NULL; |
7 | 3072 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3073 stat_T st; |
7 | 3074 #endif |
3075 | |
3076 if (ffname == NULL || *ffname == NUL) | |
3077 { | |
3078 /* Removing the name. */ | |
3079 vim_free(buf->b_ffname); | |
3080 vim_free(buf->b_sfname); | |
3081 buf->b_ffname = NULL; | |
3082 buf->b_sfname = NULL; | |
3083 #ifdef UNIX | |
3084 st.st_dev = (dev_T)-1; | |
3085 #endif | |
3086 } | |
3087 else | |
3088 { | |
3089 fname_expand(buf, &ffname, &sfname); /* will allocate ffname */ | |
3090 if (ffname == NULL) /* out of memory */ | |
3091 return FAIL; | |
3092 | |
3093 /* | |
3094 * if the file name is already used in another buffer: | |
3095 * - if the buffer is loaded, fail | |
3096 * - if the buffer is not loaded, delete it from the list | |
3097 */ | |
3098 #ifdef UNIX | |
3099 if (mch_stat((char *)ffname, &st) < 0) | |
3100 st.st_dev = (dev_T)-1; | |
42 | 3101 #endif |
3102 if (!(buf->b_flags & BF_DUMMY)) | |
3103 #ifdef UNIX | |
3104 obuf = buflist_findname_stat(ffname, &st); | |
7 | 3105 #else |
42 | 3106 obuf = buflist_findname(ffname); |
7 | 3107 #endif |
3108 if (obuf != NULL && obuf != buf) | |
3109 { | |
3110 if (obuf->b_ml.ml_mfp != NULL) /* it's loaded, fail */ | |
3111 { | |
3112 if (message) | |
3113 EMSG(_("E95: Buffer with this name already exists")); | |
3114 vim_free(ffname); | |
3115 return FAIL; | |
3116 } | |
3365 | 3117 /* delete from the list */ |
3118 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE); | |
7 | 3119 } |
3120 sfname = vim_strsave(sfname); | |
3121 if (ffname == NULL || sfname == NULL) | |
3122 { | |
3123 vim_free(sfname); | |
3124 vim_free(ffname); | |
3125 return FAIL; | |
3126 } | |
3127 #ifdef USE_FNAME_CASE | |
3128 # ifdef USE_LONG_FNAME | |
3129 if (USE_LONG_FNAME) | |
3130 # endif | |
3131 fname_case(sfname, 0); /* set correct case for short file name */ | |
3132 #endif | |
3133 vim_free(buf->b_ffname); | |
3134 vim_free(buf->b_sfname); | |
3135 buf->b_ffname = ffname; | |
3136 buf->b_sfname = sfname; | |
3137 } | |
3138 buf->b_fname = buf->b_sfname; | |
3139 #ifdef UNIX | |
3140 if (st.st_dev == (dev_T)-1) | |
1873 | 3141 buf->b_dev_valid = FALSE; |
7 | 3142 else |
3143 { | |
1873 | 3144 buf->b_dev_valid = TRUE; |
7 | 3145 buf->b_dev = st.st_dev; |
3146 buf->b_ino = st.st_ino; | |
3147 } | |
3148 #endif | |
3149 | |
3150 buf->b_shortname = FALSE; | |
3151 | |
3152 buf_name_changed(buf); | |
3153 return OK; | |
3154 } | |
3155 | |
3156 /* | |
41 | 3157 * Crude way of changing the name of a buffer. Use with care! |
3158 * The name should be relative to the current directory. | |
3159 */ | |
3160 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3161 buf_set_name(int fnum, char_u *name) |
41 | 3162 { |
3163 buf_T *buf; | |
3164 | |
3165 buf = buflist_findnr(fnum); | |
3166 if (buf != NULL) | |
3167 { | |
3168 vim_free(buf->b_sfname); | |
3169 vim_free(buf->b_ffname); | |
844 | 3170 buf->b_ffname = vim_strsave(name); |
3171 buf->b_sfname = NULL; | |
3172 /* Allocate ffname and expand into full path. Also resolves .lnk | |
3173 * files on Win32. */ | |
3174 fname_expand(buf, &buf->b_ffname, &buf->b_sfname); | |
41 | 3175 buf->b_fname = buf->b_sfname; |
3176 } | |
3177 } | |
3178 | |
3179 /* | |
7 | 3180 * Take care of what needs to be done when the name of buffer "buf" has |
3181 * changed. | |
3182 */ | |
3183 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3184 buf_name_changed(buf_T *buf) |
7 | 3185 { |
3186 /* | |
3187 * If the file name changed, also change the name of the swapfile | |
3188 */ | |
3189 if (buf->b_ml.ml_mfp != NULL) | |
3190 ml_setname(buf); | |
3191 | |
3192 if (curwin->w_buffer == buf) | |
3193 check_arg_idx(curwin); /* check file name for arg list */ | |
3194 #ifdef FEAT_TITLE | |
3195 maketitle(); /* set window title */ | |
3196 #endif | |
3197 #ifdef FEAT_WINDOWS | |
3198 status_redraw_all(); /* status lines need to be redrawn */ | |
3199 #endif | |
3200 fmarks_check_names(buf); /* check named file marks */ | |
3201 ml_timestamp(buf); /* reset timestamp */ | |
3202 } | |
3203 | |
3204 /* | |
3205 * set alternate file name for current window | |
3206 * | |
3207 * Used by do_one_cmd(), do_write() and do_ecmd(). | |
3208 * Return the buffer. | |
3209 */ | |
3210 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3211 setaltfname( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3212 char_u *ffname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3213 char_u *sfname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3214 linenr_T lnum) |
7 | 3215 { |
3216 buf_T *buf; | |
3217 | |
3218 /* Create a buffer. 'buflisted' is not set if it's a new buffer */ | |
3219 buf = buflist_new(ffname, sfname, lnum, 0); | |
22 | 3220 if (buf != NULL && !cmdmod.keepalt) |
7 | 3221 curwin->w_alt_fnum = buf->b_fnum; |
3222 return buf; | |
3223 } | |
3224 | |
3225 /* | |
3226 * Get alternate file name for current window. | |
3227 * Return NULL if there isn't any, and give error message if requested. | |
3228 */ | |
3229 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3230 getaltfname( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3231 int errmsg) /* give error message */ |
7 | 3232 { |
3233 char_u *fname; | |
3234 linenr_T dummy; | |
3235 | |
3236 if (buflist_name_nr(0, &fname, &dummy) == FAIL) | |
3237 { | |
3238 if (errmsg) | |
3239 EMSG(_(e_noalt)); | |
3240 return NULL; | |
3241 } | |
3242 return fname; | |
3243 } | |
3244 | |
3245 /* | |
3246 * Add a file name to the buflist and return its number. | |
3247 * Uses same flags as buflist_new(), except BLN_DUMMY. | |
3248 * | |
3249 * used by qf_init(), main() and doarglist() | |
3250 */ | |
3251 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3252 buflist_add(char_u *fname, int flags) |
7 | 3253 { |
3254 buf_T *buf; | |
3255 | |
3256 buf = buflist_new(fname, NULL, (linenr_T)0, flags); | |
3257 if (buf != NULL) | |
3258 return buf->b_fnum; | |
3259 return 0; | |
3260 } | |
3261 | |
3262 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO) | |
3263 /* | |
3264 * Adjust slashes in file names. Called after 'shellslash' was set. | |
3265 */ | |
3266 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3267 buflist_slash_adjust(void) |
7 | 3268 { |
3269 buf_T *bp; | |
3270 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
3271 FOR_ALL_BUFFERS(bp) |
7 | 3272 { |
3273 if (bp->b_ffname != NULL) | |
3274 slash_adjust(bp->b_ffname); | |
3275 if (bp->b_sfname != NULL) | |
3276 slash_adjust(bp->b_sfname); | |
3277 } | |
3278 } | |
3279 #endif | |
3280 | |
3281 /* | |
1743 | 3282 * Set alternate cursor position for the current buffer and window "win". |
7 | 3283 * Also save the local window option values. |
3284 */ | |
3285 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3286 buflist_altfpos(win_T *win) |
7 | 3287 { |
1743 | 3288 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE); |
7 | 3289 } |
3290 | |
3291 /* | |
3292 * Return TRUE if 'ffname' is not the same file as current file. | |
3293 * Fname must have a full path (expanded by mch_FullName()). | |
3294 */ | |
3295 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3296 otherfile(char_u *ffname) |
7 | 3297 { |
3298 return otherfile_buf(curbuf, ffname | |
3299 #ifdef UNIX | |
3300 , NULL | |
3301 #endif | |
3302 ); | |
3303 } | |
3304 | |
3305 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3306 otherfile_buf( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3307 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3308 char_u *ffname |
7 | 3309 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3310 , stat_T *stp |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3311 #endif |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3312 ) |
7 | 3313 { |
3314 /* no name is different */ | |
3315 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL) | |
3316 return TRUE; | |
3317 if (fnamecmp(ffname, buf->b_ffname) == 0) | |
3318 return FALSE; | |
3319 #ifdef UNIX | |
3320 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3321 stat_T st; |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3322 |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3323 /* If no stat_T given, get it now */ |
7 | 3324 if (stp == NULL) |
3325 { | |
1873 | 3326 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0) |
7 | 3327 st.st_dev = (dev_T)-1; |
3328 stp = &st; | |
3329 } | |
3330 /* Use dev/ino to check if the files are the same, even when the names | |
3331 * are different (possible with links). Still need to compare the | |
3332 * name above, for when the file doesn't exist yet. | |
3333 * Problem: The dev/ino changes when a file is deleted (and created | |
3334 * again) and remains the same when renamed/moved. We don't want to | |
3335 * mch_stat() each buffer each time, that would be too slow. Get the | |
3336 * dev/ino again when they appear to match, but not when they appear | |
3337 * to be different: Could skip a buffer when it's actually the same | |
3338 * file. */ | |
3339 if (buf_same_ino(buf, stp)) | |
3340 { | |
3341 buf_setino(buf); | |
3342 if (buf_same_ino(buf, stp)) | |
3343 return FALSE; | |
3344 } | |
3345 } | |
3346 #endif | |
3347 return TRUE; | |
3348 } | |
3349 | |
3350 #if defined(UNIX) || defined(PROTO) | |
3351 /* | |
3352 * Set inode and device number for a buffer. | |
3353 * Must always be called when b_fname is changed!. | |
3354 */ | |
3355 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3356 buf_setino(buf_T *buf) |
7 | 3357 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3358 stat_T st; |
7 | 3359 |
3360 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0) | |
3361 { | |
1873 | 3362 buf->b_dev_valid = TRUE; |
7 | 3363 buf->b_dev = st.st_dev; |
3364 buf->b_ino = st.st_ino; | |
3365 } | |
3366 else | |
1873 | 3367 buf->b_dev_valid = FALSE; |
7 | 3368 } |
3369 | |
3370 /* | |
3371 * Return TRUE if dev/ino in buffer "buf" matches with "stp". | |
3372 */ | |
3373 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3374 buf_same_ino( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3375 buf_T *buf, |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3376 stat_T *stp) |
7 | 3377 { |
1873 | 3378 return (buf->b_dev_valid |
7 | 3379 && stp->st_dev == buf->b_dev |
3380 && stp->st_ino == buf->b_ino); | |
3381 } | |
3382 #endif | |
3383 | |
667 | 3384 /* |
3385 * Print info about the current buffer. | |
3386 */ | |
7 | 3387 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3388 fileinfo( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3389 int fullname, /* when non-zero print full path */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3390 int shorthelp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3391 int dont_truncate) |
7 | 3392 { |
3393 char_u *name; | |
3394 int n; | |
3395 char_u *p; | |
3396 char_u *buffer; | |
272 | 3397 size_t len; |
7 | 3398 |
3399 buffer = alloc(IOSIZE); | |
3400 if (buffer == NULL) | |
3401 return; | |
3402 | |
3403 if (fullname > 1) /* 2 CTRL-G: include buffer number */ | |
3404 { | |
1869 | 3405 vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum); |
7 | 3406 p = buffer + STRLEN(buffer); |
3407 } | |
3408 else | |
3409 p = buffer; | |
3410 | |
3411 *p++ = '"'; | |
3412 if (buf_spname(curbuf) != NULL) | |
3835 | 3413 vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1); |
7 | 3414 else |
3415 { | |
3416 if (!fullname && curbuf->b_fname != NULL) | |
3417 name = curbuf->b_fname; | |
3418 else | |
3419 name = curbuf->b_ffname; | |
3420 home_replace(shorthelp ? curbuf : NULL, name, p, | |
3421 (int)(IOSIZE - (p - buffer)), TRUE); | |
3422 } | |
3423 | |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
3424 vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s", |
7 | 3425 curbufIsChanged() ? (shortmess(SHM_MOD) |
3426 ? " [+]" : _(" [Modified]")) : " ", | |
3427 (curbuf->b_flags & BF_NOTEDITED) | |
3428 #ifdef FEAT_QUICKFIX | |
3429 && !bt_dontwrite(curbuf) | |
3430 #endif | |
3431 ? _("[Not edited]") : "", | |
3432 (curbuf->b_flags & BF_NEW) | |
3433 #ifdef FEAT_QUICKFIX | |
3434 && !bt_dontwrite(curbuf) | |
3435 #endif | |
3436 ? _("[New file]") : "", | |
3437 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "", | |
4795
8360a59aa04b
updated for version 7.3.1144
Bram Moolenaar <bram@vim.org>
parents:
4354
diff
changeset
|
3438 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]") |
7 | 3439 : _("[readonly]")) : "", |
3440 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK) | |
3441 || curbuf->b_p_ro) ? | |
3442 " " : ""); | |
3443 /* With 32 bit longs and more than 21,474,836 lines multiplying by 100 | |
3444 * causes an overflow, thus for large numbers divide instead. */ | |
3445 if (curwin->w_cursor.lnum > 1000000L) | |
3446 n = (int)(((long)curwin->w_cursor.lnum) / | |
3447 ((long)curbuf->b_ml.ml_line_count / 100L)); | |
3448 else | |
3449 n = (int)(((long)curwin->w_cursor.lnum * 100L) / | |
3450 (long)curbuf->b_ml.ml_line_count); | |
3451 if (curbuf->b_ml.ml_flags & ML_EMPTY) | |
3452 { | |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
3453 vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg)); |
7 | 3454 } |
3455 #ifdef FEAT_CMDL_INFO | |
3456 else if (p_ru) | |
3457 { | |
3458 /* Current line and column are already on the screen -- webb */ | |
3459 if (curbuf->b_ml.ml_line_count == 1) | |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
3460 vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n); |
7 | 3461 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
3462 vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"), |
7 | 3463 (long)curbuf->b_ml.ml_line_count, n); |
3464 } | |
3465 #endif | |
3466 else | |
3467 { | |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
3468 vim_snprintf_add((char *)buffer, IOSIZE, |
7 | 3469 _("line %ld of %ld --%d%%-- col "), |
3470 (long)curwin->w_cursor.lnum, | |
3471 (long)curbuf->b_ml.ml_line_count, | |
3472 n); | |
3473 validate_virtcol(); | |
1869 | 3474 len = STRLEN(buffer); |
3475 col_print(buffer + len, IOSIZE - len, | |
7 | 3476 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); |
3477 } | |
3478 | |
1869 | 3479 (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE)); |
7 | 3480 |
3481 if (dont_truncate) | |
3482 { | |
3483 /* Temporarily set msg_scroll to avoid the message being truncated. | |
3484 * First call msg_start() to get the message in the right place. */ | |
3485 msg_start(); | |
3486 n = msg_scroll; | |
3487 msg_scroll = TRUE; | |
3488 msg(buffer); | |
3489 msg_scroll = n; | |
3490 } | |
3491 else | |
3492 { | |
3493 p = msg_trunc_attr(buffer, FALSE, 0); | |
3494 if (restart_edit != 0 || (msg_scrolled && !need_wait_return)) | |
3495 /* Need to repeat the message after redrawing when: | |
3496 * - When restart_edit is set (otherwise there will be a delay | |
3497 * before redrawing). | |
3498 * - When the screen was scrolled but there is no wait-return | |
3499 * prompt. */ | |
678 | 3500 set_keep_msg(p, 0); |
7 | 3501 } |
3502 | |
3503 vim_free(buffer); | |
3504 } | |
3505 | |
3506 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3507 col_print( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3508 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3509 size_t buflen, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3510 int col, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3511 int vcol) |
7 | 3512 { |
3513 if (col == vcol) | |
1869 | 3514 vim_snprintf((char *)buf, buflen, "%d", col); |
7 | 3515 else |
1869 | 3516 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol); |
7 | 3517 } |
3518 | |
3519 #if defined(FEAT_TITLE) || defined(PROTO) | |
3520 /* | |
3521 * put file name in title bar of window and in icon title | |
3522 */ | |
3523 | |
3524 static char_u *lasttitle = NULL; | |
3525 static char_u *lasticon = NULL; | |
3526 | |
3527 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3528 maketitle(void) |
7 | 3529 { |
3530 char_u *p; | |
3531 char_u *t_str = NULL; | |
3532 char_u *i_name; | |
3533 char_u *i_str = NULL; | |
3534 int maxlen = 0; | |
3535 int len; | |
3536 int mustset; | |
3537 char_u buf[IOSIZE]; | |
3538 int off; | |
3539 | |
3540 if (!redrawing()) | |
3541 { | |
3542 /* Postpone updating the title when 'lazyredraw' is set. */ | |
3543 need_maketitle = TRUE; | |
3544 return; | |
3545 } | |
3546 | |
3547 need_maketitle = FALSE; | |
2403
ce5a380d5144
Fix: when resetting both 'title' and 'icon' the title would be set after a
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
3548 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL) |
7 | 3549 return; |
3550 | |
3551 if (p_title) | |
3552 { | |
3553 if (p_titlelen > 0) | |
3554 { | |
3555 maxlen = p_titlelen * Columns / 100; | |
3556 if (maxlen < 10) | |
3557 maxlen = 10; | |
3558 } | |
3559 | |
3560 t_str = buf; | |
3561 if (*p_titlestring != NUL) | |
3562 { | |
3563 #ifdef FEAT_STL_OPT | |
771 | 3564 if (stl_syntax & STL_IN_TITLE) |
3565 { | |
3566 int use_sandbox = FALSE; | |
3567 int save_called_emsg = called_emsg; | |
675 | 3568 |
3569 # ifdef FEAT_EVAL | |
771 | 3570 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0); |
675 | 3571 # endif |
771 | 3572 called_emsg = FALSE; |
7 | 3573 build_stl_str_hl(curwin, t_str, sizeof(buf), |
675 | 3574 p_titlestring, use_sandbox, |
681 | 3575 0, maxlen, NULL, NULL); |
771 | 3576 if (called_emsg) |
3577 set_string_option_direct((char_u *)"titlestring", -1, | |
3578 (char_u *)"", OPT_FREE, SID_ERROR); | |
3579 called_emsg |= save_called_emsg; | |
3580 } | |
7 | 3581 else |
3582 #endif | |
3583 t_str = p_titlestring; | |
3584 } | |
3585 else | |
3586 { | |
3587 /* format: "fname + (path) (1 of 2) - VIM" */ | |
3588 | |
3780 | 3589 #define SPACE_FOR_FNAME (IOSIZE - 100) |
3590 #define SPACE_FOR_DIR (IOSIZE - 20) | |
3591 #define SPACE_FOR_ARGNR (IOSIZE - 10) /* at least room for " - VIM" */ | |
7 | 3592 if (curbuf->b_fname == NULL) |
3780 | 3593 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME); |
7 | 3594 else |
3595 { | |
3596 p = transstr(gettail(curbuf->b_fname)); | |
3780 | 3597 vim_strncpy(buf, p, SPACE_FOR_FNAME); |
7 | 3598 vim_free(p); |
3599 } | |
3600 | |
3601 switch (bufIsChanged(curbuf) | |
3602 + (curbuf->b_p_ro * 2) | |
3603 + (!curbuf->b_p_ma * 4)) | |
3604 { | |
3605 case 1: STRCAT(buf, " +"); break; | |
3606 case 2: STRCAT(buf, " ="); break; | |
3607 case 3: STRCAT(buf, " =+"); break; | |
3608 case 4: | |
3609 case 6: STRCAT(buf, " -"); break; | |
3610 case 5: | |
3611 case 7: STRCAT(buf, " -+"); break; | |
3612 } | |
3613 | |
3614 if (curbuf->b_fname != NULL) | |
3615 { | |
3616 /* Get path of file, replace home dir with ~ */ | |
3617 off = (int)STRLEN(buf); | |
3618 buf[off++] = ' '; | |
3619 buf[off++] = '('; | |
3620 home_replace(curbuf, curbuf->b_ffname, | |
3780 | 3621 buf + off, SPACE_FOR_DIR - off, TRUE); |
7 | 3622 #ifdef BACKSLASH_IN_FILENAME |
3623 /* avoid "c:/name" to be reduced to "c" */ | |
3624 if (isalpha(buf[off]) && buf[off + 1] == ':') | |
3625 off += 2; | |
3626 #endif | |
3627 /* remove the file name */ | |
39 | 3628 p = gettail_sep(buf + off); |
7 | 3629 if (p == buf + off) |
3630 /* must be a help buffer */ | |
416 | 3631 vim_strncpy(buf + off, (char_u *)_("help"), |
3780 | 3632 (size_t)(SPACE_FOR_DIR - off - 1)); |
7 | 3633 else |
3634 *p = NUL; | |
39 | 3635 |
3780 | 3636 /* Translate unprintable chars and concatenate. Keep some |
3637 * room for the server name. When there is no room (very long | |
3638 * file name) use (...). */ | |
3639 if (off < SPACE_FOR_DIR) | |
3640 { | |
3641 p = transstr(buf + off); | |
3642 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off)); | |
3643 vim_free(p); | |
3644 } | |
3645 else | |
3646 { | |
3647 vim_strncpy(buf + off, (char_u *)"...", | |
3648 (size_t)(SPACE_FOR_ARGNR - off)); | |
3649 } | |
7 | 3650 STRCAT(buf, ")"); |
3651 } | |
3652 | |
3780 | 3653 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE); |
7 | 3654 |
3655 #if defined(FEAT_CLIENTSERVER) | |
3656 if (serverName != NULL) | |
3657 { | |
3658 STRCAT(buf, " - "); | |
2768 | 3659 vim_strcat(buf, serverName, IOSIZE); |
7 | 3660 } |
3661 else | |
3662 #endif | |
3663 STRCAT(buf, " - VIM"); | |
3664 | |
3665 if (maxlen > 0) | |
3666 { | |
3667 /* make it shorter by removing a bit in the middle */ | |
3277 | 3668 if (vim_strsize(buf) > maxlen) |
3669 trunc_string(buf, buf, maxlen, IOSIZE); | |
7 | 3670 } |
3671 } | |
3672 } | |
3673 mustset = ti_change(t_str, &lasttitle); | |
3674 | |
3675 if (p_icon) | |
3676 { | |
3677 i_str = buf; | |
3678 if (*p_iconstring != NUL) | |
3679 { | |
3680 #ifdef FEAT_STL_OPT | |
771 | 3681 if (stl_syntax & STL_IN_ICON) |
3682 { | |
3683 int use_sandbox = FALSE; | |
3684 int save_called_emsg = called_emsg; | |
675 | 3685 |
3686 # ifdef FEAT_EVAL | |
771 | 3687 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0); |
675 | 3688 # endif |
771 | 3689 called_emsg = FALSE; |
7 | 3690 build_stl_str_hl(curwin, i_str, sizeof(buf), |
675 | 3691 p_iconstring, use_sandbox, |
681 | 3692 0, 0, NULL, NULL); |
771 | 3693 if (called_emsg) |
3694 set_string_option_direct((char_u *)"iconstring", -1, | |
3695 (char_u *)"", OPT_FREE, SID_ERROR); | |
3696 called_emsg |= save_called_emsg; | |
3697 } | |
7 | 3698 else |
3699 #endif | |
3700 i_str = p_iconstring; | |
3701 } | |
3702 else | |
3703 { | |
3704 if (buf_spname(curbuf) != NULL) | |
3839 | 3705 i_name = buf_spname(curbuf); |
7 | 3706 else /* use file name only in icon */ |
3707 i_name = gettail(curbuf->b_ffname); | |
3708 *i_str = NUL; | |
3709 /* Truncate name at 100 bytes. */ | |
835 | 3710 len = (int)STRLEN(i_name); |
7 | 3711 if (len > 100) |
3712 { | |
3713 len -= 100; | |
3714 #ifdef FEAT_MBYTE | |
3715 if (has_mbyte) | |
3716 len += (*mb_tail_off)(i_name, i_name + len) + 1; | |
3717 #endif | |
3718 i_name += len; | |
3719 } | |
3720 STRCPY(i_str, i_name); | |
3721 trans_characters(i_str, IOSIZE); | |
3722 } | |
3723 } | |
3724 | |
3725 mustset |= ti_change(i_str, &lasticon); | |
3726 | |
3727 if (mustset) | |
3728 resettitle(); | |
3729 } | |
3730 | |
3731 /* | |
3732 * Used for title and icon: Check if "str" differs from "*last". Set "*last" | |
3733 * from "str" if it does. | |
3734 * Return TRUE when "*last" changed. | |
3735 */ | |
3736 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3737 ti_change(char_u *str, char_u **last) |
7 | 3738 { |
3739 if ((str == NULL) != (*last == NULL) | |
3740 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0)) | |
3741 { | |
3742 vim_free(*last); | |
3743 if (str == NULL) | |
3744 *last = NULL; | |
3745 else | |
3746 *last = vim_strsave(str); | |
3747 return TRUE; | |
3748 } | |
3749 return FALSE; | |
3750 } | |
3751 | |
3752 /* | |
3753 * Put current window title back (used after calling a shell) | |
3754 */ | |
3755 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3756 resettitle(void) |
7 | 3757 { |
3758 mch_settitle(lasttitle, lasticon); | |
3759 } | |
358 | 3760 |
3761 # if defined(EXITFREE) || defined(PROTO) | |
3762 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3763 free_titles(void) |
358 | 3764 { |
3765 vim_free(lasttitle); | |
3766 vim_free(lasticon); | |
3767 } | |
3768 # endif | |
3769 | |
7 | 3770 #endif /* FEAT_TITLE */ |
3771 | |
686 | 3772 #if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO) |
7 | 3773 /* |
675 | 3774 * Build a string from the status line items in "fmt". |
7 | 3775 * Return length of string in screen cells. |
3776 * | |
675 | 3777 * Normally works for window "wp", except when working for 'tabline' then it |
3778 * is "curwin". | |
3779 * | |
7 | 3780 * Items are drawn interspersed with the text that surrounds it |
3781 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation | |
3782 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional | |
3783 * | |
3784 * If maxwidth is not zero, the string will be filled at any middle marker | |
3785 * or truncated if too long, fillchar is used for all whitespace. | |
3786 */ | |
3787 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3788 build_stl_str_hl( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3789 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3790 char_u *out, /* buffer to write into != NameBuff */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3791 size_t outlen, /* length of out[] */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3792 char_u *fmt, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3793 int use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3794 int fillchar, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3795 int maxwidth, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3796 struct stl_hlrec *hltab, /* return: HL attributes (can be NULL) */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3797 struct stl_hlrec *tabtab) /* return: tab page nrs (can be NULL) */ |
7 | 3798 { |
3799 char_u *p; | |
3800 char_u *s; | |
3801 char_u *t; | |
4333 | 3802 int byteval; |
7 | 3803 #ifdef FEAT_EVAL |
3804 win_T *o_curwin; | |
3805 buf_T *o_curbuf; | |
3806 #endif | |
3807 int empty_line; | |
3808 colnr_T virtcol; | |
3809 long l; | |
3810 long n; | |
3811 int prevchar_isflag; | |
3812 int prevchar_isitem; | |
3813 int itemisflag; | |
3814 int fillable; | |
3815 char_u *str; | |
3816 long num; | |
3817 int width; | |
3818 int itemcnt; | |
3819 int curitem; | |
3820 int groupitem[STL_MAX_ITEM]; | |
3821 int groupdepth; | |
3822 struct stl_item | |
3823 { | |
3824 char_u *start; | |
3825 int minwid; | |
3826 int maxwid; | |
3827 enum | |
3828 { | |
3829 Normal, | |
3830 Empty, | |
3831 Group, | |
3832 Middle, | |
3833 Highlight, | |
681 | 3834 TabPage, |
7 | 3835 Trunc |
3836 } type; | |
3837 } item[STL_MAX_ITEM]; | |
3838 int minwid; | |
3839 int maxwid; | |
3840 int zeropad; | |
3841 char_u base; | |
3842 char_u opt; | |
3843 #define TMPLEN 70 | |
3844 char_u tmp[TMPLEN]; | |
678 | 3845 char_u *usefmt = fmt; |
681 | 3846 struct stl_hlrec *sp; |
678 | 3847 |
3848 #ifdef FEAT_EVAL | |
3849 /* | |
3850 * When the format starts with "%!" then evaluate it as an expression and | |
3851 * use the result as the actual format string. | |
3852 */ | |
3853 if (fmt[0] == '%' && fmt[1] == '!') | |
3854 { | |
3855 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox); | |
3856 if (usefmt == NULL) | |
943 | 3857 usefmt = fmt; |
678 | 3858 } |
3859 #endif | |
7 | 3860 |
3861 if (fillchar == 0) | |
3862 fillchar = ' '; | |
819 | 3863 #ifdef FEAT_MBYTE |
3864 /* Can't handle a multi-byte fill character yet. */ | |
3865 else if (mb_char2len(fillchar) > 1) | |
3866 fillchar = '-'; | |
3867 #endif | |
3868 | |
4333 | 3869 /* Get line & check if empty (cursorpos will show "0-1"). Note that |
3870 * p will become invalid when getting another buffer line. */ | |
3871 p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE); | |
3872 empty_line = (*p == NUL); | |
3873 | |
3874 /* Get the byte value now, in case we need it below. This is more | |
3875 * efficient than making a copy of the line. */ | |
3876 if (wp->w_cursor.col > (colnr_T)STRLEN(p)) | |
3877 byteval = 0; | |
3878 else | |
3879 #ifdef FEAT_MBYTE | |
3880 byteval = (*mb_ptr2char)(p + wp->w_cursor.col); | |
3881 #else | |
3882 byteval = p[wp->w_cursor.col]; | |
3883 #endif | |
7 | 3884 |
3885 groupdepth = 0; | |
3886 p = out; | |
3887 curitem = 0; | |
3888 prevchar_isflag = TRUE; | |
3889 prevchar_isitem = FALSE; | |
678 | 3890 for (s = usefmt; *s; ) |
7 | 3891 { |
2704 | 3892 if (curitem == STL_MAX_ITEM) |
3893 { | |
3894 /* There are too many items. Add the error code to the statusline | |
3895 * to give the user a hint about what went wrong. */ | |
3896 if (p + 6 < out + outlen) | |
3897 { | |
3898 mch_memmove(p, " E541", (size_t)5); | |
3899 p += 5; | |
3900 } | |
3901 break; | |
3902 } | |
3903 | |
7 | 3904 if (*s != NUL && *s != '%') |
3905 prevchar_isflag = prevchar_isitem = FALSE; | |
3906 | |
3907 /* | |
3908 * Handle up to the next '%' or the end. | |
3909 */ | |
3910 while (*s != NUL && *s != '%' && p + 1 < out + outlen) | |
3911 *p++ = *s++; | |
3912 if (*s == NUL || p + 1 >= out + outlen) | |
3913 break; | |
3914 | |
3915 /* | |
3916 * Handle one '%' item. | |
3917 */ | |
3918 s++; | |
2694 | 3919 if (*s == NUL) /* ignore trailing % */ |
3920 break; | |
7 | 3921 if (*s == '%') |
3922 { | |
3923 if (p + 1 >= out + outlen) | |
3924 break; | |
3925 *p++ = *s++; | |
3926 prevchar_isflag = prevchar_isitem = FALSE; | |
3927 continue; | |
3928 } | |
3929 if (*s == STL_MIDDLEMARK) | |
3930 { | |
3931 s++; | |
3932 if (groupdepth > 0) | |
3933 continue; | |
3934 item[curitem].type = Middle; | |
3935 item[curitem++].start = p; | |
3936 continue; | |
3937 } | |
3938 if (*s == STL_TRUNCMARK) | |
3939 { | |
3940 s++; | |
3941 item[curitem].type = Trunc; | |
3942 item[curitem++].start = p; | |
3943 continue; | |
3944 } | |
3945 if (*s == ')') | |
3946 { | |
3947 s++; | |
3948 if (groupdepth < 1) | |
3949 continue; | |
3950 groupdepth--; | |
3951 | |
3952 t = item[groupitem[groupdepth]].start; | |
3953 *p = NUL; | |
3954 l = vim_strsize(t); | |
3955 if (curitem > groupitem[groupdepth] + 1 | |
3956 && item[groupitem[groupdepth]].minwid == 0) | |
3957 { | |
3958 /* remove group if all items are empty */ | |
3959 for (n = groupitem[groupdepth] + 1; n < curitem; n++) | |
8441
768065c86a35
commit https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
3960 if (item[n].type == Normal || item[n].type == Highlight) |
7 | 3961 break; |
3962 if (n == curitem) | |
3963 { | |
3964 p = t; | |
3965 l = 0; | |
3966 } | |
3967 } | |
3968 if (l > item[groupitem[groupdepth]].maxwid) | |
3969 { | |
3970 /* truncate, remove n bytes of text at the start */ | |
3971 #ifdef FEAT_MBYTE | |
3972 if (has_mbyte) | |
3973 { | |
3974 /* Find the first character that should be included. */ | |
3975 n = 0; | |
3976 while (l >= item[groupitem[groupdepth]].maxwid) | |
3977 { | |
3978 l -= ptr2cells(t + n); | |
474 | 3979 n += (*mb_ptr2len)(t + n); |
7 | 3980 } |
3981 } | |
3982 else | |
3983 #endif | |
835 | 3984 n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1; |
7 | 3985 |
3986 *t = '<'; | |
1869 | 3987 mch_memmove(t + 1, t + n, (size_t)(p - (t + n))); |
7 | 3988 p = p - n + 1; |
3989 #ifdef FEAT_MBYTE | |
3990 /* Fill up space left over by half a double-wide char. */ | |
3991 while (++l < item[groupitem[groupdepth]].minwid) | |
3992 *p++ = fillchar; | |
3993 #endif | |
3994 | |
3995 /* correct the start of the items for the truncation */ | |
3996 for (l = groupitem[groupdepth] + 1; l < curitem; l++) | |
3997 { | |
3998 item[l].start -= n; | |
3999 if (item[l].start < t) | |
4000 item[l].start = t; | |
4001 } | |
4002 } | |
4003 else if (abs(item[groupitem[groupdepth]].minwid) > l) | |
4004 { | |
4005 /* fill */ | |
4006 n = item[groupitem[groupdepth]].minwid; | |
4007 if (n < 0) | |
4008 { | |
4009 /* fill by appending characters */ | |
4010 n = 0 - n; | |
4011 while (l++ < n && p + 1 < out + outlen) | |
4012 *p++ = fillchar; | |
4013 } | |
4014 else | |
4015 { | |
4016 /* fill by inserting characters */ | |
1869 | 4017 mch_memmove(t + n - l, t, (size_t)(p - t)); |
7 | 4018 l = n - l; |
4019 if (p + l >= out + outlen) | |
835 | 4020 l = (long)((out + outlen) - p - 1); |
7 | 4021 p += l; |
4022 for (n = groupitem[groupdepth] + 1; n < curitem; n++) | |
4023 item[n].start += l; | |
4024 for ( ; l > 0; l--) | |
4025 *t++ = fillchar; | |
4026 } | |
4027 } | |
4028 continue; | |
4029 } | |
4030 minwid = 0; | |
4031 maxwid = 9999; | |
4032 zeropad = FALSE; | |
4033 l = 1; | |
4034 if (*s == '0') | |
4035 { | |
4036 s++; | |
4037 zeropad = TRUE; | |
4038 } | |
4039 if (*s == '-') | |
4040 { | |
4041 s++; | |
4042 l = -1; | |
4043 } | |
4044 if (VIM_ISDIGIT(*s)) | |
4045 { | |
4046 minwid = (int)getdigits(&s); | |
4047 if (minwid < 0) /* overflow */ | |
4048 minwid = 0; | |
4049 } | |
678 | 4050 if (*s == STL_USER_HL) |
7 | 4051 { |
4052 item[curitem].type = Highlight; | |
4053 item[curitem].start = p; | |
4054 item[curitem].minwid = minwid > 9 ? 1 : minwid; | |
4055 s++; | |
4056 curitem++; | |
4057 continue; | |
4058 } | |
681 | 4059 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR) |
4060 { | |
4061 if (*s == STL_TABCLOSENR) | |
4062 { | |
4063 if (minwid == 0) | |
4064 { | |
4065 /* %X ends the close label, go back to the previously | |
4066 * define tab label nr. */ | |
4067 for (n = curitem - 1; n >= 0; --n) | |
4068 if (item[n].type == TabPage && item[n].minwid >= 0) | |
4069 { | |
4070 minwid = item[n].minwid; | |
4071 break; | |
4072 } | |
4073 } | |
4074 else | |
4075 /* close nrs are stored as negative values */ | |
4076 minwid = - minwid; | |
4077 } | |
4078 item[curitem].type = TabPage; | |
4079 item[curitem].start = p; | |
4080 item[curitem].minwid = minwid; | |
4081 s++; | |
4082 curitem++; | |
4083 continue; | |
4084 } | |
7 | 4085 if (*s == '.') |
4086 { | |
4087 s++; | |
4088 if (VIM_ISDIGIT(*s)) | |
4089 { | |
4090 maxwid = (int)getdigits(&s); | |
4091 if (maxwid <= 0) /* overflow */ | |
4092 maxwid = 50; | |
4093 } | |
4094 } | |
4095 minwid = (minwid > 50 ? 50 : minwid) * l; | |
4096 if (*s == '(') | |
4097 { | |
4098 groupitem[groupdepth++] = curitem; | |
4099 item[curitem].type = Group; | |
4100 item[curitem].start = p; | |
4101 item[curitem].minwid = minwid; | |
4102 item[curitem].maxwid = maxwid; | |
4103 s++; | |
4104 curitem++; | |
4105 continue; | |
4106 } | |
4107 if (vim_strchr(STL_ALL, *s) == NULL) | |
4108 { | |
4109 s++; | |
4110 continue; | |
4111 } | |
4112 opt = *s++; | |
4113 | |
4114 /* OK - now for the real work */ | |
4115 base = 'D'; | |
4116 itemisflag = FALSE; | |
4117 fillable = TRUE; | |
4118 num = -1; | |
4119 str = NULL; | |
4120 switch (opt) | |
4121 { | |
4122 case STL_FILEPATH: | |
4123 case STL_FULLPATH: | |
4124 case STL_FILENAME: | |
4125 fillable = FALSE; /* don't change ' ' to fillchar */ | |
4126 if (buf_spname(wp->w_buffer) != NULL) | |
3839 | 4127 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1); |
7 | 4128 else |
4129 { | |
4130 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname | |
667 | 4131 : wp->w_buffer->b_fname; |
7 | 4132 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE); |
4133 } | |
4134 trans_characters(NameBuff, MAXPATHL); | |
4135 if (opt != STL_FILENAME) | |
4136 str = NameBuff; | |
4137 else | |
4138 str = gettail(NameBuff); | |
4139 break; | |
4140 | |
4141 case STL_VIM_EXPR: /* '{' */ | |
4142 itemisflag = TRUE; | |
4143 t = p; | |
4144 while (*s != '}' && *s != NUL && p + 1 < out + outlen) | |
4145 *p++ = *s++; | |
4146 if (*s != '}') /* missing '}' or out of space */ | |
4147 break; | |
4148 s++; | |
4149 *p = 0; | |
4150 p = t; | |
4151 | |
4152 #ifdef FEAT_EVAL | |
1869 | 4153 vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum); |
7 | 4154 set_internal_string_var((char_u *)"actual_curbuf", tmp); |
4155 | |
4156 o_curbuf = curbuf; | |
4157 o_curwin = curwin; | |
4158 curwin = wp; | |
4159 curbuf = wp->w_buffer; | |
4160 | |
675 | 4161 str = eval_to_string_safe(p, &t, use_sandbox); |
7 | 4162 |
4163 curwin = o_curwin; | |
4164 curbuf = o_curbuf; | |
145 | 4165 do_unlet((char_u *)"g:actual_curbuf", TRUE); |
7 | 4166 |
4167 if (str != NULL && *str != 0) | |
4168 { | |
4169 if (*skipdigits(str) == NUL) | |
4170 { | |
4171 num = atoi((char *)str); | |
4172 vim_free(str); | |
4173 str = NULL; | |
4174 itemisflag = FALSE; | |
4175 } | |
4176 } | |
4177 #endif | |
4178 break; | |
4179 | |
4180 case STL_LINE: | |
4181 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) | |
4182 ? 0L : (long)(wp->w_cursor.lnum); | |
4183 break; | |
4184 | |
4185 case STL_NUMLINES: | |
4186 num = wp->w_buffer->b_ml.ml_line_count; | |
4187 break; | |
4188 | |
4189 case STL_COLUMN: | |
4190 num = !(State & INSERT) && empty_line | |
4191 ? 0 : (int)wp->w_cursor.col + 1; | |
4192 break; | |
4193 | |
4194 case STL_VIRTCOL: | |
4195 case STL_VIRTCOL_ALT: | |
4196 /* In list mode virtcol needs to be recomputed */ | |
4197 virtcol = wp->w_virtcol; | |
4198 if (wp->w_p_list && lcs_tab1 == NUL) | |
4199 { | |
4200 wp->w_p_list = FALSE; | |
4201 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL); | |
4202 wp->w_p_list = TRUE; | |
4203 } | |
4204 ++virtcol; | |
4205 /* Don't display %V if it's the same as %c. */ | |
4206 if (opt == STL_VIRTCOL_ALT | |
4207 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line | |
4208 ? 0 : (int)wp->w_cursor.col + 1))) | |
4209 break; | |
4210 num = (long)virtcol; | |
4211 break; | |
4212 | |
4213 case STL_PERCENTAGE: | |
4214 num = (int)(((long)wp->w_cursor.lnum * 100L) / | |
4215 (long)wp->w_buffer->b_ml.ml_line_count); | |
4216 break; | |
4217 | |
4218 case STL_ALTPERCENT: | |
4219 str = tmp; | |
1869 | 4220 get_rel_pos(wp, str, TMPLEN); |
7 | 4221 break; |
4222 | |
4223 case STL_ARGLISTSTAT: | |
4224 fillable = FALSE; | |
4225 tmp[0] = 0; | |
1869 | 4226 if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE)) |
7 | 4227 str = tmp; |
4228 break; | |
4229 | |
4230 case STL_KEYMAP: | |
4231 fillable = FALSE; | |
9645
123d3c102035
commit https://github.com/vim/vim/commit/73ac0c4281a3606651604a3cbcc334bfb3859a87
Christian Brabandt <cb@256bit.org>
parents:
9515
diff
changeset
|
4232 if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN)) |
7 | 4233 str = tmp; |
4234 break; | |
4235 case STL_PAGENUM: | |
706 | 4236 #if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE) |
686 | 4237 num = printer_page_num; |
7 | 4238 #else |
4239 num = 0; | |
4240 #endif | |
4241 break; | |
4242 | |
4243 case STL_BUFNO: | |
4244 num = wp->w_buffer->b_fnum; | |
4245 break; | |
4246 | |
4247 case STL_OFFSET_X: | |
4248 base = 'X'; | |
4249 case STL_OFFSET: | |
4250 #ifdef FEAT_BYTEOFF | |
4251 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL); | |
4252 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ? | |
4253 0L : l + 1 + (!(State & INSERT) && empty_line ? | |
4254 0 : (int)wp->w_cursor.col); | |
4255 #endif | |
4256 break; | |
4257 | |
4258 case STL_BYTEVAL_X: | |
4259 base = 'X'; | |
4260 case STL_BYTEVAL: | |
4333 | 4261 num = byteval; |
7 | 4262 if (num == NL) |
4263 num = 0; | |
4264 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC) | |
4265 num = NL; | |
4266 break; | |
4267 | |
4268 case STL_ROFLAG: | |
4269 case STL_ROFLAG_ALT: | |
4270 itemisflag = TRUE; | |
4271 if (wp->w_buffer->b_p_ro) | |
4795
8360a59aa04b
updated for version 7.3.1144
Bram Moolenaar <bram@vim.org>
parents:
4354
diff
changeset
|
4272 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]")); |
7 | 4273 break; |
4274 | |
4275 case STL_HELPFLAG: | |
4276 case STL_HELPFLAG_ALT: | |
4277 itemisflag = TRUE; | |
4278 if (wp->w_buffer->b_help) | |
4279 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP" | |
809 | 4280 : _("[Help]")); |
7 | 4281 break; |
4282 | |
4283 #ifdef FEAT_AUTOCMD | |
4284 case STL_FILETYPE: | |
4285 if (*wp->w_buffer->b_p_ft != NUL | |
4286 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3) | |
4287 { | |
272 | 4288 vim_snprintf((char *)tmp, sizeof(tmp), "[%s]", |
4289 wp->w_buffer->b_p_ft); | |
7 | 4290 str = tmp; |
4291 } | |
4292 break; | |
4293 | |
4294 case STL_FILETYPE_ALT: | |
4295 itemisflag = TRUE; | |
4296 if (*wp->w_buffer->b_p_ft != NUL | |
4297 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2) | |
4298 { | |
272 | 4299 vim_snprintf((char *)tmp, sizeof(tmp), ",%s", |
4300 wp->w_buffer->b_p_ft); | |
7 | 4301 for (t = tmp; *t != 0; t++) |
4302 *t = TOUPPER_LOC(*t); | |
4303 str = tmp; | |
4304 } | |
4305 break; | |
4306 #endif | |
4307 | |
4308 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) | |
4309 case STL_PREVIEWFLAG: | |
4310 case STL_PREVIEWFLAG_ALT: | |
4311 itemisflag = TRUE; | |
4312 if (wp->w_p_pvw) | |
4313 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV" | |
4314 : _("[Preview]")); | |
4315 break; | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4316 |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4317 case STL_QUICKFIX: |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4318 if (bt_quickfix(wp->w_buffer)) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4319 str = (char_u *)(wp->w_llist_ref |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4320 ? _(msg_loclist) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4321 : _(msg_qflist)); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4322 break; |
7 | 4323 #endif |
4324 | |
4325 case STL_MODIFIED: | |
4326 case STL_MODIFIED_ALT: | |
4327 itemisflag = TRUE; | |
4328 switch ((opt == STL_MODIFIED_ALT) | |
4329 + bufIsChanged(wp->w_buffer) * 2 | |
4330 + (!wp->w_buffer->b_p_ma) * 4) | |
4331 { | |
4332 case 2: str = (char_u *)"[+]"; break; | |
4333 case 3: str = (char_u *)",+"; break; | |
4334 case 4: str = (char_u *)"[-]"; break; | |
4335 case 5: str = (char_u *)",-"; break; | |
4336 case 6: str = (char_u *)"[+-]"; break; | |
4337 case 7: str = (char_u *)",+-"; break; | |
4338 } | |
4339 break; | |
678 | 4340 |
4341 case STL_HIGHLIGHT: | |
4342 t = s; | |
4343 while (*s != '#' && *s != NUL) | |
4344 ++s; | |
4345 if (*s == '#') | |
4346 { | |
4347 item[curitem].type = Highlight; | |
4348 item[curitem].start = p; | |
835 | 4349 item[curitem].minwid = -syn_namen2id(t, (int)(s - t)); |
678 | 4350 curitem++; |
4351 } | |
5407 | 4352 if (*s != NUL) |
4353 ++s; | |
678 | 4354 continue; |
7 | 4355 } |
4356 | |
4357 item[curitem].start = p; | |
4358 item[curitem].type = Normal; | |
4359 if (str != NULL && *str) | |
4360 { | |
4361 t = str; | |
4362 if (itemisflag) | |
4363 { | |
4364 if ((t[0] && t[1]) | |
4365 && ((!prevchar_isitem && *t == ',') | |
4366 || (prevchar_isflag && *t == ' '))) | |
4367 t++; | |
4368 prevchar_isflag = TRUE; | |
4369 } | |
4370 l = vim_strsize(t); | |
4371 if (l > 0) | |
4372 prevchar_isitem = TRUE; | |
4373 if (l > maxwid) | |
4374 { | |
4375 while (l >= maxwid) | |
4376 #ifdef FEAT_MBYTE | |
4377 if (has_mbyte) | |
4378 { | |
4379 l -= ptr2cells(t); | |
474 | 4380 t += (*mb_ptr2len)(t); |
7 | 4381 } |
4382 else | |
4383 #endif | |
4384 l -= byte2cells(*t++); | |
4385 if (p + 1 >= out + outlen) | |
4386 break; | |
4387 *p++ = '<'; | |
4388 } | |
4389 if (minwid > 0) | |
4390 { | |
4391 for (; l < minwid && p + 1 < out + outlen; l++) | |
4392 { | |
4393 /* Don't put a "-" in front of a digit. */ | |
4394 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t)) | |
4395 *p++ = ' '; | |
4396 else | |
4397 *p++ = fillchar; | |
4398 } | |
4399 minwid = 0; | |
4400 } | |
4401 else | |
4402 minwid *= -1; | |
4403 while (*t && p + 1 < out + outlen) | |
4404 { | |
4405 *p++ = *t++; | |
4406 /* Change a space by fillchar, unless fillchar is '-' and a | |
4407 * digit follows. */ | |
4408 if (fillable && p[-1] == ' ' | |
4409 && (!VIM_ISDIGIT(*t) || fillchar != '-')) | |
4410 p[-1] = fillchar; | |
4411 } | |
4412 for (; l < minwid && p + 1 < out + outlen; l++) | |
4413 *p++ = fillchar; | |
4414 } | |
4415 else if (num >= 0) | |
4416 { | |
4417 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16)); | |
4418 char_u nstr[20]; | |
4419 | |
4420 if (p + 20 >= out + outlen) | |
4421 break; /* not sufficient space */ | |
4422 prevchar_isitem = TRUE; | |
4423 t = nstr; | |
4424 if (opt == STL_VIRTCOL_ALT) | |
4425 { | |
4426 *t++ = '-'; | |
4427 minwid--; | |
4428 } | |
4429 *t++ = '%'; | |
4430 if (zeropad) | |
4431 *t++ = '0'; | |
4432 *t++ = '*'; | |
1869 | 4433 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd'); |
7 | 4434 *t = 0; |
4435 | |
4436 for (n = num, l = 1; n >= nbase; n /= nbase) | |
4437 l++; | |
4438 if (opt == STL_VIRTCOL_ALT) | |
4439 l++; | |
4440 if (l > maxwid) | |
4441 { | |
4442 l += 2; | |
4443 n = l - maxwid; | |
4444 while (l-- > maxwid) | |
4445 num /= nbase; | |
4446 *t++ = '>'; | |
4447 *t++ = '%'; | |
4448 *t = t[-3]; | |
4449 *++t = 0; | |
272 | 4450 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, |
4451 0, num, n); | |
7 | 4452 } |
4453 else | |
272 | 4454 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, |
4455 minwid, num); | |
7 | 4456 p += STRLEN(p); |
4457 } | |
4458 else | |
4459 item[curitem].type = Empty; | |
4460 | |
4461 if (opt == STL_VIM_EXPR) | |
4462 vim_free(str); | |
4463 | |
4464 if (num >= 0 || (!itemisflag && str && *str)) | |
4465 prevchar_isflag = FALSE; /* Item not NULL, but not a flag */ | |
4466 curitem++; | |
4467 } | |
4468 *p = NUL; | |
4469 itemcnt = curitem; | |
4470 | |
678 | 4471 #ifdef FEAT_EVAL |
4472 if (usefmt != fmt) | |
4473 vim_free(usefmt); | |
4474 #endif | |
4475 | |
7 | 4476 width = vim_strsize(out); |
4477 if (maxwidth > 0 && width > maxwidth) | |
4478 { | |
1736 | 4479 /* Result is too long, must truncate somewhere. */ |
7 | 4480 l = 0; |
4481 if (itemcnt == 0) | |
4482 s = out; | |
4483 else | |
4484 { | |
4485 for ( ; l < itemcnt; l++) | |
4486 if (item[l].type == Trunc) | |
4487 { | |
4488 /* Truncate at %< item. */ | |
4489 s = item[l].start; | |
4490 break; | |
4491 } | |
4492 if (l == itemcnt) | |
4493 { | |
4494 /* No %< item, truncate first item. */ | |
4495 s = item[0].start; | |
4496 l = 0; | |
4497 } | |
4498 } | |
4499 | |
4500 if (width - vim_strsize(s) >= maxwidth) | |
4501 { | |
4502 /* Truncation mark is beyond max length */ | |
4503 #ifdef FEAT_MBYTE | |
4504 if (has_mbyte) | |
4505 { | |
4506 s = out; | |
4507 width = 0; | |
4508 for (;;) | |
4509 { | |
4510 width += ptr2cells(s); | |
4511 if (width >= maxwidth) | |
4512 break; | |
474 | 4513 s += (*mb_ptr2len)(s); |
7 | 4514 } |
4515 /* Fill up for half a double-wide character. */ | |
4516 while (++width < maxwidth) | |
4517 *s++ = fillchar; | |
4518 } | |
4519 else | |
4520 #endif | |
4521 s = out + maxwidth - 1; | |
4522 for (l = 0; l < itemcnt; l++) | |
4523 if (item[l].start > s) | |
4524 break; | |
4525 itemcnt = l; | |
4526 *s++ = '>'; | |
4527 *s = 0; | |
4528 } | |
4529 else | |
4530 { | |
4531 #ifdef FEAT_MBYTE | |
4532 if (has_mbyte) | |
4533 { | |
4534 n = 0; | |
4535 while (width >= maxwidth) | |
4536 { | |
4537 width -= ptr2cells(s + n); | |
474 | 4538 n += (*mb_ptr2len)(s + n); |
7 | 4539 } |
4540 } | |
4541 else | |
4542 #endif | |
4543 n = width - maxwidth + 1; | |
4544 p = s + n; | |
1618 | 4545 STRMOVE(s + 1, p); |
7 | 4546 *s = '<'; |
4547 | |
4548 /* Fill up for half a double-wide character. */ | |
4549 while (++width < maxwidth) | |
4550 { | |
4551 s = s + STRLEN(s); | |
4552 *s++ = fillchar; | |
4553 *s = NUL; | |
4554 } | |
4555 | |
4556 --n; /* count the '<' */ | |
4557 for (; l < itemcnt; l++) | |
4558 { | |
4559 if (item[l].start - n >= s) | |
4560 item[l].start -= n; | |
4561 else | |
4562 item[l].start = s; | |
4563 } | |
4564 } | |
4565 width = maxwidth; | |
4566 } | |
4567 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen) | |
4568 { | |
4569 /* Apply STL_MIDDLE if any */ | |
4570 for (l = 0; l < itemcnt; l++) | |
4571 if (item[l].type == Middle) | |
4572 break; | |
4573 if (l < itemcnt) | |
4574 { | |
4575 p = item[l].start + maxwidth - width; | |
1618 | 4576 STRMOVE(p, item[l].start); |
7 | 4577 for (s = item[l].start; s < p; s++) |
4578 *s = fillchar; | |
4579 for (l++; l < itemcnt; l++) | |
4580 item[l].start += maxwidth - width; | |
4581 width = maxwidth; | |
4582 } | |
4583 } | |
4584 | |
681 | 4585 /* Store the info about highlighting. */ |
4586 if (hltab != NULL) | |
7 | 4587 { |
681 | 4588 sp = hltab; |
7 | 4589 for (l = 0; l < itemcnt; l++) |
4590 { | |
4591 if (item[l].type == Highlight) | |
4592 { | |
681 | 4593 sp->start = item[l].start; |
4594 sp->userhl = item[l].minwid; | |
4595 sp++; | |
7 | 4596 } |
4597 } | |
681 | 4598 sp->start = NULL; |
4599 sp->userhl = 0; | |
4600 } | |
4601 | |
4602 /* Store the info about tab pages labels. */ | |
4603 if (tabtab != NULL) | |
4604 { | |
4605 sp = tabtab; | |
4606 for (l = 0; l < itemcnt; l++) | |
4607 { | |
4608 if (item[l].type == TabPage) | |
4609 { | |
4610 sp->start = item[l].start; | |
4611 sp->userhl = item[l].minwid; | |
4612 sp++; | |
4613 } | |
4614 } | |
4615 sp->start = NULL; | |
4616 sp->userhl = 0; | |
7 | 4617 } |
4618 | |
4619 return width; | |
4620 } | |
4621 #endif /* FEAT_STL_OPT */ | |
4622 | |
686 | 4623 #if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \ |
4624 || defined(FEAT_GUI_TABLINE) || defined(PROTO) | |
7 | 4625 /* |
1869 | 4626 * Get relative cursor position in window into "buf[buflen]", in the form 99%, |
4627 * using "Top", "Bot" or "All" when appropriate. | |
7 | 4628 */ |
4629 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4630 get_rel_pos( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4631 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4632 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4633 int buflen) |
7 | 4634 { |
4635 long above; /* number of lines above window */ | |
4636 long below; /* number of lines below window */ | |
4637 | |
6466 | 4638 if (buflen < 3) /* need at least 3 chars for writing */ |
4639 return; | |
7 | 4640 above = wp->w_topline - 1; |
4641 #ifdef FEAT_DIFF | |
4642 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill; | |
6975 | 4643 if (wp->w_topline == 1 && wp->w_topfill >= 1) |
4644 above = 0; /* All buffer lines are displayed and there is an | |
4645 * indication of filler lines, that can be considered | |
4646 * seeing all lines. */ | |
7 | 4647 #endif |
4648 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1; | |
4649 if (below <= 0) | |
1869 | 4650 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")), |
4651 (size_t)(buflen - 1)); | |
7 | 4652 else if (above <= 0) |
1869 | 4653 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1)); |
7 | 4654 else |
1869 | 4655 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L |
7 | 4656 ? (int)(above / ((above + below) / 100L)) |
4657 : (int)(above * 100L / (above + below))); | |
4658 } | |
4659 #endif | |
4660 | |
4661 /* | |
1869 | 4662 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file. |
7 | 4663 * Return TRUE if it was appended. |
4664 */ | |
1869 | 4665 static int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4666 append_arg_number( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4667 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4668 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4669 int buflen, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4670 int add_file) /* Add "file" before the arg number */ |
7 | 4671 { |
4672 char_u *p; | |
4673 | |
4674 if (ARGCOUNT <= 1) /* nothing to do */ | |
4675 return FALSE; | |
4676 | |
1869 | 4677 p = buf + STRLEN(buf); /* go to the end of the buffer */ |
4678 if (p - buf + 35 >= buflen) /* getting too long */ | |
7 | 4679 return FALSE; |
4680 *p++ = ' '; | |
4681 *p++ = '('; | |
4682 if (add_file) | |
4683 { | |
4684 STRCPY(p, "file "); | |
4685 p += 5; | |
4686 } | |
1869 | 4687 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)), |
4688 wp->w_arg_idx_invalid ? "(%d) of %d)" | |
7 | 4689 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT); |
4690 return TRUE; | |
4691 } | |
4692 | |
4693 /* | |
4694 * If fname is not a full path, make it a full path. | |
4695 * Returns pointer to allocated memory (NULL for failure). | |
4696 */ | |
4697 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4698 fix_fname(char_u *fname) |
7 | 4699 { |
4700 /* | |
4701 * Force expanding the path always for Unix, because symbolic links may | |
4702 * mess up the full path name, even though it starts with a '/'. | |
4703 * Also expand when there is ".." in the file name, try to remove it, | |
4704 * because "c:/src/../README" is equal to "c:/README". | |
1420 | 4705 * Similarly "c:/src//file" is equal to "c:/src/file". |
7 | 4706 * For MS-Windows also expand names like "longna~1" to "longname". |
4707 */ | |
1082 | 4708 #ifdef UNIX |
7 | 4709 return FullName_save(fname, TRUE); |
4710 #else | |
1420 | 4711 if (!vim_isAbsName(fname) |
4712 || strstr((char *)fname, "..") != NULL | |
4713 || strstr((char *)fname, "//") != NULL | |
4714 # ifdef BACKSLASH_IN_FILENAME | |
4715 || strstr((char *)fname, "\\\\") != NULL | |
4716 # endif | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
4717 # if defined(MSWIN) |
7 | 4718 || vim_strchr(fname, '~') != NULL |
1420 | 4719 # endif |
7 | 4720 ) |
4721 return FullName_save(fname, FALSE); | |
4722 | |
4723 fname = vim_strsave(fname); | |
4724 | |
1420 | 4725 # ifdef USE_FNAME_CASE |
4726 # ifdef USE_LONG_FNAME | |
7 | 4727 if (USE_LONG_FNAME) |
1420 | 4728 # endif |
7 | 4729 { |
4730 if (fname != NULL) | |
4731 fname_case(fname, 0); /* set correct case for file name */ | |
4732 } | |
1420 | 4733 # endif |
7 | 4734 |
4735 return fname; | |
4736 #endif | |
4737 } | |
4738 | |
4739 /* | |
4740 * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL. | |
4741 * "ffname" becomes a pointer to allocated memory (or NULL). | |
4742 */ | |
4743 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4744 fname_expand( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4745 buf_T *buf UNUSED, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4746 char_u **ffname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4747 char_u **sfname) |
7 | 4748 { |
4749 if (*ffname == NULL) /* if no file name given, nothing to do */ | |
4750 return; | |
4751 if (*sfname == NULL) /* if no short file name given, use ffname */ | |
4752 *sfname = *ffname; | |
4753 *ffname = fix_fname(*ffname); /* expand to full path */ | |
4754 | |
4755 #ifdef FEAT_SHORTCUT | |
4756 if (!buf->b_p_bin) | |
4757 { | |
844 | 4758 char_u *rfname; |
7 | 4759 |
4760 /* If the file name is a shortcut file, use the file it links to. */ | |
4761 rfname = mch_resolve_shortcut(*ffname); | |
844 | 4762 if (rfname != NULL) |
7 | 4763 { |
4764 vim_free(*ffname); | |
4765 *ffname = rfname; | |
4766 *sfname = rfname; | |
4767 } | |
4768 } | |
4769 #endif | |
4770 } | |
4771 | |
4772 /* | |
4773 * Get the file name for an argument list entry. | |
4774 */ | |
4775 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4776 alist_name(aentry_T *aep) |
7 | 4777 { |
4778 buf_T *bp; | |
4779 | |
4780 /* Use the name from the associated buffer if it exists. */ | |
4781 bp = buflist_findnr(aep->ae_fnum); | |
1036 | 4782 if (bp == NULL || bp->b_fname == NULL) |
7 | 4783 return aep->ae_fname; |
4784 return bp->b_fname; | |
4785 } | |
4786 | |
4787 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
4788 /* | |
4789 * do_arg_all(): Open up to 'count' windows, one for each argument. | |
4790 */ | |
4791 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4792 do_arg_all( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4793 int count, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4794 int forceit, /* hide buffers in current windows */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4795 int keep_tabs) /* keep current tabs, for ":tab drop file" */ |
7 | 4796 { |
4797 int i; | |
4798 win_T *wp, *wpnext; | |
3380 | 4799 char_u *opened; /* Array of weight for which args are open: |
4800 * 0: not opened | |
4801 * 1: opened in other tab | |
4802 * 2: opened in curtab | |
4803 * 3: opened in curtab and curwin | |
4804 */ | |
1411 | 4805 int opened_len; /* length of opened[] */ |
7 | 4806 int use_firstwin = FALSE; /* use first window for arglist */ |
4807 int split_ret = OK; | |
4808 int p_ea_save; | |
4809 alist_T *alist; /* argument list to be used */ | |
4810 buf_T *buf; | |
698 | 4811 tabpage_T *tpnext; |
4812 int had_tab = cmdmod.tab; | |
3380 | 4813 win_T *old_curwin, *last_curwin; |
4814 tabpage_T *old_curtab, *last_curtab; | |
726 | 4815 win_T *new_curwin = NULL; |
4816 tabpage_T *new_curtab = NULL; | |
7 | 4817 |
4818 if (ARGCOUNT <= 0) | |
4819 { | |
4820 /* Don't give an error message. We don't want it when the ":all" | |
4821 * command is in the .vimrc. */ | |
4822 return; | |
4823 } | |
4824 setpcmark(); | |
4825 | |
4826 opened_len = ARGCOUNT; | |
4827 opened = alloc_clear((unsigned)opened_len); | |
4828 if (opened == NULL) | |
4829 return; | |
4830 | |
3380 | 4831 /* Autocommands may do anything to the argument list. Make sure it's not |
4832 * freed while we are working here by "locking" it. We still have to | |
4833 * watch out for its size to be changed. */ | |
4834 alist = curwin->w_alist; | |
4835 ++alist->al_refcount; | |
4836 | |
4837 old_curwin = curwin; | |
4838 old_curtab = curtab; | |
4839 | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
4840 # ifdef FEAT_GUI |
7 | 4841 need_mouse_correct = TRUE; |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
4842 # endif |
7 | 4843 |
4844 /* | |
4845 * Try closing all windows that are not in the argument list. | |
4846 * Also close windows that are not full width; | |
4847 * When 'hidden' or "forceit" set the buffer becomes hidden. | |
4848 * Windows that have a changed buffer and can't be hidden won't be closed. | |
698 | 4849 * When the ":tab" modifier was used do this for all tab pages. |
7 | 4850 */ |
698 | 4851 if (had_tab > 0) |
4354 | 4852 goto_tabpage_tp(first_tabpage, TRUE, TRUE); |
698 | 4853 for (;;) |
7 | 4854 { |
698 | 4855 tpnext = curtab->tp_next; |
4856 for (wp = firstwin; wp != NULL; wp = wpnext) | |
7 | 4857 { |
698 | 4858 wpnext = wp->w_next; |
4859 buf = wp->w_buffer; | |
4860 if (buf->b_ffname == NULL | |
3380 | 4861 || (!keep_tabs && buf->b_nwindows > 1) |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
4862 || wp->w_width != Columns) |
3380 | 4863 i = opened_len; |
698 | 4864 else |
7 | 4865 { |
698 | 4866 /* check if the buffer in this window is in the arglist */ |
3380 | 4867 for (i = 0; i < opened_len; ++i) |
7 | 4868 { |
3380 | 4869 if (i < alist->al_ga.ga_len |
4870 && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum | |
4871 || fullpathcmp(alist_name(&AARGLIST(alist)[i]), | |
4872 buf->b_ffname, TRUE) & FPC_SAME)) | |
7 | 4873 { |
3380 | 4874 int weight = 1; |
4875 | |
4876 if (old_curtab == curtab) | |
726 | 4877 { |
3380 | 4878 ++weight; |
4879 if (old_curwin == wp) | |
4880 ++weight; | |
4881 } | |
4882 | |
4883 if (weight > (int)opened[i]) | |
4884 { | |
4885 opened[i] = (char_u)weight; | |
726 | 4886 if (i == 0) |
4887 { | |
3380 | 4888 if (new_curwin != NULL) |
4889 new_curwin->w_arg_idx = opened_len; | |
726 | 4890 new_curwin = wp; |
4891 new_curtab = curtab; | |
4892 } | |
4893 } | |
3380 | 4894 else if (keep_tabs) |
4895 i = opened_len; | |
4896 | |
4897 if (wp->w_alist != alist) | |
698 | 4898 { |
4899 /* Use the current argument list for all windows | |
4900 * containing a file from it. */ | |
4901 alist_unlink(wp->w_alist); | |
3380 | 4902 wp->w_alist = alist; |
698 | 4903 ++wp->w_alist->al_refcount; |
4904 } | |
4905 break; | |
7 | 4906 } |
698 | 4907 } |
4908 } | |
4909 wp->w_arg_idx = i; | |
4910 | |
3380 | 4911 if (i == opened_len && !keep_tabs)/* close this window */ |
698 | 4912 { |
4913 if (P_HID(buf) || forceit || buf->b_nwindows > 1 | |
726 | 4914 || !bufIsChanged(buf)) |
698 | 4915 { |
4916 /* If the buffer was changed, and we would like to hide it, | |
4917 * try autowriting. */ | |
726 | 4918 if (!P_HID(buf) && buf->b_nwindows <= 1 |
4919 && bufIsChanged(buf)) | |
698 | 4920 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
4921 #ifdef FEAT_AUTOCMD |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
4922 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
4923 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
4924 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
4925 #endif |
698 | 4926 (void)autowrite(buf, FALSE); |
4927 #ifdef FEAT_AUTOCMD | |
4928 /* check if autocommands removed the window */ | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
4929 if (!win_valid(wp) || !bufref_valid(&bufref)) |
698 | 4930 { |
4931 wpnext = firstwin; /* start all over... */ | |
4932 continue; | |
4933 } | |
4934 #endif | |
4935 } | |
4936 #ifdef FEAT_WINDOWS | |
726 | 4937 /* don't close last window */ |
10349
cf988222b150
commit https://github.com/vim/vim/commit/a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
4938 if (ONE_WINDOW |
3380 | 4939 && (first_tabpage->tp_next == NULL || !had_tab)) |
698 | 4940 #endif |
4941 use_firstwin = TRUE; | |
4942 #ifdef FEAT_WINDOWS | |
4943 else | |
4944 { | |
4945 win_close(wp, !P_HID(buf) && !bufIsChanged(buf)); | |
4946 # ifdef FEAT_AUTOCMD | |
4947 /* check if autocommands removed the next window */ | |
4948 if (!win_valid(wpnext)) | |
4949 wpnext = firstwin; /* start all over... */ | |
4950 # endif | |
4951 } | |
4952 #endif | |
7 | 4953 } |
4954 } | |
4955 } | |
698 | 4956 |
4957 /* Without the ":tab" modifier only do the current tab page. */ | |
4958 if (had_tab == 0 || tpnext == NULL) | |
4959 break; | |
4960 | |
7 | 4961 # ifdef FEAT_AUTOCMD |
698 | 4962 /* check if autocommands removed the next tab page */ |
4963 if (!valid_tabpage(tpnext)) | |
4964 tpnext = first_tabpage; /* start all over...*/ | |
7 | 4965 # endif |
4354 | 4966 goto_tabpage_tp(tpnext, TRUE, TRUE); |
7 | 4967 } |
4968 | |
4969 /* | |
4970 * Open a window for files in the argument list that don't have one. | |
4971 * ARGCOUNT may change while doing this, because of autocommands. | |
4972 */ | |
3380 | 4973 if (count > opened_len || count <= 0) |
4974 count = opened_len; | |
7 | 4975 |
4976 #ifdef FEAT_AUTOCMD | |
4977 /* Don't execute Win/Buf Enter/Leave autocommands here. */ | |
4978 ++autocmd_no_enter; | |
4979 ++autocmd_no_leave; | |
4980 #endif | |
3380 | 4981 last_curwin = curwin; |
4982 last_curtab = curtab; | |
7 | 4983 win_enter(lastwin, FALSE); |
819 | 4984 #ifdef FEAT_WINDOWS |
4985 /* ":drop all" should re-use an empty window to avoid "--remote-tab" | |
4986 * leaving an empty tab page when executed locally. */ | |
4987 if (keep_tabs && bufempty() && curbuf->b_nwindows == 1 | |
4988 && curbuf->b_ffname == NULL && !curbuf->b_changed) | |
4989 use_firstwin = TRUE; | |
4990 #endif | |
4991 | |
3380 | 4992 for (i = 0; i < count && i < opened_len && !got_int; ++i) |
7 | 4993 { |
4994 if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1) | |
4995 arg_had_last = TRUE; | |
3380 | 4996 if (opened[i] > 0) |
7 | 4997 { |
4998 /* Move the already present window to below the current window */ | |
4999 if (curwin->w_arg_idx != i) | |
5000 { | |
5001 for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next) | |
5002 { | |
5003 if (wpnext->w_arg_idx == i) | |
5004 { | |
3380 | 5005 if (keep_tabs) |
5006 { | |
5007 new_curwin = wpnext; | |
5008 new_curtab = curtab; | |
5009 } | |
5010 else | |
5011 win_move_after(wpnext, curwin); | |
7 | 5012 break; |
5013 } | |
5014 } | |
5015 } | |
5016 } | |
5017 else if (split_ret == OK) | |
5018 { | |
5019 if (!use_firstwin) /* split current window */ | |
5020 { | |
5021 p_ea_save = p_ea; | |
5022 p_ea = TRUE; /* use space from all windows */ | |
5023 split_ret = win_split(0, WSP_ROOM | WSP_BELOW); | |
5024 p_ea = p_ea_save; | |
5025 if (split_ret == FAIL) | |
5026 continue; | |
5027 } | |
5028 #ifdef FEAT_AUTOCMD | |
5029 else /* first window: do autocmd for leaving this buffer */ | |
5030 --autocmd_no_leave; | |
5031 #endif | |
5032 | |
5033 /* | |
726 | 5034 * edit file "i" |
7 | 5035 */ |
5036 curwin->w_arg_idx = i; | |
726 | 5037 if (i == 0) |
5038 { | |
5039 new_curwin = curwin; | |
5040 new_curtab = curtab; | |
5041 } | |
7 | 5042 (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL, |
5043 ECMD_ONE, | |
5044 ((P_HID(curwin->w_buffer) | |
5045 || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0) | |
1743 | 5046 + ECMD_OLDBUF, curwin); |
7 | 5047 #ifdef FEAT_AUTOCMD |
5048 if (use_firstwin) | |
5049 ++autocmd_no_leave; | |
5050 #endif | |
5051 use_firstwin = FALSE; | |
5052 } | |
5053 ui_breakcheck(); | |
698 | 5054 |
5055 /* When ":tab" was used open a new tab for a new window repeatedly. */ | |
5056 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm) | |
5057 cmdmod.tab = 9999; | |
7 | 5058 } |
5059 | |
5060 /* Remove the "lock" on the argument list. */ | |
5061 alist_unlink(alist); | |
5062 | |
5063 #ifdef FEAT_AUTOCMD | |
5064 --autocmd_no_enter; | |
5065 #endif | |
3380 | 5066 /* restore last referenced tabpage's curwin */ |
5067 if (last_curtab != new_curtab) | |
5068 { | |
5069 if (valid_tabpage(last_curtab)) | |
4354 | 5070 goto_tabpage_tp(last_curtab, TRUE, TRUE); |
3380 | 5071 if (win_valid(last_curwin)) |
5072 win_enter(last_curwin, FALSE); | |
5073 } | |
726 | 5074 /* to window with first arg */ |
5075 if (valid_tabpage(new_curtab)) | |
4354 | 5076 goto_tabpage_tp(new_curtab, TRUE, TRUE); |
726 | 5077 if (win_valid(new_curwin)) |
5078 win_enter(new_curwin, FALSE); | |
5079 | |
7 | 5080 #ifdef FEAT_AUTOCMD |
5081 --autocmd_no_leave; | |
5082 #endif | |
5083 vim_free(opened); | |
5084 } | |
5085 | |
5086 # if defined(FEAT_LISTCMDS) || defined(PROTO) | |
5087 /* | |
5088 * Open a window for a number of buffers. | |
5089 */ | |
5090 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5091 ex_buffer_all(exarg_T *eap) |
7 | 5092 { |
5093 buf_T *buf; | |
5094 win_T *wp, *wpnext; | |
5095 int split_ret = OK; | |
5096 int p_ea_save; | |
5097 int open_wins = 0; | |
5098 int r; | |
5099 int count; /* Maximum number of windows to open. */ | |
5100 int all; /* When TRUE also load inactive buffers. */ | |
698 | 5101 #ifdef FEAT_WINDOWS |
5102 int had_tab = cmdmod.tab; | |
5103 tabpage_T *tpnext; | |
5104 #endif | |
7 | 5105 |
5106 if (eap->addr_count == 0) /* make as many windows as possible */ | |
5107 count = 9999; | |
5108 else | |
5109 count = eap->line2; /* make as many windows as specified */ | |
5110 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide) | |
5111 all = FALSE; | |
5112 else | |
5113 all = TRUE; | |
5114 | |
5115 setpcmark(); | |
5116 | |
5117 #ifdef FEAT_GUI | |
5118 need_mouse_correct = TRUE; | |
5119 #endif | |
5120 | |
5121 /* | |
5122 * Close superfluous windows (two windows for the same buffer). | |
5123 * Also close windows that are not full-width. | |
5124 */ | |
698 | 5125 #ifdef FEAT_WINDOWS |
5126 if (had_tab > 0) | |
4354 | 5127 goto_tabpage_tp(first_tabpage, TRUE, TRUE); |
698 | 5128 for (;;) |
7 | 5129 { |
698 | 5130 #endif |
5131 tpnext = curtab->tp_next; | |
5132 for (wp = firstwin; wp != NULL; wp = wpnext) | |
7 | 5133 { |
698 | 5134 wpnext = wp->w_next; |
706 | 5135 if ((wp->w_buffer->b_nwindows > 1 |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
5136 #ifdef FEAT_WINDOWS |
698 | 5137 || ((cmdmod.split & WSP_VERT) |
5138 ? wp->w_height + wp->w_status_height < Rows - p_ch | |
706 | 5139 - tabline_height() |
698 | 5140 : wp->w_width != Columns) |
701 | 5141 || (had_tab > 0 && wp != firstwin) |
5142 #endif | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
5143 ) && !ONE_WINDOW |
3570 | 5144 #ifdef FEAT_AUTOCMD |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
5145 && !(wp->w_closing || wp->w_buffer->b_locked > 0) |
3570 | 5146 #endif |
5147 ) | |
698 | 5148 { |
5149 win_close(wp, FALSE); | |
7 | 5150 #ifdef FEAT_AUTOCMD |
698 | 5151 wpnext = firstwin; /* just in case an autocommand does |
5152 something strange with windows */ | |
701 | 5153 tpnext = first_tabpage; /* start all over...*/ |
698 | 5154 open_wins = 0; |
5155 #endif | |
5156 } | |
5157 else | |
5158 ++open_wins; | |
7 | 5159 } |
698 | 5160 |
5161 #ifdef FEAT_WINDOWS | |
5162 /* Without the ":tab" modifier only do the current tab page. */ | |
5163 if (had_tab == 0 || tpnext == NULL) | |
5164 break; | |
4354 | 5165 goto_tabpage_tp(tpnext, TRUE, TRUE); |
7 | 5166 } |
698 | 5167 #endif |
7 | 5168 |
5169 /* | |
5170 * Go through the buffer list. When a buffer doesn't have a window yet, | |
5171 * open one. Otherwise move the window to the right position. | |
5172 * Watch out for autocommands that delete buffers or windows! | |
5173 */ | |
5174 #ifdef FEAT_AUTOCMD | |
5175 /* Don't execute Win/Buf Enter/Leave autocommands here. */ | |
5176 ++autocmd_no_enter; | |
5177 #endif | |
5178 win_enter(lastwin, FALSE); | |
5179 #ifdef FEAT_AUTOCMD | |
5180 ++autocmd_no_leave; | |
5181 #endif | |
5182 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next) | |
5183 { | |
5184 /* Check if this buffer needs a window */ | |
5185 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl) | |
5186 continue; | |
5187 | |
701 | 5188 #ifdef FEAT_WINDOWS |
5189 if (had_tab != 0) | |
5190 { | |
5191 /* With the ":tab" modifier don't move the window. */ | |
5192 if (buf->b_nwindows > 0) | |
5193 wp = lastwin; /* buffer has a window, skip it */ | |
5194 else | |
5195 wp = NULL; | |
5196 } | |
5197 else | |
5198 #endif | |
5199 { | |
5200 /* Check if this buffer already has a window */ | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
5201 FOR_ALL_WINDOWS(wp) |
701 | 5202 if (wp->w_buffer == buf) |
5203 break; | |
5204 /* If the buffer already has a window, move it */ | |
5205 if (wp != NULL) | |
5206 win_move_after(wp, curwin); | |
5207 } | |
5208 | |
5209 if (wp == NULL && split_ret == OK) | |
7 | 5210 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5211 #ifdef FEAT_AUTOCMD |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5212 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5213 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5214 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5215 #endif |
7 | 5216 /* Split the window and put the buffer in it */ |
5217 p_ea_save = p_ea; | |
5218 p_ea = TRUE; /* use space from all windows */ | |
5219 split_ret = win_split(0, WSP_ROOM | WSP_BELOW); | |
5220 ++open_wins; | |
5221 p_ea = p_ea_save; | |
5222 if (split_ret == FAIL) | |
5223 continue; | |
5224 | |
5225 /* Open the buffer in this window. */ | |
576 | 5226 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 5227 swap_exists_action = SEA_DIALOG; |
5228 #endif | |
5229 set_curbuf(buf, DOBUF_GOTO); | |
5230 #ifdef FEAT_AUTOCMD | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5231 if (!bufref_valid(&bufref)) |
20 | 5232 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5233 /* autocommands deleted the buffer!!! */ |
576 | 5234 #if defined(HAS_SWAP_EXISTS_ACTION) |
20 | 5235 swap_exists_action = SEA_NONE; |
7 | 5236 # endif |
5237 break; | |
5238 } | |
5239 #endif | |
576 | 5240 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 5241 if (swap_exists_action == SEA_QUIT) |
5242 { | |
24 | 5243 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
5244 cleanup_T cs; | |
5245 | |
5246 /* Reset the error/interrupt/exception state here so that | |
5247 * aborting() returns FALSE when closing a window. */ | |
5248 enter_cleanup(&cs); | |
5249 # endif | |
5250 | |
5251 /* User selected Quit at ATTENTION prompt; close this window. */ | |
7 | 5252 win_close(curwin, TRUE); |
5253 --open_wins; | |
5254 swap_exists_action = SEA_NONE; | |
602 | 5255 swap_exists_did_quit = TRUE; |
24 | 5256 |
5257 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
5258 /* Restore the error/interrupt/exception state if not | |
5259 * discarded by a new aborting error, interrupt, or uncaught | |
5260 * exception. */ | |
5261 leave_cleanup(&cs); | |
5262 # endif | |
7 | 5263 } |
5264 else | |
5265 handle_swap_exists(NULL); | |
5266 #endif | |
5267 } | |
5268 | |
5269 ui_breakcheck(); | |
5270 if (got_int) | |
5271 { | |
5272 (void)vgetc(); /* only break the file loading, not the rest */ | |
5273 break; | |
5274 } | |
20 | 5275 #ifdef FEAT_EVAL |
5276 /* Autocommands deleted the buffer or aborted script processing!!! */ | |
5277 if (aborting()) | |
5278 break; | |
5279 #endif | |
698 | 5280 #ifdef FEAT_WINDOWS |
5281 /* When ":tab" was used open a new tab for a new window repeatedly. */ | |
5282 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm) | |
5283 cmdmod.tab = 9999; | |
5284 #endif | |
7 | 5285 } |
5286 #ifdef FEAT_AUTOCMD | |
5287 --autocmd_no_enter; | |
5288 #endif | |
5289 win_enter(firstwin, FALSE); /* back to first window */ | |
5290 #ifdef FEAT_AUTOCMD | |
5291 --autocmd_no_leave; | |
5292 #endif | |
5293 | |
5294 /* | |
5295 * Close superfluous windows. | |
5296 */ | |
5297 for (wp = lastwin; open_wins > count; ) | |
5298 { | |
5299 r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer) | |
5300 || autowrite(wp->w_buffer, FALSE) == OK); | |
5301 #ifdef FEAT_AUTOCMD | |
5302 if (!win_valid(wp)) | |
5303 { | |
5304 /* BufWrite Autocommands made the window invalid, start over */ | |
5305 wp = lastwin; | |
5306 } | |
5307 else | |
5308 #endif | |
5309 if (r) | |
5310 { | |
5311 win_close(wp, !P_HID(wp->w_buffer)); | |
5312 --open_wins; | |
5313 wp = lastwin; | |
5314 } | |
5315 else | |
5316 { | |
5317 wp = wp->w_prev; | |
5318 if (wp == NULL) | |
5319 break; | |
5320 } | |
5321 } | |
5322 } | |
5323 # endif /* FEAT_LISTCMDS */ | |
5324 | |
5325 #endif /* FEAT_WINDOWS */ | |
5326 | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
5327 static int chk_modeline(linenr_T, int); |
717 | 5328 |
7 | 5329 /* |
5330 * do_modelines() - process mode lines for the current file | |
5331 * | |
717 | 5332 * "flags" can be: |
5333 * OPT_WINONLY only set options local to window | |
5334 * OPT_NOWIN don't set options local to window | |
5335 * | |
7 | 5336 * Returns immediately if the "ml" option isn't set. |
5337 */ | |
5338 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5339 do_modelines(int flags) |
7 | 5340 { |
23 | 5341 linenr_T lnum; |
5342 int nmlines; | |
5343 static int entered = 0; | |
7 | 5344 |
5345 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0) | |
5346 return; | |
5347 | |
5348 /* Disallow recursive entry here. Can happen when executing a modeline | |
5349 * triggers an autocommand, which reloads modelines with a ":do". */ | |
5350 if (entered) | |
5351 return; | |
5352 | |
5353 ++entered; | |
5354 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines; | |
5355 ++lnum) | |
717 | 5356 if (chk_modeline(lnum, flags) == FAIL) |
7 | 5357 nmlines = 0; |
5358 | |
5359 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines | |
5360 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum) | |
717 | 5361 if (chk_modeline(lnum, flags) == FAIL) |
7 | 5362 nmlines = 0; |
5363 --entered; | |
5364 } | |
5365 | |
5366 #include "version.h" /* for version number */ | |
5367 | |
5368 /* | |
5369 * chk_modeline() - check a single line for a mode string | |
5370 * Return FAIL if an error encountered. | |
5371 */ | |
5372 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5373 chk_modeline( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5374 linenr_T lnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5375 int flags) /* Same as for do_modelines(). */ |
7 | 5376 { |
5377 char_u *s; | |
5378 char_u *e; | |
5379 char_u *linecopy; /* local copy of any modeline found */ | |
5380 int prev; | |
5381 int vers; | |
5382 int end; | |
5383 int retval = OK; | |
5384 char_u *save_sourcing_name; | |
5385 linenr_T save_sourcing_lnum; | |
5386 #ifdef FEAT_EVAL | |
5387 scid_T save_SID; | |
5388 #endif | |
5389 | |
5390 prev = -1; | |
5391 for (s = ml_get(lnum); *s != NUL; ++s) | |
5392 { | |
5393 if (prev == -1 || vim_isspace(prev)) | |
5394 { | |
5395 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0) | |
5396 || STRNCMP(s, "vi:", (size_t)3) == 0) | |
5397 break; | |
5010
b614332f7df2
updated for version 7.3.1249
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
5398 /* Accept both "vim" and "Vim". */ |
b614332f7df2
updated for version 7.3.1249
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
5399 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm') |
7 | 5400 { |
5401 if (s[3] == '<' || s[3] == '=' || s[3] == '>') | |
5402 e = s + 4; | |
5403 else | |
5404 e = s + 3; | |
5405 vers = getdigits(&e); | |
5406 if (*e == ':' | |
5043
53c1b30632df
updated for version 7.3.1265
Bram Moolenaar <bram@vim.org>
parents:
5010
diff
changeset
|
5407 && (s[0] != 'V' |
53c1b30632df
updated for version 7.3.1265
Bram Moolenaar <bram@vim.org>
parents:
5010
diff
changeset
|
5408 || STRNCMP(skipwhite(e + 1), "set", 3) == 0) |
7 | 5409 && (s[3] == ':' |
5410 || (VIM_VERSION_100 >= vers && isdigit(s[3])) | |
5411 || (VIM_VERSION_100 < vers && s[3] == '<') | |
5412 || (VIM_VERSION_100 > vers && s[3] == '>') | |
5413 || (VIM_VERSION_100 == vers && s[3] == '='))) | |
5414 break; | |
5415 } | |
5416 } | |
5417 prev = *s; | |
5418 } | |
5419 | |
5420 if (*s) | |
5421 { | |
5422 do /* skip over "ex:", "vi:" or "vim:" */ | |
5423 ++s; | |
5424 while (s[-1] != ':'); | |
5425 | |
5426 s = linecopy = vim_strsave(s); /* copy the line, it will change */ | |
5427 if (linecopy == NULL) | |
5428 return FAIL; | |
5429 | |
5430 save_sourcing_lnum = sourcing_lnum; | |
5431 save_sourcing_name = sourcing_name; | |
5432 sourcing_lnum = lnum; /* prepare for emsg() */ | |
5433 sourcing_name = (char_u *)"modelines"; | |
5434 | |
5435 end = FALSE; | |
5436 while (end == FALSE) | |
5437 { | |
5438 s = skipwhite(s); | |
5439 if (*s == NUL) | |
5440 break; | |
5441 | |
5442 /* | |
5443 * Find end of set command: ':' or end of line. | |
5444 * Skip over "\:", replacing it with ":". | |
5445 */ | |
5446 for (e = s; *e != ':' && *e != NUL; ++e) | |
5447 if (e[0] == '\\' && e[1] == ':') | |
1618 | 5448 STRMOVE(e, e + 1); |
7 | 5449 if (*e == NUL) |
5450 end = TRUE; | |
5451 | |
5452 /* | |
5453 * If there is a "set" command, require a terminating ':' and | |
5454 * ignore the stuff after the ':'. | |
5455 * "vi:set opt opt opt: foo" -- foo not interpreted | |
5456 * "vi:opt opt opt: foo" -- foo interpreted | |
5457 * Accept "se" for compatibility with Elvis. | |
5458 */ | |
5459 if (STRNCMP(s, "set ", (size_t)4) == 0 | |
5460 || STRNCMP(s, "se ", (size_t)3) == 0) | |
5461 { | |
5462 if (*e != ':') /* no terminating ':'? */ | |
5463 break; | |
5464 end = TRUE; | |
5465 s = vim_strchr(s, ' ') + 1; | |
5466 } | |
5467 *e = NUL; /* truncate the set command */ | |
5468 | |
5469 if (*s != NUL) /* skip over an empty "::" */ | |
5470 { | |
5471 #ifdef FEAT_EVAL | |
5472 save_SID = current_SID; | |
5473 current_SID = SID_MODELINE; | |
5474 #endif | |
717 | 5475 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags); |
7 | 5476 #ifdef FEAT_EVAL |
5477 current_SID = save_SID; | |
5478 #endif | |
5479 if (retval == FAIL) /* stop if error found */ | |
5480 break; | |
5481 } | |
5482 s = e + 1; /* advance to next part */ | |
5483 } | |
5484 | |
5485 sourcing_lnum = save_sourcing_lnum; | |
5486 sourcing_name = save_sourcing_name; | |
5487 | |
5488 vim_free(linecopy); | |
5489 } | |
5490 return retval; | |
5491 } | |
5492 | |
1559 | 5493 #if defined(FEAT_VIMINFO) || defined(PROTO) |
7 | 5494 int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5495 read_viminfo_bufferlist( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5496 vir_T *virp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5497 int writing) |
7 | 5498 { |
5499 char_u *tab; | |
5500 linenr_T lnum; | |
5501 colnr_T col; | |
5502 buf_T *buf; | |
5503 char_u *sfname; | |
5504 char_u *xline; | |
5505 | |
5506 /* Handle long line and escaped characters. */ | |
5507 xline = viminfo_readstring(virp, 1, FALSE); | |
5508 | |
5509 /* don't read in if there are files on the command-line or if writing: */ | |
5510 if (xline != NULL && !writing && ARGCOUNT == 0 | |
5511 && find_viminfo_parameter('%') != NULL) | |
5512 { | |
5513 /* Format is: <fname> Tab <lnum> Tab <col>. | |
5514 * Watch out for a Tab in the file name, work from the end. */ | |
5515 lnum = 0; | |
5516 col = 0; | |
5517 tab = vim_strrchr(xline, '\t'); | |
5518 if (tab != NULL) | |
5519 { | |
5520 *tab++ = '\0'; | |
1869 | 5521 col = (colnr_T)atoi((char *)tab); |
7 | 5522 tab = vim_strrchr(xline, '\t'); |
5523 if (tab != NULL) | |
5524 { | |
5525 *tab++ = '\0'; | |
5526 lnum = atol((char *)tab); | |
5527 } | |
5528 } | |
5529 | |
5530 /* Expand "~/" in the file name at "line + 1" to a full path. | |
5531 * Then try shortening it by comparing with the current directory */ | |
5532 expand_env(xline, NameBuff, MAXPATHL); | |
1411 | 5533 sfname = shorten_fname1(NameBuff); |
7 | 5534 |
5535 buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED); | |
5536 if (buf != NULL) /* just in case... */ | |
5537 { | |
5538 buf->b_last_cursor.lnum = lnum; | |
5539 buf->b_last_cursor.col = col; | |
5540 buflist_setfpos(buf, curwin, lnum, col, FALSE); | |
5541 } | |
5542 } | |
5543 vim_free(xline); | |
5544 | |
5545 return viminfo_readline(virp); | |
5546 } | |
5547 | |
5548 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5549 write_viminfo_bufferlist(FILE *fp) |
7 | 5550 { |
5551 buf_T *buf; | |
5552 #ifdef FEAT_WINDOWS | |
5553 win_T *win; | |
671 | 5554 tabpage_T *tp; |
7 | 5555 #endif |
5556 char_u *line; | |
23 | 5557 int max_buffers; |
7 | 5558 |
5559 if (find_viminfo_parameter('%') == NULL) | |
5560 return; | |
5561 | |
23 | 5562 /* Without a number -1 is returned: do all buffers. */ |
5563 max_buffers = get_viminfo_parameter('%'); | |
5564 | |
7 | 5565 /* Allocate room for the file name, lnum and col. */ |
1869 | 5566 #define LINE_BUF_LEN (MAXPATHL + 40) |
5567 line = alloc(LINE_BUF_LEN); | |
7 | 5568 if (line == NULL) |
5569 return; | |
5570 | |
5571 #ifdef FEAT_WINDOWS | |
671 | 5572 FOR_ALL_TAB_WINDOWS(tp, win) |
7 | 5573 set_last_cursor(win); |
5574 #else | |
5575 set_last_cursor(curwin); | |
5576 #endif | |
5577 | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
5578 fputs(_("\n# Buffer list:\n"), fp); |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
5579 FOR_ALL_BUFFERS(buf) |
7 | 5580 { |
5581 if (buf->b_fname == NULL | |
5582 || !buf->b_p_bl | |
5583 #ifdef FEAT_QUICKFIX | |
5584 || bt_quickfix(buf) | |
5585 #endif | |
5586 || removable(buf->b_ffname)) | |
5587 continue; | |
5588 | |
23 | 5589 if (max_buffers-- == 0) |
5590 break; | |
7 | 5591 putc('%', fp); |
5592 home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE); | |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2253
diff
changeset
|
5593 vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d", |
7 | 5594 (long)buf->b_last_cursor.lnum, |
5595 buf->b_last_cursor.col); | |
5596 viminfo_writestring(fp, line); | |
5597 } | |
5598 vim_free(line); | |
5599 } | |
5600 #endif | |
5601 | |
5602 | |
5603 /* | |
5604 * Return special buffer name. | |
5605 * Returns NULL when the buffer has a normal file name. | |
5606 */ | |
3839 | 5607 char_u * |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5608 buf_spname(buf_T *buf) |
7 | 5609 { |
5610 #if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS) | |
5611 if (bt_quickfix(buf)) | |
643 | 5612 { |
5208
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5613 win_T *win; |
1559 | 5614 tabpage_T *tp; |
643 | 5615 |
5616 /* | |
5617 * For location list window, w_llist_ref points to the location list. | |
5618 * For quickfix window, w_llist_ref is NULL. | |
5619 */ | |
5208
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5620 if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL) |
3839 | 5621 return (char_u *)_(msg_loclist); |
643 | 5622 else |
3839 | 5623 return (char_u *)_(msg_qflist); |
643 | 5624 } |
7 | 5625 #endif |
5626 #ifdef FEAT_QUICKFIX | |
5627 /* There is no _file_ when 'buftype' is "nofile", b_sfname | |
5628 * contains the name as specified by the user */ | |
5629 if (bt_nofile(buf)) | |
5630 { | |
5631 if (buf->b_sfname != NULL) | |
3839 | 5632 return buf->b_sfname; |
5633 return (char_u *)_("[Scratch]"); | |
7 | 5634 } |
5635 #endif | |
5636 if (buf->b_fname == NULL) | |
3839 | 5637 return (char_u *)_("[No Name]"); |
7 | 5638 return NULL; |
5639 } | |
5640 | |
5208
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5641 #if (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \ |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5642 || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \ |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5643 || defined(PROTO) |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5644 /* |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5645 * Find a window for buffer "buf". |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5646 * If found OK is returned and "wp" and "tp" are set to the window and tabpage. |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5647 * If not found FAIL is returned. |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5648 */ |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5649 int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5650 find_win_for_buf( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5651 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5652 win_T **wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5653 tabpage_T **tp) |
5208
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5654 { |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5655 FOR_ALL_TAB_WINDOWS(*tp, *wp) |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5656 if ((*wp)->w_buffer == buf) |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5657 goto win_found; |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5658 return FAIL; |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5659 win_found: |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5660 return OK; |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5661 } |
bc4fb0317465
updated for version 7.4a.030
Bram Moolenaar <bram@vim.org>
parents:
5043
diff
changeset
|
5662 #endif |
7 | 5663 |
5664 #if defined(FEAT_SIGNS) || defined(PROTO) | |
5665 /* | |
5666 * Insert the sign into the signlist. | |
5667 */ | |
5668 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5669 insert_sign( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5670 buf_T *buf, /* buffer to store sign in */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5671 signlist_T *prev, /* previous sign entry */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5672 signlist_T *next, /* next sign entry */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5673 int id, /* sign ID */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5674 linenr_T lnum, /* line number which gets the mark */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5675 int typenr) /* typenr of sign we are adding */ |
7 | 5676 { |
5677 signlist_T *newsign; | |
5678 | |
5679 newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE); | |
5680 if (newsign != NULL) | |
5681 { | |
5682 newsign->id = id; | |
5683 newsign->lnum = lnum; | |
5684 newsign->typenr = typenr; | |
5685 newsign->next = next; | |
5686 #ifdef FEAT_NETBEANS_INTG | |
5687 newsign->prev = prev; | |
5688 if (next != NULL) | |
5689 next->prev = newsign; | |
5690 #endif | |
5691 | |
5692 if (prev == NULL) | |
5693 { | |
5694 /* When adding first sign need to redraw the windows to create the | |
5695 * column for signs. */ | |
5696 if (buf->b_signlist == NULL) | |
5697 { | |
5698 redraw_buf_later(buf, NOT_VALID); | |
5699 changed_cline_bef_curs(); | |
5700 } | |
5701 | |
5702 /* first sign in signlist */ | |
5703 buf->b_signlist = newsign; | |
6689 | 5704 #ifdef FEAT_NETBEANS_INTG |
5705 if (netbeans_active()) | |
5706 buf->b_has_sign_column = TRUE; | |
5707 #endif | |
7 | 5708 } |
5709 else | |
5710 prev->next = newsign; | |
5711 } | |
5712 } | |
5713 | |
5714 /* | |
5715 * Add the sign into the signlist. Find the right spot to do it though. | |
5716 */ | |
5717 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5718 buf_addsign( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5719 buf_T *buf, /* buffer to store sign in */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5720 int id, /* sign ID */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5721 linenr_T lnum, /* line number which gets the mark */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5722 int typenr) /* typenr of sign we are adding */ |
7 | 5723 { |
5724 signlist_T *sign; /* a sign in the signlist */ | |
5725 signlist_T *prev; /* the previous sign */ | |
5726 | |
5727 prev = NULL; | |
5728 for (sign = buf->b_signlist; sign != NULL; sign = sign->next) | |
5729 { | |
5730 if (lnum == sign->lnum && id == sign->id) | |
5731 { | |
5732 sign->typenr = typenr; | |
5733 return; | |
5734 } | |
5735 else if ( | |
5736 #ifndef FEAT_NETBEANS_INTG /* keep signs sorted by lnum */ | |
5737 id < 0 && | |
5738 #endif | |
5739 lnum < sign->lnum) | |
5740 { | |
5741 #ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */ | |
5742 /* XXX - GRP: Is this because of sign slide problem? Or is it | |
5743 * really needed? Or is it because we allow multiple signs per | |
5744 * line? If so, should I add that feature to FEAT_SIGNS? | |
5745 */ | |
5746 while (prev != NULL && prev->lnum == lnum) | |
5747 prev = prev->prev; | |
5748 if (prev == NULL) | |
5749 sign = buf->b_signlist; | |
5750 else | |
5751 sign = prev->next; | |
5752 #endif | |
5753 insert_sign(buf, prev, sign, id, lnum, typenr); | |
5754 return; | |
5755 } | |
5756 prev = sign; | |
5757 } | |
5758 #ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */ | |
5759 /* XXX - GRP: See previous comment */ | |
5760 while (prev != NULL && prev->lnum == lnum) | |
5761 prev = prev->prev; | |
5762 if (prev == NULL) | |
5763 sign = buf->b_signlist; | |
5764 else | |
5765 sign = prev->next; | |
5766 #endif | |
5767 insert_sign(buf, prev, sign, id, lnum, typenr); | |
5768 | |
5769 return; | |
5770 } | |
5771 | |
5869 | 5772 /* |
5773 * For an existing, placed sign "markId" change the type to "typenr". | |
5774 * Returns the line number of the sign, or zero if the sign is not found. | |
5775 */ | |
1869 | 5776 linenr_T |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5777 buf_change_sign_type( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5778 buf_T *buf, /* buffer to store sign in */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5779 int markId, /* sign ID */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5780 int typenr) /* typenr of sign we are adding */ |
7 | 5781 { |
5782 signlist_T *sign; /* a sign in the signlist */ | |
5783 | |
5784 for (sign = buf->b_signlist; sign != NULL; sign = sign->next) | |
5785 { | |
5786 if (sign->id == markId) | |
5787 { | |
5788 sign->typenr = typenr; | |
5789 return sign->lnum; | |
5790 } | |
5791 } | |
5792 | |
1869 | 5793 return (linenr_T)0; |
7 | 5794 } |
5795 | |
1869 | 5796 int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5797 buf_getsigntype( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5798 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5799 linenr_T lnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5800 int type) /* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */ |
7 | 5801 { |
5802 signlist_T *sign; /* a sign in a b_signlist */ | |
5803 | |
5804 for (sign = buf->b_signlist; sign != NULL; sign = sign->next) | |
5805 if (sign->lnum == lnum | |
5806 && (type == SIGN_ANY | |
5807 # ifdef FEAT_SIGN_ICONS | |
5808 || (type == SIGN_ICON | |
5809 && sign_get_image(sign->typenr) != NULL) | |
5810 # endif | |
5811 || (type == SIGN_TEXT | |
5812 && sign_get_text(sign->typenr) != NULL) | |
5813 || (type == SIGN_LINEHL | |
5814 && sign_get_attr(sign->typenr, TRUE) != 0))) | |
5815 return sign->typenr; | |
5816 return 0; | |
5817 } | |
5818 | |
5819 | |
5820 linenr_T | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5821 buf_delsign( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5822 buf_T *buf, /* buffer sign is stored in */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5823 int id) /* sign id */ |
7 | 5824 { |
5825 signlist_T **lastp; /* pointer to pointer to current sign */ | |
5826 signlist_T *sign; /* a sign in a b_signlist */ | |
5827 signlist_T *next; /* the next sign in a b_signlist */ | |
5828 linenr_T lnum; /* line number whose sign was deleted */ | |
5829 | |
5830 lastp = &buf->b_signlist; | |
5831 lnum = 0; | |
5832 for (sign = buf->b_signlist; sign != NULL; sign = next) | |
5833 { | |
5834 next = sign->next; | |
5835 if (sign->id == id) | |
5836 { | |
5837 *lastp = next; | |
5838 #ifdef FEAT_NETBEANS_INTG | |
5839 if (next != NULL) | |
5840 next->prev = sign->prev; | |
5841 #endif | |
5842 lnum = sign->lnum; | |
5843 vim_free(sign); | |
5844 break; | |
5845 } | |
5846 else | |
5847 lastp = &sign->next; | |
5848 } | |
5849 | |
5850 /* When deleted the last sign need to redraw the windows to remove the | |
5851 * sign column. */ | |
5852 if (buf->b_signlist == NULL) | |
5853 { | |
5854 redraw_buf_later(buf, NOT_VALID); | |
5855 changed_cline_bef_curs(); | |
5856 } | |
5857 | |
5858 return lnum; | |
5859 } | |
5860 | |
5861 | |
5862 /* | |
5863 * Find the line number of the sign with the requested id. If the sign does | |
5864 * not exist, return 0 as the line number. This will still let the correct file | |
5865 * get loaded. | |
5866 */ | |
5867 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5868 buf_findsign( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5869 buf_T *buf, /* buffer to store sign in */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5870 int id) /* sign ID */ |
7 | 5871 { |
5872 signlist_T *sign; /* a sign in the signlist */ | |
5873 | |
5874 for (sign = buf->b_signlist; sign != NULL; sign = sign->next) | |
5875 if (sign->id == id) | |
5876 return sign->lnum; | |
5877 | |
5878 return 0; | |
5879 } | |
5880 | |
5881 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5882 buf_findsign_id( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5883 buf_T *buf, /* buffer whose sign we are searching for */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5884 linenr_T lnum) /* line number of sign */ |
7 | 5885 { |
5886 signlist_T *sign; /* a sign in the signlist */ | |
5887 | |
5888 for (sign = buf->b_signlist; sign != NULL; sign = sign->next) | |
5889 if (sign->lnum == lnum) | |
5890 return sign->id; | |
5891 | |
5892 return 0; | |
5893 } | |
5894 | |
5895 | |
5896 # if defined(FEAT_NETBEANS_INTG) || defined(PROTO) | |
5897 /* see if a given type of sign exists on a specific line */ | |
5898 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5899 buf_findsigntype_id( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5900 buf_T *buf, /* buffer whose sign we are searching for */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5901 linenr_T lnum, /* line number of sign */ |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5902 int typenr) /* sign type number */ |
7 | 5903 { |
5904 signlist_T *sign; /* a sign in the signlist */ | |
5905 | |
5906 for (sign = buf->b_signlist; sign != NULL; sign = sign->next) | |
5907 if (sign->lnum == lnum && sign->typenr == typenr) | |
5908 return sign->id; | |
5909 | |
5910 return 0; | |
5911 } | |
5912 | |
5913 | |
5914 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) | |
5915 /* return the number of icons on the given line */ | |
5916 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5917 buf_signcount(buf_T *buf, linenr_T lnum) |
7 | 5918 { |
5919 signlist_T *sign; /* a sign in the signlist */ | |
5920 int count = 0; | |
5921 | |
5922 for (sign = buf->b_signlist; sign != NULL; sign = sign->next) | |
5923 if (sign->lnum == lnum) | |
5924 if (sign_get_image(sign->typenr) != NULL) | |
5925 count++; | |
5926 | |
5927 return count; | |
5928 } | |
5929 # endif /* FEAT_SIGN_ICONS */ | |
5930 # endif /* FEAT_NETBEANS_INTG */ | |
5931 | |
5932 | |
5933 /* | |
5934 * Delete signs in buffer "buf". | |
5935 */ | |
3672 | 5936 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5937 buf_delete_signs(buf_T *buf) |
7 | 5938 { |
5939 signlist_T *next; | |
5940 | |
5869 | 5941 /* When deleting the last sign need to redraw the windows to remove the |
6060 | 5942 * sign column. Not when curwin is NULL (this means we're exiting). */ |
5943 if (buf->b_signlist != NULL && curwin != NULL) | |
5869 | 5944 { |
5945 redraw_buf_later(buf, NOT_VALID); | |
5946 changed_cline_bef_curs(); | |
5947 } | |
5948 | |
7 | 5949 while (buf->b_signlist != NULL) |
5950 { | |
5951 next = buf->b_signlist->next; | |
5952 vim_free(buf->b_signlist); | |
5953 buf->b_signlist = next; | |
5954 } | |
5955 } | |
5956 | |
5957 /* | |
5958 * Delete all signs in all buffers. | |
5959 */ | |
5960 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5961 buf_delete_all_signs(void) |
7 | 5962 { |
5963 buf_T *buf; /* buffer we are checking for signs */ | |
5964 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
5965 FOR_ALL_BUFFERS(buf) |
7 | 5966 if (buf->b_signlist != NULL) |
5967 buf_delete_signs(buf); | |
5968 } | |
5969 | |
5970 /* | |
5971 * List placed signs for "rbuf". If "rbuf" is NULL do it for all buffers. | |
5972 */ | |
5973 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5974 sign_list_placed(buf_T *rbuf) |
7 | 5975 { |
5976 buf_T *buf; | |
5977 signlist_T *p; | |
5978 char lbuf[BUFSIZ]; | |
5979 | |
5980 MSG_PUTS_TITLE(_("\n--- Signs ---")); | |
5981 msg_putchar('\n'); | |
5982 if (rbuf == NULL) | |
5983 buf = firstbuf; | |
5984 else | |
5985 buf = rbuf; | |
3411 | 5986 while (buf != NULL && !got_int) |
7 | 5987 { |
5988 if (buf->b_signlist != NULL) | |
5989 { | |
272 | 5990 vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname); |
7 | 5991 MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D)); |
5992 msg_putchar('\n'); | |
5993 } | |
3411 | 5994 for (p = buf->b_signlist; p != NULL && !got_int; p = p->next) |
7 | 5995 { |
272 | 5996 vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d name=%s"), |
7 | 5997 (long)p->lnum, p->id, sign_typenr2name(p->typenr)); |
5998 MSG_PUTS(lbuf); | |
5999 msg_putchar('\n'); | |
6000 } | |
6001 if (rbuf != NULL) | |
6002 break; | |
6003 buf = buf->b_next; | |
6004 } | |
6005 } | |
6006 | |
6007 /* | |
6008 * Adjust a placed sign for inserted/deleted lines. | |
6009 */ | |
6010 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6011 sign_mark_adjust( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6012 linenr_T line1, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6013 linenr_T line2, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6014 long amount, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6015 long amount_after) |
7 | 6016 { |
6017 signlist_T *sign; /* a sign in a b_signlist */ | |
6018 | |
6019 for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next) | |
6020 { | |
6021 if (sign->lnum >= line1 && sign->lnum <= line2) | |
6022 { | |
6023 if (amount == MAXLNUM) | |
6024 sign->lnum = line1; | |
6025 else | |
6026 sign->lnum += amount; | |
6027 } | |
6028 else if (sign->lnum > line2) | |
6029 sign->lnum += amount_after; | |
6030 } | |
6031 } | |
6032 #endif /* FEAT_SIGNS */ | |
6033 | |
6034 /* | |
6035 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed. | |
6036 */ | |
6037 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6038 set_buflisted(int on) |
7 | 6039 { |
6040 if (on != curbuf->b_p_bl) | |
6041 { | |
6042 curbuf->b_p_bl = on; | |
6043 #ifdef FEAT_AUTOCMD | |
6044 if (on) | |
6045 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf); | |
6046 else | |
6047 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); | |
6048 #endif | |
6049 } | |
6050 } | |
6051 | |
6052 /* | |
6053 * Read the file for "buf" again and check if the contents changed. | |
6054 * Return TRUE if it changed or this could not be checked. | |
6055 */ | |
6056 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6057 buf_contents_changed(buf_T *buf) |
7 | 6058 { |
6059 buf_T *newbuf; | |
6060 int differ = TRUE; | |
6061 linenr_T lnum; | |
6062 aco_save_T aco; | |
6063 exarg_T ea; | |
6064 | |
6065 /* Allocate a buffer without putting it in the buffer list. */ | |
6066 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); | |
6067 if (newbuf == NULL) | |
6068 return TRUE; | |
6069 | |
6070 /* Force the 'fileencoding' and 'fileformat' to be equal. */ | |
6071 if (prep_exarg(&ea, buf) == FAIL) | |
6072 { | |
6073 wipe_buffer(newbuf, FALSE); | |
6074 return TRUE; | |
6075 } | |
6076 | |
6077 /* set curwin/curbuf to buf and save a few things */ | |
6078 aucmd_prepbuf(&aco, newbuf); | |
6079 | |
625 | 6080 if (ml_open(curbuf) == OK |
7 | 6081 && readfile(buf->b_ffname, buf->b_fname, |
6082 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, | |
6083 &ea, READ_NEW | READ_DUMMY) == OK) | |
6084 { | |
6085 /* compare the two files line by line */ | |
6086 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count) | |
6087 { | |
6088 differ = FALSE; | |
6089 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
6090 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0) | |
6091 { | |
6092 differ = TRUE; | |
6093 break; | |
6094 } | |
6095 } | |
6096 } | |
6097 vim_free(ea.cmd); | |
6098 | |
6099 /* restore curwin/curbuf and a few other things */ | |
6100 aucmd_restbuf(&aco); | |
6101 | |
6102 if (curbuf != newbuf) /* safety check */ | |
6103 wipe_buffer(newbuf, FALSE); | |
6104 | |
6105 return differ; | |
6106 } | |
6107 | |
6108 /* | |
6109 * Wipe out a buffer and decrement the last buffer number if it was used for | |
6110 * this buffer. Call this to wipe out a temp buffer that does not contain any | |
6111 * marks. | |
6112 */ | |
6113 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6114 wipe_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6115 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6116 int aucmd UNUSED) /* When TRUE trigger autocommands. */ |
7 | 6117 { |
6118 if (buf->b_fnum == top_file_num - 1) | |
6119 --top_file_num; | |
6120 | |
6121 #ifdef FEAT_AUTOCMD | |
6122 if (!aucmd) /* Don't trigger BufDelete autocommands here. */ | |
1410 | 6123 block_autocmds(); |
7 | 6124 #endif |
3365 | 6125 close_buffer(NULL, buf, DOBUF_WIPE, FALSE); |
7 | 6126 #ifdef FEAT_AUTOCMD |
6127 if (!aucmd) | |
1410 | 6128 unblock_autocmds(); |
7 | 6129 #endif |
6130 } |