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