Mercurial > vim
annotate src/buffer.c @ 31408:c82cb53474ee v9.0.1037
patch 9.0.1037: lalloc(0) error for a class without members
Commit: https://github.com/vim/vim/commit/98aeb2100c2759111f93f0f0857e93d98afdc88a
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 8 22:09:14 2022 +0000
patch 9.0.1037: lalloc(0) error for a class without members
Problem: lalloc(0) error for a class without members.
Solution: Don't allocate room for members if there aren't any.
Don't create the class if there was an error.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 08 Dec 2022 23:15:03 +0100 |
parents | d8e7d725a666 |
children | bb797331e21b |
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 |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
47 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
|
48 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
|
49 static void free_buffer(buf_T *); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
50 static void free_buffer_stuff(buf_T *buf, int free_options); |
29871
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
51 static int bt_nofileread(buf_T *buf); |
30747
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
52 static void no_write_message_buf(buf_T *buf); |
7 | 53 |
54 #ifdef UNIX | |
55 # define dev_T dev_t | |
56 #else | |
57 # define dev_T unsigned | |
58 #endif | |
59 | |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
60 #define FOR_ALL_BUFS_FROM_LAST(buf) \ |
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
61 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
|
62 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
63 #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
|
64 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
|
65 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
|
66 #endif |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
67 |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
68 // 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
|
69 static int buf_free_count = 0; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
70 |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
71 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
|
72 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
|
73 |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
74 /* |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
75 * 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
|
76 */ |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
77 int |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
78 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
|
79 { |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
80 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
|
81 } |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
82 |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
83 /* |
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16872
diff
changeset
|
84 * 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
|
85 */ |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
86 static int |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
87 read_buffer( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
88 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
|
89 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
|
90 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
|
91 { |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
92 int retval = OK; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
93 linenr_T line_count; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
94 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
95 // Read from the buffer which the text is already filled in and append at |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
96 // the end. This makes it possible to retry when 'fileformat' or |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
97 // 'fileencoding' was guessed wrong. |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
98 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
|
99 retval = readfile( |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
100 read_stdin ? NULL : curbuf->b_ffname, |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
101 read_stdin ? NULL : curbuf->b_fname, |
25852
336e2d9924e6
patch 8.2.3460: some type casts are not needed
Bram Moolenaar <Bram@vim.org>
parents:
25696
diff
changeset
|
102 line_count, (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
|
103 flags | READ_BUFFER); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
104 if (retval == OK) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
105 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
106 // Delete the binary lines. |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
107 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
|
108 ml_delete((linenr_T)1); |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
109 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
110 else |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
111 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
112 // Delete the converted lines. |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
113 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
|
114 ml_delete(line_count); |
9828
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 // 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
|
117 curwin->w_cursor.lnum = 1; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
118 curwin->w_cursor.col = 0; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
119 |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
120 if (read_stdin) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
121 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
122 // 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
|
123 // 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
|
124 if (!readonlymode && !BUFEMPTY()) |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
125 changed(); |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
126 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
|
127 unchanged(curbuf, FALSE, TRUE); |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
128 |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
129 if (retval == OK) |
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
130 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
131 #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
|
132 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
|
133 curbuf, &retval); |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
134 #else |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
135 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
|
136 #endif |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
137 } |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
138 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
139 return retval; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
140 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
141 |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
142 #if defined(FEAT_EVAL) || defined(PROTO) |
7 | 143 /* |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
144 * 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
|
145 */ |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
146 void |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
147 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
|
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 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
|
150 { |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
151 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
|
152 |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
153 // Make sure the buffer is in a window. If not then skip it. |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
154 aucmd_prepbuf(&aco, buf); |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
155 if (curbuf == buf) |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
156 { |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
157 if (swap_exists_action != SEA_READONLY) |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
158 swap_exists_action = SEA_NONE; |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
159 open_buffer(FALSE, NULL, 0); |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
160 aucmd_restbuf(&aco); |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
161 } |
17225
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 } |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
164 #endif |
17225
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
165 |
09fa437d33d8
patch 8.1.1612: cannot show an existing buffer in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17151
diff
changeset
|
166 /* |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
167 * 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
|
168 * memory. |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
169 * Return FAIL for failure, OK otherwise. |
7 | 170 */ |
171 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
172 open_buffer( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
173 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
|
174 exarg_T *eap, // for forced 'ff' and 'fenc' or NULL |
29867
6eaef7375f17
patch 9.0.0272: BufReadCmd not triggered when loading a "nofile" buffer
Bram Moolenaar <Bram@vim.org>
parents:
29855
diff
changeset
|
175 int flags_arg) // extra flags for readfile() |
7 | 176 { |
29867
6eaef7375f17
patch 9.0.0272: BufReadCmd not triggered when loading a "nofile" buffer
Bram Moolenaar <Bram@vim.org>
parents:
29855
diff
changeset
|
177 int flags = flags_arg; |
7 | 178 int retval = OK; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
179 bufref_T old_curbuf; |
4139 | 180 #ifdef FEAT_SYN_HL |
181 long old_tw = curbuf->b_p_tw; | |
182 #endif | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
183 int read_fifo = FALSE; |
7 | 184 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
185 // The 'readonly' flag is only set when BF_NEVERLOADED is being reset. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
186 // When re-entering the same buffer, it should not change, because the |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
187 // user may have reset the flag by hand. |
7 | 188 if (readonlymode && curbuf->b_ffname != NULL |
189 && (curbuf->b_flags & BF_NEVERLOADED)) | |
190 curbuf->b_p_ro = TRUE; | |
191 | |
625 | 192 if (ml_open(curbuf) == FAIL) |
7 | 193 { |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
194 // There MUST be a memfile, otherwise we can't do anything |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
195 // If we can't create one for the current buffer, take another buffer |
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; | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
200 // If there is no memfile at all, exit. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
201 // This is OK, since there are no changes to lose. |
7 | 202 if (curbuf == NULL) |
203 { | |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
204 emsg(_(e_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
|
205 |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
206 // 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
|
207 // will work. |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
208 v_dying = 2; |
7 | 209 getout(2); |
210 } | |
17797
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
211 |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
212 emsg(_(e_cannot_allocate_buffer_using_other_one)); |
7 | 213 enter_buffer(curbuf); |
4139 | 214 #ifdef FEAT_SYN_HL |
215 if (old_tw != curbuf->b_p_tw) | |
216 check_colorcolumn(curwin); | |
217 #endif | |
7 | 218 return FAIL; |
219 } | |
220 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
221 // 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
|
222 // reading the file. |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
223 set_bufref(&old_curbuf, curbuf); |
7 | 224 modified_was_set = FALSE; |
225 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
226 // mark cursor position as being invalid |
2091
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
227 curwin->w_valid = 0; |
7 | 228 |
29867
6eaef7375f17
patch 9.0.0272: BufReadCmd not triggered when loading a "nofile" buffer
Bram Moolenaar <Bram@vim.org>
parents:
29855
diff
changeset
|
229 // A buffer without an actual file should not use the buffer name to read a |
6eaef7375f17
patch 9.0.0272: BufReadCmd not triggered when loading a "nofile" buffer
Bram Moolenaar <Bram@vim.org>
parents:
29855
diff
changeset
|
230 // file. |
29871
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
231 if (bt_nofileread(curbuf)) |
29867
6eaef7375f17
patch 9.0.0272: BufReadCmd not triggered when loading a "nofile" buffer
Bram Moolenaar <Bram@vim.org>
parents:
29855
diff
changeset
|
232 flags |= READ_NOFILE; |
6eaef7375f17
patch 9.0.0272: BufReadCmd not triggered when loading a "nofile" buffer
Bram Moolenaar <Bram@vim.org>
parents:
29855
diff
changeset
|
233 |
29845
349517ab7398
patch 9.0.0261: bufload() reads a file even if the name is not a file name
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
234 // Read the file if there is one. |
7 | 235 if (curbuf->b_ffname != NULL |
236 #ifdef FEAT_NETBEANS_INTG | |
237 && netbeansReadFile | |
238 #endif | |
239 ) | |
240 { | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
241 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
|
242 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
243 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
|
244 int perm; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
245 #endif |
7 | 246 #ifdef FEAT_NETBEANS_INTG |
247 int oldFire = netbeansFireChanges; | |
248 | |
249 netbeansFireChanges = 0; | |
250 #endif | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
251 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
252 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
|
253 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
|
254 || S_ISSOCK(perm) |
9911
74e345d2878c
commit https://github.com/vim/vim/commit/f04507d132fbcb63999167ec006fc6e700b5af4f
Christian Brabandt <cb@256bit.org>
parents:
9875
diff
changeset
|
255 # ifdef OPEN_CHR_FILES |
74e345d2878c
commit https://github.com/vim/vim/commit/f04507d132fbcb63999167ec006fc6e700b5af4f
Christian Brabandt <cb@256bit.org>
parents:
9875
diff
changeset
|
256 || (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
|
257 # endif |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
258 )) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
259 read_fifo = TRUE; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
260 if (read_fifo) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
261 curbuf->b_p_bin = TRUE; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
262 #endif |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
263 if (shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
264 msg_silent = 1; |
7 | 265 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
|
266 (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
|
267 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
|
268 #ifdef UNIX |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
269 if (read_fifo) |
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 curbuf->b_p_bin = save_bin; |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
272 if (retval == OK) |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
273 retval = read_buffer(FALSE, eap, flags); |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
274 } |
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
275 #endif |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
276 msg_silent = old_msg_silent; |
7 | 277 #ifdef FEAT_NETBEANS_INTG |
278 netbeansFireChanges = oldFire; | |
279 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
280 // 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
|
281 if (bt_help(curbuf)) |
7 | 282 fix_help_buffer(); |
283 } | |
284 else if (read_stdin) | |
285 { | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
286 int save_bin = curbuf->b_p_bin; |
7 | 287 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
288 // First read the text in binary mode into the buffer. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
289 // Then read from that same buffer and append at the end. This makes |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
290 // it possible to retry when 'fileformat' or 'fileencoding' was |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
291 // guessed wrong. |
7 | 292 curbuf->b_p_bin = TRUE; |
293 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
|
294 (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
|
295 flags | (READ_NEW + READ_STDIN)); |
7 | 296 curbuf->b_p_bin = save_bin; |
297 if (retval == OK) | |
9828
e84e45786691
commit https://github.com/vim/vim/commit/f71d7b9ee5ceba75f70c30845332ddd728fd16c6
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
298 retval = read_buffer(TRUE, eap, flags); |
7 | 299 } |
300 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
301 // if first time loading this buffer, init b_chartab[] |
7 | 302 if (curbuf->b_flags & BF_NEVERLOADED) |
5438 | 303 { |
7 | 304 (void)buf_init_chartab(curbuf, FALSE); |
5438 | 305 parse_cino(curbuf); |
306 } | |
7 | 307 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
308 // Set/reset the Changed flag first, autocmds may change the buffer. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
309 // Apply the automatic commands, before processing the modelines. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
310 // So the modelines have priority over autocommands. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
311 // |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
312 // 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
|
313 // 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
|
314 // When interrupted and 'cpoptions' contains 'i' set changed flag. |
1291 | 315 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
|
316 || 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
|
317 #ifdef FEAT_EVAL |
7 | 318 || (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL) |
319 #endif | |
1291 | 320 ) |
7 | 321 changed(); |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10432
diff
changeset
|
322 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
|
323 unchanged(curbuf, FALSE, TRUE); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
324 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
|
325 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
326 // 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
|
327 // 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
|
328 curbuf->b_last_changedtick = CHANGEDTICK(curbuf); |
25967
46205b125fbd
patch 8.2.3517: TextChanged does not trigger after TextChangedI
Bram Moolenaar <Bram@vim.org>
parents:
25913
diff
changeset
|
329 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf); |
13519
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 { |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
362 // The autocommands may have changed the current buffer. Apply the |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
363 // modelines to the correct buffer, if it still exists and is loaded. |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
364 if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL) |
7 | 365 { |
366 aco_save_T aco; | |
367 | |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
368 // Go to the buffer that was opened, make sure it is in a window. |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
369 // If not then skip it. |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
370 aucmd_prepbuf(&aco, old_curbuf.br_buf); |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
371 if (curbuf == old_curbuf.br_buf) |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
372 { |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
373 do_modelines(0); |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
374 curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED); |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
375 |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
376 if ((flags & READ_NOWINENTER) == 0) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
377 #ifdef FEAT_EVAL |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
378 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
379 FALSE, curbuf, &retval); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
380 #else |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
381 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
382 FALSE, curbuf); |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
383 #endif |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
384 |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
385 // restore curwin/curbuf and a few other things |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
386 aucmd_restbuf(&aco); |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
387 } |
7 | 388 } |
389 } | |
390 | |
391 return retval; | |
392 } | |
393 | |
394 /* | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
395 * 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
|
396 */ |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
397 void |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
398 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
|
399 { |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
400 bufref->br_buf = buf; |
11531
e349dc7889f5
patch 8.0.0648: possible use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
401 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
|
402 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
|
403 } |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
404 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
405 /* |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
406 * 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
|
407 * 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
|
408 * 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
|
409 * 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
|
410 * 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
|
411 */ |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
412 int |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
413 bufref_valid(bufref_T *bufref) |
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 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
|
416 ? 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
|
417 && 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
|
418 } |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
419 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
420 /* |
7 | 421 * 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
|
422 * This can be slow if there are many buffers, prefer using bufref_valid(). |
7 | 423 */ |
424 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
425 buf_valid(buf_T *buf) |
7 | 426 { |
427 buf_T *bp; | |
428 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
429 // 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
|
430 // one. |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
431 FOR_ALL_BUFS_FROM_LAST(bp) |
7 | 432 if (bp == buf) |
433 return TRUE; | |
434 return FALSE; | |
435 } | |
436 | |
437 /* | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
438 * 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
|
439 */ |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
440 static hashtab_T buf_hashtab; |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
441 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
442 static void |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
443 buf_hashtab_add(buf_T *buf) |
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 sprintf((char *)buf->b_key, "%x", buf->b_fnum); |
31231
684e6dfa2fba
patch 9.0.0949: crash when unletting a variable while listing variables
Bram Moolenaar <Bram@vim.org>
parents:
31018
diff
changeset
|
446 if (hash_add(&buf_hashtab, buf->b_key, "create buffer") == FAIL) |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
447 emsg(_(e_buffer_cannot_be_registered)); |
9511
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 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
450 static void |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
451 buf_hashtab_remove(buf_T *buf) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
452 { |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
453 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
|
454 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
455 if (!HASHITEM_EMPTY(hi)) |
31231
684e6dfa2fba
patch 9.0.0949: crash when unletting a variable while listing variables
Bram Moolenaar <Bram@vim.org>
parents:
31018
diff
changeset
|
456 hash_remove(&buf_hashtab, hi, "close buffer"); |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
457 } |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
458 |
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
|
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 * 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
|
461 * 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
|
462 * 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
|
463 */ |
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 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
|
465 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
|
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 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
|
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 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
|
470 { |
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
471 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
|
472 |
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
|
473 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
|
474 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
|
475 { |
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
|
476 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
|
477 break; |
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
478 } |
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 } |
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 if (!can_unload) |
30558
8e73ecbee60d
patch 9.0.0614: SpellFileMissing autocmd may delete buffer
Bram Moolenaar <Bram@vim.org>
parents:
29871
diff
changeset
|
481 { |
8e73ecbee60d
patch 9.0.0614: SpellFileMissing autocmd may delete buffer
Bram Moolenaar <Bram@vim.org>
parents:
29871
diff
changeset
|
482 char_u *fname = buf->b_fname != NULL ? buf->b_fname : buf->b_ffname; |
8e73ecbee60d
patch 9.0.0614: SpellFileMissing autocmd may delete buffer
Bram Moolenaar <Bram@vim.org>
parents:
29871
diff
changeset
|
483 |
8e73ecbee60d
patch 9.0.0614: SpellFileMissing autocmd may delete buffer
Bram Moolenaar <Bram@vim.org>
parents:
29871
diff
changeset
|
484 semsg(_(e_attempt_to_delete_buffer_that_is_in_use_str), |
8e73ecbee60d
patch 9.0.0614: SpellFileMissing autocmd may delete buffer
Bram Moolenaar <Bram@vim.org>
parents:
29871
diff
changeset
|
485 fname != NULL ? fname : (char_u *)"[No Name]"); |
8e73ecbee60d
patch 9.0.0614: SpellFileMissing autocmd may delete buffer
Bram Moolenaar <Bram@vim.org>
parents:
29871
diff
changeset
|
486 } |
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
|
487 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
|
488 } |
13720
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
489 |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
490 /* |
7 | 491 * Close the link to a buffer. |
492 * "action" is used when there is no longer a window for the buffer. | |
493 * It can be: | |
494 * 0 buffer becomes hidden | |
495 * DOBUF_UNLOAD buffer is unloaded | |
496 * DOBUF_DELETE buffer is unloaded and removed from buffer list | |
497 * 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
|
498 * DOBUF_WIPE_REUSE idem, and add to buf_reuse list |
7 | 499 * When doing all but the first one on the current buffer, the caller should |
500 * get a new buffer very soon! | |
501 * | |
502 * The 'bufhidden' option can force freeing and deleting. | |
3365 | 503 * |
504 * When "abort_if_last" is TRUE then do not close the buffer if autocommands | |
505 * cause there to be only one window with this buffer. e.g. when ":quit" is | |
506 * 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
|
507 * |
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
508 * 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
|
509 * |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
510 * Return TRUE when we got to the end and b_nwindows was decremented. |
7 | 511 */ |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
512 int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
513 close_buffer( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
514 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
|
515 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
516 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
|
517 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
|
518 int ignore_abort) |
7 | 519 { |
520 int is_curbuf; | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1883
diff
changeset
|
521 int nwindows; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
522 bufref_T bufref; |
10320
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10184
diff
changeset
|
523 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
|
524 win_T *the_curwin = curwin; |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
525 tabpage_T *the_curtab = curtab; |
7 | 526 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
|
527 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
|
528 int del_buf = (action == DOBUF_DEL || wipe_buf); |
7 | 529 |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
530 CHECK_CURBUF; |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
531 |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
532 // Force unloading or deleting when 'bufhidden' says so. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
533 // The caller must take care of NOT deleting/freeing when 'bufhidden' is |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
534 // "hide" (otherwise we could never free or delete a buffer). |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
535 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
|
536 { |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
537 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
|
538 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
|
539 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
540 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
|
541 { |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
542 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
|
543 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
|
544 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
|
545 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
546 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
|
547 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
|
548 |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
549 #ifdef FEAT_TERMINAL |
30751
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
550 // depending on how we get here b_nwindows may already be zero |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
551 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
|
552 { |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
553 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
|
554 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
|
555 { |
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
|
556 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
|
557 { |
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
|
558 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
|
559 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
|
560 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
561 // 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
|
562 free_terminal(buf); |
30751
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
563 |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
564 // A terminal buffer is wiped out when job has finished. |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
565 del_buf = TRUE; |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
566 unload_buf = TRUE; |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
567 wipe_buf = TRUE; |
13720
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
568 } |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
569 else |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
570 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
571 // 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
|
572 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
|
573 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
|
574 } |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
575 } |
22987
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
576 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
|
577 { |
1456b8e4d489
patch 8.2.2040: terminal buffer disappears even when 'bufhidden' is "hide"
Bram Moolenaar <Bram@vim.org>
parents:
22822
diff
changeset
|
578 // 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
|
579 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
|
580 } |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
581 else |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
582 { |
30751
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
583 if (del_buf || unload_buf) |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
584 { |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
585 // A terminal buffer is wiped out if the job has finished. |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
586 // We only do this when there's an intention to unload the |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
587 // buffer. This way, :hide and other similar commands won't |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
588 // wipe the buffer. |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
589 del_buf = TRUE; |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
590 unload_buf = TRUE; |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
591 wipe_buf = TRUE; |
9889ff80547e
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
592 } |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
593 } |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
594 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
|
595 } |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
596 #endif |
7 | 597 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
598 // 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
|
599 // 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
|
600 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
|
601 return FALSE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
602 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
603 // 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
|
604 if (win != NULL && win_valid_any_tab(win)) |
7 | 605 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
606 // 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
|
607 // 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
|
608 // 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
|
609 // 'foldmethod' may be lost with a ":only" command. |
7 | 610 if (buf->b_nwindows == 1) |
611 set_last_cursor(win); | |
612 buflist_setfpos(buf, win, | |
613 win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum, | |
614 win->w_cursor.col, TRUE); | |
615 } | |
616 | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
617 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
618 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
619 // When the buffer is no longer in a window, trigger BufWinLeave |
7 | 620 if (buf->b_nwindows == 1) |
621 { | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
622 ++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
|
623 ++buf->b_locked_split; |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
624 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
|
625 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
626 && !bufref_valid(&bufref)) |
3365 | 627 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
628 // Autocommands deleted the buffer. |
3570 | 629 aucmd_abort: |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
630 emsg(_(e_autocommands_caused_command_to_abort)); |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
631 return FALSE; |
3365 | 632 } |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
633 --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
|
634 --buf->b_locked_split; |
3570 | 635 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
|
636 // Autocommands made this the only window. |
3570 | 637 goto aucmd_abort; |
7 | 638 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
639 // 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
|
640 // BufHidden |
7 | 641 if (!unload_buf) |
642 { | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
643 ++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
|
644 ++buf->b_locked_split; |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
645 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
|
646 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
647 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
648 // Autocommands deleted the buffer. |
3570 | 649 goto aucmd_abort; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
650 --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
|
651 --buf->b_locked_split; |
3570 | 652 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
|
653 // Autocommands made this the only window. |
3570 | 654 goto aucmd_abort; |
7 | 655 } |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
656 #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
|
657 // 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
|
658 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
|
659 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
660 #endif |
7 | 661 } |
10114
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
662 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
663 // 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
|
664 // 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
|
665 // "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
|
666 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
|
667 { |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
668 block_autocmds(); |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
669 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
|
670 unblock_autocmds(); |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
671 } |
aa2219afd1c2
commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents:
10108
diff
changeset
|
672 |
7 | 673 nwindows = buf->b_nwindows; |
674 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
675 // decrease the link count from windows (unless not in any window) |
7 | 676 if (buf->b_nwindows > 0) |
677 --buf->b_nwindows; | |
678 | |
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
|
679 #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
|
680 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
|
681 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
|
682 #endif |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
683 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
684 // 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
|
685 // unloaded. |
7 | 686 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
|
687 return FALSE; |
7 | 688 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
689 // Always remove the buffer when there is no file name. |
7 | 690 if (buf->b_ffname == NULL) |
691 del_buf = TRUE; | |
692 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
693 // 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
|
694 // anything. |
10184
4669440016f2
commit https://github.com/vim/vim/commit/4930a76a0357f76a829eafe4985d04cf3ce0e9e0
Christian Brabandt <cb@256bit.org>
parents:
10156
diff
changeset
|
695 if (buf == curbuf && VIsual_active |
10156
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
696 #if defined(EXITFREE) |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
697 && !entered_free_all_mem |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
698 #endif |
f1ad88f3834c
commit https://github.com/vim/vim/commit/9a27c7fde6d453d9892b6f6baa756bce4d6d419d
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
699 ) |
10154
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
700 end_visual_mode(); |
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
701 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
702 // Free all things allocated for this buffer. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
703 // Also calls the "BufDelete" autocommands when del_buf is TRUE. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
704 // |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
705 // 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
|
706 // windows, so that autocommands in buf_freeall() don't get confused. |
7 | 707 is_curbuf = (buf == curbuf); |
708 buf->b_nwindows = nwindows; | |
709 | |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
710 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
|
711 + (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
|
712 + (ignore_abort ? BFA_IGNORE_ABORT : 0)); |
7 | 713 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
714 // 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
|
715 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
|
716 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
717 #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
|
718 // 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
|
719 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
|
720 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
721 #endif |
7 | 722 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
723 // It's possible that autocommands change curbuf to the one being deleted. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
724 // This might cause the previous curbuf to be deleted unexpectedly. But |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
725 // in some cases it's OK to delete the curbuf, because a new one is |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
726 // obtained anyway. Therefore only return if curbuf changed to the |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
727 // deleted buffer. |
7 | 728 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
|
729 return FALSE; |
9450
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
730 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
731 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
|
732 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
|
733 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
734 // 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
|
735 // 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
|
736 if (buf->b_nwindows > 0) |
073aebdba121
commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
737 --buf->b_nwindows; |
7 | 738 |
739 /* | |
740 * Remove the buffer from the list. | |
741 */ | |
742 if (wipe_buf) | |
743 { | |
28211
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28167
diff
changeset
|
744 // Do not wipe out the buffer if it is used in a window. |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28167
diff
changeset
|
745 if (buf->b_nwindows > 0) |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28167
diff
changeset
|
746 return FALSE; |
522864f990ec
patch 8.2.4631: crash when switching window in BufWipeout autocommand
Bram Moolenaar <Bram@vim.org>
parents:
28167
diff
changeset
|
747 |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
748 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
|
749 { |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
750 // 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
|
751 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
|
752 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
|
753 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
|
754 ((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
|
755 } |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
756 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
|
757 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
|
758 else |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
759 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
|
760 VIM_CLEAR(buf->b_ffname); |
7 | 761 if (buf->b_prev == NULL) |
762 firstbuf = buf->b_next; | |
763 else | |
764 buf->b_prev->b_next = buf->b_next; | |
765 if (buf->b_next == NULL) | |
766 lastbuf = buf->b_prev; | |
767 else | |
768 buf->b_next->b_prev = buf->b_prev; | |
769 free_buffer(buf); | |
770 } | |
771 else | |
772 { | |
773 if (del_buf) | |
774 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
775 // 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
|
776 // ":bdel" compatible with Vim 5.7. |
7 | 777 free_buffer_stuff(buf, TRUE); |
778 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
779 // Make it look like a new buffer. |
7 | 780 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; |
781 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
782 // Init the options when loaded again. |
7 | 783 buf->b_p_initialized = FALSE; |
784 } | |
785 buf_clear_file(buf); | |
786 if (del_buf) | |
787 buf->b_p_bl = FALSE; | |
788 } | |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
789 // 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
|
790 return TRUE; |
7 | 791 } |
792 | |
793 /* | |
794 * Make buffer not contain a file. | |
795 */ | |
796 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
797 buf_clear_file(buf_T *buf) |
7 | 798 { |
799 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
|
800 unchanged(buf, TRUE, TRUE); |
7 | 801 buf->b_shortname = FALSE; |
30968 | 802 buf->b_p_eof = FALSE; |
803 buf->b_start_eof = FALSE; | |
7 | 804 buf->b_p_eol = TRUE; |
805 buf->b_start_eol = TRUE; | |
806 buf->b_p_bomb = FALSE; | |
1352 | 807 buf->b_start_bomb = FALSE; |
7 | 808 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
|
809 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer |
7 | 810 #ifdef FEAT_NETBEANS_INTG |
811 netbeans_deleted_all_lines(buf); | |
812 #endif | |
813 } | |
814 | |
815 /* | |
816 * 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
|
817 * 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
|
818 * 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
|
819 * 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
|
820 * 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
|
821 * 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
|
822 * BFA_IGNORE_ABORT don't abort even when aborting() returns TRUE |
7 | 823 */ |
824 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
825 buf_freeall(buf_T *buf, int flags) |
7 | 826 { |
827 int is_curbuf = (buf == curbuf); | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
828 bufref_T bufref; |
10118
5d77565e6222
commit https://github.com/vim/vim/commit/030cddc7ec0c3d2fe3969140cd1b92b2f18633c0
Christian Brabandt <cb@256bit.org>
parents:
10114
diff
changeset
|
829 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
|
830 win_T *the_curwin = curwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
831 tabpage_T *the_curtab = curtab; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
832 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
833 // 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
|
834 ++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
|
835 ++buf->b_locked_split; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
836 set_bufref(&bufref, buf); |
9106
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
837 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
|
838 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
839 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
|
840 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
841 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
842 // autocommands deleted the buffer |
9106
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
843 return; |
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
844 } |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
845 if ((flags & BFA_DEL) && buf->b_p_bl) |
7 | 846 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
847 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
|
848 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
849 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
850 // autocommands deleted the buffer |
7 | 851 return; |
852 } | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
853 if (flags & BFA_WIPE) |
7 | 854 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
855 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
|
856 FALSE, buf) |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
857 && !bufref_valid(&bufref)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
858 // autocommands deleted the buffer |
7 | 859 return; |
860 } | |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
861 --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
|
862 --buf->b_locked_split; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
863 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
864 // 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
|
865 // 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
|
866 // "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
|
867 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
|
868 { |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
869 block_autocmds(); |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
870 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
|
871 unblock_autocmds(); |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
872 } |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
873 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
874 #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
|
875 // 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
|
876 if ((flags & BFA_IGNORE_ABORT) == 0 && aborting()) |
7 | 877 return; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
878 #endif |
7 | 879 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
880 // It's possible that autocommands change curbuf to the one being deleted. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
881 // This might cause curbuf to be deleted unexpectedly. But in some cases |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
882 // it's OK to delete the curbuf, because a new one is obtained anyway. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
883 // Therefore only return if curbuf changed to the deleted buffer. |
7 | 884 if (buf == curbuf && !is_curbuf) |
885 return; | |
886 #ifdef FEAT_DIFF | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
887 diff_buf_delete(buf); // Can't use 'diff' for unloaded buffer. |
7 | 888 #endif |
3068 | 889 #ifdef FEAT_SYN_HL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
890 // Remove any ownsyntax, unless exiting. |
10118
5d77565e6222
commit https://github.com/vim/vim/commit/030cddc7ec0c3d2fe3969140cd1b92b2f18633c0
Christian Brabandt <cb@256bit.org>
parents:
10114
diff
changeset
|
891 if (curwin != NULL && curwin->w_buffer == buf) |
3182 | 892 reset_synblock(curwin); |
3068 | 893 #endif |
1187 | 894 |
895 #ifdef FEAT_FOLDING | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
896 // No folds in an empty buffer. |
1187 | 897 { |
898 win_T *win; | |
899 tabpage_T *tp; | |
900 | |
901 FOR_ALL_TAB_WINDOWS(tp, win) | |
902 if (win->w_buffer == buf) | |
903 clearFolding(win); | |
904 } | |
905 #endif | |
906 | |
7 | 907 #ifdef FEAT_TCL |
908 tcl_buffer_free(buf); | |
909 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
910 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
|
911 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
|
912 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
|
913 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
914 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
|
915 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
|
916 } |
7 | 917 #ifdef FEAT_SYN_HL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
918 syntax_clear(&buf->b_s); // reset syntax info |
7 | 919 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18757
diff
changeset
|
920 #ifdef FEAT_PROP_POPUP |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
921 clear_buf_prop_types(buf); |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15056
diff
changeset
|
922 #endif |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
923 buf->b_flags &= ~BF_READERR; // a read error is no longer relevant |
7 | 924 } |
925 | |
926 /* | |
927 * Free a buffer structure and the things it contains related to the buffer | |
928 * itself (not the file, that must have been done already). | |
929 */ | |
930 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
931 free_buffer(buf_T *buf) |
7 | 932 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
933 ++buf_free_count; |
7 | 934 free_buffer_stuff(buf, TRUE); |
4287 | 935 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
936 // b:changedtick uses an item in buf_T, remove it now |
31231
684e6dfa2fba
patch 9.0.0949: crash when unletting a variable while listing variables
Bram Moolenaar <Bram@vim.org>
parents:
31018
diff
changeset
|
937 dictitem_remove(buf->b_vars, (dictitem_T *)&buf->b_ct_di, "free buffer"); |
4287 | 938 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
|
939 remove_listeners(buf); |
4287 | 940 #endif |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
941 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
942 lua_buffer_free(buf); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
943 #endif |
14 | 944 #ifdef FEAT_MZSCHEME |
945 mzscheme_buffer_free(buf); | |
946 #endif | |
7 | 947 #ifdef FEAT_PERL |
948 perl_buf_free(buf); | |
949 #endif | |
950 #ifdef FEAT_PYTHON | |
951 python_buffer_free(buf); | |
952 #endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
953 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
954 python3_buffer_free(buf); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
955 #endif |
7 | 956 #ifdef FEAT_RUBY |
957 ruby_buffer_free(buf); | |
958 #endif | |
9087
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
959 #ifdef FEAT_JOB_CHANNEL |
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
960 channel_buffer_free(buf); |
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
961 #endif |
11690
ce434212d682
patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents:
11531
diff
changeset
|
962 #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
|
963 free_terminal(buf); |
11690
ce434212d682
patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents:
11531
diff
changeset
|
964 #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
|
965 #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
|
966 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
|
967 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
|
968 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
|
969 #endif |
9515
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
970 |
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
971 buf_hashtab_remove(buf); |
bb538c090668
commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931
Christian Brabandt <cb@256bit.org>
parents:
9511
diff
changeset
|
972 |
40 | 973 aubuflocal_remove(buf); |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
974 |
5816 | 975 if (autocmd_busy) |
976 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
977 // 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
|
978 // it's still needed. Free it when autocmd_busy is reset. |
5816 | 979 buf->b_next = au_pending_free_buf; |
980 au_pending_free_buf = buf; | |
981 } | |
982 else | |
19629
804322d6c6ba
patch 8.2.0371: crash with combination of terminal popup and autocmd
Bram Moolenaar <Bram@vim.org>
parents:
19354
diff
changeset
|
983 { |
5816 | 984 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
|
985 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
|
986 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
|
987 } |
7 | 988 } |
989 | |
990 /* | |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
991 * 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
|
992 */ |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
993 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
|
994 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
|
995 { |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
996 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
|
997 |
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
998 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
|
999 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
|
1000 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
|
1001 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
|
1002 |
10954
8ff62b4cffae
patch 8.0.0366: build fails with tiny features
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
1003 #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
|
1004 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
|
1005 (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
|
1006 #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
|
1007 } |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
1008 |
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10678
diff
changeset
|
1009 /* |
29871
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1010 * Free the b_wininfo list for buffer "buf". |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1011 */ |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1012 static void |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1013 clear_wininfo(buf_T *buf) |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1014 { |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1015 wininfo_T *wip; |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1016 |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1017 while (buf->b_wininfo != NULL) |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1018 { |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1019 wip = buf->b_wininfo; |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1020 buf->b_wininfo = wip->wi_next; |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1021 free_wininfo(wip); |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1022 } |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1023 } |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1024 |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
1025 /* |
7 | 1026 * Free stuff in the buffer for ":bdel" and when wiping out the buffer. |
1027 */ | |
1028 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1029 free_buffer_stuff( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1030 buf_T *buf, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1031 int free_options) // free options as well |
7 | 1032 { |
1033 if (free_options) | |
1034 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1035 clear_wininfo(buf); // including window-local options |
7 | 1036 free_buf_options(buf, TRUE); |
2620 | 1037 #ifdef FEAT_SPELL |
1038 ga_clear(&buf->b_s.b_langp); | |
1039 #endif | |
7 | 1040 } |
1041 #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
|
1042 { |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10912
diff
changeset
|
1043 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
|
1044 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1045 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
|
1046 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
|
1047 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
|
1048 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
|
1049 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
|
1050 } |
7 | 1051 #endif |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16261
diff
changeset
|
1052 uc_clear(&buf->b_ucmds); // clear local user commands |
7 | 1053 #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
|
1054 buf_delete_signs(buf, (char_u *)"*"); // delete any signs |
7 | 1055 #endif |
1781 | 1056 #ifdef FEAT_NETBEANS_INTG |
2210 | 1057 netbeans_file_killed(buf); |
1781 | 1058 #endif |
29455
e1e99ef28040
patch 9.0.0069: leaking memory when using text prop with inserted text
Bram Moolenaar <Bram@vim.org>
parents:
29318
diff
changeset
|
1059 #ifdef FEAT_PROP_POPUP |
e1e99ef28040
patch 9.0.0069: leaking memory when using text prop with inserted text
Bram Moolenaar <Bram@vim.org>
parents:
29318
diff
changeset
|
1060 ga_clear_strings(&buf->b_textprop_text); |
e1e99ef28040
patch 9.0.0069: leaking memory when using text prop with inserted text
Bram Moolenaar <Bram@vim.org>
parents:
29318
diff
changeset
|
1061 #endif |
29318
fcf524e1e97e
patch 9.0.0002: map functionality outside of map.c
Bram Moolenaar <Bram@vim.org>
parents:
29042
diff
changeset
|
1062 map_clear_mode(buf, MAP_ALL_MODES, TRUE, FALSE); // clear local mappings |
fcf524e1e97e
patch 9.0.0002: map functionality outside of map.c
Bram Moolenaar <Bram@vim.org>
parents:
29042
diff
changeset
|
1063 map_clear_mode(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
|
1064 VIM_CLEAR(buf->b_start_fenc); |
7 | 1065 } |
1066 | |
1067 /* | |
22713
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1068 * 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
|
1069 */ |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1070 void |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1071 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
|
1072 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1073 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
|
1074 { |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1075 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
|
1076 #ifdef FEAT_FOLDING |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1077 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
|
1078 #endif |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1079 } |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1080 vim_free(wip); |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1081 } |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1082 |
e871a824efc9
patch 8.2.1905: the wininfo list may contain stale entries
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
1083 /* |
7 | 1084 * Go to another buffer. Handles the result of the ATTENTION dialog. |
1085 */ | |
1086 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1087 goto_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1088 exarg_T *eap, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1089 int start, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1090 int dir, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1091 int count) |
7 | 1092 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1093 bufref_T old_curbuf; |
28319
427600f3b1c5
patch 8.2.4685: when a swap file is found for a popup there is no dialog
Bram Moolenaar <Bram@vim.org>
parents:
28289
diff
changeset
|
1094 int save_sea = swap_exists_action; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1095 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1096 set_bufref(&old_curbuf, curbuf); |
7 | 1097 |
28319
427600f3b1c5
patch 8.2.4685: when a swap file is found for a popup there is no dialog
Bram Moolenaar <Bram@vim.org>
parents:
28289
diff
changeset
|
1098 if (swap_exists_action == SEA_NONE) |
427600f3b1c5
patch 8.2.4685: when a swap file is found for a popup there is no dialog
Bram Moolenaar <Bram@vim.org>
parents:
28289
diff
changeset
|
1099 swap_exists_action = SEA_DIALOG; |
7 | 1100 (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO, |
1101 start, dir, count, eap->forceit); | |
1102 if (swap_exists_action == SEA_QUIT && *eap->cmd == 's') | |
1103 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1104 #if defined(FEAT_EVAL) |
24 | 1105 cleanup_T cs; |
1106 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1107 // 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
|
1108 // aborting() returns FALSE when closing a window. |
24 | 1109 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1110 #endif |
24 | 1111 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1112 // Quitting means closing the split window, nothing else. |
7 | 1113 win_close(curwin, TRUE); |
28319
427600f3b1c5
patch 8.2.4685: when a swap file is found for a popup there is no dialog
Bram Moolenaar <Bram@vim.org>
parents:
28289
diff
changeset
|
1114 swap_exists_action = save_sea; |
602 | 1115 swap_exists_did_quit = TRUE; |
24 | 1116 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1117 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1118 // 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
|
1119 // new aborting error, interrupt, or uncaught exception. |
24 | 1120 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1121 #endif |
7 | 1122 } |
1123 else | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1124 handle_swap_exists(&old_curbuf); |
7 | 1125 } |
1126 | |
1127 /* | |
1128 * Handle the situation of swap_exists_action being set. | |
1129 * It is allowed for "old_curbuf" to be NULL or invalid. | |
1130 */ | |
1131 void | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1132 handle_swap_exists(bufref_T *old_curbuf) |
7 | 1133 { |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1134 #if defined(FEAT_EVAL) |
24 | 1135 cleanup_T cs; |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1136 #endif |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1137 #ifdef FEAT_SYN_HL |
4139 | 1138 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
|
1139 #endif |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1140 buf_T *buf; |
20 | 1141 |
7 | 1142 if (swap_exists_action == SEA_QUIT) |
1143 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1144 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1145 // 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
|
1146 // aborting() returns FALSE when closing a buffer. |
24 | 1147 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1148 #endif |
24 | 1149 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1150 // 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
|
1151 // 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
|
1152 // open a new, empty buffer. |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1153 swap_exists_action = SEA_NONE; // don't want it again |
602 | 1154 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
|
1155 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
|
1156 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
|
1157 || old_curbuf->br_buf == curbuf) |
25120
2d3660601fdb
patch 8.2.3097: crash when using "quit" at recovery prompt
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
1158 { |
2d3660601fdb
patch 8.2.3097: crash when using "quit" at recovery prompt
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
1159 // Block autocommands here because curwin->w_buffer is NULL. |
2d3660601fdb
patch 8.2.3097: crash when using "quit" at recovery prompt
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
1160 block_autocmds(); |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1161 buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED); |
25120
2d3660601fdb
patch 8.2.3097: crash when using "quit" at recovery prompt
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
1162 unblock_autocmds(); |
2d3660601fdb
patch 8.2.3097: crash when using "quit" at recovery prompt
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
1163 } |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1164 else |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1165 buf = old_curbuf->br_buf; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9485
diff
changeset
|
1166 if (buf != NULL) |
4139 | 1167 { |
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
|
1168 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
|
1169 |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14585
diff
changeset
|
1170 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
|
1171 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
|
1172 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
|
1173 // 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
|
1174 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
|
1175 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1176 #ifdef FEAT_SYN_HL |
4139 | 1177 if (old_tw != curbuf->b_p_tw) |
1178 check_colorcolumn(curwin); | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1179 #endif |
4139 | 1180 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1181 // If "old_curbuf" is NULL we are in big trouble here... |
24 | 1182 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1183 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1184 // 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
|
1185 // new aborting error, interrupt, or uncaught exception. |
24 | 1186 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1187 #endif |
7 | 1188 } |
1189 else if (swap_exists_action == SEA_RECOVER) | |
1190 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1191 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1192 // 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
|
1193 // aborting() returns FALSE when closing a buffer. |
24 | 1194 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1195 #endif |
24 | 1196 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1197 // User selected Recover at ATTENTION prompt. |
7 | 1198 msg_scroll = TRUE; |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16664
diff
changeset
|
1199 ml_recover(FALSE); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1200 msg_puts("\n"); // don't overwrite the last message |
7 | 1201 cmdline_row = msg_row; |
717 | 1202 do_modelines(0); |
24 | 1203 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1204 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1205 // 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
|
1206 // new aborting error, interrupt, or uncaught exception. |
24 | 1207 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1208 #endif |
7 | 1209 } |
1210 swap_exists_action = SEA_NONE; | |
1211 } | |
1212 | |
1213 /* | |
5586 | 1214 * Make the current buffer empty. |
1215 * Used when it is wiped out and it's the last buffer. | |
1216 */ | |
1217 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1218 empty_curbuf( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1219 int close_others, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1220 int forceit, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1221 int action) |
5586 | 1222 { |
1223 int retval; | |
1224 buf_T *buf = curbuf; | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1225 bufref_T bufref; |
5586 | 1226 |
1227 if (action == DOBUF_UNLOAD) | |
1228 { | |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1229 emsg(_(e_cannot_unload_last_buffer)); |
5586 | 1230 return FAIL; |
1231 } | |
1232 | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1233 set_bufref(&bufref, buf); |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1234 if (close_others) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1235 // Close any other windows on this buffer, then make it empty. |
5586 | 1236 close_windows(buf, TRUE); |
1237 | |
1238 setpcmark(); | |
1239 retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, | |
1240 forceit ? ECMD_FORCEIT : 0, curwin); | |
1241 | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1242 // do_ecmd() may create a new buffer, then we have to delete |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1243 // the old one. But do_ecmd() may have done that already, check |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1244 // if the buffer still exists. |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1245 if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0) |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
1246 close_buffer(NULL, buf, action, FALSE, FALSE); |
5586 | 1247 if (!close_others) |
1248 need_fileinfo = FALSE; | |
1249 return retval; | |
1250 } | |
14658
9ffd7d0650c6
patch 8.1.0342: crash when a callback deletes a window that is being used
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
1251 |
7 | 1252 /* |
1253 * Implementation of the commands for the buffer list. | |
1254 * | |
1255 * action == DOBUF_GOTO go to specified buffer | |
1256 * action == DOBUF_SPLIT split window and go to specified buffer | |
1257 * action == DOBUF_UNLOAD unload specified buffer(s) | |
1258 * action == DOBUF_DEL delete specified buffer(s) from buffer list | |
1259 * action == DOBUF_WIPE delete specified buffer(s) really | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1260 * action == DOBUF_WIPE_REUSE idem, and add number to "buf_reuse" |
7 | 1261 * |
1262 * start == DOBUF_CURRENT go to "count" buffer from current buffer | |
1263 * start == DOBUF_FIRST go to "count" buffer from first buffer | |
1264 * start == DOBUF_LAST go to "count" buffer from last buffer | |
1265 * start == DOBUF_MOD go to "count" modified buffer from current buffer | |
1266 * | |
1267 * Return FAIL or OK. | |
1268 */ | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1269 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
|
1270 do_buffer_ext( |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1271 int action, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1272 int start, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1273 int dir, // FORWARD or BACKWARD |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1274 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
|
1275 int flags) // DOBUF_FORCEIT etc. |
7 | 1276 { |
1277 buf_T *buf; | |
1278 buf_T *bp; | |
1279 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
|
1280 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); |
7 | 1281 |
1282 switch (start) | |
1283 { | |
1284 case DOBUF_FIRST: buf = firstbuf; break; | |
1285 case DOBUF_LAST: buf = lastbuf; break; | |
1286 default: buf = curbuf; break; | |
1287 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1288 if (start == DOBUF_MOD) // find next modified buffer |
7 | 1289 { |
1290 while (count-- > 0) | |
1291 { | |
1292 do | |
1293 { | |
1294 buf = buf->b_next; | |
1295 if (buf == NULL) | |
1296 buf = firstbuf; | |
1297 } | |
1298 while (buf != curbuf && !bufIsChanged(buf)); | |
1299 } | |
1300 if (!bufIsChanged(buf)) | |
1301 { | |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1302 emsg(_(e_no_modified_buffer_found)); |
7 | 1303 return FAIL; |
1304 } | |
1305 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1306 else if (start == DOBUF_FIRST && count) // find specified buffer number |
7 | 1307 { |
1308 while (buf != NULL && buf->b_fnum != count) | |
1309 buf = buf->b_next; | |
1310 } | |
1311 else | |
1312 { | |
1313 bp = NULL; | |
1314 while (count > 0 || (!unload && !buf->b_p_bl && bp != buf)) | |
1315 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1316 // 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
|
1317 // buffers are unlisted. |
7 | 1318 if (bp == NULL) |
1319 bp = buf; | |
1320 if (dir == FORWARD) | |
1321 { | |
1322 buf = buf->b_next; | |
1323 if (buf == NULL) | |
1324 buf = firstbuf; | |
1325 } | |
1326 else | |
1327 { | |
1328 buf = buf->b_prev; | |
1329 if (buf == NULL) | |
1330 buf = lastbuf; | |
1331 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1332 // don't count unlisted buffers |
7 | 1333 if (unload || buf->b_p_bl) |
1334 { | |
1335 --count; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1336 bp = NULL; // use this buffer as new starting point |
7 | 1337 } |
1338 if (bp == buf) | |
1339 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1340 // back where we started, didn't find anything. |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1341 emsg(_(e_there_is_no_listed_buffer)); |
7 | 1342 return FAIL; |
1343 } | |
1344 } | |
1345 } | |
1346 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1347 if (buf == NULL) // could not find it |
7 | 1348 { |
1349 if (start == DOBUF_FIRST) | |
1350 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1351 // don't warn when deleting |
7 | 1352 if (!unload) |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1353 semsg(_(e_buffer_nr_does_not_exist), count); |
7 | 1354 } |
1355 else if (dir == FORWARD) | |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1356 emsg(_(e_cannot_go_beyond_last_buffer)); |
7 | 1357 else |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26388
diff
changeset
|
1358 emsg(_(e_cannot_go_before_first_buffer)); |
7 | 1359 return FAIL; |
1360 } | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1361 #ifdef FEAT_PROP_POPUP |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
1362 if ((flags & DOBUF_NOPOPUP) && bt_popup(buf) && !bt_terminal(buf)) |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1363 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
|
1364 #endif |
30910
6686e742a859
patch 9.0.0789: dummy buffer ends up in a window
Bram Moolenaar <Bram@vim.org>
parents:
30853
diff
changeset
|
1365 if ((action == DOBUF_GOTO || action == DOBUF_SPLIT) |
6686e742a859
patch 9.0.0789: dummy buffer ends up in a window
Bram Moolenaar <Bram@vim.org>
parents:
30853
diff
changeset
|
1366 && (buf->b_flags & BF_DUMMY)) |
6686e742a859
patch 9.0.0789: dummy buffer ends up in a window
Bram Moolenaar <Bram@vim.org>
parents:
30853
diff
changeset
|
1367 { |
6686e742a859
patch 9.0.0789: dummy buffer ends up in a window
Bram Moolenaar <Bram@vim.org>
parents:
30853
diff
changeset
|
1368 // disallow navigating to the dummy buffer |
6686e742a859
patch 9.0.0789: dummy buffer ends up in a window
Bram Moolenaar <Bram@vim.org>
parents:
30853
diff
changeset
|
1369 semsg(_(e_buffer_nr_does_not_exist), count); |
6686e742a859
patch 9.0.0789: dummy buffer ends up in a window
Bram Moolenaar <Bram@vim.org>
parents:
30853
diff
changeset
|
1370 return FAIL; |
6686e742a859
patch 9.0.0789: dummy buffer ends up in a window
Bram Moolenaar <Bram@vim.org>
parents:
30853
diff
changeset
|
1371 } |
7 | 1372 |
1373 #ifdef FEAT_GUI | |
1374 need_mouse_correct = TRUE; | |
1375 #endif | |
1376 | |
1377 /* | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1378 * delete buffer "buf" from memory and/or the list |
7 | 1379 */ |
1380 if (unload) | |
1381 { | |
1382 int forward; | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1383 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1384 |
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
|
1385 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
|
1386 return FAIL; |
7d2039b2ecc8
patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
1387 |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
1388 set_bufref(&bufref, buf); |
7 | 1389 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1390 // 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
|
1391 // 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
|
1392 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
|
1393 && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl) |
7 | 1394 return FAIL; |
1395 | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1396 if ((flags & DOBUF_FORCEIT) == 0 && bufIsChanged(buf)) |
7 | 1397 { |
13553
04019fc3de93
patch 8.0.1650: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13535
diff
changeset
|
1398 #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
|
1399 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) |
7 | 1400 { |
30747
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1401 # ifdef FEAT_TERMINAL |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1402 if (term_job_running(buf->b_term)) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1403 { |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1404 if (term_confirm_stop(buf) == FAIL) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1405 return FAIL; |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1406 } |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1407 else |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1408 # endif |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1409 { |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1410 dialog_changed(buf, FALSE); |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1411 if (!bufref_valid(&bufref)) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1412 // Autocommand deleted buffer, oops! It's not changed |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1413 // now. |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1414 return FAIL; |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1415 // If it's still changed fail silently, the dialog already |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1416 // mentioned why it fails. |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1417 if (bufIsChanged(buf)) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1418 return FAIL; |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1419 } |
7 | 1420 } |
36 | 1421 else |
13553
04019fc3de93
patch 8.0.1650: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13535
diff
changeset
|
1422 #endif |
7 | 1423 { |
30747
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1424 no_write_message_buf(buf); |
7 | 1425 return FAIL; |
1426 } | |
1427 } | |
1428 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1429 // 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
|
1430 if (buf == curbuf && VIsual_active) |
10154
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
1431 end_visual_mode(); |
4647267906cc
commit https://github.com/vim/vim/commit/c4a908e83690844b0d3a46124ba6af7d23485d69
Christian Brabandt <cb@256bit.org>
parents:
10118
diff
changeset
|
1432 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1433 // If deleting the last (listed) buffer, make it empty. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1434 // The last (listed) buffer cannot be unloaded. |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
1435 FOR_ALL_BUFFERS(bp) |
7 | 1436 if (bp->b_p_bl && bp != buf) |
1437 break; | |
1438 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
|
1439 return empty_curbuf(TRUE, (flags & DOBUF_FORCEIT), action); |
7 | 1440 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1441 // If the deleted buffer is the current one, close the current window |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1442 // (unless it's the only window). Repeat this so long as we end up in |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1443 // a window with this buffer. |
671 | 1444 while (buf == curbuf |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
1445 && !(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
|
1446 && (!ONE_WINDOW || first_tabpage->tp_next != NULL)) |
5302 | 1447 { |
1448 if (win_close(curwin, FALSE) == FAIL) | |
1449 break; | |
1450 } | |
7 | 1451 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1452 // If the buffer to be deleted is not the current one, delete it here. |
7 | 1453 if (buf != curbuf) |
1454 { | |
671 | 1455 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
|
1456 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
|
1457 close_buffer(NULL, buf, action, FALSE, FALSE); |
7 | 1458 return OK; |
1459 } | |
1460 | |
1461 /* | |
1462 * Deleting the current buffer: Need to find another buffer to go to. | |
5586 | 1463 * There should be another, otherwise it would have been handled |
1464 * 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
|
1465 * First use au_new_curbuf.br_buf, if it is valid. |
7 | 1466 * Then prefer the buffer we most recently visited. |
1467 * Else try to find one that is loaded, after the current buffer, | |
1468 * then before the current buffer. | |
1469 * Finally use any buffer. | |
1470 */ | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1471 buf = NULL; // selected buffer |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1472 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
|
1473 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
|
1474 buf = au_new_curbuf.br_buf; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1475 else if (curwin->w_jumplistlen > 0) |
7 | 1476 { |
1477 int jumpidx; | |
1478 | |
1479 jumpidx = curwin->w_jumplistidx - 1; | |
1480 if (jumpidx < 0) | |
1481 jumpidx = curwin->w_jumplistlen - 1; | |
1482 | |
1483 forward = jumpidx; | |
1484 while (jumpidx != curwin->w_jumplistidx) | |
1485 { | |
1486 buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum); | |
1487 if (buf != NULL) | |
1488 { | |
27601
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
1489 // Skip current and unlisted bufs. Also skip a quickfix |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
1490 // buffer, it might be deleted soon. |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
1491 if (buf == curbuf || !buf->b_p_bl || bt_quickfix(buf)) |
27601
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
1492 buf = NULL; |
7 | 1493 else if (buf->b_ml.ml_mfp == NULL) |
1494 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1495 // skip unloaded buf, but may keep it for later |
7 | 1496 if (bp == NULL) |
1497 bp = buf; | |
1498 buf = NULL; | |
1499 } | |
1500 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1501 if (buf != NULL) // found a valid buffer: stop searching |
7 | 1502 break; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1503 // advance to older entry in jump list |
7 | 1504 if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen) |
1505 break; | |
1506 if (--jumpidx < 0) | |
1507 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
|
1508 if (jumpidx == forward) // List exhausted for sure |
7 | 1509 break; |
1510 } | |
1511 } | |
1512 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1513 if (buf == NULL) // No previous buffer, Try 2'nd approach |
7 | 1514 { |
1515 forward = TRUE; | |
1516 buf = curbuf->b_next; | |
1517 for (;;) | |
1518 { | |
1519 if (buf == NULL) | |
1520 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1521 if (!forward) // tried both directions |
7 | 1522 break; |
1523 buf = curbuf->b_prev; | |
1524 forward = FALSE; | |
1525 continue; | |
1526 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1527 // in non-help buffer, try to skip help buffers, and vv |
27601
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
1528 if (buf->b_help == curbuf->b_help && buf->b_p_bl |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
1529 && !bt_quickfix(buf)) |
7 | 1530 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1531 if (buf->b_ml.ml_mfp != NULL) // found loaded buffer |
7 | 1532 break; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1533 if (bp == NULL) // remember unloaded buf for later |
7 | 1534 bp = buf; |
1535 } | |
1536 if (forward) | |
1537 buf = buf->b_next; | |
1538 else | |
1539 buf = buf->b_prev; | |
1540 } | |
1541 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1542 if (buf == NULL) // No loaded buffer, use unloaded one |
7 | 1543 buf = bp; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1544 if (buf == NULL) // No loaded buffer, find listed one |
7 | 1545 { |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
1546 FOR_ALL_BUFFERS(buf) |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
1547 if (buf->b_p_bl && buf != curbuf && !bt_quickfix(buf)) |
7 | 1548 break; |
1549 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1550 if (buf == NULL) // Still no buffer, just take one |
7 | 1551 { |
1552 if (curbuf->b_next != NULL) | |
1553 buf = curbuf->b_next; | |
1554 else | |
1555 buf = curbuf->b_prev; | |
27601
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
1556 if (bt_quickfix(buf)) |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
1557 buf = NULL; |
7 | 1558 } |
1559 } | |
1560 | |
5586 | 1561 if (buf == NULL) |
1562 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1563 // 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
|
1564 // 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
|
1565 return empty_curbuf(FALSE, (flags & DOBUF_FORCEIT), action); |
5586 | 1566 } |
1567 | |
7 | 1568 /* |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1569 * make "buf" the current buffer |
7 | 1570 */ |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1571 if (action == DOBUF_SPLIT) // split window first |
7 | 1572 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1573 // 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
|
1574 // "buf" if one exists |
1618 | 1575 if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf)) |
825 | 1576 return OK; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1577 // 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
|
1578 // page containing "buf" if one exists |
1618 | 1579 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf)) |
7 | 1580 return OK; |
1581 if (win_split(0, 0) == FAIL) | |
1582 return FAIL; | |
1583 } | |
1584 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1585 // go to current buffer - nothing to do |
7 | 1586 if (buf == curbuf) |
1587 return OK; | |
1588 | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1589 // Check if the current buffer may be abandoned. |
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 if (action == DOBUF_GOTO && !can_abandon(curbuf, (flags & DOBUF_FORCEIT))) |
7 | 1591 { |
1592 #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
|
1593 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) |
7 | 1594 { |
30747
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1595 # ifdef FEAT_TERMINAL |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1596 if (term_job_running(curbuf->b_term)) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1597 { |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1598 if (term_confirm_stop(curbuf) == FAIL) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1599 return FAIL; |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1600 // Manually kill the terminal here because this command will |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1601 // hide it otherwise. |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1602 free_terminal(curbuf); |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1603 } |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1604 else |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1605 # endif |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1606 { |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1607 bufref_T bufref; |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1608 |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1609 set_bufref(&bufref, buf); |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1610 dialog_changed(curbuf, FALSE); |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1611 if (!bufref_valid(&bufref)) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1612 // Autocommand deleted buffer, oops! |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1613 return FAIL; |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1614 |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1615 if (bufIsChanged(curbuf)) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1616 { |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1617 no_write_message(); |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1618 return FAIL; |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1619 } |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1620 } |
7 | 1621 } |
30747
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
1622 else |
7 | 1623 #endif |
1624 { | |
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
|
1625 no_write_message(); |
7 | 1626 return FAIL; |
1627 } | |
1628 } | |
1629 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1630 // Go to the other buffer. |
7 | 1631 set_curbuf(buf, action); |
1632 | |
1633 if (action == DOBUF_SPLIT) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1634 RESET_BINDING(curwin); // reset 'scrollbind' and 'cursorbind' |
7 | 1635 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1636 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1637 if (aborting()) // autocmds may abort script processing |
7 | 1638 return FAIL; |
1639 #endif | |
1640 | |
1641 return OK; | |
1642 } | |
1643 | |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1644 int |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1645 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
|
1646 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
|
1647 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
|
1648 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
|
1649 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
|
1650 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
|
1651 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1652 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
|
1653 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
|
1654 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1655 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1656 /* |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1657 * 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
|
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 * 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
|
1660 * 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
|
1661 * 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
|
1662 * 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
|
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 * 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
|
1665 * 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
|
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 * 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
|
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 char * |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1670 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
|
1671 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
|
1672 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
|
1673 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
|
1674 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
|
1675 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
|
1676 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
|
1677 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1678 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
|
1679 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
|
1680 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
|
1681 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
|
1682 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
|
1683 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1684 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
|
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 (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
|
1687 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1688 else |
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 (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
|
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 (*arg) // both range and argument is not allowed |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1693 return ex_errmsg(e_trailing_characters_str, arg); |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1694 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
|
1695 } |
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 // 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
|
1697 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
|
1698 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1699 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
|
1700 { |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1701 // Delete the current buffer last, otherwise when the |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1702 // current buffer is deleted, the next buffer becomes |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1703 // the current one and will be loaded, which may then |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1704 // also be deleted, etc. |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1705 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
|
1706 do_current = bnr; |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27301
diff
changeset
|
1707 else if (do_buffer_ext(command, DOBUF_FIRST, FORWARD, bnr, |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1708 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
|
1709 ++deleted; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1710 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
1711 // find next buffer number to delete/unload |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1712 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
|
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 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
|
1715 break; |
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 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
|
1718 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1719 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
|
1720 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
|
1721 break; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1722 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
|
1723 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1724 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
|
1725 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
|
1726 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
|
1727 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
|
1728 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
|
1729 break; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1730 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
|
1731 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1732 else |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1733 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
|
1734 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1735 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1736 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
|
1737 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
|
1738 ++deleted; |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1739 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1740 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
|
1741 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1742 if (command == DOBUF_UNLOAD) |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
1743 STRCPY(IObuff, _(e_no_buffers_were_unloaded)); |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1744 else if (command == DOBUF_DEL) |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
1745 STRCPY(IObuff, _(e_no_buffers_were_deleted)); |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1746 else |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
1747 STRCPY(IObuff, _(e_no_buffers_were_wiped_out)); |
24868
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1748 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
|
1749 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1750 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
|
1751 { |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1752 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
|
1753 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
|
1754 "%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
|
1755 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
|
1756 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
|
1757 "%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
|
1758 else |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1759 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
|
1760 "%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
|
1761 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1762 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1763 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1764 |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1765 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
|
1766 } |
e8451dc0d643
patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails
Bram Moolenaar <Bram@vim.org>
parents:
24630
diff
changeset
|
1767 |
7 | 1768 /* |
1769 * Set current buffer to "buf". Executes autocommands and closes current | |
1770 * buffer. "action" tells how to close the current buffer: | |
1771 * DOBUF_GOTO free or hide it | |
1772 * DOBUF_SPLIT nothing | |
1773 * DOBUF_UNLOAD unload it | |
1774 * DOBUF_DEL delete it | |
1775 * 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
|
1776 * DOBUF_WIPE_REUSE wipe it out and add to "buf_reuse" |
7 | 1777 */ |
1778 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1779 set_curbuf(buf_T *buf, int action) |
7 | 1780 { |
1781 buf_T *prevbuf; | |
1782 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
|
1783 || action == DOBUF_WIPE || action == DOBUF_WIPE_REUSE); |
4139 | 1784 #ifdef FEAT_SYN_HL |
1785 long old_tw = curbuf->b_p_tw; | |
1786 #endif | |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1787 bufref_T newbufref; |
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1788 bufref_T prevbufref; |
27507
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
1789 int valid; |
7 | 1790 |
1791 setpcmark(); | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
1792 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
|
1793 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
|
1794 buflist_altfpos(curwin); // remember curpos |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1795 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1796 // Don't restart Select mode after switching to another buffer. |
7 | 1797 VIsual_reselect = FALSE; |
1798 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1799 // close_windows() or apply_autocmds() may change curbuf and wipe out "buf" |
7 | 1800 prevbuf = curbuf; |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1801 set_bufref(&prevbufref, prevbuf); |
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1802 set_bufref(&newbufref, buf); |
7 | 1803 |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23711
diff
changeset
|
1804 // 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
|
1805 // 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
|
1806 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
|
1807 || (bufref_valid(&prevbufref) |
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1808 && bufref_valid(&newbufref) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1809 #ifdef FEAT_EVAL |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1810 && !aborting() |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1811 #endif |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1812 )) |
7 | 1813 { |
3068 | 1814 #ifdef FEAT_SYN_HL |
1815 if (prevbuf == curwin->w_buffer) | |
1816 reset_synblock(curwin); | |
1817 #endif | |
7 | 1818 if (unload) |
671 | 1819 close_windows(prevbuf, FALSE); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1820 #if defined(FEAT_EVAL) |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1821 if (bufref_valid(&prevbufref) && !aborting()) |
7 | 1822 #else |
13054
197a08152ad5
patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents:
12971
diff
changeset
|
1823 if (bufref_valid(&prevbufref)) |
7 | 1824 #endif |
815 | 1825 { |
3654 | 1826 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
|
1827 |
27275
841145bb9885
patch 8.2.4166: undo synced when switching buffer in another window
Bram Moolenaar <Bram@vim.org>
parents:
27231
diff
changeset
|
1828 // Do not sync when in Insert mode and the buffer is open in |
841145bb9885
patch 8.2.4166: undo synced when switching buffer in another window
Bram Moolenaar <Bram@vim.org>
parents:
27231
diff
changeset
|
1829 // another window, might be a timer doing something in another |
841145bb9885
patch 8.2.4166: undo synced when switching buffer in another window
Bram Moolenaar <Bram@vim.org>
parents:
27231
diff
changeset
|
1830 // window. |
841145bb9885
patch 8.2.4166: undo synced when switching buffer in another window
Bram Moolenaar <Bram@vim.org>
parents:
27231
diff
changeset
|
1831 if (prevbuf == curbuf |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28753
diff
changeset
|
1832 && ((State & MODE_INSERT) == 0 || curbuf->b_nwindows <= 1)) |
825 | 1833 u_sync(FALSE); |
7 | 1834 close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf, |
1835 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
|
1836 && !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
|
1837 && !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
|
1838 FALSE, FALSE); |
3654 | 1839 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
|
1840 // autocommands changed curwin, Grr! |
3654 | 1841 curwin = previouswin; |
815 | 1842 } |
7 | 1843 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1844 // 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
|
1845 // 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
|
1846 // If curwin->w_buffer is null, enter_buffer() will make it valid again |
27507
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
1847 valid = buf_valid(buf); |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
1848 if ((valid && buf != curbuf |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1849 #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
|
1850 && !aborting() |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1851 #endif |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
1852 ) || curwin->w_buffer == NULL) |
4139 | 1853 { |
27507
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
1854 // If the buffer is not valid but curwin->w_buffer is NULL we must |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
1855 // enter some buffer. Using the last one is hopefully OK. |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
1856 if (!valid) |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
1857 enter_buffer(lastbuf); |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
1858 else |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
1859 enter_buffer(buf); |
4139 | 1860 #ifdef FEAT_SYN_HL |
1861 if (old_tw != curbuf->b_p_tw) | |
1862 check_colorcolumn(curwin); | |
1863 #endif | |
1864 } | |
7 | 1865 } |
1866 | |
1867 /* | |
1868 * Enter a new current buffer. | |
4139 | 1869 * Old curbuf must have been abandoned already! This also means "curbuf" may |
1870 * be pointing to freed memory. | |
7 | 1871 */ |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
1872 static void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1873 enter_buffer(buf_T *buf) |
7 | 1874 { |
29716
c8c128b0eddc
patch 9.0.0198: ml_get error when switching buffer in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
29507
diff
changeset
|
1875 // when closing the current buffer stop Visual mode |
c8c128b0eddc
patch 9.0.0198: ml_get error when switching buffer in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
29507
diff
changeset
|
1876 if (VIsual_active |
c8c128b0eddc
patch 9.0.0198: ml_get error when switching buffer in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
29507
diff
changeset
|
1877 #if defined(EXITFREE) |
c8c128b0eddc
patch 9.0.0198: ml_get error when switching buffer in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
29507
diff
changeset
|
1878 && !entered_free_all_mem |
c8c128b0eddc
patch 9.0.0198: ml_get error when switching buffer in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
29507
diff
changeset
|
1879 #endif |
c8c128b0eddc
patch 9.0.0198: ml_get error when switching buffer in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
29507
diff
changeset
|
1880 ) |
c8c128b0eddc
patch 9.0.0198: ml_get error when switching buffer in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
29507
diff
changeset
|
1881 end_visual_mode(); |
c8c128b0eddc
patch 9.0.0198: ml_get error when switching buffer in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
29507
diff
changeset
|
1882 |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1883 // 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
|
1884 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
|
1885 curbuf = buf; |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1886 ++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
|
1887 |
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1888 // Copy buffer and window local option values. Not for a help buffer. |
7 | 1889 buf_copy_options(buf, BCO_ENTER | BCO_NOHELP); |
1890 if (!buf->b_help) | |
1891 get_winopts(buf); | |
1892 #ifdef FEAT_FOLDING | |
1893 else | |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
1894 // Remove all folds in the window. |
7 | 1895 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
|
1896 foldUpdateAll(curwin); // update folds (later). |
7 | 1897 #endif |
1898 | |
1899 #ifdef FEAT_DIFF | |
672 | 1900 if (curwin->w_p_diff) |
1901 diff_buf_add(curbuf); | |
7 | 1902 #endif |
1903 | |
3068 | 1904 #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
|
1905 curwin->w_s = &(curbuf->b_s); |
3068 | 1906 #endif |
1907 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1908 // Cursor on first line by default. |
7 | 1909 curwin->w_cursor.lnum = 1; |
1910 curwin->w_cursor.col = 0; | |
1911 curwin->w_cursor.coladd = 0; | |
1912 curwin->w_set_curswant = TRUE; | |
1744 | 1913 curwin->w_topline_was_set = FALSE; |
7 | 1914 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1915 // mark cursor position as being invalid |
2091
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1916 curwin->w_valid = 0; |
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1917 |
14826
75d474a8868a
patch 8.1.0425: ml_get error and crash with appendbufline()
Christian Brabandt <cb@256bit.org>
parents:
14744
diff
changeset
|
1918 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
|
1919 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
|
1920 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1921 // 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
|
1922 if (curbuf->b_ml.ml_mfp == NULL) // need to load the file |
22 | 1923 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1924 // If there is no filetype, allow for detecting one. Esp. useful for |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1925 // ":ball" used in an autocommand. If there already is a filetype we |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1926 // might prefer to keep it. |
22 | 1927 if (*curbuf->b_p_ft == NUL) |
1928 did_filetype = FALSE; | |
1929 | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
1930 open_buffer(FALSE, NULL, 0); |
22 | 1931 } |
7 | 1932 else |
1933 { | |
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
|
1934 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
|
1935 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
|
1936 |
ca1814eeecf5
patch 8.1.1334: when buffer is hidden "F" in 'shortmess' is not used
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1937 // 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
|
1938 (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
|
1939 |
7 | 1940 curwin->w_topline = 1; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1941 #ifdef FEAT_DIFF |
7 | 1942 curwin->w_topfill = 0; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
1943 #endif |
7 | 1944 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); |
1945 apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); | |
1946 } | |
1947 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1948 // 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
|
1949 // and possibly cursor col. |
7 | 1950 if (curwin->w_cursor.lnum == 1 && inindent(0)) |
1951 buflist_getfpos(); | |
1952 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1953 check_arg_idx(curwin); // check for valid arg_idx |
7 | 1954 maketitle(); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1955 // when autocmds didn't change it |
1744 | 1956 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
|
1957 scroll_cursor_halfway(FALSE); // redisplay at correct position |
7 | 1958 |
33 | 1959 #ifdef FEAT_NETBEANS_INTG |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1960 // Send fileOpened event because we've changed buffers. |
2210 | 1961 netbeans_file_activated(curbuf); |
33 | 1962 #endif |
1963 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1964 // 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
|
1965 DO_AUTOCHDIR; |
7 | 1966 |
1967 #ifdef FEAT_KEYMAP | |
1968 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 1969 (void)keymap_init(); |
7 | 1970 #endif |
1185 | 1971 #ifdef FEAT_SPELL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
1972 // 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
|
1973 // has been properly setup. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
1974 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
|
1975 (void)did_set_spelllang(curwin); |
1185 | 1976 #endif |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1977 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1978 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1979 #endif |
1185 | 1980 |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29716
diff
changeset
|
1981 redraw_later(UPD_NOT_VALID); |
7 | 1982 } |
1983 | |
961 | 1984 #if defined(FEAT_AUTOCHDIR) || defined(PROTO) |
1985 /* | |
1986 * 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
|
1987 * Don't do this while still starting up. |
961 | 1988 */ |
1989 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1990 do_autochdir(void) |
961 | 1991 { |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9450
diff
changeset
|
1992 if ((starting == 0 || test_autochdir) |
8216
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1993 && curbuf->b_ffname != NULL |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1994 && vim_chdirfile(curbuf->b_ffname, "auto") == OK) |
26171
fa8161b003f6
patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Bram Moolenaar <Bram@vim.org>
parents:
26026
diff
changeset
|
1995 { |
961 | 1996 shorten_fnames(TRUE); |
26171
fa8161b003f6
patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Bram Moolenaar <Bram@vim.org>
parents:
26026
diff
changeset
|
1997 last_chdir_reason = "autochdir"; |
fa8161b003f6
patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Bram Moolenaar <Bram@vim.org>
parents:
26026
diff
changeset
|
1998 } |
961 | 1999 } |
2000 #endif | |
2001 | |
30747
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2002 static void |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2003 no_write_message_buf(buf_T *buf UNUSED) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2004 { |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2005 #ifdef FEAT_TERMINAL |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2006 if (term_job_running(buf->b_term)) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2007 emsg(_(e_job_still_running_add_bang_to_end_the_job)); |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2008 else |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2009 #endif |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2010 semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override), |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2011 buf->b_fnum); |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2012 } |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
2013 |
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
|
2014 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
|
2015 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
|
2016 { |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
2017 #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
|
2018 if (term_job_running(curbuf->b_term)) |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
2019 emsg(_(e_job_still_running_add_bang_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
|
2020 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
|
2021 #endif |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25120
diff
changeset
|
2022 emsg(_(e_no_write_since_last_change_add_bang_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
|
2023 } |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
2024 |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
2025 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
|
2026 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
|
2027 { |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
2028 #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
|
2029 if (term_job_running(buf->b_term)) |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
2030 emsg(_(e_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
|
2031 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
|
2032 #endif |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25120
diff
changeset
|
2033 emsg(_(e_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
|
2034 } |
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12110
diff
changeset
|
2035 |
7 | 2036 /* |
2037 * functions for dealing with the buffer list | |
2038 */ | |
2039 | |
2040 /* | |
13782
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
2041 * 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
|
2042 * 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
|
2043 */ |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
2044 int |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
2045 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
|
2046 { |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
2047 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
|
2048 && 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
|
2049 && 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
|
2050 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY()) |
16259
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16223
diff
changeset
|
2051 && !bt_quickfix(curbuf) |
13782
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
2052 && !curbufIsChanged()); |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
2053 } |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
2054 |
3be5e8306a3e
patch 8.0.1763: :argedit does not reuse an empty unnamed buffer
Christian Brabandt <cb@256bit.org>
parents:
13720
diff
changeset
|
2055 /* |
7 | 2056 * Add a file name to the buffer list. Return a pointer to the buffer. |
2057 * If the same file name already exists return a pointer to that buffer. | |
2058 * If it does not exist, or if fname == NULL, a new entry is created. | |
2059 * If (flags & BLN_CURBUF) is TRUE, may use current buffer. | |
2060 * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list. | |
2061 * 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
|
2062 * 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
|
2063 * 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
|
2064 * 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
|
2065 * If (flags & BLN_REUSE) is TRUE, may use buffer number from "buf_reuse". |
7 | 2066 * This is the ONLY way to create a new buffer. |
2067 */ | |
2068 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2069 buflist_new( |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2070 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
|
2071 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
|
2072 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
|
2073 int flags) // BLN_ defines |
7 | 2074 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2075 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
|
2076 char_u *sfname = sfname_arg; |
7 | 2077 buf_T *buf; |
2078 #ifdef UNIX | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
2079 stat_T st; |
7 | 2080 #endif |
2081 | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2082 if (top_file_num == 1) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2083 hash_init(&buf_hashtab); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2084 |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2085 fname_expand(curbuf, &ffname, &sfname); // will allocate ffname |
7 | 2086 |
2087 /* | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2088 * If the file name already exists in the list, update the entry. |
7 | 2089 */ |
2090 #ifdef UNIX | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2091 // 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
|
2092 // for hard links. |
7 | 2093 if (sfname == NULL || mch_stat((char *)sfname, &st) < 0) |
2094 st.st_dev = (dev_T)-1; | |
2095 #endif | |
9149
18bbf31015c2
commit https://github.com/vim/vim/commit/b127cfd75f59e82580df395b6e2c009774644b16
Christian Brabandt <cb@256bit.org>
parents:
9106
diff
changeset
|
2096 if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf = |
7 | 2097 #ifdef UNIX |
2098 buflist_findname_stat(ffname, &st) | |
2099 #else | |
2100 buflist_findname(ffname) | |
2101 #endif | |
2102 ) != NULL) | |
2103 { | |
2104 vim_free(ffname); | |
2105 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
|
2106 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
|
2107 lnum, (colnr_T)0, FALSE); |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2108 |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2109 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
|
2110 // 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
|
2111 // already |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2112 buf_copy_options(buf, 0); |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2113 |
7 | 2114 if ((flags & BLN_LISTED) && !buf->b_p_bl) |
2115 { | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2116 bufref_T bufref; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2117 |
7 | 2118 buf->b_p_bl = TRUE; |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2119 set_bufref(&bufref, buf); |
7 | 2120 if (!(flags & BLN_DUMMY)) |
5816 | 2121 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2122 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
|
2123 && !bufref_valid(&bufref)) |
5816 | 2124 return NULL; |
2125 } | |
7 | 2126 } |
2127 return buf; | |
2128 } | |
2129 | |
2130 /* | |
2131 * If the current buffer has no name and no contents, use the current | |
2132 * buffer. Otherwise: Need to allocate a new buffer structure. | |
2133 * | |
2134 * This is the ONLY place where a new buffer structure is allocated! | |
625 | 2135 * (A spell file buffer is allocated in spell.c, but that's not a normal |
2136 * buffer.) | |
7 | 2137 */ |
2138 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
|
2139 if ((flags & BLN_CURBUF) && curbuf_reusable()) |
7 | 2140 { |
2141 buf = curbuf; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2142 // 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
|
2143 // change curbuf! If that happens, allocate a new buffer anyway. |
28534
2d600e916978
patch 8.2.4791: events triggered in different order when reusing buffer
Bram Moolenaar <Bram@vim.org>
parents:
28413
diff
changeset
|
2144 buf_freeall(buf, BFA_WIPE | BFA_DEL); |
2d600e916978
patch 8.2.4791: events triggered in different order when reusing buffer
Bram Moolenaar <Bram@vim.org>
parents:
28413
diff
changeset
|
2145 if (buf != curbuf) // autocommands deleted the buffer! |
2d600e916978
patch 8.2.4791: events triggered in different order when reusing buffer
Bram Moolenaar <Bram@vim.org>
parents:
28413
diff
changeset
|
2146 return NULL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2147 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2148 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
|
2149 { |
f37028184d6a
patch 8.2.0464: typos and other small problems
Bram Moolenaar <Bram@vim.org>
parents:
19629
diff
changeset
|
2150 vim_free(ffname); |
7 | 2151 return NULL; |
19816
f37028184d6a
patch 8.2.0464: typos and other small problems
Bram Moolenaar <Bram@vim.org>
parents:
19629
diff
changeset
|
2152 } |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2153 #endif |
7 | 2154 } |
2155 if (buf != curbuf || curbuf == NULL) | |
2156 { | |
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
|
2157 buf = ALLOC_CLEAR_ONE(buf_T); |
7 | 2158 if (buf == NULL) |
2159 { | |
2160 vim_free(ffname); | |
2161 return NULL; | |
2162 } | |
4287 | 2163 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2164 // init b: variables |
28289
cdaff4db7760
patch 8.2.4670: memory allocation failures for new tab page not tested
Bram Moolenaar <Bram@vim.org>
parents:
28285
diff
changeset
|
2165 buf->b_vars = dict_alloc_id(aid_newbuf_bvars); |
4287 | 2166 if (buf->b_vars == NULL) |
2167 { | |
2168 vim_free(ffname); | |
2169 vim_free(buf); | |
2170 return NULL; | |
2171 } | |
2172 init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE); | |
2173 #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
|
2174 init_changedtick(buf); |
7 | 2175 } |
2176 | |
2177 if (ffname != NULL) | |
2178 { | |
2179 buf->b_ffname = ffname; | |
2180 buf->b_sfname = vim_strsave(sfname); | |
2181 } | |
2182 | |
2183 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
|
2184 buf->b_wininfo = ALLOC_CLEAR_ONE(wininfo_T); |
7 | 2185 |
2186 if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL)) | |
2187 || buf->b_wininfo == NULL) | |
2188 { | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2189 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
|
2190 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
|
2191 else |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2192 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
|
2193 VIM_CLEAR(buf->b_ffname); |
7 | 2194 if (buf != curbuf) |
2195 free_buffer(buf); | |
2196 return NULL; | |
2197 } | |
2198 | |
2199 if (buf == curbuf) | |
2200 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2201 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
|
2202 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2203 // Init the options. |
3925 | 2204 buf->b_p_initialized = FALSE; |
2205 buf_copy_options(buf, BCO_ENTER); | |
2206 | |
7 | 2207 #ifdef FEAT_KEYMAP |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2208 // need to reload lmaps and set b:keymap_name |
7 | 2209 curbuf->b_kmap_state |= KEYMAP_INIT; |
2210 #endif | |
2211 } | |
2212 else | |
2213 { | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2214 // put the new buffer at the end of the buffer list |
7 | 2215 buf->b_next = NULL; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2216 if (firstbuf == NULL) // buffer list is empty |
7 | 2217 { |
2218 buf->b_prev = NULL; | |
2219 firstbuf = buf; | |
2220 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2221 else // append new buffer at end of list |
7 | 2222 { |
2223 lastbuf->b_next = buf; | |
2224 buf->b_prev = lastbuf; | |
2225 } | |
2226 lastbuf = buf; | |
2227 | |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2228 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
|
2229 { |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2230 // 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
|
2231 // 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
|
2232 // 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
|
2233 --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
|
2234 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
|
2235 |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2236 // 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
|
2237 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
|
2238 { |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2239 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
|
2240 |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2241 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
|
2242 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
|
2243 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
|
2244 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
|
2245 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
|
2246 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
|
2247 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
|
2248 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
|
2249 if (lastbuf == buf) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2250 lastbuf = prev; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2251 if (firstbuf == prev) |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2252 firstbuf = buf; |
9449ed2ee8d4
patch 8.1.2418: bufnr('$') is wrong after recycling popup buffer
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2253 } |
17823
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2254 } |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2255 else |
7e6b7a4f13bc
patch 8.1.1908: every popup window consumes a buffer number
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
2256 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
|
2257 if (top_file_num < 0) // wrap around (may cause duplicates) |
7 | 2258 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
2259 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
|
2260 if (emsg_silent == 0 && !in_assert_fails) |
7 | 2261 { |
2262 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
|
2263 ui_delay(3001L, TRUE); // make sure it is noticed |
7 | 2264 } |
2265 top_file_num = 1; | |
2266 } | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2267 buf_hashtab_add(buf); |
7 | 2268 |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2269 // Always copy the options from the current buffer. |
7 | 2270 buf_copy_options(buf, BCO_ALWAYS); |
2271 } | |
2272 | |
2273 buf->b_wininfo->wi_fpos.lnum = lnum; | |
2274 buf->b_wininfo->wi_win = curwin; | |
2275 | |
126 | 2276 #ifdef FEAT_SYN_HL |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2277 hash_init(&buf->b_s.b_keywtab); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2278 hash_init(&buf->b_s.b_keywtab_ic); |
7 | 2279 #endif |
2280 | |
2281 buf->b_fname = buf->b_sfname; | |
2282 #ifdef UNIX | |
2283 if (st.st_dev == (dev_T)-1) | |
1873 | 2284 buf->b_dev_valid = FALSE; |
7 | 2285 else |
2286 { | |
1873 | 2287 buf->b_dev_valid = TRUE; |
7 | 2288 buf->b_dev = st.st_dev; |
2289 buf->b_ino = st.st_ino; | |
2290 } | |
2291 #endif | |
2292 buf->b_u_synced = TRUE; | |
2293 buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED; | |
42 | 2294 if (flags & BLN_DUMMY) |
2295 buf->b_flags |= BF_DUMMY; | |
7 | 2296 buf_clear_file(buf); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2297 clrallmarks(buf); // clear marks |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2298 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
|
2299 buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; // init 'buflisted' |
7 | 2300 if (!(flags & BLN_DUMMY)) |
2301 { | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2302 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
2303 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2304 // 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
|
2305 // 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
|
2306 // 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
|
2307 set_bufref(&bufref, buf); |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2308 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
|
2309 && !bufref_valid(&bufref)) |
5816 | 2310 return NULL; |
7 | 2311 if (flags & BLN_LISTED) |
5816 | 2312 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2313 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
|
2314 && !bufref_valid(&bufref)) |
5816 | 2315 return NULL; |
2316 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2317 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2318 if (aborting()) // autocmds may abort script processing |
7 | 2319 return NULL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
2320 #endif |
7 | 2321 } |
2322 | |
2323 return buf; | |
2324 } | |
2325 | |
2326 /* | |
2327 * Free the memory for the options of a buffer. | |
2328 * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and | |
2329 * 'fileencoding'. | |
2330 */ | |
2331 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2332 free_buf_options( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2333 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2334 int free_p_ff) |
7 | 2335 { |
2336 if (free_p_ff) | |
2337 { | |
2338 clear_string_option(&buf->b_p_fenc); | |
2339 clear_string_option(&buf->b_p_ff); | |
2340 clear_string_option(&buf->b_p_bh); | |
2341 clear_string_option(&buf->b_p_bt); | |
2342 } | |
2343 #ifdef FEAT_FIND_ID | |
2344 clear_string_option(&buf->b_p_def); | |
2345 clear_string_option(&buf->b_p_inc); | |
2346 # ifdef FEAT_EVAL | |
2347 clear_string_option(&buf->b_p_inex); | |
2348 # endif | |
2349 #endif | |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28873
diff
changeset
|
2350 #if defined(FEAT_EVAL) |
7 | 2351 clear_string_option(&buf->b_p_inde); |
2352 clear_string_option(&buf->b_p_indk); | |
2353 #endif | |
788 | 2354 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
2355 clear_string_option(&buf->b_p_bexpr); | |
2356 #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
|
2357 #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
|
2358 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
|
2359 #endif |
10678
c647f01d6dbd
patch 8.0.0229: local 'formatprg' option value leaks
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
2360 clear_string_option(&buf->b_p_fp); |
667 | 2361 #if defined(FEAT_EVAL) |
2362 clear_string_option(&buf->b_p_fex); | |
2363 #endif | |
7 | 2364 #ifdef FEAT_CRYPT |
25417
1919361a53da
patch 8.2.3245: the crypt key may appear in a swap partition
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2365 # ifdef FEAT_SODIUM |
27231
e1cedf009920
patch 8.2.4144: cannot load libsodium dynamically
Bram Moolenaar <Bram@vim.org>
parents:
27124
diff
changeset
|
2366 if ((buf->b_p_key != NULL) && (*buf->b_p_key != NUL) && |
e1cedf009920
patch 8.2.4144: cannot load libsodium dynamically
Bram Moolenaar <Bram@vim.org>
parents:
27124
diff
changeset
|
2367 (crypt_get_method_nr(buf) == CRYPT_M_SOD)) |
e1cedf009920
patch 8.2.4144: cannot load libsodium dynamically
Bram Moolenaar <Bram@vim.org>
parents:
27124
diff
changeset
|
2368 crypt_sodium_munlock(buf->b_p_key, STRLEN(buf->b_p_key)); |
25417
1919361a53da
patch 8.2.3245: the crypt key may appear in a swap partition
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2369 # endif |
7 | 2370 clear_string_option(&buf->b_p_key); |
2371 #endif | |
2372 clear_string_option(&buf->b_p_kp); | |
2373 clear_string_option(&buf->b_p_mps); | |
2374 clear_string_option(&buf->b_p_fo); | |
41 | 2375 clear_string_option(&buf->b_p_flp); |
7 | 2376 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
|
2377 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
2378 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
|
2379 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
|
2380 buf->b_p_vsts_nopaste = NULL; |
27507
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
2381 VIM_CLEAR(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
|
2382 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
|
2383 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
|
2384 #endif |
7 | 2385 #ifdef FEAT_KEYMAP |
2386 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
|
2387 keymap_clear(&buf->b_kmap_ga); |
7 | 2388 ga_clear(&buf->b_kmap_ga); |
2389 #endif | |
2390 clear_string_option(&buf->b_p_com); | |
2391 #ifdef FEAT_FOLDING | |
2392 clear_string_option(&buf->b_p_cms); | |
2393 #endif | |
2394 clear_string_option(&buf->b_p_nf); | |
2395 #ifdef FEAT_SYN_HL | |
2396 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
|
2397 clear_string_option(&buf->b_s.b_syn_isk); |
737 | 2398 #endif |
2399 #ifdef FEAT_SPELL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2400 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
|
2401 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
|
2402 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
|
2403 buf->b_s.b_cap_prog = NULL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2404 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
|
2405 clear_string_option(&buf->b_s.b_p_spo); |
7 | 2406 #endif |
2407 clear_string_option(&buf->b_p_sua); | |
2408 clear_string_option(&buf->b_p_ft); | |
2409 clear_string_option(&buf->b_p_cink); | |
2410 clear_string_option(&buf->b_p_cino); | |
30853
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
2411 clear_string_option(&buf->b_p_lop); |
28353
8bc8071928ed
patch 8.2.4702: C++ scope labels are hard-coded
Bram Moolenaar <Bram@vim.org>
parents:
28319
diff
changeset
|
2412 clear_string_option(&buf->b_p_cinsd); |
7 | 2413 clear_string_option(&buf->b_p_cinw); |
2414 clear_string_option(&buf->b_p_cpt); | |
12 | 2415 #ifdef FEAT_COMPL_FUNC |
2416 clear_string_option(&buf->b_p_cfu); | |
26388
8aba638e91eb
patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
2417 free_callback(&buf->b_cfu_cb); |
502 | 2418 clear_string_option(&buf->b_p_ofu); |
26388
8aba638e91eb
patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
2419 free_callback(&buf->b_ofu_cb); |
25984
c8fcea636252
patch 8.2.3525: option variable name does not match option name
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
2420 clear_string_option(&buf->b_p_tsrfu); |
26388
8aba638e91eb
patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
2421 free_callback(&buf->b_tsrfu_cb); |
12 | 2422 #endif |
7 | 2423 #ifdef FEAT_QUICKFIX |
2424 clear_string_option(&buf->b_p_gp); | |
2425 clear_string_option(&buf->b_p_mp); | |
2426 clear_string_option(&buf->b_p_efm); | |
2427 #endif | |
2428 clear_string_option(&buf->b_p_ep); | |
2429 clear_string_option(&buf->b_p_path); | |
2430 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
|
2431 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
|
2432 #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
|
2433 clear_string_option(&buf->b_p_tfu); |
26268
3aa48d4e3dc8
patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents:
26185
diff
changeset
|
2434 free_callback(&buf->b_tfu_cb); |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
2435 #endif |
7 | 2436 clear_string_option(&buf->b_p_dict); |
2437 clear_string_option(&buf->b_p_tsr); | |
12 | 2438 clear_string_option(&buf->b_p_qe); |
7 | 2439 buf->b_p_ar = -1; |
5446 | 2440 buf->b_p_ul = NO_LOCAL_UNDOLEVEL; |
5712 | 2441 clear_string_option(&buf->b_p_lw); |
6243 | 2442 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
|
2443 clear_string_option(&buf->b_p_menc); |
7 | 2444 } |
2445 | |
2446 /* | |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2447 * 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
|
2448 * 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
|
2449 * Also set cursor column to altfpos.col if 'startofline' is not set. |
7 | 2450 * if (options & GETF_SETMARK) call setpcmark() |
2451 * if (options & GETF_ALT) we are jumping to an alternate file. | |
2452 * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping | |
2453 * | |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2454 * Return FAIL for failure, OK for success. |
7 | 2455 */ |
2456 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2457 buflist_getfile( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2458 int n, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2459 linenr_T lnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2460 int options, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2461 int forceit) |
7 | 2462 { |
2463 buf_T *buf; | |
2464 win_T *wp = NULL; | |
2465 pos_T *fpos; | |
2466 colnr_T col; | |
2467 | |
2468 buf = buflist_findnr(n); | |
2469 if (buf == NULL) | |
2470 { | |
2471 if ((options & GETF_ALT) && n == 0) | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24868
diff
changeset
|
2472 emsg(_(e_no_alternate_file)); |
7 | 2473 else |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26532
diff
changeset
|
2474 semsg(_(e_buffer_nr_not_found), n); |
7 | 2475 return FAIL; |
2476 } | |
2477 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2478 // if alternate file is the current buffer, nothing to do |
7 | 2479 if (buf == curbuf) |
2480 return OK; | |
2481 | |
29042
e150d0e4701f
patch 8.2.5043: can open a cmdline window from a substitute expression
Bram Moolenaar <Bram@vim.org>
parents:
29038
diff
changeset
|
2482 if (text_or_buf_locked()) |
819 | 2483 return FAIL; |
7 | 2484 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2485 // altfpos may be changed by getfile(), get it now |
7 | 2486 if (lnum == 0) |
2487 { | |
2488 fpos = buflist_findfpos(buf); | |
2489 lnum = fpos->lnum; | |
2490 col = fpos->col; | |
2491 } | |
2492 else | |
2493 col = 0; | |
2494 | |
2495 if (options & GETF_SWITCH) | |
2496 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2497 // 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
|
2498 // "buf" if one exists |
1618 | 2499 if (swb_flags & SWB_USEOPEN) |
7 | 2500 wp = buf_jump_open_win(buf); |
6843 | 2501 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2502 // 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
|
2503 // page containing "buf" if one exists |
1618 | 2504 if (wp == NULL && (swb_flags & SWB_USETAB)) |
825 | 2505 wp = buf_jump_open_tab(buf); |
6843 | 2506 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2507 // 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
|
2508 // current buffer isn't empty: open new tab or window |
6843 | 2509 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
|
2510 && !BUFEMPTY()) |
7 | 2511 { |
6843 | 2512 if (swb_flags & SWB_NEWTAB) |
1618 | 2513 tabpage_new(); |
6843 | 2514 else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0) |
2515 == FAIL) | |
7 | 2516 return FAIL; |
2583 | 2517 RESET_BINDING(curwin); |
7 | 2518 } |
2519 } | |
2520 | |
2521 ++RedrawingDisabled; | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11447
diff
changeset
|
2522 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
|
2523 (options & GETF_SETMARK), lnum, forceit))) |
7 | 2524 { |
2525 --RedrawingDisabled; | |
2526 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2527 // cursor is at to BOL and w_cursor.lnum is checked due to getfile() |
7 | 2528 if (!p_sol && col != 0) |
2529 { | |
2530 curwin->w_cursor.col = col; | |
2531 check_cursor_col(); | |
2532 curwin->w_cursor.coladd = 0; | |
2533 curwin->w_set_curswant = TRUE; | |
2534 } | |
2535 return OK; | |
2536 } | |
2537 --RedrawingDisabled; | |
2538 return FAIL; | |
2539 } | |
2540 | |
2541 /* | |
2542 * go to the last know line number for the current buffer | |
2543 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
2544 static void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2545 buflist_getfpos(void) |
7 | 2546 { |
2547 pos_T *fpos; | |
2548 | |
2549 fpos = buflist_findfpos(curbuf); | |
2550 | |
2551 curwin->w_cursor.lnum = fpos->lnum; | |
2552 check_cursor_lnum(); | |
2553 | |
2554 if (p_sol) | |
2555 curwin->w_cursor.col = 0; | |
2556 else | |
2557 { | |
2558 curwin->w_cursor.col = fpos->col; | |
2559 check_cursor_col(); | |
2560 curwin->w_cursor.coladd = 0; | |
2561 curwin->w_set_curswant = TRUE; | |
2562 } | |
2563 } | |
2564 | |
30825
c7983f593fa7
patch 9.0.0747: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
30751
diff
changeset
|
2565 #if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO) |
42 | 2566 /* |
2567 * Find file in buffer list by name (it has to be for the current window). | |
2568 * Returns NULL if not found. | |
2569 */ | |
2570 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2571 buflist_findname_exp(char_u *fname) |
42 | 2572 { |
2573 char_u *ffname; | |
2574 buf_T *buf = NULL; | |
2575 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2576 // First make the name into a full path name |
42 | 2577 ffname = FullName_save(fname, |
2578 #ifdef UNIX | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2579 TRUE // force expansion, get rid of symbolic links |
42 | 2580 #else |
2581 FALSE | |
2582 #endif | |
2583 ); | |
2584 if (ffname != NULL) | |
2585 { | |
2586 buf = buflist_findname(ffname); | |
2587 vim_free(ffname); | |
2588 } | |
2589 return buf; | |
2590 } | |
2591 #endif | |
2592 | |
7 | 2593 /* |
2594 * Find file in buffer list by name (it has to be for the current window). | |
2595 * "ffname" must have a full path. | |
42 | 2596 * Skips dummy buffers. |
2597 * Returns NULL if not found. | |
7 | 2598 */ |
2599 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2600 buflist_findname(char_u *ffname) |
7 | 2601 { |
2602 #ifdef UNIX | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
2603 stat_T st; |
7 | 2604 |
2605 if (mch_stat((char *)ffname, &st) < 0) | |
2606 st.st_dev = (dev_T)-1; | |
2607 return buflist_findname_stat(ffname, &st); | |
2608 } | |
2609 | |
2610 /* | |
2611 * Same as buflist_findname(), but pass the stat structure to avoid getting it | |
2612 * twice for the same file. | |
42 | 2613 * Returns NULL if not found. |
7 | 2614 */ |
2615 static buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2616 buflist_findname_stat( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2617 char_u *ffname, |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
2618 stat_T *stp) |
7 | 2619 { |
2620 #endif | |
2621 buf_T *buf; | |
2622 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2623 // 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
|
2624 FOR_ALL_BUFS_FROM_LAST(buf) |
42 | 2625 if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname |
7 | 2626 #ifdef UNIX |
2627 , stp | |
2628 #endif | |
2629 )) | |
2630 return buf; | |
2631 return NULL; | |
2632 } | |
2633 | |
2634 /* | |
2635 * Find file in buffer list by a regexp pattern. | |
2636 * Return fnum of the found buffer. | |
2637 * Return < 0 for error. | |
2638 */ | |
2639 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2640 buflist_findpat( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2641 char_u *pattern, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2642 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
|
2643 int unlisted, // find unlisted buffers |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2644 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
|
2645 int curtab_only) // find buffers in current tab only |
7 | 2646 { |
2647 buf_T *buf; | |
2648 int match = -1; | |
2649 int find_listed; | |
2650 char_u *pat; | |
2651 char_u *patend; | |
2652 int attempt; | |
2653 char_u *p; | |
2654 int toggledollar; | |
2655 | |
23711
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2656 // "%" 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
|
2657 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
|
2658 || (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
|
2659 && pattern[0] == '%' && pattern[1] == '%')) |
7 | 2660 { |
23711
29eccef07e2f
patch 8.2.2397: Vim9: "%%" not seen as alternate file name for ":bdel"
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
2661 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
|
2662 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
|
2663 else |
7 | 2664 match = curbuf->b_fnum; |
2665 #ifdef FEAT_DIFF | |
2666 if (diffmode && !diff_mode_buf(buflist_findnr(match))) | |
2667 match = -1; | |
2668 #endif | |
2669 } | |
2670 | |
2671 /* | |
2672 * Try four ways of matching a listed buffer: | |
2673 * attempt == 0: without '^' or '$' (at any position) | |
1187 | 2674 * attempt == 1: with '^' at start (only at position 0) |
7 | 2675 * attempt == 2: with '$' at end (only match at end) |
2676 * attempt == 3: with '^' at start and '$' at end (only full match) | |
2677 * Repeat this for finding an unlisted buffer if there was no matching | |
2678 * listed buffer. | |
2679 */ | |
2680 else | |
2681 { | |
2682 pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE); | |
2683 if (pat == NULL) | |
2684 return -1; | |
2685 patend = pat + STRLEN(pat) - 1; | |
2686 toggledollar = (patend > pat && *patend == '$'); | |
2687 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2688 // 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
|
2689 // is TRUE, try finding an unlisted buffer. |
7 | 2690 find_listed = TRUE; |
2691 for (;;) | |
2692 { | |
2693 for (attempt = 0; attempt <= 3; ++attempt) | |
2694 { | |
6375 | 2695 regmatch_T regmatch; |
2696 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2697 // may add '^' and '$' |
7 | 2698 if (toggledollar) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2699 *patend = (attempt < 2) ? NUL : '$'; // add/remove '$' |
7 | 2700 p = pat; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2701 if (*p == '^' && !(attempt & 1)) // add/remove '^' |
7 | 2702 ++p; |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
22987
diff
changeset
|
2703 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0); |
7 | 2704 |
19934
3ff714d765ba
patch 8.2.0523: loops are repeated
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
2705 FOR_ALL_BUFS_FROM_LAST(buf) |
28873
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2706 { |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2707 if (regmatch.regprog == NULL) |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2708 { |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2709 // invalid pattern, possibly after switching engine |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2710 vim_free(pat); |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2711 return -1; |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2712 } |
7 | 2713 if (buf->b_p_bl == find_listed |
2714 #ifdef FEAT_DIFF | |
2715 && (!diffmode || diff_mode_buf(buf)) | |
2716 #endif | |
6375 | 2717 && buflist_match(®match, buf, FALSE) != NULL) |
7 | 2718 { |
4236 | 2719 if (curtab_only) |
2720 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2721 // 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
|
2722 // the current tab. |
4236 | 2723 win_T *wp; |
2724 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
2725 FOR_ALL_WINDOWS(wp) |
4236 | 2726 if (wp->w_buffer == buf) |
2727 break; | |
2728 if (wp == NULL) | |
2729 continue; | |
2730 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2731 if (match >= 0) // already found a match |
7 | 2732 { |
2733 match = -2; | |
2734 break; | |
2735 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2736 match = buf->b_fnum; // remember first match |
7 | 2737 } |
28873
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2738 } |
7 | 2739 |
6375 | 2740 vim_regfree(regmatch.regprog); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2741 if (match >= 0) // found one match |
7 | 2742 break; |
2743 } | |
2744 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2745 // 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
|
2746 // a listed buffer. |
7 | 2747 if (!unlisted || !find_listed || match != -1) |
2748 break; | |
2749 find_listed = FALSE; | |
2750 } | |
2751 | |
2752 vim_free(pat); | |
2753 } | |
2754 | |
2755 if (match == -2) | |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26532
diff
changeset
|
2756 semsg(_(e_more_than_one_match_for_str), pattern); |
7 | 2757 else if (match < 0) |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26532
diff
changeset
|
2758 semsg(_(e_no_matching_buffer_for_str), pattern); |
7 | 2759 return match; |
2760 } | |
2761 | |
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
|
2762 #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
|
2763 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
|
2764 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
|
2765 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
|
2766 } 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
|
2767 #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
|
2768 |
7 | 2769 /* |
2770 * Find all buffer names that match. | |
2771 * For command line expansion of ":buf" and ":sbuf". | |
2772 * Return OK if matches found, FAIL otherwise. | |
2773 */ | |
2774 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2775 ExpandBufnames( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2776 char_u *pat, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2777 int *num_file, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2778 char_u ***file, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2779 int options) |
7 | 2780 { |
2781 int count = 0; | |
2782 buf_T *buf; | |
2783 int round; | |
2784 char_u *p; | |
2785 int attempt; | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2786 char_u *patc = 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
|
2787 #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
|
2788 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
|
2789 #endif |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2790 int fuzzy; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2791 fuzmatch_str_T *fuzmatch = NULL; |
7 | 2792 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2793 *num_file = 0; // return values in case of FAIL |
7 | 2794 *file = NULL; |
2795 | |
19007
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2796 #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
|
2797 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
|
2798 return FAIL; |
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2799 #endif |
0883a37ccf84
patch 8.2.0064: diffmode completion doesn't use per-window setting
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
2800 |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2801 fuzzy = cmdline_fuzzy_complete(pat); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2802 |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2803 // Make a copy of "pat" and change "^" to "\(^\|[\/]\)" (if doing regular |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2804 // expression matching) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2805 if (!fuzzy) |
170 | 2806 { |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2807 if (*pat == '^') |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2808 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2809 patc = alloc(STRLEN(pat) + 11); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2810 if (patc == NULL) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2811 return FAIL; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2812 STRCPY(patc, "\\(^\\|[\\/]\\)"); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2813 STRCPY(patc + 11, pat + 1); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2814 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2815 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2816 patc = pat; |
170 | 2817 } |
2818 | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2819 // attempt == 0: try match with '\<', match at start of word |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2820 // attempt == 1: try match without '\<', match anywhere |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2821 for (attempt = 0; attempt <= (fuzzy ? 0 : 1); ++attempt) |
7 | 2822 { |
6375 | 2823 regmatch_T regmatch; |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2824 int score = 0; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2825 |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2826 if (!fuzzy) |
7 | 2827 { |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2828 if (attempt > 0 && patc == pat) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2829 break; // there was no anchor, no need to try again |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2830 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC); |
7 | 2831 } |
2832 | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2833 // round == 1: Count the matches. |
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
2834 // round == 2: Build the array to keep the matches. |
7 | 2835 for (round = 1; round <= 2; ++round) |
2836 { | |
2837 count = 0; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
2838 FOR_ALL_BUFFERS(buf) |
7 | 2839 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2840 if (!buf->b_p_bl) // skip unlisted buffers |
7 | 2841 continue; |
18987
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2842 #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
|
2843 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
|
2844 // 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
|
2845 // :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
|
2846 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
|
2847 continue; |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2848 #endif |
e378907d79bf
patch 8.2.0054: :diffget and :diffput don't have good completion
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2849 |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2850 if (!fuzzy) |
28873
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2851 { |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2852 if (regmatch.regprog == NULL) |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2853 { |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2854 // invalid pattern, possibly after recompiling |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2855 if (patc != pat) |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2856 vim_free(patc); |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2857 return FAIL; |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2858 } |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2859 p = buflist_match(®match, buf, p_wic); |
28873
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2860 } |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2861 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2862 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2863 p = NULL; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2864 // first try matching with the short file name |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2865 if ((score = fuzzy_match_str(buf->b_sfname, pat)) != 0) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2866 p = buf->b_sfname; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2867 if (p == NULL) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2868 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2869 // next try matching with the full path file name |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2870 if ((score = fuzzy_match_str(buf->b_ffname, pat)) != 0) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2871 p = buf->b_ffname; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2872 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2873 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2874 |
27916
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2875 if (p == NULL) |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2876 continue; |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2877 |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2878 if (round == 1) |
7 | 2879 { |
27916
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2880 ++count; |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2881 continue; |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2882 } |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2883 |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2884 if (options & WILD_HOME_REPLACE) |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2885 p = home_replace_save(buf, p); |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2886 else |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2887 p = vim_strsave(p); |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2888 |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2889 if (!fuzzy) |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2890 { |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2891 #ifdef FEAT_VIMINFO |
27916
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2892 if (matches != NULL) |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2893 { |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2894 matches[count].buf = buf; |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2895 matches[count].match = p; |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2896 count++; |
7 | 2897 } |
27916
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2898 else |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2899 #endif |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2900 (*file)[count++] = p; |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2901 } |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2902 else |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2903 { |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2904 fuzmatch[count].idx = count; |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2905 fuzmatch[count].str = p; |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2906 fuzmatch[count].score = score; |
6efa2f193c94
patch 8.2.4483: command completion makes two rounds to collect matches
Bram Moolenaar <Bram@vim.org>
parents:
27875
diff
changeset
|
2907 count++; |
7 | 2908 } |
2909 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2910 if (count == 0) // no match found, break here |
7 | 2911 break; |
2912 if (round == 1) | |
2913 { | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2914 if (!fuzzy) |
7 | 2915 { |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2916 *file = ALLOC_MULT(char_u *, count); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2917 if (*file == NULL) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2918 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2919 vim_regfree(regmatch.regprog); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2920 if (patc != pat) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2921 vim_free(patc); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2922 return FAIL; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2923 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2924 #ifdef FEAT_VIMINFO |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2925 if (options & WILD_BUFLASTUSED) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2926 matches = ALLOC_MULT(bufmatch_T, count); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2927 #endif |
7 | 2928 } |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2929 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2930 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2931 fuzmatch = ALLOC_MULT(fuzmatch_str_T, count); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2932 if (fuzmatch == NULL) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2933 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2934 *num_file = 0; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2935 *file = NULL; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2936 return FAIL; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2937 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2938 } |
7 | 2939 } |
2940 } | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2941 |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2942 if (!fuzzy) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2943 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2944 vim_regfree(regmatch.regprog); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2945 if (count) // match(es) found, break here |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2946 break; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2947 } |
7 | 2948 } |
2949 | |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2950 if (!fuzzy && patc != pat) |
170 | 2951 vim_free(patc); |
2952 | |
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
|
2953 #ifdef FEAT_VIMINFO |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2954 if (!fuzzy) |
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
|
2955 { |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2956 if (matches != 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
|
2957 { |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2958 int i; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2959 if (count > 1) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2960 qsort(matches, count, sizeof(bufmatch_T), buf_compare); |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2961 // if the current buffer is first in the list, place it at the end |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2962 if (matches[0].buf == curbuf) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2963 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2964 for (i = 1; i < count; i++) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2965 (*file)[i-1] = matches[i].match; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2966 (*file)[count-1] = matches[0].match; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2967 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2968 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2969 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2970 for (i = 0; i < count; i++) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2971 (*file)[i] = matches[i].match; |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2972 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2973 vim_free(matches); |
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
|
2974 } |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2975 } |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2976 else |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2977 { |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2978 if (fuzzymatches_to_strmatches(fuzmatch, file, count, FALSE) == FAIL) |
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27786
diff
changeset
|
2979 return FAIL; |
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
|
2980 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
2981 #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
|
2982 |
7 | 2983 *num_file = count; |
2984 return (count == 0 ? FAIL : OK); | |
2985 } | |
2986 | |
2987 /* | |
2988 * Check for a match on the file name for buffer "buf" with regprog "prog". | |
28873
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
2989 * Note that rmp->regprog may become NULL when switching regexp engine. |
7 | 2990 */ |
2991 static char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2992 buflist_match( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2993 regmatch_T *rmp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2994 buf_T *buf, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2995 int ignore_case) // when TRUE ignore case, when FALSE use 'fic' |
7 | 2996 { |
2997 char_u *match; | |
2998 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
2999 // First try the short file name, then the long file name. |
6375 | 3000 match = fname_match(rmp, buf->b_sfname, ignore_case); |
28829
2d0bd5601c30
patch 8.2.4938: crash when matching buffer with invalid pattern
Bram Moolenaar <Bram@vim.org>
parents:
28811
diff
changeset
|
3001 if (match == NULL && rmp->regprog != NULL) |
6375 | 3002 match = fname_match(rmp, buf->b_ffname, ignore_case); |
7 | 3003 |
3004 return match; | |
3005 } | |
3006 | |
3007 /* | |
28873
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
3008 * Try matching the regexp in "rmp->regprog" with file name "name". |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
3009 * Note that rmp->regprog may become NULL when switching regexp engine. |
7 | 3010 * Return "name" when there is a match, NULL when not. |
3011 */ | |
3012 static char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3013 fname_match( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3014 regmatch_T *rmp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3015 char_u *name, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3016 int ignore_case) // when TRUE ignore case, when FALSE use 'fic' |
7 | 3017 { |
3018 char_u *match = NULL; | |
3019 char_u *p; | |
3020 | |
28873
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
3021 // extra check for valid arguments |
c3570bdc93eb
patch 8.2.4959: using NULL regexp program
Bram Moolenaar <Bram@vim.org>
parents:
28829
diff
changeset
|
3022 if (name != NULL && rmp->regprog != NULL) |
7 | 3023 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3024 // Ignore case when 'fileignorecase' or the argument is set. |
6375 | 3025 rmp->rm_ic = p_fic || ignore_case; |
3026 if (vim_regexec(rmp, name, (colnr_T)0)) | |
7 | 3027 match = name; |
28753
6e55b7b30df5
patch 8.2.4901: NULL pointer access when using invalid pattern
Bram Moolenaar <Bram@vim.org>
parents:
28534
diff
changeset
|
3028 else if (rmp->regprog != NULL) |
7 | 3029 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3030 // Replace $(HOME) with '~' and try matching again. |
7 | 3031 p = home_replace_save(NULL, name); |
6375 | 3032 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0)) |
7 | 3033 match = name; |
3034 vim_free(p); | |
3035 } | |
3036 } | |
3037 | |
3038 return match; | |
3039 } | |
3040 | |
3041 /* | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3042 * Find a file in the buffer list by buffer number. |
7 | 3043 */ |
3044 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3045 buflist_findnr(int nr) |
7 | 3046 { |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3047 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
|
3048 hashitem_T *hi; |
7 | 3049 |
3050 if (nr == 0) | |
3051 nr = curwin->w_alt_fnum; | |
9511
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3052 sprintf((char *)key, "%x", nr); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3053 hi = hash_find(&buf_hashtab, key); |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3054 |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3055 if (!HASHITEM_EMPTY(hi)) |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3056 return (buf_T *)(hi->hi_key |
c2e904cc064f
commit https://github.com/vim/vim/commit/480778b805bd8bdc5d657560230e9c50feda1d0f
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3057 - ((unsigned)(curbuf->b_key - (char_u *)curbuf))); |
7 | 3058 return NULL; |
3059 } | |
3060 | |
3061 /* | |
3062 * Get name of file 'n' in the buffer list. | |
3063 * When the file has no name an empty string is returned. | |
3064 * home_replace() is used to shorten the file name (used for marks). | |
3065 * Returns a pointer to allocated memory, of NULL when failed. | |
3066 */ | |
3067 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3068 buflist_nr2name( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3069 int n, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3070 int fullname, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3071 int helptail) // for help buffers return tail only |
7 | 3072 { |
3073 buf_T *buf; | |
3074 | |
3075 buf = buflist_findnr(n); | |
3076 if (buf == NULL) | |
3077 return NULL; | |
3078 return home_replace_save(helptail ? buf : NULL, | |
3079 fullname ? buf->b_ffname : buf->b_fname); | |
3080 } | |
3081 | |
3082 /* | |
3083 * Set the "lnum" and "col" for the buffer "buf" and the current window. | |
3084 * When "copy_options" is TRUE save the local window option values. | |
3085 * When "lnum" is 0 only do the options. | |
3086 */ | |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17225
diff
changeset
|
3087 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3088 buflist_setfpos( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3089 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
|
3090 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
|
3091 linenr_T lnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3092 colnr_T col, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3093 int copy_options) |
7 | 3094 { |
3095 wininfo_T *wip; | |
3096 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
3097 FOR_ALL_BUF_WININFO(buf, wip) |
7 | 3098 if (wip->wi_win == win) |
3099 break; | |
3100 if (wip == NULL) | |
3101 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3102 // 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
|
3103 wip = ALLOC_CLEAR_ONE(wininfo_T); |
7 | 3104 if (wip == NULL) |
3105 return; | |
3106 wip->wi_win = win; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3107 if (lnum == 0) // set lnum even when it's 0 |
7 | 3108 lnum = 1; |
3109 } | |
3110 else | |
3111 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3112 // remove the entry from the list |
7 | 3113 if (wip->wi_prev) |
3114 wip->wi_prev->wi_next = wip->wi_next; | |
3115 else | |
3116 buf->b_wininfo = wip->wi_next; | |
3117 if (wip->wi_next) | |
3118 wip->wi_next->wi_prev = wip->wi_prev; | |
3119 if (copy_options && wip->wi_optset) | |
3120 { | |
3121 clear_winopt(&wip->wi_opt); | |
3122 #ifdef FEAT_FOLDING | |
3123 deleteFoldRecurse(&wip->wi_folds); | |
3124 #endif | |
3125 } | |
3126 } | |
3127 if (lnum != 0) | |
3128 { | |
3129 wip->wi_fpos.lnum = lnum; | |
3130 wip->wi_fpos.col = col; | |
3131 } | |
28413
1170b35651a5
patch 8.2.4731: the changelist index is not remembered per buffer
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
3132 if (win != NULL) |
1170b35651a5
patch 8.2.4731: the changelist index is not remembered per buffer
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
3133 wip->wi_changelistidx = win->w_changelistidx; |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3134 if (copy_options && win != NULL) |
7 | 3135 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3136 // Save the window-specific option values. |
7 | 3137 copy_winopt(&win->w_onebuf_opt, &wip->wi_opt); |
3138 #ifdef FEAT_FOLDING | |
3139 wip->wi_fold_manual = win->w_fold_manual; | |
3140 cloneFoldGrowArray(&win->w_folds, &wip->wi_folds); | |
3141 #endif | |
3142 wip->wi_optset = TRUE; | |
3143 } | |
3144 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3145 // insert the entry in front of the list |
7 | 3146 wip->wi_next = buf->b_wininfo; |
3147 buf->b_wininfo = wip; | |
3148 wip->wi_prev = NULL; | |
3149 if (wip->wi_next) | |
3150 wip->wi_next->wi_prev = wip; | |
3151 } | |
3152 | |
1743 | 3153 #ifdef FEAT_DIFF |
3154 /* | |
3155 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab | |
3156 * page. That's because a diff is local to a tab page. | |
3157 */ | |
3158 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3159 wininfo_other_tab_diff(wininfo_T *wip) |
1743 | 3160 { |
3161 win_T *wp; | |
3162 | |
3163 if (wip->wi_opt.wo_diff) | |
3164 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
3165 FOR_ALL_WINDOWS(wp) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3166 // 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
|
3167 // the buffer was in diff mode here |
1743 | 3168 if (wip->wi_win == wp) |
3169 return FALSE; | |
3170 return TRUE; | |
3171 } | |
3172 return FALSE; | |
3173 } | |
3174 #endif | |
3175 | |
7 | 3176 /* |
3177 * Find info for the current window in buffer "buf". | |
3178 * 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
|
3179 * When "need_options" is TRUE skip entries where wi_optset is FALSE. |
1743 | 3180 * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in |
3181 * another tab page. | |
7 | 3182 * Returns NULL when there isn't any info. |
3183 */ | |
3184 static wininfo_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3185 find_wininfo( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3186 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
|
3187 int need_options, |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3188 int skip_diff_buffer UNUSED) |
7 | 3189 { |
3190 wininfo_T *wip; | |
3191 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
3192 FOR_ALL_BUF_WININFO(buf, wip) |
1743 | 3193 if (wip->wi_win == curwin |
3194 #ifdef FEAT_DIFF | |
3195 && (!skip_diff_buffer || !wininfo_other_tab_diff(wip)) | |
3196 #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
|
3197 |
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3198 && (!need_options || wip->wi_optset)) |
7 | 3199 break; |
1743 | 3200 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3201 // 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
|
3202 // '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
|
3203 // 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
|
3204 // 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
|
3205 // itself. |
1743 | 3206 if (wip == NULL) |
3207 { | |
3208 #ifdef FEAT_DIFF | |
3209 if (skip_diff_buffer) | |
3210 { | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19816
diff
changeset
|
3211 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
|
3212 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
|
3213 && (!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
|
3214 || (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
|
3215 && wip->wi_win->w_buffer == buf))) |
1743 | 3216 break; |
3217 } | |
3218 else | |
3219 #endif | |
3220 wip = buf->b_wininfo; | |
3221 } | |
7 | 3222 return wip; |
3223 } | |
3224 | |
3225 /* | |
3226 * Reset the local window options to the values last used in this window. | |
3227 * If the buffer wasn't used in this window before, use the values from | |
3228 * the most recently used window. If the values were never set, use the | |
3229 * global values for the window. | |
3230 */ | |
3231 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3232 get_winopts(buf_T *buf) |
7 | 3233 { |
3234 wininfo_T *wip; | |
3235 | |
3236 clear_winopt(&curwin->w_onebuf_opt); | |
3237 #ifdef FEAT_FOLDING | |
3238 clearFolding(curwin); | |
3239 #endif | |
3240 | |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3241 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
|
3242 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
|
3243 && wip->wi_win != curwin && wip->wi_win->w_buffer == buf) |
7 | 3244 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3245 // 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
|
3246 // 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
|
3247 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
|
3248 |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3249 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
|
3250 #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
|
3251 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
|
3252 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
|
3253 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
|
3254 #endif |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3255 } |
fc03fabbedc5
patch 8.0.1836: buffer-local window options may not be recent
Christian Brabandt <cb@256bit.org>
parents:
13782
diff
changeset
|
3256 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
|
3257 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3258 // the buffer was displayed in the current window earlier |
7 | 3259 copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt); |
3260 #ifdef FEAT_FOLDING | |
3261 curwin->w_fold_manual = wip->wi_fold_manual; | |
3262 curwin->w_foldinvalid = TRUE; | |
3263 cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds); | |
3264 #endif | |
3265 } | |
3266 else | |
3267 copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt); | |
28413
1170b35651a5
patch 8.2.4731: the changelist index is not remembered per buffer
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
3268 if (wip != NULL) |
1170b35651a5
patch 8.2.4731: the changelist index is not remembered per buffer
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
3269 curwin->w_changelistidx = wip->wi_changelistidx; |
7 | 3270 |
3271 #ifdef FEAT_FOLDING | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3272 // Set 'foldlevel' to 'foldlevelstart' if it's not negative. |
7 | 3273 if (p_fdls >= 0) |
3274 curwin->w_p_fdl = p_fdls; | |
3275 #endif | |
18156
c81370b3ede4
patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents:
18010
diff
changeset
|
3276 after_copy_winopt(curwin); |
7 | 3277 } |
3278 | |
3279 /* | |
3280 * Find the position (lnum and col) for the buffer 'buf' for the current | |
3281 * window. | |
3282 * Returns a pointer to no_position if no position is found. | |
3283 */ | |
3284 pos_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3285 buflist_findfpos(buf_T *buf) |
7 | 3286 { |
3287 wininfo_T *wip; | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15595
diff
changeset
|
3288 static pos_T no_position = {1, 0, 0}; |
7 | 3289 |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3290 wip = find_wininfo(buf, FALSE, FALSE); |
7 | 3291 if (wip != NULL) |
3292 return &(wip->wi_fpos); | |
3293 else | |
3294 return &no_position; | |
3295 } | |
3296 | |
3297 /* | |
3298 * Find the lnum for the buffer 'buf' for the current window. | |
3299 */ | |
3300 linenr_T | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3301 buflist_findlnum(buf_T *buf) |
7 | 3302 { |
3303 return buflist_findfpos(buf)->lnum; | |
3304 } | |
3305 | |
3306 /* | |
11447
698ee9d4fe9f
patch 8.0.0607: after :bwipe + :new bufref might still be valid
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
3307 * List all known file names (for :files and :buffers command). |
7 | 3308 */ |
3309 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3310 buflist_list(exarg_T *eap) |
7 | 3311 { |
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
|
3312 buf_T *buf = firstbuf; |
7 | 3313 int len; |
3314 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
|
3315 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
|
3316 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
|
3317 #ifdef FEAT_TERMINAL |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3318 int job_running; |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3319 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
|
3320 #endif |
7 | 3321 |
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
|
3322 #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
|
3323 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
|
3324 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
|
3325 |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3326 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
|
3327 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3328 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
|
3329 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
|
3330 { |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3331 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
|
3332 ((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
|
3333 } |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3334 |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3335 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
|
3336 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
|
3337 |
18546
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3338 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
|
3339 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
|
3340 } |
18546
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3341 p = buflist_data; |
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3342 |
f609865bfc54
patch 8.1.2267: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
3343 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
|
3344 ? (++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
|
3345 : 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
|
3346 #else |
7 | 3347 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
|
3348 #endif |
7 | 3349 { |
13555
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3350 #ifdef FEAT_TERMINAL |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3351 job_running = term_job_running(buf->b_term); |
29038
ad99b7b9df13
patch 8.2.5041: cannot close a terminal popup with "NONE" job
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
3352 job_none_open = term_none_open(buf->b_term); |
13555
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3353 #endif |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3354 // skip unlisted buffers, unless ! was used |
6945 | 3355 if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u')) |
3356 || (vim_strchr(eap->arg, 'u') && buf->b_p_bl) | |
3357 || (vim_strchr(eap->arg, '+') | |
3358 && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf))) | |
3359 || (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
|
3360 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0)) |
6945 | 3361 || (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
|
3362 && (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
|
3363 #ifdef FEAT_TERMINAL |
78ead137b2ad
patch 8.0.1651: cannot filter :ls output for terminal buffers
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3364 || (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
|
3365 && (!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
|
3366 || (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
|
3367 && (!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
|
3368 || (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
|
3369 && (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
|
3370 #endif |
6945 | 3371 || (vim_strchr(eap->arg, '-') && buf->b_p_ma) |
3372 || (vim_strchr(eap->arg, '=') && !buf->b_p_ro) | |
3373 || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR)) | |
3374 || (vim_strchr(eap->arg, '%') && buf != curbuf) | |
3375 || (vim_strchr(eap->arg, '#') | |
3376 && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum))) | |
7 | 3377 continue; |
3378 if (buf_spname(buf) != NULL) | |
3839 | 3379 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1); |
7 | 3380 else |
3381 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
|
3382 if (message_filtered(NameBuff)) |
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3383 continue; |
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3384 |
12110
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3385 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
|
3386 : (bufIsChanged(buf) ? '+' : ' '); |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3387 #ifdef FEAT_TERMINAL |
29038
ad99b7b9df13
patch 8.2.5041: cannot close a terminal popup with "NONE" job
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
3388 if (job_running) |
12110
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3389 { |
29038
ad99b7b9df13
patch 8.2.5041: cannot close a terminal popup with "NONE" job
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
3390 if (job_none_open) |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
3391 ro_char = '?'; |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
3392 else |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
3393 ro_char = 'R'; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3394 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
|
3395 // 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
|
3396 } |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3397 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
|
3398 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
|
3399 else |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3400 #endif |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3401 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
|
3402 |
9943
af161c1f530a
commit https://github.com/vim/vim/commit/77401add71853d7a3da7ccc489f2a1bca58551ec
Christian Brabandt <cb@256bit.org>
parents:
9911
diff
changeset
|
3403 msg_putchar('\n'); |
302 | 3404 len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"", |
7 | 3405 buf->b_fnum, |
3406 buf->b_p_bl ? ' ' : 'u', | |
3407 buf == curbuf ? '%' : | |
3408 (curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '), | |
3409 buf->b_ml.ml_mfp == NULL ? ' ' : | |
3410 (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
|
3411 ro_char, |
7b3a3af7cefb
patch 8.0.0935: cannot recognize a terminal buffer in :ls output
Christian Brabandt <cb@256bit.org>
parents:
12100
diff
changeset
|
3412 changed_char, |
300 | 3413 NameBuff); |
7572
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
3414 if (len > IOSIZE - 20) |
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
3415 len = IOSIZE - 20; |
7 | 3416 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3417 // put "line 999" in column 40 or after the file name |
7 | 3418 i = 40 - vim_strsize(IObuff); |
3419 do | |
3420 IObuff[len++] = ' '; | |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
16082
diff
changeset
|
3421 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
|
3422 #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
|
3423 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
|
3424 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
|
3425 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
|
3426 #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
|
3427 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
|
3428 _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum |
272 | 3429 : (long)buflist_findlnum(buf)); |
7 | 3430 msg_outtrans(IObuff); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3431 out_flush(); // output one line at a time |
7 | 3432 ui_breakcheck(); |
3433 } | |
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
|
3434 |
18d7337b6837
patch 8.1.2225: the "last used" info of a buffer is under used
Bram Moolenaar <Bram@vim.org>
parents:
18225
diff
changeset
|
3435 #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
|
3436 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
|
3437 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
|
3438 #endif |
7 | 3439 } |
3440 | |
3441 /* | |
3442 * Get file name and line number for file 'fnum'. | |
3443 * Used by DoOneCmd() for translating '%' and '#'. | |
3444 * Used by insert_reg() and cmdline_paste() for '#' register. | |
3445 * Return FAIL if not found, OK for success. | |
3446 */ | |
3447 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3448 buflist_name_nr( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3449 int fnum, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3450 char_u **fname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3451 linenr_T *lnum) |
7 | 3452 { |
3453 buf_T *buf; | |
3454 | |
3455 buf = buflist_findnr(fnum); | |
3456 if (buf == NULL || buf->b_fname == NULL) | |
3457 return FAIL; | |
3458 | |
3459 *fname = buf->b_fname; | |
3460 *lnum = buflist_findlnum(buf); | |
3461 | |
3462 return OK; | |
3463 } | |
3464 | |
3465 /* | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3466 * 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
|
3467 * "sfname_arg". |
7 | 3468 * The file name with the full path is also remembered, for when :cd is used. |
3469 * Returns FAIL for failure (file name already in use by other buffer) | |
3470 * OK otherwise. | |
3471 */ | |
3472 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3473 setfname( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3474 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
|
3475 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
|
3476 char_u *sfname_arg, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3477 int message) // give message when buffer already exists |
7 | 3478 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3479 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
|
3480 char_u *sfname = sfname_arg; |
42 | 3481 buf_T *obuf = NULL; |
7 | 3482 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3483 stat_T st; |
7 | 3484 #endif |
3485 | |
3486 if (ffname == NULL || *ffname == NUL) | |
3487 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3488 // 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
|
3489 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
|
3490 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
|
3491 else |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3492 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
|
3493 VIM_CLEAR(buf->b_ffname); |
7 | 3494 #ifdef UNIX |
3495 st.st_dev = (dev_T)-1; | |
3496 #endif | |
3497 } | |
3498 else | |
3499 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3500 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
|
3501 if (ffname == NULL) // out of memory |
7 | 3502 return FAIL; |
3503 | |
3504 /* | |
26016
ebe2b9017481
patch 8.2.3542: too many comments are old style
Bram Moolenaar <Bram@vim.org>
parents:
25984
diff
changeset
|
3505 * If the file name is already used in another buffer: |
7 | 3506 * - if the buffer is loaded, fail |
3507 * - if the buffer is not loaded, delete it from the list | |
3508 */ | |
3509 #ifdef UNIX | |
3510 if (mch_stat((char *)ffname, &st) < 0) | |
3511 st.st_dev = (dev_T)-1; | |
42 | 3512 #endif |
3513 if (!(buf->b_flags & BF_DUMMY)) | |
3514 #ifdef UNIX | |
3515 obuf = buflist_findname_stat(ffname, &st); | |
7 | 3516 #else |
42 | 3517 obuf = buflist_findname(ffname); |
7 | 3518 #endif |
3519 if (obuf != NULL && obuf != buf) | |
3520 { | |
25885
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3521 win_T *win; |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3522 tabpage_T *tab; |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3523 int in_use = FALSE; |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3524 |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3525 // during startup a window may use a buffer that is not loaded yet |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3526 FOR_ALL_TAB_WINDOWS(tab, win) |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3527 if (win->w_buffer == obuf) |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3528 in_use = TRUE; |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3529 |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3530 // it's loaded or used in a window, fail |
7c640ad754fb
patch 8.2.3476: renaming a buffer on startup may cause using freed memory
Bram Moolenaar <Bram@vim.org>
parents:
25852
diff
changeset
|
3531 if (obuf->b_ml.ml_mfp != NULL || in_use) |
7 | 3532 { |
3533 if (message) | |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26532
diff
changeset
|
3534 emsg(_(e_buffer_with_this_name_already_exists)); |
7 | 3535 vim_free(ffname); |
3536 return FAIL; | |
3537 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3538 // 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
|
3539 close_buffer(NULL, obuf, DOBUF_WIPE, FALSE, FALSE); |
7 | 3540 } |
3541 sfname = vim_strsave(sfname); | |
3542 if (ffname == NULL || sfname == NULL) | |
3543 { | |
3544 vim_free(sfname); | |
3545 vim_free(ffname); | |
3546 return FAIL; | |
3547 } | |
3548 #ifdef USE_FNAME_CASE | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3549 fname_case(sfname, 0); // set correct case for short file name |
7 | 3550 #endif |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3551 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
|
3552 vim_free(buf->b_sfname); |
7 | 3553 vim_free(buf->b_ffname); |
3554 buf->b_ffname = ffname; | |
3555 buf->b_sfname = sfname; | |
3556 } | |
3557 buf->b_fname = buf->b_sfname; | |
3558 #ifdef UNIX | |
3559 if (st.st_dev == (dev_T)-1) | |
1873 | 3560 buf->b_dev_valid = FALSE; |
7 | 3561 else |
3562 { | |
1873 | 3563 buf->b_dev_valid = TRUE; |
7 | 3564 buf->b_dev = st.st_dev; |
3565 buf->b_ino = st.st_ino; | |
3566 } | |
3567 #endif | |
3568 | |
3569 buf->b_shortname = FALSE; | |
3570 | |
3571 buf_name_changed(buf); | |
3572 return OK; | |
3573 } | |
3574 | |
3575 /* | |
41 | 3576 * Crude way of changing the name of a buffer. Use with care! |
3577 * The name should be relative to the current directory. | |
3578 */ | |
3579 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3580 buf_set_name(int fnum, char_u *name) |
41 | 3581 { |
3582 buf_T *buf; | |
3583 | |
3584 buf = buflist_findnr(fnum); | |
3585 if (buf != NULL) | |
3586 { | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3587 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
|
3588 vim_free(buf->b_sfname); |
41 | 3589 vim_free(buf->b_ffname); |
844 | 3590 buf->b_ffname = vim_strsave(name); |
3591 buf->b_sfname = NULL; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3592 // 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
|
3593 // files on Win32. |
844 | 3594 fname_expand(buf, &buf->b_ffname, &buf->b_sfname); |
41 | 3595 buf->b_fname = buf->b_sfname; |
3596 } | |
3597 } | |
3598 | |
3599 /* | |
7 | 3600 * Take care of what needs to be done when the name of buffer "buf" has |
3601 * changed. | |
3602 */ | |
3603 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3604 buf_name_changed(buf_T *buf) |
7 | 3605 { |
3606 /* | |
3607 * If the file name changed, also change the name of the swapfile | |
3608 */ | |
3609 if (buf->b_ml.ml_mfp != NULL) | |
3610 ml_setname(buf); | |
3611 | |
26185
582218dbc6b3
patch 8.2.3624: when renaming a terminal buffer status text is not updated
Bram Moolenaar <Bram@vim.org>
parents:
26171
diff
changeset
|
3612 #ifdef FEAT_TERMINAL |
582218dbc6b3
patch 8.2.3624: when renaming a terminal buffer status text is not updated
Bram Moolenaar <Bram@vim.org>
parents:
26171
diff
changeset
|
3613 if (buf->b_term != NULL) |
582218dbc6b3
patch 8.2.3624: when renaming a terminal buffer status text is not updated
Bram Moolenaar <Bram@vim.org>
parents:
26171
diff
changeset
|
3614 term_clear_status_text(buf->b_term); |
582218dbc6b3
patch 8.2.3624: when renaming a terminal buffer status text is not updated
Bram Moolenaar <Bram@vim.org>
parents:
26171
diff
changeset
|
3615 #endif |
582218dbc6b3
patch 8.2.3624: when renaming a terminal buffer status text is not updated
Bram Moolenaar <Bram@vim.org>
parents:
26171
diff
changeset
|
3616 |
7 | 3617 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
|
3618 check_arg_idx(curwin); // check file name for arg list |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3619 maketitle(); // set window title |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3620 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
|
3621 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
|
3622 ml_timestamp(buf); // reset timestamp |
7 | 3623 } |
3624 | |
3625 /* | |
3626 * set alternate file name for current window | |
3627 * | |
3628 * Used by do_one_cmd(), do_write() and do_ecmd(). | |
3629 * Return the buffer. | |
3630 */ | |
3631 buf_T * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3632 setaltfname( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3633 char_u *ffname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3634 char_u *sfname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3635 linenr_T lnum) |
7 | 3636 { |
3637 buf_T *buf; | |
3638 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3639 // Create a buffer. 'buflisted' is not set if it's a new buffer |
7 | 3640 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
|
3641 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0) |
7 | 3642 curwin->w_alt_fnum = buf->b_fnum; |
3643 return buf; | |
3644 } | |
3645 | |
3646 /* | |
3647 * Get alternate file name for current window. | |
3648 * Return NULL if there isn't any, and give error message if requested. | |
3649 */ | |
3650 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3651 getaltfname( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3652 int errmsg) // give error message |
7 | 3653 { |
3654 char_u *fname; | |
3655 linenr_T dummy; | |
3656 | |
3657 if (buflist_name_nr(0, &fname, &dummy) == FAIL) | |
3658 { | |
3659 if (errmsg) | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24868
diff
changeset
|
3660 emsg(_(e_no_alternate_file)); |
7 | 3661 return NULL; |
3662 } | |
3663 return fname; | |
3664 } | |
3665 | |
3666 /* | |
3667 * Add a file name to the buflist and return its number. | |
3668 * Uses same flags as buflist_new(), except BLN_DUMMY. | |
3669 * | |
3670 * used by qf_init(), main() and doarglist() | |
3671 */ | |
3672 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3673 buflist_add(char_u *fname, int flags) |
7 | 3674 { |
3675 buf_T *buf; | |
3676 | |
3677 buf = buflist_new(fname, NULL, (linenr_T)0, flags); | |
3678 if (buf != NULL) | |
3679 return buf->b_fnum; | |
3680 return 0; | |
3681 } | |
3682 | |
3683 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO) | |
3684 /* | |
3685 * Adjust slashes in file names. Called after 'shellslash' was set. | |
3686 */ | |
3687 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3688 buflist_slash_adjust(void) |
7 | 3689 { |
3690 buf_T *bp; | |
3691 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
3692 FOR_ALL_BUFFERS(bp) |
7 | 3693 { |
3694 if (bp->b_ffname != NULL) | |
3695 slash_adjust(bp->b_ffname); | |
3696 if (bp->b_sfname != NULL) | |
3697 slash_adjust(bp->b_sfname); | |
3698 } | |
3699 } | |
3700 #endif | |
3701 | |
3702 /* | |
1743 | 3703 * Set alternate cursor position for the current buffer and window "win". |
7 | 3704 * Also save the local window option values. |
3705 */ | |
3706 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3707 buflist_altfpos(win_T *win) |
7 | 3708 { |
1743 | 3709 buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE); |
7 | 3710 } |
3711 | |
3712 /* | |
3713 * Return TRUE if 'ffname' is not the same file as current file. | |
3714 * Fname must have a full path (expanded by mch_FullName()). | |
3715 */ | |
3716 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3717 otherfile(char_u *ffname) |
7 | 3718 { |
3719 return otherfile_buf(curbuf, ffname | |
3720 #ifdef UNIX | |
3721 , NULL | |
3722 #endif | |
3723 ); | |
3724 } | |
3725 | |
3726 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3727 otherfile_buf( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3728 buf_T *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3729 char_u *ffname |
7 | 3730 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3731 , stat_T *stp |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3732 #endif |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3733 ) |
7 | 3734 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3735 // no name is different |
7 | 3736 if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL) |
3737 return TRUE; | |
3738 if (fnamecmp(ffname, buf->b_ffname) == 0) | |
3739 return FALSE; | |
3740 #ifdef UNIX | |
3741 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3742 stat_T st; |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3743 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3744 // If no stat_T given, get it now |
7 | 3745 if (stp == NULL) |
3746 { | |
1873 | 3747 if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0) |
7 | 3748 st.st_dev = (dev_T)-1; |
3749 stp = &st; | |
3750 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3751 // 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
|
3752 // 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
|
3753 // 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
|
3754 // 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
|
3755 // 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
|
3756 // 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
|
3757 // 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
|
3758 // 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
|
3759 // file. |
7 | 3760 if (buf_same_ino(buf, stp)) |
3761 { | |
3762 buf_setino(buf); | |
3763 if (buf_same_ino(buf, stp)) | |
3764 return FALSE; | |
3765 } | |
3766 } | |
3767 #endif | |
3768 return TRUE; | |
3769 } | |
3770 | |
3771 #if defined(UNIX) || defined(PROTO) | |
3772 /* | |
3773 * Set inode and device number for a buffer. | |
3774 * Must always be called when b_fname is changed!. | |
3775 */ | |
3776 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3777 buf_setino(buf_T *buf) |
7 | 3778 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3779 stat_T st; |
7 | 3780 |
3781 if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0) | |
3782 { | |
1873 | 3783 buf->b_dev_valid = TRUE; |
7 | 3784 buf->b_dev = st.st_dev; |
3785 buf->b_ino = st.st_ino; | |
3786 } | |
3787 else | |
1873 | 3788 buf->b_dev_valid = FALSE; |
7 | 3789 } |
3790 | |
3791 /* | |
3792 * Return TRUE if dev/ino in buffer "buf" matches with "stp". | |
3793 */ | |
3794 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3795 buf_same_ino( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3796 buf_T *buf, |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9228
diff
changeset
|
3797 stat_T *stp) |
7 | 3798 { |
1873 | 3799 return (buf->b_dev_valid |
7 | 3800 && stp->st_dev == buf->b_dev |
3801 && stp->st_ino == buf->b_ino); | |
3802 } | |
3803 #endif | |
3804 | |
667 | 3805 /* |
3806 * Print info about the current buffer. | |
3807 */ | |
7 | 3808 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3809 fileinfo( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3810 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
|
3811 int shorthelp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3812 int dont_truncate) |
7 | 3813 { |
3814 char_u *name; | |
3815 int n; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3816 char *p; |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3817 char *buffer; |
272 | 3818 size_t len; |
7 | 3819 |
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
|
3820 buffer = alloc(IOSIZE); |
7 | 3821 if (buffer == NULL) |
3822 return; | |
3823 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3824 if (fullname > 1) // 2 CTRL-G: include buffer number |
7 | 3825 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3826 vim_snprintf(buffer, IOSIZE, "buf %d: ", curbuf->b_fnum); |
7 | 3827 p = buffer + STRLEN(buffer); |
3828 } | |
3829 else | |
3830 p = buffer; | |
3831 | |
3832 *p++ = '"'; | |
3833 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
|
3834 vim_strncpy((char_u *)p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1); |
7 | 3835 else |
3836 { | |
3837 if (!fullname && curbuf->b_fname != NULL) | |
3838 name = curbuf->b_fname; | |
3839 else | |
3840 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
|
3841 home_replace(shorthelp ? curbuf : NULL, name, (char_u *)p, |
7 | 3842 (int)(IOSIZE - (p - buffer)), TRUE); |
3843 } | |
3844 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3845 vim_snprintf_add(buffer, IOSIZE, "\"%s%s%s%s%s%s", |
7 | 3846 curbufIsChanged() ? (shortmess(SHM_MOD) |
3847 ? " [+]" : _(" [Modified]")) : " ", | |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
3848 (curbuf->b_flags & BF_NOTEDITED) && !bt_dontwrite(curbuf) |
7 | 3849 ? _("[Not edited]") : "", |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
3850 (curbuf->b_flags & BF_NEW) && !bt_dontwrite(curbuf) |
20828
db18625d8134
patch 8.2.0966: 'shortmess' flag "n" not used in two places
Bram Moolenaar <Bram@vim.org>
parents:
20802
diff
changeset
|
3851 ? new_file_message() : "", |
7 | 3852 (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "", |
4795
8360a59aa04b
updated for version 7.3.1144
Bram Moolenaar <bram@vim.org>
parents:
4354
diff
changeset
|
3853 curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]") |
7 | 3854 : _("[readonly]")) : "", |
3855 (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK) | |
3856 || curbuf->b_p_ro) ? | |
3857 " " : ""); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3858 // 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
|
3859 // causes an overflow, thus for large numbers divide instead. |
7 | 3860 if (curwin->w_cursor.lnum > 1000000L) |
3861 n = (int)(((long)curwin->w_cursor.lnum) / | |
3862 ((long)curbuf->b_ml.ml_line_count / 100L)); | |
3863 else | |
3864 n = (int)(((long)curwin->w_cursor.lnum * 100L) / | |
3865 (long)curbuf->b_ml.ml_line_count); | |
3866 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
|
3867 vim_snprintf_add(buffer, IOSIZE, "%s", _(no_lines_msg)); |
7 | 3868 else if (p_ru) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3869 // 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
|
3870 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
|
3871 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
|
3872 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
|
3873 (long)curbuf->b_ml.ml_line_count, n); |
7 | 3874 else |
3875 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3876 vim_snprintf_add(buffer, IOSIZE, |
7 | 3877 _("line %ld of %ld --%d%%-- col "), |
3878 (long)curwin->w_cursor.lnum, | |
3879 (long)curbuf->b_ml.ml_line_count, | |
3880 n); | |
3881 validate_virtcol(); | |
1869 | 3882 len = STRLEN(buffer); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3883 col_print((char_u *)buffer + len, IOSIZE - len, |
7 | 3884 (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); |
3885 } | |
3886 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3887 (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
|
3888 !shortmess(SHM_FILE)); |
7 | 3889 |
3890 if (dont_truncate) | |
3891 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3892 // 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
|
3893 // First call msg_start() to get the message in the right place. |
7 | 3894 msg_start(); |
3895 n = msg_scroll; | |
3896 msg_scroll = TRUE; | |
3897 msg(buffer); | |
3898 msg_scroll = n; | |
3899 } | |
3900 else | |
3901 { | |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27301
diff
changeset
|
3902 p = msg_trunc_attr(buffer, FALSE, 0); |
7 | 3903 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
|
3904 // 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
|
3905 // - 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
|
3906 // before redrawing). |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3907 // - 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
|
3908 // prompt. |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3909 set_keep_msg((char_u *)p, 0); |
7 | 3910 } |
3911 | |
3912 vim_free(buffer); | |
3913 } | |
3914 | |
3915 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3916 col_print( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3917 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3918 size_t buflen, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3919 int col, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3920 int vcol) |
7 | 3921 { |
3922 if (col == vcol) | |
1869 | 3923 vim_snprintf((char *)buf, buflen, "%d", col); |
7 | 3924 else |
1869 | 3925 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol); |
7 | 3926 } |
3927 | |
3928 static char_u *lasttitle = NULL; | |
3929 static char_u *lasticon = NULL; | |
3930 | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3931 /* |
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3932 * 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
|
3933 */ |
7 | 3934 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3935 maketitle(void) |
7 | 3936 { |
3937 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
|
3938 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
|
3939 char_u *icon_str = NULL; |
7 | 3940 int maxlen = 0; |
3941 int len; | |
3942 int mustset; | |
3943 char_u buf[IOSIZE]; | |
3944 int off; | |
3945 | |
3946 if (!redrawing()) | |
3947 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3948 // Postpone updating the title when 'lazyredraw' is set. |
7 | 3949 need_maketitle = TRUE; |
3950 return; | |
3951 } | |
3952 | |
3953 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
|
3954 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
|
3955 return; // nothing to do |
7 | 3956 |
3957 if (p_title) | |
3958 { | |
3959 if (p_titlelen > 0) | |
3960 { | |
3961 maxlen = p_titlelen * Columns / 100; | |
3962 if (maxlen < 10) | |
3963 maxlen = 10; | |
3964 } | |
3965 | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
3966 title_str = buf; |
7 | 3967 if (*p_titlestring != NUL) |
3968 { | |
3969 #ifdef FEAT_STL_OPT | |
771 | 3970 if (stl_syntax & STL_IN_TITLE) |
31018
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
3971 build_stl_str_hl(curwin, title_str, sizeof(buf), p_titlestring, |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
3972 (char_u *)"titlestring", 0, |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
3973 0, maxlen, NULL, NULL); |
7 | 3974 else |
3975 #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
|
3976 title_str = p_titlestring; |
7 | 3977 } |
3978 else | |
3979 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
3980 // format: "fname + (path) (1 of 2) - VIM" |
7 | 3981 |
3780 | 3982 #define SPACE_FOR_FNAME (IOSIZE - 100) |
3983 #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
|
3984 #define SPACE_FOR_ARGNR (IOSIZE - 10) // at least room for " - VIM" |
7 | 3985 if (curbuf->b_fname == NULL) |
3780 | 3986 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
|
3987 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3988 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
|
3989 { |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3990 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
|
3991 SPACE_FOR_FNAME); |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3992 } |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
3993 #endif |
7 | 3994 else |
3995 { | |
3996 p = transstr(gettail(curbuf->b_fname)); | |
3780 | 3997 vim_strncpy(buf, p, SPACE_FOR_FNAME); |
7 | 3998 vim_free(p); |
3999 } | |
4000 | |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4001 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4002 if (curbuf->b_term == NULL) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4003 #endif |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4004 switch (bufIsChanged(curbuf) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4005 + (curbuf->b_p_ro * 2) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4006 + (!curbuf->b_p_ma * 4)) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4007 { |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4008 case 1: STRCAT(buf, " +"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4009 case 2: STRCAT(buf, " ="); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4010 case 3: STRCAT(buf, " =+"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4011 case 4: |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4012 case 6: STRCAT(buf, " -"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4013 case 5: |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4014 case 7: STRCAT(buf, " -+"); break; |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4015 } |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4016 |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4017 if (curbuf->b_fname != NULL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4018 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4019 && curbuf->b_term == NULL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4020 #endif |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
4021 ) |
7 | 4022 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4023 // Get path of file, replace home dir with ~ |
7 | 4024 off = (int)STRLEN(buf); |
4025 buf[off++] = ' '; | |
4026 buf[off++] = '('; | |
4027 home_replace(curbuf, curbuf->b_ffname, | |
3780 | 4028 buf + off, SPACE_FOR_DIR - off, TRUE); |
7 | 4029 #ifdef BACKSLASH_IN_FILENAME |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4030 // avoid "c:/name" to be reduced to "c" |
7 | 4031 if (isalpha(buf[off]) && buf[off + 1] == ':') |
4032 off += 2; | |
4033 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4034 // remove the file name |
39 | 4035 p = gettail_sep(buf + off); |
7 | 4036 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
|
4037 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4038 // 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
|
4039 vim_strncpy(buf + off, (char_u *)_("help"), |
3780 | 4040 (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
|
4041 } |
7 | 4042 else |
4043 *p = NUL; | |
39 | 4044 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4045 // 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
|
4046 // 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
|
4047 // file name) use (...). |
3780 | 4048 if (off < SPACE_FOR_DIR) |
4049 { | |
4050 p = transstr(buf + off); | |
4051 vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off)); | |
4052 vim_free(p); | |
4053 } | |
4054 else | |
4055 { | |
4056 vim_strncpy(buf + off, (char_u *)"...", | |
4057 (size_t)(SPACE_FOR_ARGNR - off)); | |
4058 } | |
7 | 4059 STRCAT(buf, ")"); |
4060 } | |
4061 | |
3780 | 4062 append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE); |
7 | 4063 |
4064 #if defined(FEAT_CLIENTSERVER) | |
4065 if (serverName != NULL) | |
4066 { | |
4067 STRCAT(buf, " - "); | |
2768 | 4068 vim_strcat(buf, serverName, IOSIZE); |
7 | 4069 } |
4070 else | |
4071 #endif | |
4072 STRCAT(buf, " - VIM"); | |
4073 | |
4074 if (maxlen > 0) | |
4075 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4076 // make it shorter by removing a bit in the middle |
3277 | 4077 if (vim_strsize(buf) > maxlen) |
4078 trunc_string(buf, buf, maxlen, IOSIZE); | |
7 | 4079 } |
4080 } | |
4081 } | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4082 mustset = value_changed(title_str, &lasttitle); |
7 | 4083 |
4084 if (p_icon) | |
4085 { | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4086 icon_str = buf; |
7 | 4087 if (*p_iconstring != NUL) |
4088 { | |
4089 #ifdef FEAT_STL_OPT | |
771 | 4090 if (stl_syntax & STL_IN_ICON) |
31018
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4091 build_stl_str_hl(curwin, icon_str, sizeof(buf), p_iconstring, |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4092 (char_u *)"iconstring", 0, 0, 0, NULL, NULL); |
7 | 4093 else |
4094 #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
|
4095 icon_str = p_iconstring; |
7 | 4096 } |
4097 else | |
4098 { | |
4099 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
|
4100 p = buf_spname(curbuf); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4101 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
|
4102 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
|
4103 *icon_str = NUL; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4104 // 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
|
4105 len = (int)STRLEN(p); |
7 | 4106 if (len > 100) |
4107 { | |
4108 len -= 100; | |
4109 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
|
4110 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
|
4111 p += len; |
7 | 4112 } |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4113 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
|
4114 trans_characters(icon_str, IOSIZE); |
7 | 4115 } |
4116 } | |
4117 | |
14087
1d25a3e8e03c
patch 8.1.0061: window title is wrong after resetting and setting 'title'
Christian Brabandt <cb@256bit.org>
parents:
14037
diff
changeset
|
4118 mustset |= value_changed(icon_str, &lasticon); |
7 | 4119 |
4120 if (mustset) | |
4121 resettitle(); | |
4122 } | |
4123 | |
4124 /* | |
4125 * Used for title and icon: Check if "str" differs from "*last". Set "*last" | |
4126 * 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
|
4127 * Return TRUE if resettitle() is to be called. |
7 | 4128 */ |
4129 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
|
4130 value_changed(char_u *str, char_u **last) |
7 | 4131 { |
4132 if ((str == NULL) != (*last == NULL) | |
4133 || (str != NULL && *last != NULL && STRCMP(str, *last) != 0)) | |
4134 { | |
4135 vim_free(*last); | |
4136 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
|
4137 { |
7 | 4138 *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
|
4139 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
|
4140 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
|
4141 } |
7 | 4142 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
|
4143 { |
7 | 4144 *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
|
4145 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
|
4146 } |
7 | 4147 } |
4148 return FALSE; | |
4149 } | |
4150 | |
4151 /* | |
4152 * Put current window title back (used after calling a shell) | |
4153 */ | |
4154 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4155 resettitle(void) |
7 | 4156 { |
4157 mch_settitle(lasttitle, lasticon); | |
4158 } | |
358 | 4159 |
4160 # if defined(EXITFREE) || defined(PROTO) | |
4161 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4162 free_titles(void) |
358 | 4163 { |
4164 vim_free(lasttitle); | |
4165 vim_free(lasticon); | |
4166 } | |
4167 # endif | |
4168 | |
7 | 4169 |
686 | 4170 #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
|
4171 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4172 /* |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4173 * 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
|
4174 */ |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4175 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
|
4176 { |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4177 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
|
4178 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
|
4179 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
|
4180 enum { |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4181 Normal, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4182 Empty, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4183 Group, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4184 Middle, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4185 Highlight, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4186 TabPage, |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4187 Trunc |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4188 } 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
|
4189 } 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
|
4190 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4191 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
|
4192 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
|
4193 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
|
4194 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
|
4195 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
|
4196 |
7 | 4197 /* |
675 | 4198 * Build a string from the status line items in "fmt". |
7 | 4199 * Return length of string in screen cells. |
4200 * | |
675 | 4201 * Normally works for window "wp", except when working for 'tabline' then it |
4202 * is "curwin". | |
4203 * | |
7 | 4204 * Items are drawn interspersed with the text that surrounds it |
4205 * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation | |
4206 * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional | |
4207 * | |
4208 * If maxwidth is not zero, the string will be filled at any middle marker | |
4209 * or truncated if too long, fillchar is used for all whitespace. | |
4210 */ | |
4211 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4212 build_stl_str_hl( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4213 win_T *wp, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4214 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
|
4215 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
|
4216 char_u *fmt, |
31018
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4217 char_u *opt_name, // option name corresponding to "fmt" |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4218 int opt_scope, // scope for "opt_name" |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4219 int fillchar, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4220 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
|
4221 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
|
4222 stl_hlrec_T **tabtab) // return: tab page nrs (can be NULL) |
7 | 4223 { |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4224 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
|
4225 size_t len; |
7 | 4226 char_u *p; |
4227 char_u *s; | |
4228 char_u *t; | |
4333 | 4229 int byteval; |
7 | 4230 #ifdef FEAT_EVAL |
31018
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4231 int use_sandbox; |
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
|
4232 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
|
4233 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
|
4234 int save_VIsual_active; |
7 | 4235 #endif |
4236 int empty_line; | |
4237 colnr_T virtcol; | |
4238 long l; | |
4239 long n; | |
4240 int prevchar_isflag; | |
4241 int prevchar_isitem; | |
4242 int itemisflag; | |
4243 int fillable; | |
4244 char_u *str; | |
4245 long num; | |
4246 int width; | |
4247 int itemcnt; | |
4248 int curitem; | |
12660
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4249 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
|
4250 int group_start_userhl; |
7 | 4251 int groupdepth; |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4252 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4253 int evaldepth; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4254 #endif |
7 | 4255 int minwid; |
4256 int maxwid; | |
4257 int zeropad; | |
4258 char_u base; | |
4259 char_u opt; | |
4260 #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
|
4261 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
|
4262 char_u win_tmp[TMPLEN]; |
678 | 4263 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
|
4264 stl_hlrec_T *sp; |
29812
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
4265 int save_redraw_not_allowed = redraw_not_allowed; |
27730
ba47c7d07ce6
patch 8.2.4391: command line executed when typing Esc in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
4266 int save_KeyTyped = KeyTyped; |
31018
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4267 // TODO: find out why using called_emsg_before makes tests fail, does it |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4268 // matter? |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4269 // int called_emsg_before = called_emsg; |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4270 int did_emsg_before = did_emsg; |
678 | 4271 |
29812
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
4272 // When inside update_screen() we do not want redrawing a statusline, |
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
4273 // ruler, title, etc. to trigger another redraw, it may cause an endless |
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
4274 // loop. |
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
4275 if (updating_screen) |
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
4276 redraw_not_allowed = TRUE; |
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
4277 |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4278 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
|
4279 { |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4280 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
|
4281 stl_groupitem = ALLOC_MULT(int, stl_items_len); |
27786
fa675efa1e75
patch 8.2.4419: illegal memory access when using 20 highlights
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
4282 |
fa675efa1e75
patch 8.2.4419: illegal memory access when using 20 highlights
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
4283 // Allocate one more, because the last element is used to indicate the |
fa675efa1e75
patch 8.2.4419: illegal memory access when using 20 highlights
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
4284 // end of the list. |
fa675efa1e75
patch 8.2.4419: illegal memory access when using 20 highlights
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
4285 stl_hltab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1); |
fa675efa1e75
patch 8.2.4419: illegal memory access when using 20 highlights
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
4286 stl_tabtab = ALLOC_MULT(stl_hlrec_T, stl_items_len + 1); |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4287 } |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4288 |
678 | 4289 #ifdef FEAT_EVAL |
31018
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4290 // if "fmt" was set insecurely it needs to be evaluated in the sandbox |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4291 use_sandbox = was_set_insecurely(opt_name, opt_scope); |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4292 |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4293 // When the format starts with "%!" then evaluate it as an expression and |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
4294 // use the result as the actual format string. |
678 | 4295 if (fmt[0] == '%' && fmt[1] == '!') |
4296 { | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4297 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
|
4298 |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4299 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
|
4300 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
|
4301 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
|
4302 |
30598
37aa9fd2ed72
patch 9.0.0634: evaluating "expr" options has more overhead than needed
Bram Moolenaar <Bram@vim.org>
parents:
30558
diff
changeset
|
4303 usefmt = eval_to_string_safe(fmt + 2, use_sandbox, FALSE, FALSE); |
678 | 4304 if (usefmt == NULL) |
943 | 4305 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
|
4306 |
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4307 do_unlet((char_u *)"g:statusline_winid", TRUE); |
678 | 4308 } |
4309 #endif | |
7 | 4310 |
4311 if (fillchar == 0) | |
4312 fillchar = ' '; | |
819 | 4313 |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4314 // 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
|
4315 // 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
|
4316 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
|
4317 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
|
4318 { |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4319 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
|
4320 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
|
4321 } |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4322 |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4323 // 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
|
4324 // 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
|
4325 p = ml_get_buf(wp->w_buffer, lnum, FALSE); |
4333 | 4326 empty_line = (*p == NUL); |
4327 | |
15557
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4328 // 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
|
4329 // 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
|
4330 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
|
4331 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
|
4332 { |
c0560da7873e
patch 8.1.0786: ml_get error when updating the status line
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4333 // 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
|
4334 // 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
|
4335 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
|
4336 wp->w_cursor.coladd = 0; |
4333 | 4337 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
|
4338 } |
4333 | 4339 else |
4340 byteval = (*mb_ptr2char)(p + wp->w_cursor.col); | |
7 | 4341 |
4342 groupdepth = 0; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4343 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4344 evaldepth = 0; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4345 #endif |
7 | 4346 p = out; |
4347 curitem = 0; | |
4348 prevchar_isflag = TRUE; | |
4349 prevchar_isitem = FALSE; | |
29507
d3058719eff5
patch 9.0.0095: conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
29455
diff
changeset
|
4350 for (s = usefmt; *s != NUL; ) |
7 | 4351 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4352 if (curitem == (int)stl_items_len) |
2704 | 4353 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4354 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
|
4355 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
|
4356 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
|
4357 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
|
4358 |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4359 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
|
4360 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
|
4361 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4362 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
|
4363 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
|
4364 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
|
4365 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4366 stl_groupitem = new_groupitem; |
27786
fa675efa1e75
patch 8.2.4419: illegal memory access when using 20 highlights
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
4367 new_hlrec = vim_realloc(stl_hltab, |
fa675efa1e75
patch 8.2.4419: illegal memory access when using 20 highlights
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
4368 sizeof(stl_hlrec_T) * (new_len + 1)); |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4369 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
|
4370 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4371 stl_hltab = new_hlrec; |
27786
fa675efa1e75
patch 8.2.4419: illegal memory access when using 20 highlights
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
4372 new_hlrec = vim_realloc(stl_tabtab, |
fa675efa1e75
patch 8.2.4419: illegal memory access when using 20 highlights
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
4373 sizeof(stl_hlrec_T) * (new_len + 1)); |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4374 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
|
4375 break; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4376 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
|
4377 stl_items_len = new_len; |
2704 | 4378 } |
4379 | |
29507
d3058719eff5
patch 9.0.0095: conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
29455
diff
changeset
|
4380 if (*s != '%') |
7 | 4381 prevchar_isflag = prevchar_isitem = FALSE; |
4382 | |
4383 /* | |
4384 * Handle up to the next '%' or the end. | |
4385 */ | |
4386 while (*s != NUL && *s != '%' && p + 1 < out + outlen) | |
4387 *p++ = *s++; | |
4388 if (*s == NUL || p + 1 >= out + outlen) | |
4389 break; | |
4390 | |
4391 /* | |
4392 * Handle one '%' item. | |
4393 */ | |
4394 s++; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4395 if (*s == NUL) // ignore trailing % |
2694 | 4396 break; |
7 | 4397 if (*s == '%') |
4398 { | |
4399 if (p + 1 >= out + outlen) | |
4400 break; | |
4401 *p++ = *s++; | |
4402 prevchar_isflag = prevchar_isitem = FALSE; | |
4403 continue; | |
4404 } | |
4405 if (*s == STL_MIDDLEMARK) | |
4406 { | |
4407 s++; | |
4408 if (groupdepth > 0) | |
4409 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
|
4410 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
|
4411 stl_items[curitem++].stl_start = p; |
7 | 4412 continue; |
4413 } | |
4414 if (*s == STL_TRUNCMARK) | |
4415 { | |
4416 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
|
4417 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
|
4418 stl_items[curitem++].stl_start = p; |
7 | 4419 continue; |
4420 } | |
4421 if (*s == ')') | |
4422 { | |
4423 s++; | |
4424 if (groupdepth < 1) | |
4425 continue; | |
4426 groupdepth--; | |
4427 | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4428 t = stl_items[stl_groupitem[groupdepth]].stl_start; |
7 | 4429 *p = NUL; |
4430 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
|
4431 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
|
4432 && stl_items[stl_groupitem[groupdepth]].stl_minwid == 0) |
7 | 4433 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4434 // 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
|
4435 // 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
|
4436 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
|
4437 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
|
4438 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4439 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
|
4440 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4441 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
|
4442 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
|
4443 break; |
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4444 } |
185f8dbdcf26
patch 8.0.1220: skipping empty statusline groups is not correct
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4445 } |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4446 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
|
4447 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4448 if (stl_items[n].stl_type == Normal) |
7 | 4449 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
|
4450 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
|
4451 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
|
4452 } |
ac6e56d8950e
patch 8.0.1208: 'statusline' drops empty group with highlight change
Christian Brabandt <cb@256bit.org>
parents:
12630
diff
changeset
|
4453 if (n == curitem && group_start_userhl == group_end_userhl) |
7 | 4454 { |
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
|
4455 // empty group |
7 | 4456 p = t; |
4457 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
|
4458 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
|
4459 { |
53ff4dfe6e11
patch 8.2.1259: empty group in 'tabline' may cause using an invalid pointer
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
4460 // 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
|
4461 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
|
4462 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
|
4463 // 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
|
4464 // 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
|
4465 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
|
4466 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
|
4467 } |
7 | 4468 } |
4469 } | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4470 if (l > stl_items[stl_groupitem[groupdepth]].stl_maxwid) |
7 | 4471 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4472 // truncate, remove n bytes of text at the start |
7 | 4473 if (has_mbyte) |
4474 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4475 // Find the first character that should be included. |
7 | 4476 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
|
4477 while (l >= stl_items[stl_groupitem[groupdepth]].stl_maxwid) |
7 | 4478 { |
4479 l -= ptr2cells(t + n); | |
474 | 4480 n += (*mb_ptr2len)(t + n); |
7 | 4481 } |
4482 } | |
4483 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
|
4484 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
|
4485 .stl_maxwid + 1; |
7 | 4486 |
4487 *t = '<'; | |
1869 | 4488 mch_memmove(t + 1, t + n, (size_t)(p - (t + n))); |
7 | 4489 p = p - n + 1; |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15557
diff
changeset
|
4490 |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15557
diff
changeset
|
4491 // 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
|
4492 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
|
4493 MB_CHAR2BYTES(fillchar, p); |
7 | 4494 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4495 // 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
|
4496 for (l = stl_groupitem[groupdepth] + 1; l < curitem; l++) |
7 | 4497 { |
28811
bd5b6ac5998f
patch 8.2.4929: off-by-one error in in statusline item
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
4498 // Minus one for the leading '<' added above. |
bd5b6ac5998f
patch 8.2.4929: off-by-one error in in statusline item
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
4499 stl_items[l].stl_start -= n - 1; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4500 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
|
4501 stl_items[l].stl_start = t; |
7 | 4502 } |
4503 } | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4504 else if (abs(stl_items[stl_groupitem[groupdepth]].stl_minwid) > l) |
7 | 4505 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4506 // 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
|
4507 n = stl_items[stl_groupitem[groupdepth]].stl_minwid; |
7 | 4508 if (n < 0) |
4509 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4510 // fill by appending characters |
7 | 4511 n = 0 - n; |
4512 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
|
4513 MB_CHAR2BYTES(fillchar, p); |
7 | 4514 } |
4515 else | |
4516 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4517 // 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
|
4518 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
|
4519 mch_memmove(t + l, t, (size_t)(p - t)); |
7 | 4520 if (p + l >= out + outlen) |
835 | 4521 l = (long)((out + outlen) - p - 1); |
7 | 4522 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
|
4523 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
|
4524 stl_items[n].stl_start += l; |
7 | 4525 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
|
4526 MB_CHAR2BYTES(fillchar, t); |
7 | 4527 } |
4528 } | |
4529 continue; | |
4530 } | |
4531 minwid = 0; | |
4532 maxwid = 9999; | |
4533 zeropad = FALSE; | |
4534 l = 1; | |
4535 if (*s == '0') | |
4536 { | |
4537 s++; | |
4538 zeropad = TRUE; | |
4539 } | |
4540 if (*s == '-') | |
4541 { | |
4542 s++; | |
4543 l = -1; | |
4544 } | |
4545 if (VIM_ISDIGIT(*s)) | |
4546 { | |
4547 minwid = (int)getdigits(&s); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4548 if (minwid < 0) // overflow |
7 | 4549 minwid = 0; |
4550 } | |
678 | 4551 if (*s == STL_USER_HL) |
7 | 4552 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4553 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
|
4554 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
|
4555 stl_items[curitem].stl_minwid = minwid > 9 ? 1 : minwid; |
7 | 4556 s++; |
4557 curitem++; | |
4558 continue; | |
4559 } | |
681 | 4560 if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR) |
4561 { | |
4562 if (*s == STL_TABCLOSENR) | |
4563 { | |
4564 if (minwid == 0) | |
4565 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4566 // %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
|
4567 // define tab label nr. |
681 | 4568 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
|
4569 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
|
4570 && stl_items[n].stl_minwid >= 0) |
681 | 4571 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4572 minwid = stl_items[n].stl_minwid; |
681 | 4573 break; |
4574 } | |
4575 } | |
4576 else | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4577 // close nrs are stored as negative values |
681 | 4578 minwid = - minwid; |
4579 } | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4580 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
|
4581 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
|
4582 stl_items[curitem].stl_minwid = minwid; |
681 | 4583 s++; |
4584 curitem++; | |
4585 continue; | |
4586 } | |
7 | 4587 if (*s == '.') |
4588 { | |
4589 s++; | |
4590 if (VIM_ISDIGIT(*s)) | |
4591 { | |
4592 maxwid = (int)getdigits(&s); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4593 if (maxwid <= 0) // overflow |
7 | 4594 maxwid = 50; |
4595 } | |
4596 } | |
4597 minwid = (minwid > 50 ? 50 : minwid) * l; | |
4598 if (*s == '(') | |
4599 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4600 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
|
4601 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
|
4602 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
|
4603 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
|
4604 stl_items[curitem].stl_maxwid = maxwid; |
7 | 4605 s++; |
4606 curitem++; | |
4607 continue; | |
4608 } | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4609 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4610 // Denotes end of expanded %{} block |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4611 if (*s == '}' && evaldepth > 0) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4612 { |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4613 s++; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4614 evaldepth--; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4615 continue; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4616 } |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4617 #endif |
7 | 4618 if (vim_strchr(STL_ALL, *s) == NULL) |
4619 { | |
4620 s++; | |
4621 continue; | |
4622 } | |
4623 opt = *s++; | |
4624 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4625 // OK - now for the real work |
7 | 4626 base = 'D'; |
4627 itemisflag = FALSE; | |
4628 fillable = TRUE; | |
4629 num = -1; | |
4630 str = NULL; | |
4631 switch (opt) | |
4632 { | |
4633 case STL_FILEPATH: | |
4634 case STL_FULLPATH: | |
4635 case STL_FILENAME: | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4636 fillable = FALSE; // don't change ' ' to fillchar |
7 | 4637 if (buf_spname(wp->w_buffer) != NULL) |
3839 | 4638 vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1); |
7 | 4639 else |
4640 { | |
4641 t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname | |
667 | 4642 : wp->w_buffer->b_fname; |
7 | 4643 home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE); |
4644 } | |
4645 trans_characters(NameBuff, MAXPATHL); | |
4646 if (opt != STL_FILENAME) | |
4647 str = NameBuff; | |
4648 else | |
4649 str = gettail(NameBuff); | |
4650 break; | |
4651 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4652 case STL_VIM_EXPR: // '{' |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4653 { |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4654 #ifdef FEAT_EVAL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4655 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
|
4656 #endif |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4657 int reevaluate = (*s == '%'); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4658 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4659 if (reevaluate) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4660 s++; |
7 | 4661 itemisflag = TRUE; |
4662 t = p; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4663 while ((*s != '}' || (reevaluate && s[-1] != '%')) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4664 && *s != NUL && p + 1 < out + outlen) |
7 | 4665 *p++ = *s++; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4666 if (*s != '}') // missing '}' or out of space |
7 | 4667 break; |
4668 s++; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4669 if (reevaluate) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4670 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
|
4671 else |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4672 *p = 0; |
7 | 4673 p = t; |
4674 #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
|
4675 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
|
4676 "%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
|
4677 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
|
4678 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
|
4679 set_internal_string_var((char_u *)"g:actual_curwin", win_tmp); |
7 | 4680 |
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
|
4681 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
|
4682 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
|
4683 save_VIsual_active = VIsual_active; |
7 | 4684 curwin = wp; |
4685 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
|
4686 // 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
|
4687 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
|
4688 VIsual_active = FALSE; |
7 | 4689 |
30598
37aa9fd2ed72
patch 9.0.0634: evaluating "expr" options has more overhead than needed
Bram Moolenaar <Bram@vim.org>
parents:
30558
diff
changeset
|
4690 str = eval_to_string_safe(p, use_sandbox, FALSE, FALSE); |
7 | 4691 |
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
|
4692 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
|
4693 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
|
4694 VIsual_active = save_VIsual_active; |
145 | 4695 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
|
4696 do_unlet((char_u *)"g:actual_curwin", TRUE); |
7 | 4697 |
4698 if (str != NULL && *str != 0) | |
4699 { | |
4700 if (*skipdigits(str) == NUL) | |
4701 { | |
4702 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
|
4703 VIM_CLEAR(str); |
7 | 4704 itemisflag = FALSE; |
4705 } | |
4706 } | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4707 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4708 // 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
|
4709 // 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
|
4710 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
|
4711 && strchr((const char *)str, '%') != NULL |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4712 && evaldepth < MAX_STL_EVAL_DEPTH) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4713 { |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4714 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
|
4715 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
|
4716 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
|
4717 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
|
4718 + str_length + fmt_length + 3; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4719 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
|
4720 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
|
4721 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4722 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
|
4723 + parsed_usefmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4724 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
|
4725 + str_length; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4726 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
|
4727 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
|
4728 + fmt_length; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4729 *new_fmt_p = 0; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4730 new_fmt_p = NULL; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4731 |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4732 if (usefmt != fmt) |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4733 vim_free(usefmt); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4734 VIM_CLEAR(str); |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4735 usefmt = new_fmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4736 s = usefmt + parsed_usefmt; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4737 evaldepth++; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4738 continue; |
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4739 } |
7 | 4740 #endif |
4741 break; | |
24630
4cf4d7a71fac
patch 8.2.2854: custom statusline cannot contain % items
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
4742 } |
7 | 4743 case STL_LINE: |
4744 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) | |
4745 ? 0L : (long)(wp->w_cursor.lnum); | |
4746 break; | |
4747 | |
4748 case STL_NUMLINES: | |
4749 num = wp->w_buffer->b_ml.ml_line_count; | |
4750 break; | |
4751 | |
4752 case STL_COLUMN: | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28753
diff
changeset
|
4753 num = (State & MODE_INSERT) == 0 && empty_line |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28753
diff
changeset
|
4754 ? 0 : (int)wp->w_cursor.col + 1; |
7 | 4755 break; |
4756 | |
4757 case STL_VIRTCOL: | |
4758 case STL_VIRTCOL_ALT: | |
27124
8f1f4f6c87ad
patch 8.2.4091: virtcol is recomputed for statusline unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
4759 virtcol = wp->w_virtcol + 1; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4760 // Don't display %V if it's the same as %c. |
7 | 4761 if (opt == STL_VIRTCOL_ALT |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28753
diff
changeset
|
4762 && (virtcol == (colnr_T)((State & MODE_INSERT) == 0 |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28753
diff
changeset
|
4763 && empty_line ? 0 : (int)wp->w_cursor.col + 1))) |
7 | 4764 break; |
4765 num = (long)virtcol; | |
4766 break; | |
4767 | |
4768 case STL_PERCENTAGE: | |
4769 num = (int)(((long)wp->w_cursor.lnum * 100L) / | |
4770 (long)wp->w_buffer->b_ml.ml_line_count); | |
4771 break; | |
4772 | |
4773 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
|
4774 str = buf_tmp; |
1869 | 4775 get_rel_pos(wp, str, TMPLEN); |
7 | 4776 break; |
4777 | |
4778 case STL_ARGLISTSTAT: | |
4779 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
|
4780 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
|
4781 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
|
4782 str = buf_tmp; |
7 | 4783 break; |
4784 | |
4785 case STL_KEYMAP: | |
4786 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
|
4787 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
|
4788 str = buf_tmp; |
7 | 4789 break; |
4790 case STL_PAGENUM: | |
706 | 4791 #if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE) |
686 | 4792 num = printer_page_num; |
7 | 4793 #else |
4794 num = 0; | |
4795 #endif | |
4796 break; | |
4797 | |
4798 case STL_BUFNO: | |
4799 num = wp->w_buffer->b_fnum; | |
4800 break; | |
4801 | |
4802 case STL_OFFSET_X: | |
4803 base = 'X'; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4804 // FALLTHROUGH |
7 | 4805 case STL_OFFSET: |
4806 #ifdef FEAT_BYTEOFF | |
4807 l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL); | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28753
diff
changeset
|
4808 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28753
diff
changeset
|
4809 ? 0L : l + 1 + ((State & MODE_INSERT) == 0 && empty_line |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28753
diff
changeset
|
4810 ? 0 : (int)wp->w_cursor.col); |
7 | 4811 #endif |
4812 break; | |
4813 | |
4814 case STL_BYTEVAL_X: | |
4815 base = 'X'; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4816 // FALLTHROUGH |
7 | 4817 case STL_BYTEVAL: |
4333 | 4818 num = byteval; |
7 | 4819 if (num == NL) |
4820 num = 0; | |
4821 else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC) | |
4822 num = NL; | |
4823 break; | |
4824 | |
4825 case STL_ROFLAG: | |
4826 case STL_ROFLAG_ALT: | |
4827 itemisflag = TRUE; | |
4828 if (wp->w_buffer->b_p_ro) | |
4795
8360a59aa04b
updated for version 7.3.1144
Bram Moolenaar <bram@vim.org>
parents:
4354
diff
changeset
|
4829 str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]")); |
7 | 4830 break; |
4831 | |
4832 case STL_HELPFLAG: | |
4833 case STL_HELPFLAG_ALT: | |
4834 itemisflag = TRUE; | |
4835 if (wp->w_buffer->b_help) | |
4836 str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP" | |
809 | 4837 : _("[Help]")); |
7 | 4838 break; |
4839 | |
4840 case STL_FILETYPE: | |
4841 if (*wp->w_buffer->b_p_ft != NUL | |
4842 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3) | |
4843 { | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4844 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), "[%s]", |
272 | 4845 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
|
4846 str = buf_tmp; |
7 | 4847 } |
4848 break; | |
4849 | |
4850 case STL_FILETYPE_ALT: | |
4851 itemisflag = TRUE; | |
4852 if (*wp->w_buffer->b_p_ft != NUL | |
4853 && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2) | |
4854 { | |
16740
dc85d49349f7
patch 8.1.1372: when evaluating 'statusline' the current window is unknown
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4855 vim_snprintf((char *)buf_tmp, sizeof(buf_tmp), ",%s", |
272 | 4856 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
|
4857 for (t = buf_tmp; *t != 0; t++) |
7 | 4858 *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
|
4859 str = buf_tmp; |
7 | 4860 } |
4861 break; | |
4862 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
4863 #if defined(FEAT_QUICKFIX) |
7 | 4864 case STL_PREVIEWFLAG: |
4865 case STL_PREVIEWFLAG_ALT: | |
4866 itemisflag = TRUE; | |
4867 if (wp->w_p_pvw) | |
4868 str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV" | |
4869 : _("[Preview]")); | |
4870 break; | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4871 |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4872 case STL_QUICKFIX: |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4873 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
|
4874 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
|
4875 ? _(msg_loclist) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4876 : _(msg_qflist)); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2403
diff
changeset
|
4877 break; |
7 | 4878 #endif |
4879 | |
4880 case STL_MODIFIED: | |
4881 case STL_MODIFIED_ALT: | |
4882 itemisflag = TRUE; | |
4883 switch ((opt == STL_MODIFIED_ALT) | |
4884 + bufIsChanged(wp->w_buffer) * 2 | |
4885 + (!wp->w_buffer->b_p_ma) * 4) | |
4886 { | |
4887 case 2: str = (char_u *)"[+]"; break; | |
4888 case 3: str = (char_u *)",+"; break; | |
4889 case 4: str = (char_u *)"[-]"; break; | |
4890 case 5: str = (char_u *)",-"; break; | |
4891 case 6: str = (char_u *)"[+-]"; break; | |
4892 case 7: str = (char_u *)",+-"; break; | |
4893 } | |
4894 break; | |
678 | 4895 |
4896 case STL_HIGHLIGHT: | |
4897 t = s; | |
4898 while (*s != '#' && *s != NUL) | |
4899 ++s; | |
4900 if (*s == '#') | |
4901 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4902 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
|
4903 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
|
4904 stl_items[curitem].stl_minwid = -syn_namen2id(t, (int)(s - t)); |
678 | 4905 curitem++; |
4906 } | |
5407 | 4907 if (*s != NUL) |
4908 ++s; | |
678 | 4909 continue; |
7 | 4910 } |
4911 | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
4912 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
|
4913 stl_items[curitem].stl_type = Normal; |
7 | 4914 if (str != NULL && *str) |
4915 { | |
4916 t = str; | |
4917 if (itemisflag) | |
4918 { | |
4919 if ((t[0] && t[1]) | |
4920 && ((!prevchar_isitem && *t == ',') | |
4921 || (prevchar_isflag && *t == ' '))) | |
4922 t++; | |
4923 prevchar_isflag = TRUE; | |
4924 } | |
4925 l = vim_strsize(t); | |
4926 if (l > 0) | |
4927 prevchar_isitem = TRUE; | |
4928 if (l > maxwid) | |
4929 { | |
4930 while (l >= maxwid) | |
4931 if (has_mbyte) | |
4932 { | |
4933 l -= ptr2cells(t); | |
474 | 4934 t += (*mb_ptr2len)(t); |
7 | 4935 } |
4936 else | |
4937 l -= byte2cells(*t++); | |
4938 if (p + 1 >= out + outlen) | |
4939 break; | |
4940 *p++ = '<'; | |
4941 } | |
4942 if (minwid > 0) | |
4943 { | |
4944 for (; l < minwid && p + 1 < out + outlen; l++) | |
4945 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4946 // Don't put a "-" in front of a digit. |
7 | 4947 if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t)) |
4948 *p++ = ' '; | |
4949 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
|
4950 MB_CHAR2BYTES(fillchar, p); |
7 | 4951 } |
4952 minwid = 0; | |
4953 } | |
4954 else | |
4955 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
|
4956 for (; *t && p + 1 < out + outlen; t++) |
7 | 4957 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
4958 // 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
|
4959 // 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
|
4960 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
|
4961 && (!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
|
4962 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
|
4963 else |
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4964 *p++ = *t; |
7 | 4965 } |
4966 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
|
4967 MB_CHAR2BYTES(fillchar, p); |
7 | 4968 } |
4969 else if (num >= 0) | |
4970 { | |
4971 int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16)); | |
4972 char_u nstr[20]; | |
4973 | |
4974 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
|
4975 break; // not sufficient space |
7 | 4976 prevchar_isitem = TRUE; |
4977 t = nstr; | |
4978 if (opt == STL_VIRTCOL_ALT) | |
4979 { | |
4980 *t++ = '-'; | |
4981 minwid--; | |
4982 } | |
4983 *t++ = '%'; | |
4984 if (zeropad) | |
4985 *t++ = '0'; | |
4986 *t++ = '*'; | |
1869 | 4987 *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd'); |
7 | 4988 *t = 0; |
4989 | |
4990 for (n = num, l = 1; n >= nbase; n /= nbase) | |
4991 l++; | |
4992 if (opt == STL_VIRTCOL_ALT) | |
4993 l++; | |
4994 if (l > maxwid) | |
4995 { | |
4996 l += 2; | |
4997 n = l - maxwid; | |
4998 while (l-- > maxwid) | |
4999 num /= nbase; | |
5000 *t++ = '>'; | |
5001 *t++ = '%'; | |
5002 *t = t[-3]; | |
5003 *++t = 0; | |
272 | 5004 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, |
5005 0, num, n); | |
7 | 5006 } |
5007 else | |
272 | 5008 vim_snprintf((char *)p, outlen - (p - out), (char *)nstr, |
5009 minwid, num); | |
7 | 5010 p += STRLEN(p); |
5011 } | |
5012 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
|
5013 stl_items[curitem].stl_type = Empty; |
7 | 5014 |
29812
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
5015 if (num >= 0 || (!itemisflag && str != NULL && *str != NUL)) |
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
5016 prevchar_isflag = FALSE; // Item not NULL, but not a flag |
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
5017 // |
7 | 5018 if (opt == STL_VIM_EXPR) |
5019 vim_free(str); | |
5020 curitem++; | |
5021 } | |
5022 *p = NUL; | |
5023 itemcnt = curitem; | |
5024 | |
678 | 5025 #ifdef FEAT_EVAL |
5026 if (usefmt != fmt) | |
5027 vim_free(usefmt); | |
5028 #endif | |
5029 | |
7 | 5030 width = vim_strsize(out); |
5031 if (maxwidth > 0 && width > maxwidth) | |
5032 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5033 // Result is too long, must truncate somewhere. |
7 | 5034 l = 0; |
5035 if (itemcnt == 0) | |
5036 s = out; | |
5037 else | |
5038 { | |
5039 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
|
5040 if (stl_items[l].stl_type == Trunc) |
7 | 5041 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5042 // 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
|
5043 s = stl_items[l].stl_start; |
7 | 5044 break; |
5045 } | |
5046 if (l == itemcnt) | |
5047 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5048 // 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
|
5049 s = stl_items[0].stl_start; |
7 | 5050 l = 0; |
5051 } | |
5052 } | |
5053 | |
5054 if (width - vim_strsize(s) >= maxwidth) | |
5055 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5056 // Truncation mark is beyond max length |
7 | 5057 if (has_mbyte) |
5058 { | |
5059 s = out; | |
5060 width = 0; | |
5061 for (;;) | |
5062 { | |
5063 width += ptr2cells(s); | |
5064 if (width >= maxwidth) | |
5065 break; | |
474 | 5066 s += (*mb_ptr2len)(s); |
7 | 5067 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5068 // Fill up for half a double-wide character. |
7 | 5069 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
|
5070 MB_CHAR2BYTES(fillchar, s); |
7 | 5071 } |
5072 else | |
5073 s = out + maxwidth - 1; | |
5074 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
|
5075 if (stl_items[l].stl_start > s) |
7 | 5076 break; |
5077 itemcnt = l; | |
5078 *s++ = '>'; | |
5079 *s = 0; | |
5080 } | |
5081 else | |
5082 { | |
5083 if (has_mbyte) | |
5084 { | |
5085 n = 0; | |
5086 while (width >= maxwidth) | |
5087 { | |
5088 width -= ptr2cells(s + n); | |
474 | 5089 n += (*mb_ptr2len)(s + n); |
7 | 5090 } |
5091 } | |
5092 else | |
5093 n = width - maxwidth + 1; | |
5094 p = s + n; | |
1618 | 5095 STRMOVE(s + 1, p); |
7 | 5096 *s = '<'; |
5097 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5098 // Fill up for half a double-wide character. |
7 | 5099 while (++width < maxwidth) |
5100 { | |
5101 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
|
5102 MB_CHAR2BYTES(fillchar, s); |
7 | 5103 *s = NUL; |
5104 } | |
5105 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5106 --n; // count the '<' |
7 | 5107 for (; l < itemcnt; l++) |
5108 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5109 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
|
5110 stl_items[l].stl_start -= n; |
7 | 5111 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
|
5112 stl_items[l].stl_start = s; |
7 | 5113 } |
5114 } | |
5115 width = maxwidth; | |
5116 } | |
5117 else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen) | |
5118 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5119 // Apply STL_MIDDLE if any |
7 | 5120 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
|
5121 if (stl_items[l].stl_type == Middle) |
7 | 5122 break; |
5123 if (l < itemcnt) | |
5124 { | |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5125 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
|
5126 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
|
5127 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
|
5128 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
|
5129 MB_CHAR2BYTES(fillchar, s); |
7 | 5130 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
|
5131 stl_items[l].stl_start += middlelength; |
7 | 5132 width = maxwidth; |
5133 } | |
5134 } | |
5135 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5136 // Store the info about highlighting. |
681 | 5137 if (hltab != NULL) |
7 | 5138 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5139 *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
|
5140 sp = stl_hltab; |
7 | 5141 for (l = 0; l < itemcnt; l++) |
5142 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5143 if (stl_items[l].stl_type == Highlight) |
7 | 5144 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5145 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
|
5146 sp->userhl = stl_items[l].stl_minwid; |
681 | 5147 sp++; |
7 | 5148 } |
5149 } | |
681 | 5150 sp->start = NULL; |
5151 sp->userhl = 0; | |
5152 } | |
5153 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5154 // Store the info about tab pages labels. |
681 | 5155 if (tabtab != NULL) |
5156 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5157 *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
|
5158 sp = stl_tabtab; |
681 | 5159 for (l = 0; l < itemcnt; l++) |
5160 { | |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5161 if (stl_items[l].stl_type == TabPage) |
681 | 5162 { |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
22713
diff
changeset
|
5163 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
|
5164 sp->userhl = stl_items[l].stl_minwid; |
681 | 5165 sp++; |
5166 } | |
5167 } | |
5168 sp->start = NULL; | |
5169 sp->userhl = 0; | |
7 | 5170 } |
5171 | |
29812
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
5172 redraw_not_allowed = save_redraw_not_allowed; |
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
|
5173 |
27730
ba47c7d07ce6
patch 8.2.4391: command line executed when typing Esc in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
5174 // A user function may reset KeyTyped, restore it. |
ba47c7d07ce6
patch 8.2.4391: command line executed when typing Esc in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
5175 KeyTyped = save_KeyTyped; |
ba47c7d07ce6
patch 8.2.4391: command line executed when typing Esc in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
5176 |
31018
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
5177 // Check for an error. If there is one the display will be messed up and |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
5178 // might loop redrawing. Avoid that by making the corresponding option |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
5179 // empty. |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
5180 // TODO: find out why using called_emsg_before makes tests fail, does it |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
5181 // matter? |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
5182 // if (called_emsg > called_emsg_before) |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
5183 if (did_emsg > did_emsg_before) |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
5184 set_string_option_direct(opt_name, -1, (char_u *)"", |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
5185 OPT_FREE | opt_scope, SID_ERROR); |
9716c7d24c12
patch 9.0.0844: handling 'statusline' errors is spread out
Bram Moolenaar <Bram@vim.org>
parents:
30968
diff
changeset
|
5186 |
7 | 5187 return width; |
5188 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5189 #endif // FEAT_STL_OPT |
7 | 5190 |
5191 /* | |
1869 | 5192 * Get relative cursor position in window into "buf[buflen]", in the form 99%, |
5193 * using "Top", "Bot" or "All" when appropriate. | |
7 | 5194 */ |
5195 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5196 get_rel_pos( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5197 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5198 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5199 int buflen) |
7 | 5200 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5201 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
|
5202 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
|
5203 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5204 if (buflen < 3) // need at least 3 chars for writing |
6466 | 5205 return; |
7 | 5206 above = wp->w_topline - 1; |
5207 #ifdef FEAT_DIFF | |
5208 above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill; | |
6975 | 5209 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
|
5210 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
|
5211 // 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
|
5212 // seeing all lines. |
7 | 5213 #endif |
5214 below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1; | |
5215 if (below <= 0) | |
1869 | 5216 vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")), |
5217 (size_t)(buflen - 1)); | |
7 | 5218 else if (above <= 0) |
1869 | 5219 vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1)); |
7 | 5220 else |
1869 | 5221 vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L |
7 | 5222 ? (int)(above / ((above + below) / 100L)) |
5223 : (int)(above * 100L / (above + below))); | |
5224 } | |
5225 | |
5226 /* | |
1869 | 5227 * Append (file 2 of 8) to "buf[buflen]", if editing more than one file. |
7 | 5228 * Return TRUE if it was appended. |
5229 */ | |
1869 | 5230 static int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5231 append_arg_number( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5232 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5233 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5234 int buflen, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5235 int add_file) // Add "file" before the arg number |
7 | 5236 { |
5237 char_u *p; | |
5238 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5239 if (ARGCOUNT <= 1) // nothing to do |
7 | 5240 return FALSE; |
5241 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5242 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
|
5243 if (p - buf + 35 >= buflen) // getting too long |
7 | 5244 return FALSE; |
5245 *p++ = ' '; | |
5246 *p++ = '('; | |
5247 if (add_file) | |
5248 { | |
5249 STRCPY(p, "file "); | |
5250 p += 5; | |
5251 } | |
1869 | 5252 vim_snprintf((char *)p, (size_t)(buflen - (p - buf)), |
5253 wp->w_arg_idx_invalid ? "(%d) of %d)" | |
7 | 5254 : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT); |
5255 return TRUE; | |
5256 } | |
5257 | |
5258 /* | |
5259 * If fname is not a full path, make it a full path. | |
5260 * Returns pointer to allocated memory (NULL for failure). | |
5261 */ | |
5262 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5263 fix_fname(char_u *fname) |
7 | 5264 { |
5265 /* | |
5266 * Force expanding the path always for Unix, because symbolic links may | |
5267 * mess up the full path name, even though it starts with a '/'. | |
5268 * Also expand when there is ".." in the file name, try to remove it, | |
5269 * because "c:/src/../README" is equal to "c:/README". | |
1420 | 5270 * Similarly "c:/src//file" is equal to "c:/src/file". |
7 | 5271 * For MS-Windows also expand names like "longna~1" to "longname". |
5272 */ | |
1082 | 5273 #ifdef UNIX |
7 | 5274 return FullName_save(fname, TRUE); |
5275 #else | |
1420 | 5276 if (!vim_isAbsName(fname) |
5277 || strstr((char *)fname, "..") != NULL | |
5278 || strstr((char *)fname, "//") != NULL | |
5279 # ifdef BACKSLASH_IN_FILENAME | |
5280 || strstr((char *)fname, "\\\\") != NULL | |
5281 # endif | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
5282 # if defined(MSWIN) |
7 | 5283 || vim_strchr(fname, '~') != NULL |
1420 | 5284 # endif |
7 | 5285 ) |
5286 return FullName_save(fname, FALSE); | |
5287 | |
5288 fname = vim_strsave(fname); | |
5289 | |
1420 | 5290 # ifdef USE_FNAME_CASE |
15794
0d8291665b59
patch 8.1.0904: USE_LONG_FNAME never defined
Bram Moolenaar <Bram@vim.org>
parents:
15774
diff
changeset
|
5291 if (fname != NULL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5292 fname_case(fname, 0); // set correct case for file name |
1420 | 5293 # endif |
7 | 5294 |
5295 return fname; | |
5296 #endif | |
5297 } | |
5298 | |
5299 /* | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5300 * 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
|
5301 * "*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
|
5302 * 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
|
5303 * allocated memory. |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5304 * 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
|
5305 * Note that the resulting "*ffname" pointer should be considered not allocated. |
7 | 5306 */ |
5307 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5308 fname_expand( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5309 buf_T *buf UNUSED, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5310 char_u **ffname, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5311 char_u **sfname) |
7 | 5312 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5313 if (*ffname == NULL) // no file name given, nothing to do |
7 | 5314 return; |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5315 if (*sfname == NULL) // no short file name given, use ffname |
7 | 5316 *sfname = *ffname; |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5317 *ffname = fix_fname(*ffname); // expand to full path |
7 | 5318 |
5319 #ifdef FEAT_SHORTCUT | |
5320 if (!buf->b_p_bin) | |
5321 { | |
844 | 5322 char_u *rfname; |
7 | 5323 |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5324 // 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
|
5325 rfname = mch_resolve_path(*ffname, FALSE); |
844 | 5326 if (rfname != NULL) |
7 | 5327 { |
5328 vim_free(*ffname); | |
5329 *ffname = rfname; | |
5330 *sfname = rfname; | |
5331 } | |
5332 } | |
5333 #endif | |
5334 } | |
5335 | |
5336 /* | |
5337 * Open a window for a number of buffers. | |
5338 */ | |
5339 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5340 ex_buffer_all(exarg_T *eap) |
7 | 5341 { |
5342 buf_T *buf; | |
5343 win_T *wp, *wpnext; | |
5344 int split_ret = OK; | |
5345 int p_ea_save; | |
5346 int open_wins = 0; | |
5347 int r; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5348 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
|
5349 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
|
5350 int had_tab = cmdmod.cmod_tab; |
698 | 5351 tabpage_T *tpnext; |
7 | 5352 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5353 if (eap->addr_count == 0) // make as many windows as possible |
7 | 5354 count = 9999; |
5355 else | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5356 count = eap->line2; // make as many windows as specified |
7 | 5357 if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide) |
5358 all = FALSE; | |
5359 else | |
5360 all = TRUE; | |
5361 | |
5362 setpcmark(); | |
5363 | |
5364 #ifdef FEAT_GUI | |
5365 need_mouse_correct = TRUE; | |
5366 #endif | |
5367 | |
5368 /* | |
5369 * Close superfluous windows (two windows for the same buffer). | |
5370 * Also close windows that are not full-width. | |
5371 */ | |
698 | 5372 if (had_tab > 0) |
4354 | 5373 goto_tabpage_tp(first_tabpage, TRUE, TRUE); |
698 | 5374 for (;;) |
7 | 5375 { |
698 | 5376 tpnext = curtab->tp_next; |
5377 for (wp = firstwin; wp != NULL; wp = wpnext) | |
7 | 5378 { |
698 | 5379 wpnext = wp->w_next; |
706 | 5380 if ((wp->w_buffer->b_nwindows > 1 |
28167
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5381 || ((cmdmod.cmod_split & WSP_VERT) |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5382 ? wp->w_height + wp->w_status_height < Rows - p_ch |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5383 - tabline_height() |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5384 : wp->w_width != Columns) |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5385 || (had_tab > 0 && wp != firstwin)) |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5386 && !ONE_WINDOW |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5387 && !(wp->w_closing || wp->w_buffer->b_locked > 0) |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5388 && !win_unlisted(wp)) |
698 | 5389 { |
28167
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5390 if (win_close(wp, FALSE) == FAIL) |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5391 break; |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5392 // Just in case an autocommand does something strange with |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5393 // windows: start all over... |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5394 wpnext = firstwin; |
a52a5e3363c4
patch 8.2.4609: :unhide does not check for failing to close a window
Bram Moolenaar <Bram@vim.org>
parents:
27916
diff
changeset
|
5395 tpnext = first_tabpage; |
698 | 5396 open_wins = 0; |
5397 } | |
5398 else | |
5399 ++open_wins; | |
7 | 5400 } |
698 | 5401 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5402 // Without the ":tab" modifier only do the current tab page. |
698 | 5403 if (had_tab == 0 || tpnext == NULL) |
5404 break; | |
4354 | 5405 goto_tabpage_tp(tpnext, TRUE, TRUE); |
7 | 5406 } |
5407 | |
5408 /* | |
5409 * Go through the buffer list. When a buffer doesn't have a window yet, | |
5410 * open one. Otherwise move the window to the right position. | |
5411 * Watch out for autocommands that delete buffers or windows! | |
5412 */ | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5413 // Don't execute Win/Buf Enter/Leave autocommands here. |
7 | 5414 ++autocmd_no_enter; |
5415 win_enter(lastwin, FALSE); | |
5416 ++autocmd_no_leave; | |
5417 for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next) | |
5418 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5419 // Check if this buffer needs a window |
7 | 5420 if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl) |
5421 continue; | |
5422 | |
701 | 5423 if (had_tab != 0) |
5424 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5425 // With the ":tab" modifier don't move the window. |
701 | 5426 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
|
5427 wp = lastwin; // buffer has a window, skip it |
701 | 5428 else |
5429 wp = NULL; | |
5430 } | |
5431 else | |
5432 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5433 // 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
|
5434 FOR_ALL_WINDOWS(wp) |
701 | 5435 if (wp->w_buffer == buf) |
5436 break; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5437 // If the buffer already has a window, move it |
701 | 5438 if (wp != NULL) |
5439 win_move_after(wp, curwin); | |
5440 } | |
5441 | |
5442 if (wp == NULL && split_ret == OK) | |
7 | 5443 { |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5444 bufref_T bufref; |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5445 |
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5446 set_bufref(&bufref, buf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5447 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5448 // Split the window and put the buffer in it |
7 | 5449 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
|
5450 p_ea = TRUE; // use space from all windows |
7 | 5451 split_ret = win_split(0, WSP_ROOM | WSP_BELOW); |
5452 ++open_wins; | |
5453 p_ea = p_ea_save; | |
5454 if (split_ret == FAIL) | |
5455 continue; | |
5456 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5457 // Open the buffer in this window. |
7 | 5458 swap_exists_action = SEA_DIALOG; |
5459 set_curbuf(buf, DOBUF_GOTO); | |
9475
4d8f7f8da90c
commit https://github.com/vim/vim/commit/b25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6
Christian Brabandt <cb@256bit.org>
parents:
9473
diff
changeset
|
5460 if (!bufref_valid(&bufref)) |
20 | 5461 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5462 // autocommands deleted the buffer!!! |
20 | 5463 swap_exists_action = SEA_NONE; |
7 | 5464 break; |
5465 } | |
5466 if (swap_exists_action == SEA_QUIT) | |
5467 { | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5468 #if defined(FEAT_EVAL) |
24 | 5469 cleanup_T cs; |
5470 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5471 // 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
|
5472 // aborting() returns FALSE when closing a window. |
24 | 5473 enter_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5474 #endif |
24 | 5475 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5476 // User selected Quit at ATTENTION prompt; close this window. |
7 | 5477 win_close(curwin, TRUE); |
5478 --open_wins; | |
5479 swap_exists_action = SEA_NONE; | |
602 | 5480 swap_exists_did_quit = TRUE; |
24 | 5481 |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5482 #if defined(FEAT_EVAL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5483 // 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
|
5484 // 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
|
5485 // exception. |
24 | 5486 leave_cleanup(&cs); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
5487 #endif |
7 | 5488 } |
5489 else | |
5490 handle_swap_exists(NULL); | |
5491 } | |
5492 | |
5493 ui_breakcheck(); | |
5494 if (got_int) | |
5495 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5496 (void)vgetc(); // only break the file loading, not the rest |
7 | 5497 break; |
5498 } | |
20 | 5499 #ifdef FEAT_EVAL |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5500 // Autocommands deleted the buffer or aborted script processing!!! |
20 | 5501 if (aborting()) |
5502 break; | |
5503 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5504 // When ":tab" was used open a new tab for a new window repeatedly. |
698 | 5505 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
|
5506 cmdmod.cmod_tab = 9999; |
7 | 5507 } |
5508 --autocmd_no_enter; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5509 win_enter(firstwin, FALSE); // back to first window |
7 | 5510 --autocmd_no_leave; |
5511 | |
5512 /* | |
5513 * Close superfluous windows. | |
5514 */ | |
5515 for (wp = lastwin; open_wins > count; ) | |
5516 { | |
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
|
5517 r = (buf_hide(wp->w_buffer) || !bufIsChanged(wp->w_buffer) |
7 | 5518 || autowrite(wp->w_buffer, FALSE) == OK); |
5519 if (!win_valid(wp)) | |
5520 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5521 // BufWrite Autocommands made the window invalid, start over |
7 | 5522 wp = lastwin; |
5523 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
5524 else if (r) |
7 | 5525 { |
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
|
5526 win_close(wp, !buf_hide(wp->w_buffer)); |
7 | 5527 --open_wins; |
5528 wp = lastwin; | |
5529 } | |
5530 else | |
5531 { | |
5532 wp = wp->w_prev; | |
5533 if (wp == NULL) | |
5534 break; | |
5535 } | |
5536 } | |
5537 } | |
5538 | |
5539 | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
5540 static int chk_modeline(linenr_T, int); |
717 | 5541 |
7 | 5542 /* |
5543 * do_modelines() - process mode lines for the current file | |
5544 * | |
717 | 5545 * "flags" can be: |
5546 * OPT_WINONLY only set options local to window | |
5547 * OPT_NOWIN don't set options local to window | |
5548 * | |
7 | 5549 * Returns immediately if the "ml" option isn't set. |
5550 */ | |
5551 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5552 do_modelines(int flags) |
7 | 5553 { |
23 | 5554 linenr_T lnum; |
5555 int nmlines; | |
5556 static int entered = 0; | |
7 | 5557 |
5558 if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0) | |
5559 return; | |
5560 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5561 // 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
|
5562 // triggers an autocommand, which reloads modelines with a ":do". |
7 | 5563 if (entered) |
5564 return; | |
5565 | |
5566 ++entered; | |
25696
64fa341cc33b
patch 8.2.3384: cannot disable modeline for an individual file
Bram Moolenaar <Bram@vim.org>
parents:
25487
diff
changeset
|
5567 for (lnum = 1; curbuf->b_p_ml && lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines; |
7 | 5568 ++lnum) |
717 | 5569 if (chk_modeline(lnum, flags) == FAIL) |
7 | 5570 nmlines = 0; |
5571 | |
25696
64fa341cc33b
patch 8.2.3384: cannot disable modeline for an individual file
Bram Moolenaar <Bram@vim.org>
parents:
25487
diff
changeset
|
5572 for (lnum = curbuf->b_ml.ml_line_count; curbuf->b_p_ml && lnum > 0 && lnum > nmlines |
7 | 5573 && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum) |
717 | 5574 if (chk_modeline(lnum, flags) == FAIL) |
7 | 5575 nmlines = 0; |
5576 --entered; | |
5577 } | |
5578 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5579 #include "version.h" // for version number |
7 | 5580 |
5581 /* | |
5582 * chk_modeline() - check a single line for a mode string | |
5583 * Return FAIL if an error encountered. | |
5584 */ | |
5585 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5586 chk_modeline( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5587 linenr_T lnum, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5588 int flags) // Same as for do_modelines(). |
7 | 5589 { |
5590 char_u *s; | |
5591 char_u *e; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5592 char_u *linecopy; // local copy of any modeline found |
7 | 5593 int prev; |
5594 int vers; | |
5595 int end; | |
5596 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
|
5597 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
|
5598 |
19075
af1eca322b9e
patch 8.2.0098: exe stack length can be wrong without being detected
Bram Moolenaar <Bram@vim.org>
parents:
19044
diff
changeset
|
5599 ESTACK_CHECK_DECLARATION |
7 | 5600 |
5601 prev = -1; | |
5602 for (s = ml_get(lnum); *s != NUL; ++s) | |
5603 { | |
5604 if (prev == -1 || vim_isspace(prev)) | |
5605 { | |
5606 if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0) | |
5607 || STRNCMP(s, "vi:", (size_t)3) == 0) | |
5608 break; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5609 // Accept both "vim" and "Vim". |
5010
b614332f7df2
updated for version 7.3.1249
Bram Moolenaar <bram@vim.org>
parents:
4936
diff
changeset
|
5610 if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm') |
7 | 5611 { |
5612 if (s[3] == '<' || s[3] == '=' || s[3] == '>') | |
5613 e = s + 4; | |
5614 else | |
5615 e = s + 3; | |
5616 vers = getdigits(&e); | |
5617 if (*e == ':' | |
5043
53c1b30632df
updated for version 7.3.1265
Bram Moolenaar <bram@vim.org>
parents:
5010
diff
changeset
|
5618 && (s[0] != 'V' |
53c1b30632df
updated for version 7.3.1265
Bram Moolenaar <bram@vim.org>
parents:
5010
diff
changeset
|
5619 || STRNCMP(skipwhite(e + 1), "set", 3) == 0) |
7 | 5620 && (s[3] == ':' |
5621 || (VIM_VERSION_100 >= vers && isdigit(s[3])) | |
5622 || (VIM_VERSION_100 < vers && s[3] == '<') | |
5623 || (VIM_VERSION_100 > vers && s[3] == '>') | |
5624 || (VIM_VERSION_100 == vers && s[3] == '='))) | |
5625 break; | |
5626 } | |
5627 } | |
5628 prev = *s; | |
5629 } | |
5630 | |
5631 if (*s) | |
5632 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5633 do // skip over "ex:", "vi:" or "vim:" |
7 | 5634 ++s; |
5635 while (s[-1] != ':'); | |
5636 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5637 s = linecopy = vim_strsave(s); // copy the line, it will change |
7 | 5638 if (linecopy == NULL) |
5639 return FAIL; | |
5640 | |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5641 // prepare for emsg() |
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5642 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
|
5643 ESTACK_CHECK_SETUP |
7 | 5644 |
5645 end = FALSE; | |
5646 while (end == FALSE) | |
5647 { | |
5648 s = skipwhite(s); | |
5649 if (*s == NUL) | |
5650 break; | |
5651 | |
5652 /* | |
5653 * Find end of set command: ':' or end of line. | |
5654 * Skip over "\:", replacing it with ":". | |
5655 */ | |
5656 for (e = s; *e != ':' && *e != NUL; ++e) | |
5657 if (e[0] == '\\' && e[1] == ':') | |
1618 | 5658 STRMOVE(e, e + 1); |
7 | 5659 if (*e == NUL) |
5660 end = TRUE; | |
5661 | |
5662 /* | |
5663 * If there is a "set" command, require a terminating ':' and | |
5664 * ignore the stuff after the ':'. | |
5665 * "vi:set opt opt opt: foo" -- foo not interpreted | |
5666 * "vi:opt opt opt: foo" -- foo interpreted | |
5667 * Accept "se" for compatibility with Elvis. | |
5668 */ | |
5669 if (STRNCMP(s, "set ", (size_t)4) == 0 | |
5670 || STRNCMP(s, "se ", (size_t)3) == 0) | |
5671 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5672 if (*e != ':') // no terminating ':'? |
7 | 5673 break; |
5674 end = TRUE; | |
5675 s = vim_strchr(s, ' ') + 1; | |
5676 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5677 *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
|
5678 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5679 if (*s != NUL) // skip over an empty "::" |
7 | 5680 { |
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
|
5681 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
|
5682 |
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
5683 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
|
5684 current_sctx.sc_version = 1; |
7 | 5685 #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
|
5686 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
|
5687 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
|
5688 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
|
5689 #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
|
5690 |
15054
2d6e930c7613
patch 8.1.0538: evaluating a modeline might invoke using a shell command
Bram Moolenaar <Bram@vim.org>
parents:
15008
diff
changeset
|
5691 // 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
|
5692 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
|
5693 |
717 | 5694 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
|
5695 |
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
|
5696 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
|
5697 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
|
5698 if (retval == FAIL) // stop if error found |
7 | 5699 break; |
5700 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5701 s = e + 1; // advance to next part |
7 | 5702 } |
5703 | |
19075
af1eca322b9e
patch 8.2.0098: exe stack length can be wrong without being detected
Bram Moolenaar <Bram@vim.org>
parents:
19044
diff
changeset
|
5704 ESTACK_CHECK_NOW |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18987
diff
changeset
|
5705 estack_pop(); |
7 | 5706 vim_free(linecopy); |
5707 } | |
5708 return retval; | |
5709 } | |
5710 | |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5711 /* |
14433
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5712 * 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
|
5713 */ |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5714 int |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5715 bt_normal(buf_T *buf) |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5716 { |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5717 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
|
5718 } |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5719 |
4a94173743d9
patch 8.1.0230: directly checking 'buftype' value
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
5720 /* |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5721 * 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
|
5722 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5723 int |
29855
6bddfc49c35b
patch 9.0.0266: compiler warning for unused argument
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
5724 bt_quickfix(buf_T *buf UNUSED) |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5725 { |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
5726 #ifdef FEAT_QUICKFIX |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5727 return buf != NULL && buf->b_p_bt[0] == 'q'; |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
5728 #else |
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
5729 return FALSE; |
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
5730 #endif |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5731 } |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
5732 |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5733 /* |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5734 * 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
|
5735 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5736 int |
29855
6bddfc49c35b
patch 9.0.0266: compiler warning for unused argument
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
5737 bt_terminal(buf_T *buf UNUSED) |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5738 { |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
5739 #if defined(FEAT_TERMINAL) |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5740 return buf != NULL && buf->b_p_bt[0] == 't'; |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
5741 #else |
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
5742 return FALSE; |
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29847
diff
changeset
|
5743 #endif |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5744 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5745 |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5746 /* |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5747 * 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
|
5748 */ |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5749 int |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5750 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
|
5751 { |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5752 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
|
5753 } |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5754 |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11788
diff
changeset
|
5755 /* |
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
|
5756 * 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
|
5757 */ |
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
|
5758 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
|
5759 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
|
5760 { |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5761 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
|
5762 } |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5763 |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
5764 #if defined(FEAT_PROP_POPUP) || defined(PROTO) |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5765 /* |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5766 * 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
|
5767 */ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5768 int |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5769 bt_popup(buf_T *buf) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5770 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
5771 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
|
5772 && 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
|
5773 } |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
5774 #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
|
5775 |
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
|
5776 /* |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14087
diff
changeset
|
5777 * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt" |
29871
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5778 * buffer. This means the buffer name may not be a file name, at least not for |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5779 * writing the buffer. |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5780 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5781 int |
17095
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5782 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
|
5783 { |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5784 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
|
5785 || 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
|
5786 || 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
|
5787 || 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
|
5788 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5789 |
29871
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5790 /* |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5791 * Return TRUE if "buf" is a "nofile", "quickfix", "terminal" or "prompt" |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5792 * buffer. This means the buffer is not to be read from a file. |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5793 */ |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5794 static int |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5795 bt_nofileread(buf_T *buf) |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5796 { |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5797 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f') |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5798 || buf->b_p_bt[0] == 't' |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5799 || buf->b_p_bt[0] == 'q' |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5800 || buf->b_p_bt[0] == 'p'); |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5801 } |
a4eab0d846dc
patch 9.0.0274: netrw plugin does not show remote files
Bram Moolenaar <Bram@vim.org>
parents:
29867
diff
changeset
|
5802 |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
5803 #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
|
5804 /* |
17095
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5805 * 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
|
5806 */ |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5807 int |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5808 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
|
5809 { |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5810 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
|
5811 } |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
5812 #endif |
17095
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5813 |
10e0d7d96cb0
patch 8.1.1547: functionality of bt_nofile() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
5814 /* |
30747
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
5815 * Return TRUE if "buf" is a "nowrite", "nofile", "terminal", "prompt", or |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
5816 * "popup" buffer. |
11788
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5817 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5818 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5819 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
|
5820 { |
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
|
5821 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
|
5822 || 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
|
5823 || 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
|
5824 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5825 |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5826 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5827 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
|
5828 { |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5829 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
|
5830 { |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
5831 emsg(_(e_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
|
5832 return TRUE; |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5833 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5834 return FALSE; |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5835 } |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5836 |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5837 /* |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5838 * 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
|
5839 * and 'bufhidden'. |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5840 */ |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5841 int |
77bf0346687e
patch 8.0.0776: function prototypes missing without the quickfix feature
Christian Brabandt <cb@256bit.org>
parents:
11772
diff
changeset
|
5842 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
|
5843 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5844 // '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
|
5845 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
|
5846 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5847 case 'u': // "unload" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5848 case 'w': // "wipe" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5849 case 'd': return FALSE; // "delete" |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5850 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
|
5851 } |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21459
diff
changeset
|
5852 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
|
5853 } |
7 | 5854 |
5855 /* | |
5856 * Return special buffer name. | |
5857 * Returns NULL when the buffer has a normal file name. | |
5858 */ | |
3839 | 5859 char_u * |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5860 buf_spname(buf_T *buf) |
7 | 5861 { |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12387
diff
changeset
|
5862 #if defined(FEAT_QUICKFIX) |
7 | 5863 if (bt_quickfix(buf)) |
643 | 5864 { |
5865 /* | |
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
|
5866 * 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
|
5867 * the buffer number stored in the global quickfix stack. |
643 | 5868 */ |
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
|
5869 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
|
5870 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
|
5871 else |
3839 | 5872 return (char_u *)_(msg_loclist); |
643 | 5873 } |
7 | 5874 #endif |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5875 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5876 // 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
|
5877 // 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
|
5878 if (bt_nofilename(buf)) |
7 | 5879 { |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5880 #ifdef FEAT_TERMINAL |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5881 if (buf->b_term != NULL) |
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5882 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
|
5883 #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
|
5884 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
|
5885 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
|
5886 #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
|
5887 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
|
5888 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
|
5889 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18757
diff
changeset
|
5890 #ifdef FEAT_PROP_POPUP |
16859
0154363d3b98
patch 8.1.1431: popup window listed as "Scratch"
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
5891 if (bt_popup(buf)) |
0154363d3b98
patch 8.1.1431: popup window listed as "Scratch"
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
5892 return (char_u *)_("[Popup]"); |
0154363d3b98
patch 8.1.1431: popup window listed as "Scratch"
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
5893 #endif |
3839 | 5894 return (char_u *)_("[Scratch]"); |
7 | 5895 } |
11772
f33b9375ba03
patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents:
11757
diff
changeset
|
5896 |
7 | 5897 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
|
5898 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
|
5899 return NULL; |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5900 } |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5901 |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5902 /* |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5903 * 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
|
5904 */ |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5905 char_u * |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5906 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
|
5907 { |
0b4658e030cb
patch 8.2.1959: crash when terminal buffer name is made empty
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
5908 if (buf->b_fname == NULL) |
3839 | 5909 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
|
5910 return buf->b_fname; |
7 | 5911 } |
5912 | |
5913 /* | |
5914 * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed. | |
5915 */ | |
5916 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5917 set_buflisted(int on) |
7 | 5918 { |
5919 if (on != curbuf->b_p_bl) | |
5920 { | |
5921 curbuf->b_p_bl = on; | |
5922 if (on) | |
5923 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf); | |
5924 else | |
5925 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); | |
5926 } | |
5927 } | |
5928 | |
5929 /* | |
5930 * Read the file for "buf" again and check if the contents changed. | |
5931 * Return TRUE if it changed or this could not be checked. | |
5932 */ | |
5933 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5934 buf_contents_changed(buf_T *buf) |
7 | 5935 { |
5936 buf_T *newbuf; | |
5937 int differ = TRUE; | |
5938 linenr_T lnum; | |
5939 aco_save_T aco; | |
5940 exarg_T ea; | |
5941 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5942 // Allocate a buffer without putting it in the buffer list. |
7 | 5943 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); |
5944 if (newbuf == NULL) | |
5945 return TRUE; | |
5946 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5947 // Force the 'fileencoding' and 'fileformat' to be equal. |
7 | 5948 if (prep_exarg(&ea, buf) == FAIL) |
5949 { | |
5950 wipe_buffer(newbuf, FALSE); | |
5951 return TRUE; | |
5952 } | |
5953 | |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
5954 // Set curwin/curbuf to buf and save a few things. |
7 | 5955 aucmd_prepbuf(&aco, newbuf); |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
5956 if (curbuf != newbuf) |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
5957 { |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
5958 // Failed to find a window for "newbuf". |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
5959 wipe_buffer(newbuf, FALSE); |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
5960 return TRUE; |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
5961 } |
7 | 5962 |
625 | 5963 if (ml_open(curbuf) == OK |
7 | 5964 && readfile(buf->b_ffname, buf->b_fname, |
5965 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, | |
5966 &ea, READ_NEW | READ_DUMMY) == OK) | |
5967 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5968 // compare the two files line by line |
7 | 5969 if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count) |
5970 { | |
5971 differ = FALSE; | |
5972 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
5973 if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0) | |
5974 { | |
5975 differ = TRUE; | |
5976 break; | |
5977 } | |
5978 } | |
5979 } | |
5980 vim_free(ea.cmd); | |
5981 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5982 // restore curwin/curbuf and a few other things |
7 | 5983 aucmd_restbuf(&aco); |
5984 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
5985 if (curbuf != newbuf) // safety check |
7 | 5986 wipe_buffer(newbuf, FALSE); |
5987 | |
5988 return differ; | |
5989 } | |
5990 | |
5991 /* | |
5992 * Wipe out a buffer and decrement the last buffer number if it was used for | |
5993 * this buffer. Call this to wipe out a temp buffer that does not contain any | |
5994 * marks. | |
5995 */ | |
5996 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5997 wipe_buffer( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5998 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
|
5999 int aucmd) // When TRUE trigger autocommands. |
7 | 6000 { |
6001 if (buf->b_fnum == top_file_num - 1) | |
6002 --top_file_num; | |
6003 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18746
diff
changeset
|
6004 if (!aucmd) // Don't trigger BufDelete autocommands here. |
1410 | 6005 block_autocmds(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
6006 |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18864
diff
changeset
|
6007 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
|
6008 |
7 | 6009 if (!aucmd) |
1410 | 6010 unblock_autocmds(); |
7 | 6011 } |