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