Mercurial > vim
annotate src/ex_cmds.c @ 31555:5aa54cbc6e20 v9.0.1110
patch 9.0.1110: build fails on Mac OS X 10.4/10.5
Commit: https://github.com/vim/vim/commit/254480736f7db3667c7b84873efb49c2cb1d385f
Author: Evan Miller <emmiller@gmail.com>
Date: Fri Dec 30 10:42:23 2022 +0000
patch 9.0.1110: build fails on Mac OS X 10.4/10.5
Problem: Build fails on Mac OS X 10.4/10.5 .
Solution: Check if the dispatch/dispatch.h header exists. (Evan Miller,
closes #11746)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 30 Dec 2022 11:45:05 +0100 |
parents | 0e92ffdd9ea7 |
children | 7d40c8c10a12 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
10021
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_cmds.c: some functions for command line commands | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 #include "version.h" | |
16 | |
30310
029c59bf78f1
patch 9.0.0491: no good reason to build without the float feature
Bram Moolenaar <Bram@vim.org>
parents:
30263
diff
changeset
|
17 #include <float.h> |
7691
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
18 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
19 static int linelen(int *has_tab); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
20 static void do_filter(linenr_T line1, linenr_T line2, exarg_T *eap, char_u *cmd, int do_in, int do_out); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
21 static int not_writing(void); |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
22 static int check_readonly(int *forceit, buf_T *buf); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
23 static void delbuf_msg(char_u *name); |
7 | 24 |
25 /* | |
26 * ":ascii" and "ga". | |
27 */ | |
28 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
29 do_ascii(exarg_T *eap UNUSED) |
7 | 30 { |
31 int c; | |
1784 | 32 int cval; |
7 | 33 char buf1[20]; |
34 char buf2[20]; | |
35 char_u buf3[7]; | |
13359
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
36 #ifdef FEAT_DIGRAPHS |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
37 char_u *dig; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
38 #endif |
714 | 39 int cc[MAX_MCO]; |
40 int ci = 0; | |
7 | 41 int len; |
42 | |
43 if (enc_utf8) | |
714 | 44 c = utfc_ptr2char(ml_get_cursor(), cc); |
7 | 45 else |
46 c = gchar_cursor(); | |
47 if (c == NUL) | |
48 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
49 msg("NUL"); |
7 | 50 return; |
51 } | |
52 | |
53 IObuff[0] = NUL; | |
54 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80) | |
55 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
56 if (c == NL) // NUL is stored as NL |
7 | 57 c = NUL; |
1784 | 58 if (c == CAR && get_fileformat(curbuf) == EOL_MAC) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
59 cval = NL; // NL is stored as CR |
1784 | 60 else |
61 cval = c; | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27449
diff
changeset
|
62 if (vim_isprintc_strict(c) && (c < ' ' || c > '~')) |
7 | 63 { |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20599
diff
changeset
|
64 transchar_nonprint(curbuf, buf3, c); |
1872 | 65 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3); |
7 | 66 } |
67 else | |
68 buf1[0] = NUL; | |
69 if (c >= 0x80) | |
1872 | 70 vim_snprintf(buf2, sizeof(buf2), " <M-%s>", |
71 (char *)transchar(c & 0x7f)); | |
7 | 72 else |
73 buf2[0] = NUL; | |
13359
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
74 #ifdef FEAT_DIGRAPHS |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
75 dig = get_digraph_for_char(cval); |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
76 if (dig != NULL) |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
77 vim_snprintf((char *)IObuff, IOSIZE, |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
78 _("<%s>%s%s %d, Hex %02x, Oct %03o, Digr %s"), |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
79 transchar(c), buf1, buf2, cval, cval, cval, dig); |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
80 else |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
81 #endif |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
82 vim_snprintf((char *)IObuff, IOSIZE, |
274 | 83 _("<%s>%s%s %d, Hex %02x, Octal %03o"), |
1784 | 84 transchar(c), buf1, buf2, cval, cval, cval); |
963 | 85 if (enc_utf8) |
86 c = cc[ci++]; | |
87 else | |
88 c = 0; | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
89 } |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
90 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
91 // Repeat for combining characters. |
7 | 92 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80))) |
93 { | |
94 len = (int)STRLEN(IObuff); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
95 // This assumes every multi-byte char is printable... |
7 | 96 if (len > 0) |
97 IObuff[len++] = ' '; | |
98 IObuff[len++] = '<'; | |
963 | 99 if (enc_utf8 && utf_iscomposing(c) |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
100 #ifdef USE_GUI |
7 | 101 && !gui.in_use |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
102 #endif |
7 | 103 ) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
104 IObuff[len++] = ' '; // draw composing char on top of a space |
274 | 105 len += (*mb_char2bytes)(c, IObuff + len); |
13359
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
106 #ifdef FEAT_DIGRAPHS |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
107 dig = get_digraph_for_char(c); |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
108 if (dig != NULL) |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
109 vim_snprintf((char *)IObuff + len, IOSIZE - len, |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
110 c < 0x10000 ? _("> %d, Hex %04x, Oct %o, Digr %s") |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
111 : _("> %d, Hex %08x, Oct %o, Digr %s"), |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
112 c, c, c, dig); |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
113 else |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
114 #endif |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
115 vim_snprintf((char *)IObuff + len, IOSIZE - len, |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
116 c < 0x10000 ? _("> %d, Hex %04x, Octal %o") |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
117 : _("> %d, Hex %08x, Octal %o"), |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13302
diff
changeset
|
118 c, c, c); |
714 | 119 if (ci == MAX_MCO) |
120 break; | |
963 | 121 if (enc_utf8) |
122 c = cc[ci++]; | |
123 else | |
124 c = 0; | |
7 | 125 } |
126 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
127 msg((char *)IObuff); |
7 | 128 } |
129 | |
130 /* | |
131 * ":left", ":center" and ":right": align text. | |
132 */ | |
133 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
134 ex_align(exarg_T *eap) |
7 | 135 { |
136 pos_T save_curpos; | |
137 int len; | |
138 int indent = 0; | |
139 int new_indent; | |
140 int has_tab; | |
141 int width; | |
142 | |
143 #ifdef FEAT_RIGHTLEFT | |
144 if (curwin->w_p_rl) | |
145 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
146 // switch left and right aligning |
7 | 147 if (eap->cmdidx == CMD_right) |
148 eap->cmdidx = CMD_left; | |
149 else if (eap->cmdidx == CMD_left) | |
150 eap->cmdidx = CMD_right; | |
151 } | |
152 #endif | |
153 | |
154 width = atoi((char *)eap->arg); | |
155 save_curpos = curwin->w_cursor; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
156 if (eap->cmdidx == CMD_left) // width is used for new indent |
7 | 157 { |
158 if (width >= 0) | |
159 indent = width; | |
160 } | |
161 else | |
162 { | |
163 /* | |
164 * if 'textwidth' set, use it | |
165 * else if 'wrapmargin' set, use it | |
166 * if invalid value, use 80 | |
167 */ | |
168 if (width <= 0) | |
169 width = curbuf->b_p_tw; | |
170 if (width == 0 && curbuf->b_p_wm > 0) | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
171 width = curwin->w_width - curbuf->b_p_wm; |
7 | 172 if (width <= 0) |
173 width = 80; | |
174 } | |
175 | |
176 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) | |
177 return; | |
178 | |
179 for (curwin->w_cursor.lnum = eap->line1; | |
180 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum) | |
181 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
182 if (eap->cmdidx == CMD_left) // left align |
7 | 183 new_indent = indent; |
184 else | |
185 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
186 has_tab = FALSE; // avoid uninit warnings |
7 | 187 len = linelen(eap->cmdidx == CMD_right ? &has_tab |
188 : NULL) - get_indent(); | |
189 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
190 if (len <= 0) // skip blank lines |
7 | 191 continue; |
192 | |
193 if (eap->cmdidx == CMD_center) | |
194 new_indent = (width - len) / 2; | |
195 else | |
196 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
197 new_indent = width - len; // right align |
7 | 198 |
199 /* | |
200 * Make sure that embedded TABs don't make the text go too far | |
201 * to the right. | |
202 */ | |
203 if (has_tab) | |
204 while (new_indent > 0) | |
205 { | |
206 (void)set_indent(new_indent, 0); | |
207 if (linelen(NULL) <= width) | |
208 { | |
209 /* | |
210 * Now try to move the line as much as possible to | |
211 * the right. Stop when it moves too far. | |
212 */ | |
213 do | |
214 (void)set_indent(++new_indent, 0); | |
215 while (linelen(NULL) <= width); | |
216 --new_indent; | |
217 break; | |
218 } | |
219 --new_indent; | |
220 } | |
221 } | |
222 } | |
223 if (new_indent < 0) | |
224 new_indent = 0; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
225 (void)set_indent(new_indent, 0); // set indent |
7 | 226 } |
227 changed_lines(eap->line1, 0, eap->line2 + 1, 0L); | |
228 curwin->w_cursor = save_curpos; | |
229 beginline(BL_WHITE | BL_FIX); | |
230 } | |
231 | |
232 /* | |
233 * Get the length of the current line, excluding trailing white space. | |
234 */ | |
235 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
236 linelen(int *has_tab) |
7 | 237 { |
238 char_u *line; | |
239 char_u *first; | |
240 char_u *last; | |
241 int save; | |
242 int len; | |
243 | |
18408
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
244 // Get the line. If it's empty bail out early (could be the empty string |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
245 // for an unloaded buffer). |
7 | 246 line = ml_get_curline(); |
18408
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
247 if (*line == NUL) |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
248 return 0; |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
249 |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
250 // find the first non-blank character |
7 | 251 first = skipwhite(line); |
252 | |
18408
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
253 // find the character after the last non-blank character |
7 | 254 for (last = first + STRLEN(first); |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
255 last > first && VIM_ISWHITE(last[-1]); --last) |
7 | 256 ; |
257 save = *last; | |
258 *last = NUL; | |
30833
e3d5781c7ec6
patch 9.0.0751: 'scrolloff' does not work well with 'smoothscroll'
Bram Moolenaar <Bram@vim.org>
parents:
30645
diff
changeset
|
259 len = linetabsize_str(line); // get line length on screen |
18408
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
260 if (has_tab != NULL) // check for embedded TAB |
14513
076b9632bda4
patch 8.1.0270: checking for a Tab in a line could be faster
Christian Brabandt <cb@256bit.org>
parents:
14443
diff
changeset
|
261 *has_tab = (vim_strchr(first, TAB) != NULL); |
7 | 262 *last = save; |
263 | |
264 return len; | |
265 } | |
266 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
267 // Buffer for two lines used during sorting. They are allocated to |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
268 // contain the longest line being sorted. |
826 | 269 static char_u *sortbuf1; |
270 static char_u *sortbuf2; | |
284 | 271 |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
272 static int sort_lc; // sort using locale |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
273 static int sort_ic; // ignore case |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
274 static int sort_nr; // sort on number |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
275 static int sort_rx; // sort on regex instead of skipping it |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
276 static int sort_flt; // sort on floating number |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
277 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
278 static int sort_abort; // flag to indicate if sorting has been interrupted |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
279 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
280 // Struct to store info to be sorted. |
294 | 281 typedef struct |
282 { | |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
283 linenr_T lnum; // line number |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
284 union { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
285 struct |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
286 { |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
287 varnumber_T start_col_nr; // starting column number |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
288 varnumber_T end_col_nr; // ending column number |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
289 } line; |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
290 struct |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
291 { |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
292 varnumber_T value; // value if sorting by integer |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
293 int is_number; // TRUE when line contains a number |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
294 } num; |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
295 float_T value_flt; // value if sorting by float |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
296 } st_u; |
294 | 297 } sorti_T; |
284 | 298 |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
299 static int |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
300 string_compare(const void *s1, const void *s2) |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
301 { |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
302 if (sort_lc) |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
303 return strcoll((char *)s1, (char *)s2); |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
304 return sort_ic ? STRICMP(s1, s2) : STRCMP(s1, s2); |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
305 } |
284 | 306 |
307 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
308 sort_compare(const void *s1, const void *s2) |
284 | 309 { |
294 | 310 sorti_T l1 = *(sorti_T *)s1; |
311 sorti_T l2 = *(sorti_T *)s2; | |
826 | 312 int result = 0; |
313 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
314 // If the user interrupts, there's no way to stop qsort() immediately, but |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
315 // if we return 0 every time, qsort will assume it's done sorting and |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
316 // exit. |
826 | 317 if (sort_abort) |
318 return 0; | |
319 fast_breakcheck(); | |
320 if (got_int) | |
321 sort_abort = TRUE; | |
322 | |
294 | 323 if (sort_nr) |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
324 { |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
325 if (l1.st_u.num.is_number != l2.st_u.num.is_number) |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
326 result = l1.st_u.num.is_number - l2.st_u.num.is_number; |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
327 else |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
328 result = l1.st_u.num.value == l2.st_u.num.value ? 0 |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
329 : l1.st_u.num.value > l2.st_u.num.value ? 1 : -1; |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
330 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
331 else if (sort_flt) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
332 result = l1.st_u.value_flt == l2.st_u.value_flt ? 0 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
333 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1; |
826 | 334 else |
335 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
336 // We need to copy one line into "sortbuf1", because there is no |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
337 // guarantee that the first pointer becomes invalid when obtaining the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
338 // second one. |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
339 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.st_u.line.start_col_nr, |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
340 l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr + 1); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
341 sortbuf1[l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr] = 0; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
342 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.st_u.line.start_col_nr, |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
343 l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr + 1); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
344 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0; |
826 | 345 |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
346 result = string_compare(sortbuf1, sortbuf2); |
834 | 347 } |
348 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
349 // If two lines have the same value, preserve the original line order. |
826 | 350 if (result == 0) |
834 | 351 return (int)(l1.lnum - l2.lnum); |
352 return result; | |
284 | 353 } |
354 | |
355 /* | |
356 * ":sort". | |
357 */ | |
358 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
359 ex_sort(exarg_T *eap) |
284 | 360 { |
361 regmatch_T regmatch; | |
362 int len; | |
363 linenr_T lnum; | |
364 long maxlen = 0; | |
294 | 365 sorti_T *nrs; |
1872 | 366 size_t count = (size_t)(eap->line2 - eap->line1 + 1); |
294 | 367 size_t i; |
284 | 368 char_u *p; |
369 char_u *s; | |
826 | 370 char_u *s2; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
371 char_u c; // temporary character storage |
284 | 372 int unique = FALSE; |
373 long deleted; | |
826 | 374 colnr_T start_col; |
375 colnr_T end_col; | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
376 int sort_what = 0; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
377 int format_found = 0; |
14206
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
378 int change_occurred = FALSE; // Buffer contents changed. |
284 | 379 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
380 // Sorting one line is really quick! |
1538 | 381 if (count <= 1) |
382 return; | |
383 | |
284 | 384 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
385 return; | |
826 | 386 sortbuf1 = NULL; |
387 sortbuf2 = NULL; | |
284 | 388 regmatch.regprog = NULL; |
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
|
389 nrs = ALLOC_MULT(sorti_T, count); |
284 | 390 if (nrs == NULL) |
826 | 391 goto sortend; |
392 | |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
393 sort_abort = sort_ic = sort_lc = sort_rx = sort_nr = 0; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
394 sort_flt = 0; |
294 | 395 |
284 | 396 for (p = eap->arg; *p != NUL; ++p) |
397 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
398 if (VIM_ISWHITE(*p)) |
284 | 399 ; |
400 else if (*p == 'i') | |
401 sort_ic = TRUE; | |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
402 else if (*p == 'l') |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
403 sort_lc = TRUE; |
826 | 404 else if (*p == 'r') |
405 sort_rx = TRUE; | |
294 | 406 else if (*p == 'n') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
407 { |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
408 sort_nr = 1; |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
409 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
410 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
411 else if (*p == 'f') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
412 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
413 sort_flt = 1; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
414 ++format_found; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
415 } |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
416 else if (*p == 'b') |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
417 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
418 sort_what = STR2NR_BIN + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
419 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
420 } |
294 | 421 else if (*p == 'o') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
422 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
423 sort_what = STR2NR_OCT + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
424 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
425 } |
294 | 426 else if (*p == 'x') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
427 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
428 sort_what = STR2NR_HEX + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
429 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
430 } |
284 | 431 else if (*p == 'u') |
432 unique = TRUE; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
433 else if (*p == '"') // comment start |
289 | 434 break; |
25521
2063b858cad9
patch 8.2.3297: cannot use all commands inside a {} block
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
435 else if (eap->nextcmd == NULL && check_nextcmd(p) != NULL) |
289 | 436 { |
437 eap->nextcmd = check_nextcmd(p); | |
438 break; | |
439 } | |
440 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL) | |
284 | 441 { |
20113
2c23053c654a
patch 8.2.0612: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
442 s = skip_regexp_err(p + 1, *p, TRUE); |
2c23053c654a
patch 8.2.0612: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
443 if (s == NULL) |
826 | 444 goto sortend; |
284 | 445 *s = NUL; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
446 // Use last search pattern if sort pattern is empty. |
4199 | 447 if (s == p + 1) |
448 { | |
449 if (last_search_pat() == NULL) | |
450 { | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
451 emsg(_(e_no_previous_regular_expression)); |
4199 | 452 goto sortend; |
453 } | |
1314 | 454 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC); |
4199 | 455 } |
1314 | 456 else |
457 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC); | |
284 | 458 if (regmatch.regprog == NULL) |
826 | 459 goto sortend; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
460 p = s; // continue after the regexp |
284 | 461 regmatch.rm_ic = p_ic; |
462 } | |
463 else | |
464 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
465 semsg(_(e_invalid_argument_str), p); |
826 | 466 goto sortend; |
284 | 467 } |
468 } | |
469 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
470 // Can only have one of 'n', 'b', 'o' and 'x'. |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
471 if (format_found > 1) |
294 | 472 { |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
473 emsg(_(e_invalid_argument)); |
826 | 474 goto sortend; |
294 | 475 } |
476 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
477 // From here on "sort_nr" is used as a flag for any integer number |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
478 // sorting. |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
479 sort_nr += sort_what; |
294 | 480 |
284 | 481 /* |
294 | 482 * Make an array with all line numbers. This avoids having to copy all |
284 | 483 * the lines into allocated memory. |
826 | 484 * When sorting on strings "start_col_nr" is the offset in the line, for |
485 * numbers sorting it's the number to sort on. This means the pattern | |
486 * matching and number conversion only has to be done once per line. | |
294 | 487 * Also get the longest line length for allocating "sortbuf". |
284 | 488 */ |
489 for (lnum = eap->line1; lnum <= eap->line2; ++lnum) | |
490 { | |
491 s = ml_get(lnum); | |
835 | 492 len = (int)STRLEN(s); |
284 | 493 if (maxlen < len) |
494 maxlen = len; | |
294 | 495 |
826 | 496 start_col = 0; |
497 end_col = len; | |
294 | 498 if (regmatch.regprog != NULL && vim_regexec(®match, s, 0)) |
826 | 499 { |
500 if (sort_rx) | |
501 { | |
835 | 502 start_col = (colnr_T)(regmatch.startp[0] - s); |
503 end_col = (colnr_T)(regmatch.endp[0] - s); | |
826 | 504 } |
505 else | |
835 | 506 start_col = (colnr_T)(regmatch.endp[0] - s); |
826 | 507 } |
294 | 508 else |
826 | 509 if (regmatch.regprog != NULL) |
510 end_col = 0; | |
294 | 511 |
30310
029c59bf78f1
patch 9.0.0491: no good reason to build without the float feature
Bram Moolenaar <Bram@vim.org>
parents:
30263
diff
changeset
|
512 if (sort_nr || sort_flt) |
294 | 513 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
514 // Make sure vim_str2nr doesn't read any digits past the end |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
515 // of the match, by temporarily terminating the string there |
826 | 516 s2 = s + end_col; |
517 c = *s2; | |
2606 | 518 *s2 = NUL; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
519 // Sorting on number: Store the number itself. |
1687 | 520 p = s + start_col; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
521 if (sort_nr) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
522 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
523 if (sort_what & STR2NR_HEX) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
524 s = skiptohex(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
525 else if (sort_what & STR2NR_BIN) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
526 s = skiptobin(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
527 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
528 s = skiptodigit(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
529 if (s > p && s[-1] == '-') |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
530 --s; // include preceding negative sign |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
531 if (*s == NUL) |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
532 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
533 // line without number should sort before any number |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
534 nrs[lnum - eap->line1].st_u.num.is_number = FALSE; |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
535 nrs[lnum - eap->line1].st_u.num.value = 0; |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
536 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
537 else |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
538 { |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
539 nrs[lnum - eap->line1].st_u.num.is_number = TRUE; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
540 vim_str2nr(s, NULL, NULL, sort_what, |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16698
diff
changeset
|
541 &nrs[lnum - eap->line1].st_u.num.value, |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16698
diff
changeset
|
542 NULL, 0, FALSE); |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
543 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
544 } |
294 | 545 else |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
546 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
547 s = skipwhite(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
548 if (*s == '+') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
549 s = skipwhite(s + 1); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
550 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
551 if (*s == NUL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
552 // empty line should sort before any number |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
553 nrs[lnum - eap->line1].st_u.value_flt = -DBL_MAX; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
554 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
555 nrs[lnum - eap->line1].st_u.value_flt = |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
556 strtod((char *)s, NULL); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
557 } |
2606 | 558 *s2 = c; |
294 | 559 } |
560 else | |
826 | 561 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
562 // Store the column to sort at. |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
563 nrs[lnum - eap->line1].st_u.line.start_col_nr = start_col; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
564 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col; |
826 | 565 } |
294 | 566 |
567 nrs[lnum - eap->line1].lnum = lnum; | |
481 | 568 |
569 if (regmatch.regprog != NULL) | |
570 fast_breakcheck(); | |
571 if (got_int) | |
826 | 572 goto sortend; |
284 | 573 } |
574 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
575 // Allocate a buffer that can hold the longest line. |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
576 sortbuf1 = alloc(maxlen + 1); |
826 | 577 if (sortbuf1 == NULL) |
578 goto sortend; | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
579 sortbuf2 = alloc(maxlen + 1); |
826 | 580 if (sortbuf2 == NULL) |
581 goto sortend; | |
284 | 582 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
583 // Sort the array of line numbers. Note: can't be interrupted! |
294 | 584 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare); |
284 | 585 |
826 | 586 if (sort_abort) |
587 goto sortend; | |
588 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
589 // Insert the lines in the sorted order below the last one. |
284 | 590 lnum = eap->line2; |
591 for (i = 0; i < count; ++i) | |
592 { | |
14206
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
593 linenr_T get_lnum = nrs[eap->forceit ? count - i - 1 : i].lnum; |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
594 |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
595 // If the original line number of the line being placed is not the same |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
596 // as "lnum" (accounting for offset), we know that the buffer changed. |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
597 if (get_lnum + ((linenr_T)count - 1) != lnum) |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
598 change_occurred = TRUE; |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
599 |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
600 s = ml_get(get_lnum); |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
601 if (!unique || i == 0 || string_compare(s, sortbuf1) != 0) |
284 | 602 { |
14206
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
603 // Copy the line into a buffer, it may become invalid in |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
604 // ml_append(). And it's needed for "unique". |
7340
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
605 STRCPY(sortbuf1, s); |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
606 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL) |
284 | 607 break; |
608 } | |
481 | 609 fast_breakcheck(); |
610 if (got_int) | |
826 | 611 goto sortend; |
284 | 612 } |
613 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
614 // delete the original lines if appending worked |
284 | 615 if (i == count) |
616 for (i = 0; i < count; ++i) | |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20561
diff
changeset
|
617 ml_delete(eap->line1); |
284 | 618 else |
619 count = 0; | |
620 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
621 // Adjust marks for deleted (or added) lines and prepare for displaying. |
835 | 622 deleted = (long)(count - (lnum - eap->line2)); |
284 | 623 if (deleted > 0) |
14808
3d0b6e2a3a01
patch 8.1.0416: sort doesn't report deleted lines
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
624 { |
284 | 625 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted); |
14808
3d0b6e2a3a01
patch 8.1.0416: sort doesn't report deleted lines
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
626 msgmore(-deleted); |
3d0b6e2a3a01
patch 8.1.0416: sort doesn't report deleted lines
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
627 } |
284 | 628 else if (deleted < 0) |
629 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L); | |
14206
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
630 |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
631 if (change_occurred || deleted != 0) |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
632 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted); |
294 | 633 |
284 | 634 curwin->w_cursor.lnum = eap->line1; |
635 beginline(BL_WHITE | BL_FIX); | |
636 | |
826 | 637 sortend: |
284 | 638 vim_free(nrs); |
826 | 639 vim_free(sortbuf1); |
640 vim_free(sortbuf2); | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
641 vim_regfree(regmatch.regprog); |
481 | 642 if (got_int) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
643 emsg(_(e_interrupted)); |
284 | 644 } |
645 | |
7 | 646 /* |
647 * :move command - move lines line1-line2 to line dest | |
648 * | |
649 * return FAIL for failure, OK otherwise | |
650 */ | |
651 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
652 do_move(linenr_T line1, linenr_T line2, linenr_T dest) |
7 | 653 { |
654 char_u *str; | |
655 linenr_T l; | |
15010
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
656 linenr_T extra; // Num lines added before line1 |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
657 linenr_T num_lines; // Num lines moved |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
658 linenr_T last_line; // Last line in file after adding new text |
6755 | 659 #ifdef FEAT_FOLDING |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
660 win_T *win; |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
661 tabpage_T *tp; |
6755 | 662 #endif |
7 | 663 |
664 if (dest >= line1 && dest < line2) | |
665 { | |
26757
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26709
diff
changeset
|
666 emsg(_(e_cannot_move_range_of_lines_into_itself)); |
7 | 667 return FAIL; |
668 } | |
669 | |
15010
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
670 // Do nothing if we are not actually moving any lines. This will prevent |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
671 // the 'modified' flag from being set without cause. |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
672 if (dest == line1 - 1 || dest == line2) |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
673 { |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
674 // Move the cursor as if lines were moved (see below) to be backwards |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
675 // compatible. |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
676 if (dest >= line1) |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
677 curwin->w_cursor.lnum = dest; |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
678 else |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
679 curwin->w_cursor.lnum = dest + (line2 - line1) + 1; |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
680 |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
681 return OK; |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
682 } |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
683 |
7 | 684 num_lines = line2 - line1 + 1; |
685 | |
686 /* | |
687 * First we copy the old text to its new location -- webb | |
688 * Also copy the flag that ":global" command uses. | |
689 */ | |
690 if (u_save(dest, dest + 1) == FAIL) | |
691 return FAIL; | |
692 for (extra = 0, l = line1; l <= line2; l++) | |
693 { | |
694 str = vim_strsave(ml_get(l + extra)); | |
695 if (str != NULL) | |
696 { | |
697 ml_append(dest + l - line1, str, (colnr_T)0, FALSE); | |
698 vim_free(str); | |
699 if (dest < line1) | |
700 extra++; | |
701 } | |
702 } | |
703 | |
704 /* | |
705 * Now we must be careful adjusting our marks so that we don't overlap our | |
706 * mark_adjust() calls. | |
707 * | |
708 * We adjust the marks within the old text so that they refer to the | |
709 * last lines of the file (temporarily), because we know no other marks | |
710 * will be set there since these line numbers did not exist until we added | |
711 * our new lines. | |
712 * | |
713 * Then we adjust the marks on lines between the old and new text positions | |
714 * (either forwards or backwards). | |
715 * | |
716 * And Finally we adjust the marks we put at the end of the file back to | |
717 * their final destination at the new text position -- webb | |
718 */ | |
719 last_line = curbuf->b_ml.ml_line_count; | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
720 mark_adjust_nofold(line1, line2, last_line - line2, 0L); |
7 | 721 if (dest >= line2) |
722 { | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
723 mark_adjust_nofold(line2 + 1, dest, -num_lines, 0L); |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
724 #ifdef FEAT_FOLDING |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
725 FOR_ALL_TAB_WINDOWS(tp, win) { |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
726 if (win->w_buffer == curbuf) |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
727 foldMoveRange(&win->w_folds, line1, line2, dest); |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
728 } |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
729 #endif |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
730 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0) |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
731 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
732 curbuf->b_op_start.lnum = dest - num_lines + 1; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
733 curbuf->b_op_end.lnum = dest; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
734 } |
7 | 735 } |
736 else | |
737 { | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
738 mark_adjust_nofold(dest + 1, line1 - 1, num_lines, 0L); |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
739 #ifdef FEAT_FOLDING |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
740 FOR_ALL_TAB_WINDOWS(tp, win) { |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
741 if (win->w_buffer == curbuf) |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
742 foldMoveRange(&win->w_folds, dest + 1, line1 - 1, line2); |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
743 } |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
744 #endif |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
745 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0) |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
746 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
747 curbuf->b_op_start.lnum = dest + 1; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
748 curbuf->b_op_end.lnum = dest + num_lines; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
749 } |
7 | 750 } |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
751 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0) |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
752 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
753 mark_adjust_nofold(last_line - num_lines + 1, last_line, |
7 | 754 -(last_line - dest - extra), 0L); |
755 | |
756 /* | |
757 * Now we delete the original text -- webb | |
758 */ | |
759 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL) | |
760 return FAIL; | |
761 | |
762 for (l = line1; l <= line2; l++) | |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20561
diff
changeset
|
763 ml_delete_flags(line1 + extra, ML_DEL_MESSAGE); |
7 | 764 |
765 if (!global_busy && num_lines > p_report) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
766 smsg(NGETTEXT("%ld line moved", "%ld lines moved", num_lines), |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
767 (long)num_lines); |
7 | 768 |
769 /* | |
770 * Leave the cursor on the last of the moved lines. | |
771 */ | |
772 if (dest >= line1) | |
773 curwin->w_cursor.lnum = dest; | |
774 else | |
775 curwin->w_cursor.lnum = dest + (line2 - line1) + 1; | |
776 | |
777 if (line1 < dest) | |
3184 | 778 { |
779 dest += num_lines + 1; | |
780 last_line = curbuf->b_ml.ml_line_count; | |
781 if (dest > last_line + 1) | |
782 dest = last_line + 1; | |
783 changed_lines(line1, 0, dest, 0L); | |
784 } | |
7 | 785 else |
786 changed_lines(dest + 1, 0, line1 + num_lines, 0L); | |
787 | |
788 return OK; | |
789 } | |
790 | |
791 /* | |
792 * ":copy" | |
793 */ | |
794 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
795 ex_copy(linenr_T line1, linenr_T line2, linenr_T n) |
7 | 796 { |
797 linenr_T count; | |
798 char_u *p; | |
799 | |
800 count = line2 - line1 + 1; | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
801 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0) |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
802 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
803 curbuf->b_op_start.lnum = n + 1; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
804 curbuf->b_op_end.lnum = n + count; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
805 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
806 } |
7 | 807 |
808 /* | |
809 * there are three situations: | |
810 * 1. destination is above line1 | |
811 * 2. destination is between line1 and line2 | |
812 * 3. destination is below line2 | |
813 * | |
814 * n = destination (when starting) | |
815 * curwin->w_cursor.lnum = destination (while copying) | |
816 * line1 = start of source (while copying) | |
817 * line2 = end of source (while copying) | |
818 */ | |
819 if (u_save(n, n + 1) == FAIL) | |
820 return; | |
821 | |
822 curwin->w_cursor.lnum = n; | |
823 while (line1 <= line2) | |
824 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
825 // need to use vim_strsave() because the line will be unlocked within |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
826 // ml_append() |
7 | 827 p = vim_strsave(ml_get(line1)); |
828 if (p != NULL) | |
829 { | |
830 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE); | |
831 vim_free(p); | |
832 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
833 // situation 2: skip already copied lines |
7 | 834 if (line1 == n) |
835 line1 = curwin->w_cursor.lnum; | |
836 ++line1; | |
837 if (curwin->w_cursor.lnum < line1) | |
838 ++line1; | |
839 if (curwin->w_cursor.lnum < line2) | |
840 ++line2; | |
841 ++curwin->w_cursor.lnum; | |
842 } | |
843 | |
844 appended_lines_mark(n, count); | |
27374
c9a6c79998b2
patch 8.2.4215: illegal memory access when copying lines in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
845 if (VIsual_active) |
c9a6c79998b2
patch 8.2.4215: illegal memory access when copying lines in Visual mode
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
846 check_pos(curbuf, &VIsual); |
7 | 847 |
848 msgmore((long)count); | |
849 } | |
850 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
851 static char_u *prevcmd = NULL; // the previous command |
359 | 852 |
853 #if defined(EXITFREE) || defined(PROTO) | |
854 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
855 free_prev_shellcmd(void) |
359 | 856 { |
857 vim_free(prevcmd); | |
858 } | |
859 #endif | |
860 | |
7 | 861 /* |
31059
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
862 * Check that "prevcmd" is not NULL. If it is NULL then give an error message |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
863 * and return FALSE. |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
864 */ |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
865 static int |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
866 prevcmd_is_set(void) |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
867 { |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
868 if (prevcmd == NULL) |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
869 { |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
870 emsg(_(e_no_previous_command)); |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
871 return FALSE; |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
872 } |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
873 return TRUE; |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
874 } |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
875 |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
876 /* |
7 | 877 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd" |
878 * Bangs in the argument are replaced with the previously entered command. | |
879 * Remember the argument. | |
880 */ | |
881 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
882 do_bang( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
883 int addr_count, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
884 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
885 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
886 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
887 int do_out) |
7 | 888 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
889 char_u *arg = eap->arg; // command |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
890 linenr_T line1 = eap->line1; // start of range |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
891 linenr_T line2 = eap->line2; // end of range |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
892 char_u *newcmd = NULL; // the new command |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
893 int free_newcmd = FALSE; // need to free() newcmd |
7 | 894 int ins_prevcmd; |
895 char_u *t; | |
896 char_u *p; | |
897 char_u *trailarg; | |
898 int len; | |
899 int scroll_save = msg_scroll; | |
900 | |
901 /* | |
902 * Disallow shell commands for "rvim". | |
903 * Disallow shell commands from .exrc and .vimrc in current directory for | |
904 * security reasons. | |
905 */ | |
906 if (check_restricted() || check_secure()) | |
907 return; | |
908 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
909 if (addr_count == 0) // :! |
7 | 910 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
911 msg_scroll = FALSE; // don't scroll here |
7 | 912 autowrite_all(); |
913 msg_scroll = scroll_save; | |
914 } | |
915 | |
916 /* | |
31020
b0596e8ee3c0
patch 9.0.0845: shell command with just space gives strange error
Bram Moolenaar <Bram@vim.org>
parents:
30970
diff
changeset
|
917 * Try to find an embedded bang, like in ":!<cmd> ! [args]" |
b0596e8ee3c0
patch 9.0.0845: shell command with just space gives strange error
Bram Moolenaar <Bram@vim.org>
parents:
30970
diff
changeset
|
918 * ":!!" is indicated by the 'forceit' variable. |
7 | 919 */ |
920 ins_prevcmd = forceit; | |
31020
b0596e8ee3c0
patch 9.0.0845: shell command with just space gives strange error
Bram Moolenaar <Bram@vim.org>
parents:
30970
diff
changeset
|
921 |
b0596e8ee3c0
patch 9.0.0845: shell command with just space gives strange error
Bram Moolenaar <Bram@vim.org>
parents:
30970
diff
changeset
|
922 // Skip leading white space to avoid a strange error with some shells. |
b0596e8ee3c0
patch 9.0.0845: shell command with just space gives strange error
Bram Moolenaar <Bram@vim.org>
parents:
30970
diff
changeset
|
923 trailarg = skipwhite(arg); |
7 | 924 do |
925 { | |
926 len = (int)STRLEN(trailarg) + 1; | |
927 if (newcmd != NULL) | |
928 len += (int)STRLEN(newcmd); | |
929 if (ins_prevcmd) | |
930 { | |
31059
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
931 if (!prevcmd_is_set()) |
7 | 932 { |
933 vim_free(newcmd); | |
934 return; | |
935 } | |
936 len += (int)STRLEN(prevcmd); | |
937 } | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
938 if ((t = alloc(len)) == NULL) |
7 | 939 { |
940 vim_free(newcmd); | |
941 return; | |
942 } | |
943 *t = NUL; | |
944 if (newcmd != NULL) | |
945 STRCAT(t, newcmd); | |
946 if (ins_prevcmd) | |
947 STRCAT(t, prevcmd); | |
948 p = t + STRLEN(t); | |
949 STRCAT(t, trailarg); | |
950 vim_free(newcmd); | |
951 newcmd = t; | |
952 | |
953 /* | |
954 * Scan the rest of the argument for '!', which is replaced by the | |
955 * previous command. "\!" is replaced by "!" (this is vi compatible). | |
956 */ | |
957 trailarg = NULL; | |
958 while (*p) | |
959 { | |
2823 | 960 if (*p == '!') |
7 | 961 { |
962 if (p > newcmd && p[-1] == '\\') | |
1624 | 963 STRMOVE(p - 1, p); |
7 | 964 else |
965 { | |
966 trailarg = p; | |
967 *trailarg++ = NUL; | |
968 ins_prevcmd = TRUE; | |
969 break; | |
970 } | |
971 } | |
972 ++p; | |
973 } | |
974 } while (trailarg != NULL); | |
975 | |
30970
6d6545c99597
patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents:
30962
diff
changeset
|
976 // Only set "prevcmd" if there is a command to run, otherwise keep te one |
6d6545c99597
patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents:
30962
diff
changeset
|
977 // we have. |
30961 | 978 if (STRLEN(newcmd) > 0) |
30902
bea05c84b2ad
patch 9.0.0785: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents:
30898
diff
changeset
|
979 { |
30961 | 980 vim_free(prevcmd); |
981 prevcmd = newcmd; | |
30902
bea05c84b2ad
patch 9.0.0785: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents:
30898
diff
changeset
|
982 } |
30970
6d6545c99597
patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents:
30962
diff
changeset
|
983 else |
6d6545c99597
patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents:
30962
diff
changeset
|
984 free_newcmd = TRUE; |
30898
2ee5b79038f0
patch 9.0.0783: ":!" doesn't do anything but does update the previous command
Bram Moolenaar <Bram@vim.org>
parents:
30833
diff
changeset
|
985 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
986 if (bangredo) // put cmd in redo buffer for ! command |
7 | 987 { |
31059
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
988 if (!prevcmd_is_set()) |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
989 goto theend; |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
990 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
991 // If % or # appears in the command, it must have been escaped. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
992 // Reescape them, so that redoing them does not substitute them by the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
993 // buffername. |
5728 | 994 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#"); |
995 | |
996 if (cmd != NULL) | |
997 { | |
998 AppendToRedobuffLit(cmd, -1); | |
999 vim_free(cmd); | |
1000 } | |
1001 else | |
1002 AppendToRedobuffLit(prevcmd, -1); | |
7 | 1003 AppendToRedobuff((char_u *)"\n"); |
1004 bangredo = FALSE; | |
1005 } | |
1006 /* | |
1007 * Add quotes around the command, for shells that need them. | |
1008 */ | |
1009 if (*p_shq != NUL) | |
1010 { | |
30970
6d6545c99597
patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents:
30962
diff
changeset
|
1011 if (free_newcmd) |
6d6545c99597
patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents:
30962
diff
changeset
|
1012 vim_free(newcmd); |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
1013 newcmd = alloc(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1); |
7 | 1014 if (newcmd == NULL) |
1015 return; | |
1016 STRCPY(newcmd, p_shq); | |
1017 STRCAT(newcmd, prevcmd); | |
1018 STRCAT(newcmd, p_shq); | |
1019 free_newcmd = TRUE; | |
1020 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1021 if (addr_count == 0) // :! |
7 | 1022 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1023 // echo the command |
7 | 1024 msg_start(); |
1025 msg_putchar(':'); | |
1026 msg_putchar('!'); | |
1027 msg_outtrans(newcmd); | |
1028 msg_clr_eos(); | |
1029 windgoto(msg_row, msg_col); | |
1030 | |
1031 do_shell(newcmd, 0); | |
1032 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1033 else // :range! |
725 | 1034 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1035 // Careful: This may recursively call do_bang() again! (because of |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1036 // autocommands) |
7 | 1037 do_filter(line1, line2, eap, newcmd, do_in, do_out); |
725 | 1038 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf); |
1039 } | |
31059
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
1040 |
30ea99dff3be
patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents:
31020
diff
changeset
|
1041 theend: |
7 | 1042 if (free_newcmd) |
1043 vim_free(newcmd); | |
1044 } | |
1045 | |
1046 /* | |
1047 * do_filter: filter lines through a command given by the user | |
1048 * | |
169 | 1049 * We mostly use temp files and the call_shell() routine here. This would |
1050 * normally be done using pipes on a UNIX machine, but this is more portable | |
1051 * to non-unix machines. The call_shell() routine needs to be able | |
7 | 1052 * to deal with redirection somehow, and should handle things like looking |
1053 * at the PATH env. variable, and adding reasonable extensions to the | |
1054 * command name given by the user. All reasonable versions of call_shell() | |
1055 * do this. | |
169 | 1056 * Alternatively, if on Unix and redirecting input or output, but not both, |
1057 * and the 'shelltemp' option isn't set, use pipes. | |
7 | 1058 * We use input redirection if do_in is TRUE. |
1059 * We use output redirection if do_out is TRUE. | |
1060 */ | |
1061 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1062 do_filter( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1063 linenr_T line1, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1064 linenr_T line2, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1065 exarg_T *eap, // for forced 'ff' and 'fenc' |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1066 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1067 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1068 int do_out) |
7 | 1069 { |
1070 char_u *itmp = NULL; | |
1071 char_u *otmp = NULL; | |
1072 linenr_T linecount; | |
1073 linenr_T read_linecount; | |
1074 pos_T cursor_save; | |
1075 char_u *cmd_buf; | |
1076 buf_T *old_curbuf = curbuf; | |
169 | 1077 int shell_flags = 0; |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1078 pos_T orig_start = curbuf->b_op_start; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1079 pos_T orig_end = curbuf->b_op_end; |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1080 int save_cmod_flags = cmdmod.cmod_flags; |
18742
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1081 #ifdef FEAT_FILTERPIPE |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1082 int stmp = p_stmp; |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1083 #endif |
7 | 1084 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1085 if (*cmd == NUL) // no filter command |
7 | 1086 return; |
1087 | |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1088 // Temporarily disable lockmarks since that's needed to propagate changed |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1089 // regions of the buffer for foldUpdate(), linecount, etc. |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1090 cmdmod.cmod_flags &= ~CMOD_LOCKMARKS; |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1091 |
7 | 1092 cursor_save = curwin->w_cursor; |
1093 linecount = line2 - line1 + 1; | |
1094 curwin->w_cursor.lnum = line1; | |
1095 curwin->w_cursor.col = 0; | |
1096 changed_line_abv_curs(); | |
1097 invalidate_botline(); | |
1098 | |
1099 /* | |
169 | 1100 * When using temp files: |
1101 * 1. * Form temp file names | |
1102 * 2. * Write the lines to a temp file | |
1103 * 3. Run the filter command on the temp file | |
1104 * 4. * Read the output of the command into the buffer | |
1105 * 5. * Delete the original lines to be filtered | |
1106 * 6. * Remove the temp files | |
1107 * | |
1108 * When writing the input with a pipe or when catching the output with a | |
1109 * pipe only need to do 3. | |
7 | 1110 */ |
1111 | |
169 | 1112 if (do_out) |
1113 shell_flags |= SHELL_DOOUT; | |
1114 | |
3482 | 1115 #ifdef FEAT_FILTERPIPE |
18742
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1116 # ifdef VIMDLL |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1117 if (!gui.in_use && !gui.starting) |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1118 stmp = 1; // Console mode doesn't support filterpipe. |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1119 # endif |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1120 |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1121 if (!do_in && do_out && !stmp) |
169 | 1122 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1123 // Use a pipe to fetch stdout of the command, do not use a temp file. |
169 | 1124 shell_flags |= SHELL_READ; |
1125 curwin->w_cursor.lnum = line2; | |
1126 } | |
18742
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1127 else if (do_in && !do_out && !stmp) |
7 | 1128 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1129 // Use a pipe to write stdin of the command, do not use a temp file. |
169 | 1130 shell_flags |= SHELL_WRITE; |
1131 curbuf->b_op_start.lnum = line1; | |
1132 curbuf->b_op_end.lnum = line2; | |
7 | 1133 } |
18742
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1134 else if (do_in && do_out && !stmp) |
169 | 1135 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1136 // Use a pipe to write stdin and fetch stdout of the command, do not |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1137 // use a temp file. |
169 | 1138 shell_flags |= SHELL_READ|SHELL_WRITE; |
1139 curbuf->b_op_start.lnum = line1; | |
1140 curbuf->b_op_end.lnum = line2; | |
1141 curwin->w_cursor.lnum = line2; | |
1142 } | |
1143 else | |
1144 #endif | |
6721 | 1145 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL) |
1146 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL)) | |
169 | 1147 { |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
1148 emsg(_(e_cant_get_temp_file_name)); |
169 | 1149 goto filterend; |
1150 } | |
7 | 1151 |
1152 /* | |
1153 * The writing and reading of temp files will not be shown. | |
1154 * Vi also doesn't do this and the messages are not very informative. | |
1155 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1156 ++no_wait_return; // don't call wait_return() while busy |
169 | 1157 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap, |
7 | 1158 FALSE, FALSE, FALSE, TRUE) == FAIL) |
1159 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1160 msg_putchar('\n'); // keep message from buf_write() |
7 | 1161 --no_wait_return; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1162 #if defined(FEAT_EVAL) |
7 | 1163 if (!aborting()) |
1164 #endif | |
29960
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29954
diff
changeset
|
1165 // will call wait_return() |
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29954
diff
changeset
|
1166 (void)semsg(_(e_cant_create_file_str), itmp); |
7 | 1167 goto filterend; |
1168 } | |
1169 if (curbuf != old_curbuf) | |
1170 goto filterend; | |
1171 | |
1172 if (!do_out) | |
1173 msg_putchar('\n'); | |
1174 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1175 // Create the shell command in allocated memory. |
7 | 1176 cmd_buf = make_filter_cmd(cmd, itmp, otmp); |
1177 if (cmd_buf == NULL) | |
1178 goto filterend; | |
1179 | |
1180 windgoto((int)Rows - 1, 0); | |
1181 cursor_on(); | |
1182 | |
1183 /* | |
1184 * When not redirecting the output the command can write anything to the | |
1185 * screen. If 'shellredir' is equal to ">", screen may be messed up by | |
1186 * stderr output of external command. Clear the screen later. | |
1187 * If do_in is FALSE, this could be something like ":r !cat", which may | |
1188 * also mess up the screen, clear it later. | |
1189 */ | |
1190 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in) | |
1191 redraw_later_clear(); | |
1192 | |
169 | 1193 if (do_out) |
1194 { | |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27374
diff
changeset
|
1195 if (u_save(line2, (linenr_T)(line2 + 1)) == FAIL) |
1581 | 1196 { |
1197 vim_free(cmd_buf); | |
169 | 1198 goto error; |
1581 | 1199 } |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29609
diff
changeset
|
1200 redraw_curbuf_later(UPD_VALID); |
169 | 1201 } |
1202 read_linecount = curbuf->b_ml.ml_line_count; | |
1203 | |
7 | 1204 /* |
1205 * When call_shell() fails wait_return() is called to give the user a | |
1206 * chance to read the error messages. Otherwise errors are ignored, so you | |
1207 * can see the error messages from the command that appear on stdout; use | |
1208 * 'u' to fix the text | |
1209 * Switch to cooked mode when not redirecting stdin, avoids that something | |
1210 * like ":r !cat" hangs. | |
1211 * Pass on the SHELL_DOOUT flag when the output is being redirected. | |
1212 */ | |
169 | 1213 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags)) |
7 | 1214 { |
1215 redraw_later_clear(); | |
1216 wait_return(FALSE); | |
1217 } | |
1218 vim_free(cmd_buf); | |
1219 | |
1220 did_check_timestamps = FALSE; | |
1221 need_check_timestamps = TRUE; | |
1222 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1223 // When interrupting the shell command, it may still have produced some |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1224 // useful output. Reset got_int here, so that readfile() won't cancel |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1225 // reading. |
7 | 1226 ui_breakcheck(); |
1227 got_int = FALSE; | |
1228 | |
1229 if (do_out) | |
1230 { | |
169 | 1231 if (otmp != NULL) |
7 | 1232 { |
169 | 1233 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM, |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10482
diff
changeset
|
1234 eap, READ_FILTER) != OK) |
169 | 1235 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1236 #if defined(FEAT_EVAL) |
169 | 1237 if (!aborting()) |
1238 #endif | |
1239 { | |
1240 msg_putchar('\n'); | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
1241 semsg(_(e_cant_read_file_str), otmp); |
169 | 1242 } |
1243 goto error; | |
7 | 1244 } |
169 | 1245 if (curbuf != old_curbuf) |
1246 goto filterend; | |
7 | 1247 } |
169 | 1248 |
1249 read_linecount = curbuf->b_ml.ml_line_count - read_linecount; | |
1250 | |
1251 if (shell_flags & SHELL_READ) | |
1252 { | |
1253 curbuf->b_op_start.lnum = line2 + 1; | |
1254 curbuf->b_op_end.lnum = curwin->w_cursor.lnum; | |
1255 appended_lines_mark(line2, read_linecount); | |
1256 } | |
7 | 1257 |
1258 if (do_in) | |
1259 { | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1260 if ((cmdmod.cmod_flags & CMOD_KEEPMARKS) |
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1261 || vim_strchr(p_cpo, CPO_REMMARK) == NULL) |
7 | 1262 { |
1263 if (read_linecount >= linecount) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1264 // move all marks from old lines to new lines |
7 | 1265 mark_adjust(line1, line2, linecount, 0L); |
22812
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1266 else if (save_cmod_flags & CMOD_LOCKMARKS) |
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1267 { |
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1268 // Move marks from the lines below the new lines down by |
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1269 // the number of lines lost. |
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1270 // Move marks from the lines that will be deleted to the |
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1271 // new lines and below. |
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1272 mark_adjust(line2 + 1, (linenr_T)MAXLNUM, |
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1273 linecount - read_linecount, 0L); |
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1274 mark_adjust(line1, line2, linecount, 0L); |
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1275 } |
7 | 1276 else |
1277 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1278 // move marks from old lines to new lines, delete marks |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1279 // that are in deleted lines |
7 | 1280 mark_adjust(line1, line1 + read_linecount - 1, |
1281 linecount, 0L); | |
1282 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); | |
1283 } | |
1284 } | |
1285 | |
1286 /* | |
1287 * Put cursor on first filtered line for ":range!cmd". | |
1288 * Adjust '[ and '] (set by buf_write()). | |
1289 */ | |
1290 curwin->w_cursor.lnum = line1; | |
1291 del_lines(linecount, TRUE); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1292 curbuf->b_op_start.lnum -= linecount; // adjust '[ |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1293 curbuf->b_op_end.lnum -= linecount; // adjust '] |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1294 write_lnum_adjust(-linecount); // adjust last line |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1295 // for next write |
100 | 1296 #ifdef FEAT_FOLDING |
1297 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum); | |
1298 #endif | |
7 | 1299 } |
1300 else | |
1301 { | |
1302 /* | |
1303 * Put cursor on last new line for ":r !cmd". | |
1304 */ | |
169 | 1305 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1; |
7 | 1306 curwin->w_cursor.lnum = curbuf->b_op_end.lnum; |
1307 } | |
100 | 1308 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1309 beginline(BL_WHITE | BL_FIX); // cursor on first non-blank |
7 | 1310 --no_wait_return; |
1311 | |
1312 if (linecount > p_report) | |
1313 { | |
1314 if (do_in) | |
1315 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1316 vim_snprintf(msg_buf, sizeof(msg_buf), |
274 | 1317 _("%ld lines filtered"), (long)linecount); |
7 | 1318 if (msg(msg_buf) && !msg_scroll) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1319 // save message to display it after redraw |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1320 set_keep_msg((char_u *)msg_buf, 0); |
7 | 1321 } |
1322 else | |
1323 msgmore((long)linecount); | |
1324 } | |
1325 } | |
1326 else | |
1327 { | |
1328 error: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1329 // put cursor back in same position for ":w !cmd" |
7 | 1330 curwin->w_cursor = cursor_save; |
1331 --no_wait_return; | |
1332 wait_return(FALSE); | |
1333 } | |
1334 | |
1335 filterend: | |
1336 | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1337 cmdmod.cmod_flags = save_cmod_flags; |
7 | 1338 if (curbuf != old_curbuf) |
1339 { | |
1340 --no_wait_return; | |
26757
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26709
diff
changeset
|
1341 emsg(_(e_filter_autocommands_must_not_change_current_buffer)); |
7 | 1342 } |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1343 else if (cmdmod.cmod_flags & CMOD_LOCKMARKS) |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1344 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1345 curbuf->b_op_start = orig_start; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1346 curbuf->b_op_end = orig_end; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1347 } |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1348 |
7 | 1349 if (itmp != NULL) |
1350 mch_remove(itmp); | |
1351 if (otmp != NULL) | |
1352 mch_remove(otmp); | |
1353 vim_free(itmp); | |
1354 vim_free(otmp); | |
1355 } | |
1356 | |
1357 /* | |
1358 * Call a shell to execute a command. | |
1359 * When "cmd" is NULL start an interactive shell. | |
1360 */ | |
1361 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1362 do_shell( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1363 char_u *cmd, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1364 int flags) // may be SHELL_DOOUT when output is redirected |
7 | 1365 { |
1366 buf_T *buf; | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1367 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) |
7 | 1368 int save_nwr; |
1369 #endif | |
1370 #ifdef MSWIN | |
1371 int winstart = FALSE; | |
1372 #endif | |
23529
049b1e867137
patch 8.2.2307: a shell command in the vimrc causes terminal output
Bram Moolenaar <Bram@vim.org>
parents:
23505
diff
changeset
|
1373 int keep_termcap = !termcap_active; |
7 | 1374 |
1375 /* | |
1376 * Disallow shell commands for "rvim". | |
1377 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1378 * security reasons. | |
1379 */ | |
1380 if (check_restricted() || check_secure()) | |
1381 { | |
1382 msg_end(); | |
1383 return; | |
1384 } | |
1385 | |
1386 #ifdef MSWIN | |
1387 /* | |
16021
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1388 * Check if ":!start" is used. This implies not stopping termcap mode. |
7 | 1389 */ |
1390 if (cmd != NULL) | |
16021
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1391 keep_termcap = winstart = (STRNICMP(cmd, "start ", 6) == 0); |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1392 |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1393 # if defined(FEAT_GUI) && defined(FEAT_TERMINAL) |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1394 // Don't stop termcap mode when using a terminal window for the shell. |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1395 if (gui.in_use && vim_strchr(p_go, GO_TERMINAL) != NULL) |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1396 keep_termcap = TRUE; |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1397 # endif |
7 | 1398 #endif |
1399 | |
1400 /* | |
1401 * For autocommands we want to get the output on the current screen, to | |
1402 * avoid having to type return below. | |
1403 */ | |
16021
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1404 msg_putchar('\r'); // put cursor at start of line |
7 | 1405 if (!autocmd_busy) |
1406 { | |
16021
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1407 if (!keep_termcap) |
7 | 1408 stoptermcap(); |
1409 } | |
1410 #ifdef MSWIN | |
1411 if (!winstart) | |
1412 #endif | |
16021
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1413 msg_putchar('\n'); // may shift screen one line up |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1414 |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1415 // warning message before calling the shell |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1416 if (p_warn && !autocmd_busy && msg_silent == 0) |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1417 FOR_ALL_BUFFERS(buf) |
13012
8d5b451d7bab
patch 8.0.1382: get "no write since last change" message if terminal is open
Christian Brabandt <cb@256bit.org>
parents:
12942
diff
changeset
|
1418 if (bufIsChangedNotTerm(buf)) |
7 | 1419 { |
1420 #ifdef FEAT_GUI_MSWIN | |
16021
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1421 if (!keep_termcap) |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1422 starttermcap(); // don't want a message box here |
7 | 1423 #endif |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1424 msg_puts(_("[No write since last change]\n")); |
7 | 1425 #ifdef FEAT_GUI_MSWIN |
16021
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1426 if (!keep_termcap) |
7 | 1427 stoptermcap(); |
1428 #endif | |
1429 break; | |
1430 } | |
1431 | |
16021
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1432 // This windgoto is required for when the '\n' resulted in a "delete line |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1433 // 1" command to the terminal. |
7 | 1434 if (!swapping_screen()) |
1435 windgoto(msg_row, msg_col); | |
1436 cursor_on(); | |
1437 (void)call_shell(cmd, SHELL_COOKED | flags); | |
1438 did_check_timestamps = FALSE; | |
1439 need_check_timestamps = TRUE; | |
1440 | |
1441 /* | |
1442 * put the message cursor at the end of the screen, avoids wait_return() | |
1443 * to overwrite the text that the external command showed | |
1444 */ | |
1445 if (!swapping_screen()) | |
1446 { | |
1447 msg_row = Rows - 1; | |
1448 msg_col = 0; | |
1449 } | |
1450 | |
1451 if (autocmd_busy) | |
1452 { | |
1453 if (msg_silent == 0) | |
1454 redraw_later_clear(); | |
1455 } | |
1456 else | |
1457 { | |
1458 /* | |
1459 * For ":sh" there is no need to call wait_return(), just redraw. | |
1460 * Also for the Win32 GUI (the output is in a console window). | |
1461 * Otherwise there is probably text on the screen that the user wants | |
1462 * to read before redrawing, so call wait_return(). | |
1463 */ | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1464 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1465 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1466 if (!gui.in_use) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1467 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1468 { |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1469 if (cmd == NULL |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1470 # ifdef MSWIN |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1471 || (keep_termcap && !need_wait_return) |
7 | 1472 # endif |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1473 ) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1474 { |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1475 if (msg_silent == 0) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1476 redraw_later_clear(); |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1477 need_wait_return = FALSE; |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1478 } |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1479 else |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1480 { |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1481 /* |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1482 * If we switch screens when starttermcap() is called, we |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1483 * really want to wait for "hit return to continue". |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1484 */ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1485 save_nwr = no_wait_return; |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1486 if (swapping_screen()) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1487 no_wait_return = FALSE; |
7 | 1488 # ifdef AMIGA |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1489 wait_return(term_console ? -1 : msg_silent == 0); // see below |
7 | 1490 # else |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1491 wait_return(msg_silent == 0); |
7 | 1492 # endif |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1493 no_wait_return = save_nwr; |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1494 } |
7 | 1495 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1496 #endif // FEAT_GUI_MSWIN |
7 | 1497 |
16021
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1498 if (!keep_termcap) // if keep_termcap is TRUE didn't stop termcap |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1499 starttermcap(); // start termcap if not done by wait_return() |
7 | 1500 |
1501 /* | |
1502 * In an Amiga window redrawing is caused by asking the window size. | |
1503 * If we got an interrupt this will not work. The chance that the | |
1504 * window size is wrong is very small, but we need to redraw the | |
1505 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY | |
1506 * but it saves an extra redraw. | |
1507 */ | |
1508 #ifdef AMIGA | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1509 if (skip_redraw) // ':' hit in wait_return() |
7 | 1510 { |
1511 if (msg_silent == 0) | |
1512 redraw_later_clear(); | |
1513 } | |
1514 else if (term_console) | |
1515 { | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27449
diff
changeset
|
1516 OUT_STR("\033[0 q"); // get window size |
7 | 1517 if (got_int && msg_silent == 0) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1518 redraw_later_clear(); // if got_int is TRUE, redraw needed |
7 | 1519 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1520 must_redraw = 0; // no extra redraw needed |
7 | 1521 } |
1522 #endif | |
1523 } | |
1524 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1525 // display any error messages now |
7 | 1526 display_errors(); |
725 | 1527 |
1528 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf); | |
7 | 1529 } |
1530 | |
14913
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1531 #if !defined(UNIX) |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1532 static char_u * |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1533 find_pipe(char_u *cmd) |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1534 { |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1535 char_u *p; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1536 int inquote = FALSE; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1537 |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1538 for (p = cmd; *p != NUL; ++p) |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1539 { |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1540 if (!inquote && *p == '|') |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1541 return p; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1542 if (*p == '"') |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1543 inquote = !inquote; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1544 else if (rem_backslash(p)) |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1545 ++p; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1546 } |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1547 return NULL; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1548 } |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1549 #endif |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1550 |
7 | 1551 /* |
1552 * Create a shell command from a command string, input redirection file and | |
1553 * output redirection file. | |
1554 * Returns an allocated string with the shell command, or NULL for failure. | |
1555 */ | |
1556 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1557 make_filter_cmd( |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1558 char_u *cmd, // command |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1559 char_u *itmp, // NULL or name of input file |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1560 char_u *otmp) // NULL or name of output file |
7 | 1561 { |
1562 char_u *buf; | |
1563 long_u len; | |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1564 int is_powershell = FALSE; |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1565 #ifdef UNIX |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1566 int is_fish_shell; |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1567 #endif |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1568 |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1569 char_u *shell_name = get_isolated_shell_name(); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1570 if (shell_name == NULL) |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1571 return NULL; |
5867 | 1572 |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1573 #if defined(UNIX) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1574 // Account for fish's different syntax for subshells |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1575 is_fish_shell = fnamecmp(shell_name, "fish") == 0; |
5867 | 1576 if (is_fish_shell) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1577 len = (long_u)STRLEN(cmd) + 13; // "begin; " + "; end" + NUL |
5867 | 1578 else |
1579 #endif | |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1580 { |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1581 is_powershell = (shell_name[0] == 'p') |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1582 && (fnamecmp(shell_name, "powershell") == 0 |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1583 || fnamecmp(shell_name, "powershell.exe") == 0 |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1584 || fnamecmp(shell_name, "pwsh") == 0 |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1585 || fnamecmp(shell_name, "pwsh.exe") == 0); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1586 len = (long_u)STRLEN(cmd) + 3; // "()" + NUL |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1587 } |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1588 |
7 | 1589 if (itmp != NULL) |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1590 { |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1591 if (is_powershell) |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1592 // "& { Get-Content " + " | & " + " }" |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1593 len += (long_u)STRLEN(itmp) + 24; |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1594 else |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1595 len += (long_u)STRLEN(itmp) + 9; // " { < " + " } " |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1596 } |
7 | 1597 if (otmp != NULL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1598 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; // " " |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1599 |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1600 vim_free(shell_name); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1601 |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
1602 buf = alloc(len); |
7 | 1603 if (buf == NULL) |
1604 return NULL; | |
1605 | |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1606 if (is_powershell) |
5867 | 1607 { |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1608 if (itmp != NULL) |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1609 vim_snprintf((char *)buf, len, "& { Get-Content %s | & %s }", |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1610 itmp, cmd); |
5867 | 1611 else |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1612 vim_snprintf((char *)buf, len, "(%s)", cmd); |
5867 | 1613 } |
169 | 1614 else |
7 | 1615 { |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1616 #if defined(UNIX) |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1617 // Put braces around the command (for concatenated commands) when |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1618 // redirecting input and/or output. |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1619 if (itmp != NULL || otmp != NULL) |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1620 { |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1621 if (is_fish_shell) |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1622 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1623 else |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1624 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1625 } |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1626 else |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1627 STRCPY(buf, cmd); |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1628 if (itmp != NULL) |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1629 { |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1630 STRCAT(buf, " < "); |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1631 STRCAT(buf, itmp); |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1632 } |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1633 #else |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1634 // For shells that don't understand braces around commands, at least |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1635 // allow the use of commands in a pipe. |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1636 if (*p_sxe != NUL && *p_sxq == '(') |
7 | 1637 { |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1638 if (itmp != NULL || otmp != NULL) |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1639 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1640 else |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1641 STRCPY(buf, cmd); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1642 if (itmp != NULL) |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1643 { |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1644 STRCAT(buf, " < "); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1645 STRCAT(buf, itmp); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1646 } |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1647 } |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1648 else |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1649 { |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1650 STRCPY(buf, cmd); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1651 if (itmp != NULL) |
7 | 1652 { |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1653 char_u *p; |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1654 |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1655 // If there is a pipe, we have to put the '<' in front of it. |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1656 // Don't do this when 'shellquote' is not empty, otherwise the |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1657 // redirection would be inside the quotes. |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1658 if (*p_shq == NUL) |
18221
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1659 { |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1660 p = find_pipe(buf); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1661 if (p != NULL) |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1662 *p = NUL; |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1663 } |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1664 STRCAT(buf, " <"); // " < " causes problems on Amiga |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1665 STRCAT(buf, itmp); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1666 if (*p_shq == NUL) |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1667 { |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1668 p = find_pipe(cmd); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1669 if (p != NULL) |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1670 { |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1671 // insert a space before the '|' for DOS |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1672 STRCAT(buf, " "); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1673 STRCAT(buf, p); |
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1674 } |
18221
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1675 } |
7 | 1676 } |
1677 } | |
30626
5bc844667d46
patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents:
30341
diff
changeset
|
1678 #endif |
7 | 1679 } |
1680 if (otmp != NULL) | |
1872 | 1681 append_redir(buf, (int)len, p_srr, otmp); |
7 | 1682 |
1683 return buf; | |
1684 } | |
1685 | |
1686 /* | |
1872 | 1687 * Append output redirection for file "fname" to the end of string buffer |
1688 * "buf[buflen]" | |
7 | 1689 * Works with the 'shellredir' and 'shellpipe' options. |
1690 * The caller should make sure that there is enough room: | |
1691 * STRLEN(opt) + STRLEN(fname) + 3 | |
1692 */ | |
1693 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1694 append_redir( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1695 char_u *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1696 int buflen, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1697 char_u *opt, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1698 char_u *fname) |
7 | 1699 { |
1700 char_u *p; | |
1872 | 1701 char_u *end; |
1702 | |
1703 end = buf + STRLEN(buf); | |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1704 // find "%s" |
7 | 1705 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p) |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1706 { |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1707 if (p[1] == 's') // found %s |
7 | 1708 break; |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1709 if (p[1] == '%') // skip %% |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1710 ++p; |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1711 } |
7 | 1712 if (p != NULL) |
1713 { | |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1714 #ifdef MSWIN |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1715 *end++ = ' '; // not really needed? Not with sh, ksh or bash |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1716 #endif |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1717 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
1872 | 1718 (char *)opt, (char *)fname); |
7 | 1719 } |
1720 else | |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29732
diff
changeset
|
1721 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), " %s %s", |
7 | 1722 (char *)opt, (char *)fname); |
1723 } | |
1724 | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
1725 /* |
7 | 1726 * Implementation of ":fixdel", also used by get_stty(). |
1727 * <BS> resulting <Del> | |
1728 * ^? ^H | |
1729 * not ^? ^? | |
1730 */ | |
1731 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1732 do_fixdel(exarg_T *eap UNUSED) |
7 | 1733 { |
1734 char_u *p; | |
1735 | |
1736 p = find_termcode((char_u *)"kb"); | |
1737 add_termcode((char_u *)"kD", p != NULL | |
1738 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); | |
1739 } | |
1740 | |
1741 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1742 print_line_no_prefix( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1743 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1744 int use_number, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1745 int list) |
7 | 1746 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1747 char numbuf[30]; |
7 | 1748 |
1749 if (curwin->w_p_nu || use_number) | |
1750 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1751 vim_snprintf(numbuf, sizeof(numbuf), |
1872 | 1752 "%*ld ", number_width(curwin), (long)lnum); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1753 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); // Highlight line nrs |
7 | 1754 } |
169 | 1755 msg_prt_line(ml_get(lnum), list); |
7 | 1756 } |
1757 | |
1758 /* | |
1759 * Print a text line. Also in silent mode ("ex -s"). | |
1760 */ | |
1761 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1762 print_line(linenr_T lnum, int use_number, int list) |
7 | 1763 { |
1764 int save_silent = silent_mode; | |
1765 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1766 // apply :filter /pat/ |
9980
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
1767 if (message_filtered(ml_get(lnum))) |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
1768 return; |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
1769 |
169 | 1770 msg_start(); |
7 | 1771 silent_mode = FALSE; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1772 info_message = TRUE; // use mch_msg(), not mch_errmsg() |
169 | 1773 print_line_no_prefix(lnum, use_number, list); |
7 | 1774 if (save_silent) |
1775 { | |
1776 msg_putchar('\n'); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1777 cursor_on(); // msg_start() switches it off |
7 | 1778 out_flush(); |
1779 silent_mode = save_silent; | |
1798 | 1780 } |
1781 info_message = FALSE; | |
7 | 1782 } |
1783 | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1784 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1785 rename_buffer(char_u *new_fname) |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1786 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1787 char_u *fname, *sfname, *xfname; |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1788 buf_T *buf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1789 |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1790 buf = curbuf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1791 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1792 // buffer changed, don't change name now |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1793 if (buf != curbuf) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1794 return FAIL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1795 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1796 if (aborting()) // autocmds may abort script processing |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1797 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1798 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1799 /* |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1800 * The name of the current buffer will be changed. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1801 * A new (unlisted) buffer entry needs to be made to hold the old file |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1802 * name, which will become the alternate file name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1803 * But don't set the alternate file name if the buffer didn't have a |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1804 * name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1805 */ |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1806 fname = curbuf->b_ffname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1807 sfname = curbuf->b_sfname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1808 xfname = curbuf->b_fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1809 curbuf->b_ffname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1810 curbuf->b_sfname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1811 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL) |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1812 { |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1813 curbuf->b_ffname = fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1814 curbuf->b_sfname = sfname; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1815 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1816 } |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1817 curbuf->b_flags |= BF_NOTEDITED; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1818 if (xfname != NULL && *xfname != NUL) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1819 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1820 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0); |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1821 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0) |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1822 curwin->w_alt_fnum = buf->b_fnum; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1823 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1824 vim_free(fname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1825 vim_free(sfname); |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1826 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1827 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1828 // Change directories when the 'acd' option is set. |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
1829 DO_AUTOCHDIR; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1830 return OK; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1831 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1832 |
7 | 1833 /* |
1834 * ":file[!] [fname]". | |
1835 */ | |
1836 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1837 ex_file(exarg_T *eap) |
7 | 1838 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1839 // ":0file" removes the file name. Check for illegal uses ":3file", |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1840 // "0file name", etc. |
14 | 1841 if (eap->addr_count > 0 |
1842 && (*eap->arg != NUL | |
1843 || eap->line2 > 0 | |
1844 || eap->addr_count > 1)) | |
1845 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
1846 emsg(_(e_invalid_argument)); |
14 | 1847 return; |
1848 } | |
1849 | |
1850 if (*eap->arg != NUL || eap->addr_count == 1) | |
7 | 1851 { |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1852 if (rename_buffer(eap->arg) == FAIL) |
7 | 1853 return; |
14185
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1854 redraw_tabline = TRUE; |
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1855 } |
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1856 |
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1857 // print file name if no argument or 'F' is not in 'shortmess' |
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1858 if (*eap->arg == NUL || !shortmess(SHM_FILEINFO)) |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
1859 fileinfo(FALSE, FALSE, eap->forceit); |
7 | 1860 } |
1861 | |
1862 /* | |
1863 * ":update". | |
1864 */ | |
1865 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1866 ex_update(exarg_T *eap) |
7 | 1867 { |
1868 if (curbufIsChanged()) | |
1869 (void)do_write(eap); | |
1870 } | |
1871 | |
1872 /* | |
1873 * ":write" and ":saveas". | |
1874 */ | |
1875 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1876 ex_write(exarg_T *eap) |
7 | 1877 { |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1878 if (eap->cmdidx == CMD_saveas) |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1879 { |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1880 // :saveas does not take a range, uses all lines. |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1881 eap->line1 = 1; |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1882 eap->line2 = curbuf->b_ml.ml_line_count; |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1883 } |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1884 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1885 if (eap->usefilter) // input lines to shell command |
7 | 1886 do_bang(1, eap, FALSE, TRUE, FALSE); |
1887 else | |
1888 (void)do_write(eap); | |
1889 } | |
1890 | |
24634
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1891 #ifdef UNIX |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1892 static int |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1893 check_writable(char_u *fname) |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1894 { |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1895 if (mch_nodetype(fname) == NODE_OTHER) |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1896 { |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1897 semsg(_(e_str_is_not_file_or_writable_device), fname); |
24634
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1898 return FAIL; |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1899 } |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1900 return OK; |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1901 } |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1902 #endif |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1903 |
7 | 1904 /* |
31519
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
1905 * Write the current buffer to file "eap->arg". |
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
1906 * If "eap->append" is TRUE, append to the file. |
7 | 1907 * |
31519
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
1908 * If "*eap->arg == NUL" write to current file. |
7 | 1909 * |
31519
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
1910 * Return FAIL for failure, OK otherwise. |
7 | 1911 */ |
1912 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1913 do_write(exarg_T *eap) |
7 | 1914 { |
1915 int other; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1916 char_u *fname = NULL; // init to shut up gcc |
7 | 1917 char_u *ffname; |
1918 int retval = FAIL; | |
1919 char_u *free_fname = NULL; | |
1920 #ifdef FEAT_BROWSE | |
1921 char_u *browse_file = NULL; | |
1922 #endif | |
1923 buf_T *alt_buf = NULL; | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
1924 int name_was_missing; |
7 | 1925 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1926 if (not_writing()) // check 'write' option |
7 | 1927 return FAIL; |
1928 | |
1929 ffname = eap->arg; | |
1930 #ifdef FEAT_BROWSE | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1931 if ((cmdmod.cmod_flags & CMOD_BROWSE) && !exiting) |
7 | 1932 { |
29 | 1933 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
7 | 1934 NULL, NULL, NULL, curbuf); |
1935 if (browse_file == NULL) | |
1936 goto theend; | |
1937 ffname = browse_file; | |
1938 } | |
1939 #endif | |
1940 if (*ffname == NUL) | |
1941 { | |
1942 if (eap->cmdidx == CMD_saveas) | |
1943 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
1944 emsg(_(e_argument_required)); |
7 | 1945 goto theend; |
1946 } | |
1947 other = FALSE; | |
1948 } | |
1949 else | |
1950 { | |
1951 fname = ffname; | |
1952 free_fname = fix_fname(ffname); | |
1953 /* | |
1954 * When out-of-memory, keep unexpanded file name, because we MUST be | |
1955 * able to write the file in this situation. | |
1956 */ | |
1957 if (free_fname != NULL) | |
1958 ffname = free_fname; | |
1959 other = otherfile(ffname); | |
1960 } | |
1961 | |
1962 /* | |
1963 * If we have a new file, put its name in the list of alternate file names. | |
1964 */ | |
1965 if (other) | |
1966 { | |
1967 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL | |
1968 || eap->cmdidx == CMD_saveas) | |
1969 alt_buf = setaltfname(ffname, fname, (linenr_T)1); | |
1970 else | |
1971 alt_buf = buflist_findname(ffname); | |
1972 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) | |
1973 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1974 // Overwriting a file that is loaded in another buffer is not a |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1975 // good idea. |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
1976 emsg(_(e_file_is_loaded_in_another_buffer)); |
7 | 1977 goto theend; |
1978 } | |
1979 } | |
1980 | |
1981 /* | |
1982 * Writing to the current file is not allowed in readonly mode | |
1983 * and a file name is required. | |
1984 * "nofile" and "nowrite" buffers cannot be written implicitly either. | |
1985 */ | |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29732
diff
changeset
|
1986 if (!other && (bt_dontwrite_msg(curbuf) || check_fname() == FAIL |
24634
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1987 #ifdef UNIX |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1988 || check_writable(curbuf->b_ffname) == FAIL |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1989 #endif |
d3c4ecf67604
patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
1990 || check_readonly(&eap->forceit, curbuf))) |
7 | 1991 goto theend; |
1992 | |
1993 if (!other) | |
1994 { | |
1995 ffname = curbuf->b_ffname; | |
1996 fname = curbuf->b_fname; | |
1997 /* | |
1998 * Not writing the whole file is only allowed with '!'. | |
1999 */ | |
2000 if ( (eap->line1 != 1 | |
2001 || eap->line2 != curbuf->b_ml.ml_line_count) | |
2002 && !eap->forceit | |
2003 && !eap->append | |
2004 && !p_wa) | |
2005 { | |
2006 #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:
22588
diff
changeset
|
2007 if (p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) |
7 | 2008 { |
2009 if (vim_dialog_yesno(VIM_QUESTION, NULL, | |
2010 (char_u *)_("Write partial file?"), 2) != VIM_YES) | |
2011 goto theend; | |
2012 eap->forceit = TRUE; | |
2013 } | |
2014 else | |
2015 #endif | |
2016 { | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
2017 emsg(_(e_use_bang_to_write_partial_buffer)); |
7 | 2018 goto theend; |
2019 } | |
2020 } | |
2021 } | |
2022 | |
2023 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) | |
2024 { | |
2025 if (eap->cmdidx == CMD_saveas && alt_buf != NULL) | |
2026 { | |
2027 buf_T *was_curbuf = curbuf; | |
2028 | |
2029 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); | |
21 | 2030 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2031 #ifdef FEAT_EVAL |
7 | 2032 if (curbuf != was_curbuf || aborting()) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2033 #else |
7 | 2034 if (curbuf != was_curbuf) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2035 #endif |
7 | 2036 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2037 // buffer changed, don't change name now |
7 | 2038 retval = FAIL; |
2039 goto theend; | |
2040 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2041 // Exchange the file names for the current and the alternate |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2042 // buffer. This makes it look like we are now editing the buffer |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2043 // under the new name. Must be done before buf_write(), because |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2044 // if there is no file name and 'cpo' contains 'F', it will set |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2045 // the file name. |
7 | 2046 fname = alt_buf->b_fname; |
2047 alt_buf->b_fname = curbuf->b_fname; | |
2048 curbuf->b_fname = fname; | |
2049 fname = alt_buf->b_ffname; | |
2050 alt_buf->b_ffname = curbuf->b_ffname; | |
2051 curbuf->b_ffname = fname; | |
2052 fname = alt_buf->b_sfname; | |
2053 alt_buf->b_sfname = curbuf->b_sfname; | |
2054 curbuf->b_sfname = fname; | |
2055 buf_name_changed(curbuf); | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2056 |
7 | 2057 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
21 | 2058 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
7 | 2059 if (!alt_buf->b_p_bl) |
2060 { | |
2061 alt_buf->b_p_bl = TRUE; | |
2062 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); | |
2063 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2064 #ifdef FEAT_EVAL |
7 | 2065 if (curbuf != was_curbuf || aborting()) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2066 #else |
7 | 2067 if (curbuf != was_curbuf) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2068 #endif |
7 | 2069 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2070 // buffer changed, don't write the file |
7 | 2071 retval = FAIL; |
2072 goto theend; | |
2073 } | |
634 | 2074 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2075 // If 'filetype' was empty try detecting it now. |
634 | 2076 if (*curbuf->b_p_ft == NUL) |
2077 { | |
819 | 2078 if (au_has_group((char_u *)"filetypedetect")) |
2079 (void)do_doautocmd((char_u *)"filetypedetect BufRead", | |
9260
ac8180818504
commit https://github.com/vim/vim/commit/1610d052413e0ed664498853a47acc2d677a22d1
Christian Brabandt <cb@256bit.org>
parents:
9256
diff
changeset
|
2080 TRUE, NULL); |
717 | 2081 do_modelines(0); |
634 | 2082 } |
2648 | 2083 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2084 // Autocommands may have changed buffer names, esp. when |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2085 // 'autochdir' is set. |
2648 | 2086 fname = curbuf->b_sfname; |
7 | 2087 } |
2088 | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2089 name_was_missing = curbuf->b_ffname == NULL; |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2090 |
7 | 2091 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, |
2092 eap, eap->append, eap->forceit, TRUE, FALSE); | |
634 | 2093 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2094 // After ":saveas fname" reset 'readonly'. |
961 | 2095 if (eap->cmdidx == CMD_saveas) |
2096 { | |
2097 if (retval == OK) | |
1806 | 2098 { |
961 | 2099 curbuf->b_p_ro = FALSE; |
1806 | 2100 redraw_tabline = TRUE; |
2101 } | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2102 } |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2103 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2104 // Change directories when the 'acd' option is set and the file name |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2105 // got changed or set. |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2106 if (eap->cmdidx == CMD_saveas || name_was_missing) |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
2107 DO_AUTOCHDIR; |
7 | 2108 } |
2109 | |
2110 theend: | |
2111 #ifdef FEAT_BROWSE | |
2112 vim_free(browse_file); | |
2113 #endif | |
2114 vim_free(free_fname); | |
2115 return retval; | |
2116 } | |
2117 | |
2118 /* | |
2119 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, | |
2120 * BF_NEW or BF_READERR, check for overwriting current file. | |
2121 * May set eap->forceit if a dialog says it's OK to overwrite. | |
2122 * Return OK if it's OK, FAIL if it is not. | |
2123 */ | |
3486 | 2124 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2125 check_overwrite( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2126 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2127 buf_T *buf, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2128 char_u *fname, // file name to be used (can differ from |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2129 // buf->ffname) |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2130 char_u *ffname, // full path version of fname |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2131 int other) // writing under other name |
7 | 2132 { |
2133 /* | |
19693
9fbeb3bdf49e
patch 8.2.0403: when 'buftype' is "nofile" there is no overwrite check
Bram Moolenaar <Bram@vim.org>
parents:
19429
diff
changeset
|
2134 * Write to another file or b_flags set or not writing the whole file: |
9fbeb3bdf49e
patch 8.2.0403: when 'buftype' is "nofile" there is no overwrite check
Bram Moolenaar <Bram@vim.org>
parents:
19429
diff
changeset
|
2135 * overwriting only allowed with '!'. |
29988
b2140f61826c
patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
2136 * If "other" is FALSE and bt_nofilename(buf) is TRUE, this must be |
b2140f61826c
patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
2137 * writing an "acwrite" buffer to the same file as its b_ffname, and |
b2140f61826c
patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
2138 * buf_write() will only allow writing with BufWriteCmd autocommands, |
b2140f61826c
patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
2139 * so there is no need for an overwrite check. |
7 | 2140 */ |
2141 if ( (other | |
29988
b2140f61826c
patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
2142 || (!bt_nofilename(buf) |
b2140f61826c
patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
2143 && ((buf->b_flags & BF_NOTEDITED) |
b2140f61826c
patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
2144 || ((buf->b_flags & BF_NEW) |
b2140f61826c
patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
2145 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) |
b2140f61826c
patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
2146 || (buf->b_flags & BF_READERR)))) |
7 | 2147 && !p_wa |
2148 && vim_fexists(ffname)) | |
2149 { | |
460 | 2150 if (!eap->forceit && !eap->append) |
7 | 2151 { |
460 | 2152 #ifdef UNIX |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2153 // with UNIX it is possible to open a directory |
460 | 2154 if (mch_isdir(ffname)) |
2155 { | |
28255
48b9ffd40f38
patch 8.2.4653: "import autoload" does not check the file name
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2156 semsg(_(e_str_is_directory), ffname); |
460 | 2157 return FAIL; |
2158 } | |
7 | 2159 #endif |
2160 #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:
22588
diff
changeset
|
2161 if (p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) |
460 | 2162 { |
2770 | 2163 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2164 |
2165 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); | |
2166 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) | |
2167 return FAIL; | |
2168 eap->forceit = TRUE; | |
2169 } | |
2170 else | |
2171 #endif | |
2172 { | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24992
diff
changeset
|
2173 emsg(_(e_file_exists)); |
7 | 2174 return FAIL; |
460 | 2175 } |
7 | 2176 } |
460 | 2177 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2178 // For ":w! filename" check that no swap file exists for "filename". |
460 | 2179 if (other && !emsg_silent) |
7 | 2180 { |
2770 | 2181 char_u *dir; |
460 | 2182 char_u *p; |
2183 int r; | |
2184 char_u *swapname; | |
2185 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2186 // We only try the first entry in 'directory', without checking if |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2187 // it's writable. If the "." directory is not writable the write |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2188 // will probably fail anyway. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2189 // Use 'shortname' of the current buffer, since there is no buffer |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2190 // for the written file. |
460 | 2191 if (*p_dir == NUL) |
2770 | 2192 { |
2193 dir = alloc(5); | |
2194 if (dir == NULL) | |
2195 return FAIL; | |
460 | 2196 STRCPY(dir, "."); |
2770 | 2197 } |
460 | 2198 else |
2199 { | |
2770 | 2200 dir = alloc(MAXPATHL); |
2201 if (dir == NULL) | |
2202 return FAIL; | |
460 | 2203 p = p_dir; |
2204 copy_option_part(&p, dir, MAXPATHL, ","); | |
2205 } | |
2206 swapname = makeswapname(fname, ffname, curbuf, dir); | |
2770 | 2207 vim_free(dir); |
460 | 2208 r = vim_fexists(swapname); |
2209 if (r) | |
2210 { | |
2211 #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:
22588
diff
changeset
|
2212 if (p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) |
460 | 2213 { |
2770 | 2214 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2215 |
2216 dialog_msg(buff, | |
2217 _("Swap file \"%s\" exists, overwrite anyway?"), | |
2218 swapname); | |
2219 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) | |
2220 != VIM_YES) | |
819 | 2221 { |
2222 vim_free(swapname); | |
460 | 2223 return FAIL; |
819 | 2224 } |
460 | 2225 eap->forceit = TRUE; |
2226 } | |
2227 else | |
2228 #endif | |
2229 { | |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
2230 semsg(_(e_swap_file_exists_str_silent_overrides), swapname); |
819 | 2231 vim_free(swapname); |
460 | 2232 return FAIL; |
2233 } | |
2234 } | |
819 | 2235 vim_free(swapname); |
7 | 2236 } |
2237 } | |
2238 return OK; | |
2239 } | |
2240 | |
2241 /* | |
2242 * Handle ":wnext", ":wNext" and ":wprevious" commands. | |
2243 */ | |
2244 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2245 ex_wnext(exarg_T *eap) |
7 | 2246 { |
2247 int i; | |
2248 | |
2249 if (eap->cmd[1] == 'n') | |
2250 i = curwin->w_arg_idx + (int)eap->line2; | |
2251 else | |
2252 i = curwin->w_arg_idx - (int)eap->line2; | |
2253 eap->line1 = 1; | |
2254 eap->line2 = curbuf->b_ml.ml_line_count; | |
2255 if (do_write(eap) != FAIL) | |
2256 do_argfile(eap, i); | |
2257 } | |
2258 | |
2259 /* | |
2260 * ":wall", ":wqall" and ":xall": Write all changed files (and exit). | |
2261 */ | |
2262 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2263 do_wqall(exarg_T *eap) |
7 | 2264 { |
2265 buf_T *buf; | |
2266 int error = 0; | |
2267 int save_forceit = eap->forceit; | |
2268 | |
2269 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) | |
2270 exiting = TRUE; | |
2271 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2272 FOR_ALL_BUFFERS(buf) |
7 | 2273 { |
13302
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13276
diff
changeset
|
2274 #ifdef FEAT_TERMINAL |
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13276
diff
changeset
|
2275 if (exiting && term_job_running(buf->b_term)) |
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13276
diff
changeset
|
2276 { |
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13276
diff
changeset
|
2277 no_write_message_nobang(buf); |
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13276
diff
changeset
|
2278 ++error; |
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13276
diff
changeset
|
2279 } |
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13276
diff
changeset
|
2280 else |
b5806be0b36d
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13276
diff
changeset
|
2281 #endif |
12648
cdfd6eb8bb80
patch 8.0.1202: :wall gives an errof for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
2282 if (bufIsChanged(buf) && !bt_dontwrite(buf)) |
7 | 2283 { |
2284 /* | |
2285 * Check if there is a reason the buffer cannot be written: | |
2286 * 1. if the 'write' option is set | |
2287 * 2. if there is no file name (even after browsing) | |
2288 * 3. if the 'readonly' is set (even after a dialog) | |
2289 * 4. if overwriting is allowed (even after a dialog) | |
2290 */ | |
2291 if (not_writing()) | |
2292 { | |
2293 ++error; | |
2294 break; | |
2295 } | |
2296 #ifdef FEAT_BROWSE | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2297 // ":browse wall": ask for file name if there isn't one |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
2298 if (buf->b_ffname == NULL && (cmdmod.cmod_flags & CMOD_BROWSE)) |
7 | 2299 browse_save_fname(buf); |
2300 #endif | |
2301 if (buf->b_ffname == NULL) | |
2302 { | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
2303 semsg(_(e_no_file_name_for_buffer_nr), (long)buf->b_fnum); |
7 | 2304 ++error; |
2305 } | |
2306 else if (check_readonly(&eap->forceit, buf) | |
2307 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, | |
2308 FALSE) == FAIL) | |
2309 { | |
2310 ++error; | |
2311 } | |
2312 else | |
2313 { | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2314 bufref_T bufref; |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2315 |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2316 set_bufref(&bufref, buf); |
7 | 2317 if (buf_write_all(buf, eap->forceit) == FAIL) |
2318 ++error; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2319 // an autocommand may have deleted the buffer |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2320 if (!bufref_valid(&bufref)) |
7 | 2321 buf = firstbuf; |
2322 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2323 eap->forceit = save_forceit; // check_overwrite() may set it |
7 | 2324 } |
2325 } | |
2326 if (exiting) | |
2327 { | |
2328 if (!error) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2329 getout(0); // exit Vim |
7 | 2330 not_exiting(); |
2331 } | |
2332 } | |
2333 | |
2334 /* | |
2335 * Check the 'write' option. | |
17632
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
2336 * Return TRUE and give a message when it's not set. |
7 | 2337 */ |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
2338 static int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2339 not_writing(void) |
7 | 2340 { |
2341 if (p_write) | |
2342 return FALSE; | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
2343 emsg(_(e_file_not_written_writing_is_disabled_by_write_option)); |
7 | 2344 return TRUE; |
2345 } | |
2346 | |
2347 /* | |
1303 | 2348 * Check if a buffer is read-only (either 'readonly' option is set or file is |
2349 * read-only). Ask for overruling in a dialog. Return TRUE and give an error | |
2350 * message when the buffer is readonly. | |
7 | 2351 */ |
2352 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2353 check_readonly(int *forceit, buf_T *buf) |
7 | 2354 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9377
diff
changeset
|
2355 stat_T st; |
1303 | 2356 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2357 // Handle a file being readonly when the 'readonly' option is set or when |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2358 // the file exists and permissions are read-only. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2359 // We will send 0777 to check_file_readonly(), as the "perm" variable is |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2360 // important for device checks but not here. |
1303 | 2361 if (!*forceit && (buf->b_p_ro |
2362 || (mch_stat((char *)buf->b_ffname, &st) >= 0 | |
2363 && check_file_readonly(buf->b_ffname, 0777)))) | |
7 | 2364 { |
2365 #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:
22588
diff
changeset
|
2366 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) |
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
2367 && buf->b_fname != NULL) |
7 | 2368 { |
2770 | 2369 char_u buff[DIALOG_MSG_SIZE]; |
7 | 2370 |
1303 | 2371 if (buf->b_p_ro) |
2372 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), | |
2373 buf->b_fname); | |
2374 else | |
2375 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"), | |
7 | 2376 buf->b_fname); |
2377 | |
2378 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) | |
2379 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2380 // Set forceit, to force the writing of a readonly file |
7 | 2381 *forceit = TRUE; |
2382 return FALSE; | |
2383 } | |
2384 else | |
2385 return TRUE; | |
2386 } | |
2387 else | |
2388 #endif | |
1303 | 2389 if (buf->b_p_ro) |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
2390 emsg(_(e_readonly_option_is_set_add_bang_to_override)); |
1303 | 2391 else |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
2392 semsg(_(e_str_is_read_only_add_bang_to_override), buf->b_fname); |
7 | 2393 return TRUE; |
2394 } | |
1303 | 2395 |
7 | 2396 return FALSE; |
2397 } | |
2398 | |
2399 /* | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2400 * Try to abandon the current file and edit a new or existing file. |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2401 * "fnum" is the number of the file, if zero use "ffname_arg"/"sfname_arg". |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2402 * "lnum" is the line number for the cursor in the new file (if non-zero). |
7 | 2403 * |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2404 * Return: |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2405 * GETFILE_ERROR for "normal" error, |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2406 * GETFILE_NOT_WRITTEN for "not written" error, |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2407 * GETFILE_SAME_FILE for success |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2408 * GETFILE_OPEN_OTHER for successfully opening another file. |
7 | 2409 */ |
2410 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2411 getfile( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2412 int fnum, |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2413 char_u *ffname_arg, |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2414 char_u *sfname_arg, |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2415 int setpm, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2416 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2417 int forceit) |
7 | 2418 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2419 char_u *ffname = ffname_arg; |
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2420 char_u *sfname = sfname_arg; |
7 | 2421 int other; |
2422 int retval; | |
2423 char_u *free_me = NULL; | |
2424 | |
634 | 2425 if (text_locked()) |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2426 return GETFILE_ERROR; |
819 | 2427 if (curbuf_locked()) |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2428 return GETFILE_ERROR; |
7 | 2429 |
2430 if (fnum == 0) | |
2431 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2432 // make ffname full path, set sfname |
7 | 2433 fname_expand(curbuf, &ffname, &sfname); |
2434 other = otherfile(ffname); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2435 free_me = ffname; // has been allocated, free() later |
7 | 2436 } |
2437 else | |
2438 other = (fnum != curbuf->b_fnum); | |
2439 | |
2440 if (other) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2441 ++no_wait_return; // don't wait for autowrite message |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
2442 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf) |
7 | 2443 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) |
2444 { | |
2445 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2446 if (p_confirm && p_write) | |
2447 dialog_changed(curbuf, FALSE); | |
2448 if (curbufIsChanged()) | |
2449 #endif | |
2450 { | |
28169
bef82285dda0
patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
27980
diff
changeset
|
2451 --no_wait_return; |
12146
59c1e09cf1a9
patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
2452 no_write_message(); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2453 retval = GETFILE_NOT_WRITTEN; // file has been changed |
7 | 2454 goto theend; |
2455 } | |
2456 } | |
2457 if (other) | |
2458 --no_wait_return; | |
2459 if (setpm) | |
2460 setpcmark(); | |
2461 if (!other) | |
2462 { | |
2463 if (lnum != 0) | |
2464 curwin->w_cursor.lnum = lnum; | |
2465 check_cursor_lnum(); | |
2466 beginline(BL_SOL | BL_FIX); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2467 retval = GETFILE_SAME_FILE; // it's in the same file |
7 | 2468 } |
2469 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum, | |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
2470 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0), |
1743 | 2471 curwin) == OK) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2472 retval = GETFILE_OPEN_OTHER; // opened another file |
7 | 2473 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2474 retval = GETFILE_ERROR; // error encountered |
7 | 2475 |
2476 theend: | |
2477 vim_free(free_me); | |
2478 return retval; | |
2479 } | |
2480 | |
2481 /* | |
2482 * start editing a new file | |
2483 * | |
2484 * fnum: file number; if zero use ffname/sfname | |
2485 * ffname: the file name | |
2486 * - full path if sfname used, | |
2487 * - any file name if sfname is NULL | |
2488 * - empty string to re-edit with the same file name (but may be | |
2489 * in a different directory) | |
2490 * - NULL to start an empty buffer | |
2491 * sfname: the short file name (or NULL) | |
2492 * eap: contains the command to be executed after loading the file and | |
2493 * forced 'ff' and 'fenc' | |
2494 * newlnum: if > 0: put cursor on this line number (if possible) | |
2495 * if ECMD_LASTL: use last position in loaded file | |
2496 * if ECMD_LAST: use last position in all files | |
2497 * if ECMD_ONE: use first line | |
2498 * flags: | |
2499 * ECMD_HIDE: if TRUE don't free the current buffer | |
2500 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file | |
2501 * ECMD_OLDBUF: use existing buffer if it exists | |
2502 * ECMD_FORCEIT: ! used for Ex command | |
2503 * ECMD_ADDBUF: don't edit, just add to buffer list | |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2504 * ECMD_ALTBUF: like ECMD_ADDBUF and also set the alternate file |
26026
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
2505 * ECMD_NOWINENTER: Do not trigger BufWinEnter |
1743 | 2506 * oldwin: Should be "curwin" when editing a new buffer in the current |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
2507 * window, NULL when splitting the window first. When not NULL info |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
2508 * of the previous buffer for "oldwin" is stored. |
7 | 2509 * |
2510 * return FAIL for failure, OK otherwise | |
2511 */ | |
2512 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2513 do_ecmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2514 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2515 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2516 char_u *sfname, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2517 exarg_T *eap, // can be NULL! |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2518 linenr_T newlnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2519 int flags, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2520 win_T *oldwin) |
7 | 2521 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2522 int other_file; // TRUE if editing another file |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2523 int oldbuf; // TRUE if using existing buffer |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2524 int auto_buf = FALSE; // TRUE if autocommands brought us |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2525 // into the buffer unexpectedly |
7 | 2526 char_u *new_name = NULL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2527 #if defined(FEAT_EVAL) |
716 | 2528 int did_set_swapcommand = FALSE; |
7 | 2529 #endif |
2530 buf_T *buf; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2531 bufref_T bufref; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2532 bufref_T old_curbuf; |
7 | 2533 char_u *free_fname = NULL; |
2534 #ifdef FEAT_BROWSE | |
22588
050cff1294ab
patch 8.2.1842: crash when USE_FNAME_CASE is defined and using :browse
Bram Moolenaar <Bram@vim.org>
parents:
22506
diff
changeset
|
2535 char_u dot_path[] = "."; |
7 | 2536 char_u *browse_file = NULL; |
2537 #endif | |
2538 int retval = FAIL; | |
2539 long n; | |
6702 | 2540 pos_T orig_pos; |
7 | 2541 linenr_T topline = 0; |
2542 int newcol = -1; | |
2543 int solcol = -1; | |
2544 pos_T *pos; | |
2545 char_u *command = NULL; | |
1185 | 2546 #ifdef FEAT_SPELL |
2547 int did_get_winopts = FALSE; | |
2548 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2549 int readfile_flags = 0; |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2550 int did_inc_redrawing_disabled = FALSE; |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
2551 long *so_ptr = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so; |
7 | 2552 |
20384
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2553 #ifdef FEAT_PROP_POPUP |
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2554 if (ERROR_IF_TERM_POPUP_WINDOW) |
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2555 return FAIL; |
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2556 #endif |
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2557 |
7 | 2558 if (eap != NULL) |
2559 command = eap->do_ecmd_cmd; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2560 set_bufref(&old_curbuf, curbuf); |
7 | 2561 |
2562 if (fnum != 0) | |
2563 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2564 if (fnum == curbuf->b_fnum) // file is already being edited |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2565 return OK; // nothing to do |
7 | 2566 other_file = TRUE; |
2567 } | |
2568 else | |
2569 { | |
2570 #ifdef FEAT_BROWSE | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
2571 if ((cmdmod.cmod_flags & CMOD_BROWSE) && !exiting) |
7 | 2572 { |
462 | 2573 if ( |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2574 # ifdef FEAT_GUI |
462 | 2575 !gui.in_use && |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2576 # endif |
462 | 2577 au_has_group((char_u *)"FileExplorer")) |
2578 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2579 // No browsing supported but we do have the file explorer: |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2580 // Edit the directory. |
462 | 2581 if (ffname == NULL || !mch_isdir(ffname)) |
22588
050cff1294ab
patch 8.2.1842: crash when USE_FNAME_CASE is defined and using :browse
Bram Moolenaar <Bram@vim.org>
parents:
22506
diff
changeset
|
2582 ffname = dot_path; |
462 | 2583 } |
2584 else | |
2585 { | |
2586 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, | |
7 | 2587 NULL, NULL, NULL, curbuf); |
462 | 2588 if (browse_file == NULL) |
2589 goto theend; | |
2590 ffname = browse_file; | |
2591 } | |
7 | 2592 } |
2593 #endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2594 // if no short name given, use ffname for short name |
7 | 2595 if (sfname == NULL) |
2596 sfname = ffname; | |
2597 #ifdef USE_FNAME_CASE | |
15794
0d8291665b59
patch 8.1.0904: USE_LONG_FNAME never defined
Bram Moolenaar <Bram@vim.org>
parents:
15760
diff
changeset
|
2598 if (sfname != NULL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2599 fname_case(sfname, 0); // set correct case for sfname |
7 | 2600 #endif |
2601 | |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2602 if ((flags & (ECMD_ADDBUF | ECMD_ALTBUF)) |
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2603 && (ffname == NULL || *ffname == NUL)) |
7 | 2604 goto theend; |
2605 | |
2606 if (ffname == NULL) | |
2607 other_file = TRUE; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2608 // there is no file name |
7 | 2609 else if (*ffname == NUL && curbuf->b_ffname == NULL) |
2610 other_file = FALSE; | |
2611 else | |
2612 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2613 if (*ffname == NUL) // re-edit with same file name |
7 | 2614 { |
2615 ffname = curbuf->b_ffname; | |
2616 sfname = curbuf->b_fname; | |
2617 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2618 free_fname = fix_fname(ffname); // may expand to full path name |
7 | 2619 if (free_fname != NULL) |
2620 ffname = free_fname; | |
2621 other_file = otherfile(ffname); | |
2622 } | |
2623 } | |
2624 | |
2625 /* | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20599
diff
changeset
|
2626 * If the file was changed we may not be allowed to abandon it: |
7 | 2627 * - if we are going to re-edit the same file |
2628 * - or if we are the only window on this file and if ECMD_HIDE is FALSE | |
2629 */ | |
2630 if ( ((!other_file && !(flags & ECMD_OLDBUF)) | |
2631 || (curbuf->b_nwindows == 1 | |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2632 && !(flags & (ECMD_HIDE | ECMD_ADDBUF | ECMD_ALTBUF)))) |
5464 | 2633 && check_changed(curbuf, (p_awa ? CCGD_AW : 0) |
2634 | (other_file ? 0 : CCGD_MULTWIN) | |
2635 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0) | |
2636 | (eap == NULL ? 0 : CCGD_EXCMD))) | |
7 | 2637 { |
2638 if (fnum == 0 && other_file && ffname != NULL) | |
2639 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); | |
2640 goto theend; | |
2641 } | |
2642 | |
2643 /* | |
2644 * End Visual mode before switching to another buffer, so the text can be | |
2645 * copied into the GUI selection buffer. | |
2646 */ | |
2647 reset_VIsual(); | |
2648 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2649 #if defined(FEAT_EVAL) |
716 | 2650 if ((command != NULL || newlnum > (linenr_T)0) |
2651 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) | |
2652 { | |
2653 int len; | |
2654 char_u *p; | |
2655 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2656 // Set v:swapcommand for the SwapExists autocommands. |
716 | 2657 if (command != NULL) |
835 | 2658 len = (int)STRLEN(command) + 3; |
716 | 2659 else |
2660 len = 30; | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
2661 p = alloc(len); |
716 | 2662 if (p != NULL) |
2663 { | |
2664 if (command != NULL) | |
2665 vim_snprintf((char *)p, len, ":%s\r", command); | |
2666 else | |
2667 vim_snprintf((char *)p, len, "%ldG", (long)newlnum); | |
2668 set_vim_var_string(VV_SWAPCOMMAND, p, -1); | |
2669 did_set_swapcommand = TRUE; | |
2670 vim_free(p); | |
2671 } | |
2672 } | |
2673 #endif | |
2674 | |
7 | 2675 /* |
2676 * If we are starting to edit another file, open a (new) buffer. | |
2677 * Otherwise we re-use the current buffer. | |
2678 */ | |
2679 if (other_file) | |
2680 { | |
25654
ef38fc02faaa
patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents:
25521
diff
changeset
|
2681 int prev_alt_fnum = curwin->w_alt_fnum; |
ef38fc02faaa
patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents:
25521
diff
changeset
|
2682 |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2683 if (!(flags & (ECMD_ADDBUF | ECMD_ALTBUF))) |
7 | 2684 { |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
2685 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0) |
22 | 2686 curwin->w_alt_fnum = curbuf->b_fnum; |
1743 | 2687 if (oldwin != NULL) |
2688 buflist_altfpos(oldwin); | |
7 | 2689 } |
2690 | |
2691 if (fnum) | |
2692 buf = buflist_findnr(fnum); | |
2693 else | |
2694 { | |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2695 if (flags & (ECMD_ADDBUF | ECMD_ALTBUF)) |
7 | 2696 { |
22707
9ff187b1652e
patch 8.2.1902: default option values changed with :badd for existing buffer
Bram Moolenaar <Bram@vim.org>
parents:
22701
diff
changeset
|
2697 // Default the line number to zero to avoid that a wininfo item |
9ff187b1652e
patch 8.2.1902: default option values changed with :badd for existing buffer
Bram Moolenaar <Bram@vim.org>
parents:
22701
diff
changeset
|
2698 // is added for the current window. |
9ff187b1652e
patch 8.2.1902: default option values changed with :badd for existing buffer
Bram Moolenaar <Bram@vim.org>
parents:
22701
diff
changeset
|
2699 linenr_T tlnum = 0; |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2700 buf_T *newbuf; |
7 | 2701 |
2702 if (command != NULL) | |
2703 { | |
2704 tlnum = atol((char *)command); | |
2705 if (tlnum <= 0) | |
2706 tlnum = 1L; | |
2707 } | |
23229
b545334ae654
patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents:
23011
diff
changeset
|
2708 // Add BLN_NOCURWIN to avoid a new wininfo items are associated |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22707
diff
changeset
|
2709 // with the current window. |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2710 newbuf = buflist_new(ffname, sfname, tlnum, |
22711
92f221ad267c
patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents:
22707
diff
changeset
|
2711 BLN_LISTED | BLN_NOCURWIN); |
30341
65c69861bad0
patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents:
30310
diff
changeset
|
2712 if (newbuf != NULL) |
65c69861bad0
patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents:
30310
diff
changeset
|
2713 { |
65c69861bad0
patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents:
30310
diff
changeset
|
2714 if (flags & ECMD_ALTBUF) |
65c69861bad0
patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents:
30310
diff
changeset
|
2715 curwin->w_alt_fnum = newbuf->b_fnum; |
65c69861bad0
patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents:
30310
diff
changeset
|
2716 if (tlnum > 0) |
65c69861bad0
patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents:
30310
diff
changeset
|
2717 newbuf->b_last_cursor.lnum = tlnum; |
65c69861bad0
patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents:
30310
diff
changeset
|
2718 } |
7 | 2719 goto theend; |
2720 } | |
2721 buf = buflist_new(ffname, sfname, 0L, | |
2722 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED)); | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2723 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2724 // autocommands may change curwin and curbuf |
5816 | 2725 if (oldwin != NULL) |
2726 oldwin = curwin; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2727 set_bufref(&old_curbuf, curbuf); |
7 | 2728 } |
2729 if (buf == NULL) | |
2730 goto theend; | |
25654
ef38fc02faaa
patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents:
25521
diff
changeset
|
2731 if (curwin->w_alt_fnum == buf->b_fnum && prev_alt_fnum != 0) |
ef38fc02faaa
patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents:
25521
diff
changeset
|
2732 // reusing the buffer, keep the old alternate file |
ef38fc02faaa
patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents:
25521
diff
changeset
|
2733 curwin->w_alt_fnum = prev_alt_fnum; |
ef38fc02faaa
patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents:
25521
diff
changeset
|
2734 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2735 if (buf->b_ml.ml_mfp == NULL) // no memfile yet |
7 | 2736 { |
2737 oldbuf = FALSE; | |
2738 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2739 else // existing memfile |
7 | 2740 { |
2741 oldbuf = TRUE; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2742 set_bufref(&bufref, buf); |
7 | 2743 (void)buf_check_timestamp(buf, FALSE); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2744 // Check if autocommands made the buffer invalid or changed the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2745 // current buffer. |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2746 if (!bufref_valid(&bufref) || curbuf != old_curbuf.br_buf) |
7 | 2747 goto theend; |
2748 #ifdef FEAT_EVAL | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2749 if (aborting()) // autocmds may abort script processing |
7 | 2750 goto theend; |
2751 #endif | |
2752 } | |
2753 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2754 // May jump to last used line number for a loaded buffer or when asked |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2755 // for explicitly |
7 | 2756 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) |
2757 { | |
2758 pos = buflist_findfpos(buf); | |
2759 newlnum = pos->lnum; | |
2760 solcol = pos->col; | |
2761 } | |
2762 | |
2763 /* | |
2764 * Make the (new) buffer the one used by the current window. | |
2765 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. | |
2766 * If the current buffer was empty and has no file name, curbuf | |
6639 | 2767 * is returned by buflist_new(), nothing to do here. |
7 | 2768 */ |
2769 if (buf != curbuf) | |
2770 { | |
23861
5d11a15dbaa9
patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23845
diff
changeset
|
2771 bufref_T save_au_new_curbuf; |
5d11a15dbaa9
patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23845
diff
changeset
|
2772 int save_cmdwin_type = cmdwin_type; |
23784
34a95c4bd647
patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23768
diff
changeset
|
2773 |
34a95c4bd647
patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23768
diff
changeset
|
2774 // BufLeave applies to the old buffer. |
34a95c4bd647
patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23768
diff
changeset
|
2775 cmdwin_type = 0; |
30645
101f08b49ed3
patch 9.0.0657: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
30626
diff
changeset
|
2776 |
7 | 2777 /* |
2778 * Be careful: The autocommands may delete any buffer and change | |
2779 * the current buffer. | |
2780 * - If the buffer we are going to edit is deleted, give up. | |
2781 * - If the current buffer is deleted, prefer to load the new | |
2782 * buffer when loading a buffer is required. This avoids | |
2783 * loading another buffer which then must be closed again. | |
2784 * - If we ended up in the new buffer already, need to skip a few | |
2785 * things, set auto_buf. | |
2786 */ | |
2787 if (buf->b_fname != NULL) | |
2788 new_name = vim_strsave(buf->b_fname); | |
23861
5d11a15dbaa9
patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23845
diff
changeset
|
2789 save_au_new_curbuf = au_new_curbuf; |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2790 set_bufref(&au_new_curbuf, buf); |
7 | 2791 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); |
23784
34a95c4bd647
patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23768
diff
changeset
|
2792 cmdwin_type = save_cmdwin_type; |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2793 if (!bufref_valid(&au_new_curbuf)) |
7 | 2794 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2795 // new buffer has been deleted |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2796 delbuf_msg(new_name); // frees new_name |
23861
5d11a15dbaa9
patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23845
diff
changeset
|
2797 au_new_curbuf = save_au_new_curbuf; |
7 | 2798 goto theend; |
2799 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2800 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2801 if (aborting()) // autocmds may abort script processing |
7 | 2802 { |
2803 vim_free(new_name); | |
23861
5d11a15dbaa9
patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23845
diff
changeset
|
2804 au_new_curbuf = save_au_new_curbuf; |
7 | 2805 goto theend; |
2806 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2807 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2808 if (buf == curbuf) // already in new buffer |
7 | 2809 auto_buf = TRUE; |
2810 else | |
2811 { | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2812 win_T *the_curwin = curwin; |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2813 int did_decrement; |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2814 buf_T *was_curbuf = curbuf; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2815 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2816 // Set the w_closing flag to avoid that autocommands close the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2817 // window. And set b_locked for the same reason. |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2818 the_curwin->w_closing = TRUE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2819 ++buf->b_locked; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2820 |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2821 if (curbuf == old_curbuf.br_buf) |
7 | 2822 buf_copy_options(buf, BCO_ENTER); |
2823 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2824 // Close the link to the current buffer. This will set |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2825 // oldwin->w_buffer to NULL. |
825 | 2826 u_sync(FALSE); |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2827 did_decrement = close_buffer(oldwin, curbuf, |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18779
diff
changeset
|
2828 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE, FALSE); |
7 | 2829 |
23845
7517eb94239b
patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23784
diff
changeset
|
2830 // Autocommands may have closed the window. |
7517eb94239b
patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23784
diff
changeset
|
2831 if (win_valid(the_curwin)) |
7517eb94239b
patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23784
diff
changeset
|
2832 the_curwin->w_closing = FALSE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2833 --buf->b_locked; |
3242 | 2834 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2835 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2836 // autocmds may abort script processing |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2837 if (aborting() && curwin->w_buffer != NULL) |
7 | 2838 { |
2839 vim_free(new_name); | |
23861
5d11a15dbaa9
patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23845
diff
changeset
|
2840 au_new_curbuf = save_au_new_curbuf; |
7 | 2841 goto theend; |
2842 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2843 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2844 // Be careful again, like above. |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2845 if (!bufref_valid(&au_new_curbuf)) |
7 | 2846 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2847 // new buffer has been deleted |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2848 delbuf_msg(new_name); // frees new_name |
23861
5d11a15dbaa9
patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23845
diff
changeset
|
2849 au_new_curbuf = save_au_new_curbuf; |
7 | 2850 goto theend; |
2851 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2852 if (buf == curbuf) // already in new buffer |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2853 { |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2854 // close_buffer() has decremented the window count, |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2855 // increment it again here and restore w_buffer. |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2856 if (did_decrement && buf_valid(was_curbuf)) |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2857 ++was_curbuf->b_nwindows; |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2858 if (win_valid_any_tab(oldwin) && oldwin->w_buffer == NULL) |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2859 oldwin->w_buffer = was_curbuf; |
7 | 2860 auto_buf = TRUE; |
23624
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2861 } |
7 | 2862 else |
2863 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2864 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2865 /* |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2866 * <VN> We could instead free the synblock |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2867 * and re-attach to buffer, perhaps. |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2868 */ |
11649
0f7888a5ba68
patch 8.0.0707: freeing wrong memory with certain autocommands
Christian Brabandt <cb@256bit.org>
parents:
11589
diff
changeset
|
2869 if (curwin->w_buffer == NULL |
0f7888a5ba68
patch 8.0.0707: freeing wrong memory with certain autocommands
Christian Brabandt <cb@256bit.org>
parents:
11589
diff
changeset
|
2870 || curwin->w_s == &(curwin->w_buffer->b_s)) |
3480 | 2871 curwin->w_s = &(buf->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2872 #endif |
7 | 2873 curwin->w_buffer = buf; |
2874 curbuf = buf; | |
2875 ++curbuf->b_nwindows; | |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2876 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2877 // Set 'fileformat', 'binary' and 'fenc' when forced. |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2878 if (!oldbuf && eap != NULL) |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2879 { |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2880 set_file_options(TRUE, eap); |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2881 set_forced_fenc(eap); |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2882 } |
7 | 2883 } |
2884 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2885 // May get the window options from the last time this buffer |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2886 // was in this window (or another window). If not used |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2887 // before, reset the local window options to the global |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2888 // values. Also restores old folding stuff. |
1289 | 2889 get_winopts(curbuf); |
1185 | 2890 #ifdef FEAT_SPELL |
2891 did_get_winopts = TRUE; | |
2892 #endif | |
7 | 2893 } |
2894 vim_free(new_name); | |
23861
5d11a15dbaa9
patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23845
diff
changeset
|
2895 au_new_curbuf = save_au_new_curbuf; |
7 | 2896 } |
2897 | |
2898 curwin->w_pcmark.lnum = 1; | |
2899 curwin->w_pcmark.col = 0; | |
2900 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2901 else // !other_file |
7 | 2902 { |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2903 if ((flags & (ECMD_ADDBUF | ECMD_ALTBUF)) || check_fname() == FAIL) |
7 | 2904 goto theend; |
6531 | 2905 |
7 | 2906 oldbuf = (flags & ECMD_OLDBUF); |
2907 } | |
2908 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2909 // Don't redraw until the cursor is in the right line, otherwise |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2910 // autocommands may cause ml_get errors. |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2911 ++RedrawingDisabled; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2912 did_inc_redrawing_disabled = TRUE; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2913 |
6365 | 2914 buf = curbuf; |
7 | 2915 if ((flags & ECMD_SET_HELP) || keep_help_flag) |
2916 { | |
6365 | 2917 prepare_help_buffer(); |
7 | 2918 } |
2919 else | |
2920 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2921 // Don't make a buffer listed if it's a help buffer. Useful when |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2922 // using CTRL-O to go back to a help file. |
7 | 2923 if (!curbuf->b_help) |
2924 set_buflisted(TRUE); | |
2925 } | |
2926 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2927 // If autocommands change buffers under our fingers, forget about |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2928 // editing the file. |
7 | 2929 if (buf != curbuf) |
2930 goto theend; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2931 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2932 if (aborting()) // autocmds may abort script processing |
7 | 2933 goto theend; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2934 #endif |
7 | 2935 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2936 // Since we are starting to edit a file, consider the filetype to be |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2937 // unset. Helps for when an autocommand changes files and expects syntax |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2938 // highlighting to work in the other file. |
7 | 2939 did_filetype = FALSE; |
2940 | |
2941 /* | |
2942 * other_file oldbuf | |
2943 * FALSE FALSE re-edit same file, buffer is re-used | |
2944 * FALSE TRUE re-edit same file, nothing changes | |
2945 * TRUE FALSE start editing new file, new buffer | |
2946 * TRUE TRUE start editing in existing buffer (nothing to do) | |
2947 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2948 if (!other_file && !oldbuf) // re-use the buffer |
7 | 2949 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2950 set_last_cursor(curwin); // may set b_last_cursor |
7 | 2951 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) |
2952 { | |
2953 newlnum = curwin->w_cursor.lnum; | |
2954 solcol = curwin->w_cursor.col; | |
2955 } | |
2956 buf = curbuf; | |
2957 if (buf->b_fname != NULL) | |
2958 new_name = vim_strsave(buf->b_fname); | |
2959 else | |
2960 new_name = NULL; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2961 set_bufref(&bufref, buf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2962 |
22506
a6fe2e1ad5b0
patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents:
21821
diff
changeset
|
2963 // If the buffer was used before, store the current contents so that |
a6fe2e1ad5b0
patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents:
21821
diff
changeset
|
2964 // the reload can be undone. Do not do this if the (empty) buffer is |
a6fe2e1ad5b0
patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents:
21821
diff
changeset
|
2965 // being re-used for another file. |
a6fe2e1ad5b0
patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents:
21821
diff
changeset
|
2966 if (!(curbuf->b_flags & BF_NEVERLOADED) |
a6fe2e1ad5b0
patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents:
21821
diff
changeset
|
2967 && (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)) |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2968 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2969 // Sync first so that this is a separate undo-able action. |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2970 u_sync(FALSE); |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2971 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE) |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2972 == FAIL) |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
2973 { |
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
2974 vim_free(new_name); |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2975 goto theend; |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
2976 } |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2977 u_unchanged(curbuf); |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2978 buf_freeall(curbuf, BFA_KEEP_UNDO); |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2979 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2980 // tell readfile() not to clear or reload undo info |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2981 readfile_flags = READ_KEEP_UNDO; |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2982 } |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2983 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2984 buf_freeall(curbuf, 0); // free all things for buffer |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2985 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2986 // If autocommands deleted the buffer we were going to re-edit, give |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2987 // up and jump to the end. |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2988 if (!bufref_valid(&bufref)) |
7 | 2989 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2990 delbuf_msg(new_name); // frees new_name |
7 | 2991 goto theend; |
2992 } | |
2993 vim_free(new_name); | |
2994 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2995 // If autocommands change buffers under our fingers, forget about |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2996 // re-editing the file. Should do the buf_clear_file(), but perhaps |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2997 // the autocommands changed the buffer... |
7 | 2998 if (buf != curbuf) |
2999 goto theend; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3000 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3001 if (aborting()) // autocmds may abort script processing |
7 | 3002 goto theend; |
3003 #endif | |
3004 buf_clear_file(curbuf); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3005 curbuf->b_op_start.lnum = 0; // clear '[ and '] marks |
7 | 3006 curbuf->b_op_end.lnum = 0; |
3007 } | |
3008 | |
3009 /* | |
3010 * If we get here we are sure to start editing | |
3011 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3012 // Assume success now |
7 | 3013 retval = OK; |
3014 | |
29487
4f52a21f41f3
patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents:
29410
diff
changeset
|
3015 // If the file name was changed, reset the not-edit flag so that ":write" |
4f52a21f41f3
patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents:
29410
diff
changeset
|
3016 // works. |
4f52a21f41f3
patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents:
29410
diff
changeset
|
3017 if (!other_file) |
4f52a21f41f3
patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents:
29410
diff
changeset
|
3018 curbuf->b_flags &= ~BF_NOTEDITED; |
4f52a21f41f3
patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents:
29410
diff
changeset
|
3019 |
7 | 3020 /* |
3021 * Check if we are editing the w_arg_idx file in the argument list. | |
3022 */ | |
3023 check_arg_idx(curwin); | |
3024 | |
3025 if (!auto_buf) | |
3026 { | |
3027 /* | |
3028 * Set cursor and init window before reading the file and executing | |
3029 * autocommands. This allows for the autocommands to position the | |
3030 * cursor. | |
3031 */ | |
677 | 3032 curwin_init(); |
7 | 3033 |
3034 #ifdef FEAT_FOLDING | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3035 // It's possible that all lines in the buffer changed. Need to update |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3036 // automatic folding for all windows where it's used. |
1370 | 3037 { |
3038 win_T *win; | |
3039 tabpage_T *tp; | |
3040 | |
3041 FOR_ALL_TAB_WINDOWS(tp, win) | |
3042 if (win->w_buffer == curbuf) | |
3043 foldUpdateAll(win); | |
3044 } | |
7 | 3045 #endif |
3046 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3047 // Change directories when the 'acd' option is set. |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3048 DO_AUTOCHDIR; |
961 | 3049 |
7 | 3050 /* |
3051 * Careful: open_buffer() and apply_autocmds() may change the current | |
3052 * buffer and window. | |
3053 */ | |
6702 | 3054 orig_pos = curwin->w_cursor; |
7 | 3055 topline = curwin->w_topline; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3056 if (!oldbuf) // need to read the file |
7 | 3057 { |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
3058 #ifdef FEAT_PROP_POPUP |
17632
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
3059 // Don't use the swap-exists dialog for a popup window, can't edit |
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
3060 // the buffer. |
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
3061 if (WIN_IS_POPUP(curwin)) |
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
3062 curbuf->b_flags |= BF_NO_SEA; |
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
3063 #endif |
7 | 3064 swap_exists_action = SEA_DIALOG; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3065 curbuf->b_flags |= BF_CHECK_RO; // set/reset 'ro' flag |
7 | 3066 |
3067 /* | |
3068 * Open the buffer and read the file. | |
3069 */ | |
26026
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
3070 if (flags & ECMD_NOWINENTER) |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
3071 readfile_flags |= READ_NOWINENTER; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3072 #if defined(FEAT_EVAL) |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3073 if (should_abort(open_buffer(FALSE, eap, readfile_flags))) |
7 | 3074 retval = FAIL; |
3075 #else | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3076 (void)open_buffer(FALSE, eap, readfile_flags); |
7 | 3077 #endif |
3078 | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
3079 #ifdef FEAT_PROP_POPUP |
17632
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
3080 curbuf->b_flags &= ~BF_NO_SEA; |
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
3081 #endif |
7 | 3082 if (swap_exists_action == SEA_QUIT) |
3083 retval = FAIL; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3084 handle_swap_exists(&old_curbuf); |
7 | 3085 } |
3086 else | |
3087 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3088 // Read the modelines, but only to set window-local options. Any |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3089 // buffer-local options have already been set and may have been |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3090 // changed by the user. |
717 | 3091 do_modelines(OPT_WINONLY); |
23 | 3092 |
26026
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
3093 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
3094 curbuf, &retval); |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
3095 if ((flags & ECMD_NOWINENTER) == 0) |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
3096 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
3097 curbuf, &retval); |
7 | 3098 } |
3099 check_arg_idx(curwin); | |
3100 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3101 // If autocommands change the cursor position or topline, we should |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3102 // keep it. Also when it moves within a line. But not when it moves |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3103 // to the first non-blank. |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10970
diff
changeset
|
3104 if (!EQUAL_POS(curwin->w_cursor, orig_pos)) |
7 | 3105 { |
14033
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3106 char_u *text = ml_get_curline(); |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3107 |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3108 if (curwin->w_cursor.lnum != orig_pos.lnum |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3109 || curwin->w_cursor.col != (int)(skipwhite(text) - text)) |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3110 { |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3111 newlnum = curwin->w_cursor.lnum; |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3112 newcol = curwin->w_cursor.col; |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3113 } |
7 | 3114 } |
3115 if (curwin->w_topline == topline) | |
3116 topline = 0; | |
3117 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3118 // Even when cursor didn't move we need to recompute topline. |
7 | 3119 changed_line_abv_curs(); |
3120 | |
3121 maketitle(); | |
18767
068337e86133
patch 8.1.2373: cannot build with +popupwin but without +quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3122 #if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX) |
17632
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
3123 if (WIN_IS_POPUP(curwin) && curwin->w_p_pvw && retval != FAIL) |
17584
65a8099fc0e8
patch 8.1.1789: cannot see file name of preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17551
diff
changeset
|
3124 popup_set_title(curwin); |
65a8099fc0e8
patch 8.1.1789: cannot see file name of preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17551
diff
changeset
|
3125 #endif |
7 | 3126 } |
3127 | |
3128 #ifdef FEAT_DIFF | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3129 // Tell the diff stuff that this buffer is new and/or needs updating. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3130 // Also needed when re-editing the same buffer, because unloading will |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3131 // have removed it as a diff buffer. |
673 | 3132 if (curwin->w_p_diff) |
3133 { | |
3134 diff_buf_add(curbuf); | |
3135 diff_invalidate(curbuf); | |
3136 } | |
7 | 3137 #endif |
3138 | |
1185 | 3139 #ifdef FEAT_SPELL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3140 // If the window options were changed may need to set the spell language. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3141 // Can only do this after the buffer has been properly setup. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3142 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3143 (void)did_set_spelllang(curwin); |
1185 | 3144 #endif |
3145 | |
7 | 3146 if (command == NULL) |
3147 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3148 if (newcol >= 0) // position set by autocommands |
7 | 3149 { |
3150 curwin->w_cursor.lnum = newlnum; | |
3151 curwin->w_cursor.col = newcol; | |
3152 check_cursor(); | |
3153 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3154 else if (newlnum > 0) // line number from caller or old position |
7 | 3155 { |
3156 curwin->w_cursor.lnum = newlnum; | |
3157 check_cursor_lnum(); | |
3158 if (solcol >= 0 && !p_sol) | |
3159 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3160 // 'sol' is off: Use last known column. |
7 | 3161 curwin->w_cursor.col = solcol; |
3162 check_cursor_col(); | |
3163 curwin->w_cursor.coladd = 0; | |
3164 curwin->w_set_curswant = TRUE; | |
3165 } | |
3166 else | |
3167 beginline(BL_SOL | BL_FIX); | |
3168 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3169 else // no line number, go to last line in Ex mode |
7 | 3170 { |
3171 if (exmode_active) | |
3172 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
3173 beginline(BL_WHITE | BL_FIX); | |
3174 } | |
3175 } | |
3176 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3177 // Check if cursors in other windows on the same buffer are still valid |
7 | 3178 check_lnums(FALSE); |
3179 | |
3180 /* | |
3181 * Did not read the file, need to show some info about the file. | |
3182 * Do this after setting the cursor. | |
3183 */ | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3184 if (oldbuf && !auto_buf) |
7 | 3185 { |
3186 int msg_scroll_save = msg_scroll; | |
3187 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3188 // Obey the 'O' flag in 'cpoptions': overwrite any previous file |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3189 // message. |
7 | 3190 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) |
3191 msg_scroll = FALSE; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3192 if (!msg_scroll) // wait a bit when overwriting an error msg |
7 | 3193 check_for_delay(FALSE); |
3194 msg_start(); | |
3195 msg_scroll = msg_scroll_save; | |
3196 msg_scrolled_ign = TRUE; | |
3197 | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
3198 if (!shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
3199 fileinfo(FALSE, TRUE, FALSE); |
7 | 3200 |
3201 msg_scrolled_ign = FALSE; | |
3202 } | |
3203 | |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3204 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3205 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3206 #endif |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3207 |
7 | 3208 if (command != NULL) |
23011
ec23d84a096d
patch 8.2.2052: Vim9: "edit +4 fname" gives an error
Bram Moolenaar <Bram@vim.org>
parents:
22840
diff
changeset
|
3209 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE|DOCMD_RANGEOK); |
7 | 3210 |
3211 #ifdef FEAT_KEYMAP | |
3212 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 3213 (void)keymap_init(); |
7 | 3214 #endif |
3215 | |
3216 --RedrawingDisabled; | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3217 did_inc_redrawing_disabled = FALSE; |
7 | 3218 if (!skip_redraw) |
3219 { | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3220 n = *so_ptr; |
7 | 3221 if (topline == 0 && command == NULL) |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3222 *so_ptr = 9999; // force cursor halfway the window |
7 | 3223 update_topline(); |
3224 curwin->w_scbind_pos = curwin->w_topline; | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3225 *so_ptr = n; |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29609
diff
changeset
|
3226 redraw_curbuf_later(UPD_NOT_VALID); // redraw this buffer later |
7 | 3227 } |
3228 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3229 if (p_im && (State & MODE_INSERT) == 0) |
7 | 3230 need_start_insertmode = TRUE; |
3231 | |
13174
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3232 #ifdef FEAT_AUTOCHDIR |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3233 // Change directories when the 'acd' option is set and we aren't already in |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3234 // that directory (should already be done above). Expect getcwd() to be |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3235 // faster than calling shorten_fnames() unnecessarily. |
13174
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3236 if (p_acd && curbuf->b_ffname != NULL) |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3237 { |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3238 char_u curdir[MAXPATHL]; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3239 char_u filedir[MAXPATHL]; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3240 |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3241 vim_strncpy(filedir, curbuf->b_ffname, MAXPATHL - 1); |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3242 *gettail_sep(filedir) = NUL; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3243 if (mch_dirname(curdir, MAXPATHL) != FAIL |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3244 && vim_fnamecmp(curdir, filedir) != 0) |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3245 do_autochdir(); |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3246 } |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3247 #endif |
821 | 3248 |
15510
41fbbcea0f1b
patch 8.1.0763: nobody is using the Sun Workshop support
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3249 #if defined(FEAT_NETBEANS_INTG) |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
3250 if (curbuf->b_ffname != NULL) |
7 | 3251 { |
3252 # ifdef FEAT_NETBEANS_INTG | |
2210 | 3253 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP) |
34 | 3254 netbeans_file_opened(curbuf); |
7 | 3255 # endif |
3256 } | |
3257 #endif | |
3258 | |
3259 theend: | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3260 if (did_inc_redrawing_disabled) |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3261 --RedrawingDisabled; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3262 #if defined(FEAT_EVAL) |
716 | 3263 if (did_set_swapcommand) |
3264 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); | |
3265 #endif | |
7 | 3266 #ifdef FEAT_BROWSE |
3267 vim_free(browse_file); | |
3268 #endif | |
3269 vim_free(free_fname); | |
3270 return retval; | |
3271 } | |
3272 | |
3273 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3274 delbuf_msg(char_u *name) |
7 | 3275 { |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
3276 semsg(_(e_autocommands_unexpectedly_deleted_new_buffer_str), |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
3277 name == NULL ? (char_u *)"" : name); |
7 | 3278 vim_free(name); |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3279 au_new_curbuf.br_buf = NULL; |
9659
08df6ad72c56
commit https://github.com/vim/vim/commit/ac77aec4daea8d73468fcf4690cb4ccab1d807ed
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
3280 au_new_curbuf.br_buf_free_count = 0; |
7 | 3281 } |
3282 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3283 static int append_indent = 0; // autoindent for first line |
169 | 3284 |
7 | 3285 /* |
3286 * ":insert" and ":append", also used by ":change" | |
3287 */ | |
3288 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3289 ex_append(exarg_T *eap) |
7 | 3290 { |
3291 char_u *theline; | |
3292 int did_undo = FALSE; | |
3293 linenr_T lnum = eap->line2; | |
165 | 3294 int indent = 0; |
3295 char_u *p; | |
3296 int vcol; | |
3297 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); | |
7 | 3298 |
21518
0b448762ebbd
patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
21516
diff
changeset
|
3299 #ifdef FEAT_EVAL |
21516
c7b2ce90c2de
patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
21461
diff
changeset
|
3300 if (not_in_vim9(eap) == FAIL) |
c7b2ce90c2de
patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
21461
diff
changeset
|
3301 return; |
21518
0b448762ebbd
patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
21516
diff
changeset
|
3302 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3303 // the ! flag toggles autoindent |
169 | 3304 if (eap->forceit) |
3305 curbuf->b_p_ai = !curbuf->b_p_ai; | |
3306 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3307 // First autoindent comes from the line we start on |
169 | 3308 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) |
3309 append_indent = get_indent_lnum(lnum); | |
3310 | |
7 | 3311 if (eap->cmdidx != CMD_append) |
3312 --lnum; | |
3313 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3314 // when the buffer is empty need to delete the dummy line |
165 | 3315 if (empty && lnum == 1) |
3316 lnum = 0; | |
3317 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3318 State = MODE_INSERT; // behave like in Insert mode |
7 | 3319 if (curbuf->b_p_iminsert == B_IMODE_LMAP) |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3320 State |= MODE_LANGMAP; |
165 | 3321 |
408 | 3322 for (;;) |
7 | 3323 { |
3324 msg_scroll = TRUE; | |
3325 need_wait_return = FALSE; | |
169 | 3326 if (curbuf->b_p_ai) |
3327 { | |
3328 if (append_indent >= 0) | |
3329 { | |
3330 indent = append_indent; | |
3331 append_indent = -1; | |
3332 } | |
3333 else if (lnum > 0) | |
3334 indent = get_indent_lnum(lnum); | |
3335 } | |
3336 ex_keep_indent = FALSE; | |
7 | 3337 if (eap->getline == NULL) |
169 | 3338 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3339 // No getline() function, use the lines that follow. This ends |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3340 // when there is no more. |
169 | 3341 if (eap->nextcmd == NULL || *eap->nextcmd == NUL) |
3342 break; | |
3343 p = vim_strchr(eap->nextcmd, NL); | |
3344 if (p == NULL) | |
3345 p = eap->nextcmd + STRLEN(eap->nextcmd); | |
20830
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20782
diff
changeset
|
3346 theline = vim_strnsave(eap->nextcmd, p - eap->nextcmd); |
169 | 3347 if (*p != NUL) |
3348 ++p; | |
3349 eap->nextcmd = p; | |
3350 } | |
7 | 3351 else |
6164 | 3352 { |
3353 int save_State = State; | |
3354 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3355 // Set State to avoid the cursor shape to be set to MODE_INSERT |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3356 // state when getline() returns. |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3357 State = MODE_CMDLINE; |
7 | 3358 theline = eap->getline( |
3359 #ifdef FEAT_EVAL | |
76 | 3360 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 3361 #endif |
17178
40c4cb095d53
patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents:
17095
diff
changeset
|
3362 NUL, eap->cookie, indent, TRUE); |
6164 | 3363 State = save_State; |
3364 } | |
7 | 3365 lines_left = Rows - 1; |
165 | 3366 if (theline == NULL) |
3367 break; | |
3368 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3369 // Using ^ CTRL-D in getexmodeline() makes us repeat the indent. |
169 | 3370 if (ex_keep_indent) |
3371 append_indent = indent; | |
3372 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3373 // Look for the "." after automatic indent. |
165 | 3374 vcol = 0; |
3375 for (p = theline; indent > vcol; ++p) | |
3376 { | |
3377 if (*p == ' ') | |
3378 ++vcol; | |
3379 else if (*p == TAB) | |
3380 vcol += 8 - vcol % 8; | |
3381 else | |
3382 break; | |
3383 } | |
3384 if ((p[0] == '.' && p[1] == NUL) | |
321 | 3385 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
3386 == FAIL)) | |
7 | 3387 { |
3388 vim_free(theline); | |
3389 break; | |
3390 } | |
3391 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3392 // don't use autoindent if nothing was typed. |
169 | 3393 if (p[0] == NUL) |
3394 theline[0] = NUL; | |
3395 | |
7 | 3396 did_undo = TRUE; |
3397 ml_append(lnum, theline, (colnr_T)0, FALSE); | |
26848
a2335ec31abc
patch 8.2.3952: first line not redrawn when adding lines to an empty buffer
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
3398 if (empty) |
a2335ec31abc
patch 8.2.3952: first line not redrawn when adding lines to an empty buffer
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
3399 // there are no marks below the inserted lines |
a2335ec31abc
patch 8.2.3952: first line not redrawn when adding lines to an empty buffer
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
3400 appended_lines(lnum, 1L); |
a2335ec31abc
patch 8.2.3952: first line not redrawn when adding lines to an empty buffer
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
3401 else |
a2335ec31abc
patch 8.2.3952: first line not redrawn when adding lines to an empty buffer
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
3402 appended_lines_mark(lnum, 1L); |
7 | 3403 |
3404 vim_free(theline); | |
3405 ++lnum; | |
165 | 3406 |
3407 if (empty) | |
3408 { | |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20561
diff
changeset
|
3409 ml_delete(2L); |
165 | 3410 empty = FALSE; |
3411 } | |
7 | 3412 } |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3413 State = MODE_NORMAL; |
7 | 3414 |
169 | 3415 if (eap->forceit) |
3416 curbuf->b_p_ai = !curbuf->b_p_ai; | |
3417 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3418 // "start" is set to eap->line2+1 unless that position is invalid (when |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3419 // eap->line2 pointed to the end of the buffer and nothing was appended) |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3420 // "end" is set to lnum when something has been appended, otherwise |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26757
diff
changeset
|
3421 // it is the same as "start" -- Acevedo |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
3422 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0) |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3423 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3424 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ? |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3425 eap->line2 + 1 : curbuf->b_ml.ml_line_count; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3426 if (eap->cmdidx != CMD_append) |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3427 --curbuf->b_op_start.lnum; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3428 curbuf->b_op_end.lnum = (eap->line2 < lnum) |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
3429 ? lnum : curbuf->b_op_start.lnum; |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3430 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3431 } |
7 | 3432 curwin->w_cursor.lnum = lnum; |
3433 check_cursor_lnum(); | |
3434 beginline(BL_SOL | BL_FIX); | |
3435 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3436 need_wait_return = FALSE; // don't use wait_return() now |
7 | 3437 ex_no_reprint = TRUE; |
3438 } | |
3439 | |
3440 /* | |
3441 * ":change" | |
3442 */ | |
3443 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3444 ex_change(exarg_T *eap) |
7 | 3445 { |
3446 linenr_T lnum; | |
3447 | |
21518
0b448762ebbd
patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
21516
diff
changeset
|
3448 #ifdef FEAT_EVAL |
21516
c7b2ce90c2de
patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
21461
diff
changeset
|
3449 if (not_in_vim9(eap) == FAIL) |
c7b2ce90c2de
patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
21461
diff
changeset
|
3450 return; |
21518
0b448762ebbd
patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
21516
diff
changeset
|
3451 #endif |
7 | 3452 if (eap->line2 >= eap->line1 |
3453 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) | |
3454 return; | |
3455 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3456 // the ! flag toggles autoindent |
169 | 3457 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) |
3458 append_indent = get_indent_lnum(eap->line1); | |
3459 | |
7 | 3460 for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
3461 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3462 if (curbuf->b_ml.ml_flags & ML_EMPTY) // nothing to delete |
7 | 3463 break; |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20561
diff
changeset
|
3464 ml_delete(eap->line1); |
7 | 3465 } |
1929 | 3466 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3467 // make sure the cursor is not beyond the end of the file now |
1929 | 3468 check_cursor_lnum(); |
7 | 3469 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
3470 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3471 // ":append" on the line above the deleted lines. |
7 | 3472 eap->line2 = eap->line1; |
3473 ex_append(eap); | |
3474 } | |
3475 | |
3476 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3477 ex_z(exarg_T *eap) |
7 | 3478 { |
3479 char_u *x; | |
11303
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
3480 long bigness; |
165 | 3481 char_u *kind; |
7 | 3482 int minus = 0; |
3483 linenr_T start, end, curs, i; | |
3484 int j; | |
3485 linenr_T lnum = eap->line2; | |
3486 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3487 // Vi compatible: ":z!" uses display height, without a count uses |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3488 // 'scroll' |
165 | 3489 if (eap->forceit) |
25729
0f93e9423890
patch 8.2.3400: ":z!" is not supported
Bram Moolenaar <Bram@vim.org>
parents:
25654
diff
changeset
|
3490 bigness = Rows - 1; |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10299
diff
changeset
|
3491 else if (!ONE_WINDOW) |
5678 | 3492 bigness = curwin->w_height - 3; |
3493 else | |
165 | 3494 bigness = curwin->w_p_scr * 2; |
7 | 3495 if (bigness < 1) |
3496 bigness = 1; | |
3497 | |
3498 x = eap->arg; | |
165 | 3499 kind = x; |
3500 if (*kind == '-' || *kind == '+' || *kind == '=' | |
3501 || *kind == '^' || *kind == '.') | |
3502 ++x; | |
3503 while (*x == '-' || *x == '+') | |
7 | 3504 ++x; |
3505 | |
3506 if (*x != 0) | |
3507 { | |
3508 if (!VIM_ISDIGIT(*x)) | |
3509 { | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
3510 emsg(_(e_non_numeric_argument_to_z)); |
7 | 3511 return; |
3512 } | |
3513 else | |
165 | 3514 { |
11303
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
3515 bigness = atol((char *)x); |
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
3516 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3517 // bigness could be < 0 if atol(x) overflows. |
11303
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
3518 if (bigness > 2 * curbuf->b_ml.ml_line_count || bigness < 0) |
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
3519 bigness = 2 * curbuf->b_ml.ml_line_count; |
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
3520 |
165 | 3521 p_window = bigness; |
169 | 3522 if (*kind == '=') |
3523 bigness += 2; | |
165 | 3524 } |
7 | 3525 } |
3526 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3527 // the number of '-' and '+' multiplies the distance |
165 | 3528 if (*kind == '-' || *kind == '+') |
3529 for (x = kind + 1; *x == *kind; ++x) | |
3530 ; | |
3531 | |
3532 switch (*kind) | |
7 | 3533 { |
3534 case '-': | |
2881 | 3535 start = lnum - bigness * (linenr_T)(x - kind) + 1; |
3536 end = start + bigness - 1; | |
165 | 3537 curs = end; |
7 | 3538 break; |
3539 | |
3540 case '=': | |
159 | 3541 start = lnum - (bigness + 1) / 2 + 1; |
3542 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 3543 curs = lnum; |
3544 minus = 1; | |
3545 break; | |
3546 | |
3547 case '^': | |
3548 start = lnum - bigness * 2; | |
3549 end = lnum - bigness; | |
3550 curs = lnum - bigness; | |
3551 break; | |
3552 | |
3553 case '.': | |
159 | 3554 start = lnum - (bigness + 1) / 2 + 1; |
3555 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 3556 curs = end; |
3557 break; | |
3558 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3559 default: // '+' |
7 | 3560 start = lnum; |
165 | 3561 if (*kind == '+') |
835 | 3562 start += bigness * (linenr_T)(x - kind - 1) + 1; |
169 | 3563 else if (eap->addr_count == 0) |
3564 ++start; | |
3565 end = start + bigness - 1; | |
7 | 3566 curs = end; |
3567 break; | |
3568 } | |
3569 | |
3570 if (start < 1) | |
3571 start = 1; | |
3572 | |
3573 if (end > curbuf->b_ml.ml_line_count) | |
3574 end = curbuf->b_ml.ml_line_count; | |
3575 | |
3576 if (curs > curbuf->b_ml.ml_line_count) | |
3577 curs = curbuf->b_ml.ml_line_count; | |
11372
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
3578 else if (curs < 1) |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
3579 curs = 1; |
7 | 3580 |
3581 for (i = start; i <= end; i++) | |
3582 { | |
3583 if (minus && i == lnum) | |
3584 { | |
3585 msg_putchar('\n'); | |
3586 | |
3587 for (j = 1; j < Columns; j++) | |
3588 msg_putchar('-'); | |
3589 } | |
3590 | |
169 | 3591 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
7 | 3592 |
3593 if (minus && i == lnum) | |
3594 { | |
3595 msg_putchar('\n'); | |
3596 | |
3597 for (j = 1; j < Columns; j++) | |
3598 msg_putchar('-'); | |
3599 } | |
3600 } | |
3601 | |
11372
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
3602 if (curwin->w_cursor.lnum != curs) |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
3603 { |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
3604 curwin->w_cursor.lnum = curs; |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
3605 curwin->w_cursor.col = 0; |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
3606 } |
7 | 3607 ex_no_reprint = TRUE; |
3608 } | |
3609 | |
3610 /* | |
3611 * Check if the restricted flag is set. | |
3612 * If so, give an error message and return TRUE. | |
3613 * Otherwise, return FALSE. | |
3614 */ | |
3615 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3616 check_restricted(void) |
7 | 3617 { |
3618 if (restricted) | |
3619 { | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
3620 emsg(_(e_shell_commands_and_some_functionality_not_allowed_in_rvim)); |
7 | 3621 return TRUE; |
3622 } | |
3623 return FALSE; | |
3624 } | |
3625 | |
3626 /* | |
3627 * Check if the secure flag is set (.exrc or .vimrc in current directory). | |
3628 * If so, give an error message and return TRUE. | |
3629 * Otherwise, return FALSE. | |
3630 */ | |
3631 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3632 check_secure(void) |
7 | 3633 { |
3634 if (secure) | |
3635 { | |
3636 secure = 2; | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24992
diff
changeset
|
3637 emsg(_(e_command_not_allowed_from_vimrc_in_current_dir_or_tag_search)); |
7 | 3638 return TRUE; |
3639 } | |
3640 #ifdef HAVE_SANDBOX | |
3641 /* | |
3642 * In the sandbox more things are not allowed, including the things | |
3643 * disallowed in secure mode. | |
3644 */ | |
3645 if (sandbox != 0) | |
3646 { | |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
3647 emsg(_(e_not_allowed_in_sandbox)); |
7 | 3648 return TRUE; |
3649 } | |
3650 #endif | |
3651 return FALSE; | |
3652 } | |
3653 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3654 static char_u *old_sub = NULL; // previous substitute pattern |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3655 static int global_need_beginline; // call beginline() after ":g" |
7 | 3656 |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3657 /* |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3658 * Flags that are kept between calls to :substitute. |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3659 */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3660 typedef struct { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3661 int do_all; // do multiple substitutions per line |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3662 int do_ask; // ask for confirmation |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3663 int do_count; // count only |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3664 int do_error; // if false, ignore errors |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3665 int do_print; // print last line with subs. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3666 int do_list; // list last line with subs. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3667 int do_number; // list last line with line nr |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3668 int do_ic; // ignore case flag |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3669 } subflags_T; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3670 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3671 /* |
24488
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3672 * Skip over the "sub" part in :s/pat/sub/ where "delimiter" is the separating |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3673 * character. |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3674 */ |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3675 char_u * |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3676 skip_substitute(char_u *start, int delimiter) |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3677 { |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3678 char_u *p = start; |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3679 |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3680 while (p[0]) |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3681 { |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3682 if (p[0] == delimiter) // end delimiter found |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3683 { |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3684 *p++ = NUL; // replace it with a NUL |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3685 break; |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3686 } |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3687 if (p[0] == '\\' && p[1] != 0) // skip escaped characters |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3688 ++p; |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3689 MB_PTR_ADV(p); |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3690 } |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3691 return p; |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3692 } |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3693 |
24992
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3694 static int |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3695 check_regexp_delim(int c) |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3696 { |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3697 if (isalpha(c)) |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3698 { |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
3699 emsg(_(e_regular_expressions_cant_be_delimited_by_letters)); |
24992
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3700 return FAIL; |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3701 } |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3702 return OK; |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3703 } |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3704 |
24488
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3705 /* |
7 | 3706 * Perform a substitution from line eap->line1 to line eap->line2 using the |
3707 * command pointed to by eap->arg which should be of the form: | |
3708 * | |
3709 * /pattern/substitution/{flags} | |
3710 * | |
3711 * The usual escapes are supported as described in the regexp docs. | |
3712 */ | |
3713 void | |
21773
2f2e528c5782
patch 8.2.1436: function implementing :substitute has unexpected name
Bram Moolenaar <Bram@vim.org>
parents:
21518
diff
changeset
|
3714 ex_substitute(exarg_T *eap) |
7 | 3715 { |
3716 linenr_T lnum; | |
3717 long i = 0; | |
3718 regmmatch_T regmatch; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3719 static subflags_T subflags = {FALSE, FALSE, FALSE, TRUE, FALSE, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3720 FALSE, FALSE, 0}; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3721 #ifdef FEAT_EVAL |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3722 subflags_T subflags_save; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3723 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3724 int save_do_all; // remember user specified 'g' flag |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3725 int save_do_ask; // remember user specified 'c' flag |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3726 char_u *pat = NULL, *sub = NULL; // init for GCC |
27449
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
3727 char_u *sub_copy = NULL; |
7 | 3728 int delimiter; |
3729 int sublen; | |
3730 int got_quit = FALSE; | |
3731 int got_match = FALSE; | |
3732 int temp; | |
3733 int which_pat; | |
3734 char_u *cmd; | |
3735 int save_State; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3736 linenr_T first_line = 0; // first changed line |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3737 linenr_T last_line= 0; // below last changed line AFTER the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3738 // change |
7 | 3739 linenr_T old_line_count = curbuf->b_ml.ml_line_count; |
3740 linenr_T line2; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3741 long nmatch; // number of lines in match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3742 char_u *sub_firstline; // allocated copy of first sub line |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3743 int endcolumn = FALSE; // cursor in last column when done |
170 | 3744 pos_T old_cursor = curwin->w_cursor; |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
3745 int start_nsubs; |
3736 | 3746 #ifdef FEAT_EVAL |
5867 | 3747 int save_ma = 0; |
29255
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
3748 int save_sandbox = 0; |
3736 | 3749 #endif |
29609
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
3750 #ifdef FEAT_PROP_POPUP |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
3751 textprop_T *text_props = NULL; |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
3752 #endif |
7 | 3753 |
3754 cmd = eap->arg; | |
3755 if (!global_busy) | |
3756 { | |
3757 sub_nsubs = 0; | |
3758 sub_nlines = 0; | |
3759 } | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
3760 start_nsubs = sub_nsubs; |
7 | 3761 |
3762 if (eap->cmdidx == CMD_tilde) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3763 which_pat = RE_LAST; // use last used regexp |
7 | 3764 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3765 which_pat = RE_SUBST; // use last substitute regexp |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3766 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3767 // new pattern and substitution |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3768 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd) |
7 | 3769 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) |
3770 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3771 // don't accept alphanumeric for separator |
24992
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3772 if (check_regexp_delim(*cmd) == FAIL) |
7 | 3773 return; |
25943
dbf6a2066091
patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
25939
diff
changeset
|
3774 #ifdef FEAT_EVAL |
25939
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25729
diff
changeset
|
3775 if (in_vim9script() && check_global_and_subst(eap->cmd, eap->arg) |
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25729
diff
changeset
|
3776 == FAIL) |
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25729
diff
changeset
|
3777 return; |
25943
dbf6a2066091
patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
25939
diff
changeset
|
3778 #endif |
24992
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3779 |
7 | 3780 /* |
3781 * undocumented vi feature: | |
3782 * "\/sub/" and "\?sub?" use last used search pattern (almost like | |
3783 * //sub/r). "\&sub&" use last substitute pattern (like //sub/). | |
3784 */ | |
3785 if (*cmd == '\\') | |
3786 { | |
27980
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27962
diff
changeset
|
3787 if (in_vim9script()) |
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27962
diff
changeset
|
3788 { |
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27962
diff
changeset
|
3789 emsg(_(e_cannot_use_s_backslash_in_vim9_script)); |
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27962
diff
changeset
|
3790 return; |
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27962
diff
changeset
|
3791 } |
7 | 3792 ++cmd; |
3793 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
3794 { | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24992
diff
changeset
|
3795 emsg(_(e_backslash_should_be_followed_by)); |
7 | 3796 return; |
3797 } | |
3798 if (*cmd != '&') | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3799 which_pat = RE_SEARCH; // use last '/' pattern |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3800 pat = (char_u *)""; // empty search pattern |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3801 delimiter = *cmd++; // remember delimiter character |
7 | 3802 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3803 else // find the end of the regexp |
7 | 3804 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3805 which_pat = RE_LAST; // use last used regexp |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3806 delimiter = *cmd++; // remember delimiter character |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3807 pat = cmd; // remember start of search pat |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3808 cmd = skip_regexp_ex(cmd, delimiter, magic_isset(), |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23376
diff
changeset
|
3809 &eap->arg, NULL, NULL); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3810 if (cmd[0] == delimiter) // end delimiter found |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3811 *cmd++ = NUL; // replace it with a NUL |
7 | 3812 } |
3813 | |
3814 /* | |
3815 * Small incompatibility: vi sees '\n' as end of the command, but in | |
3816 * Vim we want to use '\n' to find/substitute a NUL. | |
3817 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3818 sub = cmd; // remember the start of the substitution |
24488
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3819 cmd = skip_substitute(cmd, delimiter); |
7 | 3820 |
3821 if (!eap->skip) | |
3822 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3823 // In POSIX vi ":s/pat/%/" uses the previous subst. string. |
169 | 3824 if (STRCMP(sub, "%") == 0 |
3825 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) | |
3826 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3827 if (old_sub == NULL) // there is no previous command |
169 | 3828 { |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
3829 emsg(_(e_no_previous_substitute_regular_expression)); |
169 | 3830 return; |
3831 } | |
3832 sub = old_sub; | |
3833 } | |
3834 else | |
3835 { | |
3836 vim_free(old_sub); | |
3837 old_sub = vim_strsave(sub); | |
3838 } | |
7 | 3839 } |
3840 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3841 else if (!eap->skip) // use previous pattern and substitution |
7 | 3842 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3843 if (old_sub == NULL) // there is no previous command |
7 | 3844 { |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
3845 emsg(_(e_no_previous_substitute_regular_expression)); |
7 | 3846 return; |
3847 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3848 pat = NULL; // search_regcomp() will use previous pattern |
7 | 3849 sub = old_sub; |
163 | 3850 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3851 // Vi compatibility quirk: repeating with ":s" keeps the cursor in the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3852 // last column after using "$". |
163 | 3853 endcolumn = (curwin->w_curswant == MAXCOL); |
7 | 3854 } |
3855 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3856 // Recognize ":%s/\n//" and turn it into a join command, which is much |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3857 // more efficient. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3858 // TODO: find a generic solution to make line-joining operations more |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3859 // efficient, avoid allocating a string that grows in size. |
5802 | 3860 if (pat != NULL && STRCMP(pat, "\\n") == 0 |
5776 | 3861 && *sub == NUL |
3862 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l' | |
3863 || *cmd == 'p' || *cmd == '#')))) | |
3864 { | |
6426 | 3865 linenr_T joined_lines_count; |
3866 | |
23768
1a53383f08e5
patch 8.2.2425: cursor on invalid line with range and :substitute
Bram Moolenaar <Bram@vim.org>
parents:
23638
diff
changeset
|
3867 if (eap->skip) |
1a53383f08e5
patch 8.2.2425: cursor on invalid line with range and :substitute
Bram Moolenaar <Bram@vim.org>
parents:
23638
diff
changeset
|
3868 return; |
5776 | 3869 curwin->w_cursor.lnum = eap->line1; |
3870 if (*cmd == 'l') | |
3871 eap->flags = EXFLAG_LIST; | |
3872 else if (*cmd == '#') | |
3873 eap->flags = EXFLAG_NR; | |
3874 else if (*cmd == 'p') | |
3875 eap->flags = EXFLAG_PRINT; | |
3876 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3877 // The number of lines joined is the number of lines in the range plus |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3878 // one. One less when the last line is included. |
6426 | 3879 joined_lines_count = eap->line2 - eap->line1 + 1; |
3880 if (eap->line2 < curbuf->b_ml.ml_line_count) | |
3881 ++joined_lines_count; | |
3882 if (joined_lines_count > 1) | |
3883 { | |
3884 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE); | |
3885 sub_nsubs = joined_lines_count - 1; | |
3886 sub_nlines = 1; | |
3887 (void)do_sub_msg(FALSE); | |
3888 ex_may_print(eap); | |
3889 } | |
3890 | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
3891 if ((cmdmod.cmod_flags & CMOD_KEEPPATTERNS) == 0) |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3892 save_re_pat(RE_SUBST, pat, magic_isset()); |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17632
diff
changeset
|
3893 // put pattern in history |
6426 | 3894 add_to_history(HIST_SEARCH, pat, TRUE, NUL); |
3895 | |
5776 | 3896 return; |
3897 } | |
3898 | |
7 | 3899 /* |
3900 * Find trailing options. When '&' is used, keep old options. | |
3901 */ | |
3902 if (*cmd == '&') | |
3903 ++cmd; | |
3904 else | |
3905 { | |
23274
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3906 #ifdef FEAT_EVAL |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3907 if (in_vim9script()) |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3908 { |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3909 // ignore 'gdefault' and 'edcompatible' |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3910 subflags.do_all = FALSE; |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3911 subflags.do_ask = FALSE; |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3912 } |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3913 else |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3914 #endif |
7 | 3915 if (!p_ed) |
3916 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3917 if (p_gd) // default is global on |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3918 subflags.do_all = TRUE; |
7 | 3919 else |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3920 subflags.do_all = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3921 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3922 } |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3923 subflags.do_error = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3924 subflags.do_print = FALSE; |
15760
aa80c63f34bb
patch 8.1.0887: the 'l' flag in :subsitute is sticky
Bram Moolenaar <Bram@vim.org>
parents:
15748
diff
changeset
|
3925 subflags.do_list = FALSE; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3926 subflags.do_count = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3927 subflags.do_number = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3928 subflags.do_ic = 0; |
7 | 3929 } |
3930 while (*cmd) | |
3931 { | |
3932 /* | |
3933 * Note that 'g' and 'c' are always inverted, also when p_ed is off. | |
3934 * 'r' is never inverted. | |
3935 */ | |
3936 if (*cmd == 'g') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3937 subflags.do_all = !subflags.do_all; |
7 | 3938 else if (*cmd == 'c') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3939 subflags.do_ask = !subflags.do_ask; |
170 | 3940 else if (*cmd == 'n') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3941 subflags.do_count = TRUE; |
7 | 3942 else if (*cmd == 'e') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3943 subflags.do_error = !subflags.do_error; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3944 else if (*cmd == 'r') // use last used regexp |
7 | 3945 which_pat = RE_LAST; |
3946 else if (*cmd == 'p') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3947 subflags.do_print = TRUE; |
169 | 3948 else if (*cmd == '#') |
3949 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3950 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3951 subflags.do_number = TRUE; |
169 | 3952 } |
3953 else if (*cmd == 'l') | |
3954 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3955 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3956 subflags.do_list = TRUE; |
169 | 3957 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3958 else if (*cmd == 'i') // ignore case |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3959 subflags.do_ic = 'i'; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3960 else if (*cmd == 'I') // don't ignore case |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3961 subflags.do_ic = 'I'; |
7 | 3962 else |
3963 break; | |
3964 ++cmd; | |
3965 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3966 if (subflags.do_count) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3967 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3968 |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3969 save_do_all = subflags.do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3970 save_do_ask = subflags.do_ask; |
6789 | 3971 |
7 | 3972 /* |
3973 * check for a trailing count | |
3974 */ | |
3975 cmd = skipwhite(cmd); | |
3976 if (VIM_ISDIGIT(*cmd)) | |
3977 { | |
3978 i = getdigits(&cmd); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3979 if (i <= 0 && !eap->skip && subflags.do_error) |
7 | 3980 { |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
3981 emsg(_(e_positive_count_required)); |
7 | 3982 return; |
3983 } | |
3984 eap->line1 = eap->line2; | |
3985 eap->line2 += i - 1; | |
3986 if (eap->line2 > curbuf->b_ml.ml_line_count) | |
3987 eap->line2 = curbuf->b_ml.ml_line_count; | |
3988 } | |
3989 | |
3990 /* | |
3991 * check for trailing command or garbage | |
3992 */ | |
3993 cmd = skipwhite(cmd); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3994 if (*cmd && *cmd != '"') // if not end-of-line or comment |
7 | 3995 { |
25521
2063b858cad9
patch 8.2.3297: cannot use all commands inside a {} block
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
3996 set_nextcmd(eap, cmd); |
7 | 3997 if (eap->nextcmd == NULL) |
3998 { | |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
3999 semsg(_(e_trailing_characters_str), cmd); |
7 | 4000 return; |
4001 } | |
4002 } | |
4003 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4004 if (eap->skip) // not executing commands, only parsing |
7 | 4005 return; |
4006 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4007 if (!subflags.do_count && !curbuf->b_p_ma) |
823 | 4008 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4009 // Substitution is not allowed in non-'modifiable' buffer |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24992
diff
changeset
|
4010 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
823 | 4011 return; |
4012 } | |
4013 | |
31519
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
4014 if (search_regcomp(pat, NULL, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
7 | 4015 { |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4016 if (subflags.do_error) |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21773
diff
changeset
|
4017 emsg(_(e_invalid_command)); |
7 | 4018 return; |
4019 } | |
4020 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4021 // the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4022 if (subflags.do_ic == 'i') |
7 | 4023 regmatch.rmm_ic = TRUE; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4024 else if (subflags.do_ic == 'I') |
7 | 4025 regmatch.rmm_ic = FALSE; |
4026 | |
4027 sub_firstline = NULL; | |
4028 | |
4029 /* | |
27449
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4030 * If the substitute pattern starts with "\=" then it's an expression. |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4031 * Make a copy, a recursive function may free it. |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4032 * Otherwise, '~' in the substitute pattern is replaced with the old |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4033 * pattern. We do it here once to avoid it to be replaced over and over |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4034 * again. |
7 | 4035 */ |
27449
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4036 if (sub[0] == '\\' && sub[1] == '=') |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4037 { |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4038 sub = vim_strsave(sub); |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4039 if (sub == NULL) |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4040 return; |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4041 sub_copy = sub; |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4042 } |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4043 else |
29410
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4044 { |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4045 char_u *newsub = regtilde(sub, magic_isset()); |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4046 |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4047 if (newsub != sub) |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4048 { |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4049 // newsub was allocated, free it later. |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4050 sub_copy = newsub; |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4051 sub = newsub; |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4052 } |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4053 } |
7 | 4054 |
4055 /* | |
4056 * Check for a match on each line. | |
4057 */ | |
4058 line2 = eap->line2; | |
4059 for (lnum = eap->line1; lnum <= line2 && !(got_quit | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
4060 #if defined(FEAT_EVAL) |
7 | 4061 || aborting() |
4062 #endif | |
4063 ); ++lnum) | |
4064 { | |
1521 | 4065 nmatch = vim_regexec_multi(®match, curwin, curbuf, lnum, |
29071
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29048
diff
changeset
|
4066 (colnr_T)0, NULL); |
7 | 4067 if (nmatch) |
4068 { | |
4069 colnr_T copycol; | |
4070 colnr_T matchcol; | |
4071 colnr_T prev_matchcol = MAXCOL; | |
4072 char_u *new_end, *new_start = NULL; | |
4073 unsigned new_start_len = 0; | |
4074 char_u *p1; | |
4075 int did_sub = FALSE; | |
4076 int lastone; | |
1872 | 4077 int len, copy_len, needed_len; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4078 long nmatch_tl = 0; // nr of lines matched below lnum |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4079 int do_again; // do it again after joining lines |
15 | 4080 int skip_match = FALSE; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4081 linenr_T sub_firstlnum; // nr of first sub line |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
4082 #ifdef FEAT_PROP_POPUP |
16714
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4083 int apc_flags = APC_SAVE_FOR_UNDO | APC_SUBSTITUTE; |
18446
b026f4524f25
patch 8.1.2217: compiler warning for unused variable
Bram Moolenaar <Bram@vim.org>
parents:
18444
diff
changeset
|
4084 colnr_T total_added = 0; |
29609
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4085 int text_prop_count = 0; |
16698
23af483c4ceb
patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16686
diff
changeset
|
4086 #endif |
7 | 4087 |
4088 /* | |
4089 * The new text is build up step by step, to avoid too much | |
4090 * copying. There are these pieces: | |
1581 | 4091 * sub_firstline The old text, unmodified. |
7 | 4092 * copycol Column in the old text where we started |
4093 * looking for a match; from here old text still | |
4094 * needs to be copied to the new text. | |
4095 * matchcol Column number of the old text where to look | |
4096 * for the next match. It's just after the | |
4097 * previous match or one further. | |
4098 * prev_matchcol Column just after the previous match (if any). | |
4099 * Mostly equal to matchcol, except for the first | |
4100 * match and after skipping an empty match. | |
4101 * regmatch.*pos Where the pattern matched in the old text. | |
4102 * new_start The new text, all that has been produced so | |
4103 * far. | |
4104 * new_end The new text, where to append new text. | |
4105 * | |
1499 | 4106 * lnum The line number where we found the start of |
4107 * the match. Can be below the line we searched | |
4108 * when there is a \n before a \zs in the | |
4109 * pattern. | |
7 | 4110 * sub_firstlnum The line number in the buffer where to look |
4111 * for a match. Can be different from "lnum" | |
4112 * when the pattern or substitute string contains | |
4113 * line breaks. | |
4114 * | |
4115 * Special situations: | |
4116 * - When the substitute string contains a line break, the part up | |
4117 * to the line break is inserted in the text, but the copy of | |
4118 * the original line is kept. "sub_firstlnum" is adjusted for | |
4119 * the inserted lines. | |
4120 * - When the matched pattern contains a line break, the old line | |
4121 * is taken from the line at the end of the pattern. The lines | |
4122 * in the match are deleted later, "sub_firstlnum" is adjusted | |
4123 * accordingly. | |
4124 * | |
4125 * The new text is built up in new_start[]. It has some extra | |
4126 * room to avoid using alloc()/free() too often. new_start_len is | |
1389 | 4127 * the length of the allocated memory at new_start. |
7 | 4128 * |
4129 * Make a copy of the old line, so it won't be taken away when | |
4130 * updating the screen or handling a multi-line match. The "old_" | |
4131 * pointers point into this copy. | |
4132 */ | |
1499 | 4133 sub_firstlnum = lnum; |
7 | 4134 copycol = 0; |
4135 matchcol = 0; | |
4136 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4137 // At first match, remember current cursor position. |
7 | 4138 if (!got_match) |
4139 { | |
4140 setpcmark(); | |
4141 got_match = TRUE; | |
4142 } | |
4143 | |
4144 /* | |
4145 * Loop until nothing more to replace in this line. | |
4146 * 1. Handle match with empty string. | |
4147 * 2. If do_ask is set, ask for confirmation. | |
4148 * 3. substitute the string. | |
4149 * 4. if do_all is set, find next match | |
4150 * 5. break if there isn't another match in this line | |
4151 */ | |
4152 for (;;) | |
4153 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4154 // Advance "lnum" to the line where the match starts. The |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4155 // match does not start in the first line when there is a line |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4156 // break before \zs. |
1499 | 4157 if (regmatch.startpos[0].lnum > 0) |
4158 { | |
4159 lnum += regmatch.startpos[0].lnum; | |
4160 sub_firstlnum += regmatch.startpos[0].lnum; | |
4161 nmatch -= regmatch.startpos[0].lnum; | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13174
diff
changeset
|
4162 VIM_CLEAR(sub_firstline); |
1499 | 4163 } |
4164 | |
18483
54e5fa1f9cfc
patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents:
18446
diff
changeset
|
4165 // Match might be after the last line for "\n\zs" matching at |
54e5fa1f9cfc
patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents:
18446
diff
changeset
|
4166 // the end of the last line. |
54e5fa1f9cfc
patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents:
18446
diff
changeset
|
4167 if (lnum > curbuf->b_ml.ml_line_count) |
54e5fa1f9cfc
patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents:
18446
diff
changeset
|
4168 break; |
54e5fa1f9cfc
patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents:
18446
diff
changeset
|
4169 |
1499 | 4170 if (sub_firstline == NULL) |
4171 { | |
4172 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
4173 if (sub_firstline == NULL) | |
4174 { | |
4175 vim_free(new_start); | |
4176 goto outofmem; | |
4177 } | |
4178 } | |
4179 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4180 // Save the line number of the last change for the final |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4181 // cursor position (just like Vi). |
7 | 4182 curwin->w_cursor.lnum = lnum; |
4183 do_again = FALSE; | |
4184 | |
4185 /* | |
4186 * 1. Match empty string does not count, except for first | |
4187 * match. This reproduces the strange vi behaviour. | |
4188 * This also catches endless loops. | |
4189 */ | |
4190 if (matchcol == prev_matchcol | |
4191 && regmatch.endpos[0].lnum == 0 | |
4192 && matchcol == regmatch.endpos[0].col) | |
4193 { | |
15 | 4194 if (sub_firstline[matchcol] == NUL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4195 // We already were at the end of the line. Don't look |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4196 // for a match in this line again. |
15 | 4197 skip_match = TRUE; |
4198 else | |
2837 | 4199 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4200 // search for a match at next column |
2837 | 4201 if (has_mbyte) |
4202 matchcol += mb_ptr2len(sub_firstline + matchcol); | |
4203 else | |
4204 ++matchcol; | |
4205 } | |
7 | 4206 goto skip; |
4207 } | |
4208 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4209 // Normally we continue searching for a match just after the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4210 // previous match. |
7 | 4211 matchcol = regmatch.endpos[0].col; |
4212 prev_matchcol = matchcol; | |
4213 | |
4214 /* | |
170 | 4215 * 2. If do_count is set only increase the counter. |
4216 * If do_ask is set, ask for confirmation. | |
7 | 4217 */ |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4218 if (subflags.do_count) |
170 | 4219 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4220 // For a multi-line match, put matchcol at the NUL at |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4221 // the end of the line and set nmatch to one, so that |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4222 // we continue looking for a match on the next line. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4223 // Avoids that ":s/\nB\@=//gc" get stuck. |
170 | 4224 if (nmatch > 1) |
4225 { | |
835 | 4226 matchcol = (colnr_T)STRLEN(sub_firstline); |
170 | 4227 nmatch = 1; |
1483 | 4228 skip_match = TRUE; |
170 | 4229 } |
4230 sub_nsubs++; | |
4231 did_sub = TRUE; | |
3736 | 4232 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4233 // Skip the substitution, unless an expression is used, |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4234 // then it is evaluated in the sandbox. |
3736 | 4235 if (!(sub[0] == '\\' && sub[1] == '=')) |
4236 #endif | |
4237 goto skip; | |
170 | 4238 } |
4239 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4240 if (subflags.do_ask) |
7 | 4241 { |
1874 | 4242 int typed = 0; |
1872 | 4243 |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
4244 // change State to MODE_CONFIRM, so that the mouse works |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4245 // properly |
7 | 4246 save_State = State; |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
4247 State = MODE_CONFIRM; |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
4248 setmouse(); // disable mouse in xterm |
7 | 4249 curwin->w_cursor.col = regmatch.startpos[0].col; |
10638
21f983648487
patch 8.0.0209: cursor binding does not work with :substitute
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
4250 if (curwin->w_p_crb) |
21f983648487
patch 8.0.0209: cursor binding does not work with :substitute
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
4251 do_check_cursorbind(); |
7 | 4252 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4253 // When 'cpoptions' contains "u" don't sync undo when |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4254 // asking for confirmation. |
7 | 4255 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) |
4256 ++no_u_sync; | |
4257 | |
4258 /* | |
4259 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. | |
4260 */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4261 while (subflags.do_ask) |
7 | 4262 { |
169 | 4263 if (exmode_active) |
4264 { | |
4265 char_u *resp; | |
4266 colnr_T sc, ec; | |
4267 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4268 print_line_no_prefix(lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4269 subflags.do_number, subflags.do_list); |
169 | 4270 |
4271 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); | |
4272 curwin->w_cursor.col = regmatch.endpos[0].col - 1; | |
10970
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10853
diff
changeset
|
4273 if (curwin->w_cursor.col < 0) |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10853
diff
changeset
|
4274 curwin->w_cursor.col = 0; |
169 | 4275 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec); |
24383
ea2b697ddea8
patch 8.2.2732: prompt for s///c in Ex mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents:
23861
diff
changeset
|
4276 curwin->w_cursor.col = regmatch.startpos[0].col; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4277 if (subflags.do_number || curwin->w_p_nu) |
5396 | 4278 { |
4279 int numw = number_width(curwin) + 1; | |
4280 sc += numw; | |
4281 ec += numw; | |
4282 } | |
169 | 4283 msg_start(); |
170 | 4284 for (i = 0; i < (long)sc; ++i) |
169 | 4285 msg_putchar(' '); |
170 | 4286 for ( ; i <= (long)ec; ++i) |
169 | 4287 msg_putchar('^'); |
4288 | |
17178
40c4cb095d53
patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents:
17095
diff
changeset
|
4289 resp = getexmodeline('?', NULL, 0, TRUE); |
169 | 4290 if (resp != NULL) |
4291 { | |
1872 | 4292 typed = *resp; |
169 | 4293 vim_free(resp); |
28293
aa533dc41223
patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents:
28255
diff
changeset
|
4294 // When ":normal" runs out of characters we get |
aa533dc41223
patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents:
28255
diff
changeset
|
4295 // an empty line. Use "q" to get out of the |
aa533dc41223
patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents:
28255
diff
changeset
|
4296 // loop. |
aa533dc41223
patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents:
28255
diff
changeset
|
4297 if (ex_normal_busy && typed == NUL) |
aa533dc41223
patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents:
28255
diff
changeset
|
4298 typed = 'q'; |
169 | 4299 } |
4300 } | |
4301 else | |
4302 { | |
4076 | 4303 char_u *orig_line = NULL; |
4304 int len_change = 0; | |
23638
062caef90f7f
patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
4305 int save_p_lz = p_lz; |
7 | 4306 #ifdef FEAT_FOLDING |
169 | 4307 int save_p_fen = curwin->w_p_fen; |
4308 | |
4309 curwin->w_p_fen = FALSE; | |
4310 #endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4311 // Invert the matched string. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4312 // Remove the inversion afterwards. |
169 | 4313 temp = RedrawingDisabled; |
4314 RedrawingDisabled = 0; | |
4315 | |
23638
062caef90f7f
patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
4316 // avoid calling update_screen() in vgetorpeek() |
062caef90f7f
patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
4317 p_lz = FALSE; |
062caef90f7f
patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
4318 |
4076 | 4319 if (new_start != NULL) |
4320 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4321 // There already was a substitution, we would |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4322 // like to show this to the user. We cannot |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4323 // really update the line, it would change |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4324 // what matches. Temporarily replace the line |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4325 // and change it back afterwards. |
4076 | 4326 orig_line = vim_strsave(ml_get(lnum)); |
4327 if (orig_line != NULL) | |
4328 { | |
4329 char_u *new_line = concat_str(new_start, | |
4330 sub_firstline + copycol); | |
4331 | |
4332 if (new_line == NULL) | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13174
diff
changeset
|
4333 VIM_CLEAR(orig_line); |
4076 | 4334 else |
4335 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4336 // Position the cursor relative to the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4337 // end of the line, the previous |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4338 // substitute may have inserted or |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4339 // deleted characters before the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4340 // cursor. |
4086 | 4341 len_change = (int)STRLEN(new_line) |
4342 - (int)STRLEN(orig_line); | |
4076 | 4343 curwin->w_cursor.col += len_change; |
4344 ml_replace(lnum, new_line, FALSE); | |
4345 } | |
4346 } | |
4347 } | |
4348 | |
1499 | 4349 search_match_lines = regmatch.endpos[0].lnum |
4350 - regmatch.startpos[0].lnum; | |
4076 | 4351 search_match_endcol = regmatch.endpos[0].col |
4352 + len_change; | |
30243
b57d52934160
patch 9.0.0457: substitute prompt does not highlight an empty match
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
4353 if (search_match_lines == 0 |
b57d52934160
patch 9.0.0457: substitute prompt does not highlight an empty match
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
4354 && search_match_endcol == 0) |
b57d52934160
patch 9.0.0457: substitute prompt does not highlight an empty match
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
4355 // highlight at least one character for /^/ |
b57d52934160
patch 9.0.0457: substitute prompt does not highlight an empty match
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
4356 search_match_endcol = 1; |
169 | 4357 highlight_match = TRUE; |
4358 | |
4359 update_topline(); | |
4360 validate_cursor(); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29609
diff
changeset
|
4361 update_screen(UPD_SOME_VALID); |
169 | 4362 highlight_match = FALSE; |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29609
diff
changeset
|
4363 redraw_later(UPD_SOME_VALID); |
7 | 4364 |
4365 #ifdef FEAT_FOLDING | |
169 | 4366 curwin->w_p_fen = save_p_fen; |
4367 #endif | |
4368 if (msg_row == Rows - 1) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4369 msg_didout = FALSE; // avoid a scroll-up |
169 | 4370 msg_starthere(); |
4371 i = msg_scroll; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4372 msg_scroll = 0; // truncate msg when |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4373 // needed |
169 | 4374 msg_no_more = TRUE; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4375 // write message same highlighting as for |
29960
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29954
diff
changeset
|
4376 // wait_return() |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11144
diff
changeset
|
4377 smsg_attr(HL_ATTR(HLF_R), |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
4378 _("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); |
169 | 4379 msg_no_more = FALSE; |
4380 msg_scroll = i; | |
4381 showruler(TRUE); | |
4382 windgoto(msg_row, msg_col); | |
4383 RedrawingDisabled = temp; | |
7 | 4384 |
4385 #ifdef USE_ON_FLY_SCROLL | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4386 dont_scroll = FALSE; // allow scrolling here |
169 | 4387 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4388 ++no_mapping; // don't map this key |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4389 ++allow_keys; // allow special keys |
1872 | 4390 typed = plain_vgetc(); |
169 | 4391 --allow_keys; |
4392 --no_mapping; | |
4393 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4394 // clear the question |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4395 msg_didout = FALSE; // don't scroll up |
169 | 4396 msg_col = 0; |
4397 gotocmdline(TRUE); | |
23638
062caef90f7f
patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
4398 p_lz = save_p_lz; |
4076 | 4399 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4400 // restore the line |
4076 | 4401 if (orig_line != NULL) |
4402 ml_replace(lnum, orig_line, FALSE); | |
169 | 4403 } |
4404 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4405 need_wait_return = FALSE; // no hit-return prompt |
1872 | 4406 if (typed == 'q' || typed == ESC || typed == Ctrl_C |
7 | 4407 #ifdef UNIX |
1872 | 4408 || typed == intr_char |
7 | 4409 #endif |
4410 ) | |
4411 { | |
4412 got_quit = TRUE; | |
4413 break; | |
4414 } | |
1872 | 4415 if (typed == 'n') |
7 | 4416 break; |
1872 | 4417 if (typed == 'y') |
7 | 4418 break; |
1872 | 4419 if (typed == 'l') |
7 | 4420 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4421 // last: replace and then stop |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4422 subflags.do_all = FALSE; |
7 | 4423 line2 = lnum; |
4424 break; | |
4425 } | |
1872 | 4426 if (typed == 'a') |
7 | 4427 { |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4428 subflags.do_ask = FALSE; |
7 | 4429 break; |
4430 } | |
1872 | 4431 if (typed == Ctrl_E) |
7 | 4432 scrollup_clamp(); |
1872 | 4433 else if (typed == Ctrl_Y) |
7 | 4434 scrolldown_clamp(); |
4435 } | |
4436 State = save_State; | |
4437 setmouse(); | |
4438 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
4439 --no_u_sync; | |
4440 | |
1872 | 4441 if (typed == 'n') |
7 | 4442 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4443 // For a multi-line match, put matchcol at the NUL at |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4444 // the end of the line and set nmatch to one, so that |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4445 // we continue looking for a match on the next line. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4446 // Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc" |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4447 // get stuck when pressing 'n'. |
7 | 4448 if (nmatch > 1) |
4449 { | |
835 | 4450 matchcol = (colnr_T)STRLEN(sub_firstline); |
1091 | 4451 skip_match = TRUE; |
7 | 4452 } |
4453 goto skip; | |
4454 } | |
4455 if (got_quit) | |
4099 | 4456 goto skip; |
7 | 4457 } |
4458 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4459 // Move the cursor to the start of the match, so that we can |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4460 // use "\=col("."). |
7 | 4461 curwin->w_cursor.col = regmatch.startpos[0].col; |
4462 | |
4463 /* | |
4464 * 3. substitute the string. | |
4465 */ | |
3736 | 4466 #ifdef FEAT_EVAL |
16716
5a541d459ef7
patch 8.1.1360: buffer left 'nomodifiable' after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16714
diff
changeset
|
4467 save_ma = curbuf->b_p_ma; |
29255
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
4468 save_sandbox = sandbox; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4469 if (subflags.do_count) |
3736 | 4470 { |
16686
6ea3f93b4428
patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents:
16662
diff
changeset
|
4471 // prevent accidentally changing the buffer by a function |
3736 | 4472 curbuf->b_p_ma = FALSE; |
4473 sandbox++; | |
4474 } | |
16686
6ea3f93b4428
patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents:
16662
diff
changeset
|
4475 // Save flags for recursion. They can change for e.g. |
6ea3f93b4428
patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents:
16662
diff
changeset
|
4476 // :s/^/\=execute("s#^##gn") |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4477 subflags_save = subflags; |
28909
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4478 |
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4479 // Disallow changing text or switching window in an expression. |
29014
45c182c4f7e9
patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents:
28909
diff
changeset
|
4480 ++textlock; |
16686
6ea3f93b4428
patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents:
16662
diff
changeset
|
4481 #endif |
29255
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
4482 // Get length of substitution part, including the NUL. |
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
4483 // When it fails sublen is zero. |
1499 | 4484 sublen = vim_regsub_multi(®match, |
4485 sub_firstlnum - regmatch.startpos[0].lnum, | |
29048
c98fc7a4dde4
patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
4486 sub, sub_firstline, 0, |
c98fc7a4dde4
patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
4487 REGSUB_BACKSLASH |
c98fc7a4dde4
patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
4488 | (magic_isset() ? REGSUB_MAGIC : 0)); |
3736 | 4489 #ifdef FEAT_EVAL |
29014
45c182c4f7e9
patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents:
28909
diff
changeset
|
4490 --textlock; |
28909
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4491 |
16113
9994c50f7879
patch 8.1.1061: when substitute string throws error, substitute happens anyway
Bram Moolenaar <Bram@vim.org>
parents:
16021
diff
changeset
|
4492 // If getting the substitute string caused an error, don't do |
9994c50f7879
patch 8.1.1061: when substitute string throws error, substitute happens anyway
Bram Moolenaar <Bram@vim.org>
parents:
16021
diff
changeset
|
4493 // the replacement. |
9994c50f7879
patch 8.1.1061: when substitute string throws error, substitute happens anyway
Bram Moolenaar <Bram@vim.org>
parents:
16021
diff
changeset
|
4494 // Don't keep flags set by a recursive call. |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4495 subflags = subflags_save; |
29255
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
4496 if (sublen == 0 || aborting() || subflags.do_count) |
3736 | 4497 { |
4498 curbuf->b_p_ma = save_ma; | |
29255
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
4499 sandbox = save_sandbox; |
3736 | 4500 goto skip; |
4501 } | |
4502 #endif | |
7 | 4503 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4504 // When the match included the "$" of the last line it may |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4505 // go beyond the last line of the buffer. |
533 | 4506 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
4507 { | |
4508 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; | |
4509 skip_match = TRUE; | |
4510 } | |
4511 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4512 // Need room for: |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4513 // - result so far in new_start (not for first sub in line) |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4514 // - original text up to match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4515 // - length of substituted part |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4516 // - original text after match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4517 // Adjust text properties here, since we have all information |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4518 // needed. |
7 | 4519 if (nmatch == 1) |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4520 { |
7 | 4521 p1 = sub_firstline; |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
4522 #ifdef FEAT_PROP_POPUP |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4523 if (curbuf->b_has_textprop) |
16698
23af483c4ceb
patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16686
diff
changeset
|
4524 { |
18444
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4525 int bytes_added = sublen - 1 - (regmatch.endpos[0].col |
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4526 - regmatch.startpos[0].col); |
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4527 |
16698
23af483c4ceb
patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16686
diff
changeset
|
4528 // When text properties are changed, need to save for |
23af483c4ceb
patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16686
diff
changeset
|
4529 // undo first, unless done already. |
18444
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4530 if (adjust_prop_columns(lnum, |
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4531 total_added + regmatch.startpos[0].col, |
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4532 bytes_added, apc_flags)) |
16714
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4533 apc_flags &= ~APC_SAVE_FOR_UNDO; |
18444
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4534 // Offset for column byte number of the text property |
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4535 // in the resulting buffer afterwards. |
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4536 total_added += bytes_added; |
16698
23af483c4ceb
patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16686
diff
changeset
|
4537 } |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4538 #endif |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4539 } |
7 | 4540 else |
4541 { | |
29609
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4542 linenr_T lastlnum = sub_firstlnum + nmatch - 1; |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4543 #ifdef FEAT_PROP_POPUP |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4544 if (curbuf->b_has_textprop) |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4545 { |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4546 char_u *prop_start; |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4547 |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4548 // Props in the first line may be shortened or deleted |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4549 if (adjust_prop_columns(lnum, |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4550 total_added + regmatch.startpos[0].col, |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4551 -MAXCOL, apc_flags)) |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4552 apc_flags &= ~APC_SAVE_FOR_UNDO; |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4553 total_added -= (colnr_T)STRLEN( |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4554 sub_firstline + regmatch.startpos[0].col); |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4555 |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4556 // Props in the last line may be moved or deleted |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4557 if (adjust_prop_columns(lastlnum, |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4558 0, -regmatch.endpos[0].col, apc_flags)) |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4559 // When text properties are changed, need to save |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4560 // for undo first, unless done already. |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4561 apc_flags &= ~APC_SAVE_FOR_UNDO; |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4562 |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4563 // Copy the text props of the last line, they will be |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4564 // later appended to the changed line. |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4565 text_prop_count = get_text_props(curbuf, lastlnum, |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4566 &prop_start, FALSE); |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4567 if (text_prop_count > 0) |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4568 { |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4569 // TODO: what when we already did this? |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4570 vim_free(text_props); |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4571 text_props = ALLOC_MULT(textprop_T, |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4572 text_prop_count); |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4573 if (text_props != NULL) |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4574 { |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4575 int pi; |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4576 |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4577 mch_memmove(text_props, prop_start, |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4578 text_prop_count * sizeof(textprop_T)); |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4579 // After joining the text prop columns will |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4580 // increase. |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4581 for (pi = 0; pi < text_prop_count; ++pi) |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4582 text_props[pi].tp_col += |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4583 regmatch.startpos[0].col + sublen - 1; |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4584 } |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4585 } |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4586 } |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4587 #endif |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4588 p1 = ml_get(lastlnum); |
7 | 4589 nmatch_tl += nmatch - 1; |
29609
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4590 #ifdef FEAT_PROP_POPUP |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4591 if (curbuf->b_has_textprop) |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4592 total_added += (colnr_T)STRLEN( |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4593 p1 + regmatch.endpos[0].col); |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4594 #endif |
7 | 4595 } |
1872 | 4596 copy_len = regmatch.startpos[0].col - copycol; |
4597 needed_len = copy_len + ((unsigned)STRLEN(p1) | |
4598 - regmatch.endpos[0].col) + sublen + 1; | |
7 | 4599 if (new_start == NULL) |
4600 { | |
4601 /* | |
4602 * Get some space for a temporary buffer to do the | |
4603 * substitution into (and some extra space to avoid | |
4604 * too many calls to alloc()/free()). | |
4605 */ | |
4606 new_start_len = needed_len + 50; | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4607 if ((new_start = alloc(new_start_len)) == NULL) |
7 | 4608 goto outofmem; |
4609 *new_start = NUL; | |
4610 new_end = new_start; | |
4611 } | |
4612 else | |
4613 { | |
4614 /* | |
4615 * Check if the temporary buffer is long enough to do the | |
4616 * substitution into. If not, make it larger (with a bit | |
4617 * extra to avoid too many calls to alloc()/free()). | |
4618 */ | |
4619 len = (unsigned)STRLEN(new_start); | |
4620 needed_len += len; | |
1872 | 4621 if (needed_len > (int)new_start_len) |
7 | 4622 { |
4623 new_start_len = needed_len + 50; | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4624 if ((p1 = alloc(new_start_len)) == NULL) |
7 | 4625 { |
4626 vim_free(new_start); | |
4627 goto outofmem; | |
4628 } | |
4629 mch_memmove(p1, new_start, (size_t)(len + 1)); | |
4630 vim_free(new_start); | |
4631 new_start = p1; | |
4632 } | |
4633 new_end = new_start + len; | |
4634 } | |
4635 | |
4636 /* | |
4637 * copy the text up to the part that matched | |
4638 */ | |
1872 | 4639 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); |
4640 new_end += copy_len; | |
7 | 4641 |
28909
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4642 #ifdef FEAT_EVAL |
29014
45c182c4f7e9
patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents:
28909
diff
changeset
|
4643 ++textlock; |
28909
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4644 #endif |
1499 | 4645 (void)vim_regsub_multi(®match, |
4646 sub_firstlnum - regmatch.startpos[0].lnum, | |
29048
c98fc7a4dde4
patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
4647 sub, new_end, sublen, |
c98fc7a4dde4
patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
4648 REGSUB_COPY | REGSUB_BACKSLASH |
c98fc7a4dde4
patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
4649 | (magic_isset() ? REGSUB_MAGIC : 0)); |
28909
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4650 #ifdef FEAT_EVAL |
29014
45c182c4f7e9
patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents:
28909
diff
changeset
|
4651 --textlock; |
28909
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4652 #endif |
7 | 4653 sub_nsubs++; |
4654 did_sub = TRUE; | |
4655 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4656 // Move the cursor to the start of the line, to avoid that it |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4657 // is beyond the end of the line after the substitution. |
7 | 4658 curwin->w_cursor.col = 0; |
4659 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4660 // For a multi-line match, make a copy of the last matched |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4661 // line and continue in that one. |
7 | 4662 if (nmatch > 1) |
4663 { | |
4664 sub_firstlnum += nmatch - 1; | |
4665 vim_free(sub_firstline); | |
4666 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4667 // When going beyond the last line, stop substituting. |
7 | 4668 if (sub_firstlnum <= line2) |
4669 do_again = TRUE; | |
4670 else | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4671 subflags.do_all = FALSE; |
7 | 4672 } |
4673 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4674 // Remember next character to be copied. |
7 | 4675 copycol = regmatch.endpos[0].col; |
4676 | |
819 | 4677 if (skip_match) |
4678 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4679 // Already hit end of the buffer, sub_firstlnum is one |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4680 // less than what it ought to be. |
819 | 4681 vim_free(sub_firstline); |
4682 sub_firstline = vim_strsave((char_u *)""); | |
4683 copycol = 0; | |
4684 } | |
4685 | |
7 | 4686 /* |
4687 * Now the trick is to replace CTRL-M chars with a real line | |
4688 * break. This would make it impossible to insert a CTRL-M in | |
4689 * the text. The line break can be avoided by preceding the | |
4690 * CTRL-M with a backslash. To be able to insert a backslash, | |
4691 * they must be doubled in the string and are halved here. | |
4692 * That is Vi compatible. | |
4693 */ | |
4694 for (p1 = new_end; *p1; ++p1) | |
4695 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4696 if (p1[0] == '\\' && p1[1] != NUL) // remove backslash |
16714
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4697 { |
1624 | 4698 STRMOVE(p1, p1 + 1); |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
4699 #ifdef FEAT_PROP_POPUP |
16714
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4700 if (curbuf->b_has_textprop) |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4701 { |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4702 // When text properties are changed, need to save |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4703 // for undo first, unless done already. |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4704 if (adjust_prop_columns(lnum, |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4705 (colnr_T)(p1 - new_start), -1, |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4706 apc_flags)) |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4707 apc_flags &= ~APC_SAVE_FOR_UNDO; |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4708 } |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4709 #endif |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4710 } |
7 | 4711 else if (*p1 == CAR) |
4712 { | |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4713 if (u_inssub(lnum) == OK) // prepare for undo |
7 | 4714 { |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4715 colnr_T plen = (colnr_T)(p1 - new_start + 1); |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4716 |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4717 *p1 = NUL; // truncate up to the CR |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4718 ml_append(lnum - 1, new_start, plen, FALSE); |
7 | 4719 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4720 if (subflags.do_ask) |
7 | 4721 appended_lines(lnum - 1, 1L); |
4722 else | |
4723 { | |
4724 if (first_line == 0) | |
4725 first_line = lnum; | |
4726 last_line = lnum + 1; | |
4727 } | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
4728 #ifdef FEAT_PROP_POPUP |
30263
568ec1c3c34b
patch 9.0.0467: build failure
Bram Moolenaar <Bram@vim.org>
parents:
30243
diff
changeset
|
4729 adjust_props_for_split(lnum + 1, lnum, |
568ec1c3c34b
patch 9.0.0467: build failure
Bram Moolenaar <Bram@vim.org>
parents:
30243
diff
changeset
|
4730 plen, 1, FALSE); |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4731 #endif |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4732 // all line numbers increase |
7 | 4733 ++sub_firstlnum; |
4734 ++lnum; | |
4735 ++line2; | |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4736 // move the cursor to the new line, like Vi |
7 | 4737 ++curwin->w_cursor.lnum; |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4738 // copy the rest |
1624 | 4739 STRMOVE(new_start, p1 + 1); |
7 | 4740 p1 = new_start - 1; |
4741 } | |
4742 } | |
4743 else if (has_mbyte) | |
474 | 4744 p1 += (*mb_ptr2len)(p1) - 1; |
7 | 4745 } |
4746 | |
4747 /* | |
4748 * 4. If do_all is set, find next match. | |
4749 * Prevent endless loop with patterns that match empty | |
4750 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. | |
4751 * But ":s/\n/#/" is OK. | |
4752 */ | |
4753 skip: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4754 // We already know that we did the last subst when we are at |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4755 // the end of the line, except that a pattern like |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4756 // "bar\|\nfoo" may match at the NUL. "lnum" can be below |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4757 // "line2" when there is a \zs in the pattern after a line |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4758 // break. |
15 | 4759 lastone = (skip_match |
4760 || got_int | |
4761 || got_quit | |
1499 | 4762 || lnum > line2 |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4763 || !(subflags.do_all || do_again) |
15 | 4764 || (sub_firstline[matchcol] == NUL && nmatch <= 1 |
4765 && !re_multiline(regmatch.regprog))); | |
7 | 4766 nmatch = -1; |
4767 | |
4768 /* | |
4769 * Replace the line in the buffer when needed. This is | |
4770 * skipped when there are more matches. | |
4771 * The check for nmatch_tl is needed for when multi-line | |
4772 * matching must replace the lines before trying to do another | |
4773 * match, otherwise "\@<=" won't work. | |
1499 | 4774 * When the match starts below where we start searching also |
4775 * need to replace the line first (using \zs after \n). | |
7 | 4776 */ |
4777 if (lastone | |
4778 || nmatch_tl > 0 | |
4779 || (nmatch = vim_regexec_multi(®match, curwin, | |
1521 | 4780 curbuf, sub_firstlnum, |
29071
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29048
diff
changeset
|
4781 matchcol, NULL)) == 0 |
1499 | 4782 || regmatch.startpos[0].lnum > 0) |
7 | 4783 { |
4784 if (new_start != NULL) | |
4785 { | |
4786 /* | |
4787 * Copy the rest of the line, that didn't match. | |
4788 * "matchcol" has to be adjusted, we use the end of | |
4789 * the line as reference, because the substitute may | |
4790 * have changed the number of characters. Same for | |
4791 * "prev_matchcol". | |
4792 */ | |
4793 STRCAT(new_start, sub_firstline + copycol); | |
4794 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
4795 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
4796 - prev_matchcol; | |
4797 | |
4798 if (u_savesub(lnum) != OK) | |
4799 break; | |
4800 ml_replace(lnum, new_start, TRUE); | |
29609
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4801 #ifdef FEAT_PROP_POPUP |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4802 if (text_props != NULL) |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4803 add_text_props(lnum, text_props, text_prop_count); |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4804 #endif |
7 | 4805 if (nmatch_tl > 0) |
4806 { | |
4807 /* | |
4808 * Matched lines have now been substituted and are | |
4809 * useless, delete them. The part after the match | |
4810 * has been appended to new_start, we don't need | |
4811 * it in the buffer. | |
4812 */ | |
4813 ++lnum; | |
4814 if (u_savedel(lnum, nmatch_tl) != OK) | |
4815 break; | |
4816 for (i = 0; i < nmatch_tl; ++i) | |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20561
diff
changeset
|
4817 ml_delete(lnum); |
7 | 4818 mark_adjust(lnum, lnum + nmatch_tl - 1, |
4819 (long)MAXLNUM, -nmatch_tl); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4820 if (subflags.do_ask) |
7 | 4821 deleted_lines(lnum, nmatch_tl); |
4822 --lnum; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4823 line2 -= nmatch_tl; // nr of lines decreases |
7 | 4824 nmatch_tl = 0; |
4825 } | |
4826 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4827 // When asking, undo is saved each time, must also set |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4828 // changed flag each time. |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4829 if (subflags.do_ask) |
7 | 4830 changed_bytes(lnum, 0); |
4831 else | |
4832 { | |
4833 if (first_line == 0) | |
4834 first_line = lnum; | |
4835 last_line = lnum + 1; | |
4836 } | |
4837 | |
4838 sub_firstlnum = lnum; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4839 vim_free(sub_firstline); // free the temp buffer |
7 | 4840 sub_firstline = new_start; |
4841 new_start = NULL; | |
4842 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
4843 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
4844 - prev_matchcol; | |
4845 copycol = 0; | |
4846 } | |
4847 if (nmatch == -1 && !lastone) | |
4848 nmatch = vim_regexec_multi(®match, curwin, curbuf, | |
29071
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29048
diff
changeset
|
4849 sub_firstlnum, matchcol, NULL); |
7 | 4850 |
4851 /* | |
4852 * 5. break if there isn't another match in this line | |
4853 */ | |
4854 if (nmatch <= 0) | |
1499 | 4855 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4856 // If the match found didn't start where we were |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4857 // searching, do the next search in the line where we |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4858 // found the match. |
1499 | 4859 if (nmatch == -1) |
4860 lnum -= regmatch.startpos[0].lnum; | |
7 | 4861 break; |
1499 | 4862 } |
7 | 4863 } |
4864 | |
4865 line_breakcheck(); | |
4866 } | |
4867 | |
4868 if (did_sub) | |
4869 ++sub_nlines; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4870 vim_free(new_start); // for when substitute was cancelled |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4871 VIM_CLEAR(sub_firstline); // free the copy of the original line |
7 | 4872 } |
4873 | |
4874 line_breakcheck(); | |
4875 } | |
4876 | |
4877 if (first_line != 0) | |
4878 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4879 // Need to subtract the number of added lines from "last_line" to get |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4880 // the line number before the change (same as adding the number of |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4881 // deleted lines). |
7 | 4882 i = curbuf->b_ml.ml_line_count - old_line_count; |
4883 changed_lines(first_line, 0, last_line - i, i); | |
4884 } | |
4885 | |
4886 outofmem: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4887 vim_free(sub_firstline); // may have to free allocated copy of the line |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4888 |
29609
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4889 #ifdef FEAT_PROP_POPUP |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4890 vim_free(text_props); |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4891 #endif |
e1c370197030
patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
4892 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4893 // ":s/pat//n" doesn't move the cursor |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4894 if (subflags.do_count) |
170 | 4895 curwin->w_cursor = old_cursor; |
4896 | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4897 if (sub_nsubs > start_nsubs) |
7 | 4898 { |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
4899 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0) |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4900 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4901 // Set the '[ and '] marks. |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4902 curbuf->b_op_start.lnum = eap->line1; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4903 curbuf->b_op_end.lnum = line2; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4904 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4905 } |
7 | 4906 |
4907 if (!global_busy) | |
4908 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4909 // when interactive leave cursor on the match |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4910 if (!subflags.do_ask) |
3394 | 4911 { |
4912 if (endcolumn) | |
4913 coladvance((colnr_T)MAXCOL); | |
4914 else | |
4915 beginline(BL_WHITE | BL_FIX); | |
4916 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4917 if (!do_sub_msg(subflags.do_count) && subflags.do_ask) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
4918 msg(""); |
7 | 4919 } |
4920 else | |
4921 global_need_beginline = TRUE; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4922 if (subflags.do_print) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4923 print_line(curwin->w_cursor.lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4924 subflags.do_number, subflags.do_list); |
7 | 4925 } |
4926 else if (!global_busy) | |
4927 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4928 if (got_int) // interrupted |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
4929 emsg(_(e_interrupted)); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4930 else if (got_match) // did find something but nothing substituted |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
4931 msg(""); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4932 else if (subflags.do_error) // nothing found |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
4933 semsg(_(e_pattern_not_found_str), get_search_pat()); |
7 | 4934 } |
4935 | |
4035 | 4936 #ifdef FEAT_FOLDING |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4937 if (subflags.do_ask && hasAnyFolding(curwin)) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4938 // Cursor position may require updating |
4035 | 4939 changed_window_setting(); |
4940 #endif | |
4941 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
4942 vim_regfree(regmatch.regprog); |
27449
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4943 vim_free(sub_copy); |
6789 | 4944 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4945 // Restore the flag values, they can be used for ":&&". |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4946 subflags.do_all = save_do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4947 subflags.do_ask = save_do_ask; |
7 | 4948 } |
4949 | |
4950 /* | |
4951 * Give message for number of substitutions. | |
4952 * Can also be used after a ":global" command. | |
4953 * Return TRUE if a message was given. | |
4954 */ | |
484 | 4955 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4956 do_sub_msg( |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4957 int count_only) // used 'n' flag for ":s" |
7 | 4958 { |
4959 /* | |
4960 * Only report substitutions when: | |
4961 * - more than 'report' substitutions | |
4962 * - command was typed by user, or number of changed lines > 'report' | |
4963 * - giving messages is not disabled by 'lazyredraw' | |
4964 */ | |
170 | 4965 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
4966 || count_only) | |
7 | 4967 && messaging()) |
4968 { | |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4969 char *msg_single; |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4970 char *msg_plural; |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4971 |
7 | 4972 if (got_int) |
4973 STRCPY(msg_buf, _("(Interrupted) ")); | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
4974 else |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
4975 *msg_buf = NUL; |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4976 |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4977 msg_single = count_only |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4978 ? NGETTEXT("%ld match on %ld line", |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4979 "%ld matches on %ld line", sub_nsubs) |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4980 : NGETTEXT("%ld substitution on %ld line", |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4981 "%ld substitutions on %ld line", sub_nsubs); |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4982 msg_plural = count_only |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4983 ? NGETTEXT("%ld match on %ld lines", |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4984 "%ld matches on %ld lines", sub_nsubs) |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4985 : NGETTEXT("%ld substitution on %ld lines", |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4986 "%ld substitutions on %ld lines", sub_nsubs); |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4987 |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
4988 vim_snprintf_add(msg_buf, sizeof(msg_buf), |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4989 NGETTEXT(msg_single, msg_plural, sub_nlines), |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4990 sub_nsubs, (long)sub_nlines); |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4991 |
7 | 4992 if (msg(msg_buf)) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4993 // save message to display it after redraw |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
4994 set_keep_msg((char_u *)msg_buf, 0); |
7 | 4995 return TRUE; |
4996 } | |
4997 if (got_int) | |
4998 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
4999 emsg(_(e_interrupted)); |
7 | 5000 return TRUE; |
5001 } | |
5002 return FALSE; | |
5003 } | |
5004 | |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5005 static void |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5006 global_exe_one(char_u *cmd, linenr_T lnum) |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5007 { |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5008 curwin->w_cursor.lnum = lnum; |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5009 curwin->w_cursor.col = 0; |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5010 if (*cmd == NUL || *cmd == '\n') |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5011 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT); |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5012 else |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5013 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT); |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5014 } |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5015 |
7 | 5016 /* |
5017 * Execute a global command of the form: | |
5018 * | |
5019 * g/pattern/X : execute X on all lines where pattern matches | |
5020 * v/pattern/X : execute X on all lines where pattern does not match | |
5021 * | |
5022 * where 'X' is an EX command | |
5023 * | |
5024 * The command character (as well as the trailing slash) is optional, and | |
5025 * is assumed to be 'p' if missing. | |
5026 * | |
5027 * This is implemented in two passes: first we scan the file for the pattern and | |
3786 | 5028 * set a mark for each line that (not) matches. Secondly we execute the command |
7 | 5029 * for each line that has a mark. This is required because after deleting |
5030 * lines we do not know where to search for the next match. | |
5031 */ | |
5032 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5033 ex_global(exarg_T *eap) |
7 | 5034 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5035 linenr_T lnum; // line number according to old situation |
170 | 5036 int ndone = 0; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5037 int type; // first char of cmd: 'v' or 'g' |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5038 char_u *cmd; // command argument |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5039 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5040 char_u delim; // delimiter, normally '/' |
7 | 5041 char_u *pat; |
31519
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
5042 char_u *used_pat; |
7 | 5043 regmmatch_T regmatch; |
5044 int match; | |
5045 int which_pat; | |
5046 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5047 // When nesting the command works on one line. This allows for |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5048 // ":g/found/v/notfound/command". |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5049 if (global_busy && (eap->line1 != 1 |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5050 || eap->line2 != curbuf->b_ml.ml_line_count)) |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5051 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5052 // will increment global_busy to break out of the loop |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
5053 emsg(_(e_cannot_do_global_recursive_with_range)); |
7 | 5054 return; |
5055 } | |
5056 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5057 if (eap->forceit) // ":global!" is like ":vglobal" |
7 | 5058 type = 'v'; |
5059 else | |
5060 type = *eap->cmd; | |
5061 cmd = eap->arg; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5062 which_pat = RE_LAST; // default: use last used regexp |
7 | 5063 |
25943
dbf6a2066091
patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
25939
diff
changeset
|
5064 #ifdef FEAT_EVAL |
25939
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25729
diff
changeset
|
5065 if (in_vim9script() && check_global_and_subst(eap->cmd, eap->arg) == FAIL) |
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25729
diff
changeset
|
5066 return; |
25943
dbf6a2066091
patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
25939
diff
changeset
|
5067 #endif |
25939
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25729
diff
changeset
|
5068 |
7 | 5069 /* |
5070 * undocumented vi feature: | |
5071 * "\/" and "\?": use previous search pattern. | |
5072 * "\&": use previous substitute pattern. | |
5073 */ | |
5074 if (*cmd == '\\') | |
5075 { | |
5076 ++cmd; | |
5077 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
5078 { | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24992
diff
changeset
|
5079 emsg(_(e_backslash_should_be_followed_by)); |
7 | 5080 return; |
5081 } | |
5082 if (*cmd == '&') | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5083 which_pat = RE_SUBST; // use previous substitute pattern |
7 | 5084 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5085 which_pat = RE_SEARCH; // use previous search pattern |
7 | 5086 ++cmd; |
5087 pat = (char_u *)""; | |
5088 } | |
5089 else if (*cmd == NUL) | |
5090 { | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
5091 emsg(_(e_regular_expression_missing_from_global)); |
7 | 5092 return; |
5093 } | |
24992
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
5094 else if (check_regexp_delim(*cmd) == FAIL) |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
5095 { |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
5096 return; |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
5097 } |
7 | 5098 else |
5099 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5100 delim = *cmd; // get the delimiter |
28451
e015d650ea9f
patch 8.2.4750: small pieces of dead code
Bram Moolenaar <Bram@vim.org>
parents:
28371
diff
changeset
|
5101 ++cmd; // skip delimiter if there is one |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5102 pat = cmd; // remember start of pattern |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23376
diff
changeset
|
5103 cmd = skip_regexp_ex(cmd, delim, magic_isset(), &eap->arg, NULL, NULL); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5104 if (cmd[0] == delim) // end delimiter found |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5105 *cmd++ = NUL; // replace it with a NUL |
7 | 5106 } |
5107 | |
31519
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
5108 if (search_regcomp(pat, &used_pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) |
7 | 5109 { |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21773
diff
changeset
|
5110 emsg(_(e_invalid_command)); |
7 | 5111 return; |
5112 } | |
5113 | |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5114 if (global_busy) |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5115 { |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5116 lnum = curwin->w_cursor.lnum; |
1521 | 5117 match = vim_regexec_multi(®match, curwin, curbuf, lnum, |
29071
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29048
diff
changeset
|
5118 (colnr_T)0, NULL); |
7 | 5119 if ((type == 'g' && match) || (type == 'v' && !match)) |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5120 global_exe_one(cmd, lnum); |
7 | 5121 } |
5122 else | |
6116 | 5123 { |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5124 /* |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5125 * pass 1: set marks for each (not) matching line |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5126 */ |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5127 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum) |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5128 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5129 // a match on this line? |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5130 match = vim_regexec_multi(®match, curwin, curbuf, lnum, |
29071
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29048
diff
changeset
|
5131 (colnr_T)0, NULL); |
26709
0c5daf5e5514
patch 8.2.3883: crash when switching to other regexp engine fails
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5132 if (regmatch.regprog == NULL) |
0c5daf5e5514
patch 8.2.3883: crash when switching to other regexp engine fails
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5133 break; // re-compiling regprog failed |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5134 if ((type == 'g' && match) || (type == 'v' && !match)) |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5135 { |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5136 ml_setmarked(lnum); |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5137 ndone++; |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5138 } |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5139 line_breakcheck(); |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5140 } |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5141 |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5142 /* |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5143 * pass 2: execute the command for each line that has been marked |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5144 */ |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5145 if (got_int) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
5146 msg(_(e_interrupted)); |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5147 else if (ndone == 0) |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5148 { |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5149 if (type == 'v') |
27962
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5150 { |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5151 if (in_vim9script()) |
31519
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
5152 semsg(_(e_pattern_found_in_every_line_str), used_pat); |
27962
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5153 else |
31519
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
5154 smsg(_("Pattern found in every line: %s"), used_pat); |
27962
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5155 } |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5156 else |
27962
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5157 { |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5158 if (in_vim9script()) |
31519
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
5159 semsg(_(e_pattern_not_found_str), used_pat); |
27962
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5160 else |
31519
0e92ffdd9ea7
patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents:
31059
diff
changeset
|
5161 smsg(_("Pattern not found: %s"), used_pat); |
27962
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5162 } |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5163 } |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5164 else |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5165 { |
6116 | 5166 #ifdef FEAT_CLIPBOARD |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5167 start_global_changes(); |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5168 #endif |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5169 global_exe(cmd); |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5170 #ifdef FEAT_CLIPBOARD |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5171 end_global_changes(); |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5172 #endif |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5173 } |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5174 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5175 ml_clearmarked(); // clear rest of the marks |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5176 } |
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5177 |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
5178 vim_regfree(regmatch.regprog); |
7 | 5179 } |
5180 | |
5181 /* | |
5182 * Execute "cmd" on lines marked with ml_setmarked(). | |
5183 */ | |
5184 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5185 global_exe(char_u *cmd) |
7 | 5186 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5187 linenr_T old_lcount; // b_ml.ml_line_count before the command |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5188 buf_T *old_buf = curbuf; // remember what buffer we started in |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5189 linenr_T lnum; // line number according to old situation |
7 | 5190 |
5191 /* | |
5192 * Set current position only once for a global command. | |
5193 * If global_busy is set, setpcmark() will not do anything. | |
5194 * If there is an error, global_busy will be incremented. | |
5195 */ | |
5196 setpcmark(); | |
5197 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5198 // When the command writes a message, don't overwrite the command. |
7 | 5199 msg_didout = TRUE; |
5200 | |
2127
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
5201 sub_nsubs = 0; |
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
5202 sub_nlines = 0; |
7 | 5203 global_need_beginline = FALSE; |
5204 global_busy = 1; | |
5205 old_lcount = curbuf->b_ml.ml_line_count; | |
5206 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) | |
5207 { | |
11494
8e5ec22db3d8
patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
5208 global_exe_one(cmd, lnum); |
7 | 5209 ui_breakcheck(); |
5210 } | |
5211 | |
5212 global_busy = 0; | |
5213 if (global_need_beginline) | |
5214 beginline(BL_WHITE | BL_FIX); | |
5215 else | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5216 check_cursor(); // cursor may be beyond the end of the line |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5217 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5218 // the cursor may not have moved in the text but a change in a previous |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5219 // line may move it on the screen |
39 | 5220 changed_line_abv_curs(); |
5221 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5222 // If it looks like no message was written, allow overwriting the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5223 // command with the report for number of changes. |
7 | 5224 if (msg_col == 0 && msg_scrolled == 0) |
5225 msg_didout = FALSE; | |
5226 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5227 // If substitutes done, report number of substitutes, otherwise report |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5228 // number of extra or deleted lines. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5229 // Don't report extra or deleted lines in the edge case where the buffer |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5230 // we are in after execution is different from the buffer we started in. |
2819 | 5231 if (!do_sub_msg(FALSE) && curbuf == old_buf) |
7 | 5232 msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
5233 } | |
5234 | |
5235 #ifdef FEAT_VIMINFO | |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5236 /* |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5237 * Get the previous substitute pattern. |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5238 */ |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5239 char_u * |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5240 get_old_sub(void) |
7 | 5241 { |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5242 return old_sub; |
7 | 5243 } |
5244 | |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5245 /* |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5246 * Set the previous substitute pattern. "val" must be allocated. |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5247 */ |
7 | 5248 void |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5249 set_old_sub(char_u *val) |
7 | 5250 { |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5251 vim_free(old_sub); |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5252 old_sub = val; |
7 | 5253 } |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17431
diff
changeset
|
5254 #endif // FEAT_VIMINFO |
7 | 5255 |
359 | 5256 #if defined(EXITFREE) || defined(PROTO) |
5257 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5258 free_old_sub(void) |
359 | 5259 { |
5260 vim_free(old_sub); | |
5261 } | |
5262 #endif | |
5263 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12297
diff
changeset
|
5264 #if defined(FEAT_QUICKFIX) || defined(PROTO) |
7 | 5265 /* |
5266 * Set up for a tagpreview. | |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5267 * Makes the preview window the current window. |
735 | 5268 * Return TRUE when it was created. |
7 | 5269 */ |
735 | 5270 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5271 prepare_tagpreview( |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
5272 int undo_sync, // sync undo when leaving the window |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
5273 int use_previewpopup, // use popup if 'previewpopup' set |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5274 use_popup_T use_popup) // use other popup window |
7 | 5275 { |
5276 win_T *wp; | |
5277 | |
5278 # ifdef FEAT_GUI | |
5279 need_mouse_correct = TRUE; | |
5280 # endif | |
5281 | |
5282 /* | |
5283 * If there is already a preview window open, use that one. | |
5284 */ | |
5285 if (!curwin->w_p_pvw) | |
5286 { | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
5287 # ifdef FEAT_PROP_POPUP |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
5288 if (use_previewpopup && *p_pvp != NUL) |
17431
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5289 { |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5290 wp = popup_find_preview_window(); |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5291 if (wp != NULL) |
18558
e5ef5d820b5b
patch 8.1.2273: wrong default when "pos" is changed with popup_atcursor()
Bram Moolenaar <Bram@vim.org>
parents:
18483
diff
changeset
|
5292 popup_set_wantpos_cursor(wp, wp->w_minwidth, NULL); |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
5293 } |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5294 else if (use_popup != USEPOPUP_NONE) |
17767
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
5295 { |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
5296 wp = popup_find_info_window(); |
17817
e8a7029efa40
patch 8.1.1905: cannot set all properties of the info popup
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
5297 if (wp != NULL) |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5298 { |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5299 if (use_popup == USEPOPUP_NORMAL) |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5300 popup_show(wp); |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5301 else |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5302 popup_hide(wp); |
18566
bb256b1fabf7
patch 8.1.2277: terminal window is not updated when info popup changes
Bram Moolenaar <Bram@vim.org>
parents:
18558
diff
changeset
|
5303 // When the popup moves or resizes it may reveal part of |
bb256b1fabf7
patch 8.1.2277: terminal window is not updated when info popup changes
Bram Moolenaar <Bram@vim.org>
parents:
18558
diff
changeset
|
5304 // another window. TODO: can this be done more efficiently? |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29609
diff
changeset
|
5305 redraw_all_later(UPD_NOT_VALID); |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5306 } |
17431
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5307 } |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5308 else |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5309 # endif |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5310 { |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5311 FOR_ALL_WINDOWS(wp) |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5312 if (wp->w_p_pvw) |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5313 break; |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5314 } |
7 | 5315 if (wp != NULL) |
816 | 5316 win_enter(wp, undo_sync); |
7 | 5317 else |
5318 { | |
5319 /* | |
5320 * There is no preview window open yet. Create one. | |
5321 */ | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
5322 # ifdef FEAT_PROP_POPUP |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5323 if ((use_previewpopup && *p_pvp != NUL) |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5324 || use_popup != USEPOPUP_NONE) |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5325 return popup_create_preview_window(use_popup != USEPOPUP_NONE); |
17431
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5326 # endif |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5327 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) == FAIL) |
735 | 5328 return FALSE; |
7 | 5329 curwin->w_p_pvw = TRUE; |
5330 curwin->w_p_wfh = TRUE; | |
17431
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5331 RESET_BINDING(curwin); // don't take over 'scrollbind' |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5332 // and 'cursorbind' |
7 | 5333 # ifdef FEAT_DIFF |
17431
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5334 curwin->w_p_diff = FALSE; // no 'diff' |
7 | 5335 # endif |
5336 # ifdef FEAT_FOLDING | |
17431
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5337 curwin->w_p_fdc = 0; // no 'foldcolumn' |
7 | 5338 # endif |
735 | 5339 return TRUE; |
7 | 5340 } |
5341 } | |
735 | 5342 return FALSE; |
7 | 5343 } |
5344 | |
5345 #endif | |
5346 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5347 /* |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5348 * Make the user happy. |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5349 */ |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5350 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5351 ex_smile(exarg_T *eap UNUSED) |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5352 { |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5353 static char *code[] = { |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5354 "\34 \4o\14$\4ox\30 \2o\30$\1ox\25 \2o\36$\1o\11 \1o\1$\3 \2$\1 \1o\1$x\5 \1o\1 \1$\1 \2o\10 \1o\44$\1o\7 \2$\1 \2$\1 \2$\1o\1$x\2 \2o\1 \1$\1 \1$\1 \1\"\1$\6 \1o\11$\4 \15$\4 \11$\1o\7 \3$\1o\2$\1o\1$x\2 \1\"\6$\1o\1$\5 \1o\11$\6 \13$\6 \12$\1o\4 \10$x\4 \7$\4 \13$\6 \13$\6 \27$x\4 \27$\4 \15$\4 \16$\2 \3\"\3$x\5 \1\"\3$\4\"\61$\5 \1\"\3$x\6 \3$\3 \1o\62$\5 \1\"\3$\1ox\5 \1o\2$\1\"\3 \63$\7 \3$\1ox\5 \3$\4 \55$\1\"\1 \1\"\6$", |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5355 "\5o\4$\1ox\4 \1o\3$\4o\5$\2 \45$\3 \1o\21$x\4 \10$\1\"\4$\3 \42$\5 \4$\10\"x\3 \4\"\7 \4$\4 \1\"\34$\1\"\6 \1o\3$x\16 \1\"\3$\1o\5 \3\"\22$\1\"\2$\1\"\11 \3$x\20 \3$\1o\12 \1\"\2$\2\"\6$\4\"\13 \1o\3$x\21 \4$\1o\40 \1o\3$\1\"x\22 \1\"\4$\1o\6 \1o\6$\1o\1\"\4$\1o\10 \1o\4$x\24 \1\"\5$\2o\5 \2\"\4$\1o\5$\1o\3 \1o\4$\2\"x\27 \2\"\5$\4o\2 \1\"\3$\1o\11$\3\"x\32 \2\"\7$\2o\1 \12$x\42 \4\"\13$x\46 \14$x\47 \12$\1\"x\50 \1\"\3$\4\"x" |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5356 }; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5357 char *p; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5358 int n; |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5359 int i; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5360 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5361 msg_start(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5362 msg_putchar('\n'); |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5363 for (i = 0; i < 2; ++i) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5364 for (p = code[i]; *p != NUL; ++p) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5365 if (*p == 'x') |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5366 msg_putchar('\n'); |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5367 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5368 for (n = *p++; n > 0; --n) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5369 if (*p == 'o' || *p == '$') |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11144
diff
changeset
|
5370 msg_putchar_attr(*p, HL_ATTR(HLF_L)); |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5371 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5372 msg_putchar(*p); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5373 msg_clr_eos(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5374 } |
7 | 5375 |
5376 /* | |
5377 * ":drop" | |
5378 * Opens the first argument in a window. When there are two or more arguments | |
5379 * the argument list is redefined. | |
5380 */ | |
5381 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5382 ex_drop(exarg_T *eap) |
7 | 5383 { |
5384 int split = FALSE; | |
5385 win_T *wp; | |
5386 buf_T *buf; | |
735 | 5387 tabpage_T *tp; |
7 | 5388 |
20561
18c52f380193
patch 8.2.0834: :drop command in terminal popup causes problems
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
5389 if (ERROR_IF_POPUP_WINDOW || ERROR_IF_TERM_POPUP_WINDOW) |
18c52f380193
patch 8.2.0834: :drop command in terminal popup causes problems
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
5390 return; |
18c52f380193
patch 8.2.0834: :drop command in terminal popup causes problems
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
5391 |
7 | 5392 /* |
5393 * Check if the first argument is already being edited in a window. If | |
5394 * so, jump to that window. | |
5395 * We would actually need to check all arguments, but that's complicated | |
5396 * and mostly only one file is dropped. | |
5397 * This also ignores wildcards, since it is very unlikely the user is | |
5398 * editing a file name with a wildcard character. | |
5399 */ | |
735 | 5400 set_arglist(eap->arg); |
5401 | |
1067 | 5402 /* |
5403 * Expanding wildcards may result in an empty argument list. E.g. when | |
5404 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we | |
5405 * already did an error message for this. | |
5406 */ | |
5407 if (ARGCOUNT == 0) | |
5408 return; | |
5409 | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
5410 if (cmdmod.cmod_tab) |
735 | 5411 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5412 // ":tab drop file ...": open a tab for each argument that isn't |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5413 // edited in a window yet. It's like ":tab all" but without closing |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5414 // windows or tabs. |
735 | 5415 ex_all(eap); |
5416 } | |
5417 else | |
5418 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5419 // ":drop file ...": Edit the first argument. Jump to an existing |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5420 // window if possible, edit in current window if the current buffer |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5421 // can be abandoned, otherwise open a new window. |
735 | 5422 buf = buflist_findnr(ARGLIST[0].ae_fnum); |
5423 | |
5424 FOR_ALL_TAB_WINDOWS(tp, wp) | |
5425 { | |
5426 if (wp->w_buffer == buf) | |
7 | 5427 { |
825 | 5428 goto_tabpage_win(tp, wp); |
7 | 5429 curwin->w_arg_idx = 0; |
23376
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5430 if (!bufIsChanged(curbuf)) |
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5431 { |
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5432 int save_ar = curbuf->b_p_ar; |
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5433 |
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5434 // reload the file if it is newer |
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5435 curbuf->b_p_ar = TRUE; |
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5436 buf_check_timestamp(curbuf, FALSE); |
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5437 curbuf->b_p_ar = save_ar; |
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5438 } |
7 | 5439 return; |
5440 } | |
5441 } | |
735 | 5442 |
5443 /* | |
5444 * Check whether the current buffer is changed. If so, we will need | |
5445 * to split the current window or data could be lost. | |
5446 * Skip the check if the 'hidden' option is set, as in this case the | |
5447 * buffer won't be lost. | |
5448 */ | |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
5449 if (!buf_hide(curbuf)) |
735 | 5450 { |
5451 ++emsg_off; | |
5464 | 5452 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD); |
735 | 5453 --emsg_off; |
5454 } | |
5455 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5456 // Fake a ":sfirst" or ":first" command edit the first argument. |
735 | 5457 if (split) |
5458 { | |
5459 eap->cmdidx = CMD_sfirst; | |
5460 eap->cmd[0] = 's'; | |
5461 } | |
5462 else | |
5463 eap->cmdidx = CMD_first; | |
5464 ex_rewind(eap); | |
5465 } | |
7 | 5466 } |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5467 |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5468 /* |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5469 * Skip over the pattern argument of ":vimgrep /pat/[g][j]". |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5470 * Put the start of the pattern in "*s", unless "s" is NULL. |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5471 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP. |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5472 * If "s" is not NULL terminate the pattern with a NUL. |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5473 * Return a pointer to the char just past the pattern plus flags. |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5474 */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5475 char_u * |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5476 skip_vimgrep_pat(char_u *p, char_u **s, int *flags) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5477 { |
24834
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5478 return skip_vimgrep_pat_ext(p, s, flags, NULL, NULL); |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5479 } |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5480 |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5481 /* |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5482 * As skip_vimgrep_pat() and store the character overwritten by NUL in "cp" |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5483 * and the pointer to it in "nulp". |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5484 */ |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5485 char_u * |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5486 skip_vimgrep_pat_ext(char_u *p, char_u **s, int *flags, char_u **nulp, int *cp) |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5487 { |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5488 int c; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5489 |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5490 if (vim_isIDc(*p)) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5491 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5492 // ":vimgrep pattern fname" |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5493 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5494 *s = p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5495 p = skiptowhite(p); |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5496 if (s != NULL && *p != NUL) |
24834
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5497 { |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5498 if (nulp != NULL) |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5499 { |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5500 *nulp = p; |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5501 *cp = *p; |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5502 } |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5503 *p++ = NUL; |
24834
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5504 } |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5505 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5506 else |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5507 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5508 // ":vimgrep /pattern/[g][j] fname" |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5509 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5510 *s = p + 1; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5511 c = *p; |
19892
5feb426d2ea1
patch 8.2.0502: Vim9: some code is not tested
Bram Moolenaar <Bram@vim.org>
parents:
19693
diff
changeset
|
5512 p = skip_regexp(p + 1, c, TRUE); |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5513 if (*p != c) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5514 return NULL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5515 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5516 // Truncate the pattern. |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5517 if (s != NULL) |
24834
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5518 { |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5519 if (nulp != NULL) |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5520 { |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5521 *nulp = p; |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5522 *cp = *p; |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5523 } |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5524 *p = NUL; |
24834
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5525 } |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5526 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5527 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5528 // Find the flags |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24488
diff
changeset
|
5529 while (*p == 'g' || *p == 'j' || *p == 'f') |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5530 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5531 if (flags != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5532 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5533 if (*p == 'g') |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5534 *flags |= VGR_GLOBAL; |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24488
diff
changeset
|
5535 else if (*p == 'j') |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24488
diff
changeset
|
5536 *flags |= VGR_NOJUMP; |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5537 else |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24488
diff
changeset
|
5538 *flags |= VGR_FUZZY; |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5539 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5540 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5541 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5542 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5543 return p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5544 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5545 |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5546 #if defined(FEAT_EVAL) || defined(PROTO) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5547 /* |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5548 * List v:oldfiles in a nice way. |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5549 */ |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5550 void |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5551 ex_oldfiles(exarg_T *eap UNUSED) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5552 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5553 list_T *l = get_vim_var_list(VV_OLDFILES); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5554 listitem_T *li; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5555 int nr = 0; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5556 char_u *fname; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5557 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5558 if (l == NULL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
5559 msg(_("No old files")); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5560 else |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5561 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5562 msg_start(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5563 msg_scroll = TRUE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5564 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5565 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5566 ++nr; |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15209
diff
changeset
|
5567 fname = tv_get_string(&li->li_tv); |
9945
d63a89b526ea
commit https://github.com/vim/vim/commit/d6f2ee32dcfa18c781ef157918b524318a2215a2
Christian Brabandt <cb@256bit.org>
parents:
9931
diff
changeset
|
5568 if (!message_filtered(fname)) |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5569 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5570 msg_outnum((long)nr); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
5571 msg_puts(": "); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5572 msg_outtrans(fname); |
10021
5fc4bec66c33
commit https://github.com/vim/vim/commit/885c00eabe6d1fd757d4f0eb531ad3a15a35ec04
Christian Brabandt <cb@256bit.org>
parents:
9980
diff
changeset
|
5573 msg_clr_eos(); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5574 msg_putchar('\n'); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5575 out_flush(); // output one line at a time |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5576 ui_breakcheck(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5577 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5578 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5579 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5580 // Assume "got_int" was set to truncate the listing. |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5581 got_int = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5582 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5583 # ifdef FEAT_BROWSE_CMD |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
5584 if (cmdmod.cmod_flags & CMOD_BROWSE) |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5585 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5586 quit_more = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5587 nr = prompt_for_number(FALSE); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5588 msg_starthere(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5589 if (nr > 0) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5590 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5591 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES), |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5592 (long)nr); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5593 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5594 if (p != NULL) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5595 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5596 p = expand_env_save(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5597 eap->arg = p; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5598 eap->cmdidx = CMD_edit; |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
5599 cmdmod.cmod_flags &= ~CMOD_BROWSE; |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5600 do_exedit(eap, NULL); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5601 vim_free(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5602 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5603 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5604 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5605 # endif |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5606 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5607 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5608 #endif |