Mercurial > vim
annotate src/ex_cmds2.c @ 31888:b374dfaa8645 v9.0.1276
patch 9.0.1276: some mappings with Meta and Shift do not work
Commit: https://github.com/vim/vim/commit/4be18e77ff2d9a85d01e9d62335542755b26d5d5
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Feb 3 12:28:07 2023 +0000
patch 9.0.1276: some mappings with Meta and Shift do not work
Problem: Some mappings with Meta and Shift do not work.
Solution: Apply the Shift modifier to the key. (issue https://github.com/vim/vim/issues/11913)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 03 Feb 2023 13:30:05 +0100 |
parents | b89cfd86e18e |
children | 2ed95122d59c |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9812
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 * ex_cmds2.c: some more functions for command line commands | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 #include "version.h" | |
16 | |
17 /* | |
18 * If 'autowrite' option set, try to write the file. | |
19 * Careful: autocommands may make "buf" invalid! | |
20 * | |
21 * return FAIL for failure, OK otherwise | |
22 */ | |
23 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
24 autowrite(buf_T *buf, int forceit) |
7 | 25 { |
1069 | 26 int r; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
27 bufref_T bufref; |
1069 | 28 |
7 | 29 if (!(p_aw || p_awa) || !p_write |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
30 // never autowrite a "nofile" or "nowrite" buffer |
1069 | 31 || bt_dontwrite(buf) |
32 || (!forceit && buf->b_p_ro) || buf->b_ffname == NULL) | |
7 | 33 return FAIL; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
34 set_bufref(&bufref, buf); |
1069 | 35 r = buf_write_all(buf, forceit); |
36 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
37 // Writing may succeed but the buffer still changed, e.g., when there is a |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
38 // conversion error. We do want to return FAIL then. |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
39 if (bufref_valid(&bufref) && bufIsChanged(buf)) |
1069 | 40 r = FAIL; |
41 return r; | |
7 | 42 } |
43 | |
44 /* | |
14642
96858d612aff
patch 8.1.0334: 'autowrite' takes effect when buffer is not to be written
Christian Brabandt <cb@256bit.org>
parents:
14303
diff
changeset
|
45 * Flush all buffers, except the ones that are readonly or are never written. |
7 | 46 */ |
47 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
48 autowrite_all(void) |
7 | 49 { |
50 buf_T *buf; | |
51 | |
52 if (!(p_aw || p_awa) || !p_write) | |
53 return; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9626
diff
changeset
|
54 FOR_ALL_BUFFERS(buf) |
14642
96858d612aff
patch 8.1.0334: 'autowrite' takes effect when buffer is not to be written
Christian Brabandt <cb@256bit.org>
parents:
14303
diff
changeset
|
55 if (bufIsChanged(buf) && !buf->b_p_ro && !bt_dontwrite(buf)) |
7 | 56 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
57 bufref_T bufref; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
58 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
59 set_bufref(&bufref, buf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
60 |
7 | 61 (void)buf_write_all(buf, FALSE); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
62 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
63 // an autocommand may have deleted the buffer |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
64 if (!bufref_valid(&bufref)) |
7 | 65 buf = firstbuf; |
66 } | |
67 } | |
68 | |
69 /* | |
5464 | 70 * Return TRUE if buffer was changed and cannot be abandoned. |
71 * For flags use the CCGD_ values. | |
7 | 72 */ |
73 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
74 check_changed(buf_T *buf, int flags) |
7 | 75 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
76 int forceit = (flags & CCGD_FORCEIT); |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
77 bufref_T bufref; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
78 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
79 set_bufref(&bufref, buf); |
5464 | 80 |
7 | 81 if ( !forceit |
82 && bufIsChanged(buf) | |
5464 | 83 && ((flags & CCGD_MULTWIN) || buf->b_nwindows <= 1) |
84 && (!(flags & CCGD_AW) || autowrite(buf, forceit) == FAIL)) | |
7 | 85 { |
86 #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:
21437
diff
changeset
|
87 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write) |
7 | 88 { |
30747
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
89 # ifdef FEAT_TERMINAL |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
90 if (term_job_running(buf->b_term)) |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
91 { |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
92 return term_confirm_stop(buf) == FAIL; |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
93 } |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
94 # endif |
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
95 |
7 | 96 buf_T *buf2; |
97 int count = 0; | |
98 | |
5464 | 99 if (flags & CCGD_ALLBUF) |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9626
diff
changeset
|
100 FOR_ALL_BUFFERS(buf2) |
7 | 101 if (bufIsChanged(buf2) |
102 && (buf2->b_ffname != NULL | |
103 # ifdef FEAT_BROWSE | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
104 || (cmdmod.cmod_flags & CMOD_BROWSE) |
7 | 105 # endif |
106 )) | |
107 ++count; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
108 if (!bufref_valid(&bufref)) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
109 // Autocommand deleted buffer, oops! It's not changed now. |
7 | 110 return FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
111 |
7 | 112 dialog_changed(buf, count > 1); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
113 |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
114 if (!bufref_valid(&bufref)) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
115 // Autocommand deleted buffer, oops! It's not changed now. |
7 | 116 return FALSE; |
117 return bufIsChanged(buf); | |
118 } | |
119 #endif | |
5464 | 120 if (flags & CCGD_EXCMD) |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12039
diff
changeset
|
121 no_write_message(); |
5464 | 122 else |
13302
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13274
diff
changeset
|
123 no_write_message_nobang(curbuf); |
7 | 124 return TRUE; |
125 } | |
126 return FALSE; | |
127 } | |
128 | |
129 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO) | |
130 | |
131 #if defined(FEAT_BROWSE) || defined(PROTO) | |
132 /* | |
133 * When wanting to write a file without a file name, ask the user for a name. | |
134 */ | |
135 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
136 browse_save_fname(buf_T *buf) |
7 | 137 { |
31565
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
138 if (buf->b_fname != NULL) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
139 return; |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
140 |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
141 char_u *fname; |
7 | 142 |
31565
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
143 fname = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
144 NULL, NULL, NULL, NULL, buf); |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
145 if (fname == NULL) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
146 return; |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
147 |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
148 if (setfname(buf, fname, NULL, TRUE) == OK) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
149 buf->b_flags |= BF_NOTEDITED; |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
150 vim_free(fname); |
7 | 151 } |
152 #endif | |
153 | |
154 /* | |
2849 | 155 * Ask the user what to do when abandoning a changed buffer. |
7 | 156 * Must check 'write' option first! |
157 */ | |
158 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
159 dialog_changed( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
160 buf_T *buf, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
161 int checkall) // may abandon all changed buffers |
7 | 162 { |
2770 | 163 char_u buff[DIALOG_MSG_SIZE]; |
7 | 164 int ret; |
165 buf_T *buf2; | |
3486 | 166 exarg_T ea; |
7 | 167 |
12206
bd8d767fb36f
patch 8.0.0983: unnecessary check for NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
12146
diff
changeset
|
168 dialog_msg(buff, _("Save changes to \"%s\"?"), buf->b_fname); |
7 | 169 if (checkall) |
170 ret = vim_dialog_yesnoallcancel(VIM_QUESTION, NULL, buff, 1); | |
171 else | |
172 ret = vim_dialog_yesnocancel(VIM_QUESTION, NULL, buff, 1); | |
173 | |
16619
8f0ea605ec96
patch 8.1.1312: Coverity warning for using uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
16594
diff
changeset
|
174 // Init ea pseudo-structure, this is needed for the check_overwrite() |
8f0ea605ec96
patch 8.1.1312: Coverity warning for using uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
16594
diff
changeset
|
175 // function. |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
176 CLEAR_FIELD(ea); |
3486 | 177 |
7 | 178 if (ret == VIM_YES) |
179 { | |
180 #ifdef FEAT_BROWSE | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
181 // May get file name, when there is none |
7 | 182 browse_save_fname(buf); |
183 #endif | |
3486 | 184 if (buf->b_fname != NULL && check_overwrite(&ea, buf, |
185 buf->b_fname, buf->b_ffname, FALSE) == OK) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
186 // didn't hit Cancel |
7 | 187 (void)buf_write_all(buf, FALSE); |
188 } | |
189 else if (ret == VIM_NO) | |
190 { | |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16874
diff
changeset
|
191 unchanged(buf, TRUE, FALSE); |
7 | 192 } |
193 else if (ret == VIM_ALL) | |
194 { | |
195 /* | |
196 * Write all modified files that can be written. | |
197 * Skip readonly buffers, these need to be confirmed | |
198 * individually. | |
199 */ | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9626
diff
changeset
|
200 FOR_ALL_BUFFERS(buf2) |
7 | 201 { |
202 if (bufIsChanged(buf2) | |
203 && (buf2->b_ffname != NULL | |
204 #ifdef FEAT_BROWSE | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
205 || (cmdmod.cmod_flags & CMOD_BROWSE) |
7 | 206 #endif |
207 ) | |
30747
58592b6af4e2
patch 9.0.0708: :confirm does not work properly for a terminal buffer
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
208 && !bt_dontwrite(buf2) |
7 | 209 && !buf2->b_p_ro) |
210 { | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
211 bufref_T bufref; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
212 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
213 set_bufref(&bufref, buf2); |
7 | 214 #ifdef FEAT_BROWSE |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
215 // May get file name, when there is none |
7 | 216 browse_save_fname(buf2); |
217 #endif | |
3486 | 218 if (buf2->b_fname != NULL && check_overwrite(&ea, buf2, |
219 buf2->b_fname, buf2->b_ffname, FALSE) == OK) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
220 // didn't hit Cancel |
7 | 221 (void)buf_write_all(buf2, FALSE); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
222 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
223 // an autocommand may have deleted the buffer |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
224 if (!bufref_valid(&bufref)) |
7 | 225 buf2 = firstbuf; |
226 } | |
227 } | |
228 } | |
229 else if (ret == VIM_DISCARDALL) | |
230 { | |
231 /* | |
232 * mark all buffers as unchanged | |
233 */ | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9626
diff
changeset
|
234 FOR_ALL_BUFFERS(buf2) |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16874
diff
changeset
|
235 unchanged(buf2, TRUE, FALSE); |
7 | 236 } |
237 } | |
238 #endif | |
239 | |
240 /* | |
241 * Return TRUE if the buffer "buf" can be abandoned, either by making it | |
242 * hidden, autowriting it or unloading it. | |
243 */ | |
244 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
245 can_abandon(buf_T *buf, int forceit) |
7 | 246 { |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11935
diff
changeset
|
247 return ( buf_hide(buf) |
7 | 248 || !bufIsChanged(buf) |
249 || buf->b_nwindows > 1 | |
250 || autowrite(buf, forceit) == OK | |
251 || forceit); | |
252 } | |
253 | |
3429 | 254 /* |
255 * Add a buffer number to "bufnrs", unless it's already there. | |
256 */ | |
257 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
258 add_bufnum(int *bufnrs, int *bufnump, int nr) |
3429 | 259 { |
260 int i; | |
261 | |
262 for (i = 0; i < *bufnump; ++i) | |
263 if (bufnrs[i] == nr) | |
264 return; | |
265 bufnrs[*bufnump] = nr; | |
266 *bufnump = *bufnump + 1; | |
267 } | |
268 | |
7 | 269 /* |
270 * Return TRUE if any buffer was changed and cannot be abandoned. | |
271 * That changed buffer becomes the current buffer. | |
13438
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
272 * When "unload" is TRUE the current buffer is unloaded instead of making it |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
273 * hidden. This is used for ":q!". |
7 | 274 */ |
275 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
276 check_changed_any( |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
277 int hidden, // Only check hidden buffers |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
278 int unload) |
7 | 279 { |
3429 | 280 int ret = FALSE; |
7 | 281 buf_T *buf; |
282 int save; | |
3429 | 283 int i; |
284 int bufnum = 0; | |
285 int bufcount = 0; | |
286 int *bufnrs; | |
287 tabpage_T *tp; | |
7 | 288 win_T *wp; |
289 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
290 // Make a list of all buffers, with the most important ones first. |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9626
diff
changeset
|
291 FOR_ALL_BUFFERS(buf) |
3429 | 292 ++bufcount; |
293 | |
294 if (bufcount == 0) | |
295 return FALSE; | |
296 | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
297 bufnrs = ALLOC_MULT(int, bufcount); |
3429 | 298 if (bufnrs == NULL) |
299 return FALSE; | |
300 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
301 // curbuf |
3429 | 302 bufnrs[bufnum++] = curbuf->b_fnum; |
13438
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
303 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
304 // buffers in current tab |
3429 | 305 FOR_ALL_WINDOWS(wp) |
306 if (wp->w_buffer != curbuf) | |
307 add_bufnum(bufnrs, &bufnum, wp->w_buffer->b_fnum); | |
308 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
309 // buffers in other tabs |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9626
diff
changeset
|
310 FOR_ALL_TABPAGES(tp) |
3429 | 311 if (tp != curtab) |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
312 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
3429 | 313 add_bufnum(bufnrs, &bufnum, wp->w_buffer->b_fnum); |
13438
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
314 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
315 // any other buffer |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9626
diff
changeset
|
316 FOR_ALL_BUFFERS(buf) |
3429 | 317 add_bufnum(bufnrs, &bufnum, buf->b_fnum); |
318 | |
319 for (i = 0; i < bufnum; ++i) | |
7 | 320 { |
3429 | 321 buf = buflist_findnr(bufnrs[i]); |
322 if (buf == NULL) | |
323 continue; | |
324 if ((!hidden || buf->b_nwindows == 0) && bufIsChanged(buf)) | |
7 | 325 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
326 bufref_T bufref; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
327 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
328 set_bufref(&bufref, buf); |
13438
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
329 #ifdef FEAT_TERMINAL |
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
330 if (term_job_running(buf->b_term)) |
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
331 { |
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
332 if (term_try_stop_job(buf) == FAIL) |
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
333 break; |
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
334 } |
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
335 else |
33eea5ce5415
patch 8.0.1593: :qall never exits with an active terminal window
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
336 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
337 // Try auto-writing the buffer. If this fails but the buffer no |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
338 // longer exists it's not changed, that's OK. |
5464 | 339 if (check_changed(buf, (p_awa ? CCGD_AW : 0) |
340 | CCGD_MULTWIN | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
341 | CCGD_ALLBUF) && bufref_valid(&bufref)) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
342 break; // didn't save - still changes |
7 | 343 } |
344 } | |
345 | |
3429 | 346 if (i >= bufnum) |
347 goto theend; | |
348 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
349 // Get here if "buf" cannot be abandoned. |
3429 | 350 ret = TRUE; |
7 | 351 exiting = FALSE; |
352 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
353 /* | |
354 * When ":confirm" used, don't give an error message. | |
355 */ | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
356 if (!(p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM))) |
7 | 357 #endif |
358 { | |
29960
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29849
diff
changeset
|
359 // There must be a wait_return() for this message, do_buffer() |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
360 // may cause a redraw. But wait_return() is a no-op when vgetc() |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
361 // is busy (Quit used from window menu), then make sure we don't |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
362 // cause a scroll up. |
823 | 363 if (vgetc_busy > 0) |
7 | 364 { |
365 msg_row = cmdline_row; | |
366 msg_col = 0; | |
367 msg_didout = FALSE; | |
368 } | |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11935
diff
changeset
|
369 if ( |
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11935
diff
changeset
|
370 #ifdef FEAT_TERMINAL |
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11935
diff
changeset
|
371 term_job_running(buf->b_term) |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
372 ? semsg(_(e_job_still_running_in_buffer_str), buf->b_fname) |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11935
diff
changeset
|
373 : |
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11935
diff
changeset
|
374 #endif |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26103
diff
changeset
|
375 semsg(_(e_no_write_since_last_change_for_buffer_str), |
3839 | 376 buf_spname(buf) != NULL ? buf_spname(buf) : buf->b_fname)) |
7 | 377 { |
378 save = no_wait_return; | |
379 no_wait_return = FALSE; | |
380 wait_return(FALSE); | |
381 no_wait_return = save; | |
382 } | |
383 } | |
384 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
385 // Try to find a window that contains the buffer. |
7 | 386 if (buf != curbuf) |
3429 | 387 FOR_ALL_TAB_WINDOWS(tp, wp) |
7 | 388 if (wp->w_buffer == buf) |
389 { | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
390 bufref_T bufref; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
391 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
392 set_bufref(&bufref, buf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
393 |
3429 | 394 goto_tabpage_win(tp, wp); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
395 |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
396 // Paranoia: did autocmd wipe out the buffer with changes? |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9410
diff
changeset
|
397 if (!bufref_valid(&bufref)) |
3429 | 398 goto theend; |
399 goto buf_found; | |
7 | 400 } |
3429 | 401 buf_found: |
7 | 402 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
403 // Open the changed buffer in the current window. |
7 | 404 if (buf != curbuf) |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
405 set_curbuf(buf, unload ? DOBUF_UNLOAD : DOBUF_GOTO); |
7 | 406 |
3429 | 407 theend: |
408 vim_free(bufnrs); | |
409 return ret; | |
7 | 410 } |
411 | |
412 /* | |
413 * return FAIL if there is no file name, OK if there is one | |
414 * give error message for FAIL | |
415 */ | |
416 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
417 check_fname(void) |
7 | 418 { |
419 if (curbuf->b_ffname == NULL) | |
420 { | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
421 emsg(_(e_no_file_name)); |
7 | 422 return FAIL; |
423 } | |
424 return OK; | |
425 } | |
426 | |
427 /* | |
428 * flush the contents of a buffer, unless it has no file name | |
429 * | |
430 * return FAIL for failure, OK otherwise | |
431 */ | |
432 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
433 buf_write_all(buf_T *buf, int forceit) |
7 | 434 { |
435 int retval; | |
436 buf_T *old_curbuf = curbuf; | |
437 | |
438 retval = (buf_write(buf, buf->b_ffname, buf->b_fname, | |
439 (linenr_T)1, buf->b_ml.ml_line_count, NULL, | |
440 FALSE, forceit, TRUE, FALSE)); | |
441 if (curbuf != old_curbuf) | |
16 | 442 { |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
443 msg_source(HL_ATTR(HLF_W)); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
444 msg(_("Warning: Entered other buffer unexpectedly (check autocommands)")); |
16 | 445 } |
7 | 446 return retval; |
447 } | |
448 | |
449 /* | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
450 * ":argdo", ":windo", ":bufdo", ":tabdo", ":cdo", ":ldo", ":cfdo" and ":lfdo" |
7 | 451 */ |
452 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
453 ex_listdo(exarg_T *eap) |
7 | 454 { |
455 int i; | |
685 | 456 win_T *wp; |
457 tabpage_T *tp; | |
6641 | 458 buf_T *buf = curbuf; |
7 | 459 int next_fnum = 0; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
460 #if defined(FEAT_SYN_HL) |
7 | 461 char_u *save_ei = NULL; |
462 #endif | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
463 #ifdef FEAT_QUICKFIX |
7107
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
464 int qf_size = 0; |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
465 int qf_idx; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
466 #endif |
7 | 467 |
8220
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
468 #ifndef FEAT_QUICKFIX |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
469 if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo || |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
470 eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo) |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
471 { |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
472 ex_ni(eap); |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
473 return; |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
474 } |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
475 #endif |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
476 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
477 #if defined(FEAT_SYN_HL) |
819 | 478 if (eap->cmdidx != CMD_windo && eap->cmdidx != CMD_tabdo) |
17596
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
479 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
480 // Don't do syntax HL autocommands. Skipping the syntax file is a |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
481 // great speed improvement. |
123 | 482 save_ei = au_event_disable(",Syntax"); |
17596
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
483 |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
484 FOR_ALL_BUFFERS(buf) |
17596
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
485 buf->b_flags &= ~BF_SYN_SET; |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
486 buf = curbuf; |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
487 } |
7 | 488 #endif |
6116 | 489 #ifdef FEAT_CLIPBOARD |
490 start_global_changes(); | |
491 #endif | |
7 | 492 |
493 if (eap->cmdidx == CMD_windo | |
685 | 494 || eap->cmdidx == CMD_tabdo |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11935
diff
changeset
|
495 || buf_hide(curbuf) |
5464 | 496 || !check_changed(curbuf, CCGD_AW |
497 | (eap->forceit ? CCGD_FORCEIT : 0) | |
498 | CCGD_EXCMD)) | |
7 | 499 { |
500 i = 0; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
501 // start at the eap->line1 argument/window/buffer |
685 | 502 wp = firstwin; |
503 tp = first_tabpage; | |
6474 | 504 switch (eap->cmdidx) |
505 { | |
506 case CMD_windo: | |
507 for ( ; wp != NULL && i + 1 < eap->line1; wp = wp->w_next) | |
508 i++; | |
509 break; | |
510 case CMD_tabdo: | |
511 for( ; tp != NULL && i + 1 < eap->line1; tp = tp->tp_next) | |
512 i++; | |
513 break; | |
514 case CMD_argdo: | |
515 i = eap->line1 - 1; | |
516 break; | |
517 default: | |
518 break; | |
519 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
520 // set pcmark now |
7 | 521 if (eap->cmdidx == CMD_bufdo) |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
522 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
523 // Advance to the first listed buffer after "eap->line1". |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
524 for (buf = firstbuf; buf != NULL && (buf->b_fnum < eap->line1 |
6641 | 525 || !buf->b_p_bl); buf = buf->b_next) |
526 if (buf->b_fnum > eap->line2) | |
527 { | |
528 buf = NULL; | |
529 break; | |
530 } | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
531 if (buf != NULL) |
6641 | 532 goto_buffer(eap, DOBUF_FIRST, FORWARD, buf->b_fnum); |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
533 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
534 #ifdef FEAT_QUICKFIX |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
535 else if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
536 || eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
537 { |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
538 qf_size = qf_get_valid_size(eap); |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
539 if (qf_size <= 0 || eap->line1 > qf_size) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
540 buf = NULL; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
541 else |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
542 { |
31463
db72745d328c
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
543 save_clear_shm_value(); |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
544 ex_cc(eap); |
31463
db72745d328c
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
545 restore_shm_value(); |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
546 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
547 buf = curbuf; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
548 i = eap->line1 - 1; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
549 if (eap->addr_count <= 0) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
550 // default is all the quickfix/location list entries |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
551 eap->line2 = qf_size; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
552 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
553 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
554 #endif |
7 | 555 else |
556 setpcmark(); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
557 listcmd_busy = TRUE; // avoids setting pcmark below |
7 | 558 |
6641 | 559 while (!got_int && buf != NULL) |
7 | 560 { |
561 if (eap->cmdidx == CMD_argdo) | |
562 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
563 // go to argument "i" |
7 | 564 if (i == ARGCOUNT) |
565 break; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
566 // Don't call do_argfile() when already there, it will try |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
567 // reloading the file. |
22 | 568 if (curwin->w_arg_idx != i || !editing_arg_idx(curwin)) |
39 | 569 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
570 // Clear 'shm' to avoid that the file message overwrites |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
571 // any output from the command. |
31463
db72745d328c
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
572 save_clear_shm_value(); |
7 | 573 do_argfile(eap, i); |
31463
db72745d328c
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
574 restore_shm_value(); |
39 | 575 } |
7 | 576 if (curwin->w_arg_idx != i) |
577 break; | |
578 } | |
579 else if (eap->cmdidx == CMD_windo) | |
580 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
581 // go to window "wp" |
685 | 582 if (!win_valid(wp)) |
7 | 583 break; |
685 | 584 win_goto(wp); |
1115 | 585 if (curwin != wp) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
586 break; // something must be wrong |
685 | 587 wp = curwin->w_next; |
588 } | |
589 else if (eap->cmdidx == CMD_tabdo) | |
590 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
591 // go to window "tp" |
685 | 592 if (!valid_tabpage(tp)) |
593 break; | |
4354 | 594 goto_tabpage_tp(tp, TRUE, TRUE); |
685 | 595 tp = tp->tp_next; |
7 | 596 } |
597 else if (eap->cmdidx == CMD_bufdo) | |
598 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
599 // Remember the number of the next listed buffer, in case |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
600 // ":bwipe" is used or autocommands do something strange. |
7 | 601 next_fnum = -1; |
602 for (buf = curbuf->b_next; buf != NULL; buf = buf->b_next) | |
603 if (buf->b_p_bl) | |
604 { | |
605 next_fnum = buf->b_fnum; | |
606 break; | |
607 } | |
608 } | |
609 | |
6474 | 610 ++i; |
611 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
612 // execute the command |
7 | 613 do_cmdline(eap->arg, eap->getline, eap->cookie, |
614 DOCMD_VERBOSE + DOCMD_NOWAIT); | |
615 | |
616 if (eap->cmdidx == CMD_bufdo) | |
617 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
618 // Done? |
6474 | 619 if (next_fnum < 0 || next_fnum > eap->line2) |
7 | 620 break; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
621 // Check if the buffer still exists. |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9626
diff
changeset
|
622 FOR_ALL_BUFFERS(buf) |
7 | 623 if (buf->b_fnum == next_fnum) |
624 break; | |
625 if (buf == NULL) | |
626 break; | |
39 | 627 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
628 // Go to the next buffer. Clear 'shm' to avoid that the file |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
629 // message overwrites any output from the command. |
31463
db72745d328c
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
630 save_clear_shm_value(); |
7 | 631 goto_buffer(eap, DOBUF_FIRST, FORWARD, next_fnum); |
31463
db72745d328c
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
632 restore_shm_value(); |
39 | 633 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
634 // If autocommands took us elsewhere, quit here. |
7 | 635 if (curbuf->b_fnum != next_fnum) |
636 break; | |
637 } | |
638 | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
639 #ifdef FEAT_QUICKFIX |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
640 if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
641 || eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
642 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
643 if (i >= qf_size || i >= eap->line2) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
644 break; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
645 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
646 qf_idx = qf_get_cur_idx(eap); |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
647 |
31463
db72745d328c
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
648 save_clear_shm_value(); |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
649 ex_cnext(eap); |
31463
db72745d328c
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
650 restore_shm_value(); |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
651 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
652 // If jumping to the next quickfix entry fails, quit here |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
653 if (qf_get_cur_idx(eap) == qf_idx) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
654 break; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
655 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
656 #endif |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
657 |
7 | 658 if (eap->cmdidx == CMD_windo) |
659 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
660 validate_cursor(); // cursor may have moved |
13384
6740c499de13
patch 8.0.1566: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
661 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
662 // required when 'scrollbind' has been set |
7 | 663 if (curwin->w_p_scb) |
664 do_check_scrollbind(TRUE); | |
665 } | |
6474 | 666 |
667 if (eap->cmdidx == CMD_windo || eap->cmdidx == CMD_tabdo) | |
668 if (i+1 > eap->line2) | |
669 break; | |
670 if (eap->cmdidx == CMD_argdo && i >= eap->line2) | |
671 break; | |
7 | 672 } |
673 listcmd_busy = FALSE; | |
674 } | |
675 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
676 #if defined(FEAT_SYN_HL) |
154 | 677 if (save_ei != NULL) |
678 { | |
17596
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
679 buf_T *bnext; |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
680 aco_save_T aco; |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
681 |
154 | 682 au_event_restore(save_ei); |
17596
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
683 |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
684 for (buf = firstbuf; buf != NULL; buf = bnext) |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
685 { |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
686 bnext = buf->b_next; |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
687 if (buf->b_nwindows > 0 && (buf->b_flags & BF_SYN_SET)) |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
688 { |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
689 buf->b_flags &= ~BF_SYN_SET; |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
690 |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
691 // buffer was opened while Syntax autocommands were disabled, |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
692 // need to trigger them now. |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
693 if (buf == curbuf) |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
694 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn, |
154 | 695 curbuf->b_fname, TRUE, curbuf); |
17596
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
696 else |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
697 { |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
698 aucmd_prepbuf(&aco, buf); |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
699 if (curbuf == buf) |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
700 { |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
701 apply_autocmds(EVENT_SYNTAX, buf->b_p_syn, |
17596
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
702 buf->b_fname, TRUE, buf); |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
703 aucmd_restbuf(&aco); |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
30747
diff
changeset
|
704 } |
17596
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
705 } |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
706 |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
707 // start over, in case autocommands messed things up. |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
708 bnext = firstbuf; |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
709 } |
892b4ea3bad6
patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents:
17381
diff
changeset
|
710 } |
154 | 711 } |
7 | 712 #endif |
6116 | 713 #ifdef FEAT_CLIPBOARD |
714 end_global_changes(); | |
715 #endif | |
7 | 716 } |
717 | |
718 #ifdef FEAT_EVAL | |
719 /* | |
720 * ":compiler[!] {name}" | |
721 */ | |
722 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
723 ex_compiler(exarg_T *eap) |
7 | 724 { |
725 char_u *buf; | |
726 char_u *old_cur_comp = NULL; | |
727 char_u *p; | |
728 | |
729 if (*eap->arg == NUL) | |
730 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
731 // List all compiler scripts. |
7 | 732 do_cmdline_cmd((char_u *)"echo globpath(&rtp, 'compiler/*.vim')"); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
733 // ) keep the indenter happy... |
31565
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
734 return; |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
735 } |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
736 |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
737 buf = alloc(STRLEN(eap->arg) + 14); |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
738 if (buf == NULL) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
739 return; |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
740 |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
741 if (eap->forceit) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
742 { |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
743 // ":compiler! {name}" sets global options |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
744 do_cmdline_cmd((char_u *) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
745 "command -nargs=* CompilerSet set <args>"); |
7 | 746 } |
747 else | |
748 { | |
31565
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
749 // ":compiler! {name}" sets local options. |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
750 // To remain backwards compatible "current_compiler" is always |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
751 // used. A user's compiler plugin may set it, the distributed |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
752 // plugin will then skip the settings. Afterwards set |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
753 // "b:current_compiler" and restore "current_compiler". |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
754 // Explicitly prepend "g:" to make it work in a function. |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
755 old_cur_comp = get_var_value((char_u *)"g:current_compiler"); |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
756 if (old_cur_comp != NULL) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
757 old_cur_comp = vim_strsave(old_cur_comp); |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
758 do_cmdline_cmd((char_u *) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
759 "command -nargs=* -keepscript CompilerSet setlocal <args>"); |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
760 } |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
761 do_unlet((char_u *)"g:current_compiler", TRUE); |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
762 do_unlet((char_u *)"b:current_compiler", TRUE); |
7 | 763 |
31565
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
764 sprintf((char *)buf, "compiler/%s.vim", eap->arg); |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
765 if (source_runtime(buf, DIP_ALL) == FAIL) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
766 semsg(_(e_compiler_not_supported_str), eap->arg); |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
767 vim_free(buf); |
7 | 768 |
31565
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
769 do_cmdline_cmd((char_u *)":delcommand CompilerSet"); |
7 | 770 |
31565
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
771 // Set "b:current_compiler" from "current_compiler". |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
772 p = get_var_value((char_u *)"g:current_compiler"); |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
773 if (p != NULL) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
774 set_internal_string_var((char_u *)"b:current_compiler", p); |
7 | 775 |
31565
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
776 // Restore "current_compiler" for ":compiler {name}". |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
777 if (!eap->forceit) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
778 { |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
779 if (old_cur_comp != NULL) |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
780 { |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
781 set_internal_string_var((char_u *)"g:current_compiler", |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
782 old_cur_comp); |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
783 vim_free(old_cur_comp); |
7 | 784 } |
31565
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
785 else |
7d40c8c10a12
patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
786 do_unlet((char_u *)"g:current_compiler", TRUE); |
7 | 787 } |
788 } | |
789 #endif | |
790 | |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
791 #if defined(FEAT_PYTHON3) || defined(FEAT_PYTHON) || defined(PROTO) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
792 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
793 # if (defined(FEAT_PYTHON) && defined(FEAT_PYTHON3)) || defined(PROTO) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
794 /* |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
795 * Detect Python 3 or 2, and initialize 'pyxversion'. |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
796 */ |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
797 void |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
798 init_pyxversion(void) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
799 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
800 if (p_pyx == 0) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
801 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
802 if (python3_enabled(FALSE)) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
803 p_pyx = 3; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
804 else if (python_enabled(FALSE)) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
805 p_pyx = 2; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
806 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
807 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
808 # endif |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
809 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
810 /* |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
811 * Does a file contain one of the following strings at the beginning of any |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
812 * line? |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
813 * "#!(any string)python2" => returns 2 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
814 * "#!(any string)python3" => returns 3 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
815 * "# requires python 2.x" => returns 2 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
816 * "# requires python 3.x" => returns 3 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
817 * otherwise return 0. |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
818 */ |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
819 static int |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
820 requires_py_version(char_u *filename) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
821 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
822 FILE *file; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
823 int requires_py_version = 0; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
824 int i, lines; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
825 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
826 lines = (int)p_mls; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
827 if (lines < 0) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
828 lines = 5; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
829 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
830 file = mch_fopen((char *)filename, "r"); |
31667
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
831 if (file == NULL) |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
832 return 0; |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
833 |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
834 for (i = 0; i < lines; i++) |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
835 { |
31667
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
836 if (vim_fgets(IObuff, IOSIZE, file)) |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
837 break; |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
838 if (i == 0 && IObuff[0] == '#' && IObuff[1] == '!') |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
839 { |
31667
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
840 // Check shebang. |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
841 if (strstr((char *)IObuff + 2, "python2") != NULL) |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
842 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
843 requires_py_version = 2; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
844 break; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
845 } |
31667
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
846 if (strstr((char *)IObuff + 2, "python3") != NULL) |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
847 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
848 requires_py_version = 3; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
849 break; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
850 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
851 } |
31667
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
852 IObuff[21] = '\0'; |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
853 if (STRCMP("# requires python 2.x", IObuff) == 0) |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
854 { |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
855 requires_py_version = 2; |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
856 break; |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
857 } |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
858 if (STRCMP("# requires python 3.x", IObuff) == 0) |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
859 { |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
860 requires_py_version = 3; |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
861 break; |
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
862 } |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
863 } |
31667
b89cfd86e18e
patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31565
diff
changeset
|
864 fclose(file); |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
865 return requires_py_version; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
866 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
867 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
868 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
869 /* |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
870 * Source a python file using the requested python version. |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
871 */ |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
872 static void |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
873 source_pyx_file(exarg_T *eap, char_u *fname) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
874 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
875 exarg_T ex; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
876 int v = requires_py_version(fname); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
877 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
878 # if defined(FEAT_PYTHON) && defined(FEAT_PYTHON3) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
879 init_pyxversion(); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
880 # endif |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
881 if (v == 0) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
882 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
883 # if defined(FEAT_PYTHON) && defined(FEAT_PYTHON3) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
884 // user didn't choose a preference, 'pyx' is used |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
885 v = p_pyx; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
886 # elif defined(FEAT_PYTHON) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
887 v = 2; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
888 # elif defined(FEAT_PYTHON3) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
889 v = 3; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
890 # endif |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
891 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
892 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
893 /* |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
894 * now source, if required python version is not supported show |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
895 * unobtrusive message. |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
896 */ |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
897 if (eap == NULL) |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
898 CLEAR_FIELD(ex); |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
899 else |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
900 ex = *eap; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
901 ex.arg = fname; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
902 ex.cmd = (char_u *)(v == 2 ? "pyfile" : "pyfile3"); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
903 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
904 if (v == 2) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
905 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
906 # ifdef FEAT_PYTHON |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
907 ex_pyfile(&ex); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
908 # else |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
909 vim_snprintf((char *)IObuff, IOSIZE, |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
910 _("W20: Required python version 2.x not supported, ignoring file: %s"), |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
911 fname); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
912 msg((char *)IObuff); |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
913 # endif |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
914 return; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
915 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
916 else |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
917 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
918 # ifdef FEAT_PYTHON3 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
919 ex_py3file(&ex); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
920 # else |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
921 vim_snprintf((char *)IObuff, IOSIZE, |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
922 _("W21: Required python version 3.x not supported, ignoring file: %s"), |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
923 fname); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
924 msg((char *)IObuff); |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
925 # endif |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
926 return; |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
927 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
928 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
929 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
930 /* |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
931 * ":pyxfile {fname}" |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
932 */ |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
933 void |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
934 ex_pyxfile(exarg_T *eap) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
935 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
936 source_pyx_file(eap, eap->arg); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
937 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
938 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
939 /* |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
940 * ":pyx" |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
941 */ |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
942 void |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
943 ex_pyx(exarg_T *eap) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
944 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
945 # if defined(FEAT_PYTHON) && defined(FEAT_PYTHON3) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
946 init_pyxversion(); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
947 if (p_pyx == 2) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
948 ex_python(eap); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
949 else |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
950 ex_py3(eap); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
951 # elif defined(FEAT_PYTHON) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
952 ex_python(eap); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
953 # elif defined(FEAT_PYTHON3) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
954 ex_py3(eap); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
955 # endif |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
956 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
957 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
958 /* |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
959 * ":pyxdo" |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
960 */ |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
961 void |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
962 ex_pyxdo(exarg_T *eap) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
963 { |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
964 # if defined(FEAT_PYTHON) && defined(FEAT_PYTHON3) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
965 init_pyxversion(); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
966 if (p_pyx == 2) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
967 ex_pydo(eap); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
968 else |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
969 ex_py3do(eap); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
970 # elif defined(FEAT_PYTHON) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
971 ex_pydo(eap); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
972 # elif defined(FEAT_PYTHON3) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
973 ex_py3do(eap); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
974 # endif |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
975 } |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
976 |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
977 #endif |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10569
diff
changeset
|
978 |
7 | 979 /* |
980 * ":checktime [buffer]" | |
981 */ | |
982 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
983 ex_checktime(exarg_T *eap) |
7 | 984 { |
985 buf_T *buf; | |
986 int save_no_check_timestamps = no_check_timestamps; | |
987 | |
988 no_check_timestamps = 0; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
989 if (eap->addr_count == 0) // default is all buffers |
7 | 990 check_timestamps(FALSE); |
991 else | |
992 { | |
993 buf = buflist_findnr((int)eap->line2); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18051
diff
changeset
|
994 if (buf != NULL) // cannot happen? |
7 | 995 (void)buf_check_timestamp(buf, FALSE); |
996 } | |
997 no_check_timestamps = save_no_check_timestamps; | |
998 } |