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