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