Mercurial > vim
annotate src/buffer.c @ 25048:82ae6fcd86c8 v8.2.3061
patch 8.2.3061: testing the shell option is incomplete and spread out
Commit: https://github.com/vim/vim/commit/054794c20f6322bbd9482c4124041dc0a140c78e
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Sun Jun 27 12:07:49 2021 +0200
patch 8.2.3061: testing the shell option is incomplete and spread out
Problem: Testing the shell option is incomplete and spread out.
Solution: Move shell tests to one file and increase coverage. (Yegappan
Lakshmanan, closes #8464)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 27 Jun 2021 12:15:03 +0200 |
parents | e8451dc0d643 |
children | 8f2262c72178 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9943
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * buffer.c: functions for dealing with the buffer structure | |
12 */ | |
13 | |
14 /* | |
15 * The buffer list is a double linked list of all buffers. | |
16 * Each buffer can be in one of these states: | |
17 * never loaded: BF_NEVERLOADED is set, only the file name is valid | |
18 * not loaded: b_ml.ml_mfp == NULL, no memfile allocated | |
19 * hidden: b_nwindows == 0, loaded but not displayed in a window | |
20 * normal: loaded and displayed in a window | |
21 * | |
22 * Instead of storing file names all over the place, each file name is | |
23 * stored in the buffer list. It can be referenced by a number. | |
24 * | |
25 * The current implementation remembers all file names ever used. | |
26 */ | |
27 | |
28 #include "vim.h" | |
29 | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
30 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
31 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
32 // Determines how deeply nested %{} blocks will be evaluated in statusline. |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
33 # define MAX_STL_EVAL_DEPTH 100 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
34 #endif |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
35 |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
36 static void enter_buffer(buf_T *buf); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
37 static void buflist_getfpos(void); |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
38 static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
39 static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case); |
7 | 40 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
41 static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st); |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
42 static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp); |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
43 static int buf_same_ino(buf_T *buf, stat_T *stp); |
7 | 44 #else |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
45 static int otherfile_buf(buf_T *buf, char_u *ffname); |
7 | 46 #endif |
47 #ifdef FEAT_TITLE | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
48 static int value_changed(char_u *str, char_u **last); |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
49 #endif |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
50 static int append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
51 static void free_buffer(buf_T *); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
52 static void free_buffer_stuff(buf_T *buf, int free_options); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
53 static void clear_wininfo(buf_T *buf); |
7 | 54 |
55 #ifdef UNIX | |
56 # define dev_T dev_t | |
57 #else | |
58 # define dev_T unsigned | |
59 #endif | |
60 | |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
61 #define FOR_ALL_BUFS_FROM_LAST(buf) \ |
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
62 for ((buf) = lastbuf; (buf) != NULL; (buf) = (buf)->b_prev) |
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
63 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
64 #if defined(FEAT_QUICKFIX) |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
65 static char *msg_loclist = N_("[Location List]"); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
66 static char *msg_qflist = N_("[Quickfix List]"); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
67 #endif |
3365 | 68 static char *e_auabort = N_("E855: Autocommands caused command to abort"); |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
69 |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
70 // Number of times free_buffer() was called. |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
71 static int buf_free_count = 0; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
72 |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
73 static int top_file_num = 1; // highest file number |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
74 static garray_T buf_reuse = GA_EMPTY; // file numbers to recycle |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
75 |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
76 /* |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
77 * Return the highest possible buffer number. |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
78 */ |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
79 int |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
80 get_highest_fnum(void) |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
81 { |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
82 return top_file_num - 1; |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
83 } |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
84 |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
85 /* |
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
86 * Read data from buffer for retrying. |
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
87 */ |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
88 static int |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
89 read_buffer( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
90 int read_stdin, // read file from stdin, otherwise fifo |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
91 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
92 int flags) // extra flags for readfile() |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
93 { |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
94 int retval = OK; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
95 linenr_T line_count; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
96 |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
97 /* |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
98 * 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
|
99 * 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
|
100 * 'fileencoding' was guessed wrong. |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
101 */ |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
102 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
|
103 retval = readfile( |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
104 read_stdin ? NULL : curbuf->b_ffname, |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
105 read_stdin ? NULL : curbuf->b_fname, |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
106 (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
|
107 flags | READ_BUFFER); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
108 if (retval == OK) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
109 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
110 // Delete the binary lines. |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
111 while (--line_count >= 0) |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
19934
diff
changeset
|
112 ml_delete((linenr_T)1); |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
113 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
114 else |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
115 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
116 // Delete the converted lines. |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
117 while (curbuf->b_ml.ml_line_count > line_count) |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
19934
diff
changeset
|
118 ml_delete(line_count); |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
119 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
120 // Put the cursor on the first line. |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
121 curwin->w_cursor.lnum = 1; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
122 curwin->w_cursor.col = 0; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
123 |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
124 if (read_stdin) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
125 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
126 // Set or reset 'modified' before executing autocommands, so that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
127 // 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
|
128 if (!readonlymode && !BUFEMPTY()) |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
129 changed(); |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
130 else if (retval == OK) |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
131 unchanged(curbuf, FALSE, TRUE); |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
132 |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
133 if (retval == OK) |
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
134 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
135 #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
|
136 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
|
137 curbuf, &retval); |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
138 #else |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
139 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
|
140 #endif |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
141 } |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
142 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
143 return retval; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
144 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
145 |
7 | 146 /* |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
147 * Ensure buffer "buf" is loaded. Does not trigger the swap-exists action. |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
148 */ |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
149 void |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
150 buffer_ensure_loaded(buf_T *buf) |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
151 { |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
152 if (buf->b_ml.ml_mfp == NULL) |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
153 { |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
154 aco_save_T aco; |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
155 |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
156 aucmd_prepbuf(&aco, buf); |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
157 swap_exists_action = SEA_NONE; |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
158 open_buffer(FALSE, NULL, 0); |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
159 aucmd_restbuf(&aco); |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
160 } |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
161 } |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
162 |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
163 /* |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
164 * 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
|
165 * memory. |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
166 * Return FAIL for failure, OK otherwise. |
7 | 167 */ |
168 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
169 open_buffer( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
170 int read_stdin, // read file from stdin |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
171 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
172 int flags) // extra flags for readfile() |
7 | 173 { |
174 int retval = OK; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
175 bufref_T old_curbuf; |
4139 | 176 #ifdef FEAT_SYN_HL |
177 long old_tw = curbuf->b_p_tw; | |
178 #endif | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
179 int read_fifo = FALSE; |
7 | 180 |
181 /* | |
182 * The 'readonly' flag is only set when BF_NEVERLOADED is being reset. | |
183 * When re-entering the same buffer, it should not change, because the | |
184 * user may have reset the flag by hand. | |
185 */ | |
186 if (readonlymode && curbuf->b_ffname != NULL | |
187 && (curbuf->b_flags & BF_NEVERLOADED)) | |
188 curbuf->b_p_ro = TRUE; | |
189 | |
625 | 190 if (ml_open(curbuf) == FAIL) |
7 | 191 { |
192 /* | |
193 * There MUST be a memfile, otherwise we can't do anything | |
194 * If we can't create one for the current buffer, take another buffer | |
195 */ | |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
196 close_buffer(NULL, curbuf, 0, FALSE, FALSE); |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
197 FOR_ALL_BUFFERS(curbuf) |
7 | 198 if (curbuf->b_ml.ml_mfp != NULL) |
199 break; | |
200 /* | |
17797
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
201 * If there is no memfile at all, exit. |
1698 | 202 * This is OK, since there are no changes to lose. |
7 | 203 */ |
204 if (curbuf == NULL) | |
205 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
206 emsg(_("E82: Cannot allocate any buffer, exiting...")); |
17797
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
207 |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
208 // Don't try to do any saving, with "curbuf" NULL almost nothing |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
209 // will work. |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
210 v_dying = 2; |
7 | 211 getout(2); |
212 } | |
17797
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
213 |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
214 emsg(_("E83: Cannot allocate buffer, using other one...")); |
7 | 215 enter_buffer(curbuf); |
4139 | 216 #ifdef FEAT_SYN_HL |
217 if (old_tw != curbuf->b_p_tw) | |
218 check_colorcolumn(curwin); | |
219 #endif | |
7 | 220 return FAIL; |
221 } | |
222 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
223 // The autocommands in readfile() may change the buffer, but only AFTER |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
224 // reading the file. |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
225 set_bufref(&old_curbuf, curbuf); |
7 | 226 modified_was_set = FALSE; |
227 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
228 // mark cursor position as being invalid |
2091
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
229 curwin->w_valid = 0; |
7 | 230 |
231 if (curbuf->b_ffname != NULL | |
232 #ifdef FEAT_NETBEANS_INTG | |
233 && netbeansReadFile | |
234 #endif | |
235 ) | |
236 { | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
237 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
|
238 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
239 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
|
240 int perm; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
241 #endif |
7 | 242 #ifdef FEAT_NETBEANS_INTG |
243 int oldFire = netbeansFireChanges; | |
244 | |
245 netbeansFireChanges = 0; | |
246 #endif | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
247 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
248 perm = mch_getperm(curbuf->b_ffname); |
14509
80f715651c4c
patch 8.1.0268: file type checking has too many #ifdef
Christian Brabandt <cb@256bit.org>
parents:
14479
diff
changeset
|
249 if (perm >= 0 && (S_ISFIFO(perm) |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
250 || S_ISSOCK(perm) |
9911
74e345d2878c
commit https://github.com/vim/vim/commit/f04507d132fbcb63999167ec006fc6e700b5af4f
Christian Brabandt <cb@256bit.org>
parents:
9875
diff
changeset
|
251 # ifdef OPEN_CHR_FILES |
74e345d2878c
commit https://github.com/vim/vim/commit/f04507d132fbcb63999167ec006fc6e700b5af4f
Christian Brabandt <cb@256bit.org>
parents:
9875
diff
changeset
|
252 || (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
|
253 # endif |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
254 )) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
255 read_fifo = TRUE; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
256 if (read_fifo) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
257 curbuf->b_p_bin = TRUE; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
258 #endif |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
259 if (shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
260 msg_silent = 1; |
7 | 261 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
|
262 (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
|
263 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
|
264 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
265 if (read_fifo) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
266 { |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
267 curbuf->b_p_bin = save_bin; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
268 if (retval == OK) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
269 retval = read_buffer(FALSE, eap, flags); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
270 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
271 #endif |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
272 msg_silent = old_msg_silent; |
7 | 273 #ifdef FEAT_NETBEANS_INTG |
274 netbeansFireChanges = oldFire; | |
275 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
276 // 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
|
277 if (bt_help(curbuf)) |
7 | 278 fix_help_buffer(); |
279 } | |
280 else if (read_stdin) | |
281 { | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
282 int save_bin = curbuf->b_p_bin; |
7 | 283 |
284 /* | |
285 * First read the text in binary mode into the buffer. | |
286 * Then read from that same buffer and append at the end. This makes | |
287 * it possible to retry when 'fileformat' or 'fileencoding' was | |
288 * guessed wrong. | |
289 */ | |
290 curbuf->b_p_bin = TRUE; | |
291 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
|
292 (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
|
293 flags | (READ_NEW + READ_STDIN)); |
7 | 294 curbuf->b_p_bin = save_bin; |
295 if (retval == OK) | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
296 retval = read_buffer(TRUE, eap, flags); |
7 | 297 } |
298 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
299 // if first time loading this buffer, init b_chartab[] |
7 | 300 if (curbuf->b_flags & BF_NEVERLOADED) |
5438 | 301 { |
7 | 302 (void)buf_init_chartab(curbuf, FALSE); |
5440 | 303 #ifdef FEAT_CINDENT |
5438 | 304 parse_cino(curbuf); |
5440 | 305 #endif |
5438 | 306 } |
7 | 307 |
308 /* | |
309 * Set/reset the Changed flag first, autocmds may change the buffer. | |
310 * Apply the automatic commands, before processing the modelines. | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
311 * So the modelines have priority over autocommands. |
7 | 312 */ |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
313 // When reading stdin, the buffer contents always needs writing, so set |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
314 // the changed flag. Unless in readonly mode: "ls | gview -". |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
315 // When interrupted and 'cpoptions' contains 'i' set changed flag. |
1291 | 316 if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
317 || 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
|
318 #ifdef FEAT_EVAL |
7 | 319 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL) |
320 #endif | |
1291 | 321 ) |
7 | 322 changed(); |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
323 else if (retval == OK && !read_stdin && !read_fifo) |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
324 unchanged(curbuf, FALSE, TRUE); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
325 save_file_ff(curbuf); // keep this fileformat |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
326 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
327 // Set last_changedtick to avoid triggering a TextChanged autocommand right |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
328 // after it was added. |
13519
4a44c90dd671
patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
329 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
|
330 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
|
331 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
332 // require "!" to overwrite the file, because it wasn't read completely |
7 | 333 #ifdef FEAT_EVAL |
334 if (aborting()) | |
335 #else | |
336 if (got_int) | |
337 #endif | |
338 curbuf->b_flags |= BF_READERR; | |
339 | |
20 | 340 #ifdef FEAT_FOLDING |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
341 // Need to update automatic folding. Do this before the autocommands, |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
342 // they may use the fold info. |
20 | 343 foldUpdateAll(curwin); |
344 #endif | |
345 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
346 // need to set w_topline, unless some autocommand already did that. |
7 | 347 if (!(curwin->w_valid & VALID_TOPLINE)) |
348 { | |
349 curwin->w_topline = 1; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
350 #ifdef FEAT_DIFF |
7 | 351 curwin->w_topfill = 0; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
352 #endif |
7 | 353 } |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
354 #ifdef FEAT_EVAL |
7 | 355 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
|
356 #else |
7 | 357 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); |
358 #endif | |
359 | |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
360 if (retval == OK) |
7 | 361 { |
362 /* | |
363 * The autocommands may have changed the current buffer. Apply the | |
364 * modelines to the correct buffer, if it still exists and is loaded. | |
365 */ | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
366 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL) |
7 | 367 { |
368 aco_save_T aco; | |
369 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
370 // 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
|
371 aucmd_prepbuf(&aco, old_curbuf.br_buf); |
717 | 372 do_modelines(0); |
7 | 373 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED); |
374 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
375 #ifdef FEAT_EVAL |
7 | 376 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
|
377 &retval); |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
378 #else |
7 | 379 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
|
380 #endif |
7 | 381 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
382 // restore curwin/curbuf and a few other things |
7 | 383 aucmd_restbuf(&aco); |
384 } | |
385 } | |
386 | |
387 return retval; | |
388 } | |
389 | |
390 /* | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
391 * 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
|
392 */ |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
393 void |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
394 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
|
395 { |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
396 bufref->br_buf = buf; |
11531
e349dc7889f5
patch 8.0.0648: possible use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
397 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
|
398 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
|
399 } |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
400 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
401 /* |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
402 * 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
|
403 * 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
|
404 * 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
|
405 * 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
|
406 * 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
|
407 */ |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
408 int |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
409 bufref_valid(bufref_T *bufref) |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
410 { |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
411 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
|
412 ? 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
|
413 && 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
|
414 } |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
415 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
416 /* |
7 | 417 * 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
|
418 * This can be slow if there are many buffers, prefer using bufref_valid(). |
7 | 419 */ |
420 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
421 buf_valid(buf_T *buf) |
7 | 422 { |
423 buf_T *bp; | |
424 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
425 // Assume that we more often have a recent buffer, start with the last |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
426 // one. |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
427 FOR_ALL_BUFS_FROM_LAST(bp) |
7 | 428 if (bp == buf) |
429 return TRUE; | |
430 return FALSE; | |
431 } | |
432 | |
433 /* | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
434 * 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
|
435 */ |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
436 static hashtab_T buf_hashtab; |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
437 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
438 static void |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
439 buf_hashtab_add(buf_T *buf) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
440 { |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
441 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
|
442 if (hash_add(&buf_hashtab, buf->b_key) == FAIL) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
443 emsg(_("E931: Buffer cannot be registered")); |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
444 } |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
445 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
446 static void |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
447 buf_hashtab_remove(buf_T *buf) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
448 { |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
449 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
|
450 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
451 if (!HASHITEM_EMPTY(hi)) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
452 hash_remove(&buf_hashtab, hi); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
453 } |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
454 |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
455 /* |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
456 * Return TRUE when buffer "buf" can be unloaded. |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
457 * Give an error message and return FALSE when the buffer is locked or the |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
458 * screen is being redrawn and the buffer is in a window. |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
459 */ |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
460 static int |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
461 can_unload_buffer(buf_T *buf) |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
462 { |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
463 int can_unload = !buf->b_locked; |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
464 |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
465 if (can_unload && updating_screen) |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
466 { |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
467 win_T *wp; |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
468 |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
469 FOR_ALL_WINDOWS(wp) |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
470 if (wp->w_buffer == buf) |
14826
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
471 { |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
472 can_unload = FALSE; |
14826
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
473 break; |
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
474 } |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
475 } |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
476 if (!can_unload) |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
477 semsg(_("E937: Attempt to delete a buffer that is in use: %s"), |
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
478 buf->b_fname); |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
479 return can_unload; |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
480 } |
13720
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
481 |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
482 /* |
7 | 483 * Close the link to a buffer. |
484 * "action" is used when there is no longer a window for the buffer. | |
485 * It can be: | |
486 * 0 buffer becomes hidden | |
487 * DOBUF_UNLOAD buffer is unloaded | |
488 * DOBUF_DELETE buffer is unloaded and removed from buffer list | |
489 * DOBUF_WIPE buffer is unloaded and really deleted | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
490 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list |
7 | 491 * When doing all but the first one on the current buffer, the caller should |
492 * get a new buffer very soon! | |
493 * | |
494 * The 'bufhidden' option can force freeing and deleting. | |
3365 | 495 * |
496 * When "abort_if_last" is TRUE then do not close the buffer if autocommands | |
497 * cause there to be only one window with this buffer. e.g. when ":quit" is | |
498 * supposed to close the window but autocommands close all other windows. | |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
499 * |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
500 * When "ignore_abort" is TRUE don't abort even when aborting() returns TRUE. |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
501 * |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
502 * Return TRUE when we got to the end and b_nwindows was decremented. |
7 | 503 */ |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
504 int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
505 close_buffer( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
506 win_T *win, // if not NULL, set b_last_cursor |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
507 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
508 int action, |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
509 int abort_if_last, |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
510 int ignore_abort) |
7 | 511 { |
512 int is_curbuf; | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1883
diff
changeset
|
513 int nwindows; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
514 bufref_T bufref; |
10320
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10184
diff
changeset
|
515 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
|
516 win_T *the_curwin = curwin; |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
517 tabpage_T *the_curtab = curtab; |
7 | 518 int unload_buf = (action != 0); |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
519 int wipe_buf = (action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
520 int del_buf = (action == DOBUF_DEL || wipe_buf); |
7 | 521 |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
522 CHECK_CURBUF; |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
523 /* |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
524 * 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
|
525 * 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
|
526 * "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
|
527 */ |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
528 if (buf->b_p_bh[0] == 'd') // 'bufhidden' == "delete" |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
529 { |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
530 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
|
531 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
|
532 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
533 else if (buf->b_p_bh[0] == 'w') // 'bufhidden' == "wipe" |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
534 { |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
535 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
|
536 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
|
537 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
|
538 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
539 else if (buf->b_p_bh[0] == 'u') // 'bufhidden' == "unload" |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
540 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
|
541 |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
542 #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
|
543 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
|
544 { |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
545 CHECK_CURBUF; |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
546 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
|
547 { |
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
|
548 if (wipe_buf || unload_buf) |
13720
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
549 { |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
550 if (!can_unload_buffer(buf)) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
551 return FALSE; |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
552 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
553 // 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
|
554 free_terminal(buf); |
13720
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
555 } |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
556 else |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
557 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
558 // The job keeps running, hide the buffer. |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
559 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
|
560 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
|
561 } |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
562 } |
22987
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
563 else if (buf->b_p_bh[0] == 'h' && !del_buf) |
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
564 { |
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
565 // Hide a terminal buffer. |
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
566 unload_buf = FALSE; |
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
567 } |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
568 else |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
569 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
570 // A terminal buffer is wiped out if the job has finished. |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
571 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
|
572 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
|
573 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
|
574 } |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
575 CHECK_CURBUF; |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
576 } |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
577 #endif |
7 | 578 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
579 // Disallow deleting the buffer when it is locked (already being closed or |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
580 // halfway a command that relies on it). Unloading is allowed. |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
581 if ((del_buf || wipe_buf) && !can_unload_buffer(buf)) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
582 return FALSE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
583 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
584 // check no autocommands closed the window |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
585 if (win != NULL && win_valid_any_tab(win)) |
7 | 586 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
587 // Set b_last_cursor when closing the last window for the buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
588 // Remember the last cursor position and window options of the buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
589 // This used to be only for the current window, but then options like |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
590 // 'foldmethod' may be lost with a ":only" command. |
7 | 591 if (buf->b_nwindows == 1) |
592 set_last_cursor(win); | |
593 buflist_setfpos(buf, win, | |
594 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum, | |
595 win->w_cursor.col, TRUE); | |
596 } | |
597 | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
598 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
599 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
600 // When the buffer is no longer in a window, trigger BufWinLeave |
7 | 601 if (buf->b_nwindows == 1) |
602 { | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
603 ++buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
604 ++buf->b_locked_split; |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
605 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
|
606 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
607 && !bufref_valid(&bufref)) |
3365 | 608 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
609 // Autocommands deleted the buffer. |
3570 | 610 aucmd_abort: |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
611 emsg(_(e_auabort)); |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
612 return FALSE; |
3365 | 613 } |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
614 --buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
615 --buf->b_locked_split; |
3570 | 616 if (abort_if_last && one_window()) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
617 // Autocommands made this the only window. |
3570 | 618 goto aucmd_abort; |
7 | 619 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
620 // When the buffer becomes hidden, but is not unloaded, trigger |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
621 // BufHidden |
7 | 622 if (!unload_buf) |
623 { | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
624 ++buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
625 ++buf->b_locked_split; |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
626 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
|
627 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
628 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
629 // Autocommands deleted the buffer. |
3570 | 630 goto aucmd_abort; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
631 --buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
632 --buf->b_locked_split; |
3570 | 633 if (abort_if_last && one_window()) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
634 // Autocommands made this the only window. |
3570 | 635 goto aucmd_abort; |
7 | 636 } |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
637 #ifdef FEAT_EVAL |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
638 // autocmds may abort script processing |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
639 if (!ignore_abort && aborting()) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
640 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
641 #endif |
7 | 642 } |
10114
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
643 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
644 // If the buffer was in curwin and the window has changed, go back to that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
645 // window, if it still exists. This avoids that ":edit x" triggering a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
646 // "tabnext" BufUnload autocmd leaves a window behind without a buffer. |
10114
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
647 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
|
648 { |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
649 block_autocmds(); |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
650 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
|
651 unblock_autocmds(); |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
652 } |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
653 |
7 | 654 nwindows = buf->b_nwindows; |
655 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
656 // decrease the link count from windows (unless not in any window) |
7 | 657 if (buf->b_nwindows > 0) |
658 --buf->b_nwindows; | |
659 | |
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
|
660 #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
|
661 if (diffopt_hiddenoff() && !unload_buf && buf->b_nwindows == 0) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
662 diff_buf_delete(buf); // Clear 'diff' for hidden buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
663 #endif |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
664 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
665 // Return when a window is displaying the buffer or when it's not |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
666 // unloaded. |
7 | 667 if (buf->b_nwindows > 0 || !unload_buf) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
668 return FALSE; |
7 | 669 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
670 // Always remove the buffer when there is no file name. |
7 | 671 if (buf->b_ffname == NULL) |
672 del_buf = TRUE; | |
673 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
674 // When closing the current buffer stop Visual mode before freeing |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
675 // anything. |
10184
4669440016f2
commit https://github.com/vim/vim/commit/4930a76a0357f76a829eafe4985d04cf3ce0e9e0
Christian Brabandt <cb@256bit.org>
parents:
10156
diff
changeset
|
676 if (buf == curbuf && VIsual_active |
10156
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
677 #if defined(EXITFREE) |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
678 && !entered_free_all_mem |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
679 #endif |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
680 ) |
10154
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
681 end_visual_mode(); |
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
682 |
7 | 683 /* |
684 * Free all things allocated for this buffer. | |
685 * Also calls the "BufDelete" autocommands when del_buf is TRUE. | |
686 */ | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
687 // Remember if we are closing the current buffer. Restore the number of |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
688 // windows, so that autocommands in buf_freeall() don't get confused. |
7 | 689 is_curbuf = (buf == curbuf); |
690 buf->b_nwindows = nwindows; | |
691 | |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
692 buf_freeall(buf, (del_buf ? BFA_DEL : 0) |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
693 + (wipe_buf ? BFA_WIPE : 0) |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
694 + (ignore_abort ? BFA_IGNORE_ABORT : 0)); |
7 | 695 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
696 // 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
|
697 if (!bufref_valid(&bufref)) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
698 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
699 #ifdef FEAT_EVAL |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
700 // autocmds may abort script processing |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
701 if (!ignore_abort && aborting()) |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
702 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
703 #endif |
7 | 704 |
705 /* | |
706 * It's possible that autocommands change curbuf to the one being deleted. | |
707 * This might cause the previous curbuf to be deleted unexpectedly. But | |
708 * in some cases it's OK to delete the curbuf, because a new one is | |
709 * obtained anyway. Therefore only return if curbuf changed to the | |
710 * deleted buffer. | |
711 */ | |
712 if (buf == curbuf && !is_curbuf) | |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
713 return FALSE; |
9450
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
714 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
715 if (win_valid_any_tab(win) && win->w_buffer == buf) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
716 win->w_buffer = NULL; // make sure we don't use the buffer now |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
717 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
718 // Autocommands may have opened or closed windows for this buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
719 // Decrement the count for the close we do here. |
9450
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
720 if (buf->b_nwindows > 0) |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
721 --buf->b_nwindows; |
7 | 722 |
723 /* | |
724 * Remove the buffer from the list. | |
725 */ | |
726 if (wipe_buf) | |
727 { | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
728 if (action == DOBUF_WIPE_REUSE) |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
729 { |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
730 // we can re-use this buffer number, store it |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
731 if (buf_reuse.ga_itemsize == 0) |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
732 ga_init2(&buf_reuse, sizeof(int), 50); |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
733 if (ga_grow(&buf_reuse, 1) == OK) |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
734 ((int *)buf_reuse.ga_data)[buf_reuse.ga_len++] = buf->b_fnum; |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
735 } |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
736 if (buf->b_sfname != buf->b_ffname) |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
737 VIM_CLEAR(buf->b_sfname); |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
738 else |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
739 buf->b_sfname = NULL; |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
740 VIM_CLEAR(buf->b_ffname); |
7 | 741 if (buf->b_prev == NULL) |
742 firstbuf = buf->b_next; | |
743 else | |
744 buf->b_prev->b_next = buf->b_next; | |
745 if (buf->b_next == NULL) | |
746 lastbuf = buf->b_prev; | |
747 else | |
748 buf->b_next->b_prev = buf->b_prev; | |
749 free_buffer(buf); | |
750 } | |
751 else | |
752 { | |
753 if (del_buf) | |
754 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
755 // Free all internal variables and reset option values, to make |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
756 // ":bdel" compatible with Vim 5.7. |
7 | 757 free_buffer_stuff(buf, TRUE); |
758 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
759 // Make it look like a new buffer. |
7 | 760 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; |
761 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
762 // Init the options when loaded again. |
7 | 763 buf->b_p_initialized = FALSE; |
764 } | |
765 buf_clear_file(buf); | |
766 if (del_buf) | |
767 buf->b_p_bl = FALSE; | |
768 } | |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
769 // NOTE: at this point "curbuf" may be invalid! |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
770 return TRUE; |
7 | 771 } |
772 | |
773 /* | |
774 * Make buffer not contain a file. | |
775 */ | |
776 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
777 buf_clear_file(buf_T *buf) |
7 | 778 { |
779 buf->b_ml.ml_line_count = 1; | |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
780 unchanged(buf, TRUE, TRUE); |
7 | 781 buf->b_shortname = FALSE; |
782 buf->b_p_eol = TRUE; | |
783 buf->b_start_eol = TRUE; | |
784 buf->b_p_bomb = FALSE; | |
1352 | 785 buf->b_start_bomb = FALSE; |
7 | 786 buf->b_ml.ml_mfp = NULL; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
787 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer |
7 | 788 #ifdef FEAT_NETBEANS_INTG |
789 netbeans_deleted_all_lines(buf); | |
790 #endif | |
791 } | |
792 | |
793 /* | |
794 * 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
|
795 * 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
|
796 * flags: |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
797 * BFA_DEL buffer is going to be deleted |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
798 * BFA_WIPE buffer is going to be wiped out |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
799 * BFA_KEEP_UNDO do not free undo information |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
800 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE |
7 | 801 */ |
802 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
803 buf_freeall(buf_T *buf, int flags) |
7 | 804 { |
805 int is_curbuf = (buf == curbuf); | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
806 bufref_T bufref; |
10118
5d77565e6222
commit https://github.com/vim/vim/commit/030cddc7ec0c3d2fe3969140cd1b92b2f18633c0
Christian Brabandt <cb@256bit.org>
parents:
10114
diff
changeset
|
807 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
|
808 win_T *the_curwin = curwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
809 tabpage_T *the_curtab = curtab; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
810 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
811 // 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
|
812 ++buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
813 ++buf->b_locked_split; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
814 set_bufref(&bufref, buf); |
9106
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
815 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
|
816 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
817 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
|
818 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
819 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
820 // autocommands deleted the buffer |
9106
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
821 return; |
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
822 } |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
823 if ((flags & BFA_DEL) && buf->b_p_bl) |
7 | 824 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
825 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
|
826 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
827 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
828 // autocommands deleted the buffer |
7 | 829 return; |
830 } | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
831 if (flags & BFA_WIPE) |
7 | 832 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
833 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
|
834 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
835 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
836 // autocommands deleted the buffer |
7 | 837 return; |
838 } | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
839 --buf->b_locked; |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
840 --buf->b_locked_split; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
841 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
842 // If the buffer was in curwin and the window has changed, go back to that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
843 // window, if it still exists. This avoids that ":edit x" triggering a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
844 // "tabnext" BufUnload autocmd leaves a window behind without a buffer. |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
845 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
|
846 { |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
847 block_autocmds(); |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
848 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
|
849 unblock_autocmds(); |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
850 } |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
851 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
852 #ifdef FEAT_EVAL |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
853 // autocmds may abort script processing |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
854 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting()) |
7 | 855 return; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
856 #endif |
7 | 857 |
858 /* | |
859 * It's possible that autocommands change curbuf to the one being deleted. | |
860 * This might cause curbuf to be deleted unexpectedly. But in some cases | |
861 * it's OK to delete the curbuf, because a new one is obtained anyway. | |
862 * Therefore only return if curbuf changed to the deleted buffer. | |
863 */ | |
864 if (buf == curbuf && !is_curbuf) | |
865 return; | |
866 #ifdef FEAT_DIFF | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
867 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer. |
7 | 868 #endif |
3068 | 869 #ifdef FEAT_SYN_HL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
870 // Remove any ownsyntax, unless exiting. |
10118
5d77565e6222
commit https://github.com/vim/vim/commit/030cddc7ec0c3d2fe3969140cd1b92b2f18633c0
Christian Brabandt <cb@256bit.org>
parents:
10114
diff
changeset
|
871 if (curwin != NULL && curwin->w_buffer == buf) |
3182 | 872 reset_synblock(curwin); |
3068 | 873 #endif |
1187 | 874 |
875 #ifdef FEAT_FOLDING | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
876 // No folds in an empty buffer. |
1187 | 877 { |
878 win_T *win; | |
879 tabpage_T *tp; | |
880 | |
881 FOR_ALL_TAB_WINDOWS(tp, win) | |
882 if (win->w_buffer == buf) | |
883 clearFolding(win); | |
884 } | |
885 #endif | |
886 | |
7 | 887 #ifdef FEAT_TCL |
888 tcl_buffer_free(buf); | |
889 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
890 ml_close(buf, TRUE); // close and delete the memline/memfile |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
891 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
|
892 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
|
893 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
894 u_blockfree(buf); // free the memory allocated for undo |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
895 u_clearall(buf); // reset all undo information |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
896 } |
7 | 897 #ifdef FEAT_SYN_HL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
898 syntax_clear(&buf->b_s); // reset syntax info |
7 | 899 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18757
diff
changeset
|
900 #ifdef FEAT_PROP_POPUP |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
901 clear_buf_prop_types(buf); |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
902 #endif |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
903 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant |
7 | 904 } |
905 | |
906 /* | |
907 * Free a buffer structure and the things it contains related to the buffer | |
908 * itself (not the file, that must have been done already). | |
909 */ | |
910 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
911 free_buffer(buf_T *buf) |
7 | 912 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
913 ++buf_free_count; |
7 | 914 free_buffer_stuff(buf, TRUE); |
4287 | 915 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
916 // b:changedtick uses an item in buf_T, remove it now |
12630
560adb3eed8b
patch 8.0.1193: crash when wiping out a buffer after using getbufinfo()
Christian Brabandt <cb@256bit.org>
parents:
12572
diff
changeset
|
917 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di); |
4287 | 918 unref_var_dict(buf->b_vars); |
18225
6c3a8312486d
patch 8.1.2107: various memory leaks reported by asan
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
919 remove_listeners(buf); |
4287 | 920 #endif |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
921 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
922 lua_buffer_free(buf); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
923 #endif |
14 | 924 #ifdef FEAT_MZSCHEME |
925 mzscheme_buffer_free(buf); | |
926 #endif | |
7 | 927 #ifdef FEAT_PERL |
928 perl_buf_free(buf); | |
929 #endif | |
930 #ifdef FEAT_PYTHON | |
931 python_buffer_free(buf); | |
932 #endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
933 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
934 python3_buffer_free(buf); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
935 #endif |
7 | 936 #ifdef FEAT_RUBY |
937 ruby_buffer_free(buf); | |
938 #endif | |
9087
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
939 #ifdef FEAT_JOB_CHANNEL |
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
940 channel_buffer_free(buf); |
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
941 #endif |
11690
ce434212d682
patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents:
11531
diff
changeset
|
942 #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
|
943 free_terminal(buf); |
11690
ce434212d682
patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents:
11531
diff
changeset
|
944 #endif |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
945 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
946 vim_free(buf->b_prompt_text); |
16872
a836d122231a
patch 8.1.1437: code to handle callbacks is duplicated
Bram Moolenaar <Bram@vim.org>
parents:
16859
diff
changeset
|
947 free_callback(&buf->b_prompt_callback); |
18225
6c3a8312486d
patch 8.1.2107: various memory leaks reported by asan
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
948 free_callback(&buf->b_prompt_interrupt); |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
949 #endif |
9515
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
950 |
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
951 buf_hashtab_remove(buf); |
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
952 |
40 | 953 aubuflocal_remove(buf); |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
954 |
5816 | 955 if (autocmd_busy) |
956 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
957 // Do not free the buffer structure while autocommands are executing, |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
958 // it's still needed. Free it when autocmd_busy is reset. |
5816 | 959 buf->b_next = au_pending_free_buf; |
960 au_pending_free_buf = buf; | |
961 } | |
962 else | |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
963 { |
5816 | 964 vim_free(buf); |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
965 if (curbuf == buf) |
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
966 curbuf = NULL; // make clear it's not to be used |
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
967 } |
7 | 968 } |
969 | |
970 /* | |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
971 * 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
|
972 */ |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
973 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
|
974 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
|
975 { |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
976 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
|
977 |
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
978 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
|
979 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
|
980 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
|
981 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
|
982 |
10954
8ff62b4cffae
patch 8.0.0366: build fails with tiny features
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
983 #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
|
984 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
|
985 (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
|
986 #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
|
987 } |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
988 |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
989 /* |
7 | 990 * Free stuff in the buffer for ":bdel" and when wiping out the buffer. |
991 */ | |
992 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
993 free_buffer_stuff( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
994 buf_T *buf, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
995 int free_options) // free options as well |
7 | 996 { |
997 if (free_options) | |
998 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
999 clear_wininfo(buf); // including window-local options |
7 | 1000 free_buf_options(buf, TRUE); |
2620 | 1001 #ifdef FEAT_SPELL |
1002 ga_clear(&buf->b_s.b_langp); | |
1003 #endif | |
7 | 1004 } |
1005 #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
|
1006 { |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
1007 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
|
1008 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1009 vars_clear(&buf->b_vars->dv_hashtab); // free all buffer variables |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
1010 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
|
1011 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
|
1012 CHANGEDTICK(buf) = tick; |
19044
af795b6a2624
patch 8.2.0082: when reusing a buffer listeners are not cleared
Bram Moolenaar <Bram@vim.org>
parents:
19007
diff
changeset
|
1013 remove_listeners(buf); |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
1014 } |
7 | 1015 #endif |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16261
diff
changeset
|
1016 uc_clear(&buf->b_ucmds); // clear local user commands |
7 | 1017 #ifdef FEAT_SIGNS |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16261
diff
changeset
|
1018 buf_delete_signs(buf, (char_u *)"*"); // delete any signs |
7 | 1019 #endif |
1781 | 1020 #ifdef FEAT_NETBEANS_INTG |
2210 | 1021 netbeans_file_killed(buf); |
1781 | 1022 #endif |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1023 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1024 map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE); // clear local abbrevs |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
1025 VIM_CLEAR(buf->b_start_fenc); |
7 | 1026 } |
1027 | |
1028 /* | |
22713
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1029 * Free one wininfo_T. |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1030 */ |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1031 void |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1032 free_wininfo(wininfo_T *wip) |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1033 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1034 if (wip->wi_optset) |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1035 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1036 clear_winopt(&wip->wi_opt); |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1037 #ifdef FEAT_FOLDING |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1038 deleteFoldRecurse(&wip->wi_folds); |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1039 #endif |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1040 } |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1041 vim_free(wip); |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1042 } |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1043 |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1044 /* |
7 | 1045 * Free the b_wininfo list for buffer "buf". |
1046 */ | |
1047 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1048 clear_wininfo(buf_T *buf) |
7 | 1049 { |
1050 wininfo_T *wip; | |
1051 | |
1052 while (buf->b_wininfo != NULL) | |
1053 { | |
1054 wip = buf->b_wininfo; | |
1055 buf->b_wininfo = wip->wi_next; | |
22713
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1056 free_wininfo(wip); |
7 | 1057 } |
1058 } | |
1059 | |
1060 /* | |
1061 * Go to another buffer. Handles the result of the ATTENTION dialog. | |
1062 */ | |
1063 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1064 goto_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1065 exarg_T *eap, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1066 int start, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1067 int dir, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1068 int count) |
7 | 1069 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1070 bufref_T old_curbuf; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1071 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1072 set_bufref(&old_curbuf, curbuf); |
7 | 1073 |
1074 swap_exists_action = SEA_DIALOG; | |
1075 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO, | |
1076 start, dir, count, eap->forceit); | |
1077 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's') | |
1078 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1079 #if defined(FEAT_EVAL) |
24 | 1080 cleanup_T cs; |
1081 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1082 // Reset the error/interrupt/exception state here so that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1083 // aborting() returns FALSE when closing a window. |
24 | 1084 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1085 #endif |
24 | 1086 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1087 // Quitting means closing the split window, nothing else. |
7 | 1088 win_close(curwin, TRUE); |
1089 swap_exists_action = SEA_NONE; | |
602 | 1090 swap_exists_did_quit = TRUE; |
24 | 1091 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1092 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1093 // Restore the error/interrupt/exception state if not discarded by a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1094 // new aborting error, interrupt, or uncaught exception. |
24 | 1095 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1096 #endif |
7 | 1097 } |
1098 else | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1099 handle_swap_exists(&old_curbuf); |
7 | 1100 } |
1101 | |
1102 /* | |
1103 * Handle the situation of swap_exists_action being set. | |
1104 * It is allowed for "old_curbuf" to be NULL or invalid. | |
1105 */ | |
1106 void | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1107 handle_swap_exists(bufref_T *old_curbuf) |
7 | 1108 { |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1109 #if defined(FEAT_EVAL) |
24 | 1110 cleanup_T cs; |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1111 #endif |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1112 #ifdef FEAT_SYN_HL |
4139 | 1113 long old_tw = curbuf->b_p_tw; |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1114 #endif |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1115 buf_T *buf; |
20 | 1116 |
7 | 1117 if (swap_exists_action == SEA_QUIT) |
1118 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1119 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1120 // Reset the error/interrupt/exception state here so that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1121 // aborting() returns FALSE when closing a buffer. |
24 | 1122 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1123 #endif |
24 | 1124 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1125 // User selected Quit at ATTENTION prompt. Go back to previous |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1126 // buffer. If that buffer is gone or the same as the current one, |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1127 // open a new, empty buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1128 swap_exists_action = SEA_NONE; // don't want it again |
602 | 1129 swap_exists_did_quit = TRUE; |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1130 close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE, FALSE); |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1131 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
|
1132 || old_curbuf->br_buf == curbuf) |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1133 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
|
1134 else |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1135 buf = old_curbuf->br_buf; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1136 if (buf != NULL) |
4139 | 1137 { |
14593
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1138 int old_msg_silent = msg_silent; |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1139 |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1140 if (shortmess(SHM_FILEINFO)) |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1141 msg_silent = 1; // prevent fileinfo message |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1142 enter_buffer(buf); |
14593
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1143 // restore msg_silent, so that the command line will be shown |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1144 msg_silent = old_msg_silent; |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1145 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1146 #ifdef FEAT_SYN_HL |
4139 | 1147 if (old_tw != curbuf->b_p_tw) |
1148 check_colorcolumn(curwin); | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1149 #endif |
4139 | 1150 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1151 // If "old_curbuf" is NULL we are in big trouble here... |
24 | 1152 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1153 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1154 // Restore the error/interrupt/exception state if not discarded by a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1155 // new aborting error, interrupt, or uncaught exception. |
24 | 1156 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1157 #endif |
7 | 1158 } |
1159 else if (swap_exists_action == SEA_RECOVER) | |
1160 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1161 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1162 // Reset the error/interrupt/exception state here so that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1163 // aborting() returns FALSE when closing a buffer. |
24 | 1164 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1165 #endif |
24 | 1166 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1167 // User selected Recover at ATTENTION prompt. |
7 | 1168 msg_scroll = TRUE; |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16664
diff
changeset
|
1169 ml_recover(FALSE); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1170 msg_puts("\n"); // don't overwrite the last message |
7 | 1171 cmdline_row = msg_row; |
717 | 1172 do_modelines(0); |
24 | 1173 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1174 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1175 // Restore the error/interrupt/exception state if not discarded by a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1176 // new aborting error, interrupt, or uncaught exception. |
24 | 1177 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1178 #endif |
7 | 1179 } |
1180 swap_exists_action = SEA_NONE; | |
1181 } | |
1182 | |
1183 /* | |
5586 | 1184 * Make the current buffer empty. |
1185 * Used when it is wiped out and it's the last buffer. | |
1186 */ | |
1187 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1188 empty_curbuf( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1189 int close_others, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1190 int forceit, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1191 int action) |
5586 | 1192 { |
1193 int retval; | |
1194 buf_T *buf = curbuf; | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1195 bufref_T bufref; |
5586 | 1196 |
1197 if (action == DOBUF_UNLOAD) | |
1198 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1199 emsg(_("E90: Cannot unload last buffer")); |
5586 | 1200 return FAIL; |
1201 } | |
1202 | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1203 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1204 if (close_others) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1205 // Close any other windows on this buffer, then make it empty. |
5586 | 1206 close_windows(buf, TRUE); |
1207 | |
1208 setpcmark(); | |
1209 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, | |
1210 forceit ? ECMD_FORCEIT : 0, curwin); | |
1211 | |
1212 /* | |
1213 * do_ecmd() may create a new buffer, then we have to delete | |
1214 * the old one. But do_ecmd() may have done that already, check | |
1215 * if the buffer still exists. | |
1216 */ | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1217 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0) |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1218 close_buffer(NULL, buf, action, FALSE, FALSE); |
5586 | 1219 if (!close_others) |
1220 need_fileinfo = FALSE; | |
1221 return retval; | |
1222 } | |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
1223 |
7 | 1224 /* |
1225 * Implementation of the commands for the buffer list. | |
1226 * | |
1227 * action == DOBUF_GOTO go to specified buffer | |
1228 * action == DOBUF_SPLIT split window and go to specified buffer | |
1229 * action == DOBUF_UNLOAD unload specified buffer(s) | |
1230 * action == DOBUF_DEL delete specified buffer(s) from buffer list | |
1231 * action == DOBUF_WIPE delete specified buffer(s) really | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1232 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse" |
7 | 1233 * |
1234 * start == DOBUF_CURRENT go to "count" buffer from current buffer | |
1235 * start == DOBUF_FIRST go to "count" buffer from first buffer | |
1236 * start == DOBUF_LAST go to "count" buffer from last buffer | |
1237 * start == DOBUF_MOD go to "count" modified buffer from current buffer | |
1238 * | |
1239 * Return FAIL or OK. | |
1240 */ | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1241 static int |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1242 do_buffer_ext( |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1243 int action, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1244 int start, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1245 int dir, // FORWARD or BACKWARD |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1246 int count, // buffer number or number of buffers |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1247 int flags) // DOBUF_FORCEIT etc. |
7 | 1248 { |
1249 buf_T *buf; | |
1250 buf_T *bp; | |
1251 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1252 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); |
7 | 1253 |
1254 switch (start) | |
1255 { | |
1256 case DOBUF_FIRST: buf = firstbuf; break; | |
1257 case DOBUF_LAST: buf = lastbuf; break; | |
1258 default: buf = curbuf; break; | |
1259 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1260 if (start == DOBUF_MOD) // find next modified buffer |
7 | 1261 { |
1262 while (count-- > 0) | |
1263 { | |
1264 do | |
1265 { | |
1266 buf = buf->b_next; | |
1267 if (buf == NULL) | |
1268 buf = firstbuf; | |
1269 } | |
1270 while (buf != curbuf && !bufIsChanged(buf)); | |
1271 } | |
1272 if (!bufIsChanged(buf)) | |
1273 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1274 emsg(_("E84: No modified buffer found")); |
7 | 1275 return FAIL; |
1276 } | |
1277 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1278 else if (start == DOBUF_FIRST && count) // find specified buffer number |
7 | 1279 { |
1280 while (buf != NULL && buf->b_fnum != count) | |
1281 buf = buf->b_next; | |
1282 } | |
1283 else | |
1284 { | |
1285 bp = NULL; | |
1286 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf)) | |
1287 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1288 // remember the buffer where we start, we come back there when all |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1289 // buffers are unlisted. |
7 | 1290 if (bp == NULL) |
1291 bp = buf; | |
1292 if (dir == FORWARD) | |
1293 { | |
1294 buf = buf->b_next; | |
1295 if (buf == NULL) | |
1296 buf = firstbuf; | |
1297 } | |
1298 else | |
1299 { | |
1300 buf = buf->b_prev; | |
1301 if (buf == NULL) | |
1302 buf = lastbuf; | |
1303 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1304 // don't count unlisted buffers |
7 | 1305 if (unload || buf->b_p_bl) |
1306 { | |
1307 --count; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1308 bp = NULL; // use this buffer as new starting point |
7 | 1309 } |
1310 if (bp == buf) | |
1311 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1312 // back where we started, didn't find anything. |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1313 emsg(_("E85: There is no listed buffer")); |
7 | 1314 return FAIL; |
1315 } | |
1316 } | |
1317 } | |
1318 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1319 if (buf == NULL) // could not find it |
7 | 1320 { |
1321 if (start == DOBUF_FIRST) | |
1322 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1323 // don't warn when deleting |
7 | 1324 if (!unload) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1325 semsg(_(e_nobufnr), count); |
7 | 1326 } |
1327 else if (dir == FORWARD) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1328 emsg(_("E87: Cannot go beyond last buffer")); |
7 | 1329 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1330 emsg(_("E88: Cannot go before first buffer")); |
7 | 1331 return FAIL; |
1332 } | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1333 #ifdef FEAT_PROP_POPUP |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1334 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1335 # ifdef FEAT_TERMINAL |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1336 && !bt_terminal(buf) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1337 #endif |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1338 ) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1339 return OK; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1340 #endif |
7 | 1341 |
1342 #ifdef FEAT_GUI | |
1343 need_mouse_correct = TRUE; | |
1344 #endif | |
1345 | |
1346 /* | |
1347 * delete buffer buf from memory and/or the list | |
1348 */ | |
1349 if (unload) | |
1350 { | |
1351 int forward; | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1352 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1353 |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
1354 if (!can_unload_buffer(buf)) |
13720
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
1355 return FAIL; |
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
1356 |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1357 set_bufref(&bufref, buf); |
7 | 1358 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1359 // When unloading or deleting a buffer that's already unloaded and |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1360 // unlisted: fail silently. |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1361 if (action != DOBUF_WIPE && action != DOBUF_WIPE_REUSE |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1362 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl) |
7 | 1363 return FAIL; |
1364 | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1365 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf)) |
7 | 1366 { |
13553
04019fc3de93
patch 8.0.1650: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13535
diff
changeset
|
1367 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
1368 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) |
7 | 1369 { |
1370 dialog_changed(buf, FALSE); | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1371 if (!bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1372 // Autocommand deleted buffer, oops! It's not changed |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1373 // now. |
7 | 1374 return FAIL; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1375 // If it's still changed fail silently, the dialog already |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1376 // mentioned why it fails. |
36 | 1377 if (bufIsChanged(buf)) |
1378 return FAIL; | |
7 | 1379 } |
36 | 1380 else |
13553
04019fc3de93
patch 8.0.1650: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13535
diff
changeset
|
1381 #endif |
7 | 1382 { |
15490
98c35d312987
patch 8.1.0753: printf format not checked for semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1383 semsg(_("E89: No write since last change for buffer %d (add ! to override)"), |
7 | 1384 buf->b_fnum); |
1385 return FAIL; | |
1386 } | |
1387 } | |
1388 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1389 // 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
|
1390 if (buf == curbuf && VIsual_active) |
10154
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
1391 end_visual_mode(); |
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
1392 |
7 | 1393 /* |
1394 * If deleting the last (listed) buffer, make it empty. | |
1395 * The last (listed) buffer cannot be unloaded. | |
1396 */ | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
1397 FOR_ALL_BUFFERS(bp) |
7 | 1398 if (bp->b_p_bl && bp != buf) |
1399 break; | |
1400 if (bp == NULL && buf == curbuf) | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1401 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action); |
7 | 1402 |
1403 /* | |
1404 * If the deleted buffer is the current one, close the current window | |
671 | 1405 * (unless it's the only window). Repeat this so long as we end up in |
1406 * a window with this buffer. | |
7 | 1407 */ |
671 | 1408 while (buf == curbuf |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
1409 && !(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
|
1410 && (!ONE_WINDOW || first_tabpage->tp_next != NULL)) |
5302 | 1411 { |
1412 if (win_close(curwin, FALSE) == FAIL) | |
1413 break; | |
1414 } | |
7 | 1415 |
1416 /* | |
1417 * If the buffer to be deleted is not the current one, delete it here. | |
1418 */ | |
1419 if (buf != curbuf) | |
1420 { | |
671 | 1421 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
|
1422 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows <= 0) |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1423 close_buffer(NULL, buf, action, FALSE, FALSE); |
7 | 1424 return OK; |
1425 } | |
1426 | |
1427 /* | |
1428 * Deleting the current buffer: Need to find another buffer to go to. | |
5586 | 1429 * There should be another, otherwise it would have been handled |
1430 * 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
|
1431 * First use au_new_curbuf.br_buf, if it is valid. |
7 | 1432 * Then prefer the buffer we most recently visited. |
1433 * Else try to find one that is loaded, after the current buffer, | |
1434 * then before the current buffer. | |
1435 * Finally use any buffer. | |
1436 */ | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1437 buf = NULL; // selected buffer |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1438 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
|
1439 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
|
1440 buf = au_new_curbuf.br_buf; |
7 | 1441 #ifdef FEAT_JUMPLIST |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1442 else if (curwin->w_jumplistlen > 0) |
7 | 1443 { |
1444 int jumpidx; | |
1445 | |
1446 jumpidx = curwin->w_jumplistidx - 1; | |
1447 if (jumpidx < 0) | |
1448 jumpidx = curwin->w_jumplistlen - 1; | |
1449 | |
1450 forward = jumpidx; | |
1451 while (jumpidx != curwin->w_jumplistidx) | |
1452 { | |
1453 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum); | |
1454 if (buf != NULL) | |
1455 { | |
1456 if (buf == curbuf || !buf->b_p_bl) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1457 buf = NULL; // skip current and unlisted bufs |
7 | 1458 else if (buf->b_ml.ml_mfp == NULL) |
1459 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1460 // skip unloaded buf, but may keep it for later |
7 | 1461 if (bp == NULL) |
1462 bp = buf; | |
1463 buf = NULL; | |
1464 } | |
1465 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1466 if (buf != NULL) // found a valid buffer: stop searching |
7 | 1467 break; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1468 // advance to older entry in jump list |
7 | 1469 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen) |
1470 break; | |
1471 if (--jumpidx < 0) | |
1472 jumpidx = curwin->w_jumplistlen - 1; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1473 if (jumpidx == forward) // List exhausted for sure |
7 | 1474 break; |
1475 } | |
1476 } | |
1477 #endif | |
1478 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1479 if (buf == NULL) // No previous buffer, Try 2'nd approach |
7 | 1480 { |
1481 forward = TRUE; | |
1482 buf = curbuf->b_next; | |
1483 for (;;) | |
1484 { | |
1485 if (buf == NULL) | |
1486 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1487 if (!forward) // tried both directions |
7 | 1488 break; |
1489 buf = curbuf->b_prev; | |
1490 forward = FALSE; | |
1491 continue; | |
1492 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1493 // in non-help buffer, try to skip help buffers, and vv |
7 | 1494 if (buf->b_help == curbuf->b_help && buf->b_p_bl) |
1495 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1496 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer |
7 | 1497 break; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1498 if (bp == NULL) // remember unloaded buf for later |
7 | 1499 bp = buf; |
1500 } | |
1501 if (forward) | |
1502 buf = buf->b_next; | |
1503 else | |
1504 buf = buf->b_prev; | |
1505 } | |
1506 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1507 if (buf == NULL) // No loaded buffer, use unloaded one |
7 | 1508 buf = bp; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1509 if (buf == NULL) // No loaded buffer, find listed one |
7 | 1510 { |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
1511 FOR_ALL_BUFFERS(buf) |
7 | 1512 if (buf->b_p_bl && buf != curbuf) |
1513 break; | |
1514 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1515 if (buf == NULL) // Still no buffer, just take one |
7 | 1516 { |
1517 if (curbuf->b_next != NULL) | |
1518 buf = curbuf->b_next; | |
1519 else | |
1520 buf = curbuf->b_prev; | |
1521 } | |
1522 } | |
1523 | |
5586 | 1524 if (buf == NULL) |
1525 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1526 // Autocommands must have wiped out all other buffers. Only option |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1527 // now is to make the current buffer empty. |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1528 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action); |
5586 | 1529 } |
1530 | |
7 | 1531 /* |
1532 * make buf current buffer | |
1533 */ | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1534 if (action == DOBUF_SPLIT) // split window first |
7 | 1535 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1536 // If 'switchbuf' contains "useopen": jump to first window containing |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1537 // "buf" if one exists |
1618 | 1538 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf)) |
825 | 1539 return OK; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1540 // If 'switchbuf' contains "usetab": jump to first window in any tab |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1541 // page containing "buf" if one exists |
1618 | 1542 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf)) |
7 | 1543 return OK; |
1544 if (win_split(0, 0) == FAIL) | |
1545 return FAIL; | |
1546 } | |
1547 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1548 // go to current buffer - nothing to do |
7 | 1549 if (buf == curbuf) |
1550 return OK; | |
1551 | |
1552 /* | |
1553 * Check if the current buffer may be abandoned. | |
1554 */ | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1555 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT))) |
7 | 1556 { |
1557 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
1558 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) |
7 | 1559 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1560 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1561 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1562 set_bufref(&bufref, buf); |
7 | 1563 dialog_changed(curbuf, FALSE); |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1564 if (!bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1565 // Autocommand deleted buffer, oops! |
7 | 1566 return FAIL; |
1567 } | |
1568 if (bufIsChanged(curbuf)) | |
1569 #endif | |
1570 { | |
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
|
1571 no_write_message(); |
7 | 1572 return FAIL; |
1573 } | |
1574 } | |
1575 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1576 // Go to the other buffer. |
7 | 1577 set_curbuf(buf, action); |
1578 | |
1579 if (action == DOBUF_SPLIT) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1580 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind' |
7 | 1581 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1582 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1583 if (aborting()) // autocmds may abort script processing |
7 | 1584 return FAIL; |
1585 #endif | |
1586 | |
1587 return OK; | |
1588 } | |
1589 | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1590 int |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1591 do_buffer( |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1592 int action, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1593 int start, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1594 int dir, // FORWARD or BACKWARD |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1595 int count, // buffer number or number of buffers |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1596 int forceit) // TRUE when using ! |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1597 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1598 return do_buffer_ext(action, start, dir, count, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1599 forceit ? DOBUF_FORCEIT : 0); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1600 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1601 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1602 /* |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1603 * do_bufdel() - delete or unload buffer(s) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1604 * |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1605 * addr_count == 0: ":bdel" - delete current buffer |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1606 * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1607 * buffer "end_bnr", then any other arguments. |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1608 * addr_count == 2: ":N,N bdel" - delete buffers in range |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1609 * |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1610 * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1611 * DOBUF_DEL (":bdel") |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1612 * |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1613 * Returns error message or NULL |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1614 */ |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1615 char * |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1616 do_bufdel( |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1617 int command, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1618 char_u *arg, // pointer to extra arguments |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1619 int addr_count, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1620 int start_bnr, // first buffer number in a range |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1621 int end_bnr, // buffer nr or last buffer nr in a range |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1622 int forceit) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1623 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1624 int do_current = 0; // delete current buffer? |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1625 int deleted = 0; // number of buffers deleted |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1626 char *errormsg = NULL; // return value |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1627 int bnr; // buffer number |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1628 char_u *p; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1629 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1630 if (addr_count == 0) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1631 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1632 (void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1633 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1634 else |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1635 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1636 if (addr_count == 2) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1637 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1638 if (*arg) // both range and argument is not allowed |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1639 return ex_errmsg(e_trailing_arg, arg); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1640 bnr = start_bnr; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1641 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1642 else // addr_count == 1 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1643 bnr = end_bnr; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1644 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1645 for ( ;!got_int; ui_breakcheck()) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1646 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1647 /* |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1648 * Delete the current buffer last, otherwise when the |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1649 * current buffer is deleted, the next buffer becomes |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1650 * the current one and will be loaded, which may then |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1651 * also be deleted, etc. |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1652 */ |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1653 if (bnr == curbuf->b_fnum) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1654 do_current = bnr; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1655 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, (int)bnr, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1656 DOBUF_NOPOPUP | (forceit ? DOBUF_FORCEIT : 0)) == OK) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1657 ++deleted; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1658 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1659 /* |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1660 * find next buffer number to delete/unload |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1661 */ |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1662 if (addr_count == 2) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1663 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1664 if (++bnr > end_bnr) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1665 break; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1666 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1667 else // addr_count == 1 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1668 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1669 arg = skipwhite(arg); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1670 if (*arg == NUL) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1671 break; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1672 if (!VIM_ISDIGIT(*arg)) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1673 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1674 p = skiptowhite_esc(arg); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1675 bnr = buflist_findpat(arg, p, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1676 command == DOBUF_WIPE || command == DOBUF_WIPE_REUSE, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1677 FALSE, FALSE); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1678 if (bnr < 0) // failed |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1679 break; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1680 arg = p; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1681 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1682 else |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1683 bnr = getdigits(&arg); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1684 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1685 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1686 if (!got_int && do_current && do_buffer(command, DOBUF_FIRST, |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1687 FORWARD, do_current, forceit) == OK) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1688 ++deleted; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1689 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1690 if (deleted == 0) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1691 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1692 if (command == DOBUF_UNLOAD) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1693 STRCPY(IObuff, _("E515: No buffers were unloaded")); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1694 else if (command == DOBUF_DEL) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1695 STRCPY(IObuff, _("E516: No buffers were deleted")); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1696 else |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1697 STRCPY(IObuff, _("E517: No buffers were wiped out")); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1698 errormsg = (char *)IObuff; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1699 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1700 else if (deleted >= p_report) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1701 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1702 if (command == DOBUF_UNLOAD) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1703 smsg(NGETTEXT("%d buffer unloaded", |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1704 "%d buffers unloaded", deleted), deleted); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1705 else if (command == DOBUF_DEL) |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1706 smsg(NGETTEXT("%d buffer deleted", |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1707 "%d buffers deleted", deleted), deleted); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1708 else |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1709 smsg(NGETTEXT("%d buffer wiped out", |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1710 "%d buffers wiped out", deleted), deleted); |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1711 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1712 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1713 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1714 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1715 return errormsg; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1716 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1717 |
7 | 1718 /* |
1719 * Set current buffer to "buf". Executes autocommands and closes current | |
1720 * buffer. "action" tells how to close the current buffer: | |
1721 * DOBUF_GOTO free or hide it | |
1722 * DOBUF_SPLIT nothing | |
1723 * DOBUF_UNLOAD unload it | |
1724 * DOBUF_DEL delete it | |
1725 * DOBUF_WIPE wipe it out | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1726 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse" |
7 | 1727 */ |
1728 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1729 set_curbuf(buf_T *buf, int action) |
7 | 1730 { |
1731 buf_T *prevbuf; | |
1732 int unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1733 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); |
4139 | 1734 #ifdef FEAT_SYN_HL |
1735 long old_tw = curbuf->b_p_tw; | |
1736 #endif | |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1737 bufref_T newbufref; |
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1738 bufref_T prevbufref; |
7 | 1739 |
1740 setpcmark(); | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
1741 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1742 curwin->w_alt_fnum = curbuf->b_fnum; // remember alternate file |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1743 buflist_altfpos(curwin); // remember curpos |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1744 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1745 // Don't restart Select mode after switching to another buffer. |
7 | 1746 VIsual_reselect = FALSE; |
1747 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1748 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf" |
7 | 1749 prevbuf = curbuf; |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1750 set_bufref(&prevbufref, prevbuf); |
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1751 set_bufref(&newbufref, buf); |
7 | 1752 |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
1753 // Autocommands may delete the current buffer and/or the buffer we want to |
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
1754 // go to. In those cases don't close the buffer. |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
1755 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
|
1756 || (bufref_valid(&prevbufref) |
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1757 && bufref_valid(&newbufref) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1758 #ifdef FEAT_EVAL |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1759 && !aborting() |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1760 #endif |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1761 )) |
7 | 1762 { |
3068 | 1763 #ifdef FEAT_SYN_HL |
1764 if (prevbuf == curwin->w_buffer) | |
1765 reset_synblock(curwin); | |
1766 #endif | |
7 | 1767 if (unload) |
671 | 1768 close_windows(prevbuf, FALSE); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1769 #if defined(FEAT_EVAL) |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1770 if (bufref_valid(&prevbufref) && !aborting()) |
7 | 1771 #else |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1772 if (bufref_valid(&prevbufref)) |
7 | 1773 #endif |
815 | 1774 { |
3654 | 1775 win_T *previouswin = curwin; |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
19075
diff
changeset
|
1776 |
815 | 1777 if (prevbuf == curbuf) |
825 | 1778 u_sync(FALSE); |
7 | 1779 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf, |
1780 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
|
1781 && !buf_hide(prevbuf) |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1782 && !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1783 FALSE, FALSE); |
3654 | 1784 if (curwin != previouswin && win_valid(previouswin)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1785 // autocommands changed curwin, Grr! |
3654 | 1786 curwin = previouswin; |
815 | 1787 } |
7 | 1788 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1789 // An autocommand may have deleted "buf", already entered it (e.g., when |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1790 // it did ":bunload") or aborted the script processing. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1791 // If curwin->w_buffer is null, enter_buffer() will make it valid again |
3594 | 1792 if ((buf_valid(buf) && buf != curbuf |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1793 #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
|
1794 && !aborting() |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1795 #endif |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
1796 ) || curwin->w_buffer == NULL) |
4139 | 1797 { |
7 | 1798 enter_buffer(buf); |
4139 | 1799 #ifdef FEAT_SYN_HL |
1800 if (old_tw != curbuf->b_p_tw) | |
1801 check_colorcolumn(curwin); | |
1802 #endif | |
1803 } | |
7 | 1804 } |
1805 | |
1806 /* | |
1807 * Enter a new current buffer. | |
4139 | 1808 * Old curbuf must have been abandoned already! This also means "curbuf" may |
1809 * be pointing to freed memory. | |
7 | 1810 */ |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
1811 static void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1812 enter_buffer(buf_T *buf) |
7 | 1813 { |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1814 // Get the buffer in the current window. |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1815 curwin->w_buffer = buf; |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1816 curbuf = buf; |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1817 ++curbuf->b_nwindows; |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1818 |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1819 // Copy buffer and window local option values. Not for a help buffer. |
7 | 1820 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP); |
1821 if (!buf->b_help) | |
1822 get_winopts(buf); | |
1823 #ifdef FEAT_FOLDING | |
1824 else | |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1825 // Remove all folds in the window. |
7 | 1826 clearFolding(curwin); |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1827 foldUpdateAll(curwin); // update folds (later). |
7 | 1828 #endif |
1829 | |
1830 #ifdef FEAT_DIFF | |
672 | 1831 if (curwin->w_p_diff) |
1832 diff_buf_add(curbuf); | |
7 | 1833 #endif |
1834 | |
3068 | 1835 #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
|
1836 curwin->w_s = &(curbuf->b_s); |
3068 | 1837 #endif |
1838 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1839 // Cursor on first line by default. |
7 | 1840 curwin->w_cursor.lnum = 1; |
1841 curwin->w_cursor.col = 0; | |
1842 curwin->w_cursor.coladd = 0; | |
1843 curwin->w_set_curswant = TRUE; | |
1744 | 1844 curwin->w_topline_was_set = FALSE; |
7 | 1845 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1846 // mark cursor position as being invalid |
2091
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1847 curwin->w_valid = 0; |
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1848 |
14826
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
1849 buflist_setfpos(curbuf, curwin, curbuf->b_last_cursor.lnum, |
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
1850 curbuf->b_last_cursor.col, TRUE); |
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
1851 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1852 // Make sure the buffer is loaded. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1853 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file |
22 | 1854 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1855 // If there is no filetype, allow for detecting one. Esp. useful for |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1856 // ":ball" used in a autocommand. If there already is a filetype we |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1857 // might prefer to keep it. |
22 | 1858 if (*curbuf->b_p_ft == NUL) |
1859 did_filetype = FALSE; | |
1860 | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
1861 open_buffer(FALSE, NULL, 0); |
22 | 1862 } |
7 | 1863 else |
1864 { | |
16664
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1865 if (!msg_silent && !shortmess(SHM_FILEINFO)) |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1866 need_fileinfo = TRUE; // display file info after redraw |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1867 |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1868 // check if file changed |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1869 (void)buf_check_timestamp(curbuf, FALSE); |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1870 |
7 | 1871 curwin->w_topline = 1; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1872 #ifdef FEAT_DIFF |
7 | 1873 curwin->w_topfill = 0; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1874 #endif |
7 | 1875 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); |
1876 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); | |
1877 } | |
1878 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1879 // If autocommands did not change the cursor position, restore cursor lnum |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1880 // and possibly cursor col. |
7 | 1881 if (curwin->w_cursor.lnum == 1 && inindent(0)) |
1882 buflist_getfpos(); | |
1883 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1884 check_arg_idx(curwin); // check for valid arg_idx |
7 | 1885 #ifdef FEAT_TITLE |
1886 maketitle(); | |
1887 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1888 // when autocmds didn't change it |
1744 | 1889 if (curwin->w_topline == 1 && !curwin->w_topline_was_set) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1890 scroll_cursor_halfway(FALSE); // redisplay at correct position |
7 | 1891 |
33 | 1892 #ifdef FEAT_NETBEANS_INTG |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1893 // Send fileOpened event because we've changed buffers. |
2210 | 1894 netbeans_file_activated(curbuf); |
33 | 1895 #endif |
1896 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1897 // 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
|
1898 DO_AUTOCHDIR; |
7 | 1899 |
1900 #ifdef FEAT_KEYMAP | |
1901 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 1902 (void)keymap_init(); |
7 | 1903 #endif |
1185 | 1904 #ifdef FEAT_SPELL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1905 // May need to set the spell language. Can only do this after the buffer |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1906 // has been properly setup. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
1907 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
|
1908 (void)did_set_spelllang(curwin); |
1185 | 1909 #endif |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1910 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1911 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1912 #endif |
1185 | 1913 |
7 | 1914 redraw_later(NOT_VALID); |
1915 } | |
1916 | |
961 | 1917 #if defined(FEAT_AUTOCHDIR) || defined(PROTO) |
1918 /* | |
1919 * 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
|
1920 * Don't do this while still starting up. |
961 | 1921 */ |
1922 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1923 do_autochdir(void) |
961 | 1924 { |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9450
diff
changeset
|
1925 if ((starting == 0 || test_autochdir) |
8216
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1926 && curbuf->b_ffname != NULL |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1927 && vim_chdirfile(curbuf->b_ffname, "auto") == OK) |
961 | 1928 shorten_fnames(TRUE); |
1929 } | |
1930 #endif | |
1931 | |
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
|
1932 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
|
1933 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
|
1934 { |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1935 #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
|
1936 if (term_job_running(curbuf->b_term)) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1937 emsg(_("E948: Job still running (add ! to end the job)")); |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1938 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
|
1939 #endif |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1940 emsg(_("E37: No write since last change (add ! to override)")); |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1941 } |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1942 |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1943 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
|
1944 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
|
1945 { |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1946 #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
|
1947 if (term_job_running(buf->b_term)) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1948 emsg(_("E948: Job still running")); |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1949 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
|
1950 #endif |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1951 emsg(_("E37: No write since last change")); |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1952 } |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
1953 |
7 | 1954 /* |
1955 * functions for dealing with the buffer list | |
1956 */ | |
1957 | |
1958 /* | |
13782
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1959 * Return TRUE if the current buffer is empty, unnamed, unmodified and used in |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1960 * only one window. That means it can be re-used. |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1961 */ |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1962 int |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1963 curbuf_reusable(void) |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1964 { |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1965 return (curbuf != NULL |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1966 && curbuf->b_ffname == NULL |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1967 && curbuf->b_nwindows <= 1 |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1968 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY()) |
16261
2001ef982570
patch 8.1.1135: build failure for small version
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
1969 #if defined(FEAT_QUICKFIX) |
16259
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
1970 && !bt_quickfix(curbuf) |
16261
2001ef982570
patch 8.1.1135: build failure for small version
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
1971 #endif |
13782
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1972 && !curbufIsChanged()); |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1973 } |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1974 |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
1975 /* |
7 | 1976 * Add a file name to the buffer list. Return a pointer to the buffer. |
1977 * If the same file name already exists return a pointer to that buffer. | |
1978 * If it does not exist, or if fname == NULL, a new entry is created. | |
1979 * If (flags & BLN_CURBUF) is TRUE, may use current buffer. | |
1980 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list. | |
1981 * 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
|
1982 * 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
|
1983 * 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
|
1984 * if the buffer already exists. |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1985 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse". |
7 | 1986 * This is the ONLY way to create a new buffer. |
1987 */ | |
1988 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1989 buflist_new( |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1990 char_u *ffname_arg, // full path of fname or relative |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1991 char_u *sfname_arg, // short fname or NULL |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1992 linenr_T lnum, // preferred cursor line |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1993 int flags) // BLN_ defines |
7 | 1994 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1995 char_u *ffname = ffname_arg; |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1996 char_u *sfname = sfname_arg; |
7 | 1997 buf_T *buf; |
1998 #ifdef UNIX | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
1999 stat_T st; |
7 | 2000 #endif |
2001 | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2002 if (top_file_num == 1) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2003 hash_init(&buf_hashtab); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2004 |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2005 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname |
7 | 2006 |
2007 /* | |
2008 * If file name already exists in the list, update the entry. | |
2009 */ | |
2010 #ifdef UNIX | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2011 // On Unix we can use inode numbers when the file exists. Works better |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2012 // for hard links. |
7 | 2013 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0) |
2014 st.st_dev = (dev_T)-1; | |
2015 #endif | |
9149
18bbf31015c2
commit https://github.com/vim/vim/commit/b127cfd75f59e82580df395b6e2c009774644b16
Christian Brabandt <cb@256bit.org>
parents:
9106
diff
changeset
|
2016 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf = |
7 | 2017 #ifdef UNIX |
2018 buflist_findname_stat(ffname, &st) | |
2019 #else | |
2020 buflist_findname(ffname) | |
2021 #endif | |
2022 ) != NULL) | |
2023 { | |
2024 vim_free(ffname); | |
2025 if (lnum != 0) | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
2026 buflist_setfpos(buf, (flags & BLN_NOCURWIN) ? NULL : curwin, |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
2027 lnum, (colnr_T)0, FALSE); |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2028 |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2029 if ((flags & BLN_NOOPT) == 0) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2030 // copy the options now, if 'cpo' doesn't have 's' and not done |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2031 // already |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2032 buf_copy_options(buf, 0); |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2033 |
7 | 2034 if ((flags & BLN_LISTED) && !buf->b_p_bl) |
2035 { | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2036 bufref_T bufref; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2037 |
7 | 2038 buf->b_p_bl = TRUE; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2039 set_bufref(&bufref, buf); |
7 | 2040 if (!(flags & BLN_DUMMY)) |
5816 | 2041 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2042 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
|
2043 && !bufref_valid(&bufref)) |
5816 | 2044 return NULL; |
2045 } | |
7 | 2046 } |
2047 return buf; | |
2048 } | |
2049 | |
2050 /* | |
2051 * If the current buffer has no name and no contents, use the current | |
2052 * buffer. Otherwise: Need to allocate a new buffer structure. | |
2053 * | |
2054 * This is the ONLY place where a new buffer structure is allocated! | |
625 | 2055 * (A spell file buffer is allocated in spell.c, but that's not a normal |
2056 * buffer.) | |
7 | 2057 */ |
2058 buf = NULL; | |
13782
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
2059 if ((flags & BLN_CURBUF) && curbuf_reusable()) |
7 | 2060 { |
2061 buf = curbuf; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2062 // It's like this buffer is deleted. Watch out for autocommands that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2063 // change curbuf! If that happens, allocate a new buffer anyway. |
7 | 2064 if (curbuf->b_p_bl) |
2065 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); | |
2066 if (buf == curbuf) | |
2067 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
|
2068 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2069 if (aborting()) // autocmds may abort script processing |
19816
f37028184d6a
patch 8.2.0464: typos and other small problems
Bram Moolenaar <Bram@vim.org>
parents:
19629
diff
changeset
|
2070 { |
f37028184d6a
patch 8.2.0464: typos and other small problems
Bram Moolenaar <Bram@vim.org>
parents:
19629
diff
changeset
|
2071 vim_free(ffname); |
7 | 2072 return NULL; |
19816
f37028184d6a
patch 8.2.0464: typos and other small problems
Bram Moolenaar <Bram@vim.org>
parents:
19629
diff
changeset
|
2073 } |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2074 #endif |
7 | 2075 if (buf == curbuf) |
2076 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2077 // Make sure 'bufhidden' and 'buftype' are empty |
7 | 2078 clear_string_option(&buf->b_p_bh); |
2079 clear_string_option(&buf->b_p_bt); | |
2080 } | |
2081 } | |
2082 if (buf != curbuf || curbuf == NULL) | |
2083 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
2084 buf = ALLOC_CLEAR_ONE(buf_T); |
7 | 2085 if (buf == NULL) |
2086 { | |
2087 vim_free(ffname); | |
2088 return NULL; | |
2089 } | |
4287 | 2090 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2091 // init b: variables |
4287 | 2092 buf->b_vars = dict_alloc(); |
2093 if (buf->b_vars == NULL) | |
2094 { | |
2095 vim_free(ffname); | |
2096 vim_free(buf); | |
2097 return NULL; | |
2098 } | |
2099 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE); | |
2100 #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
|
2101 init_changedtick(buf); |
7 | 2102 } |
2103 | |
2104 if (ffname != NULL) | |
2105 { | |
2106 buf->b_ffname = ffname; | |
2107 buf->b_sfname = vim_strsave(sfname); | |
2108 } | |
2109 | |
2110 clear_wininfo(buf); | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
2111 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T); |
7 | 2112 |
2113 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL)) | |
2114 || buf->b_wininfo == NULL) | |
2115 { | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2116 if (buf->b_sfname != buf->b_ffname) |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2117 VIM_CLEAR(buf->b_sfname); |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2118 else |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2119 buf->b_sfname = NULL; |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
2120 VIM_CLEAR(buf->b_ffname); |
7 | 2121 if (buf != curbuf) |
2122 free_buffer(buf); | |
2123 return NULL; | |
2124 } | |
2125 | |
2126 if (buf == curbuf) | |
2127 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2128 // 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
|
2129 buf_freeall(buf, 0); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2130 if (buf != curbuf) // autocommands deleted the buffer! |
7 | 2131 return NULL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2132 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2133 if (aborting()) // autocmds may abort script processing |
7 | 2134 return NULL; |
2135 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2136 free_buffer_stuff(buf, FALSE); // delete local variables et al. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2137 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2138 // Init the options. |
3925 | 2139 buf->b_p_initialized = FALSE; |
2140 buf_copy_options(buf, BCO_ENTER); | |
2141 | |
7 | 2142 #ifdef FEAT_KEYMAP |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2143 // need to reload lmaps and set b:keymap_name |
7 | 2144 curbuf->b_kmap_state |= KEYMAP_INIT; |
2145 #endif | |
2146 } | |
2147 else | |
2148 { | |
2149 /* | |
2150 * put new buffer at the end of the buffer list | |
2151 */ | |
2152 buf->b_next = NULL; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2153 if (firstbuf == NULL) // buffer list is empty |
7 | 2154 { |
2155 buf->b_prev = NULL; | |
2156 firstbuf = buf; | |
2157 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2158 else // append new buffer at end of list |
7 | 2159 { |
2160 lastbuf->b_next = buf; | |
2161 buf->b_prev = lastbuf; | |
2162 } | |
2163 lastbuf = buf; | |
2164 | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2165 if ((flags & BLN_REUSE) && buf_reuse.ga_len > 0) |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2166 { |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2167 // Recycle a previously used buffer number. Used for buffers which |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2168 // are normally hidden, e.g. in a popup window. Avoids that the |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2169 // buffer number grows rapidly. |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2170 --buf_reuse.ga_len; |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2171 buf->b_fnum = ((int *)buf_reuse.ga_data)[buf_reuse.ga_len]; |
18864
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2172 |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2173 // Move buffer to the right place in the buffer list. |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2174 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2175 { |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2176 buf_T *prev = buf->b_prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2177 |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2178 prev->b_next = buf->b_next; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2179 if (prev->b_next != NULL) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2180 prev->b_next->b_prev = prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2181 buf->b_next = prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2182 buf->b_prev = prev->b_prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2183 if (buf->b_prev != NULL) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2184 buf->b_prev->b_next = buf; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2185 prev->b_prev = buf; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2186 if (lastbuf == buf) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2187 lastbuf = prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2188 if (firstbuf == prev) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2189 firstbuf = buf; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2190 } |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2191 } |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2192 else |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2193 buf->b_fnum = top_file_num++; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2194 if (top_file_num < 0) // wrap around (may cause duplicates) |
7 | 2195 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
2196 emsg(_("W14: Warning: List of file names overflow")); |
22742
f7f2d73ff85e
patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents:
22721
diff
changeset
|
2197 if (emsg_silent == 0 && !in_assert_fails) |
7 | 2198 { |
2199 out_flush(); | |
18642
bbea1f108187
patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents:
18546
diff
changeset
|
2200 ui_delay(3001L, TRUE); // make sure it is noticed |
7 | 2201 } |
2202 top_file_num = 1; | |
2203 } | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2204 buf_hashtab_add(buf); |
7 | 2205 |
2206 /* | |
2207 * Always copy the options from the current buffer. | |
2208 */ | |
2209 buf_copy_options(buf, BCO_ALWAYS); | |
2210 } | |
2211 | |
2212 buf->b_wininfo->wi_fpos.lnum = lnum; | |
2213 buf->b_wininfo->wi_win = curwin; | |
2214 | |
126 | 2215 #ifdef FEAT_SYN_HL |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2216 hash_init(&buf->b_s.b_keywtab); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2217 hash_init(&buf->b_s.b_keywtab_ic); |
7 | 2218 #endif |
2219 | |
2220 buf->b_fname = buf->b_sfname; | |
2221 #ifdef UNIX | |
2222 if (st.st_dev == (dev_T)-1) | |
1873 | 2223 buf->b_dev_valid = FALSE; |
7 | 2224 else |
2225 { | |
1873 | 2226 buf->b_dev_valid = TRUE; |
7 | 2227 buf->b_dev = st.st_dev; |
2228 buf->b_ino = st.st_ino; | |
2229 } | |
2230 #endif | |
2231 buf->b_u_synced = TRUE; | |
2232 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; | |
42 | 2233 if (flags & BLN_DUMMY) |
2234 buf->b_flags |= BF_DUMMY; | |
7 | 2235 buf_clear_file(buf); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2236 clrallmarks(buf); // clear marks |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2237 fmarks_check_names(buf); // check file marks for this file |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2238 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted' |
7 | 2239 if (!(flags & BLN_DUMMY)) |
2240 { | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2241 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2242 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2243 // Tricky: these autocommands may change the buffer list. They could |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2244 // also split the window with re-using the one empty buffer. This may |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2245 // 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
|
2246 set_bufref(&bufref, buf); |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2247 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
|
2248 && !bufref_valid(&bufref)) |
5816 | 2249 return NULL; |
7 | 2250 if (flags & BLN_LISTED) |
5816 | 2251 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2252 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
|
2253 && !bufref_valid(&bufref)) |
5816 | 2254 return NULL; |
2255 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2256 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2257 if (aborting()) // autocmds may abort script processing |
7 | 2258 return NULL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2259 #endif |
7 | 2260 } |
2261 | |
2262 return buf; | |
2263 } | |
2264 | |
2265 /* | |
2266 * Free the memory for the options of a buffer. | |
2267 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and | |
2268 * 'fileencoding'. | |
2269 */ | |
2270 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2271 free_buf_options( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2272 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2273 int free_p_ff) |
7 | 2274 { |
2275 if (free_p_ff) | |
2276 { | |
2277 clear_string_option(&buf->b_p_fenc); | |
2278 clear_string_option(&buf->b_p_ff); | |
2279 clear_string_option(&buf->b_p_bh); | |
2280 clear_string_option(&buf->b_p_bt); | |
2281 } | |
2282 #ifdef FEAT_FIND_ID | |
2283 clear_string_option(&buf->b_p_def); | |
2284 clear_string_option(&buf->b_p_inc); | |
2285 # ifdef FEAT_EVAL | |
2286 clear_string_option(&buf->b_p_inex); | |
2287 # endif | |
2288 #endif | |
2289 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL) | |
2290 clear_string_option(&buf->b_p_inde); | |
2291 clear_string_option(&buf->b_p_indk); | |
2292 #endif | |
788 | 2293 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
2294 clear_string_option(&buf->b_p_bexpr); | |
2295 #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
|
2296 #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
|
2297 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
|
2298 #endif |
10678
c647f01d6dbd
patch 8.0.0229: local 'formatprg' option value leaks
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
2299 clear_string_option(&buf->b_p_fp); |
667 | 2300 #if defined(FEAT_EVAL) |
2301 clear_string_option(&buf->b_p_fex); | |
2302 #endif | |
7 | 2303 #ifdef FEAT_CRYPT |
2304 clear_string_option(&buf->b_p_key); | |
2305 #endif | |
2306 clear_string_option(&buf->b_p_kp); | |
2307 clear_string_option(&buf->b_p_mps); | |
2308 clear_string_option(&buf->b_p_fo); | |
41 | 2309 clear_string_option(&buf->b_p_flp); |
7 | 2310 clear_string_option(&buf->b_p_isk); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2311 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2312 clear_string_option(&buf->b_p_vsts); |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
2313 vim_free(buf->b_p_vsts_nopaste); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2314 buf->b_p_vsts_nopaste = NULL; |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15858
diff
changeset
|
2315 vim_free(buf->b_p_vsts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2316 buf->b_p_vsts_array = NULL; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2317 clear_string_option(&buf->b_p_vts); |
15858
3a45b89639fb
patch 8.1.0936: may leak memory when using 'vartabstop'
Bram Moolenaar <Bram@vim.org>
parents:
15794
diff
changeset
|
2318 VIM_CLEAR(buf->b_p_vts_array); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2319 #endif |
7 | 2320 #ifdef FEAT_KEYMAP |
2321 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
|
2322 keymap_clear(&buf->b_kmap_ga); |
7 | 2323 ga_clear(&buf->b_kmap_ga); |
2324 #endif | |
2325 clear_string_option(&buf->b_p_com); | |
2326 #ifdef FEAT_FOLDING | |
2327 clear_string_option(&buf->b_p_cms); | |
2328 #endif | |
2329 clear_string_option(&buf->b_p_nf); | |
2330 #ifdef FEAT_SYN_HL | |
2331 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
|
2332 clear_string_option(&buf->b_s.b_syn_isk); |
737 | 2333 #endif |
2334 #ifdef FEAT_SPELL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2335 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
|
2336 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
|
2337 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
|
2338 buf->b_s.b_cap_prog = NULL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2339 clear_string_option(&buf->b_s.b_p_spl); |
20802
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20599
diff
changeset
|
2340 clear_string_option(&buf->b_s.b_p_spo); |
7 | 2341 #endif |
2342 #ifdef FEAT_SEARCHPATH | |
2343 clear_string_option(&buf->b_p_sua); | |
2344 #endif | |
2345 clear_string_option(&buf->b_p_ft); | |
2346 #ifdef FEAT_CINDENT | |
2347 clear_string_option(&buf->b_p_cink); | |
2348 clear_string_option(&buf->b_p_cino); | |
2349 #endif | |
2350 #if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT) | |
2351 clear_string_option(&buf->b_p_cinw); | |
2352 #endif | |
2353 clear_string_option(&buf->b_p_cpt); | |
12 | 2354 #ifdef FEAT_COMPL_FUNC |
2355 clear_string_option(&buf->b_p_cfu); | |
502 | 2356 clear_string_option(&buf->b_p_ofu); |
12 | 2357 #endif |
7 | 2358 #ifdef FEAT_QUICKFIX |
2359 clear_string_option(&buf->b_p_gp); | |
2360 clear_string_option(&buf->b_p_mp); | |
2361 clear_string_option(&buf->b_p_efm); | |
2362 #endif | |
2363 clear_string_option(&buf->b_p_ep); | |
2364 clear_string_option(&buf->b_p_path); | |
2365 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
|
2366 clear_string_option(&buf->b_p_tc); |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
2367 #ifdef FEAT_EVAL |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
2368 clear_string_option(&buf->b_p_tfu); |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
2369 #endif |
7 | 2370 clear_string_option(&buf->b_p_dict); |
2371 clear_string_option(&buf->b_p_tsr); | |
12 | 2372 #ifdef FEAT_TEXTOBJ |
2373 clear_string_option(&buf->b_p_qe); | |
2374 #endif | |
7 | 2375 buf->b_p_ar = -1; |
5446 | 2376 buf->b_p_ul = NO_LOCAL_UNDOLEVEL; |
5712 | 2377 #ifdef FEAT_LISP |
2378 clear_string_option(&buf->b_p_lw); | |
2379 #endif | |
6243 | 2380 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
|
2381 clear_string_option(&buf->b_p_menc); |
7 | 2382 } |
2383 | |
2384 /* | |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2385 * 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
|
2386 * 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
|
2387 * Also set cursor column to altfpos.col if 'startofline' is not set. |
7 | 2388 * if (options & GETF_SETMARK) call setpcmark() |
2389 * if (options & GETF_ALT) we are jumping to an alternate file. | |
2390 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping | |
2391 * | |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2392 * Return FAIL for failure, OK for success. |
7 | 2393 */ |
2394 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2395 buflist_getfile( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2396 int n, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2397 linenr_T lnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2398 int options, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2399 int forceit) |
7 | 2400 { |
2401 buf_T *buf; | |
2402 win_T *wp = NULL; | |
2403 pos_T *fpos; | |
2404 colnr_T col; | |
2405 | |
2406 buf = buflist_findnr(n); | |
2407 if (buf == NULL) | |
2408 { | |
2409 if ((options & GETF_ALT) && n == 0) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
2410 emsg(_(e_noalt)); |
7 | 2411 else |
15490
98c35d312987
patch 8.1.0753: printf format not checked for semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2412 semsg(_("E92: Buffer %d not found"), n); |
7 | 2413 return FAIL; |
2414 } | |
2415 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2416 // if alternate file is the current buffer, nothing to do |
7 | 2417 if (buf == curbuf) |
2418 return OK; | |
2419 | |
633 | 2420 if (text_locked()) |
631 | 2421 { |
633 | 2422 text_locked_msg(); |
7 | 2423 return FAIL; |
631 | 2424 } |
819 | 2425 if (curbuf_locked()) |
2426 return FAIL; | |
7 | 2427 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2428 // altfpos may be changed by getfile(), get it now |
7 | 2429 if (lnum == 0) |
2430 { | |
2431 fpos = buflist_findfpos(buf); | |
2432 lnum = fpos->lnum; | |
2433 col = fpos->col; | |
2434 } | |
2435 else | |
2436 col = 0; | |
2437 | |
2438 if (options & GETF_SWITCH) | |
2439 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2440 // If 'switchbuf' contains "useopen": jump to first window containing |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2441 // "buf" if one exists |
1618 | 2442 if (swb_flags & SWB_USEOPEN) |
7 | 2443 wp = buf_jump_open_win(buf); |
6843 | 2444 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2445 // If 'switchbuf' contains "usetab": jump to first window in any tab |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2446 // page containing "buf" if one exists |
1618 | 2447 if (wp == NULL && (swb_flags & SWB_USETAB)) |
825 | 2448 wp = buf_jump_open_tab(buf); |
6843 | 2449 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2450 // If 'switchbuf' contains "split", "vsplit" or "newtab" and the |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2451 // current buffer isn't empty: open new tab or window |
6843 | 2452 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
|
2453 && !BUFEMPTY()) |
7 | 2454 { |
6843 | 2455 if (swb_flags & SWB_NEWTAB) |
1618 | 2456 tabpage_new(); |
6843 | 2457 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0) |
2458 == FAIL) | |
7 | 2459 return FAIL; |
2583 | 2460 RESET_BINDING(curwin); |
7 | 2461 } |
2462 } | |
2463 | |
2464 ++RedrawingDisabled; | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11447
diff
changeset
|
2465 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
|
2466 (options & GETF_SETMARK), lnum, forceit))) |
7 | 2467 { |
2468 --RedrawingDisabled; | |
2469 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2470 // cursor is at to BOL and w_cursor.lnum is checked due to getfile() |
7 | 2471 if (!p_sol && col != 0) |
2472 { | |
2473 curwin->w_cursor.col = col; | |
2474 check_cursor_col(); | |
2475 curwin->w_cursor.coladd = 0; | |
2476 curwin->w_set_curswant = TRUE; | |
2477 } | |
2478 return OK; | |
2479 } | |
2480 --RedrawingDisabled; | |
2481 return FAIL; | |
2482 } | |
2483 | |
2484 /* | |
2485 * go to the last know line number for the current buffer | |
2486 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
2487 static void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2488 buflist_getfpos(void) |
7 | 2489 { |
2490 pos_T *fpos; | |
2491 | |
2492 fpos = buflist_findfpos(curbuf); | |
2493 | |
2494 curwin->w_cursor.lnum = fpos->lnum; | |
2495 check_cursor_lnum(); | |
2496 | |
2497 if (p_sol) | |
2498 curwin->w_cursor.col = 0; | |
2499 else | |
2500 { | |
2501 curwin->w_cursor.col = fpos->col; | |
2502 check_cursor_col(); | |
2503 curwin->w_cursor.coladd = 0; | |
2504 curwin->w_set_curswant = TRUE; | |
2505 } | |
2506 } | |
2507 | |
42 | 2508 #if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO) |
2509 /* | |
2510 * Find file in buffer list by name (it has to be for the current window). | |
2511 * Returns NULL if not found. | |
2512 */ | |
2513 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2514 buflist_findname_exp(char_u *fname) |
42 | 2515 { |
2516 char_u *ffname; | |
2517 buf_T *buf = NULL; | |
2518 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2519 // First make the name into a full path name |
42 | 2520 ffname = FullName_save(fname, |
2521 #ifdef UNIX | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2522 TRUE // force expansion, get rid of symbolic links |
42 | 2523 #else |
2524 FALSE | |
2525 #endif | |
2526 ); | |
2527 if (ffname != NULL) | |
2528 { | |
2529 buf = buflist_findname(ffname); | |
2530 vim_free(ffname); | |
2531 } | |
2532 return buf; | |
2533 } | |
2534 #endif | |
2535 | |
7 | 2536 /* |
2537 * Find file in buffer list by name (it has to be for the current window). | |
2538 * "ffname" must have a full path. | |
42 | 2539 * Skips dummy buffers. |
2540 * Returns NULL if not found. | |
7 | 2541 */ |
2542 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2543 buflist_findname(char_u *ffname) |
7 | 2544 { |
2545 #ifdef UNIX | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
2546 stat_T st; |
7 | 2547 |
2548 if (mch_stat((char *)ffname, &st) < 0) | |
2549 st.st_dev = (dev_T)-1; | |
2550 return buflist_findname_stat(ffname, &st); | |
2551 } | |
2552 | |
2553 /* | |
2554 * Same as buflist_findname(), but pass the stat structure to avoid getting it | |
2555 * twice for the same file. | |
42 | 2556 * Returns NULL if not found. |
7 | 2557 */ |
2558 static buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2559 buflist_findname_stat( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2560 char_u *ffname, |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
2561 stat_T *stp) |
7 | 2562 { |
2563 #endif | |
2564 buf_T *buf; | |
2565 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2566 // Start at the last buffer, expect to find a match sooner. |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
2567 FOR_ALL_BUFS_FROM_LAST(buf) |
42 | 2568 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname |
7 | 2569 #ifdef UNIX |
2570 , stp | |
2571 #endif | |
2572 )) | |
2573 return buf; | |
2574 return NULL; | |
2575 } | |
2576 | |
2577 /* | |
2578 * Find file in buffer list by a regexp pattern. | |
2579 * Return fnum of the found buffer. | |
2580 * Return < 0 for error. | |
2581 */ | |
2582 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2583 buflist_findpat( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2584 char_u *pattern, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2585 char_u *pattern_end, // pointer to first char after pattern |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2586 int unlisted, // find unlisted buffers |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2587 int diffmode UNUSED, // find diff-mode buffers only |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2588 int curtab_only) // find buffers in current tab only |
7 | 2589 { |
2590 buf_T *buf; | |
2591 int match = -1; | |
2592 int find_listed; | |
2593 char_u *pat; | |
2594 char_u *patend; | |
2595 int attempt; | |
2596 char_u *p; | |
2597 int toggledollar; | |
2598 | |
23711
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2599 // "%" is current file, "%%" or "#" is alternate file |
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2600 if ((pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#')) |
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2601 || (in_vim9script() && pattern_end == pattern + 2 |
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2602 && pattern[0] == '%' && pattern[1] == '%')) |
7 | 2603 { |
23711
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2604 if (*pattern == '#' || pattern_end == pattern + 2) |
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2605 match = curwin->w_alt_fnum; |
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2606 else |
7 | 2607 match = curbuf->b_fnum; |
2608 #ifdef FEAT_DIFF | |
2609 if (diffmode && !diff_mode_buf(buflist_findnr(match))) | |
2610 match = -1; | |
2611 #endif | |
2612 } | |
2613 | |
2614 /* | |
2615 * Try four ways of matching a listed buffer: | |
2616 * attempt == 0: without '^' or '$' (at any position) | |
1187 | 2617 * attempt == 1: with '^' at start (only at position 0) |
7 | 2618 * attempt == 2: with '$' at end (only match at end) |
2619 * attempt == 3: with '^' at start and '$' at end (only full match) | |
2620 * Repeat this for finding an unlisted buffer if there was no matching | |
2621 * listed buffer. | |
2622 */ | |
2623 else | |
2624 { | |
2625 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE); | |
2626 if (pat == NULL) | |
2627 return -1; | |
2628 patend = pat + STRLEN(pat) - 1; | |
2629 toggledollar = (patend > pat && *patend == '$'); | |
2630 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2631 // First try finding a listed buffer. If not found and "unlisted" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2632 // is TRUE, try finding an unlisted buffer. |
7 | 2633 find_listed = TRUE; |
2634 for (;;) | |
2635 { | |
2636 for (attempt = 0; attempt <= 3; ++attempt) | |
2637 { | |
6375 | 2638 regmatch_T regmatch; |
2639 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2640 // may add '^' and '$' |
7 | 2641 if (toggledollar) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2642 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$' |
7 | 2643 p = pat; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2644 if (*p == '^' && !(attempt & 1)) // add/remove '^' |
7 | 2645 ++p; |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22987
diff
changeset
|
2646 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0); |
6375 | 2647 if (regmatch.regprog == NULL) |
7 | 2648 { |
2649 vim_free(pat); | |
2650 return -1; | |
2651 } | |
2652 | |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
2653 FOR_ALL_BUFS_FROM_LAST(buf) |
7 | 2654 if (buf->b_p_bl == find_listed |
2655 #ifdef FEAT_DIFF | |
2656 && (!diffmode || diff_mode_buf(buf)) | |
2657 #endif | |
6375 | 2658 && buflist_match(®match, buf, FALSE) != NULL) |
7 | 2659 { |
4236 | 2660 if (curtab_only) |
2661 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2662 // Ignore the match if the buffer is not open in |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2663 // the current tab. |
4236 | 2664 win_T *wp; |
2665 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
2666 FOR_ALL_WINDOWS(wp) |
4236 | 2667 if (wp->w_buffer == buf) |
2668 break; | |
2669 if (wp == NULL) | |
2670 continue; | |
2671 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2672 if (match >= 0) // already found a match |
7 | 2673 { |
2674 match = -2; | |
2675 break; | |
2676 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2677 match = buf->b_fnum; // remember first match |
7 | 2678 } |
2679 | |
6375 | 2680 vim_regfree(regmatch.regprog); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2681 if (match >= 0) // found one match |
7 | 2682 break; |
2683 } | |
2684 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2685 // Only search for unlisted buffers if there was no match with |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2686 // a listed buffer. |
7 | 2687 if (!unlisted || !find_listed || match != -1) |
2688 break; | |
2689 find_listed = FALSE; | |
2690 } | |
2691 | |
2692 vim_free(pat); | |
2693 } | |
2694 | |
2695 if (match == -2) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
2696 semsg(_("E93: More than one match for %s"), pattern); |
7 | 2697 else if (match < 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
2698 semsg(_("E94: No matching buffer for %s"), pattern); |
7 | 2699 return match; |
2700 } | |
2701 | |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2702 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2703 typedef struct { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2704 buf_T *buf; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2705 char_u *match; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2706 } bufmatch_T; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2707 #endif |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2708 |
7 | 2709 /* |
2710 * Find all buffer names that match. | |
2711 * For command line expansion of ":buf" and ":sbuf". | |
2712 * Return OK if matches found, FAIL otherwise. | |
2713 */ | |
2714 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2715 ExpandBufnames( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2716 char_u *pat, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2717 int *num_file, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2718 char_u ***file, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2719 int options) |
7 | 2720 { |
2721 int count = 0; | |
2722 buf_T *buf; | |
2723 int round; | |
2724 char_u *p; | |
2725 int attempt; | |
170 | 2726 char_u *patc; |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2727 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2728 bufmatch_T *matches = NULL; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2729 #endif |
7 | 2730 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2731 *num_file = 0; // return values in case of FAIL |
7 | 2732 *file = NULL; |
2733 | |
19007
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2734 #ifdef FEAT_DIFF |
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2735 if ((options & BUF_DIFF_FILTER) && !curwin->w_p_diff) |
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2736 return FAIL; |
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2737 #endif |
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2738 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2739 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)". |
170 | 2740 if (*pat == '^') |
2741 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16740
diff
changeset
|
2742 patc = alloc(STRLEN(pat) + 11); |
170 | 2743 if (patc == NULL) |
2744 return FAIL; | |
2745 STRCPY(patc, "\\(^\\|[\\/]\\)"); | |
2746 STRCPY(patc + 11, pat + 1); | |
2747 } | |
2748 else | |
2749 patc = pat; | |
2750 | |
7 | 2751 /* |
170 | 2752 * attempt == 0: try match with '\<', match at start of word |
267 | 2753 * attempt == 1: try match without '\<', match anywhere |
7 | 2754 */ |
267 | 2755 for (attempt = 0; attempt <= 1; ++attempt) |
7 | 2756 { |
6375 | 2757 regmatch_T regmatch; |
2758 | |
267 | 2759 if (attempt > 0 && patc == pat) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2760 break; // there was no anchor, no need to try again |
6375 | 2761 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC); |
2762 if (regmatch.regprog == NULL) | |
7 | 2763 { |
170 | 2764 if (patc != pat) |
2765 vim_free(patc); | |
2766 return FAIL; | |
7 | 2767 } |
2768 | |
2769 /* | |
2770 * round == 1: Count the matches. | |
2771 * round == 2: Build the array to keep the matches. | |
2772 */ | |
2773 for (round = 1; round <= 2; ++round) | |
2774 { | |
2775 count = 0; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
2776 FOR_ALL_BUFFERS(buf) |
7 | 2777 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2778 if (!buf->b_p_bl) // skip unlisted buffers |
7 | 2779 continue; |
18987
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2780 #ifdef FEAT_DIFF |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2781 if (options & BUF_DIFF_FILTER) |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2782 // Skip buffers not suitable for |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2783 // :diffget or :diffput completion. |
19007
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2784 if (buf == curbuf || !diff_mode_buf(buf)) |
18987
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2785 continue; |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2786 #endif |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2787 |
6375 | 2788 p = buflist_match(®match, buf, p_wic); |
7 | 2789 if (p != NULL) |
2790 { | |
2791 if (round == 1) | |
2792 ++count; | |
2793 else | |
2794 { | |
2795 if (options & WILD_HOME_REPLACE) | |
2796 p = home_replace_save(buf, p); | |
2797 else | |
2798 p = vim_strsave(p); | |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2799 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2800 if (matches != NULL) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2801 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2802 matches[count].buf = buf; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2803 matches[count].match = p; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2804 count++; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2805 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2806 else |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2807 #endif |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2808 (*file)[count++] = p; |
7 | 2809 } |
2810 } | |
2811 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2812 if (count == 0) // no match found, break here |
7 | 2813 break; |
2814 if (round == 1) | |
2815 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
2816 *file = ALLOC_MULT(char_u *, count); |
7 | 2817 if (*file == NULL) |
2818 { | |
6375 | 2819 vim_regfree(regmatch.regprog); |
170 | 2820 if (patc != pat) |
2821 vim_free(patc); | |
7 | 2822 return FAIL; |
2823 } | |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2824 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2825 if (options & WILD_BUFLASTUSED) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2826 matches = ALLOC_MULT(bufmatch_T, count); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2827 #endif |
7 | 2828 } |
2829 } | |
6375 | 2830 vim_regfree(regmatch.regprog); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2831 if (count) // match(es) found, break here |
7 | 2832 break; |
2833 } | |
2834 | |
170 | 2835 if (patc != pat) |
2836 vim_free(patc); | |
2837 | |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2838 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2839 if (matches != NULL) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2840 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2841 int i; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2842 if (count > 1) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2843 qsort(matches, count, sizeof(bufmatch_T), buf_compare); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2844 // if the current buffer is first in the list, place it at the end |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2845 if (matches[0].buf == curbuf) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2846 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2847 for (i = 1; i < count; i++) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2848 (*file)[i-1] = matches[i].match; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2849 (*file)[count-1] = matches[0].match; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2850 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2851 else |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2852 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2853 for (i = 0; i < count; i++) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2854 (*file)[i] = matches[i].match; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2855 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2856 vim_free(matches); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2857 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2858 #endif |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2859 |
7 | 2860 *num_file = count; |
2861 return (count == 0 ? FAIL : OK); | |
2862 } | |
2863 | |
2864 /* | |
2865 * Check for a match on the file name for buffer "buf" with regprog "prog". | |
2866 */ | |
2867 static char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2868 buflist_match( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2869 regmatch_T *rmp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2870 buf_T *buf, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2871 int ignore_case) // when TRUE ignore case, when FALSE use 'fic' |
7 | 2872 { |
2873 char_u *match; | |
2874 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2875 // First try the short file name, then the long file name. |
6375 | 2876 match = fname_match(rmp, buf->b_sfname, ignore_case); |
7 | 2877 if (match == NULL) |
6375 | 2878 match = fname_match(rmp, buf->b_ffname, ignore_case); |
7 | 2879 |
2880 return match; | |
2881 } | |
2882 | |
2883 /* | |
2884 * Try matching the regexp in "prog" with file name "name". | |
2885 * Return "name" when there is a match, NULL when not. | |
2886 */ | |
2887 static char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2888 fname_match( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2889 regmatch_T *rmp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2890 char_u *name, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2891 int ignore_case) // when TRUE ignore case, when FALSE use 'fic' |
7 | 2892 { |
2893 char_u *match = NULL; | |
2894 char_u *p; | |
2895 | |
2896 if (name != NULL) | |
2897 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2898 // Ignore case when 'fileignorecase' or the argument is set. |
6375 | 2899 rmp->rm_ic = p_fic || ignore_case; |
2900 if (vim_regexec(rmp, name, (colnr_T)0)) | |
7 | 2901 match = name; |
2902 else | |
2903 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2904 // Replace $(HOME) with '~' and try matching again. |
7 | 2905 p = home_replace_save(NULL, name); |
6375 | 2906 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0)) |
7 | 2907 match = name; |
2908 vim_free(p); | |
2909 } | |
2910 } | |
2911 | |
2912 return match; | |
2913 } | |
2914 | |
2915 /* | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2916 * Find a file in the buffer list by buffer number. |
7 | 2917 */ |
2918 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2919 buflist_findnr(int nr) |
7 | 2920 { |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2921 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
|
2922 hashitem_T *hi; |
7 | 2923 |
2924 if (nr == 0) | |
2925 nr = curwin->w_alt_fnum; | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2926 sprintf((char *)key, "%x", nr); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2927 hi = hash_find(&buf_hashtab, key); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2928 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2929 if (!HASHITEM_EMPTY(hi)) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2930 return (buf_T *)(hi->hi_key |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2931 - ((unsigned)(curbuf->b_key - (char_u *)curbuf))); |
7 | 2932 return NULL; |
2933 } | |
2934 | |
2935 /* | |
2936 * Get name of file 'n' in the buffer list. | |
2937 * When the file has no name an empty string is returned. | |
2938 * home_replace() is used to shorten the file name (used for marks). | |
2939 * Returns a pointer to allocated memory, of NULL when failed. | |
2940 */ | |
2941 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2942 buflist_nr2name( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2943 int n, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2944 int fullname, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2945 int helptail) // for help buffers return tail only |
7 | 2946 { |
2947 buf_T *buf; | |
2948 | |
2949 buf = buflist_findnr(n); | |
2950 if (buf == NULL) | |
2951 return NULL; | |
2952 return home_replace_save(helptail ? buf : NULL, | |
2953 fullname ? buf->b_ffname : buf->b_fname); | |
2954 } | |
2955 | |
2956 /* | |
2957 * Set the "lnum" and "col" for the buffer "buf" and the current window. | |
2958 * When "copy_options" is TRUE save the local window option values. | |
2959 * When "lnum" is 0 only do the options. | |
2960 */ | |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
2961 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2962 buflist_setfpos( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2963 buf_T *buf, |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
2964 win_T *win, // may be NULL when using :badd |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2965 linenr_T lnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2966 colnr_T col, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2967 int copy_options) |
7 | 2968 { |
2969 wininfo_T *wip; | |
2970 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
2971 FOR_ALL_BUF_WININFO(buf, wip) |
7 | 2972 if (wip->wi_win == win) |
2973 break; | |
2974 if (wip == NULL) | |
2975 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2976 // allocate a new entry |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
2977 wip = ALLOC_CLEAR_ONE(wininfo_T); |
7 | 2978 if (wip == NULL) |
2979 return; | |
2980 wip->wi_win = win; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2981 if (lnum == 0) // set lnum even when it's 0 |
7 | 2982 lnum = 1; |
2983 } | |
2984 else | |
2985 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2986 // remove the entry from the list |
7 | 2987 if (wip->wi_prev) |
2988 wip->wi_prev->wi_next = wip->wi_next; | |
2989 else | |
2990 buf->b_wininfo = wip->wi_next; | |
2991 if (wip->wi_next) | |
2992 wip->wi_next->wi_prev = wip->wi_prev; | |
2993 if (copy_options && wip->wi_optset) | |
2994 { | |
2995 clear_winopt(&wip->wi_opt); | |
2996 #ifdef FEAT_FOLDING | |
2997 deleteFoldRecurse(&wip->wi_folds); | |
2998 #endif | |
2999 } | |
3000 } | |
3001 if (lnum != 0) | |
3002 { | |
3003 wip->wi_fpos.lnum = lnum; | |
3004 wip->wi_fpos.col = col; | |
3005 } | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3006 if (copy_options && win != NULL) |
7 | 3007 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3008 // Save the window-specific option values. |
7 | 3009 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt); |
3010 #ifdef FEAT_FOLDING | |
3011 wip->wi_fold_manual = win->w_fold_manual; | |
3012 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds); | |
3013 #endif | |
3014 wip->wi_optset = TRUE; | |
3015 } | |
3016 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3017 // insert the entry in front of the list |
7 | 3018 wip->wi_next = buf->b_wininfo; |
3019 buf->b_wininfo = wip; | |
3020 wip->wi_prev = NULL; | |
3021 if (wip->wi_next) | |
3022 wip->wi_next->wi_prev = wip; | |
3023 | |
3024 return; | |
3025 } | |
3026 | |
1743 | 3027 #ifdef FEAT_DIFF |
3028 /* | |
3029 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab | |
3030 * page. That's because a diff is local to a tab page. | |
3031 */ | |
3032 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3033 wininfo_other_tab_diff(wininfo_T *wip) |
1743 | 3034 { |
3035 win_T *wp; | |
3036 | |
3037 if (wip->wi_opt.wo_diff) | |
3038 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
3039 FOR_ALL_WINDOWS(wp) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3040 // return FALSE when it's a window in the current tab page, thus |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3041 // the buffer was in diff mode here |
1743 | 3042 if (wip->wi_win == wp) |
3043 return FALSE; | |
3044 return TRUE; | |
3045 } | |
3046 return FALSE; | |
3047 } | |
3048 #endif | |
3049 | |
7 | 3050 /* |
3051 * Find info for the current window in buffer "buf". | |
3052 * If not found, return the info for the most recently used window. | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3053 * When "need_options" is TRUE skip entries where wi_optset is FALSE. |
1743 | 3054 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in |
3055 * another tab page. | |
7 | 3056 * Returns NULL when there isn't any info. |
3057 */ | |
3058 static wininfo_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3059 find_wininfo( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3060 buf_T *buf, |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3061 int need_options, |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3062 int skip_diff_buffer UNUSED) |
7 | 3063 { |
3064 wininfo_T *wip; | |
3065 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
3066 FOR_ALL_BUF_WININFO(buf, wip) |
1743 | 3067 if (wip->wi_win == curwin |
3068 #ifdef FEAT_DIFF | |
3069 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip)) | |
3070 #endif | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3071 |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3072 && (!need_options || wip->wi_optset)) |
7 | 3073 break; |
1743 | 3074 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3075 // If no wininfo for curwin, use the first in the list (that doesn't have |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3076 // 'diff' set and is in another tab page). |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3077 // If "need_options" is TRUE skip entries that don't have options set, |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3078 // unless the window is editing "buf", so we can copy from the window |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3079 // itself. |
1743 | 3080 if (wip == NULL) |
3081 { | |
3082 #ifdef FEAT_DIFF | |
3083 if (skip_diff_buffer) | |
3084 { | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
3085 FOR_ALL_BUF_WININFO(buf, wip) |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3086 if (!wininfo_other_tab_diff(wip) |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3087 && (!need_options || wip->wi_optset |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3088 || (wip->wi_win != NULL |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3089 && wip->wi_win->w_buffer == buf))) |
1743 | 3090 break; |
3091 } | |
3092 else | |
3093 #endif | |
3094 wip = buf->b_wininfo; | |
3095 } | |
7 | 3096 return wip; |
3097 } | |
3098 | |
3099 /* | |
3100 * Reset the local window options to the values last used in this window. | |
3101 * If the buffer wasn't used in this window before, use the values from | |
3102 * the most recently used window. If the values were never set, use the | |
3103 * global values for the window. | |
3104 */ | |
3105 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3106 get_winopts(buf_T *buf) |
7 | 3107 { |
3108 wininfo_T *wip; | |
3109 | |
3110 clear_winopt(&curwin->w_onebuf_opt); | |
3111 #ifdef FEAT_FOLDING | |
3112 clearFolding(curwin); | |
3113 #endif | |
3114 | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3115 wip = find_wininfo(buf, TRUE, TRUE); |
13931
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3116 if (wip != NULL && wip->wi_win != NULL |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3117 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf) |
7 | 3118 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3119 // The buffer is currently displayed in the window: use the actual |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3120 // option values instead of the saved (possibly outdated) values. |
13931
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3121 win_T *wp = wip->wi_win; |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3122 |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3123 copy_winopt(&wp->w_onebuf_opt, &curwin->w_onebuf_opt); |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3124 #ifdef FEAT_FOLDING |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3125 curwin->w_fold_manual = wp->w_fold_manual; |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3126 curwin->w_foldinvalid = TRUE; |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3127 cloneFoldGrowArray(&wp->w_folds, &curwin->w_folds); |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3128 #endif |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3129 } |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3130 else if (wip != NULL && wip->wi_optset) |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3131 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3132 // the buffer was displayed in the current window earlier |
7 | 3133 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt); |
3134 #ifdef FEAT_FOLDING | |
3135 curwin->w_fold_manual = wip->wi_fold_manual; | |
3136 curwin->w_foldinvalid = TRUE; | |
3137 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds); | |
3138 #endif | |
3139 } | |
3140 else | |
3141 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt); | |
3142 | |
3143 #ifdef FEAT_FOLDING | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3144 // Set 'foldlevel' to 'foldlevelstart' if it's not negative. |
7 | 3145 if (p_fdls >= 0) |
3146 curwin->w_p_fdl = p_fdls; | |
3147 #endif | |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
3148 after_copy_winopt(curwin); |
7 | 3149 } |
3150 | |
3151 /* | |
3152 * Find the position (lnum and col) for the buffer 'buf' for the current | |
3153 * window. | |
3154 * Returns a pointer to no_position if no position is found. | |
3155 */ | |
3156 pos_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3157 buflist_findfpos(buf_T *buf) |
7 | 3158 { |
3159 wininfo_T *wip; | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15595
diff
changeset
|
3160 static pos_T no_position = {1, 0, 0}; |
7 | 3161 |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3162 wip = find_wininfo(buf, FALSE, FALSE); |
7 | 3163 if (wip != NULL) |
3164 return &(wip->wi_fpos); | |
3165 else | |
3166 return &no_position; | |
3167 } | |
3168 | |
3169 /* | |
3170 * Find the lnum for the buffer 'buf' for the current window. | |
3171 */ | |
3172 linenr_T | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3173 buflist_findlnum(buf_T *buf) |
7 | 3174 { |
3175 return buflist_findfpos(buf)->lnum; | |
3176 } | |
3177 | |
3178 /* | |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
3179 * List all known file names (for :files and :buffers command). |
7 | 3180 */ |
3181 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3182 buflist_list(exarg_T *eap) |
7 | 3183 { |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3184 buf_T *buf = firstbuf; |
7 | 3185 int len; |
3186 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
|
3187 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
|
3188 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
|
3189 #ifdef FEAT_TERMINAL |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3190 int job_running; |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3191 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
|
3192 #endif |
7 | 3193 |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3194 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3195 garray_T buflist; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3196 buf_T **buflist_data = NULL, **p; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3197 |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3198 if (vim_strchr(eap->arg, 't')) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3199 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3200 ga_init2(&buflist, sizeof(buf_T *), 50); |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
3201 FOR_ALL_BUFFERS(buf) |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3202 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3203 if (ga_grow(&buflist, 1) == OK) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3204 ((buf_T **)buflist.ga_data)[buflist.ga_len++] = buf; |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3205 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3206 |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3207 qsort(buflist.ga_data, (size_t)buflist.ga_len, |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3208 sizeof(buf_T *), buf_compare); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3209 |
18546
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3210 buflist_data = (buf_T **)buflist.ga_data; |
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3211 buf = *buflist_data; |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3212 } |
18546
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3213 p = buflist_data; |
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3214 |
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3215 for (; buf != NULL && !got_int; buf = buflist_data != NULL |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3216 ? (++p < buflist_data + buflist.ga_len ? *p : NULL) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3217 : buf->b_next) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3218 #else |
7 | 3219 for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next) |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3220 #endif |
7 | 3221 { |
13555
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3222 #ifdef FEAT_TERMINAL |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3223 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
|
3224 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
|
3225 #endif |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3226 // skip unlisted buffers, unless ! was used |
6945 | 3227 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u')) |
3228 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl) | |
3229 || (vim_strchr(eap->arg, '+') | |
3230 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf))) | |
3231 || (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
|
3232 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0)) |
6945 | 3233 || (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
|
3234 && (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
|
3235 #ifdef FEAT_TERMINAL |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3236 || (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
|
3237 && (!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
|
3238 || (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
|
3239 && (!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
|
3240 || (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
|
3241 && (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
|
3242 #endif |
6945 | 3243 || (vim_strchr(eap->arg, '-') && buf->b_p_ma) |
3244 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro) | |
3245 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR)) | |
3246 || (vim_strchr(eap->arg, '%') && buf != curbuf) | |
3247 || (vim_strchr(eap->arg, '#') | |
3248 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum))) | |
7 | 3249 continue; |
3250 if (buf_spname(buf) != NULL) | |
3839 | 3251 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1); |
7 | 3252 else |
3253 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
|
3254 if (message_filtered(NameBuff)) |
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3255 continue; |
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3256 |
12110
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3257 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
|
3258 : (bufIsChanged(buf) ? '+' : ' '); |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3259 #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
|
3260 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
|
3261 { |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
3262 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
|
3263 ro_char = '?'; |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
3264 else |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
3265 ro_char = 'R'; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3266 changed_char = ' '; // bufIsChanged() returns TRUE to avoid |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3267 // closing, but it's not actually changed. |
12110
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3268 } |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3269 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
|
3270 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
|
3271 else |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3272 #endif |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3273 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
|
3274 |
9943
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3275 msg_putchar('\n'); |
302 | 3276 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"", |
7 | 3277 buf->b_fnum, |
3278 buf->b_p_bl ? ' ' : 'u', | |
3279 buf == curbuf ? '%' : | |
3280 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '), | |
3281 buf->b_ml.ml_mfp == NULL ? ' ' : | |
3282 (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
|
3283 ro_char, |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3284 changed_char, |
300 | 3285 NameBuff); |
7572
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
3286 if (len > IOSIZE - 20) |
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
3287 len = IOSIZE - 20; |
7 | 3288 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3289 // put "line 999" in column 40 or after the file name |
7 | 3290 i = 40 - vim_strsize(IObuff); |
3291 do | |
3292 IObuff[len++] = ' '; | |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
16082
diff
changeset
|
3293 while (--i > 0 && len < IOSIZE - 18); |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3294 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3295 if (vim_strchr(eap->arg, 't') && buf->b_last_used) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3296 add_time(IObuff + len, (size_t)(IOSIZE - len), buf->b_last_used); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3297 else |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3298 #endif |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3299 vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len), |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3300 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum |
272 | 3301 : (long)buflist_findlnum(buf)); |
7 | 3302 msg_outtrans(IObuff); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3303 out_flush(); // output one line at a time |
7 | 3304 ui_breakcheck(); |
3305 } | |
18463
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3306 |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3307 #ifdef FEAT_VIMINFO |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3308 if (buflist_data) |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3309 ga_clear(&buflist); |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3310 #endif |
7 | 3311 } |
3312 | |
3313 /* | |
3314 * Get file name and line number for file 'fnum'. | |
3315 * Used by DoOneCmd() for translating '%' and '#'. | |
3316 * Used by insert_reg() and cmdline_paste() for '#' register. | |
3317 * Return FAIL if not found, OK for success. | |
3318 */ | |
3319 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3320 buflist_name_nr( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3321 int fnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3322 char_u **fname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3323 linenr_T *lnum) |
7 | 3324 { |
3325 buf_T *buf; | |
3326 | |
3327 buf = buflist_findnr(fnum); | |
3328 if (buf == NULL || buf->b_fname == NULL) | |
3329 return FAIL; | |
3330 | |
3331 *fname = buf->b_fname; | |
3332 *lnum = buflist_findlnum(buf); | |
3333 | |
3334 return OK; | |
3335 } | |
3336 | |
3337 /* | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3338 * Set the file name for "buf"' to "ffname_arg", short file name to |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3339 * "sfname_arg". |
7 | 3340 * The file name with the full path is also remembered, for when :cd is used. |
3341 * Returns FAIL for failure (file name already in use by other buffer) | |
3342 * OK otherwise. | |
3343 */ | |
3344 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3345 setfname( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3346 buf_T *buf, |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3347 char_u *ffname_arg, |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3348 char_u *sfname_arg, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3349 int message) // give message when buffer already exists |
7 | 3350 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3351 char_u *ffname = ffname_arg; |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3352 char_u *sfname = sfname_arg; |
42 | 3353 buf_T *obuf = NULL; |
7 | 3354 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3355 stat_T st; |
7 | 3356 #endif |
3357 | |
3358 if (ffname == NULL || *ffname == NUL) | |
3359 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3360 // Removing the name. |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3361 if (buf->b_sfname != buf->b_ffname) |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3362 VIM_CLEAR(buf->b_sfname); |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3363 else |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3364 buf->b_sfname = NULL; |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
3365 VIM_CLEAR(buf->b_ffname); |
7 | 3366 #ifdef UNIX |
3367 st.st_dev = (dev_T)-1; | |
3368 #endif | |
3369 } | |
3370 else | |
3371 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3372 fname_expand(buf, &ffname, &sfname); // will allocate ffname |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3373 if (ffname == NULL) // out of memory |
7 | 3374 return FAIL; |
3375 | |
3376 /* | |
3377 * if the file name is already used in another buffer: | |
3378 * - if the buffer is loaded, fail | |
3379 * - if the buffer is not loaded, delete it from the list | |
3380 */ | |
3381 #ifdef UNIX | |
3382 if (mch_stat((char *)ffname, &st) < 0) | |
3383 st.st_dev = (dev_T)-1; | |
42 | 3384 #endif |
3385 if (!(buf->b_flags & BF_DUMMY)) | |
3386 #ifdef UNIX | |
3387 obuf = buflist_findname_stat(ffname, &st); | |
7 | 3388 #else |
42 | 3389 obuf = buflist_findname(ffname); |
7 | 3390 #endif |
3391 if (obuf != NULL && obuf != buf) | |
3392 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3393 if (obuf->b_ml.ml_mfp != NULL) // it's loaded, fail |
7 | 3394 { |
3395 if (message) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
3396 emsg(_("E95: Buffer with this name already exists")); |
7 | 3397 vim_free(ffname); |
3398 return FAIL; | |
3399 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3400 // delete from the list |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
3401 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE); |
7 | 3402 } |
3403 sfname = vim_strsave(sfname); | |
3404 if (ffname == NULL || sfname == NULL) | |
3405 { | |
3406 vim_free(sfname); | |
3407 vim_free(ffname); | |
3408 return FAIL; | |
3409 } | |
3410 #ifdef USE_FNAME_CASE | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3411 fname_case(sfname, 0); // set correct case for short file name |
7 | 3412 #endif |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3413 if (buf->b_sfname != buf->b_ffname) |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3414 vim_free(buf->b_sfname); |
7 | 3415 vim_free(buf->b_ffname); |
3416 buf->b_ffname = ffname; | |
3417 buf->b_sfname = sfname; | |
3418 } | |
3419 buf->b_fname = buf->b_sfname; | |
3420 #ifdef UNIX | |
3421 if (st.st_dev == (dev_T)-1) | |
1873 | 3422 buf->b_dev_valid = FALSE; |
7 | 3423 else |
3424 { | |
1873 | 3425 buf->b_dev_valid = TRUE; |
7 | 3426 buf->b_dev = st.st_dev; |
3427 buf->b_ino = st.st_ino; | |
3428 } | |
3429 #endif | |
3430 | |
3431 buf->b_shortname = FALSE; | |
3432 | |
3433 buf_name_changed(buf); | |
3434 return OK; | |
3435 } | |
3436 | |
3437 /* | |
41 | 3438 * Crude way of changing the name of a buffer. Use with care! |
3439 * The name should be relative to the current directory. | |
3440 */ | |
3441 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3442 buf_set_name(int fnum, char_u *name) |
41 | 3443 { |
3444 buf_T *buf; | |
3445 | |
3446 buf = buflist_findnr(fnum); | |
3447 if (buf != NULL) | |
3448 { | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3449 if (buf->b_sfname != buf->b_ffname) |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3450 vim_free(buf->b_sfname); |
41 | 3451 vim_free(buf->b_ffname); |
844 | 3452 buf->b_ffname = vim_strsave(name); |
3453 buf->b_sfname = NULL; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3454 // Allocate ffname and expand into full path. Also resolves .lnk |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3455 // files on Win32. |
844 | 3456 fname_expand(buf, &buf->b_ffname, &buf->b_sfname); |
41 | 3457 buf->b_fname = buf->b_sfname; |
3458 } | |
3459 } | |
3460 | |
3461 /* | |
7 | 3462 * Take care of what needs to be done when the name of buffer "buf" has |
3463 * changed. | |
3464 */ | |
3465 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3466 buf_name_changed(buf_T *buf) |
7 | 3467 { |
3468 /* | |
3469 * If the file name changed, also change the name of the swapfile | |
3470 */ | |
3471 if (buf->b_ml.ml_mfp != NULL) | |
3472 ml_setname(buf); | |
3473 | |
3474 if (curwin->w_buffer == buf) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3475 check_arg_idx(curwin); // check file name for arg list |
7 | 3476 #ifdef FEAT_TITLE |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3477 maketitle(); // set window title |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3478 #endif |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3479 status_redraw_all(); // status lines need to be redrawn |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3480 fmarks_check_names(buf); // check named file marks |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3481 ml_timestamp(buf); // reset timestamp |
7 | 3482 } |
3483 | |
3484 /* | |
3485 * set alternate file name for current window | |
3486 * | |
3487 * Used by do_one_cmd(), do_write() and do_ecmd(). | |
3488 * Return the buffer. | |
3489 */ | |
3490 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3491 setaltfname( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3492 char_u *ffname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3493 char_u *sfname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3494 linenr_T lnum) |
7 | 3495 { |
3496 buf_T *buf; | |
3497 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3498 // Create a buffer. 'buflisted' is not set if it's a new buffer |
7 | 3499 buf = buflist_new(ffname, sfname, lnum, 0); |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
3500 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0) |
7 | 3501 curwin->w_alt_fnum = buf->b_fnum; |
3502 return buf; | |
3503 } | |
3504 | |
3505 /* | |
3506 * Get alternate file name for current window. | |
3507 * Return NULL if there isn't any, and give error message if requested. | |
3508 */ | |
3509 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3510 getaltfname( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3511 int errmsg) // give error message |
7 | 3512 { |
3513 char_u *fname; | |
3514 linenr_T dummy; | |
3515 | |
3516 if (buflist_name_nr(0, &fname, &dummy) == FAIL) | |
3517 { | |
3518 if (errmsg) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
3519 emsg(_(e_noalt)); |
7 | 3520 return NULL; |
3521 } | |
3522 return fname; | |
3523 } | |
3524 | |
3525 /* | |
3526 * Add a file name to the buflist and return its number. | |
3527 * Uses same flags as buflist_new(), except BLN_DUMMY. | |
3528 * | |
3529 * used by qf_init(), main() and doarglist() | |
3530 */ | |
3531 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3532 buflist_add(char_u *fname, int flags) |
7 | 3533 { |
3534 buf_T *buf; | |
3535 | |
3536 buf = buflist_new(fname, NULL, (linenr_T)0, flags); | |
3537 if (buf != NULL) | |
3538 return buf->b_fnum; | |
3539 return 0; | |
3540 } | |
3541 | |
3542 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO) | |
3543 /* | |
3544 * Adjust slashes in file names. Called after 'shellslash' was set. | |
3545 */ | |
3546 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3547 buflist_slash_adjust(void) |
7 | 3548 { |
3549 buf_T *bp; | |
3550 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
3551 FOR_ALL_BUFFERS(bp) |
7 | 3552 { |
3553 if (bp->b_ffname != NULL) | |
3554 slash_adjust(bp->b_ffname); | |
3555 if (bp->b_sfname != NULL) | |
3556 slash_adjust(bp->b_sfname); | |
3557 } | |
3558 } | |
3559 #endif | |
3560 | |
3561 /* | |
1743 | 3562 * Set alternate cursor position for the current buffer and window "win". |
7 | 3563 * Also save the local window option values. |
3564 */ | |
3565 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3566 buflist_altfpos(win_T *win) |
7 | 3567 { |
1743 | 3568 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE); |
7 | 3569 } |
3570 | |
3571 /* | |
3572 * Return TRUE if 'ffname' is not the same file as current file. | |
3573 * Fname must have a full path (expanded by mch_FullName()). | |
3574 */ | |
3575 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3576 otherfile(char_u *ffname) |
7 | 3577 { |
3578 return otherfile_buf(curbuf, ffname | |
3579 #ifdef UNIX | |
3580 , NULL | |
3581 #endif | |
3582 ); | |
3583 } | |
3584 | |
3585 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3586 otherfile_buf( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3587 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3588 char_u *ffname |
7 | 3589 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3590 , stat_T *stp |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3591 #endif |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3592 ) |
7 | 3593 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3594 // no name is different |
7 | 3595 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL) |
3596 return TRUE; | |
3597 if (fnamecmp(ffname, buf->b_ffname) == 0) | |
3598 return FALSE; | |
3599 #ifdef UNIX | |
3600 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3601 stat_T st; |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3602 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3603 // If no stat_T given, get it now |
7 | 3604 if (stp == NULL) |
3605 { | |
1873 | 3606 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0) |
7 | 3607 st.st_dev = (dev_T)-1; |
3608 stp = &st; | |
3609 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3610 // Use dev/ino to check if the files are the same, even when the names |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3611 // are different (possible with links). Still need to compare the |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3612 // name above, for when the file doesn't exist yet. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3613 // Problem: The dev/ino changes when a file is deleted (and created |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3614 // again) and remains the same when renamed/moved. We don't want to |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3615 // mch_stat() each buffer each time, that would be too slow. Get the |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3616 // dev/ino again when they appear to match, but not when they appear |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3617 // to be different: Could skip a buffer when it's actually the same |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3618 // file. |
7 | 3619 if (buf_same_ino(buf, stp)) |
3620 { | |
3621 buf_setino(buf); | |
3622 if (buf_same_ino(buf, stp)) | |
3623 return FALSE; | |
3624 } | |
3625 } | |
3626 #endif | |
3627 return TRUE; | |
3628 } | |
3629 | |
3630 #if defined(UNIX) || defined(PROTO) | |
3631 /* | |
3632 * Set inode and device number for a buffer. | |
3633 * Must always be called when b_fname is changed!. | |
3634 */ | |
3635 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3636 buf_setino(buf_T *buf) |
7 | 3637 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3638 stat_T st; |
7 | 3639 |
3640 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0) | |
3641 { | |
1873 | 3642 buf->b_dev_valid = TRUE; |
7 | 3643 buf->b_dev = st.st_dev; |
3644 buf->b_ino = st.st_ino; | |
3645 } | |
3646 else | |
1873 | 3647 buf->b_dev_valid = FALSE; |
7 | 3648 } |
3649 | |
3650 /* | |
3651 * Return TRUE if dev/ino in buffer "buf" matches with "stp". | |
3652 */ | |
3653 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3654 buf_same_ino( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3655 buf_T *buf, |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3656 stat_T *stp) |
7 | 3657 { |
1873 | 3658 return (buf->b_dev_valid |
7 | 3659 && stp->st_dev == buf->b_dev |
3660 && stp->st_ino == buf->b_ino); | |
3661 } | |
3662 #endif | |
3663 | |
667 | 3664 /* |
3665 * Print info about the current buffer. | |
3666 */ | |
7 | 3667 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3668 fileinfo( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3669 int fullname, // when non-zero print full path |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3670 int shorthelp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3671 int dont_truncate) |
7 | 3672 { |
3673 char_u *name; | |
3674 int n; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3675 char *p; |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3676 char *buffer; |
272 | 3677 size_t len; |
7 | 3678 |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
3679 buffer = alloc(IOSIZE); |
7 | 3680 if (buffer == NULL) |
3681 return; | |
3682 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3683 if (fullname > 1) // 2 CTRL-G: include buffer number |
7 | 3684 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3685 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum); |
7 | 3686 p = buffer + STRLEN(buffer); |
3687 } | |
3688 else | |
3689 p = buffer; | |
3690 | |
3691 *p++ = '"'; | |
3692 if (buf_spname(curbuf) != NULL) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3693 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1); |
7 | 3694 else |
3695 { | |
3696 if (!fullname && curbuf->b_fname != NULL) | |
3697 name = curbuf->b_fname; | |
3698 else | |
3699 name = curbuf->b_ffname; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3700 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p, |
7 | 3701 (int)(IOSIZE - (p - buffer)), TRUE); |
3702 } | |
3703 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3704 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s", |
7 | 3705 curbufIsChanged() ? (shortmess(SHM_MOD) |
3706 ? " [+]" : _(" [Modified]")) : " ", | |
3707 (curbuf->b_flags & BF_NOTEDITED) | |
3708 #ifdef FEAT_QUICKFIX | |
3709 && !bt_dontwrite(curbuf) | |
3710 #endif | |
3711 ? _("[Not edited]") : "", | |
3712 (curbuf->b_flags & BF_NEW) | |
3713 #ifdef FEAT_QUICKFIX | |
3714 && !bt_dontwrite(curbuf) | |
3715 #endif | |
20828
db18625d8134
patch 8.2.0966: 'shortmess' flag "n" not used in two places
Bram Moolenaar <Bram@vim.org>
parents:
20802
diff
changeset
|
3716 ? new_file_message() : "", |
7 | 3717 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "", |
4795
8360a59aa04b
updated for version 7.3.1144
Bram Moolenaar <bram@vim.org>
parents:
4354
diff
changeset
|
3718 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]") |
7 | 3719 : _("[readonly]")) : "", |
3720 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK) | |
3721 || curbuf->b_p_ro) ? | |
3722 " " : ""); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3723 // With 32 bit longs and more than 21,474,836 lines multiplying by 100 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3724 // causes an overflow, thus for large numbers divide instead. |
7 | 3725 if (curwin->w_cursor.lnum > 1000000L) |
3726 n = (int)(((long)curwin->w_cursor.lnum) / | |
3727 ((long)curbuf->b_ml.ml_line_count / 100L)); | |
3728 else | |
3729 n = (int)(((long)curwin->w_cursor.lnum * 100L) / | |
3730 (long)curbuf->b_ml.ml_line_count); | |
3731 if (curbuf->b_ml.ml_flags & ML_EMPTY) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3732 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg)); |
7 | 3733 #ifdef FEAT_CMDL_INFO |
3734 else if (p_ru) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3735 // Current line and column are already on the screen -- webb |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3736 vim_snprintf_add(buffer, IOSIZE, |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
3737 NGETTEXT("%ld line --%d%%--", "%ld lines --%d%%--", |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
3738 curbuf->b_ml.ml_line_count), |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
3739 (long)curbuf->b_ml.ml_line_count, n); |
7 | 3740 #endif |
3741 else | |
3742 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3743 vim_snprintf_add(buffer, IOSIZE, |
7 | 3744 _("line %ld of %ld --%d%%-- col "), |
3745 (long)curwin->w_cursor.lnum, | |
3746 (long)curbuf->b_ml.ml_line_count, | |
3747 n); | |
3748 validate_virtcol(); | |
1869 | 3749 len = STRLEN(buffer); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3750 col_print((char_u *)buffer + len, IOSIZE - len, |
7 | 3751 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); |
3752 } | |
3753 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3754 (void)append_arg_number(curwin, (char_u *)buffer, IOSIZE, |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3755 !shortmess(SHM_FILE)); |
7 | 3756 |
3757 if (dont_truncate) | |
3758 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3759 // Temporarily set msg_scroll to avoid the message being truncated. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3760 // First call msg_start() to get the message in the right place. |
7 | 3761 msg_start(); |
3762 n = msg_scroll; | |
3763 msg_scroll = TRUE; | |
3764 msg(buffer); | |
3765 msg_scroll = n; | |
3766 } | |
3767 else | |
3768 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3769 p = (char *)msg_trunc_attr(buffer, FALSE, 0); |
7 | 3770 if (restart_edit != 0 || (msg_scrolled && !need_wait_return)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3771 // Need to repeat the message after redrawing when: |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3772 // - When restart_edit is set (otherwise there will be a delay |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3773 // before redrawing). |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3774 // - When the screen was scrolled but there is no wait-return |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3775 // prompt. |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3776 set_keep_msg((char_u *)p, 0); |
7 | 3777 } |
3778 | |
3779 vim_free(buffer); | |
3780 } | |
3781 | |
3782 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3783 col_print( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3784 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3785 size_t buflen, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3786 int col, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3787 int vcol) |
7 | 3788 { |
3789 if (col == vcol) | |
1869 | 3790 vim_snprintf((char *)buf, buflen, "%d", col); |
7 | 3791 else |
1869 | 3792 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol); |
7 | 3793 } |
3794 | |
3795 #if defined(FEAT_TITLE) || defined(PROTO) | |
3796 static char_u *lasttitle = NULL; | |
3797 static char_u *lasticon = NULL; | |
3798 | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3799 /* |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3800 * Put the file name in the title bar and icon of the window. |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3801 */ |
7 | 3802 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3803 maketitle(void) |
7 | 3804 { |
3805 char_u *p; | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3806 char_u *title_str = NULL; |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3807 char_u *icon_str = NULL; |
7 | 3808 int maxlen = 0; |
3809 int len; | |
3810 int mustset; | |
3811 char_u buf[IOSIZE]; | |
3812 int off; | |
3813 | |
3814 if (!redrawing()) | |
3815 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3816 // Postpone updating the title when 'lazyredraw' is set. |
7 | 3817 need_maketitle = TRUE; |
3818 return; | |
3819 } | |
3820 | |
3821 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
|
3822 if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL) |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3823 return; // nothing to do |
7 | 3824 |
3825 if (p_title) | |
3826 { | |
3827 if (p_titlelen > 0) | |
3828 { | |
3829 maxlen = p_titlelen * Columns / 100; | |
3830 if (maxlen < 10) | |
3831 maxlen = 10; | |
3832 } | |
3833 | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3834 title_str = buf; |
7 | 3835 if (*p_titlestring != NUL) |
3836 { | |
3837 #ifdef FEAT_STL_OPT | |
771 | 3838 if (stl_syntax & STL_IN_TITLE) |
3839 { | |
3840 int use_sandbox = FALSE; | |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3841 int called_emsg_before = called_emsg; |
675 | 3842 |
3843 # ifdef FEAT_EVAL | |
771 | 3844 use_sandbox = was_set_insecurely((char_u *)"titlestring", 0); |
675 | 3845 # endif |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3846 build_stl_str_hl(curwin, title_str, sizeof(buf), |
675 | 3847 p_titlestring, use_sandbox, |
681 | 3848 0, maxlen, NULL, NULL); |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3849 if (called_emsg > called_emsg_before) |
771 | 3850 set_string_option_direct((char_u *)"titlestring", -1, |
3851 (char_u *)"", OPT_FREE, SID_ERROR); | |
3852 } | |
7 | 3853 else |
3854 #endif | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3855 title_str = p_titlestring; |
7 | 3856 } |
3857 else | |
3858 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3859 // format: "fname + (path) (1 of 2) - VIM" |
7 | 3860 |
3780 | 3861 #define SPACE_FOR_FNAME (IOSIZE - 100) |
3862 #define SPACE_FOR_DIR (IOSIZE - 20) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3863 #define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM" |
7 | 3864 if (curbuf->b_fname == NULL) |
3780 | 3865 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
|
3866 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3867 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
|
3868 { |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3869 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
|
3870 SPACE_FOR_FNAME); |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3871 } |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3872 #endif |
7 | 3873 else |
3874 { | |
3875 p = transstr(gettail(curbuf->b_fname)); | |
3780 | 3876 vim_strncpy(buf, p, SPACE_FOR_FNAME); |
7 | 3877 vim_free(p); |
3878 } | |
3879 | |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3880 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3881 if (curbuf->b_term == NULL) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3882 #endif |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3883 switch (bufIsChanged(curbuf) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3884 + (curbuf->b_p_ro * 2) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3885 + (!curbuf->b_p_ma * 4)) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3886 { |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3887 case 1: STRCAT(buf, " +"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3888 case 2: STRCAT(buf, " ="); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3889 case 3: STRCAT(buf, " =+"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3890 case 4: |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3891 case 6: STRCAT(buf, " -"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3892 case 5: |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3893 case 7: STRCAT(buf, " -+"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3894 } |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3895 |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3896 if (curbuf->b_fname != NULL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3897 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3898 && curbuf->b_term == NULL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3899 #endif |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3900 ) |
7 | 3901 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3902 // Get path of file, replace home dir with ~ |
7 | 3903 off = (int)STRLEN(buf); |
3904 buf[off++] = ' '; | |
3905 buf[off++] = '('; | |
3906 home_replace(curbuf, curbuf->b_ffname, | |
3780 | 3907 buf + off, SPACE_FOR_DIR - off, TRUE); |
7 | 3908 #ifdef BACKSLASH_IN_FILENAME |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3909 // avoid "c:/name" to be reduced to "c" |
7 | 3910 if (isalpha(buf[off]) && buf[off + 1] == ':') |
3911 off += 2; | |
3912 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3913 // remove the file name |
39 | 3914 p = gettail_sep(buf + off); |
7 | 3915 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
|
3916 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3917 // must be a help buffer |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3918 vim_strncpy(buf + off, (char_u *)_("help"), |
3780 | 3919 (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
|
3920 } |
7 | 3921 else |
3922 *p = NUL; | |
39 | 3923 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3924 // Translate unprintable chars and concatenate. Keep some |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3925 // room for the server name. When there is no room (very long |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3926 // file name) use (...). |
3780 | 3927 if (off < SPACE_FOR_DIR) |
3928 { | |
3929 p = transstr(buf + off); | |
3930 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off)); | |
3931 vim_free(p); | |
3932 } | |
3933 else | |
3934 { | |
3935 vim_strncpy(buf + off, (char_u *)"...", | |
3936 (size_t)(SPACE_FOR_ARGNR - off)); | |
3937 } | |
7 | 3938 STRCAT(buf, ")"); |
3939 } | |
3940 | |
3780 | 3941 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE); |
7 | 3942 |
3943 #if defined(FEAT_CLIENTSERVER) | |
3944 if (serverName != NULL) | |
3945 { | |
3946 STRCAT(buf, " - "); | |
2768 | 3947 vim_strcat(buf, serverName, IOSIZE); |
7 | 3948 } |
3949 else | |
3950 #endif | |
3951 STRCAT(buf, " - VIM"); | |
3952 | |
3953 if (maxlen > 0) | |
3954 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3955 // make it shorter by removing a bit in the middle |
3277 | 3956 if (vim_strsize(buf) > maxlen) |
3957 trunc_string(buf, buf, maxlen, IOSIZE); | |
7 | 3958 } |
3959 } | |
3960 } | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3961 mustset = value_changed(title_str, &lasttitle); |
7 | 3962 |
3963 if (p_icon) | |
3964 { | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3965 icon_str = buf; |
7 | 3966 if (*p_iconstring != NUL) |
3967 { | |
3968 #ifdef FEAT_STL_OPT | |
771 | 3969 if (stl_syntax & STL_IN_ICON) |
3970 { | |
3971 int use_sandbox = FALSE; | |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3972 int called_emsg_before = called_emsg; |
675 | 3973 |
3974 # ifdef FEAT_EVAL | |
771 | 3975 use_sandbox = was_set_insecurely((char_u *)"iconstring", 0); |
675 | 3976 # endif |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3977 build_stl_str_hl(curwin, icon_str, sizeof(buf), |
675 | 3978 p_iconstring, use_sandbox, |
681 | 3979 0, 0, NULL, NULL); |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
3980 if (called_emsg > called_emsg_before) |
771 | 3981 set_string_option_direct((char_u *)"iconstring", -1, |
3982 (char_u *)"", OPT_FREE, SID_ERROR); | |
3983 } | |
7 | 3984 else |
3985 #endif | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3986 icon_str = p_iconstring; |
7 | 3987 } |
3988 else | |
3989 { | |
3990 if (buf_spname(curbuf) != NULL) | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3991 p = buf_spname(curbuf); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3992 else // use file name only in icon |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3993 p = gettail(curbuf->b_ffname); |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3994 *icon_str = NUL; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3995 // Truncate name at 100 bytes. |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3996 len = (int)STRLEN(p); |
7 | 3997 if (len > 100) |
3998 { | |
3999 len -= 100; | |
4000 if (has_mbyte) | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4001 len += (*mb_tail_off)(p, p + len) + 1; |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4002 p += len; |
7 | 4003 } |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4004 STRCPY(icon_str, p); |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4005 trans_characters(icon_str, IOSIZE); |
7 | 4006 } |
4007 } | |
4008 | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4009 mustset |= value_changed(icon_str, &lasticon); |
7 | 4010 |
4011 if (mustset) | |
4012 resettitle(); | |
4013 } | |
4014 | |
4015 /* | |
4016 * Used for title and icon: Check if "str" differs from "*last". Set "*last" | |
4017 * from "str" if it does. | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4018 * Return TRUE if resettitle() is to be called. |
7 | 4019 */ |
4020 static int | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4021 value_changed(char_u *str, char_u **last) |
7 | 4022 { |
4023 if ((str == NULL) != (*last == NULL) | |
4024 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0)) | |
4025 { | |
4026 vim_free(*last); | |
4027 if (str == NULL) | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4028 { |
7 | 4029 *last = NULL; |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14453
diff
changeset
|
4030 mch_restore_title( |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14453
diff
changeset
|
4031 last == &lasttitle ? SAVE_RESTORE_TITLE : SAVE_RESTORE_ICON); |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4032 } |
7 | 4033 else |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4034 { |
7 | 4035 *last = vim_strsave(str); |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4036 return TRUE; |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4037 } |
7 | 4038 } |
4039 return FALSE; | |
4040 } | |
4041 | |
4042 /* | |
4043 * Put current window title back (used after calling a shell) | |
4044 */ | |
4045 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4046 resettitle(void) |
7 | 4047 { |
4048 mch_settitle(lasttitle, lasticon); | |
4049 } | |
358 | 4050 |
4051 # if defined(EXITFREE) || defined(PROTO) | |
4052 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4053 free_titles(void) |
358 | 4054 { |
4055 vim_free(lasttitle); | |
4056 vim_free(lasticon); | |
4057 } | |
4058 # endif | |
4059 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4060 #endif // FEAT_TITLE |
7 | 4061 |
686 | 4062 #if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO) |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4063 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4064 /* |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4065 * Used for building in the status line. |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4066 */ |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4067 typedef struct |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4068 { |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4069 char_u *stl_start; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4070 int stl_minwid; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4071 int stl_maxwid; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4072 enum { |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4073 Normal, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4074 Empty, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4075 Group, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4076 Middle, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4077 Highlight, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4078 TabPage, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4079 Trunc |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4080 } stl_type; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4081 } stl_item_T; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4082 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4083 static size_t stl_items_len = 20; // Initial value, grows as needed. |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4084 static stl_item_T *stl_items = NULL; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4085 static int *stl_groupitem = NULL; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4086 static stl_hlrec_T *stl_hltab = NULL; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4087 static stl_hlrec_T *stl_tabtab = NULL; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4088 |
7 | 4089 /* |
675 | 4090 * Build a string from the status line items in "fmt". |
7 | 4091 * Return length of string in screen cells. |
4092 * | |
675 | 4093 * Normally works for window "wp", except when working for 'tabline' then it |
4094 * is "curwin". | |
4095 * | |
7 | 4096 * Items are drawn interspersed with the text that surrounds it |
4097 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation | |
4098 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional | |
4099 * | |
4100 * If maxwidth is not zero, the string will be filled at any middle marker | |
4101 * or truncated if too long, fillchar is used for all whitespace. | |
4102 */ | |
4103 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4104 build_stl_str_hl( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4105 win_T *wp, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4106 char_u *out, // buffer to write into != NameBuff |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4107 size_t outlen, // length of out[] |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4108 char_u *fmt, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4109 int use_sandbox UNUSED, // "fmt" was set insecurely, use sandbox |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4110 int fillchar, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4111 int maxwidth, |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4112 stl_hlrec_T **hltab, // return: HL attributes (can be NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4113 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL) |
7 | 4114 { |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4115 linenr_T lnum; |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4116 size_t len; |
7 | 4117 char_u *p; |
4118 char_u *s; | |
4119 char_u *t; | |
4333 | 4120 int byteval; |
7 | 4121 #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
|
4122 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
|
4123 buf_T *save_curbuf; |
18746
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4124 int save_VIsual_active; |
7 | 4125 #endif |
4126 int empty_line; | |
4127 colnr_T virtcol; | |
4128 long l; | |
4129 long n; | |
4130 int prevchar_isflag; | |
4131 int prevchar_isitem; | |
4132 int itemisflag; | |
4133 int fillable; | |
4134 char_u *str; | |
4135 long num; | |
4136 int width; | |
4137 int itemcnt; | |
4138 int curitem; | |
12660
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4139 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
|
4140 int group_start_userhl; |
7 | 4141 int groupdepth; |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4142 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4143 int evaldepth; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4144 #endif |
7 | 4145 int minwid; |
4146 int maxwid; | |
4147 int zeropad; | |
4148 char_u base; | |
4149 char_u opt; | |
4150 #define TMPLEN 70 | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4151 char_u buf_tmp[TMPLEN]; |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4152 char_u win_tmp[TMPLEN]; |
678 | 4153 char_u *usefmt = fmt; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4154 stl_hlrec_T *sp; |
12387
1ecdbc207c1e
patch 8.0.1073: may get an endless loop if 'statusline' changes a highlight
Christian Brabandt <cb@256bit.org>
parents:
12267
diff
changeset
|
4155 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
|
4156 int save_redr_type = curwin->w_redr_type; |
678 | 4157 |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4158 if (stl_items == NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4159 { |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4160 stl_items = ALLOC_MULT(stl_item_T, stl_items_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4161 stl_groupitem = ALLOC_MULT(int, stl_items_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4162 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4163 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4164 } |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4165 |
678 | 4166 #ifdef FEAT_EVAL |
4167 /* | |
4168 * When the format starts with "%!" then evaluate it as an expression and | |
4169 * use the result as the actual format string. | |
4170 */ | |
4171 if (fmt[0] == '%' && fmt[1] == '!') | |
4172 { | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4173 typval_T tv; |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4174 |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4175 tv.v_type = VAR_NUMBER; |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4176 tv.vval.v_number = wp->w_id; |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4177 set_var((char_u *)"g:statusline_winid", &tv, FALSE); |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4178 |
20996
3af71cbcfdbe
patch 8.2.1049: Vim9: leaking memory when using continuation line
Bram Moolenaar <Bram@vim.org>
parents:
20828
diff
changeset
|
4179 usefmt = eval_to_string_safe(fmt + 2, use_sandbox); |
678 | 4180 if (usefmt == NULL) |
943 | 4181 usefmt = fmt; |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4182 |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4183 do_unlet((char_u *)"g:statusline_winid", TRUE); |
678 | 4184 } |
4185 #endif | |
7 | 4186 |
4187 if (fillchar == 0) | |
4188 fillchar = ' '; | |
819 | 4189 |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4190 // The cursor in windows other than the current one isn't always |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4191 // up-to-date, esp. because of autocommands and timers. |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4192 lnum = wp->w_cursor.lnum; |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4193 if (lnum > wp->w_buffer->b_ml.ml_line_count) |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4194 { |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4195 lnum = wp->w_buffer->b_ml.ml_line_count; |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4196 wp->w_cursor.lnum = lnum; |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4197 } |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4198 |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4199 // Get line & check if empty (cursorpos will show "0-1"). Note that |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4200 // p will become invalid when getting another buffer line. |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4201 p = ml_get_buf(wp->w_buffer, lnum, FALSE); |
4333 | 4202 empty_line = (*p == NUL); |
4203 | |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4204 // Get the byte value now, in case we need it below. This is more efficient |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4205 // than making a copy of the line. |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4206 len = STRLEN(p); |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4207 if (wp->w_cursor.col > (colnr_T)len) |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4208 { |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4209 // Line may have changed since checking the cursor column, or the lnum |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4210 // was adjusted above. |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4211 wp->w_cursor.col = (colnr_T)len; |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4212 wp->w_cursor.coladd = 0; |
4333 | 4213 byteval = 0; |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4214 } |
4333 | 4215 else |
4216 byteval = (*mb_ptr2char)(p + wp->w_cursor.col); | |
7 | 4217 |
4218 groupdepth = 0; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4219 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4220 evaldepth = 0; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4221 #endif |
7 | 4222 p = out; |
4223 curitem = 0; | |
4224 prevchar_isflag = TRUE; | |
4225 prevchar_isitem = FALSE; | |
678 | 4226 for (s = usefmt; *s; ) |
7 | 4227 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4228 if (curitem == (int)stl_items_len) |
2704 | 4229 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4230 size_t new_len = stl_items_len * 3 / 2; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4231 stl_item_T *new_items; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4232 int *new_groupitem; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4233 stl_hlrec_T *new_hlrec; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4234 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4235 new_items = vim_realloc(stl_items, sizeof(stl_item_T) * new_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4236 if (new_items == NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4237 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4238 stl_items = new_items; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4239 new_groupitem = vim_realloc(stl_groupitem, sizeof(int) * new_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4240 if (new_groupitem == NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4241 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4242 stl_groupitem = new_groupitem; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4243 new_hlrec = vim_realloc(stl_hltab, sizeof(stl_hlrec_T) * new_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4244 if (new_hlrec == NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4245 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4246 stl_hltab = new_hlrec; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4247 new_hlrec = vim_realloc(stl_tabtab, sizeof(stl_hlrec_T) * new_len); |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4248 if (new_hlrec == NULL) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4249 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4250 stl_tabtab = new_hlrec; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4251 stl_items_len = new_len; |
2704 | 4252 } |
4253 | |
7 | 4254 if (*s != NUL && *s != '%') |
4255 prevchar_isflag = prevchar_isitem = FALSE; | |
4256 | |
4257 /* | |
4258 * Handle up to the next '%' or the end. | |
4259 */ | |
4260 while (*s != NUL && *s != '%' && p + 1 < out + outlen) | |
4261 *p++ = *s++; | |
4262 if (*s == NUL || p + 1 >= out + outlen) | |
4263 break; | |
4264 | |
4265 /* | |
4266 * Handle one '%' item. | |
4267 */ | |
4268 s++; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4269 if (*s == NUL) // ignore trailing % |
2694 | 4270 break; |
7 | 4271 if (*s == '%') |
4272 { | |
4273 if (p + 1 >= out + outlen) | |
4274 break; | |
4275 *p++ = *s++; | |
4276 prevchar_isflag = prevchar_isitem = FALSE; | |
4277 continue; | |
4278 } | |
4279 if (*s == STL_MIDDLEMARK) | |
4280 { | |
4281 s++; | |
4282 if (groupdepth > 0) | |
4283 continue; | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4284 stl_items[curitem].stl_type = Middle; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4285 stl_items[curitem++].stl_start = p; |
7 | 4286 continue; |
4287 } | |
4288 if (*s == STL_TRUNCMARK) | |
4289 { | |
4290 s++; | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4291 stl_items[curitem].stl_type = Trunc; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4292 stl_items[curitem++].stl_start = p; |
7 | 4293 continue; |
4294 } | |
4295 if (*s == ')') | |
4296 { | |
4297 s++; | |
4298 if (groupdepth < 1) | |
4299 continue; | |
4300 groupdepth--; | |
4301 | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4302 t = stl_items[stl_groupitem[groupdepth]].stl_start; |
7 | 4303 *p = NUL; |
4304 l = vim_strsize(t); | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4305 if (curitem > stl_groupitem[groupdepth] + 1 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4306 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0) |
7 | 4307 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4308 // remove group if all items are empty and highlight group |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4309 // doesn't change |
12660
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4310 group_start_userhl = group_end_userhl = 0; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4311 for (n = stl_groupitem[groupdepth] - 1; n >= 0; n--) |
12684
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4312 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4313 if (stl_items[n].stl_type == Highlight) |
12684
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4314 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4315 group_start_userhl = group_end_userhl = |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4316 stl_items[n].stl_minwid; |
12684
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4317 break; |
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4318 } |
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4319 } |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4320 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++) |
12660
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4321 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4322 if (stl_items[n].stl_type == Normal) |
7 | 4323 break; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4324 if (stl_items[n].stl_type == Highlight) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4325 group_end_userhl = stl_items[n].stl_minwid; |
12660
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4326 } |
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4327 if (n == curitem && group_start_userhl == group_end_userhl) |
7 | 4328 { |
21417
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4329 // empty group |
7 | 4330 p = t; |
4331 l = 0; | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4332 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++) |
21417
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4333 { |
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4334 // do not use the highlighting from the removed group |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4335 if (stl_items[n].stl_type == Highlight) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4336 stl_items[n].stl_type = Empty; |
21417
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4337 // adjust the start position of TabPage to the next |
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4338 // item position |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4339 if (stl_items[n].stl_type == TabPage) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4340 stl_items[n].stl_start = p; |
21417
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4341 } |
7 | 4342 } |
4343 } | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4344 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid) |
7 | 4345 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4346 // truncate, remove n bytes of text at the start |
7 | 4347 if (has_mbyte) |
4348 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4349 // Find the first character that should be included. |
7 | 4350 n = 0; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4351 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid) |
7 | 4352 { |
4353 l -= ptr2cells(t + n); | |
474 | 4354 n += (*mb_ptr2len)(t + n); |
7 | 4355 } |
4356 } | |
4357 else | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4358 n = (long)(p - t) - stl_items[stl_groupitem[groupdepth]] |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4359 .stl_maxwid + 1; |
7 | 4360 |
4361 *t = '<'; | |
1869 | 4362 mch_memmove(t + 1, t + n, (size_t)(p - (t + n))); |
7 | 4363 p = p - n + 1; |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15557
diff
changeset
|
4364 |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15557
diff
changeset
|
4365 // Fill up space left over by half a double-wide char. |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4366 while (++l < stl_items[stl_groupitem[groupdepth]].stl_minwid) |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4367 MB_CHAR2BYTES(fillchar, p); |
7 | 4368 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4369 // correct the start of the items for the truncation |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4370 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++) |
7 | 4371 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4372 stl_items[l].stl_start -= n; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4373 if (stl_items[l].stl_start < t) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4374 stl_items[l].stl_start = t; |
7 | 4375 } |
4376 } | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4377 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l) |
7 | 4378 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4379 // fill |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4380 n = stl_items[stl_groupitem[groupdepth]].stl_minwid; |
7 | 4381 if (n < 0) |
4382 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4383 // fill by appending characters |
7 | 4384 n = 0 - n; |
4385 while (l++ < n && p + 1 < out + outlen) | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4386 MB_CHAR2BYTES(fillchar, p); |
7 | 4387 } |
4388 else | |
4389 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4390 // fill by inserting characters |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4391 l = (n - l) * MB_CHAR2LEN(fillchar); |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4392 mch_memmove(t + l, t, (size_t)(p - t)); |
7 | 4393 if (p + l >= out + outlen) |
835 | 4394 l = (long)((out + outlen) - p - 1); |
7 | 4395 p += l; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4396 for (n = stl_groupitem[groupdepth] + 1; n < curitem; n++) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4397 stl_items[n].stl_start += l; |
7 | 4398 for ( ; l > 0; l--) |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4399 MB_CHAR2BYTES(fillchar, t); |
7 | 4400 } |
4401 } | |
4402 continue; | |
4403 } | |
4404 minwid = 0; | |
4405 maxwid = 9999; | |
4406 zeropad = FALSE; | |
4407 l = 1; | |
4408 if (*s == '0') | |
4409 { | |
4410 s++; | |
4411 zeropad = TRUE; | |
4412 } | |
4413 if (*s == '-') | |
4414 { | |
4415 s++; | |
4416 l = -1; | |
4417 } | |
4418 if (VIM_ISDIGIT(*s)) | |
4419 { | |
4420 minwid = (int)getdigits(&s); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4421 if (minwid < 0) // overflow |
7 | 4422 minwid = 0; |
4423 } | |
678 | 4424 if (*s == STL_USER_HL) |
7 | 4425 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4426 stl_items[curitem].stl_type = Highlight; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4427 stl_items[curitem].stl_start = p; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4428 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid; |
7 | 4429 s++; |
4430 curitem++; | |
4431 continue; | |
4432 } | |
681 | 4433 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR) |
4434 { | |
4435 if (*s == STL_TABCLOSENR) | |
4436 { | |
4437 if (minwid == 0) | |
4438 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4439 // %X ends the close label, go back to the previously |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4440 // define tab label nr. |
681 | 4441 for (n = curitem - 1; n >= 0; --n) |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4442 if (stl_items[n].stl_type == TabPage |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4443 && stl_items[n].stl_minwid >= 0) |
681 | 4444 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4445 minwid = stl_items[n].stl_minwid; |
681 | 4446 break; |
4447 } | |
4448 } | |
4449 else | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4450 // close nrs are stored as negative values |
681 | 4451 minwid = - minwid; |
4452 } | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4453 stl_items[curitem].stl_type = TabPage; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4454 stl_items[curitem].stl_start = p; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4455 stl_items[curitem].stl_minwid = minwid; |
681 | 4456 s++; |
4457 curitem++; | |
4458 continue; | |
4459 } | |
7 | 4460 if (*s == '.') |
4461 { | |
4462 s++; | |
4463 if (VIM_ISDIGIT(*s)) | |
4464 { | |
4465 maxwid = (int)getdigits(&s); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4466 if (maxwid <= 0) // overflow |
7 | 4467 maxwid = 50; |
4468 } | |
4469 } | |
4470 minwid = (minwid > 50 ? 50 : minwid) * l; | |
4471 if (*s == '(') | |
4472 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4473 stl_groupitem[groupdepth++] = curitem; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4474 stl_items[curitem].stl_type = Group; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4475 stl_items[curitem].stl_start = p; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4476 stl_items[curitem].stl_minwid = minwid; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4477 stl_items[curitem].stl_maxwid = maxwid; |
7 | 4478 s++; |
4479 curitem++; | |
4480 continue; | |
4481 } | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4482 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4483 // Denotes end of expanded %{} block |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4484 if (*s == '}' && evaldepth > 0) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4485 { |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4486 s++; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4487 evaldepth--; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4488 continue; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4489 } |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4490 #endif |
7 | 4491 if (vim_strchr(STL_ALL, *s) == NULL) |
4492 { | |
4493 s++; | |
4494 continue; | |
4495 } | |
4496 opt = *s++; | |
4497 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4498 // OK - now for the real work |
7 | 4499 base = 'D'; |
4500 itemisflag = FALSE; | |
4501 fillable = TRUE; | |
4502 num = -1; | |
4503 str = NULL; | |
4504 switch (opt) | |
4505 { | |
4506 case STL_FILEPATH: | |
4507 case STL_FULLPATH: | |
4508 case STL_FILENAME: | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4509 fillable = FALSE; // don't change ' ' to fillchar |
7 | 4510 if (buf_spname(wp->w_buffer) != NULL) |
3839 | 4511 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1); |
7 | 4512 else |
4513 { | |
4514 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname | |
667 | 4515 : wp->w_buffer->b_fname; |
7 | 4516 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE); |
4517 } | |
4518 trans_characters(NameBuff, MAXPATHL); | |
4519 if (opt != STL_FILENAME) | |
4520 str = NameBuff; | |
4521 else | |
4522 str = gettail(NameBuff); | |
4523 break; | |
4524 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4525 case STL_VIM_EXPR: // '{' |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4526 { |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4527 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4528 char_u *block_start = s - 1; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4529 #endif |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4530 int reevaluate = (*s == '%'); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4531 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4532 if (reevaluate) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4533 s++; |
7 | 4534 itemisflag = TRUE; |
4535 t = p; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4536 while ((*s != '}' || (reevaluate && s[-1] != '%')) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4537 && *s != NUL && p + 1 < out + outlen) |
7 | 4538 *p++ = *s++; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4539 if (*s != '}') // missing '}' or out of space |
7 | 4540 break; |
4541 s++; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4542 if (reevaluate) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4543 p[-1] = 0; // remove the % at the end of %{% expr %} |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4544 else |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4545 *p = 0; |
7 | 4546 p = t; |
4547 #ifdef FEAT_EVAL | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4548 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4549 "%d", curbuf->b_fnum); |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4550 set_internal_string_var((char_u *)"g:actual_curbuf", buf_tmp); |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4551 vim_snprintf((char *)win_tmp, sizeof(win_tmp), "%d", curwin->w_id); |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4552 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp); |
7 | 4553 |
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
|
4554 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
|
4555 save_curwin = curwin; |
18746
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4556 save_VIsual_active = VIsual_active; |
7 | 4557 curwin = wp; |
4558 curbuf = wp->w_buffer; | |
18746
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4559 // Visual mode is only valid in the current window. |
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4560 if (curwin != save_curwin) |
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4561 VIsual_active = FALSE; |
7 | 4562 |
20996
3af71cbcfdbe
patch 8.2.1049: Vim9: leaking memory when using continuation line
Bram Moolenaar <Bram@vim.org>
parents:
20828
diff
changeset
|
4563 str = eval_to_string_safe(p, use_sandbox); |
7 | 4564 |
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
|
4565 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
|
4566 curbuf = save_curbuf; |
18746
64eea864dff6
patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
4567 VIsual_active = save_VIsual_active; |
145 | 4568 do_unlet((char_u *)"g:actual_curbuf", TRUE); |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4569 do_unlet((char_u *)"g:actual_curwin", TRUE); |
7 | 4570 |
4571 if (str != NULL && *str != 0) | |
4572 { | |
4573 if (*skipdigits(str) == NUL) | |
4574 { | |
4575 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
|
4576 VIM_CLEAR(str); |
7 | 4577 itemisflag = FALSE; |
4578 } | |
4579 } | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4580 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4581 // If the output of the expression needs to be evaluated |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4582 // replace the %{} block with the result of evaluation |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4583 if (reevaluate && str != NULL && *str != 0 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4584 && strchr((const char *)str, '%') != NULL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4585 && evaldepth < MAX_STL_EVAL_DEPTH) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4586 { |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4587 size_t parsed_usefmt = (size_t)(block_start - usefmt); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4588 size_t str_length = strlen((const char *)str); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4589 size_t fmt_length = strlen((const char *)s); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4590 size_t new_fmt_len = parsed_usefmt |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4591 + str_length + fmt_length + 3; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4592 char_u *new_fmt = (char_u *)alloc(new_fmt_len * sizeof(char_u)); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4593 char_u *new_fmt_p = new_fmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4594 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4595 new_fmt_p = (char_u *)memcpy(new_fmt_p, usefmt, parsed_usefmt) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4596 + parsed_usefmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4597 new_fmt_p = (char_u *)memcpy(new_fmt_p , str, str_length) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4598 + str_length; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4599 new_fmt_p = (char_u *)memcpy(new_fmt_p, "%}", 2) + 2; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4600 new_fmt_p = (char_u *)memcpy(new_fmt_p , s, fmt_length) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4601 + fmt_length; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4602 *new_fmt_p = 0; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4603 new_fmt_p = NULL; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4604 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4605 if (usefmt != fmt) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4606 vim_free(usefmt); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4607 VIM_CLEAR(str); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4608 usefmt = new_fmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4609 s = usefmt + parsed_usefmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4610 evaldepth++; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4611 continue; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4612 } |
7 | 4613 #endif |
4614 break; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4615 } |
7 | 4616 case STL_LINE: |
4617 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) | |
4618 ? 0L : (long)(wp->w_cursor.lnum); | |
4619 break; | |
4620 | |
4621 case STL_NUMLINES: | |
4622 num = wp->w_buffer->b_ml.ml_line_count; | |
4623 break; | |
4624 | |
4625 case STL_COLUMN: | |
4626 num = !(State & INSERT) && empty_line | |
4627 ? 0 : (int)wp->w_cursor.col + 1; | |
4628 break; | |
4629 | |
4630 case STL_VIRTCOL: | |
4631 case STL_VIRTCOL_ALT: | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4632 // In list mode virtcol needs to be recomputed |
7 | 4633 virtcol = wp->w_virtcol; |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23869
diff
changeset
|
4634 if (wp->w_p_list && wp->w_lcs_chars.tab1 == NUL) |
7 | 4635 { |
4636 wp->w_p_list = FALSE; | |
4637 getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL); | |
4638 wp->w_p_list = TRUE; | |
4639 } | |
4640 ++virtcol; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4641 // Don't display %V if it's the same as %c. |
7 | 4642 if (opt == STL_VIRTCOL_ALT |
4643 && (virtcol == (colnr_T)(!(State & INSERT) && empty_line | |
4644 ? 0 : (int)wp->w_cursor.col + 1))) | |
4645 break; | |
4646 num = (long)virtcol; | |
4647 break; | |
4648 | |
4649 case STL_PERCENTAGE: | |
4650 num = (int)(((long)wp->w_cursor.lnum * 100L) / | |
4651 (long)wp->w_buffer->b_ml.ml_line_count); | |
4652 break; | |
4653 | |
4654 case STL_ALTPERCENT: | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4655 str = buf_tmp; |
1869 | 4656 get_rel_pos(wp, str, TMPLEN); |
7 | 4657 break; |
4658 | |
4659 case STL_ARGLISTSTAT: | |
4660 fillable = FALSE; | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4661 buf_tmp[0] = 0; |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4662 if (append_arg_number(wp, buf_tmp, (int)sizeof(buf_tmp), FALSE)) |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4663 str = buf_tmp; |
7 | 4664 break; |
4665 | |
4666 case STL_KEYMAP: | |
4667 fillable = FALSE; | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4668 if (get_keymap_str(wp, (char_u *)"<%s>", buf_tmp, TMPLEN)) |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4669 str = buf_tmp; |
7 | 4670 break; |
4671 case STL_PAGENUM: | |
706 | 4672 #if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE) |
686 | 4673 num = printer_page_num; |
7 | 4674 #else |
4675 num = 0; | |
4676 #endif | |
4677 break; | |
4678 | |
4679 case STL_BUFNO: | |
4680 num = wp->w_buffer->b_fnum; | |
4681 break; | |
4682 | |
4683 case STL_OFFSET_X: | |
4684 base = 'X'; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4685 // FALLTHROUGH |
7 | 4686 case STL_OFFSET: |
4687 #ifdef FEAT_BYTEOFF | |
4688 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL); | |
4689 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ? | |
4690 0L : l + 1 + (!(State & INSERT) && empty_line ? | |
4691 0 : (int)wp->w_cursor.col); | |
4692 #endif | |
4693 break; | |
4694 | |
4695 case STL_BYTEVAL_X: | |
4696 base = 'X'; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4697 // FALLTHROUGH |
7 | 4698 case STL_BYTEVAL: |
4333 | 4699 num = byteval; |
7 | 4700 if (num == NL) |
4701 num = 0; | |
4702 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC) | |
4703 num = NL; | |
4704 break; | |
4705 | |
4706 case STL_ROFLAG: | |
4707 case STL_ROFLAG_ALT: | |
4708 itemisflag = TRUE; | |
4709 if (wp->w_buffer->b_p_ro) | |
4795
8360a59aa04b
updated for version 7.3.1144
Bram Moolenaar <bram@vim.org>
parents:
4354
diff
changeset
|
4710 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]")); |
7 | 4711 break; |
4712 | |
4713 case STL_HELPFLAG: | |
4714 case STL_HELPFLAG_ALT: | |
4715 itemisflag = TRUE; | |
4716 if (wp->w_buffer->b_help) | |
4717 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP" | |
809 | 4718 : _("[Help]")); |
7 | 4719 break; |
4720 | |
4721 case STL_FILETYPE: | |
4722 if (*wp->w_buffer->b_p_ft != NUL | |
4723 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3) | |
4724 { | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4725 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]", |
272 | 4726 wp->w_buffer->b_p_ft); |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4727 str = buf_tmp; |
7 | 4728 } |
4729 break; | |
4730 | |
4731 case STL_FILETYPE_ALT: | |
4732 itemisflag = TRUE; | |
4733 if (*wp->w_buffer->b_p_ft != NUL | |
4734 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2) | |
4735 { | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4736 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s", |
272 | 4737 wp->w_buffer->b_p_ft); |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4738 for (t = buf_tmp; *t != 0; t++) |
7 | 4739 *t = TOUPPER_LOC(*t); |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4740 str = buf_tmp; |
7 | 4741 } |
4742 break; | |
4743 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
4744 #if defined(FEAT_QUICKFIX) |
7 | 4745 case STL_PREVIEWFLAG: |
4746 case STL_PREVIEWFLAG_ALT: | |
4747 itemisflag = TRUE; | |
4748 if (wp->w_p_pvw) | |
4749 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV" | |
4750 : _("[Preview]")); | |
4751 break; | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4752 |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4753 case STL_QUICKFIX: |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4754 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
|
4755 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
|
4756 ? _(msg_loclist) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4757 : _(msg_qflist)); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4758 break; |
7 | 4759 #endif |
4760 | |
4761 case STL_MODIFIED: | |
4762 case STL_MODIFIED_ALT: | |
4763 itemisflag = TRUE; | |
4764 switch ((opt == STL_MODIFIED_ALT) | |
4765 + bufIsChanged(wp->w_buffer) * 2 | |
4766 + (!wp->w_buffer->b_p_ma) * 4) | |
4767 { | |
4768 case 2: str = (char_u *)"[+]"; break; | |
4769 case 3: str = (char_u *)",+"; break; | |
4770 case 4: str = (char_u *)"[-]"; break; | |
4771 case 5: str = (char_u *)",-"; break; | |
4772 case 6: str = (char_u *)"[+-]"; break; | |
4773 case 7: str = (char_u *)",+-"; break; | |
4774 } | |
4775 break; | |
678 | 4776 |
4777 case STL_HIGHLIGHT: | |
4778 t = s; | |
4779 while (*s != '#' && *s != NUL) | |
4780 ++s; | |
4781 if (*s == '#') | |
4782 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4783 stl_items[curitem].stl_type = Highlight; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4784 stl_items[curitem].stl_start = p; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4785 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t)); |
678 | 4786 curitem++; |
4787 } | |
5407 | 4788 if (*s != NUL) |
4789 ++s; | |
678 | 4790 continue; |
7 | 4791 } |
4792 | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4793 stl_items[curitem].stl_start = p; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4794 stl_items[curitem].stl_type = Normal; |
7 | 4795 if (str != NULL && *str) |
4796 { | |
4797 t = str; | |
4798 if (itemisflag) | |
4799 { | |
4800 if ((t[0] && t[1]) | |
4801 && ((!prevchar_isitem && *t == ',') | |
4802 || (prevchar_isflag && *t == ' '))) | |
4803 t++; | |
4804 prevchar_isflag = TRUE; | |
4805 } | |
4806 l = vim_strsize(t); | |
4807 if (l > 0) | |
4808 prevchar_isitem = TRUE; | |
4809 if (l > maxwid) | |
4810 { | |
4811 while (l >= maxwid) | |
4812 if (has_mbyte) | |
4813 { | |
4814 l -= ptr2cells(t); | |
474 | 4815 t += (*mb_ptr2len)(t); |
7 | 4816 } |
4817 else | |
4818 l -= byte2cells(*t++); | |
4819 if (p + 1 >= out + outlen) | |
4820 break; | |
4821 *p++ = '<'; | |
4822 } | |
4823 if (minwid > 0) | |
4824 { | |
4825 for (; l < minwid && p + 1 < out + outlen; l++) | |
4826 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4827 // Don't put a "-" in front of a digit. |
7 | 4828 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t)) |
4829 *p++ = ' '; | |
4830 else | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4831 MB_CHAR2BYTES(fillchar, p); |
7 | 4832 } |
4833 minwid = 0; | |
4834 } | |
4835 else | |
4836 minwid *= -1; | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4837 for (; *t && p + 1 < out + outlen; t++) |
7 | 4838 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4839 // Change a space by fillchar, unless fillchar is '-' and a |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4840 // digit follows. |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4841 if (fillable && *t == ' ' |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4842 && (!VIM_ISDIGIT(*(t + 1)) || fillchar != '-')) |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4843 MB_CHAR2BYTES(fillchar, p); |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4844 else |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4845 *p++ = *t; |
7 | 4846 } |
4847 for (; l < minwid && p + 1 < out + outlen; l++) | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4848 MB_CHAR2BYTES(fillchar, p); |
7 | 4849 } |
4850 else if (num >= 0) | |
4851 { | |
4852 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16)); | |
4853 char_u nstr[20]; | |
4854 | |
4855 if (p + 20 >= out + outlen) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4856 break; // not sufficient space |
7 | 4857 prevchar_isitem = TRUE; |
4858 t = nstr; | |
4859 if (opt == STL_VIRTCOL_ALT) | |
4860 { | |
4861 *t++ = '-'; | |
4862 minwid--; | |
4863 } | |
4864 *t++ = '%'; | |
4865 if (zeropad) | |
4866 *t++ = '0'; | |
4867 *t++ = '*'; | |
1869 | 4868 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd'); |
7 | 4869 *t = 0; |
4870 | |
4871 for (n = num, l = 1; n >= nbase; n /= nbase) | |
4872 l++; | |
4873 if (opt == STL_VIRTCOL_ALT) | |
4874 l++; | |
4875 if (l > maxwid) | |
4876 { | |
4877 l += 2; | |
4878 n = l - maxwid; | |
4879 while (l-- > maxwid) | |
4880 num /= nbase; | |
4881 *t++ = '>'; | |
4882 *t++ = '%'; | |
4883 *t = t[-3]; | |
4884 *++t = 0; | |
272 | 4885 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, |
4886 0, num, n); | |
7 | 4887 } |
4888 else | |
272 | 4889 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, |
4890 minwid, num); | |
7 | 4891 p += STRLEN(p); |
4892 } | |
4893 else | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4894 stl_items[curitem].stl_type = Empty; |
7 | 4895 |
4896 if (opt == STL_VIM_EXPR) | |
4897 vim_free(str); | |
4898 | |
4899 if (num >= 0 || (!itemisflag && str && *str)) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4900 prevchar_isflag = FALSE; // Item not NULL, but not a flag |
7 | 4901 curitem++; |
4902 } | |
4903 *p = NUL; | |
4904 itemcnt = curitem; | |
4905 | |
678 | 4906 #ifdef FEAT_EVAL |
4907 if (usefmt != fmt) | |
4908 vim_free(usefmt); | |
4909 #endif | |
4910 | |
7 | 4911 width = vim_strsize(out); |
4912 if (maxwidth > 0 && width > maxwidth) | |
4913 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4914 // Result is too long, must truncate somewhere. |
7 | 4915 l = 0; |
4916 if (itemcnt == 0) | |
4917 s = out; | |
4918 else | |
4919 { | |
4920 for ( ; l < itemcnt; l++) | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4921 if (stl_items[l].stl_type == Trunc) |
7 | 4922 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4923 // Truncate at %< item. |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4924 s = stl_items[l].stl_start; |
7 | 4925 break; |
4926 } | |
4927 if (l == itemcnt) | |
4928 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4929 // No %< item, truncate first item. |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4930 s = stl_items[0].stl_start; |
7 | 4931 l = 0; |
4932 } | |
4933 } | |
4934 | |
4935 if (width - vim_strsize(s) >= maxwidth) | |
4936 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4937 // Truncation mark is beyond max length |
7 | 4938 if (has_mbyte) |
4939 { | |
4940 s = out; | |
4941 width = 0; | |
4942 for (;;) | |
4943 { | |
4944 width += ptr2cells(s); | |
4945 if (width >= maxwidth) | |
4946 break; | |
474 | 4947 s += (*mb_ptr2len)(s); |
7 | 4948 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4949 // Fill up for half a double-wide character. |
7 | 4950 while (++width < maxwidth) |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4951 MB_CHAR2BYTES(fillchar, s); |
7 | 4952 } |
4953 else | |
4954 s = out + maxwidth - 1; | |
4955 for (l = 0; l < itemcnt; l++) | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4956 if (stl_items[l].stl_start > s) |
7 | 4957 break; |
4958 itemcnt = l; | |
4959 *s++ = '>'; | |
4960 *s = 0; | |
4961 } | |
4962 else | |
4963 { | |
4964 if (has_mbyte) | |
4965 { | |
4966 n = 0; | |
4967 while (width >= maxwidth) | |
4968 { | |
4969 width -= ptr2cells(s + n); | |
474 | 4970 n += (*mb_ptr2len)(s + n); |
7 | 4971 } |
4972 } | |
4973 else | |
4974 n = width - maxwidth + 1; | |
4975 p = s + n; | |
1618 | 4976 STRMOVE(s + 1, p); |
7 | 4977 *s = '<'; |
4978 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4979 // Fill up for half a double-wide character. |
7 | 4980 while (++width < maxwidth) |
4981 { | |
4982 s = s + STRLEN(s); | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4983 MB_CHAR2BYTES(fillchar, s); |
7 | 4984 *s = NUL; |
4985 } | |
4986 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4987 --n; // count the '<' |
7 | 4988 for (; l < itemcnt; l++) |
4989 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4990 if (stl_items[l].stl_start - n >= s) |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4991 stl_items[l].stl_start -= n; |
7 | 4992 else |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4993 stl_items[l].stl_start = s; |
7 | 4994 } |
4995 } | |
4996 width = maxwidth; | |
4997 } | |
4998 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen) | |
4999 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5000 // Apply STL_MIDDLE if any |
7 | 5001 for (l = 0; l < itemcnt; l++) |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5002 if (stl_items[l].stl_type == Middle) |
7 | 5003 break; |
5004 if (l < itemcnt) | |
5005 { | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5006 int middlelength = (maxwidth - width) * MB_CHAR2LEN(fillchar); |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5007 p = stl_items[l].stl_start + middlelength; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5008 STRMOVE(p, stl_items[l].stl_start); |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5009 for (s = stl_items[l].stl_start; s < p;) |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5010 MB_CHAR2BYTES(fillchar, s); |
7 | 5011 for (l++; l < itemcnt; l++) |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5012 stl_items[l].stl_start += middlelength; |
7 | 5013 width = maxwidth; |
5014 } | |
5015 } | |
5016 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5017 // Store the info about highlighting. |
681 | 5018 if (hltab != NULL) |
7 | 5019 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5020 *hltab = stl_hltab; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5021 sp = stl_hltab; |
7 | 5022 for (l = 0; l < itemcnt; l++) |
5023 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5024 if (stl_items[l].stl_type == Highlight) |
7 | 5025 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5026 sp->start = stl_items[l].stl_start; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5027 sp->userhl = stl_items[l].stl_minwid; |
681 | 5028 sp++; |
7 | 5029 } |
5030 } | |
681 | 5031 sp->start = NULL; |
5032 sp->userhl = 0; | |
5033 } | |
5034 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5035 // Store the info about tab pages labels. |
681 | 5036 if (tabtab != NULL) |
5037 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5038 *tabtab = stl_tabtab; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5039 sp = stl_tabtab; |
681 | 5040 for (l = 0; l < itemcnt; l++) |
5041 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5042 if (stl_items[l].stl_type == TabPage) |
681 | 5043 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5044 sp->start = stl_items[l].stl_start; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5045 sp->userhl = stl_items[l].stl_minwid; |
681 | 5046 sp++; |
5047 } | |
5048 } | |
5049 sp->start = NULL; | |
5050 sp->userhl = 0; | |
7 | 5051 } |
5052 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5053 // When inside update_screen we do not want redrawing a stausline, ruler, |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5054 // title, etc. to trigger another redraw, it may cause an endless loop. |
12572
31737ff54115
patch 8.0.1164: changing StatusLine highlight does not always work
Christian Brabandt <cb@256bit.org>
parents:
12479
diff
changeset
|
5055 if (updating_screen) |
31737ff54115
patch 8.0.1164: changing StatusLine highlight does not always work
Christian Brabandt <cb@256bit.org>
parents:
12479
diff
changeset
|
5056 { |
31737ff54115
patch 8.0.1164: changing StatusLine highlight does not always work
Christian Brabandt <cb@256bit.org>
parents:
12479
diff
changeset
|
5057 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
|
5058 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
|
5059 } |
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
|
5060 |
7 | 5061 return width; |
5062 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5063 #endif // FEAT_STL_OPT |
7 | 5064 |
686 | 5065 #if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \ |
5066 || defined(FEAT_GUI_TABLINE) || defined(PROTO) | |
7 | 5067 /* |
1869 | 5068 * Get relative cursor position in window into "buf[buflen]", in the form 99%, |
5069 * using "Top", "Bot" or "All" when appropriate. | |
7 | 5070 */ |
5071 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5072 get_rel_pos( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5073 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5074 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5075 int buflen) |
7 | 5076 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5077 long above; // number of lines above window |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5078 long below; // number of lines below window |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5079 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5080 if (buflen < 3) // need at least 3 chars for writing |
6466 | 5081 return; |
7 | 5082 above = wp->w_topline - 1; |
5083 #ifdef FEAT_DIFF | |
5084 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill; | |
6975 | 5085 if (wp->w_topline == 1 && wp->w_topfill >= 1) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5086 above = 0; // All buffer lines are displayed and there is an |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5087 // indication of filler lines, that can be considered |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5088 // seeing all lines. |
7 | 5089 #endif |
5090 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1; | |
5091 if (below <= 0) | |
1869 | 5092 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")), |
5093 (size_t)(buflen - 1)); | |
7 | 5094 else if (above <= 0) |
1869 | 5095 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1)); |
7 | 5096 else |
1869 | 5097 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L |
7 | 5098 ? (int)(above / ((above + below) / 100L)) |
5099 : (int)(above * 100L / (above + below))); | |
5100 } | |
5101 #endif | |
5102 | |
5103 /* | |
1869 | 5104 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file. |
7 | 5105 * Return TRUE if it was appended. |
5106 */ | |
1869 | 5107 static int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5108 append_arg_number( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5109 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5110 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5111 int buflen, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5112 int add_file) // Add "file" before the arg number |
7 | 5113 { |
5114 char_u *p; | |
5115 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5116 if (ARGCOUNT <= 1) // nothing to do |
7 | 5117 return FALSE; |
5118 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5119 p = buf + STRLEN(buf); // go to the end of the buffer |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5120 if (p - buf + 35 >= buflen) // getting too long |
7 | 5121 return FALSE; |
5122 *p++ = ' '; | |
5123 *p++ = '('; | |
5124 if (add_file) | |
5125 { | |
5126 STRCPY(p, "file "); | |
5127 p += 5; | |
5128 } | |
1869 | 5129 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)), |
5130 wp->w_arg_idx_invalid ? "(%d) of %d)" | |
7 | 5131 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT); |
5132 return TRUE; | |
5133 } | |
5134 | |
5135 /* | |
5136 * If fname is not a full path, make it a full path. | |
5137 * Returns pointer to allocated memory (NULL for failure). | |
5138 */ | |
5139 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5140 fix_fname(char_u *fname) |
7 | 5141 { |
5142 /* | |
5143 * Force expanding the path always for Unix, because symbolic links may | |
5144 * mess up the full path name, even though it starts with a '/'. | |
5145 * Also expand when there is ".." in the file name, try to remove it, | |
5146 * because "c:/src/../README" is equal to "c:/README". | |
1420 | 5147 * Similarly "c:/src//file" is equal to "c:/src/file". |
7 | 5148 * For MS-Windows also expand names like "longna~1" to "longname". |
5149 */ | |
1082 | 5150 #ifdef UNIX |
7 | 5151 return FullName_save(fname, TRUE); |
5152 #else | |
1420 | 5153 if (!vim_isAbsName(fname) |
5154 || strstr((char *)fname, "..") != NULL | |
5155 || strstr((char *)fname, "//") != NULL | |
5156 # ifdef BACKSLASH_IN_FILENAME | |
5157 || strstr((char *)fname, "\\\\") != NULL | |
5158 # endif | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
5159 # if defined(MSWIN) |
7 | 5160 || vim_strchr(fname, '~') != NULL |
1420 | 5161 # endif |
7 | 5162 ) |
5163 return FullName_save(fname, FALSE); | |
5164 | |
5165 fname = vim_strsave(fname); | |
5166 | |
1420 | 5167 # ifdef USE_FNAME_CASE |
15794
0d8291665b59
patch 8.1.0904: USE_LONG_FNAME never defined
Bram Moolenaar <Bram@vim.org>
parents:
15774
diff
changeset
|
5168 if (fname != NULL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5169 fname_case(fname, 0); // set correct case for file name |
1420 | 5170 # endif |
7 | 5171 |
5172 return fname; | |
5173 #endif | |
5174 } | |
5175 | |
5176 /* | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5177 * Make "*ffname" a full file name, set "*sfname" to "*ffname" if not NULL. |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5178 * "*ffname" becomes a pointer to allocated memory (or NULL). |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5179 * When resolving a link both "*sfname" and "*ffname" will point to the same |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5180 * allocated memory. |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5181 * The "*ffname" and "*sfname" pointer values on call will not be freed. |
18498
9e6d5a4abb1c
patch 8.1.2243: typos in comments
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
5182 * Note that the resulting "*ffname" pointer should be considered not allocated. |
7 | 5183 */ |
5184 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5185 fname_expand( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5186 buf_T *buf UNUSED, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5187 char_u **ffname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5188 char_u **sfname) |
7 | 5189 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5190 if (*ffname == NULL) // no file name given, nothing to do |
7 | 5191 return; |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5192 if (*sfname == NULL) // no short file name given, use ffname |
7 | 5193 *sfname = *ffname; |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5194 *ffname = fix_fname(*ffname); // expand to full path |
7 | 5195 |
5196 #ifdef FEAT_SHORTCUT | |
5197 if (!buf->b_p_bin) | |
5198 { | |
844 | 5199 char_u *rfname; |
7 | 5200 |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5201 // If the file name is a shortcut file, use the file it links to. |
15774
c4efa095f323
patch 8.1.0894: MS-Windows: resolve() does not return a reparse point
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5202 rfname = mch_resolve_path(*ffname, FALSE); |
844 | 5203 if (rfname != NULL) |
7 | 5204 { |
5205 vim_free(*ffname); | |
5206 *ffname = rfname; | |
5207 *sfname = rfname; | |
5208 } | |
5209 } | |
5210 #endif | |
5211 } | |
5212 | |
5213 /* | |
5214 * Open a window for a number of buffers. | |
5215 */ | |
5216 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5217 ex_buffer_all(exarg_T *eap) |
7 | 5218 { |
5219 buf_T *buf; | |
5220 win_T *wp, *wpnext; | |
5221 int split_ret = OK; | |
5222 int p_ea_save; | |
5223 int open_wins = 0; | |
5224 int r; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5225 int count; // Maximum number of windows to open. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5226 int all; // When TRUE also load inactive buffers. |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
5227 int had_tab = cmdmod.cmod_tab; |
698 | 5228 tabpage_T *tpnext; |
7 | 5229 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5230 if (eap->addr_count == 0) // make as many windows as possible |
7 | 5231 count = 9999; |
5232 else | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5233 count = eap->line2; // make as many windows as specified |
7 | 5234 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide) |
5235 all = FALSE; | |
5236 else | |
5237 all = TRUE; | |
5238 | |
5239 setpcmark(); | |
5240 | |
5241 #ifdef FEAT_GUI | |
5242 need_mouse_correct = TRUE; | |
5243 #endif | |
5244 | |
5245 /* | |
5246 * Close superfluous windows (two windows for the same buffer). | |
5247 * Also close windows that are not full-width. | |
5248 */ | |
698 | 5249 if (had_tab > 0) |
4354 | 5250 goto_tabpage_tp(first_tabpage, TRUE, TRUE); |
698 | 5251 for (;;) |
7 | 5252 { |
698 | 5253 tpnext = curtab->tp_next; |
5254 for (wp = firstwin; wp != NULL; wp = wpnext) | |
7 | 5255 { |
698 | 5256 wpnext = wp->w_next; |
706 | 5257 if ((wp->w_buffer->b_nwindows > 1 |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
5258 || ((cmdmod.cmod_split & WSP_VERT) |
698 | 5259 ? wp->w_height + wp->w_status_height < Rows - p_ch |
706 | 5260 - tabline_height() |
698 | 5261 : 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
|
5262 || (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
|
5263 && !(wp->w_closing || wp->w_buffer->b_locked > 0)) |
698 | 5264 { |
5265 win_close(wp, FALSE); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5266 wpnext = firstwin; // just in case an autocommand does |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5267 // something strange with windows |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5268 tpnext = first_tabpage; // start all over... |
698 | 5269 open_wins = 0; |
5270 } | |
5271 else | |
5272 ++open_wins; | |
7 | 5273 } |
698 | 5274 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5275 // Without the ":tab" modifier only do the current tab page. |
698 | 5276 if (had_tab == 0 || tpnext == NULL) |
5277 break; | |
4354 | 5278 goto_tabpage_tp(tpnext, TRUE, TRUE); |
7 | 5279 } |
5280 | |
5281 /* | |
5282 * Go through the buffer list. When a buffer doesn't have a window yet, | |
5283 * open one. Otherwise move the window to the right position. | |
5284 * Watch out for autocommands that delete buffers or windows! | |
5285 */ | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5286 // Don't execute Win/Buf Enter/Leave autocommands here. |
7 | 5287 ++autocmd_no_enter; |
5288 win_enter(lastwin, FALSE); | |
5289 ++autocmd_no_leave; | |
5290 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next) | |
5291 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5292 // Check if this buffer needs a window |
7 | 5293 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl) |
5294 continue; | |
5295 | |
701 | 5296 if (had_tab != 0) |
5297 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5298 // With the ":tab" modifier don't move the window. |
701 | 5299 if (buf->b_nwindows > 0) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5300 wp = lastwin; // buffer has a window, skip it |
701 | 5301 else |
5302 wp = NULL; | |
5303 } | |
5304 else | |
5305 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5306 // 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
|
5307 FOR_ALL_WINDOWS(wp) |
701 | 5308 if (wp->w_buffer == buf) |
5309 break; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5310 // If the buffer already has a window, move it |
701 | 5311 if (wp != NULL) |
5312 win_move_after(wp, curwin); | |
5313 } | |
5314 | |
5315 if (wp == NULL && split_ret == OK) | |
7 | 5316 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5317 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5318 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5319 set_bufref(&bufref, buf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5320 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5321 // Split the window and put the buffer in it |
7 | 5322 p_ea_save = p_ea; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5323 p_ea = TRUE; // use space from all windows |
7 | 5324 split_ret = win_split(0, WSP_ROOM | WSP_BELOW); |
5325 ++open_wins; | |
5326 p_ea = p_ea_save; | |
5327 if (split_ret == FAIL) | |
5328 continue; | |
5329 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5330 // Open the buffer in this window. |
7 | 5331 swap_exists_action = SEA_DIALOG; |
5332 set_curbuf(buf, DOBUF_GOTO); | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5333 if (!bufref_valid(&bufref)) |
20 | 5334 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5335 // autocommands deleted the buffer!!! |
20 | 5336 swap_exists_action = SEA_NONE; |
7 | 5337 break; |
5338 } | |
5339 if (swap_exists_action == SEA_QUIT) | |
5340 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5341 #if defined(FEAT_EVAL) |
24 | 5342 cleanup_T cs; |
5343 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5344 // Reset the error/interrupt/exception state here so that |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5345 // aborting() returns FALSE when closing a window. |
24 | 5346 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5347 #endif |
24 | 5348 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5349 // User selected Quit at ATTENTION prompt; close this window. |
7 | 5350 win_close(curwin, TRUE); |
5351 --open_wins; | |
5352 swap_exists_action = SEA_NONE; | |
602 | 5353 swap_exists_did_quit = TRUE; |
24 | 5354 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5355 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5356 // Restore the error/interrupt/exception state if not |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5357 // discarded by a new aborting error, interrupt, or uncaught |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5358 // exception. |
24 | 5359 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5360 #endif |
7 | 5361 } |
5362 else | |
5363 handle_swap_exists(NULL); | |
5364 } | |
5365 | |
5366 ui_breakcheck(); | |
5367 if (got_int) | |
5368 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5369 (void)vgetc(); // only break the file loading, not the rest |
7 | 5370 break; |
5371 } | |
20 | 5372 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5373 // Autocommands deleted the buffer or aborted script processing!!! |
20 | 5374 if (aborting()) |
5375 break; | |
5376 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5377 // When ":tab" was used open a new tab for a new window repeatedly. |
698 | 5378 if (had_tab > 0 && tabpage_index(NULL) <= p_tpm) |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
5379 cmdmod.cmod_tab = 9999; |
7 | 5380 } |
5381 --autocmd_no_enter; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5382 win_enter(firstwin, FALSE); // back to first window |
7 | 5383 --autocmd_no_leave; |
5384 | |
5385 /* | |
5386 * Close superfluous windows. | |
5387 */ | |
5388 for (wp = lastwin; open_wins > count; ) | |
5389 { | |
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
|
5390 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer) |
7 | 5391 || autowrite(wp->w_buffer, FALSE) == OK); |
5392 if (!win_valid(wp)) | |
5393 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5394 // BufWrite Autocommands made the window invalid, start over |
7 | 5395 wp = lastwin; |
5396 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5397 else if (r) |
7 | 5398 { |
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
|
5399 win_close(wp, !buf_hide(wp->w_buffer)); |
7 | 5400 --open_wins; |
5401 wp = lastwin; | |
5402 } | |
5403 else | |
5404 { | |
5405 wp = wp->w_prev; | |
5406 if (wp == NULL) | |
5407 break; | |
5408 } | |
5409 } | |
5410 } | |
5411 | |
5412 | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
5413 static int chk_modeline(linenr_T, int); |
717 | 5414 |
7 | 5415 /* |
5416 * do_modelines() - process mode lines for the current file | |
5417 * | |
717 | 5418 * "flags" can be: |
5419 * OPT_WINONLY only set options local to window | |
5420 * OPT_NOWIN don't set options local to window | |
5421 * | |
7 | 5422 * Returns immediately if the "ml" option isn't set. |
5423 */ | |
5424 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5425 do_modelines(int flags) |
7 | 5426 { |
23 | 5427 linenr_T lnum; |
5428 int nmlines; | |
5429 static int entered = 0; | |
7 | 5430 |
5431 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0) | |
5432 return; | |
5433 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5434 // Disallow recursive entry here. Can happen when executing a modeline |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5435 // triggers an autocommand, which reloads modelines with a ":do". |
7 | 5436 if (entered) |
5437 return; | |
5438 | |
5439 ++entered; | |
5440 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines; | |
5441 ++lnum) | |
717 | 5442 if (chk_modeline(lnum, flags) == FAIL) |
7 | 5443 nmlines = 0; |
5444 | |
5445 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines | |
5446 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum) | |
717 | 5447 if (chk_modeline(lnum, flags) == FAIL) |
7 | 5448 nmlines = 0; |
5449 --entered; | |
5450 } | |
5451 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5452 #include "version.h" // for version number |
7 | 5453 |
5454 /* | |
5455 * chk_modeline() - check a single line for a mode string | |
5456 * Return FAIL if an error encountered. | |
5457 */ | |
5458 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5459 chk_modeline( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5460 linenr_T lnum, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5461 int flags) // Same as for do_modelines(). |
7 | 5462 { |
5463 char_u *s; | |
5464 char_u *e; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5465 char_u *linecopy; // local copy of any modeline found |
7 | 5466 int prev; |
5467 int vers; | |
5468 int end; | |
5469 int retval = OK; | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14658
diff
changeset
|
5470 sctx_T save_current_sctx; |
23390
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5471 |
19075
af1eca322b9e
patch 8.2.0098: exe stack length can be wrong without being detected
Bram Moolenaar <Bram@vim.org>
parents:
19044
diff
changeset
|
5472 ESTACK_CHECK_DECLARATION |
7 | 5473 |
5474 prev = -1; | |
5475 for (s = ml_get(lnum); *s != NUL; ++s) | |
5476 { | |
5477 if (prev == -1 || vim_isspace(prev)) | |
5478 { | |
5479 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0) | |
5480 || STRNCMP(s, "vi:", (size_t)3) == 0) | |
5481 break; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5482 // Accept both "vim" and "Vim". |
5010
b614332f7df2
updated for version 7.3.1249
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
5483 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm') |
7 | 5484 { |
5485 if (s[3] == '<' || s[3] == '=' || s[3] == '>') | |
5486 e = s + 4; | |
5487 else | |
5488 e = s + 3; | |
5489 vers = getdigits(&e); | |
5490 if (*e == ':' | |
5043
53c1b30632df
updated for version 7.3.1265
Bram Moolenaar <bram@vim.org>
parents:
5010
diff
changeset
|
5491 && (s[0] != 'V' |
53c1b30632df
updated for version 7.3.1265
Bram Moolenaar <bram@vim.org>
parents:
5010
diff
changeset
|
5492 || STRNCMP(skipwhite(e + 1), "set", 3) == 0) |
7 | 5493 && (s[3] == ':' |
5494 || (VIM_VERSION_100 >= vers && isdigit(s[3])) | |
5495 || (VIM_VERSION_100 < vers && s[3] == '<') | |
5496 || (VIM_VERSION_100 > vers && s[3] == '>') | |
5497 || (VIM_VERSION_100 == vers && s[3] == '='))) | |
5498 break; | |
5499 } | |
5500 } | |
5501 prev = *s; | |
5502 } | |
5503 | |
5504 if (*s) | |
5505 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5506 do // skip over "ex:", "vi:" or "vim:" |
7 | 5507 ++s; |
5508 while (s[-1] != ':'); | |
5509 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5510 s = linecopy = vim_strsave(s); // copy the line, it will change |
7 | 5511 if (linecopy == NULL) |
5512 return FAIL; | |
5513 | |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5514 // prepare for emsg() |
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5515 estack_push(ETYPE_MODELINE, (char_u *)"modelines", lnum); |
19075
af1eca322b9e
patch 8.2.0098: exe stack length can be wrong without being detected
Bram Moolenaar <Bram@vim.org>
parents:
19044
diff
changeset
|
5516 ESTACK_CHECK_SETUP |
7 | 5517 |
5518 end = FALSE; | |
5519 while (end == FALSE) | |
5520 { | |
5521 s = skipwhite(s); | |
5522 if (*s == NUL) | |
5523 break; | |
5524 | |
5525 /* | |
5526 * Find end of set command: ':' or end of line. | |
5527 * Skip over "\:", replacing it with ":". | |
5528 */ | |
5529 for (e = s; *e != ':' && *e != NUL; ++e) | |
5530 if (e[0] == '\\' && e[1] == ':') | |
1618 | 5531 STRMOVE(e, e + 1); |
7 | 5532 if (*e == NUL) |
5533 end = TRUE; | |
5534 | |
5535 /* | |
5536 * If there is a "set" command, require a terminating ':' and | |
5537 * ignore the stuff after the ':'. | |
5538 * "vi:set opt opt opt: foo" -- foo not interpreted | |
5539 * "vi:opt opt opt: foo" -- foo interpreted | |
5540 * Accept "se" for compatibility with Elvis. | |
5541 */ | |
5542 if (STRNCMP(s, "set ", (size_t)4) == 0 | |
5543 || STRNCMP(s, "se ", (size_t)3) == 0) | |
5544 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5545 if (*e != ':') // no terminating ':'? |
7 | 5546 break; |
5547 end = TRUE; | |
5548 s = vim_strchr(s, ' ') + 1; | |
5549 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5550 *e = NUL; // truncate the set command |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5551 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5552 if (*s != NUL) // skip over an empty "::" |
7 | 5553 { |
15207
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15138
diff
changeset
|
5554 int secure_save = secure; |
23390
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5555 |
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5556 save_current_sctx = current_sctx; |
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5557 current_sctx.sc_version = 1; |
7 | 5558 #ifdef FEAT_EVAL |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14658
diff
changeset
|
5559 current_sctx.sc_sid = SID_MODELINE; |
15008
67e3103d6e18
patch 8.1.0515: reloading a script gives errors for existing functions
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
5560 current_sctx.sc_seq = 0; |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5561 current_sctx.sc_lnum = lnum; |
23390
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5562 #endif |
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5563 |
15054
2d6e930c7613
patch 8.1.0538: evaluating a modeline might invoke using a shell command
Bram Moolenaar <Bram@vim.org>
parents:
15008
diff
changeset
|
5564 // Make sure no risky things are executed as a side effect. |
16082
2699db3e4d9d
patch 8.1.1046: the "secure" variable is used inconsistently
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
5565 secure = 1; |
15054
2d6e930c7613
patch 8.1.0538: evaluating a modeline might invoke using a shell command
Bram Moolenaar <Bram@vim.org>
parents:
15008
diff
changeset
|
5566 |
717 | 5567 retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags); |
15054
2d6e930c7613
patch 8.1.0538: evaluating a modeline might invoke using a shell command
Bram Moolenaar <Bram@vim.org>
parents:
15008
diff
changeset
|
5568 |
15207
6ab9c18708c4
patch 8.1.0613: when executing an insecure function the secure flag is stuck
Bram Moolenaar <Bram@vim.org>
parents:
15138
diff
changeset
|
5569 secure = secure_save; |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14658
diff
changeset
|
5570 current_sctx = save_current_sctx; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5571 if (retval == FAIL) // stop if error found |
7 | 5572 break; |
5573 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5574 s = e + 1; // advance to next part |
7 | 5575 } |
5576 | |
19075
af1eca322b9e
patch 8.2.0098: exe stack length can be wrong without being detected
Bram Moolenaar <Bram@vim.org>
parents:
19044
diff
changeset
|
5577 ESTACK_CHECK_NOW |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5578 estack_pop(); |
7 | 5579 vim_free(linecopy); |
5580 } | |
5581 return retval; | |
5582 } | |
5583 | |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5584 /* |
14433
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5585 * Return TRUE if "buf" is a normal buffer, 'buftype' is empty. |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5586 */ |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5587 int |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5588 bt_normal(buf_T *buf) |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5589 { |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5590 return buf != NULL && buf->b_p_bt[0] == NUL; |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5591 } |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5592 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5593 #if defined(FEAT_QUICKFIX) || defined(PROTO) |
14433
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5594 /* |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5595 * 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
|
5596 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5597 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5598 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
|
5599 { |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5600 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
|
5601 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5602 #endif |
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5603 |
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5604 #if defined(FEAT_TERMINAL) || defined(PROTO) |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5605 /* |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5606 * 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
|
5607 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5608 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5609 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
|
5610 { |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5611 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
|
5612 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5613 #endif |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5614 |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5615 /* |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5616 * 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
|
5617 */ |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5618 int |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5619 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
|
5620 { |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5621 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
|
5622 } |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5623 |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5624 /* |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5625 * Return TRUE if "buf" is a prompt buffer. |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5626 */ |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5627 int |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5628 bt_prompt(buf_T *buf) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5629 { |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5630 return buf != NULL && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'r'; |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5631 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5632 |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5633 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5634 * Return TRUE if "buf" is a buffer for a popup window. |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5635 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5636 int |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5637 bt_popup(buf_T *buf) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5638 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5639 return buf != NULL && buf->b_p_bt != NULL |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5640 && buf->b_p_bt[0] == 'p' && buf->b_p_bt[1] == 'o'; |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5641 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5642 |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5643 /* |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
5644 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt" |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
5645 * buffer. This means the buffer name is not a file name. |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5646 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5647 int |
17095
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5648 bt_nofilename(buf_T *buf) |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5649 { |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5650 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
|
5651 || buf->b_p_bt[0] == 'a' |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5652 || buf->b_p_bt[0] == 't' |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5653 || buf->b_p_bt[0] == 'p'); |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5654 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5655 |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5656 /* |
17095
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5657 * Return TRUE if "buf" has 'buftype' set to "nofile". |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5658 */ |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5659 int |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5660 bt_nofile(buf_T *buf) |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5661 { |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5662 return buf != NULL && buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f'; |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5663 } |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5664 |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5665 /* |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
5666 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt" |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
5667 * buffer. |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5668 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5669 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5670 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
|
5671 { |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13931
diff
changeset
|
5672 return buf != NULL && (buf->b_p_bt[0] == 'n' |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5673 || buf->b_p_bt[0] == 't' |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5674 || buf->b_p_bt[0] == 'p'); |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5675 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5676 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5677 #if defined(FEAT_QUICKFIX) || defined(PROTO) |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5678 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5679 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
|
5680 { |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5681 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
|
5682 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
5683 emsg(_("E382: Cannot write, 'buftype' option is set")); |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5684 return TRUE; |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5685 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5686 return FALSE; |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5687 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5688 #endif |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5689 |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5690 /* |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5691 * 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
|
5692 * and 'bufhidden'. |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5693 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5694 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5695 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
|
5696 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5697 // 'bufhidden' overrules 'hidden' and ":hide", check it first |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5698 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
|
5699 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5700 case 'u': // "unload" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5701 case 'w': // "wipe" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5702 case 'd': return FALSE; // "delete" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5703 case 'h': return TRUE; // "hide" |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5704 } |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
5705 return (p_hid || (cmdmod.cmod_flags & CMOD_HIDE)); |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5706 } |
7 | 5707 |
5708 /* | |
5709 * Return special buffer name. | |
5710 * Returns NULL when the buffer has a normal file name. | |
5711 */ | |
3839 | 5712 char_u * |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5713 buf_spname(buf_T *buf) |
7 | 5714 { |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
5715 #if defined(FEAT_QUICKFIX) |
7 | 5716 if (bt_quickfix(buf)) |
643 | 5717 { |
5718 /* | |
15740
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5719 * Differentiate between the quickfix and location list buffers using |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5720 * the buffer number stored in the global quickfix stack. |
643 | 5721 */ |
15740
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5722 if (buf->b_fnum == qf_stack_get_bufnr()) |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5723 return (char_u *)_(msg_qflist); |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5724 else |
3839 | 5725 return (char_u *)_(msg_loclist); |
643 | 5726 } |
7 | 5727 #endif |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5728 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5729 // There is no _file_ when 'buftype' is "nofile", b_sfname |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5730 // contains the name as specified by the user. |
17095
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5731 if (bt_nofilename(buf)) |
7 | 5732 { |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5733 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5734 if (buf->b_term != NULL) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5735 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
|
5736 #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
|
5737 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
|
5738 return buf->b_fname; |
14037
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
5739 #ifdef FEAT_JOB_CHANNEL |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
5740 if (bt_prompt(buf)) |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
5741 return (char_u *)_("[Prompt]"); |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
5742 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18757
diff
changeset
|
5743 #ifdef FEAT_PROP_POPUP |
16859
0154363d3b98
patch 8.1.1431: popup window listed as "Scratch"
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
5744 if (bt_popup(buf)) |
0154363d3b98
patch 8.1.1431: popup window listed as "Scratch"
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
5745 return (char_u *)_("[Popup]"); |
0154363d3b98
patch 8.1.1431: popup window listed as "Scratch"
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
5746 #endif |
3839 | 5747 return (char_u *)_("[Scratch]"); |
7 | 5748 } |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5749 |
7 | 5750 if (buf->b_fname == NULL) |
22822
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5751 return buf_get_fname(buf); |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5752 return NULL; |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5753 } |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5754 |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5755 /* |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5756 * Get "buf->b_fname", use "[No Name]" if it is NULL. |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5757 */ |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5758 char_u * |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5759 buf_get_fname(buf_T *buf) |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5760 { |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5761 if (buf->b_fname == NULL) |
3839 | 5762 return (char_u *)_("[No Name]"); |
22822
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5763 return buf->b_fname; |
7 | 5764 } |
5765 | |
5766 /* | |
5767 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed. | |
5768 */ | |
5769 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5770 set_buflisted(int on) |
7 | 5771 { |
5772 if (on != curbuf->b_p_bl) | |
5773 { | |
5774 curbuf->b_p_bl = on; | |
5775 if (on) | |
5776 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf); | |
5777 else | |
5778 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); | |
5779 } | |
5780 } | |
5781 | |
5782 /* | |
5783 * Read the file for "buf" again and check if the contents changed. | |
5784 * Return TRUE if it changed or this could not be checked. | |
5785 */ | |
5786 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5787 buf_contents_changed(buf_T *buf) |
7 | 5788 { |
5789 buf_T *newbuf; | |
5790 int differ = TRUE; | |
5791 linenr_T lnum; | |
5792 aco_save_T aco; | |
5793 exarg_T ea; | |
5794 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5795 // Allocate a buffer without putting it in the buffer list. |
7 | 5796 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); |
5797 if (newbuf == NULL) | |
5798 return TRUE; | |
5799 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5800 // Force the 'fileencoding' and 'fileformat' to be equal. |
7 | 5801 if (prep_exarg(&ea, buf) == FAIL) |
5802 { | |
5803 wipe_buffer(newbuf, FALSE); | |
5804 return TRUE; | |
5805 } | |
5806 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5807 // set curwin/curbuf to buf and save a few things |
7 | 5808 aucmd_prepbuf(&aco, newbuf); |
5809 | |
625 | 5810 if (ml_open(curbuf) == OK |
7 | 5811 && readfile(buf->b_ffname, buf->b_fname, |
5812 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, | |
5813 &ea, READ_NEW | READ_DUMMY) == OK) | |
5814 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5815 // compare the two files line by line |
7 | 5816 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count) |
5817 { | |
5818 differ = FALSE; | |
5819 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
5820 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0) | |
5821 { | |
5822 differ = TRUE; | |
5823 break; | |
5824 } | |
5825 } | |
5826 } | |
5827 vim_free(ea.cmd); | |
5828 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5829 // restore curwin/curbuf and a few other things |
7 | 5830 aucmd_restbuf(&aco); |
5831 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5832 if (curbuf != newbuf) // safety check |
7 | 5833 wipe_buffer(newbuf, FALSE); |
5834 | |
5835 return differ; | |
5836 } | |
5837 | |
5838 /* | |
5839 * Wipe out a buffer and decrement the last buffer number if it was used for | |
5840 * this buffer. Call this to wipe out a temp buffer that does not contain any | |
5841 * marks. | |
5842 */ | |
5843 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5844 wipe_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5845 buf_T *buf, |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
5846 int aucmd) // When TRUE trigger autocommands. |
7 | 5847 { |
5848 if (buf->b_fnum == top_file_num - 1) | |
5849 --top_file_num; | |
5850 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5851 if (!aucmd) // Don't trigger BufDelete autocommands here. |
1410 | 5852 block_autocmds(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5853 |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
5854 close_buffer(NULL, buf, DOBUF_WIPE, FALSE, TRUE); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5855 |
7 | 5856 if (!aucmd) |
1410 | 5857 unblock_autocmds(); |
7 | 5858 } |