Mercurial > vim
annotate src/buffer.c @ 26074:676e1735d5dd
Added tag v8.2.3570 for changeset 948550cae1e7a6883533e2e574be15480e8d8c68
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 02 Nov 2021 00:00:08 +0100 |
parents | db9fdfb86679 |
children | fa8161b003f6 |
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 | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
30 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
31 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
32 // Determines how deeply nested %{} blocks will be evaluated in statusline. |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
33 # define MAX_STL_EVAL_DEPTH 100 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
34 #endif |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
35 |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
36 static void enter_buffer(buf_T *buf); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
37 static void buflist_getfpos(void); |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
38 static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
39 static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case); |
7 | 40 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
41 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
|
42 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
|
43 static int buf_same_ino(buf_T *buf, stat_T *stp); |
7 | 44 #else |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
45 static int otherfile_buf(buf_T *buf, char_u *ffname); |
7 | 46 #endif |
47 #ifdef FEAT_TITLE | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
48 static int value_changed(char_u *str, char_u **last); |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
49 #endif |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
50 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
|
51 static void free_buffer(buf_T *); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
52 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
|
53 static void clear_wininfo(buf_T *buf); |
7 | 54 |
55 #ifdef UNIX | |
56 # define dev_T dev_t | |
57 #else | |
58 # define dev_T unsigned | |
59 #endif | |
60 | |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
61 #define FOR_ALL_BUFS_FROM_LAST(buf) \ |
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
62 for ((buf) = lastbuf; (buf) != NULL; (buf) = (buf)->b_prev) |
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
63 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
64 #if defined(FEAT_QUICKFIX) |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
65 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
|
66 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
|
67 #endif |
3365 | 68 static char *e_auabort = N_("E855: Autocommands caused command to abort"); |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
69 |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
70 // Number of times free_buffer() was called. |
9475
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 |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
73 static int top_file_num = 1; // highest file number |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
74 static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
75 |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
76 /* |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
77 * Return the highest possible buffer number. |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
78 */ |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
79 int |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
80 get_highest_fnum(void) |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
81 { |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
82 return top_file_num - 1; |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
83 } |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
84 |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
85 /* |
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
86 * Read data from buffer for retrying. |
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
87 */ |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
88 static int |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
89 read_buffer( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
90 int read_stdin, // read file from stdin, otherwise fifo |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
91 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
92 int flags) // extra flags for readfile() |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
93 { |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
94 int retval = OK; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
95 linenr_T line_count; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
96 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
97 // Read from the buffer which the text is already filled in and append at |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
98 // the end. This makes it possible to retry when 'fileformat' or |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
99 // 'fileencoding' was guessed wrong. |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
100 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
|
101 retval = readfile( |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
102 read_stdin ? NULL : curbuf->b_ffname, |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
103 read_stdin ? NULL : curbuf->b_fname, |
25852
336e2d9924e6
patch 8.2.3460: some type casts are not needed
Bram Moolenaar <Bram@vim.org>
parents:
25696
diff
changeset
|
104 line_count, (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
|
105 flags | READ_BUFFER); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
106 if (retval == OK) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
107 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
108 // Delete the binary lines. |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
109 while (--line_count >= 0) |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
19934
diff
changeset
|
110 ml_delete((linenr_T)1); |
9828
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 else |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
113 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
114 // Delete the converted lines. |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
115 while (curbuf->b_ml.ml_line_count > line_count) |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
19934
diff
changeset
|
116 ml_delete(line_count); |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
117 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
118 // Put the cursor on the first line. |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
119 curwin->w_cursor.lnum = 1; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
120 curwin->w_cursor.col = 0; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
121 |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
122 if (read_stdin) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
123 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
124 // Set or reset 'modified' before executing autocommands, so that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
125 // it can be changed there. |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
126 if (!readonlymode && !BUFEMPTY()) |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
127 changed(); |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
128 else if (retval == OK) |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
129 unchanged(curbuf, FALSE, TRUE); |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
130 |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
131 if (retval == OK) |
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
132 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
133 #ifdef FEAT_EVAL |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
134 apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE, |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
135 curbuf, &retval); |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
136 #else |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
137 apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
138 #endif |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
139 } |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
140 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
141 return retval; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
142 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
143 |
7 | 144 /* |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
145 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action. |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
146 */ |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
147 void |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
148 buffer_ensure_loaded(buf_T *buf) |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
149 { |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
150 if (buf->b_ml.ml_mfp == NULL) |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
151 { |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
152 aco_save_T aco; |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
153 |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
154 aucmd_prepbuf(&aco, buf); |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
155 swap_exists_action = SEA_NONE; |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
156 open_buffer(FALSE, NULL, 0); |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
157 aucmd_restbuf(&aco); |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
158 } |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
159 } |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
160 |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
161 /* |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
162 * 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
|
163 * memory. |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
164 * Return FAIL for failure, OK otherwise. |
7 | 165 */ |
166 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
167 open_buffer( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
168 int read_stdin, // read file from stdin |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
169 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
170 int flags) // extra flags for readfile() |
7 | 171 { |
172 int retval = OK; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
173 bufref_T old_curbuf; |
4139 | 174 #ifdef FEAT_SYN_HL |
175 long old_tw = curbuf->b_p_tw; | |
176 #endif | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
177 int read_fifo = FALSE; |
7 | 178 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
179 // The 'readonly' flag is only set when BF_NEVERLOADED is being reset. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
180 // When re-entering the same buffer, it should not change, because the |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
181 // user may have reset the flag by hand. |
7 | 182 if (readonlymode && curbuf->b_ffname != NULL |
183 && (curbuf->b_flags & BF_NEVERLOADED)) | |
184 curbuf->b_p_ro = TRUE; | |
185 | |
625 | 186 if (ml_open(curbuf) == FAIL) |
7 | 187 { |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
188 // There MUST be a memfile, otherwise we can't do anything |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
189 // If we can't create one for the current buffer, take another buffer |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
190 close_buffer(NULL, curbuf, 0, FALSE, FALSE); |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
191 FOR_ALL_BUFFERS(curbuf) |
7 | 192 if (curbuf->b_ml.ml_mfp != NULL) |
193 break; | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
194 // If there is no memfile at all, exit. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
195 // This is OK, since there are no changes to lose. |
7 | 196 if (curbuf == NULL) |
197 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
198 emsg(_("E82: Cannot allocate any buffer, exiting...")); |
17797
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
199 |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
200 // Don't try to do any saving, with "curbuf" NULL almost nothing |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
201 // will work. |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
202 v_dying = 2; |
7 | 203 getout(2); |
204 } | |
17797
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
205 |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
206 emsg(_("E83: Cannot allocate buffer, using other one...")); |
7 | 207 enter_buffer(curbuf); |
4139 | 208 #ifdef FEAT_SYN_HL |
209 if (old_tw != curbuf->b_p_tw) | |
210 check_colorcolumn(curwin); | |
211 #endif | |
7 | 212 return FAIL; |
213 } | |
214 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
215 // The autocommands in readfile() may change the buffer, but only AFTER |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
216 // reading the file. |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
217 set_bufref(&old_curbuf, curbuf); |
7 | 218 modified_was_set = FALSE; |
219 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
220 // mark cursor position as being invalid |
2091
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
221 curwin->w_valid = 0; |
7 | 222 |
223 if (curbuf->b_ffname != NULL | |
224 #ifdef FEAT_NETBEANS_INTG | |
225 && netbeansReadFile | |
226 #endif | |
227 ) | |
228 { | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
229 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
|
230 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
231 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
|
232 int perm; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
233 #endif |
7 | 234 #ifdef FEAT_NETBEANS_INTG |
235 int oldFire = netbeansFireChanges; | |
236 | |
237 netbeansFireChanges = 0; | |
238 #endif | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
239 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
240 perm = mch_getperm(curbuf->b_ffname); |
14509
80f715651c4c
patch 8.1.0268: file type checking has too many #ifdef
Christian Brabandt <cb@256bit.org>
parents:
14479
diff
changeset
|
241 if (perm >= 0 && (S_ISFIFO(perm) |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
242 || S_ISSOCK(perm) |
9911
74e345d2878c
commit https://github.com/vim/vim/commit/f04507d132fbcb63999167ec006fc6e700b5af4f
Christian Brabandt <cb@256bit.org>
parents:
9875
diff
changeset
|
243 # ifdef OPEN_CHR_FILES |
74e345d2878c
commit https://github.com/vim/vim/commit/f04507d132fbcb63999167ec006fc6e700b5af4f
Christian Brabandt <cb@256bit.org>
parents:
9875
diff
changeset
|
244 || (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
|
245 # endif |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
246 )) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
247 read_fifo = TRUE; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
248 if (read_fifo) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
249 curbuf->b_p_bin = TRUE; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
250 #endif |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
251 if (shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
252 msg_silent = 1; |
7 | 253 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
|
254 (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
|
255 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
|
256 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
257 if (read_fifo) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
258 { |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
259 curbuf->b_p_bin = save_bin; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
260 if (retval == OK) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
261 retval = read_buffer(FALSE, eap, flags); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
262 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
263 #endif |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
264 msg_silent = old_msg_silent; |
7 | 265 #ifdef FEAT_NETBEANS_INTG |
266 netbeansFireChanges = oldFire; | |
267 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
268 // Help buffer is filtered. |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
269 if (bt_help(curbuf)) |
7 | 270 fix_help_buffer(); |
271 } | |
272 else if (read_stdin) | |
273 { | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
274 int save_bin = curbuf->b_p_bin; |
7 | 275 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
276 // First read the text in binary mode into the buffer. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
277 // Then read from that same buffer and append at the end. This makes |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
278 // it possible to retry when 'fileformat' or 'fileencoding' was |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
279 // guessed wrong. |
7 | 280 curbuf->b_p_bin = TRUE; |
281 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
|
282 (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
|
283 flags | (READ_NEW + READ_STDIN)); |
7 | 284 curbuf->b_p_bin = save_bin; |
285 if (retval == OK) | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
286 retval = read_buffer(TRUE, eap, flags); |
7 | 287 } |
288 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
289 // if first time loading this buffer, init b_chartab[] |
7 | 290 if (curbuf->b_flags & BF_NEVERLOADED) |
5438 | 291 { |
7 | 292 (void)buf_init_chartab(curbuf, FALSE); |
5440 | 293 #ifdef FEAT_CINDENT |
5438 | 294 parse_cino(curbuf); |
5440 | 295 #endif |
5438 | 296 } |
7 | 297 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
298 // Set/reset the Changed flag first, autocmds may change the buffer. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
299 // Apply the automatic commands, before processing the modelines. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
300 // So the modelines have priority over autocommands. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
301 // |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
302 // When reading stdin, the buffer contents always needs writing, so set |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
303 // the changed flag. Unless in readonly mode: "ls | gview -". |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
304 // When interrupted and 'cpoptions' contains 'i' set changed flag. |
1291 | 305 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
306 || modified_was_set // ":set modified" used in autocmd |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
307 #ifdef FEAT_EVAL |
7 | 308 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL) |
309 #endif | |
1291 | 310 ) |
7 | 311 changed(); |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
312 else if (retval == OK && !read_stdin && !read_fifo) |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
313 unchanged(curbuf, FALSE, TRUE); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
314 save_file_ff(curbuf); // keep this fileformat |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
315 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
316 // Set last_changedtick to avoid triggering a TextChanged autocommand right |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
317 // after it was added. |
13519
4a44c90dd671
patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
318 curbuf->b_last_changedtick = CHANGEDTICK(curbuf); |
25967
46205b125fbd
patch 8.2.3517: TextChanged does not trigger after TextChangedI
Bram Moolenaar <Bram@vim.org>
parents:
25913
diff
changeset
|
319 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf); |
13519
4a44c90dd671
patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
320 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf); |
4a44c90dd671
patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
321 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
322 // require "!" to overwrite the file, because it wasn't read completely |
7 | 323 #ifdef FEAT_EVAL |
324 if (aborting()) | |
325 #else | |
326 if (got_int) | |
327 #endif | |
328 curbuf->b_flags |= BF_READERR; | |
329 | |
20 | 330 #ifdef FEAT_FOLDING |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
331 // Need to update automatic folding. Do this before the autocommands, |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
332 // they may use the fold info. |
20 | 333 foldUpdateAll(curwin); |
334 #endif | |
335 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
336 // need to set w_topline, unless some autocommand already did that. |
7 | 337 if (!(curwin->w_valid & VALID_TOPLINE)) |
338 { | |
339 curwin->w_topline = 1; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
340 #ifdef FEAT_DIFF |
7 | 341 curwin->w_topfill = 0; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
342 #endif |
7 | 343 } |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
344 #ifdef FEAT_EVAL |
7 | 345 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
346 #else |
7 | 347 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); |
348 #endif | |
349 | |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
350 if (retval == OK) |
7 | 351 { |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
352 // The autocommands may have changed the current buffer. Apply the |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
353 // modelines to the correct buffer, if it still exists and is loaded. |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
354 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL) |
7 | 355 { |
356 aco_save_T aco; | |
357 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
358 // 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
|
359 aucmd_prepbuf(&aco, old_curbuf.br_buf); |
717 | 360 do_modelines(0); |
7 | 361 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED); |
362 | |
26026
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
26016
diff
changeset
|
363 if ((flags & READ_NOWINENTER) == 0) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
364 #ifdef FEAT_EVAL |
26026
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
26016
diff
changeset
|
365 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
26016
diff
changeset
|
366 curbuf, &retval); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
367 #else |
26026
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
26016
diff
changeset
|
368 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
369 #endif |
7 | 370 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
371 // restore curwin/curbuf and a few other things |
7 | 372 aucmd_restbuf(&aco); |
373 } | |
374 } | |
375 | |
376 return retval; | |
377 } | |
378 | |
379 /* | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
380 * 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
|
381 */ |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
382 void |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
383 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
|
384 { |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
385 bufref->br_buf = buf; |
11531
e349dc7889f5
patch 8.0.0648: possible use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
386 bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
387 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
|
388 } |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
389 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
390 /* |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
391 * Return TRUE if "bufref->br_buf" points to the same buffer as when |
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
392 * set_bufref() was called and it is a valid buffer. |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
393 * Only goes through the buffer list if buf_free_count changed. |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
394 * Also checks if b_fnum is still the same, a :bwipe followed by :new might get |
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
395 * the same allocated memory, but it's a different buffer. |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
396 */ |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
397 int |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
398 bufref_valid(bufref_T *bufref) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
399 { |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
400 return bufref->br_buf_free_count == buf_free_count |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
401 ? TRUE : buf_valid(bufref->br_buf) |
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
402 && bufref->br_fnum == bufref->br_buf->b_fnum; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
403 } |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
404 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
405 /* |
7 | 406 * 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
|
407 * This can be slow if there are many buffers, prefer using bufref_valid(). |
7 | 408 */ |
409 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
410 buf_valid(buf_T *buf) |
7 | 411 { |
412 buf_T *bp; | |
413 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
414 // Assume that we more often have a recent buffer, start with the last |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
415 // one. |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
416 FOR_ALL_BUFS_FROM_LAST(bp) |
7 | 417 if (bp == buf) |
418 return TRUE; | |
419 return FALSE; | |
420 } | |
421 | |
422 /* | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
423 * 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
|
424 */ |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
425 static hashtab_T buf_hashtab; |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
426 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
427 static void |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
428 buf_hashtab_add(buf_T *buf) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
429 { |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
430 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
|
431 if (hash_add(&buf_hashtab, buf->b_key) == FAIL) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
432 emsg(_("E931: Buffer cannot be registered")); |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
433 } |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
434 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
435 static void |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
436 buf_hashtab_remove(buf_T *buf) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
437 { |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
438 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
|
439 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
440 if (!HASHITEM_EMPTY(hi)) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
441 hash_remove(&buf_hashtab, hi); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
442 } |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
443 |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
444 /* |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
445 * Return TRUE when buffer "buf" can be unloaded. |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
446 * Give an error message and return FALSE when the buffer is locked or the |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
447 * screen is being redrawn and the buffer is in a window. |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
448 */ |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
449 static int |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
450 can_unload_buffer(buf_T *buf) |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
451 { |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
452 int can_unload = !buf->b_locked; |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
453 |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
454 if (can_unload && updating_screen) |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
455 { |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
456 win_T *wp; |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
457 |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
458 FOR_ALL_WINDOWS(wp) |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
459 if (wp->w_buffer == buf) |
14826
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
460 { |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
461 can_unload = FALSE; |
14826
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
462 break; |
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
463 } |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
464 } |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
465 if (!can_unload) |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
466 semsg(_("E937: Attempt to delete a buffer that is in use: %s"), |
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
467 buf->b_fname); |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
468 return can_unload; |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
469 } |
13720
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
470 |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
471 /* |
7 | 472 * Close the link to a buffer. |
473 * "action" is used when there is no longer a window for the buffer. | |
474 * It can be: | |
475 * 0 buffer becomes hidden | |
476 * DOBUF_UNLOAD buffer is unloaded | |
477 * DOBUF_DELETE buffer is unloaded and removed from buffer list | |
478 * DOBUF_WIPE buffer is unloaded and really deleted | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
479 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list |
7 | 480 * When doing all but the first one on the current buffer, the caller should |
481 * get a new buffer very soon! | |
482 * | |
483 * The 'bufhidden' option can force freeing and deleting. | |
3365 | 484 * |
485 * When "abort_if_last" is TRUE then do not close the buffer if autocommands | |
486 * cause there to be only one window with this buffer. e.g. when ":quit" is | |
487 * supposed to close the window but autocommands close all other windows. | |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
488 * |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
489 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE. |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
490 * |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
491 * Return TRUE when we got to the end and b_nwindows was decremented. |
7 | 492 */ |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
493 int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
494 close_buffer( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
495 win_T *win, // if not NULL, set b_last_cursor |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
496 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
497 int action, |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
498 int abort_if_last, |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
499 int ignore_abort) |
7 | 500 { |
501 int is_curbuf; | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1883
diff
changeset
|
502 int nwindows; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
503 bufref_T bufref; |
10320
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10184
diff
changeset
|
504 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
|
505 win_T *the_curwin = curwin; |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
506 tabpage_T *the_curtab = curtab; |
7 | 507 int unload_buf = (action != 0); |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
508 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
509 int del_buf = (action == DOBUF_DEL || wipe_buf); |
7 | 510 |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
511 CHECK_CURBUF; |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
512 |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
513 // Force unloading or deleting when 'bufhidden' says so. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
514 // The caller must take care of NOT deleting/freeing when 'bufhidden' is |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
515 // "hide" (otherwise we could never free or delete a buffer). |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
516 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete" |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
517 { |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
518 del_buf = TRUE; |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
519 unload_buf = TRUE; |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
520 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
521 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe" |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
522 { |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
523 del_buf = TRUE; |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
524 unload_buf = TRUE; |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
525 wipe_buf = TRUE; |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
526 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
527 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload" |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
528 unload_buf = TRUE; |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
529 |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
530 #ifdef FEAT_TERMINAL |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
531 if (bt_terminal(buf) && (buf->b_nwindows == 1 || del_buf)) |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
532 { |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
533 CHECK_CURBUF; |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
534 if (term_job_running(buf->b_term)) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
535 { |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
536 if (wipe_buf || unload_buf) |
13720
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
537 { |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
538 if (!can_unload_buffer(buf)) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
539 return FALSE; |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
540 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
541 // Wiping out or unloading a terminal buffer kills the job. |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
542 free_terminal(buf); |
13720
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
543 } |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
544 else |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
545 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
546 // The job keeps running, hide the buffer. |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
547 del_buf = FALSE; |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
548 unload_buf = FALSE; |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
549 } |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
550 } |
22987
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
551 else if (buf->b_p_bh[0] == 'h' && !del_buf) |
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
552 { |
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
553 // Hide a terminal buffer. |
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
554 unload_buf = FALSE; |
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
555 } |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
556 else |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
557 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
558 // A terminal buffer is wiped out if the job has finished. |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
559 del_buf = TRUE; |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
560 unload_buf = TRUE; |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
561 wipe_buf = TRUE; |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
562 } |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
563 CHECK_CURBUF; |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
564 } |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
565 #endif |
7 | 566 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
567 // Disallow deleting the buffer when it is locked (already being closed or |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
568 // halfway a command that relies on it). Unloading is allowed. |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
569 if ((del_buf || wipe_buf) && !can_unload_buffer(buf)) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
570 return FALSE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
571 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
572 // check no autocommands closed the window |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
573 if (win != NULL && win_valid_any_tab(win)) |
7 | 574 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
575 // Set b_last_cursor when closing the last window for the buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
576 // Remember the last cursor position and window options of the buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
577 // This used to be only for the current window, but then options like |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
578 // 'foldmethod' may be lost with a ":only" command. |
7 | 579 if (buf->b_nwindows == 1) |
580 set_last_cursor(win); | |
581 buflist_setfpos(buf, win, | |
582 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum, | |
583 win->w_cursor.col, TRUE); | |
584 } | |
585 | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
586 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
587 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
588 // When the buffer is no longer in a window, trigger BufWinLeave |
7 | 589 if (buf->b_nwindows == 1) |
590 { | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
591 ++buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
592 ++buf->b_locked_split; |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
593 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
|
594 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
595 && !bufref_valid(&bufref)) |
3365 | 596 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
597 // Autocommands deleted the buffer. |
3570 | 598 aucmd_abort: |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
599 emsg(_(e_auabort)); |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
600 return FALSE; |
3365 | 601 } |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
602 --buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
603 --buf->b_locked_split; |
3570 | 604 if (abort_if_last && one_window()) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
605 // Autocommands made this the only window. |
3570 | 606 goto aucmd_abort; |
7 | 607 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
608 // When the buffer becomes hidden, but is not unloaded, trigger |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
609 // BufHidden |
7 | 610 if (!unload_buf) |
611 { | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
612 ++buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
613 ++buf->b_locked_split; |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
614 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
|
615 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
616 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
617 // Autocommands deleted the buffer. |
3570 | 618 goto aucmd_abort; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
619 --buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
620 --buf->b_locked_split; |
3570 | 621 if (abort_if_last && one_window()) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
622 // Autocommands made this the only window. |
3570 | 623 goto aucmd_abort; |
7 | 624 } |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
625 #ifdef FEAT_EVAL |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
626 // autocmds may abort script processing |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
627 if (!ignore_abort && aborting()) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
628 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
629 #endif |
7 | 630 } |
10114
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
631 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
632 // If the buffer was in curwin and the window has changed, go back to that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
633 // window, if it still exists. This avoids that ":edit x" triggering a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
634 // "tabnext" BufUnload autocmd leaves a window behind without a buffer. |
10114
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
635 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
|
636 { |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
637 block_autocmds(); |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
638 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
|
639 unblock_autocmds(); |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
640 } |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
641 |
7 | 642 nwindows = buf->b_nwindows; |
643 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
644 // decrease the link count from windows (unless not in any window) |
7 | 645 if (buf->b_nwindows > 0) |
646 --buf->b_nwindows; | |
647 | |
12971
ca3cb1997f08
patch 8.0.1361: some users don't want to diff with hidden buffers
Christian Brabandt <cb@256bit.org>
parents:
12684
diff
changeset
|
648 #ifdef FEAT_DIFF |
ca3cb1997f08
patch 8.0.1361: some users don't want to diff with hidden buffers
Christian Brabandt <cb@256bit.org>
parents:
12684
diff
changeset
|
649 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
650 diff_buf_delete(buf); // Clear 'diff' for hidden buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
651 #endif |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
652 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
653 // Return when a window is displaying the buffer or when it's not |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
654 // unloaded. |
7 | 655 if (buf->b_nwindows > 0 || !unload_buf) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
656 return FALSE; |
7 | 657 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
658 // Always remove the buffer when there is no file name. |
7 | 659 if (buf->b_ffname == NULL) |
660 del_buf = TRUE; | |
661 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
662 // When closing the current buffer stop Visual mode before freeing |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
663 // anything. |
10184
4669440016f2
commit https://github.com/vim/vim/commit/4930a76a0357f76a829eafe4985d04cf3ce0e9e0
Christian Brabandt <cb@256bit.org>
parents:
10156
diff
changeset
|
664 if (buf == curbuf && VIsual_active |
10156
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
665 #if defined(EXITFREE) |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
666 && !entered_free_all_mem |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
667 #endif |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
668 ) |
10154
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
669 end_visual_mode(); |
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
670 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
671 // Free all things allocated for this buffer. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
672 // Also calls the "BufDelete" autocommands when del_buf is TRUE. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
673 // |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
674 // Remember if we are closing the current buffer. Restore the number of |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
675 // windows, so that autocommands in buf_freeall() don't get confused. |
7 | 676 is_curbuf = (buf == curbuf); |
677 buf->b_nwindows = nwindows; | |
678 | |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
679 buf_freeall(buf, (del_buf ? BFA_DEL : 0) |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
680 + (wipe_buf ? BFA_WIPE : 0) |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
681 + (ignore_abort ? BFA_IGNORE_ABORT : 0)); |
7 | 682 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
683 // 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
|
684 if (!bufref_valid(&bufref)) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
685 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
686 #ifdef FEAT_EVAL |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
687 // autocmds may abort script processing |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
688 if (!ignore_abort && aborting()) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
689 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
690 #endif |
7 | 691 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
692 // It's possible that autocommands change curbuf to the one being deleted. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
693 // This might cause the previous curbuf to be deleted unexpectedly. But |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
694 // in some cases it's OK to delete the curbuf, because a new one is |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
695 // obtained anyway. Therefore only return if curbuf changed to the |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
696 // deleted buffer. |
7 | 697 if (buf == curbuf && !is_curbuf) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
698 return FALSE; |
9450
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
699 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
700 if (win_valid_any_tab(win) && win->w_buffer == buf) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
701 win->w_buffer = NULL; // make sure we don't use the buffer now |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
702 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
703 // Autocommands may have opened or closed windows for this buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
704 // Decrement the count for the close we do here. |
9450
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
705 if (buf->b_nwindows > 0) |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
706 --buf->b_nwindows; |
7 | 707 |
708 /* | |
709 * Remove the buffer from the list. | |
710 */ | |
711 if (wipe_buf) | |
712 { | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
713 if (action == DOBUF_WIPE_REUSE) |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
714 { |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
715 // we can re-use this buffer number, store it |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
716 if (buf_reuse.ga_itemsize == 0) |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
717 ga_init2(&buf_reuse, sizeof(int), 50); |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
718 if (ga_grow(&buf_reuse, 1) == OK) |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
719 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum; |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
720 } |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
721 if (buf->b_sfname != buf->b_ffname) |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
722 VIM_CLEAR(buf->b_sfname); |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
723 else |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
724 buf->b_sfname = NULL; |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
725 VIM_CLEAR(buf->b_ffname); |
7 | 726 if (buf->b_prev == NULL) |
727 firstbuf = buf->b_next; | |
728 else | |
729 buf->b_prev->b_next = buf->b_next; | |
730 if (buf->b_next == NULL) | |
731 lastbuf = buf->b_prev; | |
732 else | |
733 buf->b_next->b_prev = buf->b_prev; | |
734 free_buffer(buf); | |
735 } | |
736 else | |
737 { | |
738 if (del_buf) | |
739 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
740 // Free all internal variables and reset option values, to make |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
741 // ":bdel" compatible with Vim 5.7. |
7 | 742 free_buffer_stuff(buf, TRUE); |
743 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
744 // Make it look like a new buffer. |
7 | 745 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; |
746 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
747 // Init the options when loaded again. |
7 | 748 buf->b_p_initialized = FALSE; |
749 } | |
750 buf_clear_file(buf); | |
751 if (del_buf) | |
752 buf->b_p_bl = FALSE; | |
753 } | |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
754 // NOTE: at this point "curbuf" may be invalid! |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
755 return TRUE; |
7 | 756 } |
757 | |
758 /* | |
759 * Make buffer not contain a file. | |
760 */ | |
761 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
762 buf_clear_file(buf_T *buf) |
7 | 763 { |
764 buf->b_ml.ml_line_count = 1; | |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
765 unchanged(buf, TRUE, TRUE); |
7 | 766 buf->b_shortname = FALSE; |
767 buf->b_p_eol = TRUE; | |
768 buf->b_start_eol = TRUE; | |
769 buf->b_p_bomb = FALSE; | |
1352 | 770 buf->b_start_bomb = FALSE; |
7 | 771 buf->b_ml.ml_mfp = NULL; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
772 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer |
7 | 773 #ifdef FEAT_NETBEANS_INTG |
774 netbeans_deleted_all_lines(buf); | |
775 #endif | |
776 } | |
777 | |
778 /* | |
779 * 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
|
780 * 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
|
781 * flags: |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
782 * BFA_DEL buffer is going to be deleted |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
783 * BFA_WIPE buffer is going to be wiped out |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
784 * BFA_KEEP_UNDO do not free undo information |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
785 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE |
7 | 786 */ |
787 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
788 buf_freeall(buf_T *buf, int flags) |
7 | 789 { |
790 int is_curbuf = (buf == curbuf); | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
791 bufref_T bufref; |
10118
5d77565e6222
commit https://github.com/vim/vim/commit/030cddc7ec0c3d2fe3969140cd1b92b2f18633c0
Christian Brabandt <cb@256bit.org>
parents:
10114
diff
changeset
|
792 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
|
793 win_T *the_curwin = curwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
794 tabpage_T *the_curtab = curtab; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
795 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
796 // 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
|
797 ++buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
798 ++buf->b_locked_split; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
799 set_bufref(&bufref, buf); |
9106
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
800 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
|
801 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
802 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
|
803 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
804 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
805 // autocommands deleted the buffer |
9106
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
806 return; |
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
807 } |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
808 if ((flags & BFA_DEL) && buf->b_p_bl) |
7 | 809 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
810 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
|
811 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
812 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
813 // autocommands deleted the buffer |
7 | 814 return; |
815 } | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
816 if (flags & BFA_WIPE) |
7 | 817 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
818 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
|
819 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
820 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
821 // autocommands deleted the buffer |
7 | 822 return; |
823 } | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
824 --buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
825 --buf->b_locked_split; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
826 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
827 // If the buffer was in curwin and the window has changed, go back to that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
828 // window, if it still exists. This avoids that ":edit x" triggering a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
829 // "tabnext" BufUnload autocmd leaves a window behind without a buffer. |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
830 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
|
831 { |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
832 block_autocmds(); |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
833 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
|
834 unblock_autocmds(); |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
835 } |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
836 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
837 #ifdef FEAT_EVAL |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
838 // autocmds may abort script processing |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
839 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting()) |
7 | 840 return; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
841 #endif |
7 | 842 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
843 // It's possible that autocommands change curbuf to the one being deleted. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
844 // This might cause curbuf to be deleted unexpectedly. But in some cases |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
845 // it's OK to delete the curbuf, because a new one is obtained anyway. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
846 // Therefore only return if curbuf changed to the deleted buffer. |
7 | 847 if (buf == curbuf && !is_curbuf) |
848 return; | |
849 #ifdef FEAT_DIFF | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
850 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer. |
7 | 851 #endif |
3068 | 852 #ifdef FEAT_SYN_HL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
853 // Remove any ownsyntax, unless exiting. |
10118
5d77565e6222
commit https://github.com/vim/vim/commit/030cddc7ec0c3d2fe3969140cd1b92b2f18633c0
Christian Brabandt <cb@256bit.org>
parents:
10114
diff
changeset
|
854 if (curwin != NULL && curwin->w_buffer == buf) |
3182 | 855 reset_synblock(curwin); |
3068 | 856 #endif |
1187 | 857 |
858 #ifdef FEAT_FOLDING | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
859 // No folds in an empty buffer. |
1187 | 860 { |
861 win_T *win; | |
862 tabpage_T *tp; | |
863 | |
864 FOR_ALL_TAB_WINDOWS(tp, win) | |
865 if (win->w_buffer == buf) | |
866 clearFolding(win); | |
867 } | |
868 #endif | |
869 | |
7 | 870 #ifdef FEAT_TCL |
871 tcl_buffer_free(buf); | |
872 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
873 ml_close(buf, TRUE); // close and delete the memline/memfile |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
874 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
|
875 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
|
876 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
877 u_blockfree(buf); // free the memory allocated for undo |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
878 u_clearall(buf); // reset all undo information |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
879 } |
7 | 880 #ifdef FEAT_SYN_HL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
881 syntax_clear(&buf->b_s); // reset syntax info |
7 | 882 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18757
diff
changeset
|
883 #ifdef FEAT_PROP_POPUP |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
884 clear_buf_prop_types(buf); |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
885 #endif |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
886 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant |
7 | 887 } |
888 | |
889 /* | |
890 * Free a buffer structure and the things it contains related to the buffer | |
891 * itself (not the file, that must have been done already). | |
892 */ | |
893 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
894 free_buffer(buf_T *buf) |
7 | 895 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
896 ++buf_free_count; |
7 | 897 free_buffer_stuff(buf, TRUE); |
4287 | 898 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
899 // b:changedtick uses an item in buf_T, remove it now |
12630
560adb3eed8b
patch 8.0.1193: crash when wiping out a buffer after using getbufinfo()
Christian Brabandt <cb@256bit.org>
parents:
12572
diff
changeset
|
900 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di); |
4287 | 901 unref_var_dict(buf->b_vars); |
18225
6c3a8312486d
patch 8.1.2107: various memory leaks reported by asan
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
902 remove_listeners(buf); |
4287 | 903 #endif |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
904 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
905 lua_buffer_free(buf); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
906 #endif |
14 | 907 #ifdef FEAT_MZSCHEME |
908 mzscheme_buffer_free(buf); | |
909 #endif | |
7 | 910 #ifdef FEAT_PERL |
911 perl_buf_free(buf); | |
912 #endif | |
913 #ifdef FEAT_PYTHON | |
914 python_buffer_free(buf); | |
915 #endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
916 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
917 python3_buffer_free(buf); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
918 #endif |
7 | 919 #ifdef FEAT_RUBY |
920 ruby_buffer_free(buf); | |
921 #endif | |
9087
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
922 #ifdef FEAT_JOB_CHANNEL |
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
923 channel_buffer_free(buf); |
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
924 #endif |
11690
ce434212d682
patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents:
11531
diff
changeset
|
925 #ifdef FEAT_TERMINAL |
11834
0cfe4a07c2ad
patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
926 free_terminal(buf); |
11690
ce434212d682
patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents:
11531
diff
changeset
|
927 #endif |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
928 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
929 vim_free(buf->b_prompt_text); |
16872
a836d122231a
patch 8.1.1437: code to handle callbacks is duplicated
Bram Moolenaar <Bram@vim.org>
parents:
16859
diff
changeset
|
930 free_callback(&buf->b_prompt_callback); |
18225
6c3a8312486d
patch 8.1.2107: various memory leaks reported by asan
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
931 free_callback(&buf->b_prompt_interrupt); |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
932 #endif |
9515
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
933 |
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
934 buf_hashtab_remove(buf); |
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
935 |
40 | 936 aubuflocal_remove(buf); |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
937 |
5816 | 938 if (autocmd_busy) |
939 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
940 // Do not free the buffer structure while autocommands are executing, |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
941 // it's still needed. Free it when autocmd_busy is reset. |
5816 | 942 buf->b_next = au_pending_free_buf; |
943 au_pending_free_buf = buf; | |
944 } | |
945 else | |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
946 { |
5816 | 947 vim_free(buf); |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
948 if (curbuf == buf) |
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
949 curbuf = NULL; // make clear it's not to be used |
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
950 } |
7 | 951 } |
952 | |
953 /* | |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
954 * Initializes b:changedtick. |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
955 */ |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
956 static void |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
957 init_changedtick(buf_T *buf) |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
958 { |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
959 dictitem_T *di = (dictitem_T *)&buf->b_ct_di; |
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
960 |
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
961 di->di_flags = DI_FLAGS_FIX | DI_FLAGS_RO; |
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
962 di->di_tv.v_type = VAR_NUMBER; |
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
963 di->di_tv.v_lock = VAR_FIXED; |
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
964 di->di_tv.vval.v_number = 0; |
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
965 |
10954
8ff62b4cffae
patch 8.0.0366: build fails with tiny features
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
966 #ifdef FEAT_EVAL |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
967 STRCPY(buf->b_ct_di.di_key, "changedtick"); |
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
968 (void)dict_add(buf->b_vars, di); |
10954
8ff62b4cffae
patch 8.0.0366: build fails with tiny features
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
969 #endif |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
970 } |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
971 |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
972 /* |
7 | 973 * Free stuff in the buffer for ":bdel" and when wiping out the buffer. |
974 */ | |
975 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
976 free_buffer_stuff( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
977 buf_T *buf, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
978 int free_options) // free options as well |
7 | 979 { |
980 if (free_options) | |
981 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
982 clear_wininfo(buf); // including window-local options |
7 | 983 free_buf_options(buf, TRUE); |
2620 | 984 #ifdef FEAT_SPELL |
985 ga_clear(&buf->b_s.b_langp); | |
986 #endif | |
7 | 987 } |
988 #ifdef FEAT_EVAL | |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
989 { |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
990 varnumber_T tick = CHANGEDTICK(buf); |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
991 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
992 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
993 hash_init(&buf->b_vars->dv_hashtab); |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
994 init_changedtick(buf); |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
995 CHANGEDTICK(buf) = tick; |
19044
af795b6a2624
patch 8.2.0082: when reusing a buffer listeners are not cleared
Bram Moolenaar <Bram@vim.org>
parents:
19007
diff
changeset
|
996 remove_listeners(buf); |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
997 } |
7 | 998 #endif |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16261
diff
changeset
|
999 uc_clear(&buf->b_ucmds); // clear local user commands |
7 | 1000 #ifdef FEAT_SIGNS |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16261
diff
changeset
|
1001 buf_delete_signs(buf, (char_u *)"*"); // delete any signs |
7 | 1002 #endif |
1781 | 1003 #ifdef FEAT_NETBEANS_INTG |
2210 | 1004 netbeans_file_killed(buf); |
1781 | 1005 #endif |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1006 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1007 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
1008 VIM_CLEAR(buf->b_start_fenc); |
7 | 1009 } |
1010 | |
1011 /* | |
22713
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1012 * Free one wininfo_T. |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1013 */ |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1014 void |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1015 free_wininfo(wininfo_T *wip) |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1016 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1017 if (wip->wi_optset) |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1018 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1019 clear_winopt(&wip->wi_opt); |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1020 #ifdef FEAT_FOLDING |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1021 deleteFoldRecurse(&wip->wi_folds); |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1022 #endif |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1023 } |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1024 vim_free(wip); |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1025 } |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1026 |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1027 /* |
7 | 1028 * Free the b_wininfo list for buffer "buf". |
1029 */ | |
1030 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1031 clear_wininfo(buf_T *buf) |
7 | 1032 { |
1033 wininfo_T *wip; | |
1034 | |
1035 while (buf->b_wininfo != NULL) | |
1036 { | |
1037 wip = buf->b_wininfo; | |
1038 buf->b_wininfo = wip->wi_next; | |
22713
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1039 free_wininfo(wip); |
7 | 1040 } |
1041 } | |
1042 | |
1043 /* | |
1044 * Go to another buffer. Handles the result of the ATTENTION dialog. | |
1045 */ | |
1046 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1047 goto_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1048 exarg_T *eap, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1049 int start, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1050 int dir, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1051 int count) |
7 | 1052 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1053 bufref_T old_curbuf; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1054 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1055 set_bufref(&old_curbuf, curbuf); |
7 | 1056 |
1057 swap_exists_action = SEA_DIALOG; | |
1058 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO, | |
1059 start, dir, count, eap->forceit); | |
1060 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's') | |
1061 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1062 #if defined(FEAT_EVAL) |
24 | 1063 cleanup_T cs; |
1064 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1065 // Reset the error/interrupt/exception state here so that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1066 // aborting() returns FALSE when closing a window. |
24 | 1067 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1068 #endif |
24 | 1069 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1070 // Quitting means closing the split window, nothing else. |
7 | 1071 win_close(curwin, TRUE); |
1072 swap_exists_action = SEA_NONE; | |
602 | 1073 swap_exists_did_quit = TRUE; |
24 | 1074 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1075 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1076 // Restore the error/interrupt/exception state if not discarded by a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1077 // new aborting error, interrupt, or uncaught exception. |
24 | 1078 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1079 #endif |
7 | 1080 } |
1081 else | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1082 handle_swap_exists(&old_curbuf); |
7 | 1083 } |
1084 | |
1085 /* | |
1086 * Handle the situation of swap_exists_action being set. | |
1087 * It is allowed for "old_curbuf" to be NULL or invalid. | |
1088 */ | |
1089 void | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1090 handle_swap_exists(bufref_T *old_curbuf) |
7 | 1091 { |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1092 #if defined(FEAT_EVAL) |
24 | 1093 cleanup_T cs; |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1094 #endif |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1095 #ifdef FEAT_SYN_HL |
4139 | 1096 long old_tw = curbuf->b_p_tw; |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1097 #endif |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1098 buf_T *buf; |
20 | 1099 |
7 | 1100 if (swap_exists_action == SEA_QUIT) |
1101 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1102 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1103 // Reset the error/interrupt/exception state here so that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1104 // aborting() returns FALSE when closing a buffer. |
24 | 1105 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1106 #endif |
24 | 1107 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1108 // User selected Quit at ATTENTION prompt. Go back to previous |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1109 // buffer. If that buffer is gone or the same as the current one, |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1110 // open a new, empty buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1111 swap_exists_action = SEA_NONE; // don't want it again |
602 | 1112 swap_exists_did_quit = TRUE; |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1113 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE); |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1114 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
|
1115 || old_curbuf->br_buf == curbuf) |
25120
2d3660601fdb
patch 8.2.3097: crash when using "quit" at recovery prompt
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
1116 { |
2d3660601fdb
patch 8.2.3097: crash when using "quit" at recovery prompt
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
1117 // Block autocommands here because curwin->w_buffer is NULL. |
2d3660601fdb
patch 8.2.3097: crash when using "quit" at recovery prompt
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
1118 block_autocmds(); |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1119 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED); |
25120
2d3660601fdb
patch 8.2.3097: crash when using "quit" at recovery prompt
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
1120 unblock_autocmds(); |
2d3660601fdb
patch 8.2.3097: crash when using "quit" at recovery prompt
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
1121 } |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1122 else |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1123 buf = old_curbuf->br_buf; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1124 if (buf != NULL) |
4139 | 1125 { |
14593
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1126 int old_msg_silent = msg_silent; |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1127 |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1128 if (shortmess(SHM_FILEINFO)) |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1129 msg_silent = 1; // prevent fileinfo message |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1130 enter_buffer(buf); |
14593
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1131 // restore msg_silent, so that the command line will be shown |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1132 msg_silent = old_msg_silent; |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1133 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1134 #ifdef FEAT_SYN_HL |
4139 | 1135 if (old_tw != curbuf->b_p_tw) |
1136 check_colorcolumn(curwin); | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1137 #endif |
4139 | 1138 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1139 // If "old_curbuf" is NULL we are in big trouble here... |
24 | 1140 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1141 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1142 // Restore the error/interrupt/exception state if not discarded by a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1143 // new aborting error, interrupt, or uncaught exception. |
24 | 1144 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1145 #endif |
7 | 1146 } |
1147 else if (swap_exists_action == SEA_RECOVER) | |
1148 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1149 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1150 // Reset the error/interrupt/exception state here so that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1151 // aborting() returns FALSE when closing a buffer. |
24 | 1152 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1153 #endif |
24 | 1154 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1155 // User selected Recover at ATTENTION prompt. |
7 | 1156 msg_scroll = TRUE; |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16664
diff
changeset
|
1157 ml_recover(FALSE); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1158 msg_puts("\n"); // don't overwrite the last message |
7 | 1159 cmdline_row = msg_row; |
717 | 1160 do_modelines(0); |
24 | 1161 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1162 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1163 // Restore the error/interrupt/exception state if not discarded by a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1164 // new aborting error, interrupt, or uncaught exception. |
24 | 1165 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1166 #endif |
7 | 1167 } |
1168 swap_exists_action = SEA_NONE; | |
1169 } | |
1170 | |
1171 /* | |
5586 | 1172 * Make the current buffer empty. |
1173 * Used when it is wiped out and it's the last buffer. | |
1174 */ | |
1175 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1176 empty_curbuf( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1177 int close_others, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1178 int forceit, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1179 int action) |
5586 | 1180 { |
1181 int retval; | |
1182 buf_T *buf = curbuf; | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1183 bufref_T bufref; |
5586 | 1184 |
1185 if (action == DOBUF_UNLOAD) | |
1186 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1187 emsg(_("E90: Cannot unload last buffer")); |
5586 | 1188 return FAIL; |
1189 } | |
1190 | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1191 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1192 if (close_others) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1193 // Close any other windows on this buffer, then make it empty. |
5586 | 1194 close_windows(buf, TRUE); |
1195 | |
1196 setpcmark(); | |
1197 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, | |
1198 forceit ? ECMD_FORCEIT : 0, curwin); | |
1199 | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1200 // do_ecmd() may create a new buffer, then we have to delete |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1201 // the old one. But do_ecmd() may have done that already, check |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1202 // if the buffer still exists. |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1203 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0) |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1204 close_buffer(NULL, buf, action, FALSE, FALSE); |
5586 | 1205 if (!close_others) |
1206 need_fileinfo = FALSE; | |
1207 return retval; | |
1208 } | |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
1209 |
7 | 1210 /* |
1211 * Implementation of the commands for the buffer list. | |
1212 * | |
1213 * action == DOBUF_GOTO go to specified buffer | |
1214 * action == DOBUF_SPLIT split window and go to specified buffer | |
1215 * action == DOBUF_UNLOAD unload specified buffer(s) | |
1216 * action == DOBUF_DEL delete specified buffer(s) from buffer list | |
1217 * action == DOBUF_WIPE delete specified buffer(s) really | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1218 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse" |
7 | 1219 * |
1220 * start == DOBUF_CURRENT go to "count" buffer from current buffer | |
1221 * start == DOBUF_FIRST go to "count" buffer from first buffer | |
1222 * start == DOBUF_LAST go to "count" buffer from last buffer | |
1223 * start == DOBUF_MOD go to "count" modified buffer from current buffer | |
1224 * | |
1225 * Return FAIL or OK. | |
1226 */ | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1227 static int |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1228 do_buffer_ext( |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1229 int action, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1230 int start, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1231 int dir, // FORWARD or BACKWARD |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1232 int count, // buffer number or number of buffers |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1233 int flags) // DOBUF_FORCEIT etc. |
7 | 1234 { |
1235 buf_T *buf; | |
1236 buf_T *bp; | |
1237 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1238 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); |
7 | 1239 |
1240 switch (start) | |
1241 { | |
1242 case DOBUF_FIRST: buf = firstbuf; break; | |
1243 case DOBUF_LAST: buf = lastbuf; break; | |
1244 default: buf = curbuf; break; | |
1245 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1246 if (start == DOBUF_MOD) // find next modified buffer |
7 | 1247 { |
1248 while (count-- > 0) | |
1249 { | |
1250 do | |
1251 { | |
1252 buf = buf->b_next; | |
1253 if (buf == NULL) | |
1254 buf = firstbuf; | |
1255 } | |
1256 while (buf != curbuf && !bufIsChanged(buf)); | |
1257 } | |
1258 if (!bufIsChanged(buf)) | |
1259 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1260 emsg(_("E84: No modified buffer found")); |
7 | 1261 return FAIL; |
1262 } | |
1263 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1264 else if (start == DOBUF_FIRST && count) // find specified buffer number |
7 | 1265 { |
1266 while (buf != NULL && buf->b_fnum != count) | |
1267 buf = buf->b_next; | |
1268 } | |
1269 else | |
1270 { | |
1271 bp = NULL; | |
1272 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf)) | |
1273 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1274 // remember the buffer where we start, we come back there when all |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1275 // buffers are unlisted. |
7 | 1276 if (bp == NULL) |
1277 bp = buf; | |
1278 if (dir == FORWARD) | |
1279 { | |
1280 buf = buf->b_next; | |
1281 if (buf == NULL) | |
1282 buf = firstbuf; | |
1283 } | |
1284 else | |
1285 { | |
1286 buf = buf->b_prev; | |
1287 if (buf == NULL) | |
1288 buf = lastbuf; | |
1289 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1290 // don't count unlisted buffers |
7 | 1291 if (unload || buf->b_p_bl) |
1292 { | |
1293 --count; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1294 bp = NULL; // use this buffer as new starting point |
7 | 1295 } |
1296 if (bp == buf) | |
1297 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1298 // back where we started, didn't find anything. |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1299 emsg(_("E85: There is no listed buffer")); |
7 | 1300 return FAIL; |
1301 } | |
1302 } | |
1303 } | |
1304 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1305 if (buf == NULL) // could not find it |
7 | 1306 { |
1307 if (start == DOBUF_FIRST) | |
1308 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1309 // don't warn when deleting |
7 | 1310 if (!unload) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1311 semsg(_(e_nobufnr), count); |
7 | 1312 } |
1313 else if (dir == FORWARD) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1314 emsg(_("E87: Cannot go beyond last buffer")); |
7 | 1315 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1316 emsg(_("E88: Cannot go before first buffer")); |
7 | 1317 return FAIL; |
1318 } | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1319 #ifdef FEAT_PROP_POPUP |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1320 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1321 # ifdef FEAT_TERMINAL |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1322 && !bt_terminal(buf) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1323 #endif |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1324 ) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1325 return OK; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1326 #endif |
7 | 1327 |
1328 #ifdef FEAT_GUI | |
1329 need_mouse_correct = TRUE; | |
1330 #endif | |
1331 | |
1332 /* | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1333 * delete buffer "buf" from memory and/or the list |
7 | 1334 */ |
1335 if (unload) | |
1336 { | |
1337 int forward; | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1338 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1339 |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
1340 if (!can_unload_buffer(buf)) |
13720
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
1341 return FAIL; |
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
1342 |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1343 set_bufref(&bufref, buf); |
7 | 1344 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1345 // When unloading or deleting a buffer that's already unloaded and |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1346 // unlisted: fail silently. |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1347 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1348 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl) |
7 | 1349 return FAIL; |
1350 | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1351 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf)) |
7 | 1352 { |
13553
04019fc3de93
patch 8.0.1650: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13535
diff
changeset
|
1353 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
1354 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) |
7 | 1355 { |
1356 dialog_changed(buf, FALSE); | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1357 if (!bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1358 // Autocommand deleted buffer, oops! It's not changed |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1359 // now. |
7 | 1360 return FAIL; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1361 // If it's still changed fail silently, the dialog already |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1362 // mentioned why it fails. |
36 | 1363 if (bufIsChanged(buf)) |
1364 return FAIL; | |
7 | 1365 } |
36 | 1366 else |
13553
04019fc3de93
patch 8.0.1650: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13535
diff
changeset
|
1367 #endif |
7 | 1368 { |
15490
98c35d312987
patch 8.1.0753: printf format not checked for semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1369 semsg(_("E89: No write since last change for buffer %d (add ! to override)"), |
7 | 1370 buf->b_fnum); |
1371 return FAIL; | |
1372 } | |
1373 } | |
1374 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1375 // 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
|
1376 if (buf == curbuf && VIsual_active) |
10154
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
1377 end_visual_mode(); |
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
1378 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1379 // If deleting the last (listed) buffer, make it empty. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1380 // The last (listed) buffer cannot be unloaded. |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
1381 FOR_ALL_BUFFERS(bp) |
7 | 1382 if (bp->b_p_bl && bp != buf) |
1383 break; | |
1384 if (bp == NULL && buf == curbuf) | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1385 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action); |
7 | 1386 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1387 // If the deleted buffer is the current one, close the current window |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1388 // (unless it's the only window). Repeat this so long as we end up in |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1389 // a window with this buffer. |
671 | 1390 while (buf == curbuf |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
1391 && !(curwin->w_closing || curwin->w_buffer->b_locked > 0) |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10349
diff
changeset
|
1392 && (!ONE_WINDOW || first_tabpage->tp_next != NULL)) |
5302 | 1393 { |
1394 if (win_close(curwin, FALSE) == FAIL) | |
1395 break; | |
1396 } | |
7 | 1397 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1398 // If the buffer to be deleted is not the current one, delete it here. |
7 | 1399 if (buf != curbuf) |
1400 { | |
671 | 1401 close_windows(buf, FALSE); |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
1402 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0) |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1403 close_buffer(NULL, buf, action, FALSE, FALSE); |
7 | 1404 return OK; |
1405 } | |
1406 | |
1407 /* | |
1408 * Deleting the current buffer: Need to find another buffer to go to. | |
5586 | 1409 * There should be another, otherwise it would have been handled |
1410 * 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
|
1411 * First use au_new_curbuf.br_buf, if it is valid. |
7 | 1412 * Then prefer the buffer we most recently visited. |
1413 * Else try to find one that is loaded, after the current buffer, | |
1414 * then before the current buffer. | |
1415 * Finally use any buffer. | |
1416 */ | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1417 buf = NULL; // selected buffer |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1418 bp = NULL; // used when no loaded buffer found |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9479
diff
changeset
|
1419 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
|
1420 buf = au_new_curbuf.br_buf; |
7 | 1421 #ifdef FEAT_JUMPLIST |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1422 else if (curwin->w_jumplistlen > 0) |
7 | 1423 { |
1424 int jumpidx; | |
1425 | |
1426 jumpidx = curwin->w_jumplistidx - 1; | |
1427 if (jumpidx < 0) | |
1428 jumpidx = curwin->w_jumplistlen - 1; | |
1429 | |
1430 forward = jumpidx; | |
1431 while (jumpidx != curwin->w_jumplistidx) | |
1432 { | |
1433 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum); | |
1434 if (buf != NULL) | |
1435 { | |
1436 if (buf == curbuf || !buf->b_p_bl) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1437 buf = NULL; // skip current and unlisted bufs |
7 | 1438 else if (buf->b_ml.ml_mfp == NULL) |
1439 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1440 // skip unloaded buf, but may keep it for later |
7 | 1441 if (bp == NULL) |
1442 bp = buf; | |
1443 buf = NULL; | |
1444 } | |
1445 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1446 if (buf != NULL) // found a valid buffer: stop searching |
7 | 1447 break; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1448 // advance to older entry in jump list |
7 | 1449 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen) |
1450 break; | |
1451 if (--jumpidx < 0) | |
1452 jumpidx = curwin->w_jumplistlen - 1; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1453 if (jumpidx == forward) // List exhausted for sure |
7 | 1454 break; |
1455 } | |
1456 } | |
1457 #endif | |
1458 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1459 if (buf == NULL) // No previous buffer, Try 2'nd approach |
7 | 1460 { |
1461 forward = TRUE; | |
1462 buf = curbuf->b_next; | |
1463 for (;;) | |
1464 { | |
1465 if (buf == NULL) | |
1466 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1467 if (!forward) // tried both directions |
7 | 1468 break; |
1469 buf = curbuf->b_prev; | |
1470 forward = FALSE; | |
1471 continue; | |
1472 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1473 // in non-help buffer, try to skip help buffers, and vv |
7 | 1474 if (buf->b_help == curbuf->b_help && buf->b_p_bl) |
1475 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1476 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer |
7 | 1477 break; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1478 if (bp == NULL) // remember unloaded buf for later |
7 | 1479 bp = buf; |
1480 } | |
1481 if (forward) | |
1482 buf = buf->b_next; | |
1483 else | |
1484 buf = buf->b_prev; | |
1485 } | |
1486 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1487 if (buf == NULL) // No loaded buffer, use unloaded one |
7 | 1488 buf = bp; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1489 if (buf == NULL) // No loaded buffer, find listed one |
7 | 1490 { |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
1491 FOR_ALL_BUFFERS(buf) |
7 | 1492 if (buf->b_p_bl && buf != curbuf) |
1493 break; | |
1494 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1495 if (buf == NULL) // Still no buffer, just take one |
7 | 1496 { |
1497 if (curbuf->b_next != NULL) | |
1498 buf = curbuf->b_next; | |
1499 else | |
1500 buf = curbuf->b_prev; | |
1501 } | |
1502 } | |
1503 | |
5586 | 1504 if (buf == NULL) |
1505 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1506 // Autocommands must have wiped out all other buffers. Only option |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1507 // now is to make the current buffer empty. |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1508 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action); |
5586 | 1509 } |
1510 | |
7 | 1511 /* |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1512 * make "buf" the current buffer |
7 | 1513 */ |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1514 if (action == DOBUF_SPLIT) // split window first |
7 | 1515 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1516 // If 'switchbuf' contains "useopen": jump to first window containing |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1517 // "buf" if one exists |
1618 | 1518 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf)) |
825 | 1519 return OK; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1520 // If 'switchbuf' contains "usetab": jump to first window in any tab |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1521 // page containing "buf" if one exists |
1618 | 1522 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf)) |
7 | 1523 return OK; |
1524 if (win_split(0, 0) == FAIL) | |
1525 return FAIL; | |
1526 } | |
1527 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1528 // go to current buffer - nothing to do |
7 | 1529 if (buf == curbuf) |
1530 return OK; | |
1531 | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1532 // Check if the current buffer may be abandoned. |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1533 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT))) |
7 | 1534 { |
1535 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
1536 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) |
7 | 1537 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1538 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1539 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1540 set_bufref(&bufref, buf); |
7 | 1541 dialog_changed(curbuf, FALSE); |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1542 if (!bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1543 // Autocommand deleted buffer, oops! |
7 | 1544 return FAIL; |
1545 } | |
1546 if (bufIsChanged(curbuf)) | |
1547 #endif | |
1548 { | |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1549 no_write_message(); |
7 | 1550 return FAIL; |
1551 } | |
1552 } | |
1553 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1554 // Go to the other buffer. |
7 | 1555 set_curbuf(buf, action); |
1556 | |
1557 if (action == DOBUF_SPLIT) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1558 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind' |
7 | 1559 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1560 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1561 if (aborting()) // autocmds may abort script processing |
7 | 1562 return FAIL; |
1563 #endif | |
1564 | |
1565 return OK; | |
1566 } | |
1567 | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1568 int |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1569 do_buffer( |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1570 int action, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1571 int start, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1572 int dir, // FORWARD or BACKWARD |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1573 int count, // buffer number or number of buffers |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1574 int forceit) // TRUE when using ! |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1575 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1576 return do_buffer_ext(action, start, dir, count, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1577 forceit ? DOBUF_FORCEIT : 0); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1578 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1579 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1580 /* |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1581 * do_bufdel() - delete or unload buffer(s) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1582 * |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1583 * addr_count == 0: ":bdel" - delete current buffer |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1584 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1585 * buffer "end_bnr", then any other arguments. |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1586 * addr_count == 2: ":N,N bdel" - delete buffers in range |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1587 * |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1588 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1589 * DOBUF_DEL (":bdel") |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1590 * |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1591 * Returns error message or NULL |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1592 */ |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1593 char * |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1594 do_bufdel( |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1595 int command, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1596 char_u *arg, // pointer to extra arguments |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1597 int addr_count, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1598 int start_bnr, // first buffer number in a range |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1599 int end_bnr, // buffer nr or last buffer nr in a range |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1600 int forceit) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1601 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1602 int do_current = 0; // delete current buffer? |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1603 int deleted = 0; // number of buffers deleted |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1604 char *errormsg = NULL; // return value |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1605 int bnr; // buffer number |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1606 char_u *p; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1607 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1608 if (addr_count == 0) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1609 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1610 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1611 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1612 else |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1613 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1614 if (addr_count == 2) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1615 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1616 if (*arg) // both range and argument is not allowed |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1617 return ex_errmsg(e_trailing_arg, arg); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1618 bnr = start_bnr; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1619 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1620 else // addr_count == 1 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1621 bnr = end_bnr; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1622 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1623 for ( ;!got_int; ui_breakcheck()) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1624 { |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1625 // Delete the current buffer last, otherwise when the |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1626 // current buffer is deleted, the next buffer becomes |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1627 // the current one and will be loaded, which may then |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1628 // also be deleted, etc. |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1629 if (bnr == curbuf->b_fnum) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1630 do_current = bnr; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1631 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, (int)bnr, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1632 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1633 ++deleted; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1634 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1635 // find next buffer number to delete/unload |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1636 if (addr_count == 2) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1637 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1638 if (++bnr > end_bnr) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1639 break; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1640 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1641 else // addr_count == 1 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1642 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1643 arg = skipwhite(arg); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1644 if (*arg == NUL) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1645 break; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1646 if (!VIM_ISDIGIT(*arg)) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1647 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1648 p = skiptowhite_esc(arg); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1649 bnr = buflist_findpat(arg, p, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1650 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1651 FALSE, FALSE); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1652 if (bnr < 0) // failed |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1653 break; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1654 arg = p; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1655 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1656 else |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1657 bnr = getdigits(&arg); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1658 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1659 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1660 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1661 FORWARD, do_current, forceit) == OK) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1662 ++deleted; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1663 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1664 if (deleted == 0) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1665 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1666 if (command == DOBUF_UNLOAD) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1667 STRCPY(IObuff, _("E515: No buffers were unloaded")); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1668 else if (command == DOBUF_DEL) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1669 STRCPY(IObuff, _("E516: No buffers were deleted")); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1670 else |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1671 STRCPY(IObuff, _("E517: No buffers were wiped out")); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1672 errormsg = (char *)IObuff; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1673 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1674 else if (deleted >= p_report) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1675 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1676 if (command == DOBUF_UNLOAD) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1677 smsg(NGETTEXT("%d buffer unloaded", |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1678 "%d buffers unloaded", deleted), deleted); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1679 else if (command == DOBUF_DEL) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1680 smsg(NGETTEXT("%d buffer deleted", |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1681 "%d buffers deleted", deleted), deleted); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1682 else |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1683 smsg(NGETTEXT("%d buffer wiped out", |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1684 "%d buffers wiped out", deleted), deleted); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1685 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1686 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1687 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1688 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1689 return errormsg; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1690 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1691 |
7 | 1692 /* |
1693 * Set current buffer to "buf". Executes autocommands and closes current | |
1694 * buffer. "action" tells how to close the current buffer: | |
1695 * DOBUF_GOTO free or hide it | |
1696 * DOBUF_SPLIT nothing | |
1697 * DOBUF_UNLOAD unload it | |
1698 * DOBUF_DEL delete it | |
1699 * DOBUF_WIPE wipe it out | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1700 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse" |
7 | 1701 */ |
1702 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1703 set_curbuf(buf_T *buf, int action) |
7 | 1704 { |
1705 buf_T *prevbuf; | |
1706 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1707 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); |
4139 | 1708 #ifdef FEAT_SYN_HL |
1709 long old_tw = curbuf->b_p_tw; | |
1710 #endif | |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1711 bufref_T newbufref; |
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1712 bufref_T prevbufref; |
7 | 1713 |
1714 setpcmark(); | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
1715 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1716 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1717 buflist_altfpos(curwin); // remember curpos |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1718 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1719 // Don't restart Select mode after switching to another buffer. |
7 | 1720 VIsual_reselect = FALSE; |
1721 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1722 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf" |
7 | 1723 prevbuf = curbuf; |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1724 set_bufref(&prevbufref, prevbuf); |
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1725 set_bufref(&newbufref, buf); |
7 | 1726 |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
1727 // Autocommands may delete the current buffer and/or the buffer we want to |
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
1728 // go to. In those cases don't close the buffer. |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1729 if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf) |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1730 || (bufref_valid(&prevbufref) |
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1731 && bufref_valid(&newbufref) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1732 #ifdef FEAT_EVAL |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1733 && !aborting() |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1734 #endif |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1735 )) |
7 | 1736 { |
3068 | 1737 #ifdef FEAT_SYN_HL |
1738 if (prevbuf == curwin->w_buffer) | |
1739 reset_synblock(curwin); | |
1740 #endif | |
7 | 1741 if (unload) |
671 | 1742 close_windows(prevbuf, FALSE); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1743 #if defined(FEAT_EVAL) |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1744 if (bufref_valid(&prevbufref) && !aborting()) |
7 | 1745 #else |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1746 if (bufref_valid(&prevbufref)) |
7 | 1747 #endif |
815 | 1748 { |
3654 | 1749 win_T *previouswin = curwin; |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
19075
diff
changeset
|
1750 |
815 | 1751 if (prevbuf == curbuf) |
825 | 1752 u_sync(FALSE); |
7 | 1753 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf, |
1754 unload ? action : (action == DOBUF_GOTO | |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
1755 && !buf_hide(prevbuf) |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1756 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1757 FALSE, FALSE); |
3654 | 1758 if (curwin != previouswin && win_valid(previouswin)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1759 // autocommands changed curwin, Grr! |
3654 | 1760 curwin = previouswin; |
815 | 1761 } |
7 | 1762 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1763 // An autocommand may have deleted "buf", already entered it (e.g., when |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1764 // it did ":bunload") or aborted the script processing. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1765 // If curwin->w_buffer is null, enter_buffer() will make it valid again |
3594 | 1766 if ((buf_valid(buf) && buf != curbuf |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1767 #ifdef FEAT_EVAL |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
1768 && !aborting() |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1769 #endif |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
1770 ) || curwin->w_buffer == NULL) |
4139 | 1771 { |
7 | 1772 enter_buffer(buf); |
4139 | 1773 #ifdef FEAT_SYN_HL |
1774 if (old_tw != curbuf->b_p_tw) | |
1775 check_colorcolumn(curwin); | |
1776 #endif | |
1777 } | |
7 | 1778 } |
1779 | |
1780 /* | |
1781 * Enter a new current buffer. | |
4139 | 1782 * Old curbuf must have been abandoned already! This also means "curbuf" may |
1783 * be pointing to freed memory. | |
7 | 1784 */ |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
1785 static void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1786 enter_buffer(buf_T *buf) |
7 | 1787 { |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1788 // Get the buffer in the current window. |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1789 curwin->w_buffer = buf; |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1790 curbuf = buf; |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1791 ++curbuf->b_nwindows; |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1792 |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1793 // Copy buffer and window local option values. Not for a help buffer. |
7 | 1794 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP); |
1795 if (!buf->b_help) | |
1796 get_winopts(buf); | |
1797 #ifdef FEAT_FOLDING | |
1798 else | |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1799 // Remove all folds in the window. |
7 | 1800 clearFolding(curwin); |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1801 foldUpdateAll(curwin); // update folds (later). |
7 | 1802 #endif |
1803 | |
1804 #ifdef FEAT_DIFF | |
672 | 1805 if (curwin->w_p_diff) |
1806 diff_buf_add(curbuf); | |
7 | 1807 #endif |
1808 | |
3068 | 1809 #ifdef FEAT_SYN_HL |
11690
ce434212d682
patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents:
11531
diff
changeset
|
1810 curwin->w_s = &(curbuf->b_s); |
3068 | 1811 #endif |
1812 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1813 // Cursor on first line by default. |
7 | 1814 curwin->w_cursor.lnum = 1; |
1815 curwin->w_cursor.col = 0; | |
1816 curwin->w_cursor.coladd = 0; | |
1817 curwin->w_set_curswant = TRUE; | |
1744 | 1818 curwin->w_topline_was_set = FALSE; |
7 | 1819 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1820 // mark cursor position as being invalid |
2091
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1821 curwin->w_valid = 0; |
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1822 |
14826
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
1823 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum, |
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
1824 curbuf->b_last_cursor.col, TRUE); |
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
1825 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1826 // Make sure the buffer is loaded. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1827 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file |
22 | 1828 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1829 // If there is no filetype, allow for detecting one. Esp. useful for |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1830 // ":ball" used in a autocommand. If there already is a filetype we |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1831 // might prefer to keep it. |
22 | 1832 if (*curbuf->b_p_ft == NUL) |
1833 did_filetype = FALSE; | |
1834 | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
1835 open_buffer(FALSE, NULL, 0); |
22 | 1836 } |
7 | 1837 else |
1838 { | |
16664
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1839 if (!msg_silent && !shortmess(SHM_FILEINFO)) |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1840 need_fileinfo = TRUE; // display file info after redraw |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1841 |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1842 // check if file changed |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1843 (void)buf_check_timestamp(curbuf, FALSE); |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1844 |
7 | 1845 curwin->w_topline = 1; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1846 #ifdef FEAT_DIFF |
7 | 1847 curwin->w_topfill = 0; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1848 #endif |
7 | 1849 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); |
1850 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); | |
1851 } | |
1852 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1853 // If autocommands did not change the cursor position, restore cursor lnum |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1854 // and possibly cursor col. |
7 | 1855 if (curwin->w_cursor.lnum == 1 && inindent(0)) |
1856 buflist_getfpos(); | |
1857 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1858 check_arg_idx(curwin); // check for valid arg_idx |
7 | 1859 #ifdef FEAT_TITLE |
1860 maketitle(); | |
1861 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1862 // when autocmds didn't change it |
1744 | 1863 if (curwin->w_topline == 1 && !curwin->w_topline_was_set) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1864 scroll_cursor_halfway(FALSE); // redisplay at correct position |
7 | 1865 |
33 | 1866 #ifdef FEAT_NETBEANS_INTG |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1867 // Send fileOpened event because we've changed buffers. |
2210 | 1868 netbeans_file_activated(curbuf); |
33 | 1869 #endif |
1870 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1871 // Change directories when the 'acd' option is set. |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13555
diff
changeset
|
1872 DO_AUTOCHDIR; |
7 | 1873 |
1874 #ifdef FEAT_KEYMAP | |
1875 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 1876 (void)keymap_init(); |
7 | 1877 #endif |
1185 | 1878 #ifdef FEAT_SPELL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1879 // May need to set the spell language. Can only do this after the buffer |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1880 // has been properly setup. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
1881 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
|
1882 (void)did_set_spelllang(curwin); |
1185 | 1883 #endif |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1884 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1885 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1886 #endif |
1185 | 1887 |
7 | 1888 redraw_later(NOT_VALID); |
1889 } | |
1890 | |
961 | 1891 #if defined(FEAT_AUTOCHDIR) || defined(PROTO) |
1892 /* | |
1893 * 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
|
1894 * Don't do this while still starting up. |
961 | 1895 */ |
1896 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1897 do_autochdir(void) |
961 | 1898 { |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9450
diff
changeset
|
1899 if ((starting == 0 || test_autochdir) |
8216
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1900 && curbuf->b_ffname != NULL |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1901 && vim_chdirfile(curbuf->b_ffname, "auto") == OK) |
961 | 1902 shorten_fnames(TRUE); |
1903 } | |
1904 #endif | |
1905 | |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1906 void |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1907 no_write_message(void) |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1908 { |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1909 #ifdef FEAT_TERMINAL |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1910 if (term_job_running(curbuf->b_term)) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1911 emsg(_("E948: Job still running (add ! to end the job)")); |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1912 else |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1913 #endif |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25120
diff
changeset
|
1914 emsg(_(e_no_write_since_last_change_add_bang_to_override)); |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1915 } |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1916 |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1917 void |
13302
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1918 no_write_message_nobang(buf_T *buf UNUSED) |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1919 { |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1920 #ifdef FEAT_TERMINAL |
13302
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1921 if (term_job_running(buf->b_term)) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1922 emsg(_("E948: Job still running")); |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1923 else |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1924 #endif |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25120
diff
changeset
|
1925 emsg(_(e_no_write_since_last_change)); |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1926 } |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1927 |
7 | 1928 /* |
1929 * functions for dealing with the buffer list | |
1930 */ | |
1931 | |
1932 /* | |
13782
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1933 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1934 * only one window. That means it can be re-used. |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1935 */ |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1936 int |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1937 curbuf_reusable(void) |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1938 { |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1939 return (curbuf != NULL |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1940 && curbuf->b_ffname == NULL |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1941 && curbuf->b_nwindows <= 1 |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1942 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY()) |
16261
2001ef982570
patch 8.1.1135: build failure for small version
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
1943 #if defined(FEAT_QUICKFIX) |
16259
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
1944 && !bt_quickfix(curbuf) |
16261
2001ef982570
patch 8.1.1135: build failure for small version
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
1945 #endif |
13782
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1946 && !curbufIsChanged()); |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1947 } |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1948 |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1949 /* |
7 | 1950 * Add a file name to the buffer list. Return a pointer to the buffer. |
1951 * If the same file name already exists return a pointer to that buffer. | |
1952 * If it does not exist, or if fname == NULL, a new entry is created. | |
1953 * If (flags & BLN_CURBUF) is TRUE, may use current buffer. | |
1954 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list. | |
1955 * 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
|
1956 * 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
|
1957 * 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
|
1958 * if the buffer already exists. |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1959 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse". |
7 | 1960 * This is the ONLY way to create a new buffer. |
1961 */ | |
1962 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1963 buflist_new( |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1964 char_u *ffname_arg, // full path of fname or relative |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1965 char_u *sfname_arg, // short fname or NULL |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1966 linenr_T lnum, // preferred cursor line |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1967 int flags) // BLN_ defines |
7 | 1968 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1969 char_u *ffname = ffname_arg; |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1970 char_u *sfname = sfname_arg; |
7 | 1971 buf_T *buf; |
1972 #ifdef UNIX | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
1973 stat_T st; |
7 | 1974 #endif |
1975 | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1976 if (top_file_num == 1) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1977 hash_init(&buf_hashtab); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1978 |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1979 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname |
7 | 1980 |
1981 /* | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1982 * If the file name already exists in the list, update the entry. |
7 | 1983 */ |
1984 #ifdef UNIX | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1985 // On Unix we can use inode numbers when the file exists. Works better |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1986 // for hard links. |
7 | 1987 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0) |
1988 st.st_dev = (dev_T)-1; | |
1989 #endif | |
9149
18bbf31015c2
commit https://github.com/vim/vim/commit/b127cfd75f59e82580df395b6e2c009774644b16
Christian Brabandt <cb@256bit.org>
parents:
9106
diff
changeset
|
1990 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf = |
7 | 1991 #ifdef UNIX |
1992 buflist_findname_stat(ffname, &st) | |
1993 #else | |
1994 buflist_findname(ffname) | |
1995 #endif | |
1996 ) != NULL) | |
1997 { | |
1998 vim_free(ffname); | |
1999 if (lnum != 0) | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
2000 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin, |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
2001 lnum, (colnr_T)0, FALSE); |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2002 |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2003 if ((flags & BLN_NOOPT) == 0) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2004 // copy the options now, if 'cpo' doesn't have 's' and not done |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2005 // already |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2006 buf_copy_options(buf, 0); |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2007 |
7 | 2008 if ((flags & BLN_LISTED) && !buf->b_p_bl) |
2009 { | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2010 bufref_T bufref; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2011 |
7 | 2012 buf->b_p_bl = TRUE; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2013 set_bufref(&bufref, buf); |
7 | 2014 if (!(flags & BLN_DUMMY)) |
5816 | 2015 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2016 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
|
2017 && !bufref_valid(&bufref)) |
5816 | 2018 return NULL; |
2019 } | |
7 | 2020 } |
2021 return buf; | |
2022 } | |
2023 | |
2024 /* | |
2025 * If the current buffer has no name and no contents, use the current | |
2026 * buffer. Otherwise: Need to allocate a new buffer structure. | |
2027 * | |
2028 * This is the ONLY place where a new buffer structure is allocated! | |
625 | 2029 * (A spell file buffer is allocated in spell.c, but that's not a normal |
2030 * buffer.) | |
7 | 2031 */ |
2032 buf = NULL; | |
13782
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
2033 if ((flags & BLN_CURBUF) && curbuf_reusable()) |
7 | 2034 { |
2035 buf = curbuf; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2036 // It's like this buffer is deleted. Watch out for autocommands that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2037 // change curbuf! If that happens, allocate a new buffer anyway. |
7 | 2038 if (curbuf->b_p_bl) |
2039 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); | |
2040 if (buf == curbuf) | |
2041 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf); | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2042 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2043 if (aborting()) // autocmds may abort script processing |
19816
f37028184d6a
patch 8.2.0464: typos and other small problems
Bram Moolenaar <Bram@vim.org>
parents:
19629
diff
changeset
|
2044 { |
f37028184d6a
patch 8.2.0464: typos and other small problems
Bram Moolenaar <Bram@vim.org>
parents:
19629
diff
changeset
|
2045 vim_free(ffname); |
7 | 2046 return NULL; |
19816
f37028184d6a
patch 8.2.0464: typos and other small problems
Bram Moolenaar <Bram@vim.org>
parents:
19629
diff
changeset
|
2047 } |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2048 #endif |
7 | 2049 if (buf == curbuf) |
2050 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2051 // Make sure 'bufhidden' and 'buftype' are empty |
7 | 2052 clear_string_option(&buf->b_p_bh); |
2053 clear_string_option(&buf->b_p_bt); | |
2054 } | |
2055 } | |
2056 if (buf != curbuf || curbuf == NULL) | |
2057 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
2058 buf = ALLOC_CLEAR_ONE(buf_T); |
7 | 2059 if (buf == NULL) |
2060 { | |
2061 vim_free(ffname); | |
2062 return NULL; | |
2063 } | |
4287 | 2064 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2065 // init b: variables |
4287 | 2066 buf->b_vars = dict_alloc(); |
2067 if (buf->b_vars == NULL) | |
2068 { | |
2069 vim_free(ffname); | |
2070 vim_free(buf); | |
2071 return NULL; | |
2072 } | |
2073 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE); | |
2074 #endif | |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
2075 init_changedtick(buf); |
7 | 2076 } |
2077 | |
2078 if (ffname != NULL) | |
2079 { | |
2080 buf->b_ffname = ffname; | |
2081 buf->b_sfname = vim_strsave(sfname); | |
2082 } | |
2083 | |
2084 clear_wininfo(buf); | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
2085 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T); |
7 | 2086 |
2087 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL)) | |
2088 || buf->b_wininfo == NULL) | |
2089 { | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2090 if (buf->b_sfname != buf->b_ffname) |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2091 VIM_CLEAR(buf->b_sfname); |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2092 else |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2093 buf->b_sfname = NULL; |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
2094 VIM_CLEAR(buf->b_ffname); |
7 | 2095 if (buf != curbuf) |
2096 free_buffer(buf); | |
2097 return NULL; | |
2098 } | |
2099 | |
2100 if (buf == curbuf) | |
2101 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2102 // 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
|
2103 buf_freeall(buf, 0); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2104 if (buf != curbuf) // autocommands deleted the buffer! |
7 | 2105 return NULL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2106 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2107 if (aborting()) // autocmds may abort script processing |
7 | 2108 return NULL; |
2109 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2110 free_buffer_stuff(buf, FALSE); // delete local variables et al. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2111 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2112 // Init the options. |
3925 | 2113 buf->b_p_initialized = FALSE; |
2114 buf_copy_options(buf, BCO_ENTER); | |
2115 | |
7 | 2116 #ifdef FEAT_KEYMAP |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2117 // need to reload lmaps and set b:keymap_name |
7 | 2118 curbuf->b_kmap_state |= KEYMAP_INIT; |
2119 #endif | |
2120 } | |
2121 else | |
2122 { | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2123 // put the new buffer at the end of the buffer list |
7 | 2124 buf->b_next = NULL; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2125 if (firstbuf == NULL) // buffer list is empty |
7 | 2126 { |
2127 buf->b_prev = NULL; | |
2128 firstbuf = buf; | |
2129 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2130 else // append new buffer at end of list |
7 | 2131 { |
2132 lastbuf->b_next = buf; | |
2133 buf->b_prev = lastbuf; | |
2134 } | |
2135 lastbuf = buf; | |
2136 | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2137 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0) |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2138 { |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2139 // Recycle a previously used buffer number. Used for buffers which |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2140 // are normally hidden, e.g. in a popup window. Avoids that the |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2141 // buffer number grows rapidly. |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2142 --buf_reuse.ga_len; |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2143 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len]; |
18864
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2144 |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2145 // Move buffer to the right place in the buffer list. |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2146 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2147 { |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2148 buf_T *prev = buf->b_prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2149 |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2150 prev->b_next = buf->b_next; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2151 if (prev->b_next != NULL) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2152 prev->b_next->b_prev = prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2153 buf->b_next = prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2154 buf->b_prev = prev->b_prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2155 if (buf->b_prev != NULL) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2156 buf->b_prev->b_next = buf; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2157 prev->b_prev = buf; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2158 if (lastbuf == buf) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2159 lastbuf = prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2160 if (firstbuf == prev) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2161 firstbuf = buf; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2162 } |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2163 } |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2164 else |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2165 buf->b_fnum = top_file_num++; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2166 if (top_file_num < 0) // wrap around (may cause duplicates) |
7 | 2167 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
2168 emsg(_("W14: Warning: List of file names overflow")); |
22742
f7f2d73ff85e
patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents:
22721
diff
changeset
|
2169 if (emsg_silent == 0 && !in_assert_fails) |
7 | 2170 { |
2171 out_flush(); | |
18642
bbea1f108187
patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents:
18546
diff
changeset
|
2172 ui_delay(3001L, TRUE); // make sure it is noticed |
7 | 2173 } |
2174 top_file_num = 1; | |
2175 } | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2176 buf_hashtab_add(buf); |
7 | 2177 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2178 // Always copy the options from the current buffer. |
7 | 2179 buf_copy_options(buf, BCO_ALWAYS); |
2180 } | |
2181 | |
2182 buf->b_wininfo->wi_fpos.lnum = lnum; | |
2183 buf->b_wininfo->wi_win = curwin; | |
2184 | |
126 | 2185 #ifdef FEAT_SYN_HL |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2186 hash_init(&buf->b_s.b_keywtab); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2187 hash_init(&buf->b_s.b_keywtab_ic); |
7 | 2188 #endif |
2189 | |
2190 buf->b_fname = buf->b_sfname; | |
2191 #ifdef UNIX | |
2192 if (st.st_dev == (dev_T)-1) | |
1873 | 2193 buf->b_dev_valid = FALSE; |
7 | 2194 else |
2195 { | |
1873 | 2196 buf->b_dev_valid = TRUE; |
7 | 2197 buf->b_dev = st.st_dev; |
2198 buf->b_ino = st.st_ino; | |
2199 } | |
2200 #endif | |
2201 buf->b_u_synced = TRUE; | |
2202 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; | |
42 | 2203 if (flags & BLN_DUMMY) |
2204 buf->b_flags |= BF_DUMMY; | |
7 | 2205 buf_clear_file(buf); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2206 clrallmarks(buf); // clear marks |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2207 fmarks_check_names(buf); // check file marks for this file |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2208 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted' |
7 | 2209 if (!(flags & BLN_DUMMY)) |
2210 { | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2211 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2212 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2213 // Tricky: these autocommands may change the buffer list. They could |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2214 // also split the window with re-using the one empty buffer. This may |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2215 // 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
|
2216 set_bufref(&bufref, buf); |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2217 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
|
2218 && !bufref_valid(&bufref)) |
5816 | 2219 return NULL; |
7 | 2220 if (flags & BLN_LISTED) |
5816 | 2221 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2222 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
|
2223 && !bufref_valid(&bufref)) |
5816 | 2224 return NULL; |
2225 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2226 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2227 if (aborting()) // autocmds may abort script processing |
7 | 2228 return NULL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2229 #endif |
7 | 2230 } |
2231 | |
2232 return buf; | |
2233 } | |
2234 | |
2235 /* | |
2236 * Free the memory for the options of a buffer. | |
2237 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and | |
2238 * 'fileencoding'. | |
2239 */ | |
2240 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2241 free_buf_options( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2242 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2243 int free_p_ff) |
7 | 2244 { |
2245 if (free_p_ff) | |
2246 { | |
2247 clear_string_option(&buf->b_p_fenc); | |
2248 clear_string_option(&buf->b_p_ff); | |
2249 clear_string_option(&buf->b_p_bh); | |
2250 clear_string_option(&buf->b_p_bt); | |
2251 } | |
2252 #ifdef FEAT_FIND_ID | |
2253 clear_string_option(&buf->b_p_def); | |
2254 clear_string_option(&buf->b_p_inc); | |
2255 # ifdef FEAT_EVAL | |
2256 clear_string_option(&buf->b_p_inex); | |
2257 # endif | |
2258 #endif | |
2259 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL) | |
2260 clear_string_option(&buf->b_p_inde); | |
2261 clear_string_option(&buf->b_p_indk); | |
2262 #endif | |
788 | 2263 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
2264 clear_string_option(&buf->b_p_bexpr); | |
2265 #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
|
2266 #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
|
2267 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
|
2268 #endif |
10678
c647f01d6dbd
patch 8.0.0229: local 'formatprg' option value leaks
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
2269 clear_string_option(&buf->b_p_fp); |
667 | 2270 #if defined(FEAT_EVAL) |
2271 clear_string_option(&buf->b_p_fex); | |
2272 #endif | |
7 | 2273 #ifdef FEAT_CRYPT |
25417
1919361a53da
patch 8.2.3245: the crypt key may appear in a swap partition
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2274 # ifdef FEAT_SODIUM |
1919361a53da
patch 8.2.3245: the crypt key may appear in a swap partition
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2275 if (buf->b_p_key != NULL && (crypt_get_method_nr(buf) == CRYPT_M_SOD)) |
1919361a53da
patch 8.2.3245: the crypt key may appear in a swap partition
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2276 sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key)); |
1919361a53da
patch 8.2.3245: the crypt key may appear in a swap partition
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2277 # endif |
7 | 2278 clear_string_option(&buf->b_p_key); |
2279 #endif | |
2280 clear_string_option(&buf->b_p_kp); | |
2281 clear_string_option(&buf->b_p_mps); | |
2282 clear_string_option(&buf->b_p_fo); | |
41 | 2283 clear_string_option(&buf->b_p_flp); |
7 | 2284 clear_string_option(&buf->b_p_isk); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2285 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2286 clear_string_option(&buf->b_p_vsts); |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
2287 vim_free(buf->b_p_vsts_nopaste); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2288 buf->b_p_vsts_nopaste = NULL; |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
2289 vim_free(buf->b_p_vsts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2290 buf->b_p_vsts_array = NULL; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2291 clear_string_option(&buf->b_p_vts); |
15858
3a45b89639fb
patch 8.1.0936: may leak memory when using 'vartabstop'
Bram Moolenaar <Bram@vim.org>
parents:
15794
diff
changeset
|
2292 VIM_CLEAR(buf->b_p_vts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2293 #endif |
7 | 2294 #ifdef FEAT_KEYMAP |
2295 clear_string_option(&buf->b_p_keymap); | |
13121
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
13054
diff
changeset
|
2296 keymap_clear(&buf->b_kmap_ga); |
7 | 2297 ga_clear(&buf->b_kmap_ga); |
2298 #endif | |
2299 clear_string_option(&buf->b_p_com); | |
2300 #ifdef FEAT_FOLDING | |
2301 clear_string_option(&buf->b_p_cms); | |
2302 #endif | |
2303 clear_string_option(&buf->b_p_nf); | |
2304 #ifdef FEAT_SYN_HL | |
2305 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
|
2306 clear_string_option(&buf->b_s.b_syn_isk); |
737 | 2307 #endif |
2308 #ifdef FEAT_SPELL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2309 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
|
2310 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
|
2311 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
|
2312 buf->b_s.b_cap_prog = NULL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2313 clear_string_option(&buf->b_s.b_p_spl); |
20802
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20599
diff
changeset
|
2314 clear_string_option(&buf->b_s.b_p_spo); |
7 | 2315 #endif |
2316 #ifdef FEAT_SEARCHPATH | |
2317 clear_string_option(&buf->b_p_sua); | |
2318 #endif | |
2319 clear_string_option(&buf->b_p_ft); | |
2320 #ifdef FEAT_CINDENT | |
2321 clear_string_option(&buf->b_p_cink); | |
2322 clear_string_option(&buf->b_p_cino); | |
2323 #endif | |
2324 #if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT) | |
2325 clear_string_option(&buf->b_p_cinw); | |
2326 #endif | |
2327 clear_string_option(&buf->b_p_cpt); | |
12 | 2328 #ifdef FEAT_COMPL_FUNC |
2329 clear_string_option(&buf->b_p_cfu); | |
502 | 2330 clear_string_option(&buf->b_p_ofu); |
25984
c8fcea636252
patch 8.2.3525: option variable name does not match option name
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
2331 clear_string_option(&buf->b_p_tsrfu); |
12 | 2332 #endif |
7 | 2333 #ifdef FEAT_QUICKFIX |
2334 clear_string_option(&buf->b_p_gp); | |
2335 clear_string_option(&buf->b_p_mp); | |
2336 clear_string_option(&buf->b_p_efm); | |
2337 #endif | |
2338 clear_string_option(&buf->b_p_ep); | |
2339 clear_string_option(&buf->b_p_path); | |
2340 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
|
2341 clear_string_option(&buf->b_p_tc); |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
2342 #ifdef FEAT_EVAL |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
2343 clear_string_option(&buf->b_p_tfu); |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
2344 #endif |
7 | 2345 clear_string_option(&buf->b_p_dict); |
2346 clear_string_option(&buf->b_p_tsr); | |
12 | 2347 #ifdef FEAT_TEXTOBJ |
2348 clear_string_option(&buf->b_p_qe); | |
2349 #endif | |
7 | 2350 buf->b_p_ar = -1; |
5446 | 2351 buf->b_p_ul = NO_LOCAL_UNDOLEVEL; |
5712 | 2352 #ifdef FEAT_LISP |
2353 clear_string_option(&buf->b_p_lw); | |
2354 #endif | |
6243 | 2355 clear_string_option(&buf->b_p_bkc); |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
10954
diff
changeset
|
2356 clear_string_option(&buf->b_p_menc); |
7 | 2357 } |
2358 | |
2359 /* | |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2360 * Get alternate file "n". |
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2361 * Set linenr to "lnum" or altfpos.lnum if "lnum" == 0. |
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2362 * Also set cursor column to altfpos.col if 'startofline' is not set. |
7 | 2363 * if (options & GETF_SETMARK) call setpcmark() |
2364 * if (options & GETF_ALT) we are jumping to an alternate file. | |
2365 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping | |
2366 * | |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2367 * Return FAIL for failure, OK for success. |
7 | 2368 */ |
2369 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2370 buflist_getfile( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2371 int n, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2372 linenr_T lnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2373 int options, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2374 int forceit) |
7 | 2375 { |
2376 buf_T *buf; | |
2377 win_T *wp = NULL; | |
2378 pos_T *fpos; | |
2379 colnr_T col; | |
2380 | |
2381 buf = buflist_findnr(n); | |
2382 if (buf == NULL) | |
2383 { | |
2384 if ((options & GETF_ALT) && n == 0) | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24868
diff
changeset
|
2385 emsg(_(e_no_alternate_file)); |
7 | 2386 else |
15490
98c35d312987
patch 8.1.0753: printf format not checked for semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2387 semsg(_("E92: Buffer %d not found"), n); |
7 | 2388 return FAIL; |
2389 } | |
2390 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2391 // if alternate file is the current buffer, nothing to do |
7 | 2392 if (buf == curbuf) |
2393 return OK; | |
2394 | |
633 | 2395 if (text_locked()) |
631 | 2396 { |
633 | 2397 text_locked_msg(); |
7 | 2398 return FAIL; |
631 | 2399 } |
819 | 2400 if (curbuf_locked()) |
2401 return FAIL; | |
7 | 2402 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2403 // altfpos may be changed by getfile(), get it now |
7 | 2404 if (lnum == 0) |
2405 { | |
2406 fpos = buflist_findfpos(buf); | |
2407 lnum = fpos->lnum; | |
2408 col = fpos->col; | |
2409 } | |
2410 else | |
2411 col = 0; | |
2412 | |
2413 if (options & GETF_SWITCH) | |
2414 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2415 // If 'switchbuf' contains "useopen": jump to first window containing |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2416 // "buf" if one exists |
1618 | 2417 if (swb_flags & SWB_USEOPEN) |
7 | 2418 wp = buf_jump_open_win(buf); |
6843 | 2419 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2420 // If 'switchbuf' contains "usetab": jump to first window in any tab |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2421 // page containing "buf" if one exists |
1618 | 2422 if (wp == NULL && (swb_flags & SWB_USETAB)) |
825 | 2423 wp = buf_jump_open_tab(buf); |
6843 | 2424 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2425 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2426 // current buffer isn't empty: open new tab or window |
6843 | 2427 if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB)) |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
2428 && !BUFEMPTY()) |
7 | 2429 { |
6843 | 2430 if (swb_flags & SWB_NEWTAB) |
1618 | 2431 tabpage_new(); |
6843 | 2432 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0) |
2433 == FAIL) | |
7 | 2434 return FAIL; |
2583 | 2435 RESET_BINDING(curwin); |
7 | 2436 } |
2437 } | |
2438 | |
2439 ++RedrawingDisabled; | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11447
diff
changeset
|
2440 if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL, |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11447
diff
changeset
|
2441 (options & GETF_SETMARK), lnum, forceit))) |
7 | 2442 { |
2443 --RedrawingDisabled; | |
2444 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2445 // cursor is at to BOL and w_cursor.lnum is checked due to getfile() |
7 | 2446 if (!p_sol && col != 0) |
2447 { | |
2448 curwin->w_cursor.col = col; | |
2449 check_cursor_col(); | |
2450 curwin->w_cursor.coladd = 0; | |
2451 curwin->w_set_curswant = TRUE; | |
2452 } | |
2453 return OK; | |
2454 } | |
2455 --RedrawingDisabled; | |
2456 return FAIL; | |
2457 } | |
2458 | |
2459 /* | |
2460 * go to the last know line number for the current buffer | |
2461 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
2462 static void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2463 buflist_getfpos(void) |
7 | 2464 { |
2465 pos_T *fpos; | |
2466 | |
2467 fpos = buflist_findfpos(curbuf); | |
2468 | |
2469 curwin->w_cursor.lnum = fpos->lnum; | |
2470 check_cursor_lnum(); | |
2471 | |
2472 if (p_sol) | |
2473 curwin->w_cursor.col = 0; | |
2474 else | |
2475 { | |
2476 curwin->w_cursor.col = fpos->col; | |
2477 check_cursor_col(); | |
2478 curwin->w_cursor.coladd = 0; | |
2479 curwin->w_set_curswant = TRUE; | |
2480 } | |
2481 } | |
2482 | |
42 | 2483 #if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO) |
2484 /* | |
2485 * Find file in buffer list by name (it has to be for the current window). | |
2486 * Returns NULL if not found. | |
2487 */ | |
2488 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2489 buflist_findname_exp(char_u *fname) |
42 | 2490 { |
2491 char_u *ffname; | |
2492 buf_T *buf = NULL; | |
2493 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2494 // First make the name into a full path name |
42 | 2495 ffname = FullName_save(fname, |
2496 #ifdef UNIX | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2497 TRUE // force expansion, get rid of symbolic links |
42 | 2498 #else |
2499 FALSE | |
2500 #endif | |
2501 ); | |
2502 if (ffname != NULL) | |
2503 { | |
2504 buf = buflist_findname(ffname); | |
2505 vim_free(ffname); | |
2506 } | |
2507 return buf; | |
2508 } | |
2509 #endif | |
2510 | |
7 | 2511 /* |
2512 * Find file in buffer list by name (it has to be for the current window). | |
2513 * "ffname" must have a full path. | |
42 | 2514 * Skips dummy buffers. |
2515 * Returns NULL if not found. | |
7 | 2516 */ |
2517 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2518 buflist_findname(char_u *ffname) |
7 | 2519 { |
2520 #ifdef UNIX | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
2521 stat_T st; |
7 | 2522 |
2523 if (mch_stat((char *)ffname, &st) < 0) | |
2524 st.st_dev = (dev_T)-1; | |
2525 return buflist_findname_stat(ffname, &st); | |
2526 } | |
2527 | |
2528 /* | |
2529 * Same as buflist_findname(), but pass the stat structure to avoid getting it | |
2530 * twice for the same file. | |
42 | 2531 * Returns NULL if not found. |
7 | 2532 */ |
2533 static buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2534 buflist_findname_stat( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2535 char_u *ffname, |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
2536 stat_T *stp) |
7 | 2537 { |
2538 #endif | |
2539 buf_T *buf; | |
2540 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2541 // Start at the last buffer, expect to find a match sooner. |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
2542 FOR_ALL_BUFS_FROM_LAST(buf) |
42 | 2543 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname |
7 | 2544 #ifdef UNIX |
2545 , stp | |
2546 #endif | |
2547 )) | |
2548 return buf; | |
2549 return NULL; | |
2550 } | |
2551 | |
2552 /* | |
2553 * Find file in buffer list by a regexp pattern. | |
2554 * Return fnum of the found buffer. | |
2555 * Return < 0 for error. | |
2556 */ | |
2557 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2558 buflist_findpat( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2559 char_u *pattern, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2560 char_u *pattern_end, // pointer to first char after pattern |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2561 int unlisted, // find unlisted buffers |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2562 int diffmode UNUSED, // find diff-mode buffers only |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2563 int curtab_only) // find buffers in current tab only |
7 | 2564 { |
2565 buf_T *buf; | |
2566 int match = -1; | |
2567 int find_listed; | |
2568 char_u *pat; | |
2569 char_u *patend; | |
2570 int attempt; | |
2571 char_u *p; | |
2572 int toggledollar; | |
2573 | |
23711
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2574 // "%" is current file, "%%" or "#" is alternate file |
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2575 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#')) |
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2576 || (in_vim9script() && pattern_end == pattern + 2 |
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2577 && pattern[0] == '%' && pattern[1] == '%')) |
7 | 2578 { |
23711
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2579 if (*pattern == '#' || pattern_end == pattern + 2) |
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2580 match = curwin->w_alt_fnum; |
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2581 else |
7 | 2582 match = curbuf->b_fnum; |
2583 #ifdef FEAT_DIFF | |
2584 if (diffmode && !diff_mode_buf(buflist_findnr(match))) | |
2585 match = -1; | |
2586 #endif | |
2587 } | |
2588 | |
2589 /* | |
2590 * Try four ways of matching a listed buffer: | |
2591 * attempt == 0: without '^' or '$' (at any position) | |
1187 | 2592 * attempt == 1: with '^' at start (only at position 0) |
7 | 2593 * attempt == 2: with '$' at end (only match at end) |
2594 * attempt == 3: with '^' at start and '$' at end (only full match) | |
2595 * Repeat this for finding an unlisted buffer if there was no matching | |
2596 * listed buffer. | |
2597 */ | |
2598 else | |
2599 { | |
2600 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE); | |
2601 if (pat == NULL) | |
2602 return -1; | |
2603 patend = pat + STRLEN(pat) - 1; | |
2604 toggledollar = (patend > pat && *patend == '$'); | |
2605 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2606 // First try finding a listed buffer. If not found and "unlisted" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2607 // is TRUE, try finding an unlisted buffer. |
7 | 2608 find_listed = TRUE; |
2609 for (;;) | |
2610 { | |
2611 for (attempt = 0; attempt <= 3; ++attempt) | |
2612 { | |
6375 | 2613 regmatch_T regmatch; |
2614 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2615 // may add '^' and '$' |
7 | 2616 if (toggledollar) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2617 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$' |
7 | 2618 p = pat; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2619 if (*p == '^' && !(attempt & 1)) // add/remove '^' |
7 | 2620 ++p; |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22987
diff
changeset
|
2621 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0); |
6375 | 2622 if (regmatch.regprog == NULL) |
7 | 2623 { |
2624 vim_free(pat); | |
2625 return -1; | |
2626 } | |
2627 | |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
2628 FOR_ALL_BUFS_FROM_LAST(buf) |
7 | 2629 if (buf->b_p_bl == find_listed |
2630 #ifdef FEAT_DIFF | |
2631 && (!diffmode || diff_mode_buf(buf)) | |
2632 #endif | |
6375 | 2633 && buflist_match(®match, buf, FALSE) != NULL) |
7 | 2634 { |
4236 | 2635 if (curtab_only) |
2636 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2637 // Ignore the match if the buffer is not open in |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2638 // the current tab. |
4236 | 2639 win_T *wp; |
2640 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
2641 FOR_ALL_WINDOWS(wp) |
4236 | 2642 if (wp->w_buffer == buf) |
2643 break; | |
2644 if (wp == NULL) | |
2645 continue; | |
2646 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2647 if (match >= 0) // already found a match |
7 | 2648 { |
2649 match = -2; | |
2650 break; | |
2651 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2652 match = buf->b_fnum; // remember first match |
7 | 2653 } |
2654 | |
6375 | 2655 vim_regfree(regmatch.regprog); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2656 if (match >= 0) // found one match |
7 | 2657 break; |
2658 } | |
2659 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2660 // Only search for unlisted buffers if there was no match with |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2661 // a listed buffer. |
7 | 2662 if (!unlisted || !find_listed || match != -1) |
2663 break; | |
2664 find_listed = FALSE; | |
2665 } | |
2666 | |
2667 vim_free(pat); | |
2668 } | |
2669 | |
2670 if (match == -2) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
2671 semsg(_("E93: More than one match for %s"), pattern); |
7 | 2672 else if (match < 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
2673 semsg(_("E94: No matching buffer for %s"), pattern); |
7 | 2674 return match; |
2675 } | |
2676 | |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2677 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2678 typedef struct { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2679 buf_T *buf; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2680 char_u *match; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2681 } bufmatch_T; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2682 #endif |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2683 |
7 | 2684 /* |
2685 * Find all buffer names that match. | |
2686 * For command line expansion of ":buf" and ":sbuf". | |
2687 * Return OK if matches found, FAIL otherwise. | |
2688 */ | |
2689 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2690 ExpandBufnames( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2691 char_u *pat, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2692 int *num_file, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2693 char_u ***file, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2694 int options) |
7 | 2695 { |
2696 int count = 0; | |
2697 buf_T *buf; | |
2698 int round; | |
2699 char_u *p; | |
2700 int attempt; | |
170 | 2701 char_u *patc; |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2702 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2703 bufmatch_T *matches = NULL; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2704 #endif |
7 | 2705 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2706 *num_file = 0; // return values in case of FAIL |
7 | 2707 *file = NULL; |
2708 | |
19007
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2709 #ifdef FEAT_DIFF |
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2710 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff) |
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2711 return FAIL; |
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2712 #endif |
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2713 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2714 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)". |
170 | 2715 if (*pat == '^') |
2716 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16740
diff
changeset
|
2717 patc = alloc(STRLEN(pat) + 11); |
170 | 2718 if (patc == NULL) |
2719 return FAIL; | |
2720 STRCPY(patc, "\\(^\\|[\\/]\\)"); | |
2721 STRCPY(patc + 11, pat + 1); | |
2722 } | |
2723 else | |
2724 patc = pat; | |
2725 | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2726 // attempt == 0: try match with '\<', match at start of word |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2727 // attempt == 1: try match without '\<', match anywhere |
267 | 2728 for (attempt = 0; attempt <= 1; ++attempt) |
7 | 2729 { |
6375 | 2730 regmatch_T regmatch; |
2731 | |
267 | 2732 if (attempt > 0 && patc == pat) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2733 break; // there was no anchor, no need to try again |
6375 | 2734 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC); |
2735 if (regmatch.regprog == NULL) | |
7 | 2736 { |
170 | 2737 if (patc != pat) |
2738 vim_free(patc); | |
2739 return FAIL; | |
7 | 2740 } |
2741 | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2742 // round == 1: Count the matches. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2743 // round == 2: Build the array to keep the matches. |
7 | 2744 for (round = 1; round <= 2; ++round) |
2745 { | |
2746 count = 0; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
2747 FOR_ALL_BUFFERS(buf) |
7 | 2748 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2749 if (!buf->b_p_bl) // skip unlisted buffers |
7 | 2750 continue; |
18987
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2751 #ifdef FEAT_DIFF |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2752 if (options & BUF_DIFF_FILTER) |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2753 // Skip buffers not suitable for |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2754 // :diffget or :diffput completion. |
19007
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2755 if (buf == curbuf || !diff_mode_buf(buf)) |
18987
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2756 continue; |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2757 #endif |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2758 |
6375 | 2759 p = buflist_match(®match, buf, p_wic); |
7 | 2760 if (p != NULL) |
2761 { | |
2762 if (round == 1) | |
2763 ++count; | |
2764 else | |
2765 { | |
2766 if (options & WILD_HOME_REPLACE) | |
2767 p = home_replace_save(buf, p); | |
2768 else | |
2769 p = vim_strsave(p); | |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2770 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2771 if (matches != NULL) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2772 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2773 matches[count].buf = buf; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2774 matches[count].match = p; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2775 count++; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2776 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2777 else |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2778 #endif |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2779 (*file)[count++] = p; |
7 | 2780 } |
2781 } | |
2782 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2783 if (count == 0) // no match found, break here |
7 | 2784 break; |
2785 if (round == 1) | |
2786 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
2787 *file = ALLOC_MULT(char_u *, count); |
7 | 2788 if (*file == NULL) |
2789 { | |
6375 | 2790 vim_regfree(regmatch.regprog); |
170 | 2791 if (patc != pat) |
2792 vim_free(patc); | |
7 | 2793 return FAIL; |
2794 } | |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2795 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2796 if (options & WILD_BUFLASTUSED) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2797 matches = ALLOC_MULT(bufmatch_T, count); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2798 #endif |
7 | 2799 } |
2800 } | |
6375 | 2801 vim_regfree(regmatch.regprog); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2802 if (count) // match(es) found, break here |
7 | 2803 break; |
2804 } | |
2805 | |
170 | 2806 if (patc != pat) |
2807 vim_free(patc); | |
2808 | |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2809 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2810 if (matches != NULL) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2811 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2812 int i; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2813 if (count > 1) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2814 qsort(matches, count, sizeof(bufmatch_T), buf_compare); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2815 // if the current buffer is first in the list, place it at the end |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2816 if (matches[0].buf == curbuf) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2817 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2818 for (i = 1; i < count; i++) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2819 (*file)[i-1] = matches[i].match; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2820 (*file)[count-1] = matches[0].match; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2821 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2822 else |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2823 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2824 for (i = 0; i < count; i++) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2825 (*file)[i] = matches[i].match; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2826 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2827 vim_free(matches); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2828 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2829 #endif |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2830 |
7 | 2831 *num_file = count; |
2832 return (count == 0 ? FAIL : OK); | |
2833 } | |
2834 | |
2835 /* | |
2836 * Check for a match on the file name for buffer "buf" with regprog "prog". | |
2837 */ | |
2838 static char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2839 buflist_match( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2840 regmatch_T *rmp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2841 buf_T *buf, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2842 int ignore_case) // when TRUE ignore case, when FALSE use 'fic' |
7 | 2843 { |
2844 char_u *match; | |
2845 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2846 // First try the short file name, then the long file name. |
6375 | 2847 match = fname_match(rmp, buf->b_sfname, ignore_case); |
7 | 2848 if (match == NULL) |
6375 | 2849 match = fname_match(rmp, buf->b_ffname, ignore_case); |
7 | 2850 |
2851 return match; | |
2852 } | |
2853 | |
2854 /* | |
2855 * Try matching the regexp in "prog" with file name "name". | |
2856 * Return "name" when there is a match, NULL when not. | |
2857 */ | |
2858 static char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2859 fname_match( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2860 regmatch_T *rmp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2861 char_u *name, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2862 int ignore_case) // when TRUE ignore case, when FALSE use 'fic' |
7 | 2863 { |
2864 char_u *match = NULL; | |
2865 char_u *p; | |
2866 | |
2867 if (name != NULL) | |
2868 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2869 // Ignore case when 'fileignorecase' or the argument is set. |
6375 | 2870 rmp->rm_ic = p_fic || ignore_case; |
2871 if (vim_regexec(rmp, name, (colnr_T)0)) | |
7 | 2872 match = name; |
2873 else | |
2874 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2875 // Replace $(HOME) with '~' and try matching again. |
7 | 2876 p = home_replace_save(NULL, name); |
6375 | 2877 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0)) |
7 | 2878 match = name; |
2879 vim_free(p); | |
2880 } | |
2881 } | |
2882 | |
2883 return match; | |
2884 } | |
2885 | |
2886 /* | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2887 * Find a file in the buffer list by buffer number. |
7 | 2888 */ |
2889 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2890 buflist_findnr(int nr) |
7 | 2891 { |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2892 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
|
2893 hashitem_T *hi; |
7 | 2894 |
2895 if (nr == 0) | |
2896 nr = curwin->w_alt_fnum; | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2897 sprintf((char *)key, "%x", nr); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2898 hi = hash_find(&buf_hashtab, key); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2899 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2900 if (!HASHITEM_EMPTY(hi)) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2901 return (buf_T *)(hi->hi_key |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2902 - ((unsigned)(curbuf->b_key - (char_u *)curbuf))); |
7 | 2903 return NULL; |
2904 } | |
2905 | |
2906 /* | |
2907 * Get name of file 'n' in the buffer list. | |
2908 * When the file has no name an empty string is returned. | |
2909 * home_replace() is used to shorten the file name (used for marks). | |
2910 * Returns a pointer to allocated memory, of NULL when failed. | |
2911 */ | |
2912 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2913 buflist_nr2name( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2914 int n, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2915 int fullname, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2916 int helptail) // for help buffers return tail only |
7 | 2917 { |
2918 buf_T *buf; | |
2919 | |
2920 buf = buflist_findnr(n); | |
2921 if (buf == NULL) | |
2922 return NULL; | |
2923 return home_replace_save(helptail ? buf : NULL, | |
2924 fullname ? buf->b_ffname : buf->b_fname); | |
2925 } | |
2926 | |
2927 /* | |
2928 * Set the "lnum" and "col" for the buffer "buf" and the current window. | |
2929 * When "copy_options" is TRUE save the local window option values. | |
2930 * When "lnum" is 0 only do the options. | |
2931 */ | |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
2932 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2933 buflist_setfpos( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2934 buf_T *buf, |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
2935 win_T *win, // may be NULL when using :badd |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2936 linenr_T lnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2937 colnr_T col, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2938 int copy_options) |
7 | 2939 { |
2940 wininfo_T *wip; | |
2941 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
2942 FOR_ALL_BUF_WININFO(buf, wip) |
7 | 2943 if (wip->wi_win == win) |
2944 break; | |
2945 if (wip == NULL) | |
2946 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2947 // allocate a new entry |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
2948 wip = ALLOC_CLEAR_ONE(wininfo_T); |
7 | 2949 if (wip == NULL) |
2950 return; | |
2951 wip->wi_win = win; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2952 if (lnum == 0) // set lnum even when it's 0 |
7 | 2953 lnum = 1; |
2954 } | |
2955 else | |
2956 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2957 // remove the entry from the list |
7 | 2958 if (wip->wi_prev) |
2959 wip->wi_prev->wi_next = wip->wi_next; | |
2960 else | |
2961 buf->b_wininfo = wip->wi_next; | |
2962 if (wip->wi_next) | |
2963 wip->wi_next->wi_prev = wip->wi_prev; | |
2964 if (copy_options && wip->wi_optset) | |
2965 { | |
2966 clear_winopt(&wip->wi_opt); | |
2967 #ifdef FEAT_FOLDING | |
2968 deleteFoldRecurse(&wip->wi_folds); | |
2969 #endif | |
2970 } | |
2971 } | |
2972 if (lnum != 0) | |
2973 { | |
2974 wip->wi_fpos.lnum = lnum; | |
2975 wip->wi_fpos.col = col; | |
2976 } | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
2977 if (copy_options && win != NULL) |
7 | 2978 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2979 // Save the window-specific option values. |
7 | 2980 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt); |
2981 #ifdef FEAT_FOLDING | |
2982 wip->wi_fold_manual = win->w_fold_manual; | |
2983 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds); | |
2984 #endif | |
2985 wip->wi_optset = TRUE; | |
2986 } | |
2987 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2988 // insert the entry in front of the list |
7 | 2989 wip->wi_next = buf->b_wininfo; |
2990 buf->b_wininfo = wip; | |
2991 wip->wi_prev = NULL; | |
2992 if (wip->wi_next) | |
2993 wip->wi_next->wi_prev = wip; | |
2994 } | |
2995 | |
1743 | 2996 #ifdef FEAT_DIFF |
2997 /* | |
2998 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab | |
2999 * page. That's because a diff is local to a tab page. | |
3000 */ | |
3001 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3002 wininfo_other_tab_diff(wininfo_T *wip) |
1743 | 3003 { |
3004 win_T *wp; | |
3005 | |
3006 if (wip->wi_opt.wo_diff) | |
3007 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
3008 FOR_ALL_WINDOWS(wp) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3009 // return FALSE when it's a window in the current tab page, thus |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3010 // the buffer was in diff mode here |
1743 | 3011 if (wip->wi_win == wp) |
3012 return FALSE; | |
3013 return TRUE; | |
3014 } | |
3015 return FALSE; | |
3016 } | |
3017 #endif | |
3018 | |
7 | 3019 /* |
3020 * Find info for the current window in buffer "buf". | |
3021 * If not found, return the info for the most recently used window. | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3022 * When "need_options" is TRUE skip entries where wi_optset is FALSE. |
1743 | 3023 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in |
3024 * another tab page. | |
7 | 3025 * Returns NULL when there isn't any info. |
3026 */ | |
3027 static wininfo_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3028 find_wininfo( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3029 buf_T *buf, |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3030 int need_options, |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3031 int skip_diff_buffer UNUSED) |
7 | 3032 { |
3033 wininfo_T *wip; | |
3034 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
3035 FOR_ALL_BUF_WININFO(buf, wip) |
1743 | 3036 if (wip->wi_win == curwin |
3037 #ifdef FEAT_DIFF | |
3038 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip)) | |
3039 #endif | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3040 |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3041 && (!need_options || wip->wi_optset)) |
7 | 3042 break; |
1743 | 3043 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3044 // If no wininfo for curwin, use the first in the list (that doesn't have |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3045 // 'diff' set and is in another tab page). |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3046 // If "need_options" is TRUE skip entries that don't have options set, |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3047 // unless the window is editing "buf", so we can copy from the window |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3048 // itself. |
1743 | 3049 if (wip == NULL) |
3050 { | |
3051 #ifdef FEAT_DIFF | |
3052 if (skip_diff_buffer) | |
3053 { | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
3054 FOR_ALL_BUF_WININFO(buf, wip) |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3055 if (!wininfo_other_tab_diff(wip) |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3056 && (!need_options || wip->wi_optset |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3057 || (wip->wi_win != NULL |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3058 && wip->wi_win->w_buffer == buf))) |
1743 | 3059 break; |
3060 } | |
3061 else | |
3062 #endif | |
3063 wip = buf->b_wininfo; | |
3064 } | |
7 | 3065 return wip; |
3066 } | |
3067 | |
3068 /* | |
3069 * Reset the local window options to the values last used in this window. | |
3070 * If the buffer wasn't used in this window before, use the values from | |
3071 * the most recently used window. If the values were never set, use the | |
3072 * global values for the window. | |
3073 */ | |
3074 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3075 get_winopts(buf_T *buf) |
7 | 3076 { |
3077 wininfo_T *wip; | |
3078 | |
3079 clear_winopt(&curwin->w_onebuf_opt); | |
3080 #ifdef FEAT_FOLDING | |
3081 clearFolding(curwin); | |
3082 #endif | |
3083 | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3084 wip = find_wininfo(buf, TRUE, TRUE); |
13931
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3085 if (wip != NULL && wip->wi_win != NULL |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3086 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf) |
7 | 3087 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3088 // The buffer is currently displayed in the window: use the actual |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3089 // option values instead of the saved (possibly outdated) values. |
13931
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3090 win_T *wp = wip->wi_win; |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3091 |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3092 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt); |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3093 #ifdef FEAT_FOLDING |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3094 curwin->w_fold_manual = wp->w_fold_manual; |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3095 curwin->w_foldinvalid = TRUE; |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3096 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds); |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3097 #endif |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3098 } |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3099 else if (wip != NULL && wip->wi_optset) |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3100 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3101 // the buffer was displayed in the current window earlier |
7 | 3102 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt); |
3103 #ifdef FEAT_FOLDING | |
3104 curwin->w_fold_manual = wip->wi_fold_manual; | |
3105 curwin->w_foldinvalid = TRUE; | |
3106 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds); | |
3107 #endif | |
3108 } | |
3109 else | |
3110 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt); | |
3111 | |
3112 #ifdef FEAT_FOLDING | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3113 // Set 'foldlevel' to 'foldlevelstart' if it's not negative. |
7 | 3114 if (p_fdls >= 0) |
3115 curwin->w_p_fdl = p_fdls; | |
3116 #endif | |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
3117 after_copy_winopt(curwin); |
7 | 3118 } |
3119 | |
3120 /* | |
3121 * Find the position (lnum and col) for the buffer 'buf' for the current | |
3122 * window. | |
3123 * Returns a pointer to no_position if no position is found. | |
3124 */ | |
3125 pos_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3126 buflist_findfpos(buf_T *buf) |
7 | 3127 { |
3128 wininfo_T *wip; | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15595
diff
changeset
|
3129 static pos_T no_position = {1, 0, 0}; |
7 | 3130 |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3131 wip = find_wininfo(buf, FALSE, FALSE); |
7 | 3132 if (wip != NULL) |
3133 return &(wip->wi_fpos); | |
3134 else | |
3135 return &no_position; | |
3136 } | |
3137 | |
3138 /* | |
3139 * Find the lnum for the buffer 'buf' for the current window. | |
3140 */ | |
3141 linenr_T | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3142 buflist_findlnum(buf_T *buf) |
7 | 3143 { |
3144 return buflist_findfpos(buf)->lnum; | |
3145 } | |
3146 | |
3147 /* | |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
3148 * List all known file names (for :files and :buffers command). |
7 | 3149 */ |
3150 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3151 buflist_list(exarg_T *eap) |
7 | 3152 { |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3153 buf_T *buf = firstbuf; |
7 | 3154 int len; |
3155 int i; | |
12110
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3156 int ro_char; |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3157 int changed_char; |
13555
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3158 #ifdef FEAT_TERMINAL |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3159 int job_running; |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3160 int job_none_open; |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3161 #endif |
7 | 3162 |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3163 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3164 garray_T buflist; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3165 buf_T **buflist_data = NULL, **p; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3166 |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3167 if (vim_strchr(eap->arg, 't')) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3168 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3169 ga_init2(&buflist, sizeof(buf_T *), 50); |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
3170 FOR_ALL_BUFFERS(buf) |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3171 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3172 if (ga_grow(&buflist, 1) == OK) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3173 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3174 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3175 |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3176 qsort(buflist.ga_data, (size_t)buflist.ga_len, |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3177 sizeof(buf_T *), buf_compare); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3178 |
18546
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3179 buflist_data = (buf_T **)buflist.ga_data; |
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3180 buf = *buflist_data; |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3181 } |
18546
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3182 p = buflist_data; |
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3183 |
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3184 for (; buf != NULL && !got_int; buf = buflist_data != NULL |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3185 ? (++p < buflist_data + buflist.ga_len ? *p : NULL) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3186 : buf->b_next) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3187 #else |
7 | 3188 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next) |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3189 #endif |
7 | 3190 { |
13555
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3191 #ifdef FEAT_TERMINAL |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3192 job_running = term_job_running(buf->b_term); |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3193 job_none_open = job_running && term_none_open(buf->b_term); |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3194 #endif |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3195 // skip unlisted buffers, unless ! was used |
6945 | 3196 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u')) |
3197 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl) | |
3198 || (vim_strchr(eap->arg, '+') | |
3199 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf))) | |
3200 || (vim_strchr(eap->arg, 'a') | |
13555
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3201 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0)) |
6945 | 3202 || (vim_strchr(eap->arg, 'h') |
13555
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3203 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0)) |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3204 #ifdef FEAT_TERMINAL |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3205 || (vim_strchr(eap->arg, 'R') |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3206 && (!job_running || (job_running && job_none_open))) |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3207 || (vim_strchr(eap->arg, '?') |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3208 && (!job_running || (job_running && !job_none_open))) |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3209 || (vim_strchr(eap->arg, 'F') |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3210 && (job_running || buf->b_term == NULL)) |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3211 #endif |
6945 | 3212 || (vim_strchr(eap->arg, '-') && buf->b_p_ma) |
3213 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro) | |
3214 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR)) | |
3215 || (vim_strchr(eap->arg, '%') && buf != curbuf) | |
3216 || (vim_strchr(eap->arg, '#') | |
3217 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum))) | |
7 | 3218 continue; |
3219 if (buf_spname(buf) != NULL) | |
3839 | 3220 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1); |
7 | 3221 else |
3222 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
|
3223 if (message_filtered(NameBuff)) |
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3224 continue; |
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3225 |
12110
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3226 changed_char = (buf->b_flags & BF_READERR) ? 'x' |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3227 : (bufIsChanged(buf) ? '+' : ' '); |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3228 #ifdef FEAT_TERMINAL |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3229 if (term_job_running(buf->b_term)) |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3230 { |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
3231 if (term_none_open(buf->b_term)) |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
3232 ro_char = '?'; |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
3233 else |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
3234 ro_char = 'R'; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3235 changed_char = ' '; // bufIsChanged() returns TRUE to avoid |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3236 // closing, but it's not actually changed. |
12110
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3237 } |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3238 else if (buf->b_term != NULL) |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3239 ro_char = 'F'; |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3240 else |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3241 #endif |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3242 ro_char = !buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '); |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3243 |
9943
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3244 msg_putchar('\n'); |
302 | 3245 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"", |
7 | 3246 buf->b_fnum, |
3247 buf->b_p_bl ? ' ' : 'u', | |
3248 buf == curbuf ? '%' : | |
3249 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '), | |
3250 buf->b_ml.ml_mfp == NULL ? ' ' : | |
3251 (buf->b_nwindows == 0 ? 'h' : 'a'), | |
12110
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3252 ro_char, |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3253 changed_char, |
300 | 3254 NameBuff); |
7572
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
3255 if (len > IOSIZE - 20) |
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
3256 len = IOSIZE - 20; |
7 | 3257 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3258 // put "line 999" in column 40 or after the file name |
7 | 3259 i = 40 - vim_strsize(IObuff); |
3260 do | |
3261 IObuff[len++] = ' '; | |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
16082
diff
changeset
|
3262 while (--i > 0 && len < IOSIZE - 18); |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3263 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3264 if (vim_strchr(eap->arg, 't') && buf->b_last_used) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3265 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3266 else |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3267 #endif |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3268 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len), |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3269 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum |
272 | 3270 : (long)buflist_findlnum(buf)); |
7 | 3271 msg_outtrans(IObuff); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3272 out_flush(); // output one line at a time |
7 | 3273 ui_breakcheck(); |
3274 } | |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3275 |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3276 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3277 if (buflist_data) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3278 ga_clear(&buflist); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3279 #endif |
7 | 3280 } |
3281 | |
3282 /* | |
3283 * Get file name and line number for file 'fnum'. | |
3284 * Used by DoOneCmd() for translating '%' and '#'. | |
3285 * Used by insert_reg() and cmdline_paste() for '#' register. | |
3286 * Return FAIL if not found, OK for success. | |
3287 */ | |
3288 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3289 buflist_name_nr( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3290 int fnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3291 char_u **fname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3292 linenr_T *lnum) |
7 | 3293 { |
3294 buf_T *buf; | |
3295 | |
3296 buf = buflist_findnr(fnum); | |
3297 if (buf == NULL || buf->b_fname == NULL) | |
3298 return FAIL; | |
3299 | |
3300 *fname = buf->b_fname; | |
3301 *lnum = buflist_findlnum(buf); | |
3302 | |
3303 return OK; | |
3304 } | |
3305 | |
3306 /* | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3307 * Set the file name for "buf"' to "ffname_arg", short file name to |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3308 * "sfname_arg". |
7 | 3309 * The file name with the full path is also remembered, for when :cd is used. |
3310 * Returns FAIL for failure (file name already in use by other buffer) | |
3311 * OK otherwise. | |
3312 */ | |
3313 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3314 setfname( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3315 buf_T *buf, |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3316 char_u *ffname_arg, |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3317 char_u *sfname_arg, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3318 int message) // give message when buffer already exists |
7 | 3319 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3320 char_u *ffname = ffname_arg; |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3321 char_u *sfname = sfname_arg; |
42 | 3322 buf_T *obuf = NULL; |
7 | 3323 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3324 stat_T st; |
7 | 3325 #endif |
3326 | |
3327 if (ffname == NULL || *ffname == NUL) | |
3328 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3329 // Removing the name. |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3330 if (buf->b_sfname != buf->b_ffname) |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3331 VIM_CLEAR(buf->b_sfname); |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3332 else |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3333 buf->b_sfname = NULL; |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
3334 VIM_CLEAR(buf->b_ffname); |
7 | 3335 #ifdef UNIX |
3336 st.st_dev = (dev_T)-1; | |
3337 #endif | |
3338 } | |
3339 else | |
3340 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3341 fname_expand(buf, &ffname, &sfname); // will allocate ffname |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3342 if (ffname == NULL) // out of memory |
7 | 3343 return FAIL; |
3344 | |
3345 /* | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
3346 * If the file name is already used in another buffer: |
7 | 3347 * - if the buffer is loaded, fail |
3348 * - if the buffer is not loaded, delete it from the list | |
3349 */ | |
3350 #ifdef UNIX | |
3351 if (mch_stat((char *)ffname, &st) < 0) | |
3352 st.st_dev = (dev_T)-1; | |
42 | 3353 #endif |
3354 if (!(buf->b_flags & BF_DUMMY)) | |
3355 #ifdef UNIX | |
3356 obuf = buflist_findname_stat(ffname, &st); | |
7 | 3357 #else |
42 | 3358 obuf = buflist_findname(ffname); |
7 | 3359 #endif |
3360 if (obuf != NULL && obuf != buf) | |
3361 { | |
25885
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3362 win_T *win; |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3363 tabpage_T *tab; |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3364 int in_use = FALSE; |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3365 |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3366 // during startup a window may use a buffer that is not loaded yet |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3367 FOR_ALL_TAB_WINDOWS(tab, win) |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3368 if (win->w_buffer == obuf) |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3369 in_use = TRUE; |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3370 |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3371 // it's loaded or used in a window, fail |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3372 if (obuf->b_ml.ml_mfp != NULL || in_use) |
7 | 3373 { |
3374 if (message) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
3375 emsg(_("E95: Buffer with this name already exists")); |
7 | 3376 vim_free(ffname); |
3377 return FAIL; | |
3378 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3379 // delete from the list |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
3380 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE); |
7 | 3381 } |
3382 sfname = vim_strsave(sfname); | |
3383 if (ffname == NULL || sfname == NULL) | |
3384 { | |
3385 vim_free(sfname); | |
3386 vim_free(ffname); | |
3387 return FAIL; | |
3388 } | |
3389 #ifdef USE_FNAME_CASE | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3390 fname_case(sfname, 0); // set correct case for short file name |
7 | 3391 #endif |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3392 if (buf->b_sfname != buf->b_ffname) |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3393 vim_free(buf->b_sfname); |
7 | 3394 vim_free(buf->b_ffname); |
3395 buf->b_ffname = ffname; | |
3396 buf->b_sfname = sfname; | |
3397 } | |
3398 buf->b_fname = buf->b_sfname; | |
3399 #ifdef UNIX | |
3400 if (st.st_dev == (dev_T)-1) | |
1873 | 3401 buf->b_dev_valid = FALSE; |
7 | 3402 else |
3403 { | |
1873 | 3404 buf->b_dev_valid = TRUE; |
7 | 3405 buf->b_dev = st.st_dev; |
3406 buf->b_ino = st.st_ino; | |
3407 } | |
3408 #endif | |
3409 | |
3410 buf->b_shortname = FALSE; | |
3411 | |
3412 buf_name_changed(buf); | |
3413 return OK; | |
3414 } | |
3415 | |
3416 /* | |
41 | 3417 * Crude way of changing the name of a buffer. Use with care! |
3418 * The name should be relative to the current directory. | |
3419 */ | |
3420 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3421 buf_set_name(int fnum, char_u *name) |
41 | 3422 { |
3423 buf_T *buf; | |
3424 | |
3425 buf = buflist_findnr(fnum); | |
3426 if (buf != NULL) | |
3427 { | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3428 if (buf->b_sfname != buf->b_ffname) |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3429 vim_free(buf->b_sfname); |
41 | 3430 vim_free(buf->b_ffname); |
844 | 3431 buf->b_ffname = vim_strsave(name); |
3432 buf->b_sfname = NULL; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3433 // Allocate ffname and expand into full path. Also resolves .lnk |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3434 // files on Win32. |
844 | 3435 fname_expand(buf, &buf->b_ffname, &buf->b_sfname); |
41 | 3436 buf->b_fname = buf->b_sfname; |
3437 } | |
3438 } | |
3439 | |
3440 /* | |
7 | 3441 * Take care of what needs to be done when the name of buffer "buf" has |
3442 * changed. | |
3443 */ | |
3444 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3445 buf_name_changed(buf_T *buf) |
7 | 3446 { |
3447 /* | |
3448 * If the file name changed, also change the name of the swapfile | |
3449 */ | |
3450 if (buf->b_ml.ml_mfp != NULL) | |
3451 ml_setname(buf); | |
3452 | |
3453 if (curwin->w_buffer == buf) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3454 check_arg_idx(curwin); // check file name for arg list |
7 | 3455 #ifdef FEAT_TITLE |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3456 maketitle(); // set window title |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3457 #endif |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3458 status_redraw_all(); // status lines need to be redrawn |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3459 fmarks_check_names(buf); // check named file marks |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3460 ml_timestamp(buf); // reset timestamp |
7 | 3461 } |
3462 | |
3463 /* | |
3464 * set alternate file name for current window | |
3465 * | |
3466 * Used by do_one_cmd(), do_write() and do_ecmd(). | |
3467 * Return the buffer. | |
3468 */ | |
3469 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3470 setaltfname( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3471 char_u *ffname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3472 char_u *sfname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3473 linenr_T lnum) |
7 | 3474 { |
3475 buf_T *buf; | |
3476 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3477 // Create a buffer. 'buflisted' is not set if it's a new buffer |
7 | 3478 buf = buflist_new(ffname, sfname, lnum, 0); |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
3479 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0) |
7 | 3480 curwin->w_alt_fnum = buf->b_fnum; |
3481 return buf; | |
3482 } | |
3483 | |
3484 /* | |
3485 * Get alternate file name for current window. | |
3486 * Return NULL if there isn't any, and give error message if requested. | |
3487 */ | |
3488 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3489 getaltfname( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3490 int errmsg) // give error message |
7 | 3491 { |
3492 char_u *fname; | |
3493 linenr_T dummy; | |
3494 | |
3495 if (buflist_name_nr(0, &fname, &dummy) == FAIL) | |
3496 { | |
3497 if (errmsg) | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24868
diff
changeset
|
3498 emsg(_(e_no_alternate_file)); |
7 | 3499 return NULL; |
3500 } | |
3501 return fname; | |
3502 } | |
3503 | |
3504 /* | |
3505 * Add a file name to the buflist and return its number. | |
3506 * Uses same flags as buflist_new(), except BLN_DUMMY. | |
3507 * | |
3508 * used by qf_init(), main() and doarglist() | |
3509 */ | |
3510 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3511 buflist_add(char_u *fname, int flags) |
7 | 3512 { |
3513 buf_T *buf; | |
3514 | |
3515 buf = buflist_new(fname, NULL, (linenr_T)0, flags); | |
3516 if (buf != NULL) | |
3517 return buf->b_fnum; | |
3518 return 0; | |
3519 } | |
3520 | |
3521 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO) | |
3522 /* | |
3523 * Adjust slashes in file names. Called after 'shellslash' was set. | |
3524 */ | |
3525 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3526 buflist_slash_adjust(void) |
7 | 3527 { |
3528 buf_T *bp; | |
3529 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
3530 FOR_ALL_BUFFERS(bp) |
7 | 3531 { |
3532 if (bp->b_ffname != NULL) | |
3533 slash_adjust(bp->b_ffname); | |
3534 if (bp->b_sfname != NULL) | |
3535 slash_adjust(bp->b_sfname); | |
3536 } | |
3537 } | |
3538 #endif | |
3539 | |
3540 /* | |
1743 | 3541 * Set alternate cursor position for the current buffer and window "win". |
7 | 3542 * Also save the local window option values. |
3543 */ | |
3544 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3545 buflist_altfpos(win_T *win) |
7 | 3546 { |
1743 | 3547 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE); |
7 | 3548 } |
3549 | |
3550 /* | |
3551 * Return TRUE if 'ffname' is not the same file as current file. | |
3552 * Fname must have a full path (expanded by mch_FullName()). | |
3553 */ | |
3554 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3555 otherfile(char_u *ffname) |
7 | 3556 { |
3557 return otherfile_buf(curbuf, ffname | |
3558 #ifdef UNIX | |
3559 , NULL | |
3560 #endif | |
3561 ); | |
3562 } | |
3563 | |
3564 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3565 otherfile_buf( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3566 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3567 char_u *ffname |
7 | 3568 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3569 , stat_T *stp |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3570 #endif |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3571 ) |
7 | 3572 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3573 // no name is different |
7 | 3574 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL) |
3575 return TRUE; | |
3576 if (fnamecmp(ffname, buf->b_ffname) == 0) | |
3577 return FALSE; | |
3578 #ifdef UNIX | |
3579 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3580 stat_T st; |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3581 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3582 // If no stat_T given, get it now |
7 | 3583 if (stp == NULL) |
3584 { | |
1873 | 3585 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0) |
7 | 3586 st.st_dev = (dev_T)-1; |
3587 stp = &st; | |
3588 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3589 // Use dev/ino to check if the files are the same, even when the names |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3590 // are different (possible with links). Still need to compare the |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3591 // name above, for when the file doesn't exist yet. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3592 // Problem: The dev/ino changes when a file is deleted (and created |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3593 // again) and remains the same when renamed/moved. We don't want to |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3594 // mch_stat() each buffer each time, that would be too slow. Get the |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3595 // dev/ino again when they appear to match, but not when they appear |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3596 // to be different: Could skip a buffer when it's actually the same |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3597 // file. |
7 | 3598 if (buf_same_ino(buf, stp)) |
3599 { | |
3600 buf_setino(buf); | |
3601 if (buf_same_ino(buf, stp)) | |
3602 return FALSE; | |
3603 } | |
3604 } | |
3605 #endif | |
3606 return TRUE; | |
3607 } | |
3608 | |
3609 #if defined(UNIX) || defined(PROTO) | |
3610 /* | |
3611 * Set inode and device number for a buffer. | |
3612 * Must always be called when b_fname is changed!. | |
3613 */ | |
3614 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3615 buf_setino(buf_T *buf) |
7 | 3616 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3617 stat_T st; |
7 | 3618 |
3619 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0) | |
3620 { | |
1873 | 3621 buf->b_dev_valid = TRUE; |
7 | 3622 buf->b_dev = st.st_dev; |
3623 buf->b_ino = st.st_ino; | |
3624 } | |
3625 else | |
1873 | 3626 buf->b_dev_valid = FALSE; |
7 | 3627 } |
3628 | |
3629 /* | |
3630 * Return TRUE if dev/ino in buffer "buf" matches with "stp". | |
3631 */ | |
3632 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3633 buf_same_ino( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3634 buf_T *buf, |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3635 stat_T *stp) |
7 | 3636 { |
1873 | 3637 return (buf->b_dev_valid |
7 | 3638 && stp->st_dev == buf->b_dev |
3639 && stp->st_ino == buf->b_ino); | |
3640 } | |
3641 #endif | |
3642 | |
667 | 3643 /* |
3644 * Print info about the current buffer. | |
3645 */ | |
7 | 3646 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3647 fileinfo( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3648 int fullname, // when non-zero print full path |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3649 int shorthelp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3650 int dont_truncate) |
7 | 3651 { |
3652 char_u *name; | |
3653 int n; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3654 char *p; |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3655 char *buffer; |
272 | 3656 size_t len; |
7 | 3657 |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
3658 buffer = alloc(IOSIZE); |
7 | 3659 if (buffer == NULL) |
3660 return; | |
3661 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3662 if (fullname > 1) // 2 CTRL-G: include buffer number |
7 | 3663 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3664 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum); |
7 | 3665 p = buffer + STRLEN(buffer); |
3666 } | |
3667 else | |
3668 p = buffer; | |
3669 | |
3670 *p++ = '"'; | |
3671 if (buf_spname(curbuf) != NULL) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3672 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1); |
7 | 3673 else |
3674 { | |
3675 if (!fullname && curbuf->b_fname != NULL) | |
3676 name = curbuf->b_fname; | |
3677 else | |
3678 name = curbuf->b_ffname; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3679 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p, |
7 | 3680 (int)(IOSIZE - (p - buffer)), TRUE); |
3681 } | |
3682 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3683 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s", |
7 | 3684 curbufIsChanged() ? (shortmess(SHM_MOD) |
3685 ? " [+]" : _(" [Modified]")) : " ", | |
3686 (curbuf->b_flags & BF_NOTEDITED) | |
3687 #ifdef FEAT_QUICKFIX | |
3688 && !bt_dontwrite(curbuf) | |
3689 #endif | |
3690 ? _("[Not edited]") : "", | |
3691 (curbuf->b_flags & BF_NEW) | |
3692 #ifdef FEAT_QUICKFIX | |
3693 && !bt_dontwrite(curbuf) | |
3694 #endif | |
20828
db18625d8134
patch 8.2.0966: 'shortmess' flag "n" not used in two places
Bram Moolenaar <Bram@vim.org>
parents:
20802
diff
changeset
|
3695 ? new_file_message() : "", |
7 | 3696 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "", |
4795
8360a59aa04b
updated for version 7.3.1144
Bram Moolenaar <bram@vim.org>
parents:
4354
diff
changeset
|
3697 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]") |
7 | 3698 : _("[readonly]")) : "", |
3699 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK) | |
3700 || curbuf->b_p_ro) ? | |
3701 " " : ""); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3702 // With 32 bit longs and more than 21,474,836 lines multiplying by 100 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3703 // causes an overflow, thus for large numbers divide instead. |
7 | 3704 if (curwin->w_cursor.lnum > 1000000L) |
3705 n = (int)(((long)curwin->w_cursor.lnum) / | |
3706 ((long)curbuf->b_ml.ml_line_count / 100L)); | |
3707 else | |
3708 n = (int)(((long)curwin->w_cursor.lnum * 100L) / | |
3709 (long)curbuf->b_ml.ml_line_count); | |
3710 if (curbuf->b_ml.ml_flags & ML_EMPTY) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3711 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg)); |
7 | 3712 #ifdef FEAT_CMDL_INFO |
3713 else if (p_ru) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3714 // Current line and column are already on the screen -- webb |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3715 vim_snprintf_add(buffer, IOSIZE, |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
3716 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--", |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
3717 curbuf->b_ml.ml_line_count), |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
3718 (long)curbuf->b_ml.ml_line_count, n); |
7 | 3719 #endif |
3720 else | |
3721 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3722 vim_snprintf_add(buffer, IOSIZE, |
7 | 3723 _("line %ld of %ld --%d%%-- col "), |
3724 (long)curwin->w_cursor.lnum, | |
3725 (long)curbuf->b_ml.ml_line_count, | |
3726 n); | |
3727 validate_virtcol(); | |
1869 | 3728 len = STRLEN(buffer); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3729 col_print((char_u *)buffer + len, IOSIZE - len, |
7 | 3730 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); |
3731 } | |
3732 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3733 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE, |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3734 !shortmess(SHM_FILE)); |
7 | 3735 |
3736 if (dont_truncate) | |
3737 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3738 // Temporarily set msg_scroll to avoid the message being truncated. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3739 // First call msg_start() to get the message in the right place. |
7 | 3740 msg_start(); |
3741 n = msg_scroll; | |
3742 msg_scroll = TRUE; | |
3743 msg(buffer); | |
3744 msg_scroll = n; | |
3745 } | |
3746 else | |
3747 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3748 p = (char *)msg_trunc_attr(buffer, FALSE, 0); |
7 | 3749 if (restart_edit != 0 || (msg_scrolled && !need_wait_return)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3750 // Need to repeat the message after redrawing when: |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3751 // - When restart_edit is set (otherwise there will be a delay |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3752 // before redrawing). |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3753 // - When the screen was scrolled but there is no wait-return |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3754 // prompt. |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3755 set_keep_msg((char_u *)p, 0); |
7 | 3756 } |
3757 | |
3758 vim_free(buffer); | |
3759 } | |
3760 | |
3761 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3762 col_print( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3763 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3764 size_t buflen, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3765 int col, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3766 int vcol) |
7 | 3767 { |
3768 if (col == vcol) | |
1869 | 3769 vim_snprintf((char *)buf, buflen, "%d", col); |
7 | 3770 else |
1869 | 3771 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol); |
7 | 3772 } |
3773 | |
3774 #if defined(FEAT_TITLE) || defined(PROTO) | |
3775 static char_u *lasttitle = NULL; | |
3776 static char_u *lasticon = NULL; | |
3777 | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3778 /* |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3779 * Put the file name in the title bar and icon of the window. |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3780 */ |
7 | 3781 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3782 maketitle(void) |
7 | 3783 { |
3784 char_u *p; | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3785 char_u *title_str = NULL; |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3786 char_u *icon_str = NULL; |
7 | 3787 int maxlen = 0; |
3788 int len; | |
3789 int mustset; | |
3790 char_u buf[IOSIZE]; | |
3791 int off; | |
3792 | |
3793 if (!redrawing()) | |
3794 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3795 // Postpone updating the title when 'lazyredraw' is set. |
7 | 3796 need_maketitle = TRUE; |
3797 return; | |
3798 } | |
3799 | |
3800 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
|
3801 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL) |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3802 return; // nothing to do |
7 | 3803 |
3804 if (p_title) | |
3805 { | |
3806 if (p_titlelen > 0) | |
3807 { | |
3808 maxlen = p_titlelen * Columns / 100; | |
3809 if (maxlen < 10) | |
3810 maxlen = 10; | |
3811 } | |
3812 | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3813 title_str = buf; |
7 | 3814 if (*p_titlestring != NUL) |
3815 { | |
3816 #ifdef FEAT_STL_OPT | |
771 | 3817 if (stl_syntax & STL_IN_TITLE) |
3818 { | |
3819 int use_sandbox = FALSE; | |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3820 int called_emsg_before = called_emsg; |
675 | 3821 |
3822 # ifdef FEAT_EVAL | |
771 | 3823 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0); |
675 | 3824 # endif |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3825 build_stl_str_hl(curwin, title_str, sizeof(buf), |
675 | 3826 p_titlestring, use_sandbox, |
681 | 3827 0, maxlen, NULL, NULL); |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3828 if (called_emsg > called_emsg_before) |
771 | 3829 set_string_option_direct((char_u *)"titlestring", -1, |
3830 (char_u *)"", OPT_FREE, SID_ERROR); | |
3831 } | |
7 | 3832 else |
3833 #endif | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3834 title_str = p_titlestring; |
7 | 3835 } |
3836 else | |
3837 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3838 // format: "fname + (path) (1 of 2) - VIM" |
7 | 3839 |
3780 | 3840 #define SPACE_FOR_FNAME (IOSIZE - 100) |
3841 #define SPACE_FOR_DIR (IOSIZE - 20) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3842 #define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM" |
7 | 3843 if (curbuf->b_fname == NULL) |
3780 | 3844 vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME); |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3845 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3846 else if (curbuf->b_term != NULL) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3847 { |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3848 vim_strncpy(buf, term_get_status_text(curbuf->b_term), |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3849 SPACE_FOR_FNAME); |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3850 } |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3851 #endif |
7 | 3852 else |
3853 { | |
3854 p = transstr(gettail(curbuf->b_fname)); | |
3780 | 3855 vim_strncpy(buf, p, SPACE_FOR_FNAME); |
7 | 3856 vim_free(p); |
3857 } | |
3858 | |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3859 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3860 if (curbuf->b_term == NULL) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3861 #endif |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3862 switch (bufIsChanged(curbuf) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3863 + (curbuf->b_p_ro * 2) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3864 + (!curbuf->b_p_ma * 4)) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3865 { |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3866 case 1: STRCAT(buf, " +"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3867 case 2: STRCAT(buf, " ="); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3868 case 3: STRCAT(buf, " =+"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3869 case 4: |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3870 case 6: STRCAT(buf, " -"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3871 case 5: |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3872 case 7: STRCAT(buf, " -+"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3873 } |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3874 |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3875 if (curbuf->b_fname != NULL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3876 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3877 && curbuf->b_term == NULL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3878 #endif |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3879 ) |
7 | 3880 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3881 // Get path of file, replace home dir with ~ |
7 | 3882 off = (int)STRLEN(buf); |
3883 buf[off++] = ' '; | |
3884 buf[off++] = '('; | |
3885 home_replace(curbuf, curbuf->b_ffname, | |
3780 | 3886 buf + off, SPACE_FOR_DIR - off, TRUE); |
7 | 3887 #ifdef BACKSLASH_IN_FILENAME |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3888 // avoid "c:/name" to be reduced to "c" |
7 | 3889 if (isalpha(buf[off]) && buf[off + 1] == ':') |
3890 off += 2; | |
3891 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3892 // remove the file name |
39 | 3893 p = gettail_sep(buf + off); |
7 | 3894 if (p == buf + off) |
11757
74abb6c84984
patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents:
11690
diff
changeset
|
3895 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3896 // must be a help buffer |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3897 vim_strncpy(buf + off, (char_u *)_("help"), |
3780 | 3898 (size_t)(SPACE_FOR_DIR - off - 1)); |
11757
74abb6c84984
patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents:
11690
diff
changeset
|
3899 } |
7 | 3900 else |
3901 *p = NUL; | |
39 | 3902 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3903 // Translate unprintable chars and concatenate. Keep some |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3904 // room for the server name. When there is no room (very long |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3905 // file name) use (...). |
3780 | 3906 if (off < SPACE_FOR_DIR) |
3907 { | |
3908 p = transstr(buf + off); | |
3909 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off)); | |
3910 vim_free(p); | |
3911 } | |
3912 else | |
3913 { | |
3914 vim_strncpy(buf + off, (char_u *)"...", | |
3915 (size_t)(SPACE_FOR_ARGNR - off)); | |
3916 } | |
7 | 3917 STRCAT(buf, ")"); |
3918 } | |
3919 | |
3780 | 3920 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE); |
7 | 3921 |
3922 #if defined(FEAT_CLIENTSERVER) | |
3923 if (serverName != NULL) | |
3924 { | |
3925 STRCAT(buf, " - "); | |
2768 | 3926 vim_strcat(buf, serverName, IOSIZE); |
7 | 3927 } |
3928 else | |
3929 #endif | |
3930 STRCAT(buf, " - VIM"); | |
3931 | |
3932 if (maxlen > 0) | |
3933 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3934 // make it shorter by removing a bit in the middle |
3277 | 3935 if (vim_strsize(buf) > maxlen) |
3936 trunc_string(buf, buf, maxlen, IOSIZE); | |
7 | 3937 } |
3938 } | |
3939 } | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3940 mustset = value_changed(title_str, &lasttitle); |
7 | 3941 |
3942 if (p_icon) | |
3943 { | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3944 icon_str = buf; |
7 | 3945 if (*p_iconstring != NUL) |
3946 { | |
3947 #ifdef FEAT_STL_OPT | |
771 | 3948 if (stl_syntax & STL_IN_ICON) |
3949 { | |
3950 int use_sandbox = FALSE; | |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3951 int called_emsg_before = called_emsg; |
675 | 3952 |
3953 # ifdef FEAT_EVAL | |
771 | 3954 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0); |
675 | 3955 # endif |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3956 build_stl_str_hl(curwin, icon_str, sizeof(buf), |
675 | 3957 p_iconstring, use_sandbox, |
681 | 3958 0, 0, NULL, NULL); |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3959 if (called_emsg > called_emsg_before) |
771 | 3960 set_string_option_direct((char_u *)"iconstring", -1, |
3961 (char_u *)"", OPT_FREE, SID_ERROR); | |
3962 } | |
7 | 3963 else |
3964 #endif | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3965 icon_str = p_iconstring; |
7 | 3966 } |
3967 else | |
3968 { | |
3969 if (buf_spname(curbuf) != NULL) | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3970 p = buf_spname(curbuf); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3971 else // use file name only in icon |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3972 p = gettail(curbuf->b_ffname); |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3973 *icon_str = NUL; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3974 // Truncate name at 100 bytes. |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3975 len = (int)STRLEN(p); |
7 | 3976 if (len > 100) |
3977 { | |
3978 len -= 100; | |
3979 if (has_mbyte) | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3980 len += (*mb_tail_off)(p, p + len) + 1; |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3981 p += len; |
7 | 3982 } |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3983 STRCPY(icon_str, p); |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3984 trans_characters(icon_str, IOSIZE); |
7 | 3985 } |
3986 } | |
3987 | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3988 mustset |= value_changed(icon_str, &lasticon); |
7 | 3989 |
3990 if (mustset) | |
3991 resettitle(); | |
3992 } | |
3993 | |
3994 /* | |
3995 * Used for title and icon: Check if "str" differs from "*last". Set "*last" | |
3996 * from "str" if it does. | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3997 * Return TRUE if resettitle() is to be called. |
7 | 3998 */ |
3999 static int | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4000 value_changed(char_u *str, char_u **last) |
7 | 4001 { |
4002 if ((str == NULL) != (*last == NULL) | |
4003 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0)) | |
4004 { | |
4005 vim_free(*last); | |
4006 if (str == NULL) | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4007 { |
7 | 4008 *last = NULL; |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14453
diff
changeset
|
4009 mch_restore_title( |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14453
diff
changeset
|
4010 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON); |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4011 } |
7 | 4012 else |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4013 { |
7 | 4014 *last = vim_strsave(str); |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4015 return TRUE; |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4016 } |
7 | 4017 } |
4018 return FALSE; | |
4019 } | |
4020 | |
4021 /* | |
4022 * Put current window title back (used after calling a shell) | |
4023 */ | |
4024 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4025 resettitle(void) |
7 | 4026 { |
4027 mch_settitle(lasttitle, lasticon); | |
4028 } | |
358 | 4029 |
4030 # if defined(EXITFREE) || defined(PROTO) | |
4031 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4032 free_titles(void) |
358 | 4033 { |
4034 vim_free(lasttitle); | |
4035 vim_free(lasticon); | |
4036 } | |
4037 # endif | |
4038 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4039 #endif // FEAT_TITLE |
7 | 4040 |
686 | 4041 #if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO) |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4042 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4043 /* |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4044 * Used for building in the status line. |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4045 */ |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4046 typedef struct |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4047 { |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4048 char_u *stl_start; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4049 int stl_minwid; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4050 int stl_maxwid; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4051 enum { |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4052 Normal, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4053 Empty, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4054 Group, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4055 Middle, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4056 Highlight, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4057 TabPage, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4058 Trunc |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4059 } stl_type; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4060 } stl_item_T; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4061 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4062 static size_t stl_items_len = 20; // Initial value, grows as needed. |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4063 static stl_item_T *stl_items = NULL; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4064 static int *stl_groupitem = NULL; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4065 static stl_hlrec_T *stl_hltab = NULL; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4066 static stl_hlrec_T *stl_tabtab = NULL; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4067 |
7 | 4068 /* |
675 | 4069 * Build a string from the status line items in "fmt". |
7 | 4070 * Return length of string in screen cells. |
4071 * | |
675 | 4072 * Normally works for window "wp", except when working for 'tabline' then it |
4073 * is "curwin". | |
4074 * | |
7 | 4075 * Items are drawn interspersed with the text that surrounds it |
4076 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation | |
4077 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional | |
4078 * | |
4079 * If maxwidth is not zero, the string will be filled at any middle marker | |
4080 * or truncated if too long, fillchar is used for all whitespace. | |
4081 */ | |
4082 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4083 build_stl_str_hl( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4084 win_T *wp, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4085 char_u *out, // buffer to write into != NameBuff |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4086 size_t outlen, // length of out[] |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4087 char_u *fmt, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4088 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4089 int fillchar, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4090 int maxwidth, |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4091 stl_hlrec_T **hltab, // return: HL attributes (can be NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4092 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL) |
7 | 4093 { |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4094 linenr_T lnum; |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4095 size_t len; |
7 | 4096 char_u *p; |
4097 char_u *s; | |
4098 char_u *t; | |
4333 | 4099 int byteval; |
7 | 4100 #ifdef FEAT_EVAL |
12387
1ecdbc207c1e
patch 8.0.1073: may get an endless loop if 'statusline' changes a highlight
Christian Brabandt <cb@256bit.org>
parents:
12267
diff
changeset
|
4101 win_T *save_curwin; |
1ecdbc207c1e
patch 8.0.1073: may get an endless loop if 'statusline' changes a highlight
Christian Brabandt <cb@256bit.org>
parents:
12267
diff
changeset
|
4102 buf_T *save_curbuf; |
18746
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4103 int save_VIsual_active; |
7 | 4104 #endif |
4105 int empty_line; | |
4106 colnr_T virtcol; | |
4107 long l; | |
4108 long n; | |
4109 int prevchar_isflag; | |
4110 int prevchar_isitem; | |
4111 int itemisflag; | |
4112 int fillable; | |
4113 char_u *str; | |
4114 long num; | |
4115 int width; | |
4116 int itemcnt; | |
4117 int curitem; | |
12660
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4118 int group_end_userhl; |
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4119 int group_start_userhl; |
7 | 4120 int groupdepth; |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4121 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4122 int evaldepth; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4123 #endif |
7 | 4124 int minwid; |
4125 int maxwid; | |
4126 int zeropad; | |
4127 char_u base; | |
4128 char_u opt; | |
4129 #define TMPLEN 70 | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4130 char_u buf_tmp[TMPLEN]; |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4131 char_u win_tmp[TMPLEN]; |
678 | 4132 char_u *usefmt = fmt; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4133 stl_hlrec_T *sp; |
12387
1ecdbc207c1e
patch 8.0.1073: may get an endless loop if 'statusline' changes a highlight
Christian Brabandt <cb@256bit.org>
parents:
12267
diff
changeset
|
4134 int save_must_redraw = must_redraw; |
1ecdbc207c1e
patch 8.0.1073: may get an endless loop if 'statusline' changes a highlight
Christian Brabandt <cb@256bit.org>
parents:
12267
diff
changeset
|
4135 int save_redr_type = curwin->w_redr_type; |
678 | 4136 |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4137 if (stl_items == NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4138 { |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4139 stl_items = ALLOC_MULT(stl_item_T, stl_items_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4140 stl_groupitem = ALLOC_MULT(int, stl_items_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4141 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4142 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4143 } |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4144 |
678 | 4145 #ifdef FEAT_EVAL |
4146 /* | |
4147 * When the format starts with "%!" then evaluate it as an expression and | |
4148 * use the result as the actual format string. | |
4149 */ | |
4150 if (fmt[0] == '%' && fmt[1] == '!') | |
4151 { | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4152 typval_T tv; |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4153 |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4154 tv.v_type = VAR_NUMBER; |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4155 tv.vval.v_number = wp->w_id; |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4156 set_var((char_u *)"g:statusline_winid", &tv, FALSE); |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4157 |
20996
3af71cbcfdbe
patch 8.2.1049: Vim9: leaking memory when using continuation line
Bram Moolenaar <Bram@vim.org>
parents:
20828
diff
changeset
|
4158 usefmt = eval_to_string_safe(fmt + 2, use_sandbox); |
678 | 4159 if (usefmt == NULL) |
943 | 4160 usefmt = fmt; |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4161 |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4162 do_unlet((char_u *)"g:statusline_winid", TRUE); |
678 | 4163 } |
4164 #endif | |
7 | 4165 |
4166 if (fillchar == 0) | |
4167 fillchar = ' '; | |
819 | 4168 |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4169 // The cursor in windows other than the current one isn't always |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4170 // up-to-date, esp. because of autocommands and timers. |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4171 lnum = wp->w_cursor.lnum; |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4172 if (lnum > wp->w_buffer->b_ml.ml_line_count) |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4173 { |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4174 lnum = wp->w_buffer->b_ml.ml_line_count; |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4175 wp->w_cursor.lnum = lnum; |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4176 } |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4177 |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4178 // Get line & check if empty (cursorpos will show "0-1"). Note that |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4179 // p will become invalid when getting another buffer line. |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4180 p = ml_get_buf(wp->w_buffer, lnum, FALSE); |
4333 | 4181 empty_line = (*p == NUL); |
4182 | |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4183 // Get the byte value now, in case we need it below. This is more efficient |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4184 // than making a copy of the line. |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4185 len = STRLEN(p); |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4186 if (wp->w_cursor.col > (colnr_T)len) |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4187 { |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4188 // Line may have changed since checking the cursor column, or the lnum |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4189 // was adjusted above. |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4190 wp->w_cursor.col = (colnr_T)len; |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4191 wp->w_cursor.coladd = 0; |
4333 | 4192 byteval = 0; |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4193 } |
4333 | 4194 else |
4195 byteval = (*mb_ptr2char)(p + wp->w_cursor.col); | |
7 | 4196 |
4197 groupdepth = 0; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4198 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4199 evaldepth = 0; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4200 #endif |
7 | 4201 p = out; |
4202 curitem = 0; | |
4203 prevchar_isflag = TRUE; | |
4204 prevchar_isitem = FALSE; | |
678 | 4205 for (s = usefmt; *s; ) |
7 | 4206 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4207 if (curitem == (int)stl_items_len) |
2704 | 4208 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4209 size_t new_len = stl_items_len * 3 / 2; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4210 stl_item_T *new_items; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4211 int *new_groupitem; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4212 stl_hlrec_T *new_hlrec; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4213 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4214 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4215 if (new_items == NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4216 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4217 stl_items = new_items; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4218 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4219 if (new_groupitem == NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4220 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4221 stl_groupitem = new_groupitem; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4222 new_hlrec = vim_realloc(stl_hltab, sizeof(stl_hlrec_T) * new_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4223 if (new_hlrec == NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4224 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4225 stl_hltab = new_hlrec; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4226 new_hlrec = vim_realloc(stl_tabtab, sizeof(stl_hlrec_T) * new_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4227 if (new_hlrec == NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4228 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4229 stl_tabtab = new_hlrec; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4230 stl_items_len = new_len; |
2704 | 4231 } |
4232 | |
7 | 4233 if (*s != NUL && *s != '%') |
4234 prevchar_isflag = prevchar_isitem = FALSE; | |
4235 | |
4236 /* | |
4237 * Handle up to the next '%' or the end. | |
4238 */ | |
4239 while (*s != NUL && *s != '%' && p + 1 < out + outlen) | |
4240 *p++ = *s++; | |
4241 if (*s == NUL || p + 1 >= out + outlen) | |
4242 break; | |
4243 | |
4244 /* | |
4245 * Handle one '%' item. | |
4246 */ | |
4247 s++; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4248 if (*s == NUL) // ignore trailing % |
2694 | 4249 break; |
7 | 4250 if (*s == '%') |
4251 { | |
4252 if (p + 1 >= out + outlen) | |
4253 break; | |
4254 *p++ = *s++; | |
4255 prevchar_isflag = prevchar_isitem = FALSE; | |
4256 continue; | |
4257 } | |
4258 if (*s == STL_MIDDLEMARK) | |
4259 { | |
4260 s++; | |
4261 if (groupdepth > 0) | |
4262 continue; | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4263 stl_items[curitem].stl_type = Middle; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4264 stl_items[curitem++].stl_start = p; |
7 | 4265 continue; |
4266 } | |
4267 if (*s == STL_TRUNCMARK) | |
4268 { | |
4269 s++; | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4270 stl_items[curitem].stl_type = Trunc; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4271 stl_items[curitem++].stl_start = p; |
7 | 4272 continue; |
4273 } | |
4274 if (*s == ')') | |
4275 { | |
4276 s++; | |
4277 if (groupdepth < 1) | |
4278 continue; | |
4279 groupdepth--; | |
4280 | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4281 t = stl_items[stl_groupitem[groupdepth]].stl_start; |
7 | 4282 *p = NUL; |
4283 l = vim_strsize(t); | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4284 if (curitem > stl_groupitem[groupdepth] + 1 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4285 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0) |
7 | 4286 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4287 // remove group if all items are empty and highlight group |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4288 // doesn't change |
12660
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4289 group_start_userhl = group_end_userhl = 0; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4290 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--) |
12684
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4291 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4292 if (stl_items[n].stl_type == Highlight) |
12684
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4293 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4294 group_start_userhl = group_end_userhl = |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4295 stl_items[n].stl_minwid; |
12684
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4296 break; |
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4297 } |
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4298 } |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4299 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++) |
12660
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4300 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4301 if (stl_items[n].stl_type == Normal) |
7 | 4302 break; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4303 if (stl_items[n].stl_type == Highlight) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4304 group_end_userhl = stl_items[n].stl_minwid; |
12660
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4305 } |
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4306 if (n == curitem && group_start_userhl == group_end_userhl) |
7 | 4307 { |
21417
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4308 // empty group |
7 | 4309 p = t; |
4310 l = 0; | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4311 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++) |
21417
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4312 { |
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4313 // do not use the highlighting from the removed group |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4314 if (stl_items[n].stl_type == Highlight) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4315 stl_items[n].stl_type = Empty; |
21417
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4316 // adjust the start position of TabPage to the next |
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4317 // item position |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4318 if (stl_items[n].stl_type == TabPage) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4319 stl_items[n].stl_start = p; |
21417
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4320 } |
7 | 4321 } |
4322 } | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4323 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid) |
7 | 4324 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4325 // truncate, remove n bytes of text at the start |
7 | 4326 if (has_mbyte) |
4327 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4328 // Find the first character that should be included. |
7 | 4329 n = 0; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4330 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid) |
7 | 4331 { |
4332 l -= ptr2cells(t + n); | |
474 | 4333 n += (*mb_ptr2len)(t + n); |
7 | 4334 } |
4335 } | |
4336 else | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4337 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]] |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4338 .stl_maxwid + 1; |
7 | 4339 |
4340 *t = '<'; | |
1869 | 4341 mch_memmove(t + 1, t + n, (size_t)(p - (t + n))); |
7 | 4342 p = p - n + 1; |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15557
diff
changeset
|
4343 |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15557
diff
changeset
|
4344 // Fill up space left over by half a double-wide char. |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4345 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid) |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4346 MB_CHAR2BYTES(fillchar, p); |
7 | 4347 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4348 // correct the start of the items for the truncation |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4349 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++) |
7 | 4350 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4351 stl_items[l].stl_start -= n; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4352 if (stl_items[l].stl_start < t) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4353 stl_items[l].stl_start = t; |
7 | 4354 } |
4355 } | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4356 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l) |
7 | 4357 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4358 // fill |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4359 n = stl_items[stl_groupitem[groupdepth]].stl_minwid; |
7 | 4360 if (n < 0) |
4361 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4362 // fill by appending characters |
7 | 4363 n = 0 - n; |
4364 while (l++ < n && p + 1 < out + outlen) | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4365 MB_CHAR2BYTES(fillchar, p); |
7 | 4366 } |
4367 else | |
4368 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4369 // fill by inserting characters |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4370 l = (n - l) * MB_CHAR2LEN(fillchar); |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4371 mch_memmove(t + l, t, (size_t)(p - t)); |
7 | 4372 if (p + l >= out + outlen) |
835 | 4373 l = (long)((out + outlen) - p - 1); |
7 | 4374 p += l; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4375 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4376 stl_items[n].stl_start += l; |
7 | 4377 for ( ; l > 0; l--) |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4378 MB_CHAR2BYTES(fillchar, t); |
7 | 4379 } |
4380 } | |
4381 continue; | |
4382 } | |
4383 minwid = 0; | |
4384 maxwid = 9999; | |
4385 zeropad = FALSE; | |
4386 l = 1; | |
4387 if (*s == '0') | |
4388 { | |
4389 s++; | |
4390 zeropad = TRUE; | |
4391 } | |
4392 if (*s == '-') | |
4393 { | |
4394 s++; | |
4395 l = -1; | |
4396 } | |
4397 if (VIM_ISDIGIT(*s)) | |
4398 { | |
4399 minwid = (int)getdigits(&s); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4400 if (minwid < 0) // overflow |
7 | 4401 minwid = 0; |
4402 } | |
678 | 4403 if (*s == STL_USER_HL) |
7 | 4404 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4405 stl_items[curitem].stl_type = Highlight; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4406 stl_items[curitem].stl_start = p; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4407 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid; |
7 | 4408 s++; |
4409 curitem++; | |
4410 continue; | |
4411 } | |
681 | 4412 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR) |
4413 { | |
4414 if (*s == STL_TABCLOSENR) | |
4415 { | |
4416 if (minwid == 0) | |
4417 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4418 // %X ends the close label, go back to the previously |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4419 // define tab label nr. |
681 | 4420 for (n = curitem - 1; n >= 0; --n) |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4421 if (stl_items[n].stl_type == TabPage |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4422 && stl_items[n].stl_minwid >= 0) |
681 | 4423 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4424 minwid = stl_items[n].stl_minwid; |
681 | 4425 break; |
4426 } | |
4427 } | |
4428 else | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4429 // close nrs are stored as negative values |
681 | 4430 minwid = - minwid; |
4431 } | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4432 stl_items[curitem].stl_type = TabPage; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4433 stl_items[curitem].stl_start = p; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4434 stl_items[curitem].stl_minwid = minwid; |
681 | 4435 s++; |
4436 curitem++; | |
4437 continue; | |
4438 } | |
7 | 4439 if (*s == '.') |
4440 { | |
4441 s++; | |
4442 if (VIM_ISDIGIT(*s)) | |
4443 { | |
4444 maxwid = (int)getdigits(&s); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4445 if (maxwid <= 0) // overflow |
7 | 4446 maxwid = 50; |
4447 } | |
4448 } | |
4449 minwid = (minwid > 50 ? 50 : minwid) * l; | |
4450 if (*s == '(') | |
4451 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4452 stl_groupitem[groupdepth++] = curitem; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4453 stl_items[curitem].stl_type = Group; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4454 stl_items[curitem].stl_start = p; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4455 stl_items[curitem].stl_minwid = minwid; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4456 stl_items[curitem].stl_maxwid = maxwid; |
7 | 4457 s++; |
4458 curitem++; | |
4459 continue; | |
4460 } | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4461 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4462 // Denotes end of expanded %{} block |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4463 if (*s == '}' && evaldepth > 0) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4464 { |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4465 s++; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4466 evaldepth--; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4467 continue; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4468 } |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4469 #endif |
7 | 4470 if (vim_strchr(STL_ALL, *s) == NULL) |
4471 { | |
4472 s++; | |
4473 continue; | |
4474 } | |
4475 opt = *s++; | |
4476 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4477 // OK - now for the real work |
7 | 4478 base = 'D'; |
4479 itemisflag = FALSE; | |
4480 fillable = TRUE; | |
4481 num = -1; | |
4482 str = NULL; | |
4483 switch (opt) | |
4484 { | |
4485 case STL_FILEPATH: | |
4486 case STL_FULLPATH: | |
4487 case STL_FILENAME: | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4488 fillable = FALSE; // don't change ' ' to fillchar |
7 | 4489 if (buf_spname(wp->w_buffer) != NULL) |
3839 | 4490 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1); |
7 | 4491 else |
4492 { | |
4493 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname | |
667 | 4494 : wp->w_buffer->b_fname; |
7 | 4495 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE); |
4496 } | |
4497 trans_characters(NameBuff, MAXPATHL); | |
4498 if (opt != STL_FILENAME) | |
4499 str = NameBuff; | |
4500 else | |
4501 str = gettail(NameBuff); | |
4502 break; | |
4503 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4504 case STL_VIM_EXPR: // '{' |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4505 { |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4506 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4507 char_u *block_start = s - 1; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4508 #endif |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4509 int reevaluate = (*s == '%'); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4510 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4511 if (reevaluate) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4512 s++; |
7 | 4513 itemisflag = TRUE; |
4514 t = p; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4515 while ((*s != '}' || (reevaluate && s[-1] != '%')) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4516 && *s != NUL && p + 1 < out + outlen) |
7 | 4517 *p++ = *s++; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4518 if (*s != '}') // missing '}' or out of space |
7 | 4519 break; |
4520 s++; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4521 if (reevaluate) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4522 p[-1] = 0; // remove the % at the end of %{% expr %} |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4523 else |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4524 *p = 0; |
7 | 4525 p = t; |
4526 #ifdef FEAT_EVAL | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4527 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4528 "%d", curbuf->b_fnum); |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4529 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp); |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4530 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id); |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4531 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp); |
7 | 4532 |
12387
1ecdbc207c1e
patch 8.0.1073: may get an endless loop if 'statusline' changes a highlight
Christian Brabandt <cb@256bit.org>
parents:
12267
diff
changeset
|
4533 save_curbuf = curbuf; |
1ecdbc207c1e
patch 8.0.1073: may get an endless loop if 'statusline' changes a highlight
Christian Brabandt <cb@256bit.org>
parents:
12267
diff
changeset
|
4534 save_curwin = curwin; |
18746
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4535 save_VIsual_active = VIsual_active; |
7 | 4536 curwin = wp; |
4537 curbuf = wp->w_buffer; | |
18746
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4538 // Visual mode is only valid in the current window. |
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4539 if (curwin != save_curwin) |
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4540 VIsual_active = FALSE; |
7 | 4541 |
20996
3af71cbcfdbe
patch 8.2.1049: Vim9: leaking memory when using continuation line
Bram Moolenaar <Bram@vim.org>
parents:
20828
diff
changeset
|
4542 str = eval_to_string_safe(p, use_sandbox); |
7 | 4543 |
12387
1ecdbc207c1e
patch 8.0.1073: may get an endless loop if 'statusline' changes a highlight
Christian Brabandt <cb@256bit.org>
parents:
12267
diff
changeset
|
4544 curwin = save_curwin; |
1ecdbc207c1e
patch 8.0.1073: may get an endless loop if 'statusline' changes a highlight
Christian Brabandt <cb@256bit.org>
parents:
12267
diff
changeset
|
4545 curbuf = save_curbuf; |
18746
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4546 VIsual_active = save_VIsual_active; |
145 | 4547 do_unlet((char_u *)"g:actual_curbuf", TRUE); |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4548 do_unlet((char_u *)"g:actual_curwin", TRUE); |
7 | 4549 |
4550 if (str != NULL && *str != 0) | |
4551 { | |
4552 if (*skipdigits(str) == NUL) | |
4553 { | |
4554 num = atoi((char *)str); | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
4555 VIM_CLEAR(str); |
7 | 4556 itemisflag = FALSE; |
4557 } | |
4558 } | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4559 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4560 // If the output of the expression needs to be evaluated |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4561 // replace the %{} block with the result of evaluation |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4562 if (reevaluate && str != NULL && *str != 0 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4563 && strchr((const char *)str, '%') != NULL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4564 && evaldepth < MAX_STL_EVAL_DEPTH) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4565 { |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4566 size_t parsed_usefmt = (size_t)(block_start - usefmt); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4567 size_t str_length = strlen((const char *)str); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4568 size_t fmt_length = strlen((const char *)s); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4569 size_t new_fmt_len = parsed_usefmt |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4570 + str_length + fmt_length + 3; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4571 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u)); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4572 char_u *new_fmt_p = new_fmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4573 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4574 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4575 + parsed_usefmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4576 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4577 + str_length; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4578 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4579 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4580 + fmt_length; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4581 *new_fmt_p = 0; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4582 new_fmt_p = NULL; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4583 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4584 if (usefmt != fmt) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4585 vim_free(usefmt); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4586 VIM_CLEAR(str); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4587 usefmt = new_fmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4588 s = usefmt + parsed_usefmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4589 evaldepth++; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4590 continue; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4591 } |
7 | 4592 #endif |
4593 break; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4594 } |
7 | 4595 case STL_LINE: |
4596 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) | |
4597 ? 0L : (long)(wp->w_cursor.lnum); | |
4598 break; | |
4599 | |
4600 case STL_NUMLINES: | |
4601 num = wp->w_buffer->b_ml.ml_line_count; | |
4602 break; | |
4603 | |
4604 case STL_COLUMN: | |
4605 num = !(State & INSERT) && empty_line | |
4606 ? 0 : (int)wp->w_cursor.col + 1; | |
4607 break; | |
4608 | |
4609 case STL_VIRTCOL: | |
4610 case STL_VIRTCOL_ALT: | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4611 // In list mode virtcol needs to be recomputed |
7 | 4612 virtcol = wp->w_virtcol; |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23869
diff
changeset
|
4613 if (wp->w_p_list && wp->w_lcs_chars.tab1 == NUL) |
7 | 4614 { |
4615 wp->w_p_list = FALSE; | |
4616 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL); | |
4617 wp->w_p_list = TRUE; | |
4618 } | |
4619 ++virtcol; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4620 // Don't display %V if it's the same as %c. |
7 | 4621 if (opt == STL_VIRTCOL_ALT |
4622 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line | |
4623 ? 0 : (int)wp->w_cursor.col + 1))) | |
4624 break; | |
4625 num = (long)virtcol; | |
4626 break; | |
4627 | |
4628 case STL_PERCENTAGE: | |
4629 num = (int)(((long)wp->w_cursor.lnum * 100L) / | |
4630 (long)wp->w_buffer->b_ml.ml_line_count); | |
4631 break; | |
4632 | |
4633 case STL_ALTPERCENT: | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4634 str = buf_tmp; |
1869 | 4635 get_rel_pos(wp, str, TMPLEN); |
7 | 4636 break; |
4637 | |
4638 case STL_ARGLISTSTAT: | |
4639 fillable = FALSE; | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4640 buf_tmp[0] = 0; |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4641 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE)) |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4642 str = buf_tmp; |
7 | 4643 break; |
4644 | |
4645 case STL_KEYMAP: | |
4646 fillable = FALSE; | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4647 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN)) |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4648 str = buf_tmp; |
7 | 4649 break; |
4650 case STL_PAGENUM: | |
706 | 4651 #if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE) |
686 | 4652 num = printer_page_num; |
7 | 4653 #else |
4654 num = 0; | |
4655 #endif | |
4656 break; | |
4657 | |
4658 case STL_BUFNO: | |
4659 num = wp->w_buffer->b_fnum; | |
4660 break; | |
4661 | |
4662 case STL_OFFSET_X: | |
4663 base = 'X'; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4664 // FALLTHROUGH |
7 | 4665 case STL_OFFSET: |
4666 #ifdef FEAT_BYTEOFF | |
4667 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL); | |
4668 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ? | |
4669 0L : l + 1 + (!(State & INSERT) && empty_line ? | |
4670 0 : (int)wp->w_cursor.col); | |
4671 #endif | |
4672 break; | |
4673 | |
4674 case STL_BYTEVAL_X: | |
4675 base = 'X'; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4676 // FALLTHROUGH |
7 | 4677 case STL_BYTEVAL: |
4333 | 4678 num = byteval; |
7 | 4679 if (num == NL) |
4680 num = 0; | |
4681 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC) | |
4682 num = NL; | |
4683 break; | |
4684 | |
4685 case STL_ROFLAG: | |
4686 case STL_ROFLAG_ALT: | |
4687 itemisflag = TRUE; | |
4688 if (wp->w_buffer->b_p_ro) | |
4795
8360a59aa04b
updated for version 7.3.1144
Bram Moolenaar <bram@vim.org>
parents:
4354
diff
changeset
|
4689 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]")); |
7 | 4690 break; |
4691 | |
4692 case STL_HELPFLAG: | |
4693 case STL_HELPFLAG_ALT: | |
4694 itemisflag = TRUE; | |
4695 if (wp->w_buffer->b_help) | |
4696 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP" | |
809 | 4697 : _("[Help]")); |
7 | 4698 break; |
4699 | |
4700 case STL_FILETYPE: | |
4701 if (*wp->w_buffer->b_p_ft != NUL | |
4702 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3) | |
4703 { | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4704 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]", |
272 | 4705 wp->w_buffer->b_p_ft); |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4706 str = buf_tmp; |
7 | 4707 } |
4708 break; | |
4709 | |
4710 case STL_FILETYPE_ALT: | |
4711 itemisflag = TRUE; | |
4712 if (*wp->w_buffer->b_p_ft != NUL | |
4713 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2) | |
4714 { | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4715 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s", |
272 | 4716 wp->w_buffer->b_p_ft); |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4717 for (t = buf_tmp; *t != 0; t++) |
7 | 4718 *t = TOUPPER_LOC(*t); |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4719 str = buf_tmp; |
7 | 4720 } |
4721 break; | |
4722 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
4723 #if defined(FEAT_QUICKFIX) |
7 | 4724 case STL_PREVIEWFLAG: |
4725 case STL_PREVIEWFLAG_ALT: | |
4726 itemisflag = TRUE; | |
4727 if (wp->w_p_pvw) | |
4728 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV" | |
4729 : _("[Preview]")); | |
4730 break; | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4731 |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4732 case STL_QUICKFIX: |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4733 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
|
4734 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
|
4735 ? _(msg_loclist) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4736 : _(msg_qflist)); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4737 break; |
7 | 4738 #endif |
4739 | |
4740 case STL_MODIFIED: | |
4741 case STL_MODIFIED_ALT: | |
4742 itemisflag = TRUE; | |
4743 switch ((opt == STL_MODIFIED_ALT) | |
4744 + bufIsChanged(wp->w_buffer) * 2 | |
4745 + (!wp->w_buffer->b_p_ma) * 4) | |
4746 { | |
4747 case 2: str = (char_u *)"[+]"; break; | |
4748 case 3: str = (char_u *)",+"; break; | |
4749 case 4: str = (char_u *)"[-]"; break; | |
4750 case 5: str = (char_u *)",-"; break; | |
4751 case 6: str = (char_u *)"[+-]"; break; | |
4752 case 7: str = (char_u *)",+-"; break; | |
4753 } | |
4754 break; | |
678 | 4755 |
4756 case STL_HIGHLIGHT: | |
4757 t = s; | |
4758 while (*s != '#' && *s != NUL) | |
4759 ++s; | |
4760 if (*s == '#') | |
4761 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4762 stl_items[curitem].stl_type = Highlight; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4763 stl_items[curitem].stl_start = p; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4764 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t)); |
678 | 4765 curitem++; |
4766 } | |
5407 | 4767 if (*s != NUL) |
4768 ++s; | |
678 | 4769 continue; |
7 | 4770 } |
4771 | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4772 stl_items[curitem].stl_start = p; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4773 stl_items[curitem].stl_type = Normal; |
7 | 4774 if (str != NULL && *str) |
4775 { | |
4776 t = str; | |
4777 if (itemisflag) | |
4778 { | |
4779 if ((t[0] && t[1]) | |
4780 && ((!prevchar_isitem && *t == ',') | |
4781 || (prevchar_isflag && *t == ' '))) | |
4782 t++; | |
4783 prevchar_isflag = TRUE; | |
4784 } | |
4785 l = vim_strsize(t); | |
4786 if (l > 0) | |
4787 prevchar_isitem = TRUE; | |
4788 if (l > maxwid) | |
4789 { | |
4790 while (l >= maxwid) | |
4791 if (has_mbyte) | |
4792 { | |
4793 l -= ptr2cells(t); | |
474 | 4794 t += (*mb_ptr2len)(t); |
7 | 4795 } |
4796 else | |
4797 l -= byte2cells(*t++); | |
4798 if (p + 1 >= out + outlen) | |
4799 break; | |
4800 *p++ = '<'; | |
4801 } | |
4802 if (minwid > 0) | |
4803 { | |
4804 for (; l < minwid && p + 1 < out + outlen; l++) | |
4805 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4806 // Don't put a "-" in front of a digit. |
7 | 4807 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t)) |
4808 *p++ = ' '; | |
4809 else | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4810 MB_CHAR2BYTES(fillchar, p); |
7 | 4811 } |
4812 minwid = 0; | |
4813 } | |
4814 else | |
4815 minwid *= -1; | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4816 for (; *t && p + 1 < out + outlen; t++) |
7 | 4817 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4818 // Change a space by fillchar, unless fillchar is '-' and a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4819 // digit follows. |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4820 if (fillable && *t == ' ' |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4821 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-')) |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4822 MB_CHAR2BYTES(fillchar, p); |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4823 else |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4824 *p++ = *t; |
7 | 4825 } |
4826 for (; l < minwid && p + 1 < out + outlen; l++) | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4827 MB_CHAR2BYTES(fillchar, p); |
7 | 4828 } |
4829 else if (num >= 0) | |
4830 { | |
4831 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16)); | |
4832 char_u nstr[20]; | |
4833 | |
4834 if (p + 20 >= out + outlen) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4835 break; // not sufficient space |
7 | 4836 prevchar_isitem = TRUE; |
4837 t = nstr; | |
4838 if (opt == STL_VIRTCOL_ALT) | |
4839 { | |
4840 *t++ = '-'; | |
4841 minwid--; | |
4842 } | |
4843 *t++ = '%'; | |
4844 if (zeropad) | |
4845 *t++ = '0'; | |
4846 *t++ = '*'; | |
1869 | 4847 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd'); |
7 | 4848 *t = 0; |
4849 | |
4850 for (n = num, l = 1; n >= nbase; n /= nbase) | |
4851 l++; | |
4852 if (opt == STL_VIRTCOL_ALT) | |
4853 l++; | |
4854 if (l > maxwid) | |
4855 { | |
4856 l += 2; | |
4857 n = l - maxwid; | |
4858 while (l-- > maxwid) | |
4859 num /= nbase; | |
4860 *t++ = '>'; | |
4861 *t++ = '%'; | |
4862 *t = t[-3]; | |
4863 *++t = 0; | |
272 | 4864 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, |
4865 0, num, n); | |
7 | 4866 } |
4867 else | |
272 | 4868 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, |
4869 minwid, num); | |
7 | 4870 p += STRLEN(p); |
4871 } | |
4872 else | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4873 stl_items[curitem].stl_type = Empty; |
7 | 4874 |
4875 if (opt == STL_VIM_EXPR) | |
4876 vim_free(str); | |
4877 | |
4878 if (num >= 0 || (!itemisflag && str && *str)) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4879 prevchar_isflag = FALSE; // Item not NULL, but not a flag |
7 | 4880 curitem++; |
4881 } | |
4882 *p = NUL; | |
4883 itemcnt = curitem; | |
4884 | |
678 | 4885 #ifdef FEAT_EVAL |
4886 if (usefmt != fmt) | |
4887 vim_free(usefmt); | |
4888 #endif | |
4889 | |
7 | 4890 width = vim_strsize(out); |
4891 if (maxwidth > 0 && width > maxwidth) | |
4892 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4893 // Result is too long, must truncate somewhere. |
7 | 4894 l = 0; |
4895 if (itemcnt == 0) | |
4896 s = out; | |
4897 else | |
4898 { | |
4899 for ( ; l < itemcnt; l++) | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4900 if (stl_items[l].stl_type == Trunc) |
7 | 4901 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4902 // Truncate at %< item. |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4903 s = stl_items[l].stl_start; |
7 | 4904 break; |
4905 } | |
4906 if (l == itemcnt) | |
4907 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4908 // No %< item, truncate first item. |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4909 s = stl_items[0].stl_start; |
7 | 4910 l = 0; |
4911 } | |
4912 } | |
4913 | |
4914 if (width - vim_strsize(s) >= maxwidth) | |
4915 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4916 // Truncation mark is beyond max length |
7 | 4917 if (has_mbyte) |
4918 { | |
4919 s = out; | |
4920 width = 0; | |
4921 for (;;) | |
4922 { | |
4923 width += ptr2cells(s); | |
4924 if (width >= maxwidth) | |
4925 break; | |
474 | 4926 s += (*mb_ptr2len)(s); |
7 | 4927 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4928 // Fill up for half a double-wide character. |
7 | 4929 while (++width < maxwidth) |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4930 MB_CHAR2BYTES(fillchar, s); |
7 | 4931 } |
4932 else | |
4933 s = out + maxwidth - 1; | |
4934 for (l = 0; l < itemcnt; l++) | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4935 if (stl_items[l].stl_start > s) |
7 | 4936 break; |
4937 itemcnt = l; | |
4938 *s++ = '>'; | |
4939 *s = 0; | |
4940 } | |
4941 else | |
4942 { | |
4943 if (has_mbyte) | |
4944 { | |
4945 n = 0; | |
4946 while (width >= maxwidth) | |
4947 { | |
4948 width -= ptr2cells(s + n); | |
474 | 4949 n += (*mb_ptr2len)(s + n); |
7 | 4950 } |
4951 } | |
4952 else | |
4953 n = width - maxwidth + 1; | |
4954 p = s + n; | |
1618 | 4955 STRMOVE(s + 1, p); |
7 | 4956 *s = '<'; |
4957 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4958 // Fill up for half a double-wide character. |
7 | 4959 while (++width < maxwidth) |
4960 { | |
4961 s = s + STRLEN(s); | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4962 MB_CHAR2BYTES(fillchar, s); |
7 | 4963 *s = NUL; |
4964 } | |
4965 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4966 --n; // count the '<' |
7 | 4967 for (; l < itemcnt; l++) |
4968 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4969 if (stl_items[l].stl_start - n >= s) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4970 stl_items[l].stl_start -= n; |
7 | 4971 else |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4972 stl_items[l].stl_start = s; |
7 | 4973 } |
4974 } | |
4975 width = maxwidth; | |
4976 } | |
4977 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen) | |
4978 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4979 // Apply STL_MIDDLE if any |
7 | 4980 for (l = 0; l < itemcnt; l++) |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4981 if (stl_items[l].stl_type == Middle) |
7 | 4982 break; |
4983 if (l < itemcnt) | |
4984 { | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4985 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar); |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4986 p = stl_items[l].stl_start + middlelength; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4987 STRMOVE(p, stl_items[l].stl_start); |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4988 for (s = stl_items[l].stl_start; s < p;) |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4989 MB_CHAR2BYTES(fillchar, s); |
7 | 4990 for (l++; l < itemcnt; l++) |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4991 stl_items[l].stl_start += middlelength; |
7 | 4992 width = maxwidth; |
4993 } | |
4994 } | |
4995 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4996 // Store the info about highlighting. |
681 | 4997 if (hltab != NULL) |
7 | 4998 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4999 *hltab = stl_hltab; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5000 sp = stl_hltab; |
7 | 5001 for (l = 0; l < itemcnt; l++) |
5002 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5003 if (stl_items[l].stl_type == Highlight) |
7 | 5004 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5005 sp->start = stl_items[l].stl_start; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5006 sp->userhl = stl_items[l].stl_minwid; |
681 | 5007 sp++; |
7 | 5008 } |
5009 } | |
681 | 5010 sp->start = NULL; |
5011 sp->userhl = 0; | |
5012 } | |
5013 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5014 // Store the info about tab pages labels. |
681 | 5015 if (tabtab != NULL) |
5016 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5017 *tabtab = stl_tabtab; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5018 sp = stl_tabtab; |
681 | 5019 for (l = 0; l < itemcnt; l++) |
5020 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5021 if (stl_items[l].stl_type == TabPage) |
681 | 5022 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5023 sp->start = stl_items[l].stl_start; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5024 sp->userhl = stl_items[l].stl_minwid; |
681 | 5025 sp++; |
5026 } | |
5027 } | |
5028 sp->start = NULL; | |
5029 sp->userhl = 0; | |
7 | 5030 } |
5031 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5032 // When inside update_screen we do not want redrawing a stausline, ruler, |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5033 // title, etc. to trigger another redraw, it may cause an endless loop. |
12572
31737ff54115
patch 8.0.1164: changing StatusLine highlight does not always work
Christian Brabandt <cb@256bit.org>
parents:
12479
diff
changeset
|
5034 if (updating_screen) |
31737ff54115
patch 8.0.1164: changing StatusLine highlight does not always work
Christian Brabandt <cb@256bit.org>
parents:
12479
diff
changeset
|
5035 { |
31737ff54115
patch 8.0.1164: changing StatusLine highlight does not always work
Christian Brabandt <cb@256bit.org>
parents:
12479
diff
changeset
|
5036 must_redraw = save_must_redraw; |
31737ff54115
patch 8.0.1164: changing StatusLine highlight does not always work
Christian Brabandt <cb@256bit.org>
parents:
12479
diff
changeset
|
5037 curwin->w_redr_type = save_redr_type; |
31737ff54115
patch 8.0.1164: changing StatusLine highlight does not always work
Christian Brabandt <cb@256bit.org>
parents:
12479
diff
changeset
|
5038 } |
12387
1ecdbc207c1e
patch 8.0.1073: may get an endless loop if 'statusline' changes a highlight
Christian Brabandt <cb@256bit.org>
parents:
12267
diff
changeset
|
5039 |
7 | 5040 return width; |
5041 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5042 #endif // FEAT_STL_OPT |
7 | 5043 |
686 | 5044 #if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \ |
5045 || defined(FEAT_GUI_TABLINE) || defined(PROTO) | |
7 | 5046 /* |
1869 | 5047 * Get relative cursor position in window into "buf[buflen]", in the form 99%, |
5048 * using "Top", "Bot" or "All" when appropriate. | |
7 | 5049 */ |
5050 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5051 get_rel_pos( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5052 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5053 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5054 int buflen) |
7 | 5055 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5056 long above; // number of lines above window |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5057 long below; // number of lines below window |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5058 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5059 if (buflen < 3) // need at least 3 chars for writing |
6466 | 5060 return; |
7 | 5061 above = wp->w_topline - 1; |
5062 #ifdef FEAT_DIFF | |
5063 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill; | |
6975 | 5064 if (wp->w_topline == 1 && wp->w_topfill >= 1) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5065 above = 0; // All buffer lines are displayed and there is an |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5066 // indication of filler lines, that can be considered |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5067 // seeing all lines. |
7 | 5068 #endif |
5069 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1; | |
5070 if (below <= 0) | |
1869 | 5071 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")), |
5072 (size_t)(buflen - 1)); | |
7 | 5073 else if (above <= 0) |
1869 | 5074 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1)); |
7 | 5075 else |
1869 | 5076 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L |
7 | 5077 ? (int)(above / ((above + below) / 100L)) |
5078 : (int)(above * 100L / (above + below))); | |
5079 } | |
5080 #endif | |
5081 | |
5082 /* | |
1869 | 5083 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file. |
7 | 5084 * Return TRUE if it was appended. |
5085 */ | |
1869 | 5086 static int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5087 append_arg_number( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5088 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5089 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5090 int buflen, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5091 int add_file) // Add "file" before the arg number |
7 | 5092 { |
5093 char_u *p; | |
5094 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5095 if (ARGCOUNT <= 1) // nothing to do |
7 | 5096 return FALSE; |
5097 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5098 p = buf + STRLEN(buf); // go to the end of the buffer |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5099 if (p - buf + 35 >= buflen) // getting too long |
7 | 5100 return FALSE; |
5101 *p++ = ' '; | |
5102 *p++ = '('; | |
5103 if (add_file) | |
5104 { | |
5105 STRCPY(p, "file "); | |
5106 p += 5; | |
5107 } | |
1869 | 5108 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)), |
5109 wp->w_arg_idx_invalid ? "(%d) of %d)" | |
7 | 5110 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT); |
5111 return TRUE; | |
5112 } | |
5113 | |
5114 /* | |
5115 * If fname is not a full path, make it a full path. | |
5116 * Returns pointer to allocated memory (NULL for failure). | |
5117 */ | |
5118 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5119 fix_fname(char_u *fname) |
7 | 5120 { |
5121 /* | |
5122 * Force expanding the path always for Unix, because symbolic links may | |
5123 * mess up the full path name, even though it starts with a '/'. | |
5124 * Also expand when there is ".." in the file name, try to remove it, | |
5125 * because "c:/src/../README" is equal to "c:/README". | |
1420 | 5126 * Similarly "c:/src//file" is equal to "c:/src/file". |
7 | 5127 * For MS-Windows also expand names like "longna~1" to "longname". |
5128 */ | |
1082 | 5129 #ifdef UNIX |
7 | 5130 return FullName_save(fname, TRUE); |
5131 #else | |
1420 | 5132 if (!vim_isAbsName(fname) |
5133 || strstr((char *)fname, "..") != NULL | |
5134 || strstr((char *)fname, "//") != NULL | |
5135 # ifdef BACKSLASH_IN_FILENAME | |
5136 || strstr((char *)fname, "\\\\") != NULL | |
5137 # endif | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
5138 # if defined(MSWIN) |
7 | 5139 || vim_strchr(fname, '~') != NULL |
1420 | 5140 # endif |
7 | 5141 ) |
5142 return FullName_save(fname, FALSE); | |
5143 | |
5144 fname = vim_strsave(fname); | |
5145 | |
1420 | 5146 # ifdef USE_FNAME_CASE |
15794
0d8291665b59
patch 8.1.0904: USE_LONG_FNAME never defined
Bram Moolenaar <Bram@vim.org>
parents:
15774
diff
changeset
|
5147 if (fname != NULL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5148 fname_case(fname, 0); // set correct case for file name |
1420 | 5149 # endif |
7 | 5150 |
5151 return fname; | |
5152 #endif | |
5153 } | |
5154 | |
5155 /* | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5156 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL. |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5157 * "*ffname" becomes a pointer to allocated memory (or NULL). |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5158 * When resolving a link both "*sfname" and "*ffname" will point to the same |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5159 * allocated memory. |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5160 * The "*ffname" and "*sfname" pointer values on call will not be freed. |
18498
9e6d5a4abb1c
patch 8.1.2243: typos in comments
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
5161 * Note that the resulting "*ffname" pointer should be considered not allocated. |
7 | 5162 */ |
5163 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5164 fname_expand( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5165 buf_T *buf UNUSED, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5166 char_u **ffname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5167 char_u **sfname) |
7 | 5168 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5169 if (*ffname == NULL) // no file name given, nothing to do |
7 | 5170 return; |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5171 if (*sfname == NULL) // no short file name given, use ffname |
7 | 5172 *sfname = *ffname; |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5173 *ffname = fix_fname(*ffname); // expand to full path |
7 | 5174 |
5175 #ifdef FEAT_SHORTCUT | |
5176 if (!buf->b_p_bin) | |
5177 { | |
844 | 5178 char_u *rfname; |
7 | 5179 |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5180 // If the file name is a shortcut file, use the file it links to. |
15774
c4efa095f323
patch 8.1.0894: MS-Windows: resolve() does not return a reparse point
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5181 rfname = mch_resolve_path(*ffname, FALSE); |
844 | 5182 if (rfname != NULL) |
7 | 5183 { |
5184 vim_free(*ffname); | |
5185 *ffname = rfname; | |
5186 *sfname = rfname; | |
5187 } | |
5188 } | |
5189 #endif | |
5190 } | |
5191 | |
5192 /* | |
5193 * Open a window for a number of buffers. | |
5194 */ | |
5195 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5196 ex_buffer_all(exarg_T *eap) |
7 | 5197 { |
5198 buf_T *buf; | |
5199 win_T *wp, *wpnext; | |
5200 int split_ret = OK; | |
5201 int p_ea_save; | |
5202 int open_wins = 0; | |
5203 int r; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5204 int count; // Maximum number of windows to open. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5205 int all; // When TRUE also load inactive buffers. |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
5206 int had_tab = cmdmod.cmod_tab; |
698 | 5207 tabpage_T *tpnext; |
7 | 5208 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5209 if (eap->addr_count == 0) // make as many windows as possible |
7 | 5210 count = 9999; |
5211 else | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5212 count = eap->line2; // make as many windows as specified |
7 | 5213 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide) |
5214 all = FALSE; | |
5215 else | |
5216 all = TRUE; | |
5217 | |
5218 setpcmark(); | |
5219 | |
5220 #ifdef FEAT_GUI | |
5221 need_mouse_correct = TRUE; | |
5222 #endif | |
5223 | |
5224 /* | |
5225 * Close superfluous windows (two windows for the same buffer). | |
5226 * Also close windows that are not full-width. | |
5227 */ | |
698 | 5228 if (had_tab > 0) |
4354 | 5229 goto_tabpage_tp(first_tabpage, TRUE, TRUE); |
698 | 5230 for (;;) |
7 | 5231 { |
698 | 5232 tpnext = curtab->tp_next; |
5233 for (wp = firstwin; wp != NULL; wp = wpnext) | |
7 | 5234 { |
698 | 5235 wpnext = wp->w_next; |
706 | 5236 if ((wp->w_buffer->b_nwindows > 1 |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
5237 || ((cmdmod.cmod_split & WSP_VERT) |
698 | 5238 ? wp->w_height + wp->w_status_height < Rows - p_ch |
706 | 5239 - tabline_height() |
698 | 5240 : wp->w_width != Columns) |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
5241 || (had_tab > 0 && wp != firstwin)) && !ONE_WINDOW |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5242 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
698 | 5243 { |
5244 win_close(wp, FALSE); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5245 wpnext = firstwin; // just in case an autocommand does |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5246 // something strange with windows |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5247 tpnext = first_tabpage; // start all over... |
698 | 5248 open_wins = 0; |
5249 } | |
5250 else | |
5251 ++open_wins; | |
7 | 5252 } |
698 | 5253 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5254 // Without the ":tab" modifier only do the current tab page. |
698 | 5255 if (had_tab == 0 || tpnext == NULL) |
5256 break; | |
4354 | 5257 goto_tabpage_tp(tpnext, TRUE, TRUE); |
7 | 5258 } |
5259 | |
5260 /* | |
5261 * Go through the buffer list. When a buffer doesn't have a window yet, | |
5262 * open one. Otherwise move the window to the right position. | |
5263 * Watch out for autocommands that delete buffers or windows! | |
5264 */ | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5265 // Don't execute Win/Buf Enter/Leave autocommands here. |
7 | 5266 ++autocmd_no_enter; |
5267 win_enter(lastwin, FALSE); | |
5268 ++autocmd_no_leave; | |
5269 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next) | |
5270 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5271 // Check if this buffer needs a window |
7 | 5272 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl) |
5273 continue; | |
5274 | |
701 | 5275 if (had_tab != 0) |
5276 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5277 // With the ":tab" modifier don't move the window. |
701 | 5278 if (buf->b_nwindows > 0) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5279 wp = lastwin; // buffer has a window, skip it |
701 | 5280 else |
5281 wp = NULL; | |
5282 } | |
5283 else | |
5284 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5285 // 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
|
5286 FOR_ALL_WINDOWS(wp) |
701 | 5287 if (wp->w_buffer == buf) |
5288 break; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5289 // If the buffer already has a window, move it |
701 | 5290 if (wp != NULL) |
5291 win_move_after(wp, curwin); | |
5292 } | |
5293 | |
5294 if (wp == NULL && split_ret == OK) | |
7 | 5295 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5296 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5297 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5298 set_bufref(&bufref, buf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5299 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5300 // Split the window and put the buffer in it |
7 | 5301 p_ea_save = p_ea; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5302 p_ea = TRUE; // use space from all windows |
7 | 5303 split_ret = win_split(0, WSP_ROOM | WSP_BELOW); |
5304 ++open_wins; | |
5305 p_ea = p_ea_save; | |
5306 if (split_ret == FAIL) | |
5307 continue; | |
5308 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5309 // Open the buffer in this window. |
7 | 5310 swap_exists_action = SEA_DIALOG; |
5311 set_curbuf(buf, DOBUF_GOTO); | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5312 if (!bufref_valid(&bufref)) |
20 | 5313 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5314 // autocommands deleted the buffer!!! |
20 | 5315 swap_exists_action = SEA_NONE; |
7 | 5316 break; |
5317 } | |
5318 if (swap_exists_action == SEA_QUIT) | |
5319 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5320 #if defined(FEAT_EVAL) |
24 | 5321 cleanup_T cs; |
5322 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5323 // Reset the error/interrupt/exception state here so that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5324 // aborting() returns FALSE when closing a window. |
24 | 5325 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5326 #endif |
24 | 5327 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5328 // User selected Quit at ATTENTION prompt; close this window. |
7 | 5329 win_close(curwin, TRUE); |
5330 --open_wins; | |
5331 swap_exists_action = SEA_NONE; | |
602 | 5332 swap_exists_did_quit = TRUE; |
24 | 5333 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5334 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5335 // Restore the error/interrupt/exception state if not |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5336 // discarded by a new aborting error, interrupt, or uncaught |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5337 // exception. |
24 | 5338 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5339 #endif |
7 | 5340 } |
5341 else | |
5342 handle_swap_exists(NULL); | |
5343 } | |
5344 | |
5345 ui_breakcheck(); | |
5346 if (got_int) | |
5347 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5348 (void)vgetc(); // only break the file loading, not the rest |
7 | 5349 break; |
5350 } | |
20 | 5351 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5352 // Autocommands deleted the buffer or aborted script processing!!! |
20 | 5353 if (aborting()) |
5354 break; | |
5355 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5356 // When ":tab" was used open a new tab for a new window repeatedly. |
698 | 5357 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm) |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
5358 cmdmod.cmod_tab = 9999; |
7 | 5359 } |
5360 --autocmd_no_enter; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5361 win_enter(firstwin, FALSE); // back to first window |
7 | 5362 --autocmd_no_leave; |
5363 | |
5364 /* | |
5365 * Close superfluous windows. | |
5366 */ | |
5367 for (wp = lastwin; open_wins > count; ) | |
5368 { | |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
5369 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer) |
7 | 5370 || autowrite(wp->w_buffer, FALSE) == OK); |
5371 if (!win_valid(wp)) | |
5372 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5373 // BufWrite Autocommands made the window invalid, start over |
7 | 5374 wp = lastwin; |
5375 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5376 else if (r) |
7 | 5377 { |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
5378 win_close(wp, !buf_hide(wp->w_buffer)); |
7 | 5379 --open_wins; |
5380 wp = lastwin; | |
5381 } | |
5382 else | |
5383 { | |
5384 wp = wp->w_prev; | |
5385 if (wp == NULL) | |
5386 break; | |
5387 } | |
5388 } | |
5389 } | |
5390 | |
5391 | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
5392 static int chk_modeline(linenr_T, int); |
717 | 5393 |
7 | 5394 /* |
5395 * do_modelines() - process mode lines for the current file | |
5396 * | |
717 | 5397 * "flags" can be: |
5398 * OPT_WINONLY only set options local to window | |
5399 * OPT_NOWIN don't set options local to window | |
5400 * | |
7 | 5401 * Returns immediately if the "ml" option isn't set. |
5402 */ | |
5403 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5404 do_modelines(int flags) |
7 | 5405 { |
23 | 5406 linenr_T lnum; |
5407 int nmlines; | |
5408 static int entered = 0; | |
7 | 5409 |
5410 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0) | |
5411 return; | |
5412 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5413 // Disallow recursive entry here. Can happen when executing a modeline |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5414 // triggers an autocommand, which reloads modelines with a ":do". |
7 | 5415 if (entered) |
5416 return; | |
5417 | |
5418 ++entered; | |
25696
64fa341cc33b
patch 8.2.3384: cannot disable modeline for an individual file
Bram Moolenaar <Bram@vim.org>
parents:
25487
diff
changeset
|
5419 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines; |
7 | 5420 ++lnum) |
717 | 5421 if (chk_modeline(lnum, flags) == FAIL) |
7 | 5422 nmlines = 0; |
5423 | |
25696
64fa341cc33b
patch 8.2.3384: cannot disable modeline for an individual file
Bram Moolenaar <Bram@vim.org>
parents:
25487
diff
changeset
|
5424 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines |
7 | 5425 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum) |
717 | 5426 if (chk_modeline(lnum, flags) == FAIL) |
7 | 5427 nmlines = 0; |
5428 --entered; | |
5429 } | |
5430 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5431 #include "version.h" // for version number |
7 | 5432 |
5433 /* | |
5434 * chk_modeline() - check a single line for a mode string | |
5435 * Return FAIL if an error encountered. | |
5436 */ | |
5437 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5438 chk_modeline( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5439 linenr_T lnum, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5440 int flags) // Same as for do_modelines(). |
7 | 5441 { |
5442 char_u *s; | |
5443 char_u *e; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5444 char_u *linecopy; // local copy of any modeline found |
7 | 5445 int prev; |
5446 int vers; | |
5447 int end; | |
5448 int retval = OK; | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14658
diff
changeset
|
5449 sctx_T save_current_sctx; |
23390
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5450 |
19075
af1eca322b9e
patch 8.2.0098: exe stack length can be wrong without being detected
Bram Moolenaar <Bram@vim.org>
parents:
19044
diff
changeset
|
5451 ESTACK_CHECK_DECLARATION |
7 | 5452 |
5453 prev = -1; | |
5454 for (s = ml_get(lnum); *s != NUL; ++s) | |
5455 { | |
5456 if (prev == -1 || vim_isspace(prev)) | |
5457 { | |
5458 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0) | |
5459 || STRNCMP(s, "vi:", (size_t)3) == 0) | |
5460 break; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5461 // Accept both "vim" and "Vim". |
5010
b614332f7df2
updated for version 7.3.1249
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
5462 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm') |
7 | 5463 { |
5464 if (s[3] == '<' || s[3] == '=' || s[3] == '>') | |
5465 e = s + 4; | |
5466 else | |
5467 e = s + 3; | |
5468 vers = getdigits(&e); | |
5469 if (*e == ':' | |
5043
53c1b30632df
updated for version 7.3.1265
Bram Moolenaar <bram@vim.org>
parents:
5010
diff
changeset
|
5470 && (s[0] != 'V' |
53c1b30632df
updated for version 7.3.1265
Bram Moolenaar <bram@vim.org>
parents:
5010
diff
changeset
|
5471 || STRNCMP(skipwhite(e + 1), "set", 3) == 0) |
7 | 5472 && (s[3] == ':' |
5473 || (VIM_VERSION_100 >= vers && isdigit(s[3])) | |
5474 || (VIM_VERSION_100 < vers && s[3] == '<') | |
5475 || (VIM_VERSION_100 > vers && s[3] == '>') | |
5476 || (VIM_VERSION_100 == vers && s[3] == '='))) | |
5477 break; | |
5478 } | |
5479 } | |
5480 prev = *s; | |
5481 } | |
5482 | |
5483 if (*s) | |
5484 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5485 do // skip over "ex:", "vi:" or "vim:" |
7 | 5486 ++s; |
5487 while (s[-1] != ':'); | |
5488 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5489 s = linecopy = vim_strsave(s); // copy the line, it will change |
7 | 5490 if (linecopy == NULL) |
5491 return FAIL; | |
5492 | |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5493 // prepare for emsg() |
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5494 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum); |
19075
af1eca322b9e
patch 8.2.0098: exe stack length can be wrong without being detected
Bram Moolenaar <Bram@vim.org>
parents:
19044
diff
changeset
|
5495 ESTACK_CHECK_SETUP |
7 | 5496 |
5497 end = FALSE; | |
5498 while (end == FALSE) | |
5499 { | |
5500 s = skipwhite(s); | |
5501 if (*s == NUL) | |
5502 break; | |
5503 | |
5504 /* | |
5505 * Find end of set command: ':' or end of line. | |
5506 * Skip over "\:", replacing it with ":". | |
5507 */ | |
5508 for (e = s; *e != ':' && *e != NUL; ++e) | |
5509 if (e[0] == '\\' && e[1] == ':') | |
1618 | 5510 STRMOVE(e, e + 1); |
7 | 5511 if (*e == NUL) |
5512 end = TRUE; | |
5513 | |
5514 /* | |
5515 * If there is a "set" command, require a terminating ':' and | |
5516 * ignore the stuff after the ':'. | |
5517 * "vi:set opt opt opt: foo" -- foo not interpreted | |
5518 * "vi:opt opt opt: foo" -- foo interpreted | |
5519 * Accept "se" for compatibility with Elvis. | |
5520 */ | |
5521 if (STRNCMP(s, "set ", (size_t)4) == 0 | |
5522 || STRNCMP(s, "se ", (size_t)3) == 0) | |
5523 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5524 if (*e != ':') // no terminating ':'? |
7 | 5525 break; |
5526 end = TRUE; | |
5527 s = vim_strchr(s, ' ') + 1; | |
5528 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5529 *e = NUL; // truncate the set command |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5530 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5531 if (*s != NUL) // skip over an empty "::" |
7 | 5532 { |
15207
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15138
diff
changeset
|
5533 int secure_save = secure; |
23390
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5534 |
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5535 save_current_sctx = current_sctx; |
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5536 current_sctx.sc_version = 1; |
7 | 5537 #ifdef FEAT_EVAL |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14658
diff
changeset
|
5538 current_sctx.sc_sid = SID_MODELINE; |
15008
67e3103d6e18
patch 8.1.0515: reloading a script gives errors for existing functions
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
5539 current_sctx.sc_seq = 0; |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5540 current_sctx.sc_lnum = lnum; |
23390
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5541 #endif |
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5542 |
15054
2d6e930c7613
patch 8.1.0538: evaluating a modeline might invoke using a shell command
Bram Moolenaar <Bram@vim.org>
parents:
15008
diff
changeset
|
5543 // Make sure no risky things are executed as a side effect. |
16082
2699db3e4d9d
patch 8.1.1046: the "secure" variable is used inconsistently
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
5544 secure = 1; |
15054
2d6e930c7613
patch 8.1.0538: evaluating a modeline might invoke using a shell command
Bram Moolenaar <Bram@vim.org>
parents:
15008
diff
changeset
|
5545 |
717 | 5546 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags); |
15054
2d6e930c7613
patch 8.1.0538: evaluating a modeline might invoke using a shell command
Bram Moolenaar <Bram@vim.org>
parents:
15008
diff
changeset
|
5547 |
15207
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15138
diff
changeset
|
5548 secure = secure_save; |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14658
diff
changeset
|
5549 current_sctx = save_current_sctx; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5550 if (retval == FAIL) // stop if error found |
7 | 5551 break; |
5552 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5553 s = e + 1; // advance to next part |
7 | 5554 } |
5555 | |
19075
af1eca322b9e
patch 8.2.0098: exe stack length can be wrong without being detected
Bram Moolenaar <Bram@vim.org>
parents:
19044
diff
changeset
|
5556 ESTACK_CHECK_NOW |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5557 estack_pop(); |
7 | 5558 vim_free(linecopy); |
5559 } | |
5560 return retval; | |
5561 } | |
5562 | |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5563 /* |
14433
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5564 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty. |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5565 */ |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5566 int |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5567 bt_normal(buf_T *buf) |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5568 { |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5569 return buf != NULL && buf->b_p_bt[0] == NUL; |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5570 } |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5571 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5572 #if defined(FEAT_QUICKFIX) || defined(PROTO) |
14433
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5573 /* |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5574 * Return TRUE if "buf" is the quickfix buffer. |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5575 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5576 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5577 bt_quickfix(buf_T *buf) |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5578 { |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5579 return buf != NULL && buf->b_p_bt[0] == 'q'; |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5580 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5581 #endif |
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5582 |
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5583 #if defined(FEAT_TERMINAL) || defined(PROTO) |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5584 /* |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5585 * Return TRUE if "buf" is a terminal buffer. |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5586 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5587 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5588 bt_terminal(buf_T *buf) |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5589 { |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5590 return buf != NULL && buf->b_p_bt[0] == 't'; |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5591 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5592 #endif |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5593 |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5594 /* |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5595 * Return TRUE if "buf" is a help buffer. |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5596 */ |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5597 int |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5598 bt_help(buf_T *buf) |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5599 { |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5600 return buf != NULL && buf->b_help; |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5601 } |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5602 |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5603 /* |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5604 * Return TRUE if "buf" is a prompt buffer. |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5605 */ |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5606 int |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5607 bt_prompt(buf_T *buf) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5608 { |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5609 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r'; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5610 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5611 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5612 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5613 * Return TRUE if "buf" is a buffer for a popup window. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5614 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5615 int |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5616 bt_popup(buf_T *buf) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5617 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5618 return buf != NULL && buf->b_p_bt != NULL |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5619 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o'; |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5620 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5621 |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5622 /* |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
5623 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt" |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
5624 * buffer. This means the buffer name is not a file name. |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5625 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5626 int |
17095
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5627 bt_nofilename(buf_T *buf) |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5628 { |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5629 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f') |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5630 || buf->b_p_bt[0] == 'a' |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5631 || buf->b_p_bt[0] == 't' |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5632 || buf->b_p_bt[0] == 'p'); |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5633 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5634 |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5635 /* |
17095
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5636 * Return TRUE if "buf" has 'buftype' set to "nofile". |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5637 */ |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5638 int |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5639 bt_nofile(buf_T *buf) |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5640 { |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5641 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f'; |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5642 } |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5643 |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5644 /* |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
5645 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt" |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
5646 * buffer. |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5647 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5648 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5649 bt_dontwrite(buf_T *buf) |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5650 { |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5651 return buf != NULL && (buf->b_p_bt[0] == 'n' |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5652 || buf->b_p_bt[0] == 't' |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5653 || buf->b_p_bt[0] == 'p'); |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5654 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5655 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5656 #if defined(FEAT_QUICKFIX) || defined(PROTO) |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5657 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5658 bt_dontwrite_msg(buf_T *buf) |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5659 { |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5660 if (bt_dontwrite(buf)) |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5661 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
5662 emsg(_("E382: Cannot write, 'buftype' option is set")); |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5663 return TRUE; |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5664 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5665 return FALSE; |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5666 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5667 #endif |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5668 |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5669 /* |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5670 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide" |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5671 * and 'bufhidden'. |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5672 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5673 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5674 buf_hide(buf_T *buf) |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5675 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5676 // 'bufhidden' overrules 'hidden' and ":hide", check it first |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5677 switch (buf->b_p_bh[0]) |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5678 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5679 case 'u': // "unload" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5680 case 'w': // "wipe" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5681 case 'd': return FALSE; // "delete" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5682 case 'h': return TRUE; // "hide" |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5683 } |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
5684 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE)); |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5685 } |
7 | 5686 |
5687 /* | |
5688 * Return special buffer name. | |
5689 * Returns NULL when the buffer has a normal file name. | |
5690 */ | |
3839 | 5691 char_u * |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5692 buf_spname(buf_T *buf) |
7 | 5693 { |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
5694 #if defined(FEAT_QUICKFIX) |
7 | 5695 if (bt_quickfix(buf)) |
643 | 5696 { |
5697 /* | |
15740
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5698 * Differentiate between the quickfix and location list buffers using |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5699 * the buffer number stored in the global quickfix stack. |
643 | 5700 */ |
15740
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5701 if (buf->b_fnum == qf_stack_get_bufnr()) |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5702 return (char_u *)_(msg_qflist); |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5703 else |
3839 | 5704 return (char_u *)_(msg_loclist); |
643 | 5705 } |
7 | 5706 #endif |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5707 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5708 // There is no _file_ when 'buftype' is "nofile", b_sfname |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5709 // contains the name as specified by the user. |
17095
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5710 if (bt_nofilename(buf)) |
7 | 5711 { |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5712 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5713 if (buf->b_term != NULL) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5714 return term_get_status_text(buf->b_term); |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5715 #endif |
12267
e3bde71afff0
patch 8.0.1013: terminal window behaves different from a buffer with changes
Christian Brabandt <cb@256bit.org>
parents:
12146
diff
changeset
|
5716 if (buf->b_fname != NULL) |
e3bde71afff0
patch 8.0.1013: terminal window behaves different from a buffer with changes
Christian Brabandt <cb@256bit.org>
parents:
12146
diff
changeset
|
5717 return buf->b_fname; |
14037
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
5718 #ifdef FEAT_JOB_CHANNEL |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
5719 if (bt_prompt(buf)) |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
5720 return (char_u *)_("[Prompt]"); |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
5721 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18757
diff
changeset
|
5722 #ifdef FEAT_PROP_POPUP |
16859
0154363d3b98
patch 8.1.1431: popup window listed as "Scratch"
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
5723 if (bt_popup(buf)) |
0154363d3b98
patch 8.1.1431: popup window listed as "Scratch"
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
5724 return (char_u *)_("[Popup]"); |
0154363d3b98
patch 8.1.1431: popup window listed as "Scratch"
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
5725 #endif |
3839 | 5726 return (char_u *)_("[Scratch]"); |
7 | 5727 } |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5728 |
7 | 5729 if (buf->b_fname == NULL) |
22822
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5730 return buf_get_fname(buf); |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5731 return NULL; |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5732 } |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5733 |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5734 /* |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5735 * Get "buf->b_fname", use "[No Name]" if it is NULL. |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5736 */ |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5737 char_u * |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5738 buf_get_fname(buf_T *buf) |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5739 { |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5740 if (buf->b_fname == NULL) |
3839 | 5741 return (char_u *)_("[No Name]"); |
22822
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5742 return buf->b_fname; |
7 | 5743 } |
5744 | |
5745 /* | |
5746 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed. | |
5747 */ | |
5748 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5749 set_buflisted(int on) |
7 | 5750 { |
5751 if (on != curbuf->b_p_bl) | |
5752 { | |
5753 curbuf->b_p_bl = on; | |
5754 if (on) | |
5755 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf); | |
5756 else | |
5757 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); | |
5758 } | |
5759 } | |
5760 | |
5761 /* | |
5762 * Read the file for "buf" again and check if the contents changed. | |
5763 * Return TRUE if it changed or this could not be checked. | |
5764 */ | |
5765 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5766 buf_contents_changed(buf_T *buf) |
7 | 5767 { |
5768 buf_T *newbuf; | |
5769 int differ = TRUE; | |
5770 linenr_T lnum; | |
5771 aco_save_T aco; | |
5772 exarg_T ea; | |
5773 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5774 // Allocate a buffer without putting it in the buffer list. |
7 | 5775 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); |
5776 if (newbuf == NULL) | |
5777 return TRUE; | |
5778 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5779 // Force the 'fileencoding' and 'fileformat' to be equal. |
7 | 5780 if (prep_exarg(&ea, buf) == FAIL) |
5781 { | |
5782 wipe_buffer(newbuf, FALSE); | |
5783 return TRUE; | |
5784 } | |
5785 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5786 // set curwin/curbuf to buf and save a few things |
7 | 5787 aucmd_prepbuf(&aco, newbuf); |
5788 | |
625 | 5789 if (ml_open(curbuf) == OK |
7 | 5790 && readfile(buf->b_ffname, buf->b_fname, |
5791 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, | |
5792 &ea, READ_NEW | READ_DUMMY) == OK) | |
5793 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5794 // compare the two files line by line |
7 | 5795 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count) |
5796 { | |
5797 differ = FALSE; | |
5798 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
5799 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0) | |
5800 { | |
5801 differ = TRUE; | |
5802 break; | |
5803 } | |
5804 } | |
5805 } | |
5806 vim_free(ea.cmd); | |
5807 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5808 // restore curwin/curbuf and a few other things |
7 | 5809 aucmd_restbuf(&aco); |
5810 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5811 if (curbuf != newbuf) // safety check |
7 | 5812 wipe_buffer(newbuf, FALSE); |
5813 | |
5814 return differ; | |
5815 } | |
5816 | |
5817 /* | |
5818 * Wipe out a buffer and decrement the last buffer number if it was used for | |
5819 * this buffer. Call this to wipe out a temp buffer that does not contain any | |
5820 * marks. | |
5821 */ | |
5822 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5823 wipe_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5824 buf_T *buf, |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
5825 int aucmd) // When TRUE trigger autocommands. |
7 | 5826 { |
5827 if (buf->b_fnum == top_file_num - 1) | |
5828 --top_file_num; | |
5829 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5830 if (!aucmd) // Don't trigger BufDelete autocommands here. |
1410 | 5831 block_autocmds(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5832 |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
5833 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5834 |
7 | 5835 if (!aucmd) |
1410 | 5836 unblock_autocmds(); |
7 | 5837 } |