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