Mercurial > vim
annotate src/ex_cmds.c @ 29595:5233acfa06f1 v9.0.0138
patch 9.0.0138: not enough characters accepted for 'spellfile'
Commit: https://github.com/vim/vim/commit/bc49c5f48f89c2d6f4d88ee77f44a11d68293be3
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Aug 4 13:01:48 2022 +0100
patch 9.0.0138: not enough characters accepted for 'spellfile'
Problem: Not enough characters accepted for 'spellfile'.
Solution: Add vim_is_fname_char() and use it for 'spellfile'.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 04 Aug 2022 14:15:29 +0200 |
parents | 8a243ecfe2dd |
children | e1c370197030 |
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 | |
7691
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
17 #ifdef FEAT_FLOAT |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
18 # include <float.h> |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
19 #endif |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
20 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
21 static int linelen(int *has_tab); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
22 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
|
23 static int not_writing(void); |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
24 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
|
25 static void delbuf_msg(char_u *name); |
7 | 26 |
27 /* | |
28 * ":ascii" and "ga". | |
29 */ | |
30 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
31 do_ascii(exarg_T *eap UNUSED) |
7 | 32 { |
33 int c; | |
1784 | 34 int cval; |
7 | 35 char buf1[20]; |
36 char buf2[20]; | |
37 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
|
38 #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
|
39 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
|
40 #endif |
714 | 41 int cc[MAX_MCO]; |
42 int ci = 0; | |
7 | 43 int len; |
44 | |
45 if (enc_utf8) | |
714 | 46 c = utfc_ptr2char(ml_get_cursor(), cc); |
7 | 47 else |
48 c = gchar_cursor(); | |
49 if (c == NUL) | |
50 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
51 msg("NUL"); |
7 | 52 return; |
53 } | |
54 | |
55 IObuff[0] = NUL; | |
56 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80) | |
57 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
58 if (c == NL) // NUL is stored as NL |
7 | 59 c = NUL; |
1784 | 60 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
|
61 cval = NL; // NL is stored as CR |
1784 | 62 else |
63 cval = c; | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27449
diff
changeset
|
64 if (vim_isprintc_strict(c) && (c < ' ' || c > '~')) |
7 | 65 { |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20599
diff
changeset
|
66 transchar_nonprint(curbuf, buf3, c); |
1872 | 67 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3); |
7 | 68 } |
69 else | |
70 buf1[0] = NUL; | |
71 if (c >= 0x80) | |
1872 | 72 vim_snprintf(buf2, sizeof(buf2), " <M-%s>", |
73 (char *)transchar(c & 0x7f)); | |
7 | 74 else |
75 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
|
76 #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
|
77 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
|
78 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
|
79 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
|
80 _("<%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
|
81 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
|
82 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
|
83 #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
|
84 vim_snprintf((char *)IObuff, IOSIZE, |
274 | 85 _("<%s>%s%s %d, Hex %02x, Octal %03o"), |
1784 | 86 transchar(c), buf1, buf2, cval, cval, cval); |
963 | 87 if (enc_utf8) |
88 c = cc[ci++]; | |
89 else | |
90 c = 0; | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
91 } |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
92 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
93 // Repeat for combining characters. |
7 | 94 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80))) |
95 { | |
96 len = (int)STRLEN(IObuff); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
97 // This assumes every multi-byte char is printable... |
7 | 98 if (len > 0) |
99 IObuff[len++] = ' '; | |
100 IObuff[len++] = '<'; | |
963 | 101 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
|
102 #ifdef USE_GUI |
7 | 103 && !gui.in_use |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
104 #endif |
7 | 105 ) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
106 IObuff[len++] = ' '; // draw composing char on top of a space |
274 | 107 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
|
108 #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
|
109 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
|
110 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
|
111 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
|
112 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
|
113 : _("> %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
|
114 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
|
115 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
|
116 #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
|
117 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
|
118 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
|
119 : _("> %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
|
120 c, c, c); |
714 | 121 if (ci == MAX_MCO) |
122 break; | |
963 | 123 if (enc_utf8) |
124 c = cc[ci++]; | |
125 else | |
126 c = 0; | |
7 | 127 } |
128 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
129 msg((char *)IObuff); |
7 | 130 } |
131 | |
132 /* | |
133 * ":left", ":center" and ":right": align text. | |
134 */ | |
135 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
136 ex_align(exarg_T *eap) |
7 | 137 { |
138 pos_T save_curpos; | |
139 int len; | |
140 int indent = 0; | |
141 int new_indent; | |
142 int has_tab; | |
143 int width; | |
144 | |
145 #ifdef FEAT_RIGHTLEFT | |
146 if (curwin->w_p_rl) | |
147 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
148 // switch left and right aligning |
7 | 149 if (eap->cmdidx == CMD_right) |
150 eap->cmdidx = CMD_left; | |
151 else if (eap->cmdidx == CMD_left) | |
152 eap->cmdidx = CMD_right; | |
153 } | |
154 #endif | |
155 | |
156 width = atoi((char *)eap->arg); | |
157 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
|
158 if (eap->cmdidx == CMD_left) // width is used for new indent |
7 | 159 { |
160 if (width >= 0) | |
161 indent = width; | |
162 } | |
163 else | |
164 { | |
165 /* | |
166 * if 'textwidth' set, use it | |
167 * else if 'wrapmargin' set, use it | |
168 * if invalid value, use 80 | |
169 */ | |
170 if (width <= 0) | |
171 width = curbuf->b_p_tw; | |
172 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
|
173 width = curwin->w_width - curbuf->b_p_wm; |
7 | 174 if (width <= 0) |
175 width = 80; | |
176 } | |
177 | |
178 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) | |
179 return; | |
180 | |
181 for (curwin->w_cursor.lnum = eap->line1; | |
182 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum) | |
183 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
184 if (eap->cmdidx == CMD_left) // left align |
7 | 185 new_indent = indent; |
186 else | |
187 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
188 has_tab = FALSE; // avoid uninit warnings |
7 | 189 len = linelen(eap->cmdidx == CMD_right ? &has_tab |
190 : NULL) - get_indent(); | |
191 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
192 if (len <= 0) // skip blank lines |
7 | 193 continue; |
194 | |
195 if (eap->cmdidx == CMD_center) | |
196 new_indent = (width - len) / 2; | |
197 else | |
198 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
199 new_indent = width - len; // right align |
7 | 200 |
201 /* | |
202 * Make sure that embedded TABs don't make the text go too far | |
203 * to the right. | |
204 */ | |
205 if (has_tab) | |
206 while (new_indent > 0) | |
207 { | |
208 (void)set_indent(new_indent, 0); | |
209 if (linelen(NULL) <= width) | |
210 { | |
211 /* | |
212 * Now try to move the line as much as possible to | |
213 * the right. Stop when it moves too far. | |
214 */ | |
215 do | |
216 (void)set_indent(++new_indent, 0); | |
217 while (linelen(NULL) <= width); | |
218 --new_indent; | |
219 break; | |
220 } | |
221 --new_indent; | |
222 } | |
223 } | |
224 } | |
225 if (new_indent < 0) | |
226 new_indent = 0; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
227 (void)set_indent(new_indent, 0); // set indent |
7 | 228 } |
229 changed_lines(eap->line1, 0, eap->line2 + 1, 0L); | |
230 curwin->w_cursor = save_curpos; | |
231 beginline(BL_WHITE | BL_FIX); | |
232 } | |
233 | |
234 /* | |
235 * Get the length of the current line, excluding trailing white space. | |
236 */ | |
237 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
238 linelen(int *has_tab) |
7 | 239 { |
240 char_u *line; | |
241 char_u *first; | |
242 char_u *last; | |
243 int save; | |
244 int len; | |
245 | |
18408
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
246 // 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
|
247 // for an unloaded buffer). |
7 | 248 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
|
249 if (*line == NUL) |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
250 return 0; |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
251 |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
252 // find the first non-blank character |
7 | 253 first = skipwhite(line); |
254 | |
18408
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
255 // find the character after the last non-blank character |
7 | 256 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
|
257 last > first && VIM_ISWHITE(last[-1]); --last) |
7 | 258 ; |
259 save = *last; | |
260 *last = NUL; | |
18408
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
261 len = linetabsize(line); // get line length |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
262 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
|
263 *has_tab = (vim_strchr(first, TAB) != NULL); |
7 | 264 *last = save; |
265 | |
266 return len; | |
267 } | |
268 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
269 // 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
|
270 // contain the longest line being sorted. |
826 | 271 static char_u *sortbuf1; |
272 static char_u *sortbuf2; | |
284 | 273 |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
274 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
|
275 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
|
276 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
|
277 static int sort_rx; // sort on regex instead of skipping it |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
278 #ifdef FEAT_FLOAT |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
279 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
|
280 #endif |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
281 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
282 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
|
283 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
284 // Struct to store info to be sorted. |
294 | 285 typedef struct |
286 { | |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
287 linenr_T lnum; // line number |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
288 union { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
289 struct |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
290 { |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
291 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
|
292 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
|
293 } line; |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
294 struct |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
295 { |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
296 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
|
297 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
|
298 } num; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
299 #ifdef FEAT_FLOAT |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
300 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
|
301 #endif |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
302 } st_u; |
294 | 303 } sorti_T; |
284 | 304 |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
305 static int |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
306 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
|
307 { |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
308 if (sort_lc) |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
309 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
|
310 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
|
311 } |
284 | 312 |
313 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
314 sort_compare(const void *s1, const void *s2) |
284 | 315 { |
294 | 316 sorti_T l1 = *(sorti_T *)s1; |
317 sorti_T l2 = *(sorti_T *)s2; | |
826 | 318 int result = 0; |
319 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
320 // 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
|
321 // 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
|
322 // exit. |
826 | 323 if (sort_abort) |
324 return 0; | |
325 fast_breakcheck(); | |
326 if (got_int) | |
327 sort_abort = TRUE; | |
328 | |
294 | 329 if (sort_nr) |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
330 { |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
331 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
|
332 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
|
333 else |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
334 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
|
335 : 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
|
336 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
337 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
338 else if (sort_flt) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
339 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
|
340 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
341 #endif |
826 | 342 else |
343 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
344 // 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
|
345 // 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
|
346 // second one. |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
347 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
|
348 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
|
349 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
|
350 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
|
351 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
|
352 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0; |
826 | 353 |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
354 result = string_compare(sortbuf1, sortbuf2); |
834 | 355 } |
356 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
357 // If two lines have the same value, preserve the original line order. |
826 | 358 if (result == 0) |
834 | 359 return (int)(l1.lnum - l2.lnum); |
360 return result; | |
284 | 361 } |
362 | |
363 /* | |
364 * ":sort". | |
365 */ | |
366 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
367 ex_sort(exarg_T *eap) |
284 | 368 { |
369 regmatch_T regmatch; | |
370 int len; | |
371 linenr_T lnum; | |
372 long maxlen = 0; | |
294 | 373 sorti_T *nrs; |
1872 | 374 size_t count = (size_t)(eap->line2 - eap->line1 + 1); |
294 | 375 size_t i; |
284 | 376 char_u *p; |
377 char_u *s; | |
826 | 378 char_u *s2; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
379 char_u c; // temporary character storage |
284 | 380 int unique = FALSE; |
381 long deleted; | |
826 | 382 colnr_T start_col; |
383 colnr_T end_col; | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
384 int sort_what = 0; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
385 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
|
386 int change_occurred = FALSE; // Buffer contents changed. |
284 | 387 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
388 // Sorting one line is really quick! |
1538 | 389 if (count <= 1) |
390 return; | |
391 | |
284 | 392 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
393 return; | |
826 | 394 sortbuf1 = NULL; |
395 sortbuf2 = NULL; | |
284 | 396 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
|
397 nrs = ALLOC_MULT(sorti_T, count); |
284 | 398 if (nrs == NULL) |
826 | 399 goto sortend; |
400 | |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
401 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
|
402 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
403 sort_flt = 0; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
404 #endif |
294 | 405 |
284 | 406 for (p = eap->arg; *p != NUL; ++p) |
407 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
408 if (VIM_ISWHITE(*p)) |
284 | 409 ; |
410 else if (*p == 'i') | |
411 sort_ic = TRUE; | |
22770
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
412 else if (*p == 'l') |
3e4981de5636
patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents:
22711
diff
changeset
|
413 sort_lc = TRUE; |
826 | 414 else if (*p == 'r') |
415 sort_rx = TRUE; | |
294 | 416 else if (*p == 'n') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
417 { |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
418 sort_nr = 1; |
7447
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 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
421 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
422 else if (*p == 'f') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
423 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
424 sort_flt = 1; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
425 ++format_found; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
426 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
427 #endif |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
428 else if (*p == 'b') |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
429 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
430 sort_what = STR2NR_BIN + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
431 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
432 } |
294 | 433 else if (*p == 'o') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
434 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
435 sort_what = STR2NR_OCT + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
436 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
437 } |
294 | 438 else if (*p == 'x') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
439 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
440 sort_what = STR2NR_HEX + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
441 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
442 } |
284 | 443 else if (*p == 'u') |
444 unique = TRUE; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
445 else if (*p == '"') // comment start |
289 | 446 break; |
25521
2063b858cad9
patch 8.2.3297: cannot use all commands inside a {} block
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
447 else if (eap->nextcmd == NULL && check_nextcmd(p) != NULL) |
289 | 448 { |
449 eap->nextcmd = check_nextcmd(p); | |
450 break; | |
451 } | |
452 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL) | |
284 | 453 { |
20113
2c23053c654a
patch 8.2.0612: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
454 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
|
455 if (s == NULL) |
826 | 456 goto sortend; |
284 | 457 *s = NUL; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
458 // Use last search pattern if sort pattern is empty. |
4199 | 459 if (s == p + 1) |
460 { | |
461 if (last_search_pat() == NULL) | |
462 { | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
463 emsg(_(e_no_previous_regular_expression)); |
4199 | 464 goto sortend; |
465 } | |
1314 | 466 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC); |
4199 | 467 } |
1314 | 468 else |
469 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC); | |
284 | 470 if (regmatch.regprog == NULL) |
826 | 471 goto sortend; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
472 p = s; // continue after the regexp |
284 | 473 regmatch.rm_ic = p_ic; |
474 } | |
475 else | |
476 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
477 semsg(_(e_invalid_argument_str), p); |
826 | 478 goto sortend; |
284 | 479 } |
480 } | |
481 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
482 // 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
|
483 if (format_found > 1) |
294 | 484 { |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
485 emsg(_(e_invalid_argument)); |
826 | 486 goto sortend; |
294 | 487 } |
488 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
489 // 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
|
490 // sorting. |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
491 sort_nr += sort_what; |
294 | 492 |
284 | 493 /* |
294 | 494 * Make an array with all line numbers. This avoids having to copy all |
284 | 495 * the lines into allocated memory. |
826 | 496 * When sorting on strings "start_col_nr" is the offset in the line, for |
497 * numbers sorting it's the number to sort on. This means the pattern | |
498 * matching and number conversion only has to be done once per line. | |
294 | 499 * Also get the longest line length for allocating "sortbuf". |
284 | 500 */ |
501 for (lnum = eap->line1; lnum <= eap->line2; ++lnum) | |
502 { | |
503 s = ml_get(lnum); | |
835 | 504 len = (int)STRLEN(s); |
284 | 505 if (maxlen < len) |
506 maxlen = len; | |
294 | 507 |
826 | 508 start_col = 0; |
509 end_col = len; | |
294 | 510 if (regmatch.regprog != NULL && vim_regexec(®match, s, 0)) |
826 | 511 { |
512 if (sort_rx) | |
513 { | |
835 | 514 start_col = (colnr_T)(regmatch.startp[0] - s); |
515 end_col = (colnr_T)(regmatch.endp[0] - s); | |
826 | 516 } |
517 else | |
835 | 518 start_col = (colnr_T)(regmatch.endp[0] - s); |
826 | 519 } |
294 | 520 else |
826 | 521 if (regmatch.regprog != NULL) |
522 end_col = 0; | |
294 | 523 |
7844
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
524 if (sort_nr |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
525 #ifdef FEAT_FLOAT |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
526 || sort_flt |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
527 #endif |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
528 ) |
294 | 529 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
530 // 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
|
531 // of the match, by temporarily terminating the string there |
826 | 532 s2 = s + end_col; |
533 c = *s2; | |
2606 | 534 *s2 = NUL; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
535 // Sorting on number: Store the number itself. |
1687 | 536 p = s + start_col; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
537 if (sort_nr) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
538 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
539 if (sort_what & STR2NR_HEX) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
540 s = skiptohex(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
541 else if (sort_what & STR2NR_BIN) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
542 s = skiptobin(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
543 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
544 s = skiptodigit(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
545 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
|
546 --s; // include preceding negative sign |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
547 if (*s == NUL) |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
548 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
549 // 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
|
550 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
|
551 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
|
552 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
553 else |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
554 { |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
555 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
|
556 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
|
557 &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
|
558 NULL, 0, FALSE); |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
559 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
560 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
561 #ifdef FEAT_FLOAT |
294 | 562 else |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
563 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
564 s = skipwhite(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
565 if (*s == '+') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
566 s = skipwhite(s + 1); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
567 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
568 if (*s == NUL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
569 // 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
|
570 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
|
571 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
572 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
|
573 strtod((char *)s, NULL); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
574 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
575 #endif |
2606 | 576 *s2 = c; |
294 | 577 } |
578 else | |
826 | 579 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
580 // 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
|
581 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
|
582 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col; |
826 | 583 } |
294 | 584 |
585 nrs[lnum - eap->line1].lnum = lnum; | |
481 | 586 |
587 if (regmatch.regprog != NULL) | |
588 fast_breakcheck(); | |
589 if (got_int) | |
826 | 590 goto sortend; |
284 | 591 } |
592 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
593 // 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
|
594 sortbuf1 = alloc(maxlen + 1); |
826 | 595 if (sortbuf1 == NULL) |
596 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
|
597 sortbuf2 = alloc(maxlen + 1); |
826 | 598 if (sortbuf2 == NULL) |
599 goto sortend; | |
284 | 600 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
601 // Sort the array of line numbers. Note: can't be interrupted! |
294 | 602 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare); |
284 | 603 |
826 | 604 if (sort_abort) |
605 goto sortend; | |
606 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
607 // Insert the lines in the sorted order below the last one. |
284 | 608 lnum = eap->line2; |
609 for (i = 0; i < count; ++i) | |
610 { | |
14206
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
611 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
|
612 |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
613 // 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
|
614 // 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
|
615 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
|
616 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
|
617 |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
618 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
|
619 if (!unique || i == 0 || string_compare(s, sortbuf1) != 0) |
284 | 620 { |
14206
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
621 // 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
|
622 // 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
|
623 STRCPY(sortbuf1, s); |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
624 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL) |
284 | 625 break; |
626 } | |
481 | 627 fast_breakcheck(); |
628 if (got_int) | |
826 | 629 goto sortend; |
284 | 630 } |
631 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
632 // delete the original lines if appending worked |
284 | 633 if (i == count) |
634 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
|
635 ml_delete(eap->line1); |
284 | 636 else |
637 count = 0; | |
638 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
639 // Adjust marks for deleted (or added) lines and prepare for displaying. |
835 | 640 deleted = (long)(count - (lnum - eap->line2)); |
284 | 641 if (deleted > 0) |
14808
3d0b6e2a3a01
patch 8.1.0416: sort doesn't report deleted lines
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
642 { |
284 | 643 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
|
644 msgmore(-deleted); |
3d0b6e2a3a01
patch 8.1.0416: sort doesn't report deleted lines
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
645 } |
284 | 646 else if (deleted < 0) |
647 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
|
648 |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
649 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
|
650 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted); |
294 | 651 |
284 | 652 curwin->w_cursor.lnum = eap->line1; |
653 beginline(BL_WHITE | BL_FIX); | |
654 | |
826 | 655 sortend: |
284 | 656 vim_free(nrs); |
826 | 657 vim_free(sortbuf1); |
658 vim_free(sortbuf2); | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
659 vim_regfree(regmatch.regprog); |
481 | 660 if (got_int) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
661 emsg(_(e_interrupted)); |
284 | 662 } |
663 | |
7 | 664 /* |
665 * :move command - move lines line1-line2 to line dest | |
666 * | |
667 * return FAIL for failure, OK otherwise | |
668 */ | |
669 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
670 do_move(linenr_T line1, linenr_T line2, linenr_T dest) |
7 | 671 { |
672 char_u *str; | |
673 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
|
674 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
|
675 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
|
676 linenr_T last_line; // Last line in file after adding new text |
6755 | 677 #ifdef FEAT_FOLDING |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
678 win_T *win; |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
679 tabpage_T *tp; |
6755 | 680 #endif |
7 | 681 |
682 if (dest >= line1 && dest < line2) | |
683 { | |
26757
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26709
diff
changeset
|
684 emsg(_(e_cannot_move_range_of_lines_into_itself)); |
7 | 685 return FAIL; |
686 } | |
687 | |
15010
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
688 // 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
|
689 // 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
|
690 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
|
691 { |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
692 // 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
|
693 // compatible. |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
694 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
|
695 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
|
696 else |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
697 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
|
698 |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
699 return OK; |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
700 } |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
701 |
7 | 702 num_lines = line2 - line1 + 1; |
703 | |
704 /* | |
705 * First we copy the old text to its new location -- webb | |
706 * Also copy the flag that ":global" command uses. | |
707 */ | |
708 if (u_save(dest, dest + 1) == FAIL) | |
709 return FAIL; | |
710 for (extra = 0, l = line1; l <= line2; l++) | |
711 { | |
712 str = vim_strsave(ml_get(l + extra)); | |
713 if (str != NULL) | |
714 { | |
715 ml_append(dest + l - line1, str, (colnr_T)0, FALSE); | |
716 vim_free(str); | |
717 if (dest < line1) | |
718 extra++; | |
719 } | |
720 } | |
721 | |
722 /* | |
723 * Now we must be careful adjusting our marks so that we don't overlap our | |
724 * mark_adjust() calls. | |
725 * | |
726 * We adjust the marks within the old text so that they refer to the | |
727 * last lines of the file (temporarily), because we know no other marks | |
728 * will be set there since these line numbers did not exist until we added | |
729 * our new lines. | |
730 * | |
731 * Then we adjust the marks on lines between the old and new text positions | |
732 * (either forwards or backwards). | |
733 * | |
734 * And Finally we adjust the marks we put at the end of the file back to | |
735 * their final destination at the new text position -- webb | |
736 */ | |
737 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
|
738 mark_adjust_nofold(line1, line2, last_line - line2, 0L); |
7 | 739 if (dest >= line2) |
740 { | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
741 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
|
742 #ifdef FEAT_FOLDING |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
743 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
|
744 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
|
745 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
|
746 } |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
747 #endif |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
748 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
|
749 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
750 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
|
751 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
|
752 } |
7 | 753 } |
754 else | |
755 { | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
756 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
|
757 #ifdef FEAT_FOLDING |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
758 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
|
759 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
|
760 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
|
761 } |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
762 #endif |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
763 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
|
764 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
765 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
|
766 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
|
767 } |
7 | 768 } |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
769 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
|
770 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
|
771 mark_adjust_nofold(last_line - num_lines + 1, last_line, |
7 | 772 -(last_line - dest - extra), 0L); |
773 | |
774 /* | |
775 * Now we delete the original text -- webb | |
776 */ | |
777 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL) | |
778 return FAIL; | |
779 | |
780 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
|
781 ml_delete_flags(line1 + extra, ML_DEL_MESSAGE); |
7 | 782 |
783 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
|
784 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
|
785 (long)num_lines); |
7 | 786 |
787 /* | |
788 * Leave the cursor on the last of the moved lines. | |
789 */ | |
790 if (dest >= line1) | |
791 curwin->w_cursor.lnum = dest; | |
792 else | |
793 curwin->w_cursor.lnum = dest + (line2 - line1) + 1; | |
794 | |
795 if (line1 < dest) | |
3184 | 796 { |
797 dest += num_lines + 1; | |
798 last_line = curbuf->b_ml.ml_line_count; | |
799 if (dest > last_line + 1) | |
800 dest = last_line + 1; | |
801 changed_lines(line1, 0, dest, 0L); | |
802 } | |
7 | 803 else |
804 changed_lines(dest + 1, 0, line1 + num_lines, 0L); | |
805 | |
806 return OK; | |
807 } | |
808 | |
809 /* | |
810 * ":copy" | |
811 */ | |
812 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
813 ex_copy(linenr_T line1, linenr_T line2, linenr_T n) |
7 | 814 { |
815 linenr_T count; | |
816 char_u *p; | |
817 | |
818 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
|
819 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
|
820 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
821 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
|
822 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
|
823 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
|
824 } |
7 | 825 |
826 /* | |
827 * there are three situations: | |
828 * 1. destination is above line1 | |
829 * 2. destination is between line1 and line2 | |
830 * 3. destination is below line2 | |
831 * | |
832 * n = destination (when starting) | |
833 * curwin->w_cursor.lnum = destination (while copying) | |
834 * line1 = start of source (while copying) | |
835 * line2 = end of source (while copying) | |
836 */ | |
837 if (u_save(n, n + 1) == FAIL) | |
838 return; | |
839 | |
840 curwin->w_cursor.lnum = n; | |
841 while (line1 <= line2) | |
842 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
843 // 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
|
844 // ml_append() |
7 | 845 p = vim_strsave(ml_get(line1)); |
846 if (p != NULL) | |
847 { | |
848 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE); | |
849 vim_free(p); | |
850 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
851 // situation 2: skip already copied lines |
7 | 852 if (line1 == n) |
853 line1 = curwin->w_cursor.lnum; | |
854 ++line1; | |
855 if (curwin->w_cursor.lnum < line1) | |
856 ++line1; | |
857 if (curwin->w_cursor.lnum < line2) | |
858 ++line2; | |
859 ++curwin->w_cursor.lnum; | |
860 } | |
861 | |
862 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
|
863 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
|
864 check_pos(curbuf, &VIsual); |
7 | 865 |
866 msgmore((long)count); | |
867 } | |
868 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
869 static char_u *prevcmd = NULL; // the previous command |
359 | 870 |
871 #if defined(EXITFREE) || defined(PROTO) | |
872 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
873 free_prev_shellcmd(void) |
359 | 874 { |
875 vim_free(prevcmd); | |
876 } | |
877 #endif | |
878 | |
7 | 879 /* |
880 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd" | |
881 * Bangs in the argument are replaced with the previously entered command. | |
882 * Remember the argument. | |
883 */ | |
884 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
885 do_bang( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
886 int addr_count, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
887 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
888 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
889 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
890 int do_out) |
7 | 891 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
892 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
|
893 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
|
894 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
|
895 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
|
896 int free_newcmd = FALSE; // need to free() newcmd |
7 | 897 int ins_prevcmd; |
898 char_u *t; | |
899 char_u *p; | |
900 char_u *trailarg; | |
901 int len; | |
902 int scroll_save = msg_scroll; | |
903 | |
904 /* | |
905 * Disallow shell commands for "rvim". | |
906 * Disallow shell commands from .exrc and .vimrc in current directory for | |
907 * security reasons. | |
908 */ | |
909 if (check_restricted() || check_secure()) | |
910 return; | |
911 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
912 if (addr_count == 0) // :! |
7 | 913 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
914 msg_scroll = FALSE; // don't scroll here |
7 | 915 autowrite_all(); |
916 msg_scroll = scroll_save; | |
917 } | |
918 | |
919 /* | |
920 * Try to find an embedded bang, like in :!<cmd> ! [args] | |
921 * (:!! is indicated by the 'forceit' variable) | |
922 */ | |
923 ins_prevcmd = forceit; | |
924 trailarg = arg; | |
925 do | |
926 { | |
927 len = (int)STRLEN(trailarg) + 1; | |
928 if (newcmd != NULL) | |
929 len += (int)STRLEN(newcmd); | |
930 if (ins_prevcmd) | |
931 { | |
932 if (prevcmd == NULL) | |
933 { | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
934 emsg(_(e_no_previous_command)); |
7 | 935 vim_free(newcmd); |
936 return; | |
937 } | |
938 len += (int)STRLEN(prevcmd); | |
939 } | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
940 if ((t = alloc(len)) == NULL) |
7 | 941 { |
942 vim_free(newcmd); | |
943 return; | |
944 } | |
945 *t = NUL; | |
946 if (newcmd != NULL) | |
947 STRCAT(t, newcmd); | |
948 if (ins_prevcmd) | |
949 STRCAT(t, prevcmd); | |
950 p = t + STRLEN(t); | |
951 STRCAT(t, trailarg); | |
952 vim_free(newcmd); | |
953 newcmd = t; | |
954 | |
955 /* | |
956 * Scan the rest of the argument for '!', which is replaced by the | |
957 * previous command. "\!" is replaced by "!" (this is vi compatible). | |
958 */ | |
959 trailarg = NULL; | |
960 while (*p) | |
961 { | |
2823 | 962 if (*p == '!') |
7 | 963 { |
964 if (p > newcmd && p[-1] == '\\') | |
1624 | 965 STRMOVE(p - 1, p); |
7 | 966 else |
967 { | |
968 trailarg = p; | |
969 *trailarg++ = NUL; | |
970 ins_prevcmd = TRUE; | |
971 break; | |
972 } | |
973 } | |
974 ++p; | |
975 } | |
976 } while (trailarg != NULL); | |
977 | |
978 vim_free(prevcmd); | |
979 prevcmd = newcmd; | |
980 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
981 if (bangredo) // put cmd in redo buffer for ! command |
7 | 982 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
983 // 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
|
984 // 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
|
985 // buffername. |
5728 | 986 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#"); |
987 | |
988 if (cmd != NULL) | |
989 { | |
990 AppendToRedobuffLit(cmd, -1); | |
991 vim_free(cmd); | |
992 } | |
993 else | |
994 AppendToRedobuffLit(prevcmd, -1); | |
7 | 995 AppendToRedobuff((char_u *)"\n"); |
996 bangredo = FALSE; | |
997 } | |
998 /* | |
999 * Add quotes around the command, for shells that need them. | |
1000 */ | |
1001 if (*p_shq != NUL) | |
1002 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
1003 newcmd = alloc(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1); |
7 | 1004 if (newcmd == NULL) |
1005 return; | |
1006 STRCPY(newcmd, p_shq); | |
1007 STRCAT(newcmd, prevcmd); | |
1008 STRCAT(newcmd, p_shq); | |
1009 free_newcmd = TRUE; | |
1010 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1011 if (addr_count == 0) // :! |
7 | 1012 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1013 // echo the command |
7 | 1014 msg_start(); |
1015 msg_putchar(':'); | |
1016 msg_putchar('!'); | |
1017 msg_outtrans(newcmd); | |
1018 msg_clr_eos(); | |
1019 windgoto(msg_row, msg_col); | |
1020 | |
1021 do_shell(newcmd, 0); | |
1022 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1023 else // :range! |
725 | 1024 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1025 // 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
|
1026 // autocommands) |
7 | 1027 do_filter(line1, line2, eap, newcmd, do_in, do_out); |
725 | 1028 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf); |
1029 } | |
7 | 1030 if (free_newcmd) |
1031 vim_free(newcmd); | |
1032 } | |
1033 | |
1034 /* | |
1035 * do_filter: filter lines through a command given by the user | |
1036 * | |
169 | 1037 * We mostly use temp files and the call_shell() routine here. This would |
1038 * normally be done using pipes on a UNIX machine, but this is more portable | |
1039 * to non-unix machines. The call_shell() routine needs to be able | |
7 | 1040 * to deal with redirection somehow, and should handle things like looking |
1041 * at the PATH env. variable, and adding reasonable extensions to the | |
1042 * command name given by the user. All reasonable versions of call_shell() | |
1043 * do this. | |
169 | 1044 * Alternatively, if on Unix and redirecting input or output, but not both, |
1045 * and the 'shelltemp' option isn't set, use pipes. | |
7 | 1046 * We use input redirection if do_in is TRUE. |
1047 * We use output redirection if do_out is TRUE. | |
1048 */ | |
1049 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1050 do_filter( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1051 linenr_T line1, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1052 linenr_T line2, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1053 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
|
1054 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1055 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1056 int do_out) |
7 | 1057 { |
1058 char_u *itmp = NULL; | |
1059 char_u *otmp = NULL; | |
1060 linenr_T linecount; | |
1061 linenr_T read_linecount; | |
1062 pos_T cursor_save; | |
1063 char_u *cmd_buf; | |
1064 buf_T *old_curbuf = curbuf; | |
169 | 1065 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
|
1066 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
|
1067 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
|
1068 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
|
1069 #ifdef FEAT_FILTERPIPE |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1070 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
|
1071 #endif |
7 | 1072 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1073 if (*cmd == NUL) // no filter command |
7 | 1074 return; |
1075 | |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1076 // 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
|
1077 // 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
|
1078 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
|
1079 |
7 | 1080 cursor_save = curwin->w_cursor; |
1081 linecount = line2 - line1 + 1; | |
1082 curwin->w_cursor.lnum = line1; | |
1083 curwin->w_cursor.col = 0; | |
1084 changed_line_abv_curs(); | |
1085 invalidate_botline(); | |
1086 | |
1087 /* | |
169 | 1088 * When using temp files: |
1089 * 1. * Form temp file names | |
1090 * 2. * Write the lines to a temp file | |
1091 * 3. Run the filter command on the temp file | |
1092 * 4. * Read the output of the command into the buffer | |
1093 * 5. * Delete the original lines to be filtered | |
1094 * 6. * Remove the temp files | |
1095 * | |
1096 * When writing the input with a pipe or when catching the output with a | |
1097 * pipe only need to do 3. | |
7 | 1098 */ |
1099 | |
169 | 1100 if (do_out) |
1101 shell_flags |= SHELL_DOOUT; | |
1102 | |
3482 | 1103 #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
|
1104 # ifdef VIMDLL |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1105 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
|
1106 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
|
1107 # endif |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1108 |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1109 if (!do_in && do_out && !stmp) |
169 | 1110 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1111 // Use a pipe to fetch stdout of the command, do not use a temp file. |
169 | 1112 shell_flags |= SHELL_READ; |
1113 curwin->w_cursor.lnum = line2; | |
1114 } | |
18742
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1115 else if (do_in && !do_out && !stmp) |
7 | 1116 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1117 // Use a pipe to write stdin of the command, do not use a temp file. |
169 | 1118 shell_flags |= SHELL_WRITE; |
1119 curbuf->b_op_start.lnum = line1; | |
1120 curbuf->b_op_end.lnum = line2; | |
7 | 1121 } |
18742
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1122 else if (do_in && do_out && !stmp) |
169 | 1123 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1124 // 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
|
1125 // use a temp file. |
169 | 1126 shell_flags |= SHELL_READ|SHELL_WRITE; |
1127 curbuf->b_op_start.lnum = line1; | |
1128 curbuf->b_op_end.lnum = line2; | |
1129 curwin->w_cursor.lnum = line2; | |
1130 } | |
1131 else | |
1132 #endif | |
6721 | 1133 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL) |
1134 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL)) | |
169 | 1135 { |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
1136 emsg(_(e_cant_get_temp_file_name)); |
169 | 1137 goto filterend; |
1138 } | |
7 | 1139 |
1140 /* | |
1141 * The writing and reading of temp files will not be shown. | |
1142 * Vi also doesn't do this and the messages are not very informative. | |
1143 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1144 ++no_wait_return; // don't call wait_return() while busy |
169 | 1145 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap, |
7 | 1146 FALSE, FALSE, FALSE, TRUE) == FAIL) |
1147 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1148 msg_putchar('\n'); // keep message from buf_write() |
7 | 1149 --no_wait_return; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1150 #if defined(FEAT_EVAL) |
7 | 1151 if (!aborting()) |
1152 #endif | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
1153 (void)semsg(_(e_cant_create_file_str), itmp); // will call wait_return |
7 | 1154 goto filterend; |
1155 } | |
1156 if (curbuf != old_curbuf) | |
1157 goto filterend; | |
1158 | |
1159 if (!do_out) | |
1160 msg_putchar('\n'); | |
1161 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1162 // Create the shell command in allocated memory. |
7 | 1163 cmd_buf = make_filter_cmd(cmd, itmp, otmp); |
1164 if (cmd_buf == NULL) | |
1165 goto filterend; | |
1166 | |
1167 windgoto((int)Rows - 1, 0); | |
1168 cursor_on(); | |
1169 | |
1170 /* | |
1171 * When not redirecting the output the command can write anything to the | |
1172 * screen. If 'shellredir' is equal to ">", screen may be messed up by | |
1173 * stderr output of external command. Clear the screen later. | |
1174 * If do_in is FALSE, this could be something like ":r !cat", which may | |
1175 * also mess up the screen, clear it later. | |
1176 */ | |
1177 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in) | |
1178 redraw_later_clear(); | |
1179 | |
169 | 1180 if (do_out) |
1181 { | |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27374
diff
changeset
|
1182 if (u_save(line2, (linenr_T)(line2 + 1)) == FAIL) |
1581 | 1183 { |
1184 vim_free(cmd_buf); | |
169 | 1185 goto error; |
1581 | 1186 } |
169 | 1187 redraw_curbuf_later(VALID); |
1188 } | |
1189 read_linecount = curbuf->b_ml.ml_line_count; | |
1190 | |
7 | 1191 /* |
1192 * When call_shell() fails wait_return() is called to give the user a | |
1193 * chance to read the error messages. Otherwise errors are ignored, so you | |
1194 * can see the error messages from the command that appear on stdout; use | |
1195 * 'u' to fix the text | |
1196 * Switch to cooked mode when not redirecting stdin, avoids that something | |
1197 * like ":r !cat" hangs. | |
1198 * Pass on the SHELL_DOOUT flag when the output is being redirected. | |
1199 */ | |
169 | 1200 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags)) |
7 | 1201 { |
1202 redraw_later_clear(); | |
1203 wait_return(FALSE); | |
1204 } | |
1205 vim_free(cmd_buf); | |
1206 | |
1207 did_check_timestamps = FALSE; | |
1208 need_check_timestamps = TRUE; | |
1209 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1210 // 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
|
1211 // 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
|
1212 // reading. |
7 | 1213 ui_breakcheck(); |
1214 got_int = FALSE; | |
1215 | |
1216 if (do_out) | |
1217 { | |
169 | 1218 if (otmp != NULL) |
7 | 1219 { |
169 | 1220 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
|
1221 eap, READ_FILTER) != OK) |
169 | 1222 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1223 #if defined(FEAT_EVAL) |
169 | 1224 if (!aborting()) |
1225 #endif | |
1226 { | |
1227 msg_putchar('\n'); | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
1228 semsg(_(e_cant_read_file_str), otmp); |
169 | 1229 } |
1230 goto error; | |
7 | 1231 } |
169 | 1232 if (curbuf != old_curbuf) |
1233 goto filterend; | |
7 | 1234 } |
169 | 1235 |
1236 read_linecount = curbuf->b_ml.ml_line_count - read_linecount; | |
1237 | |
1238 if (shell_flags & SHELL_READ) | |
1239 { | |
1240 curbuf->b_op_start.lnum = line2 + 1; | |
1241 curbuf->b_op_end.lnum = curwin->w_cursor.lnum; | |
1242 appended_lines_mark(line2, read_linecount); | |
1243 } | |
7 | 1244 |
1245 if (do_in) | |
1246 { | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1247 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
|
1248 || vim_strchr(p_cpo, CPO_REMMARK) == NULL) |
7 | 1249 { |
1250 if (read_linecount >= linecount) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1251 // move all marks from old lines to new lines |
7 | 1252 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
|
1253 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
|
1254 { |
1ef3b04875ff
patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents:
22770
diff
changeset
|
1255 // 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
|
1256 // 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
|
1257 // 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
|
1258 // 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
|
1259 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
|
1260 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
|
1261 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
|
1262 } |
7 | 1263 else |
1264 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1265 // 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
|
1266 // that are in deleted lines |
7 | 1267 mark_adjust(line1, line1 + read_linecount - 1, |
1268 linecount, 0L); | |
1269 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); | |
1270 } | |
1271 } | |
1272 | |
1273 /* | |
1274 * Put cursor on first filtered line for ":range!cmd". | |
1275 * Adjust '[ and '] (set by buf_write()). | |
1276 */ | |
1277 curwin->w_cursor.lnum = line1; | |
1278 del_lines(linecount, TRUE); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1279 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
|
1280 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
|
1281 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
|
1282 // for next write |
100 | 1283 #ifdef FEAT_FOLDING |
1284 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum); | |
1285 #endif | |
7 | 1286 } |
1287 else | |
1288 { | |
1289 /* | |
1290 * Put cursor on last new line for ":r !cmd". | |
1291 */ | |
169 | 1292 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1; |
7 | 1293 curwin->w_cursor.lnum = curbuf->b_op_end.lnum; |
1294 } | |
100 | 1295 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1296 beginline(BL_WHITE | BL_FIX); // cursor on first non-blank |
7 | 1297 --no_wait_return; |
1298 | |
1299 if (linecount > p_report) | |
1300 { | |
1301 if (do_in) | |
1302 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1303 vim_snprintf(msg_buf, sizeof(msg_buf), |
274 | 1304 _("%ld lines filtered"), (long)linecount); |
7 | 1305 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
|
1306 // 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
|
1307 set_keep_msg((char_u *)msg_buf, 0); |
7 | 1308 } |
1309 else | |
1310 msgmore((long)linecount); | |
1311 } | |
1312 } | |
1313 else | |
1314 { | |
1315 error: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1316 // put cursor back in same position for ":w !cmd" |
7 | 1317 curwin->w_cursor = cursor_save; |
1318 --no_wait_return; | |
1319 wait_return(FALSE); | |
1320 } | |
1321 | |
1322 filterend: | |
1323 | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1324 cmdmod.cmod_flags = save_cmod_flags; |
7 | 1325 if (curbuf != old_curbuf) |
1326 { | |
1327 --no_wait_return; | |
26757
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26709
diff
changeset
|
1328 emsg(_(e_filter_autocommands_must_not_change_current_buffer)); |
7 | 1329 } |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
1330 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
|
1331 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1332 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
|
1333 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
|
1334 } |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1335 |
7 | 1336 if (itmp != NULL) |
1337 mch_remove(itmp); | |
1338 if (otmp != NULL) | |
1339 mch_remove(otmp); | |
1340 vim_free(itmp); | |
1341 vim_free(otmp); | |
1342 } | |
1343 | |
1344 /* | |
1345 * Call a shell to execute a command. | |
1346 * When "cmd" is NULL start an interactive shell. | |
1347 */ | |
1348 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1349 do_shell( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1350 char_u *cmd, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1351 int flags) // may be SHELL_DOOUT when output is redirected |
7 | 1352 { |
1353 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
|
1354 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) |
7 | 1355 int save_nwr; |
1356 #endif | |
1357 #ifdef MSWIN | |
1358 int winstart = FALSE; | |
1359 #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
|
1360 int keep_termcap = !termcap_active; |
7 | 1361 |
1362 /* | |
1363 * Disallow shell commands for "rvim". | |
1364 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1365 * security reasons. | |
1366 */ | |
1367 if (check_restricted() || check_secure()) | |
1368 { | |
1369 msg_end(); | |
1370 return; | |
1371 } | |
1372 | |
1373 #ifdef MSWIN | |
1374 /* | |
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
|
1375 * Check if ":!start" is used. This implies not stopping termcap mode. |
7 | 1376 */ |
1377 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
|
1378 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
|
1379 |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1380 # 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
|
1381 // 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
|
1382 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
|
1383 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
|
1384 # endif |
7 | 1385 #endif |
1386 | |
1387 /* | |
1388 * For autocommands we want to get the output on the current screen, to | |
1389 * avoid having to type return below. | |
1390 */ | |
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 msg_putchar('\r'); // put cursor at start of line |
7 | 1392 if (!autocmd_busy) |
1393 { | |
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
|
1394 if (!keep_termcap) |
7 | 1395 stoptermcap(); |
1396 } | |
1397 #ifdef MSWIN | |
1398 if (!winstart) | |
1399 #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
|
1400 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
|
1401 |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1402 // warning message before calling the shell |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1403 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
|
1404 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
|
1405 if (bufIsChangedNotTerm(buf)) |
7 | 1406 { |
1407 #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
|
1408 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
|
1409 starttermcap(); // don't want a message box here |
7 | 1410 #endif |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1411 msg_puts(_("[No write since last change]\n")); |
7 | 1412 #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
|
1413 if (!keep_termcap) |
7 | 1414 stoptermcap(); |
1415 #endif | |
1416 break; | |
1417 } | |
1418 | |
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
|
1419 // 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
|
1420 // 1" command to the terminal. |
7 | 1421 if (!swapping_screen()) |
1422 windgoto(msg_row, msg_col); | |
1423 cursor_on(); | |
1424 (void)call_shell(cmd, SHELL_COOKED | flags); | |
1425 did_check_timestamps = FALSE; | |
1426 need_check_timestamps = TRUE; | |
1427 | |
1428 /* | |
1429 * put the message cursor at the end of the screen, avoids wait_return() | |
1430 * to overwrite the text that the external command showed | |
1431 */ | |
1432 if (!swapping_screen()) | |
1433 { | |
1434 msg_row = Rows - 1; | |
1435 msg_col = 0; | |
1436 } | |
1437 | |
1438 if (autocmd_busy) | |
1439 { | |
1440 if (msg_silent == 0) | |
1441 redraw_later_clear(); | |
1442 } | |
1443 else | |
1444 { | |
1445 /* | |
1446 * For ":sh" there is no need to call wait_return(), just redraw. | |
1447 * Also for the Win32 GUI (the output is in a console window). | |
1448 * Otherwise there is probably text on the screen that the user wants | |
1449 * to read before redrawing, so call wait_return(). | |
1450 */ | |
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
|
1451 #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
|
1452 # 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
|
1453 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
|
1454 # 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
|
1455 { |
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
|
1456 if (cmd == NULL |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1457 # 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
|
1458 || (keep_termcap && !need_wait_return) |
7 | 1459 # 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
|
1460 ) |
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
|
1461 { |
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
|
1462 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
|
1463 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
|
1464 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
|
1465 } |
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 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
|
1467 { |
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 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
|
1470 * 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
|
1471 */ |
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
|
1472 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
|
1473 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
|
1474 no_wait_return = FALSE; |
7 | 1475 # 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
|
1476 wait_return(term_console ? -1 : msg_silent == 0); // see below |
7 | 1477 # 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
|
1478 wait_return(msg_silent == 0); |
7 | 1479 # 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
|
1480 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
|
1481 } |
7 | 1482 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1483 #endif // FEAT_GUI_MSWIN |
7 | 1484 |
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
|
1485 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
|
1486 starttermcap(); // start termcap if not done by wait_return() |
7 | 1487 |
1488 /* | |
1489 * In an Amiga window redrawing is caused by asking the window size. | |
1490 * If we got an interrupt this will not work. The chance that the | |
1491 * window size is wrong is very small, but we need to redraw the | |
1492 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY | |
1493 * but it saves an extra redraw. | |
1494 */ | |
1495 #ifdef AMIGA | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1496 if (skip_redraw) // ':' hit in wait_return() |
7 | 1497 { |
1498 if (msg_silent == 0) | |
1499 redraw_later_clear(); | |
1500 } | |
1501 else if (term_console) | |
1502 { | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27449
diff
changeset
|
1503 OUT_STR("\033[0 q"); // get window size |
7 | 1504 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
|
1505 redraw_later_clear(); // if got_int is TRUE, redraw needed |
7 | 1506 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1507 must_redraw = 0; // no extra redraw needed |
7 | 1508 } |
1509 #endif | |
1510 } | |
1511 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1512 // display any error messages now |
7 | 1513 display_errors(); |
725 | 1514 |
1515 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf); | |
7 | 1516 } |
1517 | |
14913
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1518 #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
|
1519 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
|
1520 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
|
1521 { |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1522 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
|
1523 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
|
1524 |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1525 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
|
1526 { |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1527 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
|
1528 return p; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1529 if (*p == '"') |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1530 inquote = !inquote; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1531 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
|
1532 ++p; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1533 } |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1534 return NULL; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1535 } |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1536 #endif |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1537 |
7 | 1538 /* |
1539 * Create a shell command from a command string, input redirection file and | |
1540 * output redirection file. | |
1541 * Returns an allocated string with the shell command, or NULL for failure. | |
1542 */ | |
1543 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1544 make_filter_cmd( |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1545 char_u *cmd, // command |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1546 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
|
1547 char_u *otmp) // NULL or name of output file |
7 | 1548 { |
1549 char_u *buf; | |
1550 long_u len; | |
5867 | 1551 |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1552 #if defined(UNIX) |
5881 | 1553 int is_fish_shell; |
5911 | 1554 char_u *shell_name = get_isolated_shell_name(); |
5881 | 1555 |
22701
1c31afe1f43f
patch 8.2.1899: crash in out-of-memory situation
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
1556 if (shell_name == NULL) |
1c31afe1f43f
patch 8.2.1899: crash in out-of-memory situation
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
1557 return NULL; |
1c31afe1f43f
patch 8.2.1899: crash in out-of-memory situation
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
1558 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1559 // Account for fish's different syntax for subshells |
5911 | 1560 is_fish_shell = (fnamecmp(shell_name, "fish") == 0); |
1561 vim_free(shell_name); | |
5867 | 1562 if (is_fish_shell) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1563 len = (long_u)STRLEN(cmd) + 13; // "begin; " + "; end" + NUL |
5867 | 1564 else |
1565 #endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1566 len = (long_u)STRLEN(cmd) + 3; // "()" + NUL |
7 | 1567 if (itmp != NULL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1568 len += (long_u)STRLEN(itmp) + 9; // " { < " + " } " |
7 | 1569 if (otmp != NULL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1570 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; // " " |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
1571 buf = alloc(len); |
7 | 1572 if (buf == NULL) |
1573 return NULL; | |
1574 | |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1575 #if defined(UNIX) |
7 | 1576 /* |
169 | 1577 * Put braces around the command (for concatenated commands) when |
1578 * redirecting input and/or output. | |
7 | 1579 */ |
169 | 1580 if (itmp != NULL || otmp != NULL) |
5867 | 1581 { |
1582 if (is_fish_shell) | |
1583 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd); | |
1584 else | |
1585 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); | |
1586 } | |
169 | 1587 else |
1588 STRCPY(buf, cmd); | |
7 | 1589 if (itmp != NULL) |
1590 { | |
1591 STRCAT(buf, " < "); | |
1592 STRCAT(buf, itmp); | |
1593 } | |
1594 #else | |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1595 // For shells that don't understand braces around commands, at least allow |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1596 // the use of commands in a pipe. |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1597 if (*p_sxe != NUL && *p_sxq == '(') |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1598 { |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1599 if (itmp != NULL || otmp != NULL) |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1600 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1601 else |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1602 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
|
1603 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
|
1604 { |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1605 STRCAT(buf, " < "); |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1606 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
|
1607 } |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1608 } |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1609 else |
7 | 1610 { |
18221
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1611 STRCPY(buf, cmd); |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1612 if (itmp != NULL) |
7 | 1613 { |
18221
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1614 char_u *p; |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1615 |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1616 // If there is a pipe, we have to put the '<' in front of it. |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1617 // Don't do this when 'shellquote' is not empty, otherwise the |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1618 // redirection would be inside the quotes. |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1619 if (*p_shq == NUL) |
7 | 1620 { |
18221
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1621 p = find_pipe(buf); |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1622 if (p != NULL) |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1623 *p = NUL; |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1624 } |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1625 STRCAT(buf, " <"); // " < " causes problems on Amiga |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1626 STRCAT(buf, itmp); |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1627 if (*p_shq == NUL) |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1628 { |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1629 p = find_pipe(cmd); |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1630 if (p != NULL) |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1631 { |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1632 STRCAT(buf, " "); // insert a space before the '|' for DOS |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1633 STRCAT(buf, p); |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1634 } |
7 | 1635 } |
1636 } | |
1637 } | |
1638 #endif | |
1639 if (otmp != NULL) | |
1872 | 1640 append_redir(buf, (int)len, p_srr, otmp); |
7 | 1641 |
1642 return buf; | |
1643 } | |
1644 | |
1645 /* | |
1872 | 1646 * Append output redirection for file "fname" to the end of string buffer |
1647 * "buf[buflen]" | |
7 | 1648 * Works with the 'shellredir' and 'shellpipe' options. |
1649 * The caller should make sure that there is enough room: | |
1650 * STRLEN(opt) + STRLEN(fname) + 3 | |
1651 */ | |
1652 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1653 append_redir( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1654 char_u *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1655 int buflen, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1656 char_u *opt, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1657 char_u *fname) |
7 | 1658 { |
1659 char_u *p; | |
1872 | 1660 char_u *end; |
1661 | |
1662 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
|
1663 // find "%s" |
7 | 1664 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
|
1665 { |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1666 if (p[1] == 's') // found %s |
7 | 1667 break; |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1668 if (p[1] == '%') // skip %% |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1669 ++p; |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1670 } |
7 | 1671 if (p != NULL) |
1672 { | |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1673 #ifdef MSWIN |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1674 *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
|
1675 #endif |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1676 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
1872 | 1677 (char *)opt, (char *)fname); |
7 | 1678 } |
1679 else | |
1872 | 1680 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
7 | 1681 #ifdef FEAT_QUICKFIX |
1682 " %s %s", | |
1683 #else | |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1684 " %s%s", // " > %s" causes problems on Amiga |
7 | 1685 #endif |
1686 (char *)opt, (char *)fname); | |
1687 } | |
1688 | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
1689 /* |
7 | 1690 * Implementation of ":fixdel", also used by get_stty(). |
1691 * <BS> resulting <Del> | |
1692 * ^? ^H | |
1693 * not ^? ^? | |
1694 */ | |
1695 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1696 do_fixdel(exarg_T *eap UNUSED) |
7 | 1697 { |
1698 char_u *p; | |
1699 | |
1700 p = find_termcode((char_u *)"kb"); | |
1701 add_termcode((char_u *)"kD", p != NULL | |
1702 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); | |
1703 } | |
1704 | |
1705 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1706 print_line_no_prefix( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1707 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1708 int use_number, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1709 int list) |
7 | 1710 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1711 char numbuf[30]; |
7 | 1712 |
1713 if (curwin->w_p_nu || use_number) | |
1714 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1715 vim_snprintf(numbuf, sizeof(numbuf), |
1872 | 1716 "%*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
|
1717 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); // Highlight line nrs |
7 | 1718 } |
169 | 1719 msg_prt_line(ml_get(lnum), list); |
7 | 1720 } |
1721 | |
1722 /* | |
1723 * Print a text line. Also in silent mode ("ex -s"). | |
1724 */ | |
1725 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1726 print_line(linenr_T lnum, int use_number, int list) |
7 | 1727 { |
1728 int save_silent = silent_mode; | |
1729 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1730 // apply :filter /pat/ |
9980
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
1731 if (message_filtered(ml_get(lnum))) |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
1732 return; |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
1733 |
169 | 1734 msg_start(); |
7 | 1735 silent_mode = FALSE; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1736 info_message = TRUE; // use mch_msg(), not mch_errmsg() |
169 | 1737 print_line_no_prefix(lnum, use_number, list); |
7 | 1738 if (save_silent) |
1739 { | |
1740 msg_putchar('\n'); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1741 cursor_on(); // msg_start() switches it off |
7 | 1742 out_flush(); |
1743 silent_mode = save_silent; | |
1798 | 1744 } |
1745 info_message = FALSE; | |
7 | 1746 } |
1747 | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1748 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1749 rename_buffer(char_u *new_fname) |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1750 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1751 char_u *fname, *sfname, *xfname; |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1752 buf_T *buf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1753 |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1754 buf = curbuf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1755 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
|
1756 // buffer changed, don't change name now |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1757 if (buf != curbuf) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1758 return FAIL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1759 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1760 if (aborting()) // autocmds may abort script processing |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1761 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1762 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1763 /* |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1764 * 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
|
1765 * 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
|
1766 * name, which will become the alternate file name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1767 * 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
|
1768 * name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1769 */ |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1770 fname = curbuf->b_ffname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1771 sfname = curbuf->b_sfname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1772 xfname = curbuf->b_fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1773 curbuf->b_ffname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1774 curbuf->b_sfname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1775 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL) |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1776 { |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1777 curbuf->b_ffname = fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1778 curbuf->b_sfname = sfname; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1779 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1780 } |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1781 curbuf->b_flags |= BF_NOTEDITED; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1782 if (xfname != NULL && *xfname != NUL) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1783 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1784 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
|
1785 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
|
1786 curwin->w_alt_fnum = buf->b_fnum; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1787 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1788 vim_free(fname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1789 vim_free(sfname); |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1790 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
|
1791 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1792 // 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
|
1793 DO_AUTOCHDIR; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1794 return OK; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1795 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1796 |
7 | 1797 /* |
1798 * ":file[!] [fname]". | |
1799 */ | |
1800 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1801 ex_file(exarg_T *eap) |
7 | 1802 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1803 // ":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
|
1804 // "0file name", etc. |
14 | 1805 if (eap->addr_count > 0 |
1806 && (*eap->arg != NUL | |
1807 || eap->line2 > 0 | |
1808 || eap->addr_count > 1)) | |
1809 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
1810 emsg(_(e_invalid_argument)); |
14 | 1811 return; |
1812 } | |
1813 | |
1814 if (*eap->arg != NUL || eap->addr_count == 1) | |
7 | 1815 { |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1816 if (rename_buffer(eap->arg) == FAIL) |
7 | 1817 return; |
14185
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1818 redraw_tabline = TRUE; |
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1819 } |
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1820 |
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1821 // 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
|
1822 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
|
1823 fileinfo(FALSE, FALSE, eap->forceit); |
7 | 1824 } |
1825 | |
1826 /* | |
1827 * ":update". | |
1828 */ | |
1829 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1830 ex_update(exarg_T *eap) |
7 | 1831 { |
1832 if (curbufIsChanged()) | |
1833 (void)do_write(eap); | |
1834 } | |
1835 | |
1836 /* | |
1837 * ":write" and ":saveas". | |
1838 */ | |
1839 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1840 ex_write(exarg_T *eap) |
7 | 1841 { |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1842 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
|
1843 { |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1844 // :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
|
1845 eap->line1 = 1; |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1846 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
|
1847 } |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1848 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1849 if (eap->usefilter) // input lines to shell command |
7 | 1850 do_bang(1, eap, FALSE, TRUE, FALSE); |
1851 else | |
1852 (void)do_write(eap); | |
1853 } | |
1854 | |
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
|
1855 #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
|
1856 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
|
1857 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
|
1858 { |
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
|
1859 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
|
1860 { |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1861 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
|
1862 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
|
1863 } |
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
|
1864 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
|
1865 } |
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
|
1866 #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
|
1867 |
7 | 1868 /* |
1869 * write current buffer to file 'eap->arg' | |
1870 * if 'eap->append' is TRUE, append to the file | |
1871 * | |
1872 * if *eap->arg == NUL write to current file | |
1873 * | |
1874 * return FAIL for failure, OK otherwise | |
1875 */ | |
1876 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1877 do_write(exarg_T *eap) |
7 | 1878 { |
1879 int other; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1880 char_u *fname = NULL; // init to shut up gcc |
7 | 1881 char_u *ffname; |
1882 int retval = FAIL; | |
1883 char_u *free_fname = NULL; | |
1884 #ifdef FEAT_BROWSE | |
1885 char_u *browse_file = NULL; | |
1886 #endif | |
1887 buf_T *alt_buf = NULL; | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
1888 int name_was_missing; |
7 | 1889 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1890 if (not_writing()) // check 'write' option |
7 | 1891 return FAIL; |
1892 | |
1893 ffname = eap->arg; | |
1894 #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
|
1895 if ((cmdmod.cmod_flags & CMOD_BROWSE) && !exiting) |
7 | 1896 { |
29 | 1897 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
7 | 1898 NULL, NULL, NULL, curbuf); |
1899 if (browse_file == NULL) | |
1900 goto theend; | |
1901 ffname = browse_file; | |
1902 } | |
1903 #endif | |
1904 if (*ffname == NUL) | |
1905 { | |
1906 if (eap->cmdidx == CMD_saveas) | |
1907 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
1908 emsg(_(e_argument_required)); |
7 | 1909 goto theend; |
1910 } | |
1911 other = FALSE; | |
1912 } | |
1913 else | |
1914 { | |
1915 fname = ffname; | |
1916 free_fname = fix_fname(ffname); | |
1917 /* | |
1918 * When out-of-memory, keep unexpanded file name, because we MUST be | |
1919 * able to write the file in this situation. | |
1920 */ | |
1921 if (free_fname != NULL) | |
1922 ffname = free_fname; | |
1923 other = otherfile(ffname); | |
1924 } | |
1925 | |
1926 /* | |
1927 * If we have a new file, put its name in the list of alternate file names. | |
1928 */ | |
1929 if (other) | |
1930 { | |
1931 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL | |
1932 || eap->cmdidx == CMD_saveas) | |
1933 alt_buf = setaltfname(ffname, fname, (linenr_T)1); | |
1934 else | |
1935 alt_buf = buflist_findname(ffname); | |
1936 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) | |
1937 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1938 // 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
|
1939 // good idea. |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
1940 emsg(_(e_file_is_loaded_in_another_buffer)); |
7 | 1941 goto theend; |
1942 } | |
1943 } | |
1944 | |
1945 /* | |
1946 * Writing to the current file is not allowed in readonly mode | |
1947 * and a file name is required. | |
1948 * "nofile" and "nowrite" buffers cannot be written implicitly either. | |
1949 */ | |
1950 if (!other && ( | |
1951 #ifdef FEAT_QUICKFIX | |
1952 bt_dontwrite_msg(curbuf) || | |
1953 #endif | |
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
|
1954 check_fname() == 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
|
1955 #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
|
1956 || 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
|
1957 #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
|
1958 || check_readonly(&eap->forceit, curbuf))) |
7 | 1959 goto theend; |
1960 | |
1961 if (!other) | |
1962 { | |
1963 ffname = curbuf->b_ffname; | |
1964 fname = curbuf->b_fname; | |
1965 /* | |
1966 * Not writing the whole file is only allowed with '!'. | |
1967 */ | |
1968 if ( (eap->line1 != 1 | |
1969 || eap->line2 != curbuf->b_ml.ml_line_count) | |
1970 && !eap->forceit | |
1971 && !eap->append | |
1972 && !p_wa) | |
1973 { | |
1974 #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
|
1975 if (p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) |
7 | 1976 { |
1977 if (vim_dialog_yesno(VIM_QUESTION, NULL, | |
1978 (char_u *)_("Write partial file?"), 2) != VIM_YES) | |
1979 goto theend; | |
1980 eap->forceit = TRUE; | |
1981 } | |
1982 else | |
1983 #endif | |
1984 { | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
1985 emsg(_(e_use_bang_to_write_partial_buffer)); |
7 | 1986 goto theend; |
1987 } | |
1988 } | |
1989 } | |
1990 | |
1991 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) | |
1992 { | |
1993 if (eap->cmdidx == CMD_saveas && alt_buf != NULL) | |
1994 { | |
1995 buf_T *was_curbuf = curbuf; | |
1996 | |
1997 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); | |
21 | 1998 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
|
1999 #ifdef FEAT_EVAL |
7 | 2000 if (curbuf != was_curbuf || aborting()) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2001 #else |
7 | 2002 if (curbuf != was_curbuf) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2003 #endif |
7 | 2004 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2005 // buffer changed, don't change name now |
7 | 2006 retval = FAIL; |
2007 goto theend; | |
2008 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2009 // 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
|
2010 // 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
|
2011 // 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
|
2012 // 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
|
2013 // the file name. |
7 | 2014 fname = alt_buf->b_fname; |
2015 alt_buf->b_fname = curbuf->b_fname; | |
2016 curbuf->b_fname = fname; | |
2017 fname = alt_buf->b_ffname; | |
2018 alt_buf->b_ffname = curbuf->b_ffname; | |
2019 curbuf->b_ffname = fname; | |
2020 fname = alt_buf->b_sfname; | |
2021 alt_buf->b_sfname = curbuf->b_sfname; | |
2022 curbuf->b_sfname = fname; | |
2023 buf_name_changed(curbuf); | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2024 |
7 | 2025 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
21 | 2026 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
7 | 2027 if (!alt_buf->b_p_bl) |
2028 { | |
2029 alt_buf->b_p_bl = TRUE; | |
2030 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); | |
2031 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2032 #ifdef FEAT_EVAL |
7 | 2033 if (curbuf != was_curbuf || aborting()) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2034 #else |
7 | 2035 if (curbuf != was_curbuf) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2036 #endif |
7 | 2037 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2038 // buffer changed, don't write the file |
7 | 2039 retval = FAIL; |
2040 goto theend; | |
2041 } | |
634 | 2042 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2043 // If 'filetype' was empty try detecting it now. |
634 | 2044 if (*curbuf->b_p_ft == NUL) |
2045 { | |
819 | 2046 if (au_has_group((char_u *)"filetypedetect")) |
2047 (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
|
2048 TRUE, NULL); |
717 | 2049 do_modelines(0); |
634 | 2050 } |
2648 | 2051 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2052 // 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
|
2053 // 'autochdir' is set. |
2648 | 2054 fname = curbuf->b_sfname; |
7 | 2055 } |
2056 | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2057 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
|
2058 |
7 | 2059 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, |
2060 eap, eap->append, eap->forceit, TRUE, FALSE); | |
634 | 2061 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2062 // After ":saveas fname" reset 'readonly'. |
961 | 2063 if (eap->cmdidx == CMD_saveas) |
2064 { | |
2065 if (retval == OK) | |
1806 | 2066 { |
961 | 2067 curbuf->b_p_ro = FALSE; |
1806 | 2068 redraw_tabline = TRUE; |
2069 } | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2070 } |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2071 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2072 // 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
|
2073 // got changed or set. |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2074 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
|
2075 DO_AUTOCHDIR; |
7 | 2076 } |
2077 | |
2078 theend: | |
2079 #ifdef FEAT_BROWSE | |
2080 vim_free(browse_file); | |
2081 #endif | |
2082 vim_free(free_fname); | |
2083 return retval; | |
2084 } | |
2085 | |
2086 /* | |
2087 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, | |
2088 * BF_NEW or BF_READERR, check for overwriting current file. | |
2089 * May set eap->forceit if a dialog says it's OK to overwrite. | |
2090 * Return OK if it's OK, FAIL if it is not. | |
2091 */ | |
3486 | 2092 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2093 check_overwrite( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2094 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2095 buf_T *buf, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2096 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
|
2097 // buf->ffname) |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2098 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
|
2099 int other) // writing under other name |
7 | 2100 { |
2101 /* | |
19693
9fbeb3bdf49e
patch 8.2.0403: when 'buftype' is "nofile" there is no overwrite check
Bram Moolenaar <Bram@vim.org>
parents:
19429
diff
changeset
|
2102 * 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
|
2103 * overwriting only allowed with '!'. |
7 | 2104 */ |
2105 if ( (other | |
2106 || (buf->b_flags & BF_NOTEDITED) | |
2107 || ((buf->b_flags & BF_NEW) | |
2108 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) | |
2109 || (buf->b_flags & BF_READERR)) | |
2110 && !p_wa | |
2111 && vim_fexists(ffname)) | |
2112 { | |
460 | 2113 if (!eap->forceit && !eap->append) |
7 | 2114 { |
460 | 2115 #ifdef UNIX |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2116 // with UNIX it is possible to open a directory |
460 | 2117 if (mch_isdir(ffname)) |
2118 { | |
28255
48b9ffd40f38
patch 8.2.4653: "import autoload" does not check the file name
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
2119 semsg(_(e_str_is_directory), ffname); |
460 | 2120 return FAIL; |
2121 } | |
7 | 2122 #endif |
2123 #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
|
2124 if (p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) |
460 | 2125 { |
2770 | 2126 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2127 |
2128 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); | |
2129 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) | |
2130 return FAIL; | |
2131 eap->forceit = TRUE; | |
2132 } | |
2133 else | |
2134 #endif | |
2135 { | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24992
diff
changeset
|
2136 emsg(_(e_file_exists)); |
7 | 2137 return FAIL; |
460 | 2138 } |
7 | 2139 } |
460 | 2140 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2141 // For ":w! filename" check that no swap file exists for "filename". |
460 | 2142 if (other && !emsg_silent) |
7 | 2143 { |
2770 | 2144 char_u *dir; |
460 | 2145 char_u *p; |
2146 int r; | |
2147 char_u *swapname; | |
2148 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2149 // 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
|
2150 // 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
|
2151 // will probably fail anyway. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2152 // 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
|
2153 // for the written file. |
460 | 2154 if (*p_dir == NUL) |
2770 | 2155 { |
2156 dir = alloc(5); | |
2157 if (dir == NULL) | |
2158 return FAIL; | |
460 | 2159 STRCPY(dir, "."); |
2770 | 2160 } |
460 | 2161 else |
2162 { | |
2770 | 2163 dir = alloc(MAXPATHL); |
2164 if (dir == NULL) | |
2165 return FAIL; | |
460 | 2166 p = p_dir; |
2167 copy_option_part(&p, dir, MAXPATHL, ","); | |
2168 } | |
2169 swapname = makeswapname(fname, ffname, curbuf, dir); | |
2770 | 2170 vim_free(dir); |
460 | 2171 r = vim_fexists(swapname); |
2172 if (r) | |
2173 { | |
2174 #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
|
2175 if (p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) |
460 | 2176 { |
2770 | 2177 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2178 |
2179 dialog_msg(buff, | |
2180 _("Swap file \"%s\" exists, overwrite anyway?"), | |
2181 swapname); | |
2182 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) | |
2183 != VIM_YES) | |
819 | 2184 { |
2185 vim_free(swapname); | |
460 | 2186 return FAIL; |
819 | 2187 } |
460 | 2188 eap->forceit = TRUE; |
2189 } | |
2190 else | |
2191 #endif | |
2192 { | |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
2193 semsg(_(e_swap_file_exists_str_silent_overrides), swapname); |
819 | 2194 vim_free(swapname); |
460 | 2195 return FAIL; |
2196 } | |
2197 } | |
819 | 2198 vim_free(swapname); |
7 | 2199 } |
2200 } | |
2201 return OK; | |
2202 } | |
2203 | |
2204 /* | |
2205 * Handle ":wnext", ":wNext" and ":wprevious" commands. | |
2206 */ | |
2207 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2208 ex_wnext(exarg_T *eap) |
7 | 2209 { |
2210 int i; | |
2211 | |
2212 if (eap->cmd[1] == 'n') | |
2213 i = curwin->w_arg_idx + (int)eap->line2; | |
2214 else | |
2215 i = curwin->w_arg_idx - (int)eap->line2; | |
2216 eap->line1 = 1; | |
2217 eap->line2 = curbuf->b_ml.ml_line_count; | |
2218 if (do_write(eap) != FAIL) | |
2219 do_argfile(eap, i); | |
2220 } | |
2221 | |
2222 /* | |
2223 * ":wall", ":wqall" and ":xall": Write all changed files (and exit). | |
2224 */ | |
2225 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2226 do_wqall(exarg_T *eap) |
7 | 2227 { |
2228 buf_T *buf; | |
2229 int error = 0; | |
2230 int save_forceit = eap->forceit; | |
2231 | |
2232 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) | |
2233 exiting = TRUE; | |
2234 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2235 FOR_ALL_BUFFERS(buf) |
7 | 2236 { |
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
|
2237 #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
|
2238 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
|
2239 { |
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
|
2240 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
|
2241 ++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
|
2242 } |
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
|
2243 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
|
2244 #endif |
12648
cdfd6eb8bb80
patch 8.0.1202: :wall gives an errof for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
2245 if (bufIsChanged(buf) && !bt_dontwrite(buf)) |
7 | 2246 { |
2247 /* | |
2248 * Check if there is a reason the buffer cannot be written: | |
2249 * 1. if the 'write' option is set | |
2250 * 2. if there is no file name (even after browsing) | |
2251 * 3. if the 'readonly' is set (even after a dialog) | |
2252 * 4. if overwriting is allowed (even after a dialog) | |
2253 */ | |
2254 if (not_writing()) | |
2255 { | |
2256 ++error; | |
2257 break; | |
2258 } | |
2259 #ifdef FEAT_BROWSE | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2260 // ":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
|
2261 if (buf->b_ffname == NULL && (cmdmod.cmod_flags & CMOD_BROWSE)) |
7 | 2262 browse_save_fname(buf); |
2263 #endif | |
2264 if (buf->b_ffname == NULL) | |
2265 { | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
2266 semsg(_(e_no_file_name_for_buffer_nr), (long)buf->b_fnum); |
7 | 2267 ++error; |
2268 } | |
2269 else if (check_readonly(&eap->forceit, buf) | |
2270 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, | |
2271 FALSE) == FAIL) | |
2272 { | |
2273 ++error; | |
2274 } | |
2275 else | |
2276 { | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2277 bufref_T bufref; |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2278 |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2279 set_bufref(&bufref, buf); |
7 | 2280 if (buf_write_all(buf, eap->forceit) == FAIL) |
2281 ++error; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2282 // 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
|
2283 if (!bufref_valid(&bufref)) |
7 | 2284 buf = firstbuf; |
2285 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2286 eap->forceit = save_forceit; // check_overwrite() may set it |
7 | 2287 } |
2288 } | |
2289 if (exiting) | |
2290 { | |
2291 if (!error) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2292 getout(0); // exit Vim |
7 | 2293 not_exiting(); |
2294 } | |
2295 } | |
2296 | |
2297 /* | |
2298 * 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
|
2299 * Return TRUE and give a message when it's not set. |
7 | 2300 */ |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
2301 static int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2302 not_writing(void) |
7 | 2303 { |
2304 if (p_write) | |
2305 return FALSE; | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
2306 emsg(_(e_file_not_written_writing_is_disabled_by_write_option)); |
7 | 2307 return TRUE; |
2308 } | |
2309 | |
2310 /* | |
1303 | 2311 * Check if a buffer is read-only (either 'readonly' option is set or file is |
2312 * read-only). Ask for overruling in a dialog. Return TRUE and give an error | |
2313 * message when the buffer is readonly. | |
7 | 2314 */ |
2315 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2316 check_readonly(int *forceit, buf_T *buf) |
7 | 2317 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9377
diff
changeset
|
2318 stat_T st; |
1303 | 2319 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2320 // 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
|
2321 // 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
|
2322 // 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
|
2323 // important for device checks but not here. |
1303 | 2324 if (!*forceit && (buf->b_p_ro |
2325 || (mch_stat((char *)buf->b_ffname, &st) >= 0 | |
2326 && check_file_readonly(buf->b_ffname, 0777)))) | |
7 | 2327 { |
2328 #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
|
2329 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
|
2330 && buf->b_fname != NULL) |
7 | 2331 { |
2770 | 2332 char_u buff[DIALOG_MSG_SIZE]; |
7 | 2333 |
1303 | 2334 if (buf->b_p_ro) |
2335 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), | |
2336 buf->b_fname); | |
2337 else | |
2338 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"), | |
7 | 2339 buf->b_fname); |
2340 | |
2341 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) | |
2342 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2343 // Set forceit, to force the writing of a readonly file |
7 | 2344 *forceit = TRUE; |
2345 return FALSE; | |
2346 } | |
2347 else | |
2348 return TRUE; | |
2349 } | |
2350 else | |
2351 #endif | |
1303 | 2352 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
|
2353 emsg(_(e_readonly_option_is_set_add_bang_to_override)); |
1303 | 2354 else |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
2355 semsg(_(e_str_is_read_only_add_bang_to_override), buf->b_fname); |
7 | 2356 return TRUE; |
2357 } | |
1303 | 2358 |
7 | 2359 return FALSE; |
2360 } | |
2361 | |
2362 /* | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2363 * 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
|
2364 * "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
|
2365 * "lnum" is the line number for the cursor in the new file (if non-zero). |
7 | 2366 * |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2367 * Return: |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2368 * GETFILE_ERROR for "normal" error, |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2369 * 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
|
2370 * GETFILE_SAME_FILE for success |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2371 * GETFILE_OPEN_OTHER for successfully opening another file. |
7 | 2372 */ |
2373 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2374 getfile( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2375 int fnum, |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2376 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
|
2377 char_u *sfname_arg, |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2378 int setpm, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2379 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2380 int forceit) |
7 | 2381 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2382 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
|
2383 char_u *sfname = sfname_arg; |
7 | 2384 int other; |
2385 int retval; | |
2386 char_u *free_me = NULL; | |
2387 | |
634 | 2388 if (text_locked()) |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2389 return GETFILE_ERROR; |
819 | 2390 if (curbuf_locked()) |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2391 return GETFILE_ERROR; |
7 | 2392 |
2393 if (fnum == 0) | |
2394 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2395 // make ffname full path, set sfname |
7 | 2396 fname_expand(curbuf, &ffname, &sfname); |
2397 other = otherfile(ffname); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2398 free_me = ffname; // has been allocated, free() later |
7 | 2399 } |
2400 else | |
2401 other = (fnum != curbuf->b_fnum); | |
2402 | |
2403 if (other) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2404 ++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
|
2405 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf) |
7 | 2406 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) |
2407 { | |
2408 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2409 if (p_confirm && p_write) | |
2410 dialog_changed(curbuf, FALSE); | |
2411 if (curbufIsChanged()) | |
2412 #endif | |
2413 { | |
28169
bef82285dda0
patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
27980
diff
changeset
|
2414 --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
|
2415 no_write_message(); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2416 retval = GETFILE_NOT_WRITTEN; // file has been changed |
7 | 2417 goto theend; |
2418 } | |
2419 } | |
2420 if (other) | |
2421 --no_wait_return; | |
2422 if (setpm) | |
2423 setpcmark(); | |
2424 if (!other) | |
2425 { | |
2426 if (lnum != 0) | |
2427 curwin->w_cursor.lnum = lnum; | |
2428 check_cursor_lnum(); | |
2429 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
|
2430 retval = GETFILE_SAME_FILE; // it's in the same file |
7 | 2431 } |
2432 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
|
2433 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0), |
1743 | 2434 curwin) == OK) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2435 retval = GETFILE_OPEN_OTHER; // opened another file |
7 | 2436 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2437 retval = GETFILE_ERROR; // error encountered |
7 | 2438 |
2439 theend: | |
2440 vim_free(free_me); | |
2441 return retval; | |
2442 } | |
2443 | |
2444 /* | |
2445 * start editing a new file | |
2446 * | |
2447 * fnum: file number; if zero use ffname/sfname | |
2448 * ffname: the file name | |
2449 * - full path if sfname used, | |
2450 * - any file name if sfname is NULL | |
2451 * - empty string to re-edit with the same file name (but may be | |
2452 * in a different directory) | |
2453 * - NULL to start an empty buffer | |
2454 * sfname: the short file name (or NULL) | |
2455 * eap: contains the command to be executed after loading the file and | |
2456 * forced 'ff' and 'fenc' | |
2457 * newlnum: if > 0: put cursor on this line number (if possible) | |
2458 * if ECMD_LASTL: use last position in loaded file | |
2459 * if ECMD_LAST: use last position in all files | |
2460 * if ECMD_ONE: use first line | |
2461 * flags: | |
2462 * ECMD_HIDE: if TRUE don't free the current buffer | |
2463 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file | |
2464 * ECMD_OLDBUF: use existing buffer if it exists | |
2465 * ECMD_FORCEIT: ! used for Ex command | |
2466 * 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
|
2467 * 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
|
2468 * ECMD_NOWINENTER: Do not trigger BufWinEnter |
1743 | 2469 * 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
|
2470 * 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
|
2471 * of the previous buffer for "oldwin" is stored. |
7 | 2472 * |
2473 * return FAIL for failure, OK otherwise | |
2474 */ | |
2475 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2476 do_ecmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2477 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2478 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2479 char_u *sfname, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2480 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
|
2481 linenr_T newlnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2482 int flags, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2483 win_T *oldwin) |
7 | 2484 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2485 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
|
2486 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
|
2487 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
|
2488 // into the buffer unexpectedly |
7 | 2489 char_u *new_name = NULL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2490 #if defined(FEAT_EVAL) |
716 | 2491 int did_set_swapcommand = FALSE; |
7 | 2492 #endif |
2493 buf_T *buf; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2494 bufref_T bufref; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2495 bufref_T old_curbuf; |
7 | 2496 char_u *free_fname = NULL; |
2497 #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
|
2498 char_u dot_path[] = "."; |
7 | 2499 char_u *browse_file = NULL; |
2500 #endif | |
2501 int retval = FAIL; | |
2502 long n; | |
6702 | 2503 pos_T orig_pos; |
7 | 2504 linenr_T topline = 0; |
2505 int newcol = -1; | |
2506 int solcol = -1; | |
2507 pos_T *pos; | |
2508 char_u *command = NULL; | |
1185 | 2509 #ifdef FEAT_SPELL |
2510 int did_get_winopts = FALSE; | |
2511 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2512 int readfile_flags = 0; |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2513 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
|
2514 long *so_ptr = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so; |
7 | 2515 |
20384
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2516 #ifdef FEAT_PROP_POPUP |
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2517 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
|
2518 return FAIL; |
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2519 #endif |
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2520 |
7 | 2521 if (eap != NULL) |
2522 command = eap->do_ecmd_cmd; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2523 set_bufref(&old_curbuf, curbuf); |
7 | 2524 |
2525 if (fnum != 0) | |
2526 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2527 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
|
2528 return OK; // nothing to do |
7 | 2529 other_file = TRUE; |
2530 } | |
2531 else | |
2532 { | |
2533 #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
|
2534 if ((cmdmod.cmod_flags & CMOD_BROWSE) && !exiting) |
7 | 2535 { |
462 | 2536 if ( |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2537 # ifdef FEAT_GUI |
462 | 2538 !gui.in_use && |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2539 # endif |
462 | 2540 au_has_group((char_u *)"FileExplorer")) |
2541 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2542 // 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
|
2543 // Edit the directory. |
462 | 2544 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
|
2545 ffname = dot_path; |
462 | 2546 } |
2547 else | |
2548 { | |
2549 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, | |
7 | 2550 NULL, NULL, NULL, curbuf); |
462 | 2551 if (browse_file == NULL) |
2552 goto theend; | |
2553 ffname = browse_file; | |
2554 } | |
7 | 2555 } |
2556 #endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2557 // if no short name given, use ffname for short name |
7 | 2558 if (sfname == NULL) |
2559 sfname = ffname; | |
2560 #ifdef USE_FNAME_CASE | |
15794
0d8291665b59
patch 8.1.0904: USE_LONG_FNAME never defined
Bram Moolenaar <Bram@vim.org>
parents:
15760
diff
changeset
|
2561 if (sfname != NULL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2562 fname_case(sfname, 0); // set correct case for sfname |
7 | 2563 #endif |
2564 | |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2565 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
|
2566 && (ffname == NULL || *ffname == NUL)) |
7 | 2567 goto theend; |
2568 | |
2569 if (ffname == NULL) | |
2570 other_file = TRUE; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2571 // there is no file name |
7 | 2572 else if (*ffname == NUL && curbuf->b_ffname == NULL) |
2573 other_file = FALSE; | |
2574 else | |
2575 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2576 if (*ffname == NUL) // re-edit with same file name |
7 | 2577 { |
2578 ffname = curbuf->b_ffname; | |
2579 sfname = curbuf->b_fname; | |
2580 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2581 free_fname = fix_fname(ffname); // may expand to full path name |
7 | 2582 if (free_fname != NULL) |
2583 ffname = free_fname; | |
2584 other_file = otherfile(ffname); | |
2585 } | |
2586 } | |
2587 | |
2588 /* | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20599
diff
changeset
|
2589 * If the file was changed we may not be allowed to abandon it: |
7 | 2590 * - if we are going to re-edit the same file |
2591 * - or if we are the only window on this file and if ECMD_HIDE is FALSE | |
2592 */ | |
2593 if ( ((!other_file && !(flags & ECMD_OLDBUF)) | |
2594 || (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
|
2595 && !(flags & (ECMD_HIDE | ECMD_ADDBUF | ECMD_ALTBUF)))) |
5464 | 2596 && check_changed(curbuf, (p_awa ? CCGD_AW : 0) |
2597 | (other_file ? 0 : CCGD_MULTWIN) | |
2598 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0) | |
2599 | (eap == NULL ? 0 : CCGD_EXCMD))) | |
7 | 2600 { |
2601 if (fnum == 0 && other_file && ffname != NULL) | |
2602 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); | |
2603 goto theend; | |
2604 } | |
2605 | |
2606 /* | |
2607 * End Visual mode before switching to another buffer, so the text can be | |
2608 * copied into the GUI selection buffer. | |
2609 */ | |
2610 reset_VIsual(); | |
2611 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2612 #if defined(FEAT_EVAL) |
716 | 2613 if ((command != NULL || newlnum > (linenr_T)0) |
2614 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) | |
2615 { | |
2616 int len; | |
2617 char_u *p; | |
2618 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2619 // Set v:swapcommand for the SwapExists autocommands. |
716 | 2620 if (command != NULL) |
835 | 2621 len = (int)STRLEN(command) + 3; |
716 | 2622 else |
2623 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
|
2624 p = alloc(len); |
716 | 2625 if (p != NULL) |
2626 { | |
2627 if (command != NULL) | |
2628 vim_snprintf((char *)p, len, ":%s\r", command); | |
2629 else | |
2630 vim_snprintf((char *)p, len, "%ldG", (long)newlnum); | |
2631 set_vim_var_string(VV_SWAPCOMMAND, p, -1); | |
2632 did_set_swapcommand = TRUE; | |
2633 vim_free(p); | |
2634 } | |
2635 } | |
2636 #endif | |
2637 | |
7 | 2638 /* |
2639 * If we are starting to edit another file, open a (new) buffer. | |
2640 * Otherwise we re-use the current buffer. | |
2641 */ | |
2642 if (other_file) | |
2643 { | |
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
|
2644 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
|
2645 |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2646 if (!(flags & (ECMD_ADDBUF | ECMD_ALTBUF))) |
7 | 2647 { |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
2648 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0) |
22 | 2649 curwin->w_alt_fnum = curbuf->b_fnum; |
1743 | 2650 if (oldwin != NULL) |
2651 buflist_altfpos(oldwin); | |
7 | 2652 } |
2653 | |
2654 if (fnum) | |
2655 buf = buflist_findnr(fnum); | |
2656 else | |
2657 { | |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2658 if (flags & (ECMD_ADDBUF | ECMD_ALTBUF)) |
7 | 2659 { |
22707
9ff187b1652e
patch 8.2.1902: default option values changed with :badd for existing buffer
Bram Moolenaar <Bram@vim.org>
parents:
22701
diff
changeset
|
2660 // 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
|
2661 // 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
|
2662 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
|
2663 buf_T *newbuf; |
7 | 2664 |
2665 if (command != NULL) | |
2666 { | |
2667 tlnum = atol((char *)command); | |
2668 if (tlnum <= 0) | |
2669 tlnum = 1L; | |
2670 } | |
23229
b545334ae654
patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents:
23011
diff
changeset
|
2671 // 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
|
2672 // 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
|
2673 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
|
2674 BLN_LISTED | BLN_NOCURWIN); |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2675 if (newbuf != NULL && (flags & 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
|
2676 curwin->w_alt_fnum = newbuf->b_fnum; |
7 | 2677 goto theend; |
2678 } | |
2679 buf = buflist_new(ffname, sfname, 0L, | |
2680 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
|
2681 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2682 // autocommands may change curwin and curbuf |
5816 | 2683 if (oldwin != NULL) |
2684 oldwin = curwin; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2685 set_bufref(&old_curbuf, curbuf); |
7 | 2686 } |
2687 if (buf == NULL) | |
2688 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
|
2689 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
|
2690 // 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
|
2691 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
|
2692 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2693 if (buf->b_ml.ml_mfp == NULL) // no memfile yet |
7 | 2694 { |
2695 oldbuf = FALSE; | |
2696 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2697 else // existing memfile |
7 | 2698 { |
2699 oldbuf = TRUE; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2700 set_bufref(&bufref, buf); |
7 | 2701 (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
|
2702 // 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
|
2703 // current buffer. |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2704 if (!bufref_valid(&bufref) || curbuf != old_curbuf.br_buf) |
7 | 2705 goto theend; |
2706 #ifdef FEAT_EVAL | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2707 if (aborting()) // autocmds may abort script processing |
7 | 2708 goto theend; |
2709 #endif | |
2710 } | |
2711 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2712 // 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
|
2713 // for explicitly |
7 | 2714 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) |
2715 { | |
2716 pos = buflist_findfpos(buf); | |
2717 newlnum = pos->lnum; | |
2718 solcol = pos->col; | |
2719 } | |
2720 | |
2721 /* | |
2722 * Make the (new) buffer the one used by the current window. | |
2723 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. | |
2724 * If the current buffer was empty and has no file name, curbuf | |
6639 | 2725 * is returned by buflist_new(), nothing to do here. |
7 | 2726 */ |
2727 if (buf != curbuf) | |
2728 { | |
23861
5d11a15dbaa9
patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23845
diff
changeset
|
2729 bufref_T save_au_new_curbuf; |
23784
34a95c4bd647
patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23768
diff
changeset
|
2730 #ifdef FEAT_CMDWIN |
23861
5d11a15dbaa9
patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23845
diff
changeset
|
2731 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
|
2732 |
34a95c4bd647
patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23768
diff
changeset
|
2733 // 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
|
2734 cmdwin_type = 0; |
34a95c4bd647
patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23768
diff
changeset
|
2735 #endif |
7 | 2736 /* |
2737 * Be careful: The autocommands may delete any buffer and change | |
2738 * the current buffer. | |
2739 * - If the buffer we are going to edit is deleted, give up. | |
2740 * - If the current buffer is deleted, prefer to load the new | |
2741 * buffer when loading a buffer is required. This avoids | |
2742 * loading another buffer which then must be closed again. | |
2743 * - If we ended up in the new buffer already, need to skip a few | |
2744 * things, set auto_buf. | |
2745 */ | |
2746 if (buf->b_fname != NULL) | |
2747 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
|
2748 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
|
2749 set_bufref(&au_new_curbuf, buf); |
7 | 2750 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
|
2751 #ifdef FEAT_CMDWIN |
34a95c4bd647
patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23768
diff
changeset
|
2752 cmdwin_type = save_cmdwin_type; |
34a95c4bd647
patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23768
diff
changeset
|
2753 #endif |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2754 if (!bufref_valid(&au_new_curbuf)) |
7 | 2755 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2756 // new buffer has been deleted |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2757 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
|
2758 au_new_curbuf = save_au_new_curbuf; |
7 | 2759 goto theend; |
2760 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2761 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2762 if (aborting()) // autocmds may abort script processing |
7 | 2763 { |
2764 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
|
2765 au_new_curbuf = save_au_new_curbuf; |
7 | 2766 goto theend; |
2767 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2768 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2769 if (buf == curbuf) // already in new buffer |
7 | 2770 auto_buf = TRUE; |
2771 else | |
2772 { | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2773 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
|
2774 int did_decrement; |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2775 buf_T *was_curbuf = curbuf; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2776 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2777 // 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
|
2778 // 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
|
2779 the_curwin->w_closing = TRUE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2780 ++buf->b_locked; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2781 |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2782 if (curbuf == old_curbuf.br_buf) |
7 | 2783 buf_copy_options(buf, BCO_ENTER); |
2784 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2785 // 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
|
2786 // oldwin->w_buffer to NULL. |
825 | 2787 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
|
2788 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
|
2789 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE, FALSE); |
7 | 2790 |
23845
7517eb94239b
patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
23784
diff
changeset
|
2791 // 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
|
2792 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
|
2793 the_curwin->w_closing = FALSE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2794 --buf->b_locked; |
3242 | 2795 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2796 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2797 // autocmds may abort script processing |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2798 if (aborting() && curwin->w_buffer != NULL) |
7 | 2799 { |
2800 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
|
2801 au_new_curbuf = save_au_new_curbuf; |
7 | 2802 goto theend; |
2803 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2804 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2805 // Be careful again, like above. |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2806 if (!bufref_valid(&au_new_curbuf)) |
7 | 2807 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2808 // new buffer has been deleted |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2809 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
|
2810 au_new_curbuf = save_au_new_curbuf; |
7 | 2811 goto theend; |
2812 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2813 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
|
2814 { |
f9d02c83f306
patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents:
23529
diff
changeset
|
2815 // 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
|
2816 // 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
|
2817 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
|
2818 ++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
|
2819 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
|
2820 oldwin->w_buffer = was_curbuf; |
7 | 2821 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
|
2822 } |
7 | 2823 else |
2824 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2825 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2826 /* |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2827 * <VN> We could instead free the synblock |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2828 * and re-attach to buffer, perhaps. |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2829 */ |
11649
0f7888a5ba68
patch 8.0.0707: freeing wrong memory with certain autocommands
Christian Brabandt <cb@256bit.org>
parents:
11589
diff
changeset
|
2830 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
|
2831 || curwin->w_s == &(curwin->w_buffer->b_s)) |
3480 | 2832 curwin->w_s = &(buf->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2833 #endif |
7 | 2834 curwin->w_buffer = buf; |
2835 curbuf = buf; | |
2836 ++curbuf->b_nwindows; | |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2837 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2838 // Set 'fileformat', 'binary' and 'fenc' when forced. |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2839 if (!oldbuf && eap != NULL) |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2840 { |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2841 set_file_options(TRUE, eap); |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2842 set_forced_fenc(eap); |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2843 } |
7 | 2844 } |
2845 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2846 // 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
|
2847 // 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
|
2848 // 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
|
2849 // values. Also restores old folding stuff. |
1289 | 2850 get_winopts(curbuf); |
1185 | 2851 #ifdef FEAT_SPELL |
2852 did_get_winopts = TRUE; | |
2853 #endif | |
7 | 2854 } |
2855 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
|
2856 au_new_curbuf = save_au_new_curbuf; |
7 | 2857 } |
2858 | |
2859 curwin->w_pcmark.lnum = 1; | |
2860 curwin->w_pcmark.col = 0; | |
2861 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2862 else // !other_file |
7 | 2863 { |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22812
diff
changeset
|
2864 if ((flags & (ECMD_ADDBUF | ECMD_ALTBUF)) || check_fname() == FAIL) |
7 | 2865 goto theend; |
6531 | 2866 |
7 | 2867 oldbuf = (flags & ECMD_OLDBUF); |
2868 } | |
2869 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2870 // 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
|
2871 // 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
|
2872 ++RedrawingDisabled; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2873 did_inc_redrawing_disabled = TRUE; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2874 |
6365 | 2875 buf = curbuf; |
7 | 2876 if ((flags & ECMD_SET_HELP) || keep_help_flag) |
2877 { | |
6365 | 2878 prepare_help_buffer(); |
7 | 2879 } |
2880 else | |
2881 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2882 // 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
|
2883 // using CTRL-O to go back to a help file. |
7 | 2884 if (!curbuf->b_help) |
2885 set_buflisted(TRUE); | |
2886 } | |
2887 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2888 // 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
|
2889 // editing the file. |
7 | 2890 if (buf != curbuf) |
2891 goto theend; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2892 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2893 if (aborting()) // autocmds may abort script processing |
7 | 2894 goto theend; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2895 #endif |
7 | 2896 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2897 // 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
|
2898 // 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
|
2899 // highlighting to work in the other file. |
7 | 2900 did_filetype = FALSE; |
2901 | |
2902 /* | |
2903 * other_file oldbuf | |
2904 * FALSE FALSE re-edit same file, buffer is re-used | |
2905 * FALSE TRUE re-edit same file, nothing changes | |
2906 * TRUE FALSE start editing new file, new buffer | |
2907 * TRUE TRUE start editing in existing buffer (nothing to do) | |
2908 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2909 if (!other_file && !oldbuf) // re-use the buffer |
7 | 2910 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2911 set_last_cursor(curwin); // may set b_last_cursor |
7 | 2912 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) |
2913 { | |
2914 newlnum = curwin->w_cursor.lnum; | |
2915 solcol = curwin->w_cursor.col; | |
2916 } | |
2917 buf = curbuf; | |
2918 if (buf->b_fname != NULL) | |
2919 new_name = vim_strsave(buf->b_fname); | |
2920 else | |
2921 new_name = NULL; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2922 set_bufref(&bufref, buf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2923 |
22506
a6fe2e1ad5b0
patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents:
21821
diff
changeset
|
2924 // 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
|
2925 // 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
|
2926 // 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
|
2927 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
|
2928 && (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
|
2929 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2930 // 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
|
2931 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
|
2932 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
|
2933 == FAIL) |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
2934 { |
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
2935 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
|
2936 goto theend; |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
2937 } |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2938 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
|
2939 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
|
2940 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2941 // 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
|
2942 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
|
2943 } |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2944 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2945 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
|
2946 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2947 // 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
|
2948 // 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
|
2949 if (!bufref_valid(&bufref)) |
7 | 2950 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2951 delbuf_msg(new_name); // frees new_name |
7 | 2952 goto theend; |
2953 } | |
2954 vim_free(new_name); | |
2955 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2956 // 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
|
2957 // 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
|
2958 // the autocommands changed the buffer... |
7 | 2959 if (buf != curbuf) |
2960 goto theend; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2961 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2962 if (aborting()) // autocmds may abort script processing |
7 | 2963 goto theend; |
2964 #endif | |
2965 buf_clear_file(curbuf); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2966 curbuf->b_op_start.lnum = 0; // clear '[ and '] marks |
7 | 2967 curbuf->b_op_end.lnum = 0; |
2968 } | |
2969 | |
2970 /* | |
2971 * If we get here we are sure to start editing | |
2972 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2973 // Assume success now |
7 | 2974 retval = OK; |
2975 | |
29487
4f52a21f41f3
patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents:
29410
diff
changeset
|
2976 // 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
|
2977 // works. |
4f52a21f41f3
patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents:
29410
diff
changeset
|
2978 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
|
2979 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
|
2980 |
7 | 2981 /* |
2982 * Check if we are editing the w_arg_idx file in the argument list. | |
2983 */ | |
2984 check_arg_idx(curwin); | |
2985 | |
2986 if (!auto_buf) | |
2987 { | |
2988 /* | |
2989 * Set cursor and init window before reading the file and executing | |
2990 * autocommands. This allows for the autocommands to position the | |
2991 * cursor. | |
2992 */ | |
677 | 2993 curwin_init(); |
7 | 2994 |
2995 #ifdef FEAT_FOLDING | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2996 // 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
|
2997 // automatic folding for all windows where it's used. |
1370 | 2998 { |
2999 win_T *win; | |
3000 tabpage_T *tp; | |
3001 | |
3002 FOR_ALL_TAB_WINDOWS(tp, win) | |
3003 if (win->w_buffer == curbuf) | |
3004 foldUpdateAll(win); | |
3005 } | |
7 | 3006 #endif |
3007 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3008 // 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
|
3009 DO_AUTOCHDIR; |
961 | 3010 |
7 | 3011 /* |
3012 * Careful: open_buffer() and apply_autocmds() may change the current | |
3013 * buffer and window. | |
3014 */ | |
6702 | 3015 orig_pos = curwin->w_cursor; |
7 | 3016 topline = curwin->w_topline; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3017 if (!oldbuf) // need to read the file |
7 | 3018 { |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
3019 #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
|
3020 // 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
|
3021 // the buffer. |
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
3022 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
|
3023 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
|
3024 #endif |
7 | 3025 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
|
3026 curbuf->b_flags |= BF_CHECK_RO; // set/reset 'ro' flag |
7 | 3027 |
3028 /* | |
3029 * Open the buffer and read the file. | |
3030 */ | |
26026
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
3031 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
|
3032 readfile_flags |= READ_NOWINENTER; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3033 #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
|
3034 if (should_abort(open_buffer(FALSE, eap, readfile_flags))) |
7 | 3035 retval = FAIL; |
3036 #else | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3037 (void)open_buffer(FALSE, eap, readfile_flags); |
7 | 3038 #endif |
3039 | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
3040 #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
|
3041 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
|
3042 #endif |
7 | 3043 if (swap_exists_action == SEA_QUIT) |
3044 retval = FAIL; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3045 handle_swap_exists(&old_curbuf); |
7 | 3046 } |
3047 else | |
3048 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3049 // 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
|
3050 // 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
|
3051 // changed by the user. |
717 | 3052 do_modelines(OPT_WINONLY); |
23 | 3053 |
26026
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
3054 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
|
3055 curbuf, &retval); |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25943
diff
changeset
|
3056 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
|
3057 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
|
3058 curbuf, &retval); |
7 | 3059 } |
3060 check_arg_idx(curwin); | |
3061 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3062 // 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
|
3063 // 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
|
3064 // 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
|
3065 if (!EQUAL_POS(curwin->w_cursor, orig_pos)) |
7 | 3066 { |
14033
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3067 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
|
3068 |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3069 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
|
3070 || 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
|
3071 { |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3072 newlnum = curwin->w_cursor.lnum; |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3073 newcol = curwin->w_cursor.col; |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
3074 } |
7 | 3075 } |
3076 if (curwin->w_topline == topline) | |
3077 topline = 0; | |
3078 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3079 // Even when cursor didn't move we need to recompute topline. |
7 | 3080 changed_line_abv_curs(); |
3081 | |
3082 maketitle(); | |
18767
068337e86133
patch 8.1.2373: cannot build with +popupwin but without +quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3083 #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
|
3084 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
|
3085 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
|
3086 #endif |
7 | 3087 } |
3088 | |
3089 #ifdef FEAT_DIFF | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3090 // 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
|
3091 // 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
|
3092 // have removed it as a diff buffer. |
673 | 3093 if (curwin->w_p_diff) |
3094 { | |
3095 diff_buf_add(curbuf); | |
3096 diff_invalidate(curbuf); | |
3097 } | |
7 | 3098 #endif |
3099 | |
1185 | 3100 #ifdef FEAT_SPELL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3101 // 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
|
3102 // 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
|
3103 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
|
3104 (void)did_set_spelllang(curwin); |
1185 | 3105 #endif |
3106 | |
7 | 3107 if (command == NULL) |
3108 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3109 if (newcol >= 0) // position set by autocommands |
7 | 3110 { |
3111 curwin->w_cursor.lnum = newlnum; | |
3112 curwin->w_cursor.col = newcol; | |
3113 check_cursor(); | |
3114 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3115 else if (newlnum > 0) // line number from caller or old position |
7 | 3116 { |
3117 curwin->w_cursor.lnum = newlnum; | |
3118 check_cursor_lnum(); | |
3119 if (solcol >= 0 && !p_sol) | |
3120 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3121 // 'sol' is off: Use last known column. |
7 | 3122 curwin->w_cursor.col = solcol; |
3123 check_cursor_col(); | |
3124 curwin->w_cursor.coladd = 0; | |
3125 curwin->w_set_curswant = TRUE; | |
3126 } | |
3127 else | |
3128 beginline(BL_SOL | BL_FIX); | |
3129 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3130 else // no line number, go to last line in Ex mode |
7 | 3131 { |
3132 if (exmode_active) | |
3133 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
3134 beginline(BL_WHITE | BL_FIX); | |
3135 } | |
3136 } | |
3137 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3138 // Check if cursors in other windows on the same buffer are still valid |
7 | 3139 check_lnums(FALSE); |
3140 | |
3141 /* | |
3142 * Did not read the file, need to show some info about the file. | |
3143 * Do this after setting the cursor. | |
3144 */ | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3145 if (oldbuf && !auto_buf) |
7 | 3146 { |
3147 int msg_scroll_save = msg_scroll; | |
3148 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3149 // 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
|
3150 // message. |
7 | 3151 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) |
3152 msg_scroll = FALSE; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3153 if (!msg_scroll) // wait a bit when overwriting an error msg |
7 | 3154 check_for_delay(FALSE); |
3155 msg_start(); | |
3156 msg_scroll = msg_scroll_save; | |
3157 msg_scrolled_ign = TRUE; | |
3158 | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
3159 if (!shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
3160 fileinfo(FALSE, TRUE, FALSE); |
7 | 3161 |
3162 msg_scrolled_ign = FALSE; | |
3163 } | |
3164 | |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3165 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3166 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3167 #endif |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3168 |
7 | 3169 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
|
3170 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE|DOCMD_RANGEOK); |
7 | 3171 |
3172 #ifdef FEAT_KEYMAP | |
3173 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 3174 (void)keymap_init(); |
7 | 3175 #endif |
3176 | |
3177 --RedrawingDisabled; | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3178 did_inc_redrawing_disabled = FALSE; |
7 | 3179 if (!skip_redraw) |
3180 { | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3181 n = *so_ptr; |
7 | 3182 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
|
3183 *so_ptr = 9999; // force cursor halfway the window |
7 | 3184 update_topline(); |
3185 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
|
3186 *so_ptr = n; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3187 redraw_curbuf_later(NOT_VALID); // redraw this buffer later |
7 | 3188 } |
3189 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3190 if (p_im && (State & MODE_INSERT) == 0) |
7 | 3191 need_start_insertmode = TRUE; |
3192 | |
13174
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3193 #ifdef FEAT_AUTOCHDIR |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3194 // 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
|
3195 // 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
|
3196 // 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
|
3197 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
|
3198 { |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3199 char_u curdir[MAXPATHL]; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3200 char_u filedir[MAXPATHL]; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3201 |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3202 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
|
3203 *gettail_sep(filedir) = NUL; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3204 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
|
3205 && vim_fnamecmp(curdir, filedir) != 0) |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3206 do_autochdir(); |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3207 } |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3208 #endif |
821 | 3209 |
15510
41fbbcea0f1b
patch 8.1.0763: nobody is using the Sun Workshop support
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3210 #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
|
3211 if (curbuf->b_ffname != NULL) |
7 | 3212 { |
3213 # ifdef FEAT_NETBEANS_INTG | |
2210 | 3214 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP) |
34 | 3215 netbeans_file_opened(curbuf); |
7 | 3216 # endif |
3217 } | |
3218 #endif | |
3219 | |
3220 theend: | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3221 if (did_inc_redrawing_disabled) |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3222 --RedrawingDisabled; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3223 #if defined(FEAT_EVAL) |
716 | 3224 if (did_set_swapcommand) |
3225 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); | |
3226 #endif | |
7 | 3227 #ifdef FEAT_BROWSE |
3228 vim_free(browse_file); | |
3229 #endif | |
3230 vim_free(free_fname); | |
3231 return retval; | |
3232 } | |
3233 | |
3234 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3235 delbuf_msg(char_u *name) |
7 | 3236 { |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
3237 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
|
3238 name == NULL ? (char_u *)"" : name); |
7 | 3239 vim_free(name); |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3240 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
|
3241 au_new_curbuf.br_buf_free_count = 0; |
7 | 3242 } |
3243 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3244 static int append_indent = 0; // autoindent for first line |
169 | 3245 |
7 | 3246 /* |
3247 * ":insert" and ":append", also used by ":change" | |
3248 */ | |
3249 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3250 ex_append(exarg_T *eap) |
7 | 3251 { |
3252 char_u *theline; | |
3253 int did_undo = FALSE; | |
3254 linenr_T lnum = eap->line2; | |
165 | 3255 int indent = 0; |
3256 char_u *p; | |
3257 int vcol; | |
3258 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); | |
7 | 3259 |
21518
0b448762ebbd
patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
21516
diff
changeset
|
3260 #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
|
3261 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
|
3262 return; |
21518
0b448762ebbd
patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
21516
diff
changeset
|
3263 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3264 // the ! flag toggles autoindent |
169 | 3265 if (eap->forceit) |
3266 curbuf->b_p_ai = !curbuf->b_p_ai; | |
3267 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3268 // First autoindent comes from the line we start on |
169 | 3269 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) |
3270 append_indent = get_indent_lnum(lnum); | |
3271 | |
7 | 3272 if (eap->cmdidx != CMD_append) |
3273 --lnum; | |
3274 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3275 // when the buffer is empty need to delete the dummy line |
165 | 3276 if (empty && lnum == 1) |
3277 lnum = 0; | |
3278 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3279 State = MODE_INSERT; // behave like in Insert mode |
7 | 3280 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
|
3281 State |= MODE_LANGMAP; |
165 | 3282 |
408 | 3283 for (;;) |
7 | 3284 { |
3285 msg_scroll = TRUE; | |
3286 need_wait_return = FALSE; | |
169 | 3287 if (curbuf->b_p_ai) |
3288 { | |
3289 if (append_indent >= 0) | |
3290 { | |
3291 indent = append_indent; | |
3292 append_indent = -1; | |
3293 } | |
3294 else if (lnum > 0) | |
3295 indent = get_indent_lnum(lnum); | |
3296 } | |
3297 ex_keep_indent = FALSE; | |
7 | 3298 if (eap->getline == NULL) |
169 | 3299 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3300 // 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
|
3301 // when there is no more. |
169 | 3302 if (eap->nextcmd == NULL || *eap->nextcmd == NUL) |
3303 break; | |
3304 p = vim_strchr(eap->nextcmd, NL); | |
3305 if (p == NULL) | |
3306 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
|
3307 theline = vim_strnsave(eap->nextcmd, p - eap->nextcmd); |
169 | 3308 if (*p != NUL) |
3309 ++p; | |
3310 eap->nextcmd = p; | |
3311 } | |
7 | 3312 else |
6164 | 3313 { |
3314 int save_State = State; | |
3315 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3316 // 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
|
3317 // 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
|
3318 State = MODE_CMDLINE; |
7 | 3319 theline = eap->getline( |
3320 #ifdef FEAT_EVAL | |
76 | 3321 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 3322 #endif |
17178
40c4cb095d53
patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents:
17095
diff
changeset
|
3323 NUL, eap->cookie, indent, TRUE); |
6164 | 3324 State = save_State; |
3325 } | |
7 | 3326 lines_left = Rows - 1; |
165 | 3327 if (theline == NULL) |
3328 break; | |
3329 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3330 // Using ^ CTRL-D in getexmodeline() makes us repeat the indent. |
169 | 3331 if (ex_keep_indent) |
3332 append_indent = indent; | |
3333 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3334 // Look for the "." after automatic indent. |
165 | 3335 vcol = 0; |
3336 for (p = theline; indent > vcol; ++p) | |
3337 { | |
3338 if (*p == ' ') | |
3339 ++vcol; | |
3340 else if (*p == TAB) | |
3341 vcol += 8 - vcol % 8; | |
3342 else | |
3343 break; | |
3344 } | |
3345 if ((p[0] == '.' && p[1] == NUL) | |
321 | 3346 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
3347 == FAIL)) | |
7 | 3348 { |
3349 vim_free(theline); | |
3350 break; | |
3351 } | |
3352 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3353 // don't use autoindent if nothing was typed. |
169 | 3354 if (p[0] == NUL) |
3355 theline[0] = NUL; | |
3356 | |
7 | 3357 did_undo = TRUE; |
3358 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
|
3359 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
|
3360 // 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
|
3361 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
|
3362 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
|
3363 appended_lines_mark(lnum, 1L); |
7 | 3364 |
3365 vim_free(theline); | |
3366 ++lnum; | |
165 | 3367 |
3368 if (empty) | |
3369 { | |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20561
diff
changeset
|
3370 ml_delete(2L); |
165 | 3371 empty = FALSE; |
3372 } | |
7 | 3373 } |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
3374 State = MODE_NORMAL; |
7 | 3375 |
169 | 3376 if (eap->forceit) |
3377 curbuf->b_p_ai = !curbuf->b_p_ai; | |
3378 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3379 // "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
|
3380 // 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
|
3381 // "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
|
3382 // 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
|
3383 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
|
3384 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3385 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
|
3386 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
|
3387 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
|
3388 --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
|
3389 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
|
3390 ? 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
|
3391 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
|
3392 } |
7 | 3393 curwin->w_cursor.lnum = lnum; |
3394 check_cursor_lnum(); | |
3395 beginline(BL_SOL | BL_FIX); | |
3396 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3397 need_wait_return = FALSE; // don't use wait_return() now |
7 | 3398 ex_no_reprint = TRUE; |
3399 } | |
3400 | |
3401 /* | |
3402 * ":change" | |
3403 */ | |
3404 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3405 ex_change(exarg_T *eap) |
7 | 3406 { |
3407 linenr_T lnum; | |
3408 | |
21518
0b448762ebbd
patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
21516
diff
changeset
|
3409 #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
|
3410 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
|
3411 return; |
21518
0b448762ebbd
patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
21516
diff
changeset
|
3412 #endif |
7 | 3413 if (eap->line2 >= eap->line1 |
3414 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) | |
3415 return; | |
3416 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3417 // the ! flag toggles autoindent |
169 | 3418 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) |
3419 append_indent = get_indent_lnum(eap->line1); | |
3420 | |
7 | 3421 for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
3422 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3423 if (curbuf->b_ml.ml_flags & ML_EMPTY) // nothing to delete |
7 | 3424 break; |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20561
diff
changeset
|
3425 ml_delete(eap->line1); |
7 | 3426 } |
1929 | 3427 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3428 // make sure the cursor is not beyond the end of the file now |
1929 | 3429 check_cursor_lnum(); |
7 | 3430 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
3431 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3432 // ":append" on the line above the deleted lines. |
7 | 3433 eap->line2 = eap->line1; |
3434 ex_append(eap); | |
3435 } | |
3436 | |
3437 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3438 ex_z(exarg_T *eap) |
7 | 3439 { |
3440 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
|
3441 long bigness; |
165 | 3442 char_u *kind; |
7 | 3443 int minus = 0; |
3444 linenr_T start, end, curs, i; | |
3445 int j; | |
3446 linenr_T lnum = eap->line2; | |
3447 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3448 // 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
|
3449 // 'scroll' |
165 | 3450 if (eap->forceit) |
25729
0f93e9423890
patch 8.2.3400: ":z!" is not supported
Bram Moolenaar <Bram@vim.org>
parents:
25654
diff
changeset
|
3451 bigness = Rows - 1; |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10299
diff
changeset
|
3452 else if (!ONE_WINDOW) |
5678 | 3453 bigness = curwin->w_height - 3; |
3454 else | |
165 | 3455 bigness = curwin->w_p_scr * 2; |
7 | 3456 if (bigness < 1) |
3457 bigness = 1; | |
3458 | |
3459 x = eap->arg; | |
165 | 3460 kind = x; |
3461 if (*kind == '-' || *kind == '+' || *kind == '=' | |
3462 || *kind == '^' || *kind == '.') | |
3463 ++x; | |
3464 while (*x == '-' || *x == '+') | |
7 | 3465 ++x; |
3466 | |
3467 if (*x != 0) | |
3468 { | |
3469 if (!VIM_ISDIGIT(*x)) | |
3470 { | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
3471 emsg(_(e_non_numeric_argument_to_z)); |
7 | 3472 return; |
3473 } | |
3474 else | |
165 | 3475 { |
11303
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
3476 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
|
3477 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3478 // 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
|
3479 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
|
3480 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
|
3481 |
165 | 3482 p_window = bigness; |
169 | 3483 if (*kind == '=') |
3484 bigness += 2; | |
165 | 3485 } |
7 | 3486 } |
3487 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3488 // the number of '-' and '+' multiplies the distance |
165 | 3489 if (*kind == '-' || *kind == '+') |
3490 for (x = kind + 1; *x == *kind; ++x) | |
3491 ; | |
3492 | |
3493 switch (*kind) | |
7 | 3494 { |
3495 case '-': | |
2881 | 3496 start = lnum - bigness * (linenr_T)(x - kind) + 1; |
3497 end = start + bigness - 1; | |
165 | 3498 curs = end; |
7 | 3499 break; |
3500 | |
3501 case '=': | |
159 | 3502 start = lnum - (bigness + 1) / 2 + 1; |
3503 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 3504 curs = lnum; |
3505 minus = 1; | |
3506 break; | |
3507 | |
3508 case '^': | |
3509 start = lnum - bigness * 2; | |
3510 end = lnum - bigness; | |
3511 curs = lnum - bigness; | |
3512 break; | |
3513 | |
3514 case '.': | |
159 | 3515 start = lnum - (bigness + 1) / 2 + 1; |
3516 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 3517 curs = end; |
3518 break; | |
3519 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3520 default: // '+' |
7 | 3521 start = lnum; |
165 | 3522 if (*kind == '+') |
835 | 3523 start += bigness * (linenr_T)(x - kind - 1) + 1; |
169 | 3524 else if (eap->addr_count == 0) |
3525 ++start; | |
3526 end = start + bigness - 1; | |
7 | 3527 curs = end; |
3528 break; | |
3529 } | |
3530 | |
3531 if (start < 1) | |
3532 start = 1; | |
3533 | |
3534 if (end > curbuf->b_ml.ml_line_count) | |
3535 end = curbuf->b_ml.ml_line_count; | |
3536 | |
3537 if (curs > curbuf->b_ml.ml_line_count) | |
3538 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
|
3539 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
|
3540 curs = 1; |
7 | 3541 |
3542 for (i = start; i <= end; i++) | |
3543 { | |
3544 if (minus && i == lnum) | |
3545 { | |
3546 msg_putchar('\n'); | |
3547 | |
3548 for (j = 1; j < Columns; j++) | |
3549 msg_putchar('-'); | |
3550 } | |
3551 | |
169 | 3552 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
7 | 3553 |
3554 if (minus && i == lnum) | |
3555 { | |
3556 msg_putchar('\n'); | |
3557 | |
3558 for (j = 1; j < Columns; j++) | |
3559 msg_putchar('-'); | |
3560 } | |
3561 } | |
3562 | |
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
|
3563 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
|
3564 { |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
3565 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
|
3566 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
|
3567 } |
7 | 3568 ex_no_reprint = TRUE; |
3569 } | |
3570 | |
3571 /* | |
3572 * Check if the restricted flag is set. | |
3573 * If so, give an error message and return TRUE. | |
3574 * Otherwise, return FALSE. | |
3575 */ | |
3576 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3577 check_restricted(void) |
7 | 3578 { |
3579 if (restricted) | |
3580 { | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
3581 emsg(_(e_shell_commands_and_some_functionality_not_allowed_in_rvim)); |
7 | 3582 return TRUE; |
3583 } | |
3584 return FALSE; | |
3585 } | |
3586 | |
3587 /* | |
3588 * Check if the secure flag is set (.exrc or .vimrc in current directory). | |
3589 * If so, give an error message and return TRUE. | |
3590 * Otherwise, return FALSE. | |
3591 */ | |
3592 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3593 check_secure(void) |
7 | 3594 { |
3595 if (secure) | |
3596 { | |
3597 secure = 2; | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24992
diff
changeset
|
3598 emsg(_(e_command_not_allowed_from_vimrc_in_current_dir_or_tag_search)); |
7 | 3599 return TRUE; |
3600 } | |
3601 #ifdef HAVE_SANDBOX | |
3602 /* | |
3603 * In the sandbox more things are not allowed, including the things | |
3604 * disallowed in secure mode. | |
3605 */ | |
3606 if (sandbox != 0) | |
3607 { | |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
3608 emsg(_(e_not_allowed_in_sandbox)); |
7 | 3609 return TRUE; |
3610 } | |
3611 #endif | |
3612 return FALSE; | |
3613 } | |
3614 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3615 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
|
3616 static int global_need_beginline; // call beginline() after ":g" |
7 | 3617 |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3618 /* |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3619 * 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
|
3620 */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3621 typedef struct { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3622 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
|
3623 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
|
3624 int do_count; // count only |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3625 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
|
3626 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
|
3627 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
|
3628 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
|
3629 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
|
3630 } subflags_T; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3631 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3632 /* |
24488
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3633 * 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
|
3634 * character. |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3635 */ |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3636 char_u * |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3637 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
|
3638 { |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3639 char_u *p = start; |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3640 |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3641 while (p[0]) |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3642 { |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3643 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
|
3644 { |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3645 *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
|
3646 break; |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3647 } |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3648 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
|
3649 ++p; |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3650 MB_PTR_ADV(p); |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3651 } |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3652 return p; |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3653 } |
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3654 |
24992
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3655 static int |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3656 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
|
3657 { |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3658 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
|
3659 { |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
3660 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
|
3661 return FAIL; |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3662 } |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3663 return OK; |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3664 } |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3665 |
24488
f293bb501b30
patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents:
24383
diff
changeset
|
3666 /* |
7 | 3667 * Perform a substitution from line eap->line1 to line eap->line2 using the |
3668 * command pointed to by eap->arg which should be of the form: | |
3669 * | |
3670 * /pattern/substitution/{flags} | |
3671 * | |
3672 * The usual escapes are supported as described in the regexp docs. | |
3673 */ | |
3674 void | |
21773
2f2e528c5782
patch 8.2.1436: function implementing :substitute has unexpected name
Bram Moolenaar <Bram@vim.org>
parents:
21518
diff
changeset
|
3675 ex_substitute(exarg_T *eap) |
7 | 3676 { |
3677 linenr_T lnum; | |
3678 long i = 0; | |
3679 regmmatch_T regmatch; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3680 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
|
3681 FALSE, FALSE, 0}; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3682 #ifdef FEAT_EVAL |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3683 subflags_T subflags_save; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3684 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3685 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
|
3686 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
|
3687 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
|
3688 char_u *sub_copy = NULL; |
7 | 3689 int delimiter; |
3690 int sublen; | |
3691 int got_quit = FALSE; | |
3692 int got_match = FALSE; | |
3693 int temp; | |
3694 int which_pat; | |
3695 char_u *cmd; | |
3696 int save_State; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3697 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
|
3698 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
|
3699 // change |
7 | 3700 linenr_T old_line_count = curbuf->b_ml.ml_line_count; |
3701 linenr_T line2; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3702 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
|
3703 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
|
3704 int endcolumn = FALSE; // cursor in last column when done |
170 | 3705 pos_T old_cursor = curwin->w_cursor; |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
3706 int start_nsubs; |
29546
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
3707 int cmdheight0 = p_ch == 0; |
3736 | 3708 #ifdef FEAT_EVAL |
5867 | 3709 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
|
3710 int save_sandbox = 0; |
3736 | 3711 #endif |
7 | 3712 |
3713 cmd = eap->arg; | |
3714 if (!global_busy) | |
3715 { | |
3716 sub_nsubs = 0; | |
3717 sub_nlines = 0; | |
3718 } | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
3719 start_nsubs = sub_nsubs; |
7 | 3720 |
3721 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
|
3722 which_pat = RE_LAST; // use last used regexp |
7 | 3723 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3724 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
|
3725 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3726 // 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
|
3727 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd) |
7 | 3728 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) |
3729 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3730 // 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
|
3731 if (check_regexp_delim(*cmd) == FAIL) |
7 | 3732 return; |
25943
dbf6a2066091
patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
25939
diff
changeset
|
3733 #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
|
3734 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
|
3735 == FAIL) |
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25729
diff
changeset
|
3736 return; |
25943
dbf6a2066091
patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
25939
diff
changeset
|
3737 #endif |
24992
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
3738 |
7 | 3739 /* |
3740 * undocumented vi feature: | |
3741 * "\/sub/" and "\?sub?" use last used search pattern (almost like | |
3742 * //sub/r). "\&sub&" use last substitute pattern (like //sub/). | |
3743 */ | |
3744 if (*cmd == '\\') | |
3745 { | |
27980
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27962
diff
changeset
|
3746 if (in_vim9script()) |
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27962
diff
changeset
|
3747 { |
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27962
diff
changeset
|
3748 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
|
3749 return; |
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27962
diff
changeset
|
3750 } |
7 | 3751 ++cmd; |
3752 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
3753 { | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24992
diff
changeset
|
3754 emsg(_(e_backslash_should_be_followed_by)); |
7 | 3755 return; |
3756 } | |
3757 if (*cmd != '&') | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3758 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
|
3759 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
|
3760 delimiter = *cmd++; // remember delimiter character |
7 | 3761 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3762 else // find the end of the regexp |
7 | 3763 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3764 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
|
3765 delimiter = *cmd++; // remember delimiter character |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3766 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
|
3767 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
|
3768 &eap->arg, NULL, NULL); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3769 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
|
3770 *cmd++ = NUL; // replace it with a NUL |
7 | 3771 } |
3772 | |
3773 /* | |
3774 * Small incompatibility: vi sees '\n' as end of the command, but in | |
3775 * Vim we want to use '\n' to find/substitute a NUL. | |
3776 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3777 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
|
3778 cmd = skip_substitute(cmd, delimiter); |
7 | 3779 |
3780 if (!eap->skip) | |
3781 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3782 // In POSIX vi ":s/pat/%/" uses the previous subst. string. |
169 | 3783 if (STRCMP(sub, "%") == 0 |
3784 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) | |
3785 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3786 if (old_sub == NULL) // there is no previous command |
169 | 3787 { |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
3788 emsg(_(e_no_previous_substitute_regular_expression)); |
169 | 3789 return; |
3790 } | |
3791 sub = old_sub; | |
3792 } | |
3793 else | |
3794 { | |
3795 vim_free(old_sub); | |
3796 old_sub = vim_strsave(sub); | |
3797 } | |
7 | 3798 } |
3799 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3800 else if (!eap->skip) // use previous pattern and substitution |
7 | 3801 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3802 if (old_sub == NULL) // there is no previous command |
7 | 3803 { |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
3804 emsg(_(e_no_previous_substitute_regular_expression)); |
7 | 3805 return; |
3806 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3807 pat = NULL; // search_regcomp() will use previous pattern |
7 | 3808 sub = old_sub; |
163 | 3809 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3810 // 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
|
3811 // last column after using "$". |
163 | 3812 endcolumn = (curwin->w_curswant == MAXCOL); |
7 | 3813 } |
3814 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3815 // 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
|
3816 // more efficient. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3817 // 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
|
3818 // efficient, avoid allocating a string that grows in size. |
5802 | 3819 if (pat != NULL && STRCMP(pat, "\\n") == 0 |
5776 | 3820 && *sub == NUL |
3821 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l' | |
3822 || *cmd == 'p' || *cmd == '#')))) | |
3823 { | |
6426 | 3824 linenr_T joined_lines_count; |
3825 | |
23768
1a53383f08e5
patch 8.2.2425: cursor on invalid line with range and :substitute
Bram Moolenaar <Bram@vim.org>
parents:
23638
diff
changeset
|
3826 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
|
3827 return; |
5776 | 3828 curwin->w_cursor.lnum = eap->line1; |
3829 if (*cmd == 'l') | |
3830 eap->flags = EXFLAG_LIST; | |
3831 else if (*cmd == '#') | |
3832 eap->flags = EXFLAG_NR; | |
3833 else if (*cmd == 'p') | |
3834 eap->flags = EXFLAG_PRINT; | |
3835 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3836 // 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
|
3837 // one. One less when the last line is included. |
6426 | 3838 joined_lines_count = eap->line2 - eap->line1 + 1; |
3839 if (eap->line2 < curbuf->b_ml.ml_line_count) | |
3840 ++joined_lines_count; | |
3841 if (joined_lines_count > 1) | |
3842 { | |
3843 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE); | |
3844 sub_nsubs = joined_lines_count - 1; | |
3845 sub_nlines = 1; | |
3846 (void)do_sub_msg(FALSE); | |
3847 ex_may_print(eap); | |
3848 } | |
3849 | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
3850 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
|
3851 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
|
3852 // put pattern in history |
6426 | 3853 add_to_history(HIST_SEARCH, pat, TRUE, NUL); |
3854 | |
5776 | 3855 return; |
3856 } | |
3857 | |
7 | 3858 /* |
3859 * Find trailing options. When '&' is used, keep old options. | |
3860 */ | |
3861 if (*cmd == '&') | |
3862 ++cmd; | |
3863 else | |
3864 { | |
23274
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3865 #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
|
3866 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
|
3867 { |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3868 // 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
|
3869 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
|
3870 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
|
3871 } |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3872 else |
10bbff53d3d1
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
3873 #endif |
7 | 3874 if (!p_ed) |
3875 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3876 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
|
3877 subflags.do_all = TRUE; |
7 | 3878 else |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3879 subflags.do_all = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3880 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3881 } |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3882 subflags.do_error = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3883 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
|
3884 subflags.do_list = FALSE; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3885 subflags.do_count = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3886 subflags.do_number = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3887 subflags.do_ic = 0; |
7 | 3888 } |
3889 while (*cmd) | |
3890 { | |
3891 /* | |
3892 * Note that 'g' and 'c' are always inverted, also when p_ed is off. | |
3893 * 'r' is never inverted. | |
3894 */ | |
3895 if (*cmd == 'g') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3896 subflags.do_all = !subflags.do_all; |
7 | 3897 else if (*cmd == 'c') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3898 subflags.do_ask = !subflags.do_ask; |
170 | 3899 else if (*cmd == 'n') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3900 subflags.do_count = TRUE; |
7 | 3901 else if (*cmd == 'e') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3902 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
|
3903 else if (*cmd == 'r') // use last used regexp |
7 | 3904 which_pat = RE_LAST; |
3905 else if (*cmd == 'p') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3906 subflags.do_print = TRUE; |
169 | 3907 else if (*cmd == '#') |
3908 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3909 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3910 subflags.do_number = TRUE; |
169 | 3911 } |
3912 else if (*cmd == 'l') | |
3913 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3914 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3915 subflags.do_list = TRUE; |
169 | 3916 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3917 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
|
3918 subflags.do_ic = 'i'; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3919 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
|
3920 subflags.do_ic = 'I'; |
7 | 3921 else |
3922 break; | |
3923 ++cmd; | |
3924 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3925 if (subflags.do_count) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3926 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3927 |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3928 save_do_all = subflags.do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3929 save_do_ask = subflags.do_ask; |
6789 | 3930 |
7 | 3931 /* |
3932 * check for a trailing count | |
3933 */ | |
3934 cmd = skipwhite(cmd); | |
3935 if (VIM_ISDIGIT(*cmd)) | |
3936 { | |
3937 i = getdigits(&cmd); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3938 if (i <= 0 && !eap->skip && subflags.do_error) |
7 | 3939 { |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
3940 emsg(_(e_positive_count_required)); |
7 | 3941 return; |
3942 } | |
3943 eap->line1 = eap->line2; | |
3944 eap->line2 += i - 1; | |
3945 if (eap->line2 > curbuf->b_ml.ml_line_count) | |
3946 eap->line2 = curbuf->b_ml.ml_line_count; | |
3947 } | |
3948 | |
3949 /* | |
3950 * check for trailing command or garbage | |
3951 */ | |
3952 cmd = skipwhite(cmd); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3953 if (*cmd && *cmd != '"') // if not end-of-line or comment |
7 | 3954 { |
25521
2063b858cad9
patch 8.2.3297: cannot use all commands inside a {} block
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
3955 set_nextcmd(eap, cmd); |
7 | 3956 if (eap->nextcmd == NULL) |
3957 { | |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
3958 semsg(_(e_trailing_characters_str), cmd); |
7 | 3959 return; |
3960 } | |
3961 } | |
3962 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3963 if (eap->skip) // not executing commands, only parsing |
7 | 3964 return; |
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 && !curbuf->b_p_ma) |
823 | 3967 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3968 // 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
|
3969 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
823 | 3970 return; |
3971 } | |
3972 | |
7 | 3973 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
3974 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3975 if (subflags.do_error) |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21773
diff
changeset
|
3976 emsg(_(e_invalid_command)); |
7 | 3977 return; |
3978 } | |
3979 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3980 // 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
|
3981 if (subflags.do_ic == 'i') |
7 | 3982 regmatch.rmm_ic = TRUE; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3983 else if (subflags.do_ic == 'I') |
7 | 3984 regmatch.rmm_ic = FALSE; |
3985 | |
3986 sub_firstline = NULL; | |
3987 | |
3988 /* | |
27449
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
3989 * 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
|
3990 * 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
|
3991 * 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
|
3992 * 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
|
3993 * again. |
7 | 3994 */ |
27449
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
3995 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
|
3996 { |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
3997 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
|
3998 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
|
3999 return; |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4000 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
|
4001 } |
b4c147ad4912
patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4002 else |
29410
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4003 { |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4004 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
|
4005 |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4006 if (newsub != sub) |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4007 { |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4008 // 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
|
4009 sub_copy = newsub; |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4010 sub = newsub; |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4011 } |
be069ab9d583
patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
4012 } |
7 | 4013 |
29546
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4014 if (cmdheight0) |
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4015 { |
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4016 // If cmdheight is 0, cmdheight must be set to 1 when we enter command |
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4017 // line. |
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4018 set_option_value((char_u *)"ch", 1L, NULL, 0); |
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4019 redraw_statuslines(); |
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4020 } |
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4021 |
7 | 4022 /* |
4023 * Check for a match on each line. | |
4024 */ | |
4025 line2 = eap->line2; | |
4026 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
|
4027 #if defined(FEAT_EVAL) |
7 | 4028 || aborting() |
4029 #endif | |
4030 ); ++lnum) | |
4031 { | |
1521 | 4032 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
|
4033 (colnr_T)0, NULL); |
7 | 4034 if (nmatch) |
4035 { | |
4036 colnr_T copycol; | |
4037 colnr_T matchcol; | |
4038 colnr_T prev_matchcol = MAXCOL; | |
4039 char_u *new_end, *new_start = NULL; | |
4040 unsigned new_start_len = 0; | |
4041 char_u *p1; | |
4042 int did_sub = FALSE; | |
4043 int lastone; | |
1872 | 4044 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
|
4045 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
|
4046 int do_again; // do it again after joining lines |
15 | 4047 int skip_match = FALSE; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4048 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
|
4049 #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
|
4050 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
|
4051 colnr_T total_added = 0; |
16698
23af483c4ceb
patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16686
diff
changeset
|
4052 #endif |
7 | 4053 |
4054 /* | |
4055 * The new text is build up step by step, to avoid too much | |
4056 * copying. There are these pieces: | |
1581 | 4057 * sub_firstline The old text, unmodified. |
7 | 4058 * copycol Column in the old text where we started |
4059 * looking for a match; from here old text still | |
4060 * needs to be copied to the new text. | |
4061 * matchcol Column number of the old text where to look | |
4062 * for the next match. It's just after the | |
4063 * previous match or one further. | |
4064 * prev_matchcol Column just after the previous match (if any). | |
4065 * Mostly equal to matchcol, except for the first | |
4066 * match and after skipping an empty match. | |
4067 * regmatch.*pos Where the pattern matched in the old text. | |
4068 * new_start The new text, all that has been produced so | |
4069 * far. | |
4070 * new_end The new text, where to append new text. | |
4071 * | |
1499 | 4072 * lnum The line number where we found the start of |
4073 * the match. Can be below the line we searched | |
4074 * when there is a \n before a \zs in the | |
4075 * pattern. | |
7 | 4076 * sub_firstlnum The line number in the buffer where to look |
4077 * for a match. Can be different from "lnum" | |
4078 * when the pattern or substitute string contains | |
4079 * line breaks. | |
4080 * | |
4081 * Special situations: | |
4082 * - When the substitute string contains a line break, the part up | |
4083 * to the line break is inserted in the text, but the copy of | |
4084 * the original line is kept. "sub_firstlnum" is adjusted for | |
4085 * the inserted lines. | |
4086 * - When the matched pattern contains a line break, the old line | |
4087 * is taken from the line at the end of the pattern. The lines | |
4088 * in the match are deleted later, "sub_firstlnum" is adjusted | |
4089 * accordingly. | |
4090 * | |
4091 * The new text is built up in new_start[]. It has some extra | |
4092 * room to avoid using alloc()/free() too often. new_start_len is | |
1389 | 4093 * the length of the allocated memory at new_start. |
7 | 4094 * |
4095 * Make a copy of the old line, so it won't be taken away when | |
4096 * updating the screen or handling a multi-line match. The "old_" | |
4097 * pointers point into this copy. | |
4098 */ | |
1499 | 4099 sub_firstlnum = lnum; |
7 | 4100 copycol = 0; |
4101 matchcol = 0; | |
4102 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4103 // At first match, remember current cursor position. |
7 | 4104 if (!got_match) |
4105 { | |
4106 setpcmark(); | |
4107 got_match = TRUE; | |
4108 } | |
4109 | |
4110 /* | |
4111 * Loop until nothing more to replace in this line. | |
4112 * 1. Handle match with empty string. | |
4113 * 2. If do_ask is set, ask for confirmation. | |
4114 * 3. substitute the string. | |
4115 * 4. if do_all is set, find next match | |
4116 * 5. break if there isn't another match in this line | |
4117 */ | |
4118 for (;;) | |
4119 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4120 // 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
|
4121 // 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
|
4122 // break before \zs. |
1499 | 4123 if (regmatch.startpos[0].lnum > 0) |
4124 { | |
4125 lnum += regmatch.startpos[0].lnum; | |
4126 sub_firstlnum += regmatch.startpos[0].lnum; | |
4127 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
|
4128 VIM_CLEAR(sub_firstline); |
1499 | 4129 } |
4130 | |
18483
54e5fa1f9cfc
patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents:
18446
diff
changeset
|
4131 // 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
|
4132 // 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
|
4133 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
|
4134 break; |
54e5fa1f9cfc
patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents:
18446
diff
changeset
|
4135 |
1499 | 4136 if (sub_firstline == NULL) |
4137 { | |
4138 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
4139 if (sub_firstline == NULL) | |
4140 { | |
4141 vim_free(new_start); | |
4142 goto outofmem; | |
4143 } | |
4144 } | |
4145 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4146 // 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
|
4147 // cursor position (just like Vi). |
7 | 4148 curwin->w_cursor.lnum = lnum; |
4149 do_again = FALSE; | |
4150 | |
4151 /* | |
4152 * 1. Match empty string does not count, except for first | |
4153 * match. This reproduces the strange vi behaviour. | |
4154 * This also catches endless loops. | |
4155 */ | |
4156 if (matchcol == prev_matchcol | |
4157 && regmatch.endpos[0].lnum == 0 | |
4158 && matchcol == regmatch.endpos[0].col) | |
4159 { | |
15 | 4160 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
|
4161 // 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
|
4162 // for a match in this line again. |
15 | 4163 skip_match = TRUE; |
4164 else | |
2837 | 4165 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4166 // search for a match at next column |
2837 | 4167 if (has_mbyte) |
4168 matchcol += mb_ptr2len(sub_firstline + matchcol); | |
4169 else | |
4170 ++matchcol; | |
4171 } | |
7 | 4172 goto skip; |
4173 } | |
4174 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4175 // 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
|
4176 // previous match. |
7 | 4177 matchcol = regmatch.endpos[0].col; |
4178 prev_matchcol = matchcol; | |
4179 | |
4180 /* | |
170 | 4181 * 2. If do_count is set only increase the counter. |
4182 * If do_ask is set, ask for confirmation. | |
7 | 4183 */ |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4184 if (subflags.do_count) |
170 | 4185 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4186 // 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
|
4187 // 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
|
4188 // 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
|
4189 // Avoids that ":s/\nB\@=//gc" get stuck. |
170 | 4190 if (nmatch > 1) |
4191 { | |
835 | 4192 matchcol = (colnr_T)STRLEN(sub_firstline); |
170 | 4193 nmatch = 1; |
1483 | 4194 skip_match = TRUE; |
170 | 4195 } |
4196 sub_nsubs++; | |
4197 did_sub = TRUE; | |
3736 | 4198 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4199 // 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
|
4200 // then it is evaluated in the sandbox. |
3736 | 4201 if (!(sub[0] == '\\' && sub[1] == '=')) |
4202 #endif | |
4203 goto skip; | |
170 | 4204 } |
4205 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4206 if (subflags.do_ask) |
7 | 4207 { |
1874 | 4208 int typed = 0; |
1872 | 4209 |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28451
diff
changeset
|
4210 // 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
|
4211 // properly |
7 | 4212 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
|
4213 State = MODE_CONFIRM; |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
4214 setmouse(); // disable mouse in xterm |
7 | 4215 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
|
4216 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
|
4217 do_check_cursorbind(); |
7 | 4218 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4219 // 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
|
4220 // asking for confirmation. |
7 | 4221 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) |
4222 ++no_u_sync; | |
4223 | |
4224 /* | |
4225 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. | |
4226 */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4227 while (subflags.do_ask) |
7 | 4228 { |
169 | 4229 if (exmode_active) |
4230 { | |
4231 char_u *resp; | |
4232 colnr_T sc, ec; | |
4233 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4234 print_line_no_prefix(lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4235 subflags.do_number, subflags.do_list); |
169 | 4236 |
4237 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); | |
4238 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
|
4239 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
|
4240 curwin->w_cursor.col = 0; |
169 | 4241 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
|
4242 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
|
4243 if (subflags.do_number || curwin->w_p_nu) |
5396 | 4244 { |
4245 int numw = number_width(curwin) + 1; | |
4246 sc += numw; | |
4247 ec += numw; | |
4248 } | |
169 | 4249 msg_start(); |
170 | 4250 for (i = 0; i < (long)sc; ++i) |
169 | 4251 msg_putchar(' '); |
170 | 4252 for ( ; i <= (long)ec; ++i) |
169 | 4253 msg_putchar('^'); |
4254 | |
17178
40c4cb095d53
patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents:
17095
diff
changeset
|
4255 resp = getexmodeline('?', NULL, 0, TRUE); |
169 | 4256 if (resp != NULL) |
4257 { | |
1872 | 4258 typed = *resp; |
169 | 4259 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
|
4260 // 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
|
4261 // 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
|
4262 // loop. |
aa533dc41223
patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents:
28255
diff
changeset
|
4263 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
|
4264 typed = 'q'; |
169 | 4265 } |
4266 } | |
4267 else | |
4268 { | |
4076 | 4269 char_u *orig_line = NULL; |
4270 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
|
4271 int save_p_lz = p_lz; |
7 | 4272 #ifdef FEAT_FOLDING |
169 | 4273 int save_p_fen = curwin->w_p_fen; |
4274 | |
4275 curwin->w_p_fen = FALSE; | |
4276 #endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4277 // Invert the matched string. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4278 // Remove the inversion afterwards. |
169 | 4279 temp = RedrawingDisabled; |
4280 RedrawingDisabled = 0; | |
4281 | |
23638
062caef90f7f
patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents:
23624
diff
changeset
|
4282 // 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
|
4283 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
|
4284 |
4076 | 4285 if (new_start != NULL) |
4286 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4287 // 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
|
4288 // 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
|
4289 // 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
|
4290 // 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
|
4291 // and change it back afterwards. |
4076 | 4292 orig_line = vim_strsave(ml_get(lnum)); |
4293 if (orig_line != NULL) | |
4294 { | |
4295 char_u *new_line = concat_str(new_start, | |
4296 sub_firstline + copycol); | |
4297 | |
4298 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
|
4299 VIM_CLEAR(orig_line); |
4076 | 4300 else |
4301 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4302 // 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
|
4303 // 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
|
4304 // substitute may have inserted or |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4305 // deleted characters before the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4306 // cursor. |
4086 | 4307 len_change = (int)STRLEN(new_line) |
4308 - (int)STRLEN(orig_line); | |
4076 | 4309 curwin->w_cursor.col += len_change; |
4310 ml_replace(lnum, new_line, FALSE); | |
4311 } | |
4312 } | |
4313 } | |
4314 | |
1499 | 4315 search_match_lines = regmatch.endpos[0].lnum |
4316 - regmatch.startpos[0].lnum; | |
4076 | 4317 search_match_endcol = regmatch.endpos[0].col |
4318 + len_change; | |
169 | 4319 highlight_match = TRUE; |
4320 | |
4321 update_topline(); | |
4322 validate_cursor(); | |
748 | 4323 update_screen(SOME_VALID); |
169 | 4324 highlight_match = FALSE; |
748 | 4325 redraw_later(SOME_VALID); |
7 | 4326 |
4327 #ifdef FEAT_FOLDING | |
169 | 4328 curwin->w_p_fen = save_p_fen; |
4329 #endif | |
4330 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
|
4331 msg_didout = FALSE; // avoid a scroll-up |
169 | 4332 msg_starthere(); |
4333 i = msg_scroll; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4334 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
|
4335 // needed |
169 | 4336 msg_no_more = TRUE; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4337 // write message same highlighting as for |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4338 // wait_return |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11144
diff
changeset
|
4339 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
|
4340 _("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); |
169 | 4341 msg_no_more = FALSE; |
4342 msg_scroll = i; | |
4343 showruler(TRUE); | |
4344 windgoto(msg_row, msg_col); | |
4345 RedrawingDisabled = temp; | |
7 | 4346 |
4347 #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
|
4348 dont_scroll = FALSE; // allow scrolling here |
169 | 4349 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4350 ++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
|
4351 ++allow_keys; // allow special keys |
1872 | 4352 typed = plain_vgetc(); |
169 | 4353 --allow_keys; |
4354 --no_mapping; | |
4355 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4356 // clear the question |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4357 msg_didout = FALSE; // don't scroll up |
169 | 4358 msg_col = 0; |
4359 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
|
4360 p_lz = save_p_lz; |
4076 | 4361 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4362 // restore the line |
4076 | 4363 if (orig_line != NULL) |
4364 ml_replace(lnum, orig_line, FALSE); | |
169 | 4365 } |
4366 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4367 need_wait_return = FALSE; // no hit-return prompt |
1872 | 4368 if (typed == 'q' || typed == ESC || typed == Ctrl_C |
7 | 4369 #ifdef UNIX |
1872 | 4370 || typed == intr_char |
7 | 4371 #endif |
4372 ) | |
4373 { | |
4374 got_quit = TRUE; | |
4375 break; | |
4376 } | |
1872 | 4377 if (typed == 'n') |
7 | 4378 break; |
1872 | 4379 if (typed == 'y') |
7 | 4380 break; |
1872 | 4381 if (typed == 'l') |
7 | 4382 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4383 // last: replace and then stop |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4384 subflags.do_all = FALSE; |
7 | 4385 line2 = lnum; |
4386 break; | |
4387 } | |
1872 | 4388 if (typed == 'a') |
7 | 4389 { |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4390 subflags.do_ask = FALSE; |
7 | 4391 break; |
4392 } | |
1872 | 4393 if (typed == Ctrl_E) |
7 | 4394 scrollup_clamp(); |
1872 | 4395 else if (typed == Ctrl_Y) |
7 | 4396 scrolldown_clamp(); |
4397 } | |
4398 State = save_State; | |
4399 setmouse(); | |
4400 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
4401 --no_u_sync; | |
4402 | |
1872 | 4403 if (typed == 'n') |
7 | 4404 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4405 // 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
|
4406 // 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
|
4407 // 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
|
4408 // 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
|
4409 // get stuck when pressing 'n'. |
7 | 4410 if (nmatch > 1) |
4411 { | |
835 | 4412 matchcol = (colnr_T)STRLEN(sub_firstline); |
1091 | 4413 skip_match = TRUE; |
7 | 4414 } |
4415 goto skip; | |
4416 } | |
4417 if (got_quit) | |
4099 | 4418 goto skip; |
7 | 4419 } |
4420 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4421 // 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
|
4422 // use "\=col("."). |
7 | 4423 curwin->w_cursor.col = regmatch.startpos[0].col; |
4424 | |
4425 /* | |
4426 * 3. substitute the string. | |
4427 */ | |
3736 | 4428 #ifdef FEAT_EVAL |
16716
5a541d459ef7
patch 8.1.1360: buffer left 'nomodifiable' after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16714
diff
changeset
|
4429 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
|
4430 save_sandbox = sandbox; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4431 if (subflags.do_count) |
3736 | 4432 { |
16686
6ea3f93b4428
patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents:
16662
diff
changeset
|
4433 // prevent accidentally changing the buffer by a function |
3736 | 4434 curbuf->b_p_ma = FALSE; |
4435 sandbox++; | |
4436 } | |
16686
6ea3f93b4428
patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents:
16662
diff
changeset
|
4437 // 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
|
4438 // :s/^/\=execute("s#^##gn") |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4439 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
|
4440 |
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4441 // 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
|
4442 ++textlock; |
16686
6ea3f93b4428
patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents:
16662
diff
changeset
|
4443 #endif |
29255
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
4444 // 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
|
4445 // When it fails sublen is zero. |
1499 | 4446 sublen = vim_regsub_multi(®match, |
4447 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
|
4448 sub, sub_firstline, 0, |
c98fc7a4dde4
patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
4449 REGSUB_BACKSLASH |
c98fc7a4dde4
patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
4450 | (magic_isset() ? REGSUB_MAGIC : 0)); |
3736 | 4451 #ifdef FEAT_EVAL |
29014
45c182c4f7e9
patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents:
28909
diff
changeset
|
4452 --textlock; |
28909
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4453 |
16113
9994c50f7879
patch 8.1.1061: when substitute string throws error, substitute happens anyway
Bram Moolenaar <Bram@vim.org>
parents:
16021
diff
changeset
|
4454 // 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
|
4455 // the replacement. |
9994c50f7879
patch 8.1.1061: when substitute string throws error, substitute happens anyway
Bram Moolenaar <Bram@vim.org>
parents:
16021
diff
changeset
|
4456 // 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
|
4457 subflags = subflags_save; |
29255
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
4458 if (sublen == 0 || aborting() || subflags.do_count) |
3736 | 4459 { |
4460 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
|
4461 sandbox = save_sandbox; |
3736 | 4462 goto skip; |
4463 } | |
4464 #endif | |
7 | 4465 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4466 // 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
|
4467 // go beyond the last line of the buffer. |
533 | 4468 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
4469 { | |
4470 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; | |
4471 skip_match = TRUE; | |
4472 } | |
4473 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4474 // Need room for: |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4475 // - 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
|
4476 // - original text up to match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4477 // - length of substituted part |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4478 // - original text after match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4479 // 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
|
4480 // needed. |
7 | 4481 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
|
4482 { |
7 | 4483 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
|
4484 #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
|
4485 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
|
4486 { |
18444
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4487 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
|
4488 - 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
|
4489 |
16698
23af483c4ceb
patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16686
diff
changeset
|
4490 // 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
|
4491 // 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
|
4492 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
|
4493 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
|
4494 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
|
4495 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
|
4496 // 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
|
4497 // 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
|
4498 total_added += bytes_added; |
16698
23af483c4ceb
patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16686
diff
changeset
|
4499 } |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4500 #endif |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4501 } |
7 | 4502 else |
4503 { | |
4504 p1 = ml_get(sub_firstlnum + nmatch - 1); | |
4505 nmatch_tl += nmatch - 1; | |
4506 } | |
1872 | 4507 copy_len = regmatch.startpos[0].col - copycol; |
4508 needed_len = copy_len + ((unsigned)STRLEN(p1) | |
4509 - regmatch.endpos[0].col) + sublen + 1; | |
7 | 4510 if (new_start == NULL) |
4511 { | |
4512 /* | |
4513 * Get some space for a temporary buffer to do the | |
4514 * substitution into (and some extra space to avoid | |
4515 * too many calls to alloc()/free()). | |
4516 */ | |
4517 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
|
4518 if ((new_start = alloc(new_start_len)) == NULL) |
7 | 4519 goto outofmem; |
4520 *new_start = NUL; | |
4521 new_end = new_start; | |
4522 } | |
4523 else | |
4524 { | |
4525 /* | |
4526 * Check if the temporary buffer is long enough to do the | |
4527 * substitution into. If not, make it larger (with a bit | |
4528 * extra to avoid too many calls to alloc()/free()). | |
4529 */ | |
4530 len = (unsigned)STRLEN(new_start); | |
4531 needed_len += len; | |
1872 | 4532 if (needed_len > (int)new_start_len) |
7 | 4533 { |
4534 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
|
4535 if ((p1 = alloc(new_start_len)) == NULL) |
7 | 4536 { |
4537 vim_free(new_start); | |
4538 goto outofmem; | |
4539 } | |
4540 mch_memmove(p1, new_start, (size_t)(len + 1)); | |
4541 vim_free(new_start); | |
4542 new_start = p1; | |
4543 } | |
4544 new_end = new_start + len; | |
4545 } | |
4546 | |
4547 /* | |
4548 * copy the text up to the part that matched | |
4549 */ | |
1872 | 4550 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); |
4551 new_end += copy_len; | |
7 | 4552 |
28909
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4553 #ifdef FEAT_EVAL |
29014
45c182c4f7e9
patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents:
28909
diff
changeset
|
4554 ++textlock; |
28909
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4555 #endif |
1499 | 4556 (void)vim_regsub_multi(®match, |
4557 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
|
4558 sub, new_end, sublen, |
c98fc7a4dde4
patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
4559 REGSUB_COPY | REGSUB_BACKSLASH |
c98fc7a4dde4
patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
4560 | (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
|
4561 #ifdef FEAT_EVAL |
29014
45c182c4f7e9
patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents:
28909
diff
changeset
|
4562 --textlock; |
28909
1890fa76a634
patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
4563 #endif |
7 | 4564 sub_nsubs++; |
4565 did_sub = TRUE; | |
4566 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4567 // 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
|
4568 // is beyond the end of the line after the substitution. |
7 | 4569 curwin->w_cursor.col = 0; |
4570 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4571 // 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
|
4572 // line and continue in that one. |
7 | 4573 if (nmatch > 1) |
4574 { | |
4575 sub_firstlnum += nmatch - 1; | |
4576 vim_free(sub_firstline); | |
4577 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
|
4578 // When going beyond the last line, stop substituting. |
7 | 4579 if (sub_firstlnum <= line2) |
4580 do_again = TRUE; | |
4581 else | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4582 subflags.do_all = FALSE; |
7 | 4583 } |
4584 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4585 // Remember next character to be copied. |
7 | 4586 copycol = regmatch.endpos[0].col; |
4587 | |
819 | 4588 if (skip_match) |
4589 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4590 // 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
|
4591 // less than what it ought to be. |
819 | 4592 vim_free(sub_firstline); |
4593 sub_firstline = vim_strsave((char_u *)""); | |
4594 copycol = 0; | |
4595 } | |
4596 | |
7 | 4597 /* |
4598 * Now the trick is to replace CTRL-M chars with a real line | |
4599 * break. This would make it impossible to insert a CTRL-M in | |
4600 * the text. The line break can be avoided by preceding the | |
4601 * CTRL-M with a backslash. To be able to insert a backslash, | |
4602 * they must be doubled in the string and are halved here. | |
4603 * That is Vi compatible. | |
4604 */ | |
4605 for (p1 = new_end; *p1; ++p1) | |
4606 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4607 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
|
4608 { |
1624 | 4609 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
|
4610 #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
|
4611 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
|
4612 { |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4613 // 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
|
4614 // 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
|
4615 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
|
4616 (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
|
4617 apc_flags)) |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4618 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
|
4619 } |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4620 #endif |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4621 } |
7 | 4622 else if (*p1 == CAR) |
4623 { | |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4624 if (u_inssub(lnum) == OK) // prepare for undo |
7 | 4625 { |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4626 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
|
4627 |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4628 *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
|
4629 ml_append(lnum - 1, new_start, plen, FALSE); |
7 | 4630 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
|
4631 if (subflags.do_ask) |
7 | 4632 appended_lines(lnum - 1, 1L); |
4633 else | |
4634 { | |
4635 if (first_line == 0) | |
4636 first_line = lnum; | |
4637 last_line = lnum + 1; | |
4638 } | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
4639 #ifdef FEAT_PROP_POPUP |
16662
1fc9cd08cf3c
patch 8.1.1333: text properties don't always move after changes
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
4640 adjust_props_for_split(lnum + 1, lnum, plen, 1); |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4641 #endif |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4642 // all line numbers increase |
7 | 4643 ++sub_firstlnum; |
4644 ++lnum; | |
4645 ++line2; | |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4646 // move the cursor to the new line, like Vi |
7 | 4647 ++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
|
4648 // copy the rest |
1624 | 4649 STRMOVE(new_start, p1 + 1); |
7 | 4650 p1 = new_start - 1; |
4651 } | |
4652 } | |
4653 else if (has_mbyte) | |
474 | 4654 p1 += (*mb_ptr2len)(p1) - 1; |
7 | 4655 } |
4656 | |
4657 /* | |
4658 * 4. If do_all is set, find next match. | |
4659 * Prevent endless loop with patterns that match empty | |
4660 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. | |
4661 * But ":s/\n/#/" is OK. | |
4662 */ | |
4663 skip: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4664 // 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
|
4665 // 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
|
4666 // "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
|
4667 // "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
|
4668 // break. |
15 | 4669 lastone = (skip_match |
4670 || got_int | |
4671 || got_quit | |
1499 | 4672 || lnum > line2 |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4673 || !(subflags.do_all || do_again) |
15 | 4674 || (sub_firstline[matchcol] == NUL && nmatch <= 1 |
4675 && !re_multiline(regmatch.regprog))); | |
7 | 4676 nmatch = -1; |
4677 | |
4678 /* | |
4679 * Replace the line in the buffer when needed. This is | |
4680 * skipped when there are more matches. | |
4681 * The check for nmatch_tl is needed for when multi-line | |
4682 * matching must replace the lines before trying to do another | |
4683 * match, otherwise "\@<=" won't work. | |
1499 | 4684 * When the match starts below where we start searching also |
4685 * need to replace the line first (using \zs after \n). | |
7 | 4686 */ |
4687 if (lastone | |
4688 || nmatch_tl > 0 | |
4689 || (nmatch = vim_regexec_multi(®match, curwin, | |
1521 | 4690 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
|
4691 matchcol, NULL)) == 0 |
1499 | 4692 || regmatch.startpos[0].lnum > 0) |
7 | 4693 { |
4694 if (new_start != NULL) | |
4695 { | |
4696 /* | |
4697 * Copy the rest of the line, that didn't match. | |
4698 * "matchcol" has to be adjusted, we use the end of | |
4699 * the line as reference, because the substitute may | |
4700 * have changed the number of characters. Same for | |
4701 * "prev_matchcol". | |
4702 */ | |
4703 STRCAT(new_start, sub_firstline + copycol); | |
4704 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
4705 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
4706 - prev_matchcol; | |
4707 | |
4708 if (u_savesub(lnum) != OK) | |
4709 break; | |
4710 ml_replace(lnum, new_start, TRUE); | |
4711 | |
4712 if (nmatch_tl > 0) | |
4713 { | |
4714 /* | |
4715 * Matched lines have now been substituted and are | |
4716 * useless, delete them. The part after the match | |
4717 * has been appended to new_start, we don't need | |
4718 * it in the buffer. | |
4719 */ | |
4720 ++lnum; | |
4721 if (u_savedel(lnum, nmatch_tl) != OK) | |
4722 break; | |
4723 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
|
4724 ml_delete(lnum); |
7 | 4725 mark_adjust(lnum, lnum + nmatch_tl - 1, |
4726 (long)MAXLNUM, -nmatch_tl); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4727 if (subflags.do_ask) |
7 | 4728 deleted_lines(lnum, nmatch_tl); |
4729 --lnum; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4730 line2 -= nmatch_tl; // nr of lines decreases |
7 | 4731 nmatch_tl = 0; |
4732 } | |
4733 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4734 // 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
|
4735 // changed flag each time. |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4736 if (subflags.do_ask) |
7 | 4737 changed_bytes(lnum, 0); |
4738 else | |
4739 { | |
4740 if (first_line == 0) | |
4741 first_line = lnum; | |
4742 last_line = lnum + 1; | |
4743 } | |
4744 | |
4745 sub_firstlnum = lnum; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4746 vim_free(sub_firstline); // free the temp buffer |
7 | 4747 sub_firstline = new_start; |
4748 new_start = NULL; | |
4749 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
4750 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
4751 - prev_matchcol; | |
4752 copycol = 0; | |
4753 } | |
4754 if (nmatch == -1 && !lastone) | |
4755 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
|
4756 sub_firstlnum, matchcol, NULL); |
7 | 4757 |
4758 /* | |
4759 * 5. break if there isn't another match in this line | |
4760 */ | |
4761 if (nmatch <= 0) | |
1499 | 4762 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4763 // 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
|
4764 // 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
|
4765 // found the match. |
1499 | 4766 if (nmatch == -1) |
4767 lnum -= regmatch.startpos[0].lnum; | |
7 | 4768 break; |
1499 | 4769 } |
7 | 4770 } |
4771 | |
4772 line_breakcheck(); | |
4773 } | |
4774 | |
4775 if (did_sub) | |
4776 ++sub_nlines; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4777 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
|
4778 VIM_CLEAR(sub_firstline); // free the copy of the original line |
7 | 4779 } |
4780 | |
4781 line_breakcheck(); | |
4782 } | |
4783 | |
4784 if (first_line != 0) | |
4785 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4786 // 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
|
4787 // 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
|
4788 // deleted lines). |
7 | 4789 i = curbuf->b_ml.ml_line_count - old_line_count; |
4790 changed_lines(first_line, 0, last_line - i, i); | |
4791 } | |
4792 | |
4793 outofmem: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4794 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
|
4795 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4796 // ":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
|
4797 if (subflags.do_count) |
170 | 4798 curwin->w_cursor = old_cursor; |
4799 | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4800 if (sub_nsubs > start_nsubs) |
7 | 4801 { |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
4802 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
|
4803 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4804 // Set the '[ and '] marks. |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4805 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
|
4806 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
|
4807 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
|
4808 } |
7 | 4809 |
4810 if (!global_busy) | |
4811 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4812 // 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
|
4813 if (!subflags.do_ask) |
3394 | 4814 { |
4815 if (endcolumn) | |
4816 coladvance((colnr_T)MAXCOL); | |
4817 else | |
4818 beginline(BL_WHITE | BL_FIX); | |
4819 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4820 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
|
4821 msg(""); |
7 | 4822 } |
4823 else | |
4824 global_need_beginline = TRUE; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4825 if (subflags.do_print) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4826 print_line(curwin->w_cursor.lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4827 subflags.do_number, subflags.do_list); |
7 | 4828 } |
4829 else if (!global_busy) | |
4830 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4831 if (got_int) // interrupted |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
4832 emsg(_(e_interrupted)); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4833 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
|
4834 msg(""); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4835 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
|
4836 semsg(_(e_pattern_not_found_str), get_search_pat()); |
7 | 4837 } |
4838 | |
4035 | 4839 #ifdef FEAT_FOLDING |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4840 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
|
4841 // Cursor position may require updating |
4035 | 4842 changed_window_setting(); |
4843 #endif | |
4844 | |
29546
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4845 // Restore cmdheight |
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4846 if (cmdheight0) |
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4847 set_option_value((char_u *)"ch", 0L, NULL, 0); |
8a243ecfe2dd
patch 9.0.0114: the command line takes up space even when not used
Bram Moolenaar <Bram@vim.org>
parents:
29487
diff
changeset
|
4848 |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
4849 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
|
4850 vim_free(sub_copy); |
6789 | 4851 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4852 // 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
|
4853 subflags.do_all = save_do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4854 subflags.do_ask = save_do_ask; |
7 | 4855 } |
4856 | |
4857 /* | |
4858 * Give message for number of substitutions. | |
4859 * Can also be used after a ":global" command. | |
4860 * Return TRUE if a message was given. | |
4861 */ | |
484 | 4862 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4863 do_sub_msg( |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4864 int count_only) // used 'n' flag for ":s" |
7 | 4865 { |
4866 /* | |
4867 * Only report substitutions when: | |
4868 * - more than 'report' substitutions | |
4869 * - command was typed by user, or number of changed lines > 'report' | |
4870 * - giving messages is not disabled by 'lazyredraw' | |
4871 */ | |
170 | 4872 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
4873 || count_only) | |
7 | 4874 && messaging()) |
4875 { | |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4876 char *msg_single; |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4877 char *msg_plural; |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4878 |
7 | 4879 if (got_int) |
4880 STRCPY(msg_buf, _("(Interrupted) ")); | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
4881 else |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
4882 *msg_buf = NUL; |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4883 |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4884 msg_single = count_only |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4885 ? 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
|
4886 "%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
|
4887 : 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
|
4888 "%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
|
4889 msg_plural = count_only |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4890 ? 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
|
4891 "%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
|
4892 : 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
|
4893 "%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
|
4894 |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
4895 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
|
4896 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
|
4897 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
|
4898 |
7 | 4899 if (msg(msg_buf)) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4900 // 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
|
4901 set_keep_msg((char_u *)msg_buf, 0); |
7 | 4902 return TRUE; |
4903 } | |
4904 if (got_int) | |
4905 { | |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
4906 emsg(_(e_interrupted)); |
7 | 4907 return TRUE; |
4908 } | |
4909 return FALSE; | |
4910 } | |
4911 | |
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
|
4912 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
|
4913 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
|
4914 { |
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
|
4915 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
|
4916 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
|
4917 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
|
4918 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
|
4919 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
|
4920 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
|
4921 } |
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
|
4922 |
7 | 4923 /* |
4924 * Execute a global command of the form: | |
4925 * | |
4926 * g/pattern/X : execute X on all lines where pattern matches | |
4927 * v/pattern/X : execute X on all lines where pattern does not match | |
4928 * | |
4929 * where 'X' is an EX command | |
4930 * | |
4931 * The command character (as well as the trailing slash) is optional, and | |
4932 * is assumed to be 'p' if missing. | |
4933 * | |
4934 * This is implemented in two passes: first we scan the file for the pattern and | |
3786 | 4935 * set a mark for each line that (not) matches. Secondly we execute the command |
7 | 4936 * for each line that has a mark. This is required because after deleting |
4937 * lines we do not know where to search for the next match. | |
4938 */ | |
4939 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4940 ex_global(exarg_T *eap) |
7 | 4941 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4942 linenr_T lnum; // line number according to old situation |
170 | 4943 int ndone = 0; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4944 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
|
4945 char_u *cmd; // command argument |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4946 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4947 char_u delim; // delimiter, normally '/' |
7 | 4948 char_u *pat; |
4949 regmmatch_T regmatch; | |
4950 int match; | |
4951 int which_pat; | |
4952 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4953 // 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
|
4954 // ":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
|
4955 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
|
4956 || 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
|
4957 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4958 // 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
|
4959 emsg(_(e_cannot_do_global_recursive_with_range)); |
7 | 4960 return; |
4961 } | |
4962 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4963 if (eap->forceit) // ":global!" is like ":vglobal" |
7 | 4964 type = 'v'; |
4965 else | |
4966 type = *eap->cmd; | |
4967 cmd = eap->arg; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4968 which_pat = RE_LAST; // default: use last used regexp |
7 | 4969 |
25943
dbf6a2066091
patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
25939
diff
changeset
|
4970 #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
|
4971 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
|
4972 return; |
25943
dbf6a2066091
patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
25939
diff
changeset
|
4973 #endif |
25939
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25729
diff
changeset
|
4974 |
7 | 4975 /* |
4976 * undocumented vi feature: | |
4977 * "\/" and "\?": use previous search pattern. | |
4978 * "\&": use previous substitute pattern. | |
4979 */ | |
4980 if (*cmd == '\\') | |
4981 { | |
4982 ++cmd; | |
4983 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
4984 { | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24992
diff
changeset
|
4985 emsg(_(e_backslash_should_be_followed_by)); |
7 | 4986 return; |
4987 } | |
4988 if (*cmd == '&') | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4989 which_pat = RE_SUBST; // use previous substitute pattern |
7 | 4990 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4991 which_pat = RE_SEARCH; // use previous search pattern |
7 | 4992 ++cmd; |
4993 pat = (char_u *)""; | |
4994 } | |
4995 else if (*cmd == NUL) | |
4996 { | |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26848
diff
changeset
|
4997 emsg(_(e_regular_expression_missing_from_global)); |
7 | 4998 return; |
4999 } | |
24992
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
5000 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
|
5001 { |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
5002 return; |
026718ffbfa8
patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents:
24834
diff
changeset
|
5003 } |
7 | 5004 else |
5005 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5006 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
|
5007 ++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
|
5008 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
|
5009 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
|
5010 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
|
5011 *cmd++ = NUL; // replace it with a NUL |
7 | 5012 } |
5013 | |
5014 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) | |
5015 { | |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21773
diff
changeset
|
5016 emsg(_(e_invalid_command)); |
7 | 5017 return; |
5018 } | |
5019 | |
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
|
5020 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
|
5021 { |
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
|
5022 lnum = curwin->w_cursor.lnum; |
1521 | 5023 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
|
5024 (colnr_T)0, NULL); |
7 | 5025 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
|
5026 global_exe_one(cmd, lnum); |
7 | 5027 } |
5028 else | |
6116 | 5029 { |
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
|
5030 /* |
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
|
5031 * 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
|
5032 */ |
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
|
5033 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
|
5034 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5035 // 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
|
5036 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
|
5037 (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
|
5038 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
|
5039 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
|
5040 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
|
5041 { |
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
|
5042 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
|
5043 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
|
5044 } |
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
|
5045 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
|
5046 } |
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
|
5047 |
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
|
5048 /* |
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 * 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
|
5050 */ |
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 if (got_int) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
5052 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
|
5053 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
|
5054 { |
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
|
5055 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
|
5056 { |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5057 if (in_vim9script()) |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5058 semsg(_(e_pattern_found_in_every_line_str), pat); |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5059 else |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5060 smsg(_("Pattern found in every line: %s"), pat); |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5061 } |
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
|
5062 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
|
5063 { |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5064 if (in_vim9script()) |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5065 semsg(_(e_pattern_not_found_str), pat); |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5066 else |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5067 smsg(_("Pattern not found: %s"), pat); |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27521
diff
changeset
|
5068 } |
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
|
5069 } |
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
|
5070 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
|
5071 { |
6116 | 5072 #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
|
5073 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
|
5074 #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
|
5075 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
|
5076 #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
|
5077 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
|
5078 #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
|
5079 } |
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
|
5080 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5081 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
|
5082 } |
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
|
5083 |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
5084 vim_regfree(regmatch.regprog); |
7 | 5085 } |
5086 | |
5087 /* | |
5088 * Execute "cmd" on lines marked with ml_setmarked(). | |
5089 */ | |
5090 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5091 global_exe(char_u *cmd) |
7 | 5092 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5093 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
|
5094 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
|
5095 linenr_T lnum; // line number according to old situation |
7 | 5096 |
5097 /* | |
5098 * Set current position only once for a global command. | |
5099 * If global_busy is set, setpcmark() will not do anything. | |
5100 * If there is an error, global_busy will be incremented. | |
5101 */ | |
5102 setpcmark(); | |
5103 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5104 // When the command writes a message, don't overwrite the command. |
7 | 5105 msg_didout = TRUE; |
5106 | |
2127
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
5107 sub_nsubs = 0; |
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
5108 sub_nlines = 0; |
7 | 5109 global_need_beginline = FALSE; |
5110 global_busy = 1; | |
5111 old_lcount = curbuf->b_ml.ml_line_count; | |
5112 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) | |
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 global_exe_one(cmd, lnum); |
7 | 5115 ui_breakcheck(); |
5116 } | |
5117 | |
5118 global_busy = 0; | |
5119 if (global_need_beginline) | |
5120 beginline(BL_WHITE | BL_FIX); | |
5121 else | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5122 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
|
5123 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5124 // 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
|
5125 // line may move it on the screen |
39 | 5126 changed_line_abv_curs(); |
5127 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5128 // 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
|
5129 // command with the report for number of changes. |
7 | 5130 if (msg_col == 0 && msg_scrolled == 0) |
5131 msg_didout = FALSE; | |
5132 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5133 // 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
|
5134 // 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
|
5135 // 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
|
5136 // we are in after execution is different from the buffer we started in. |
2819 | 5137 if (!do_sub_msg(FALSE) && curbuf == old_buf) |
7 | 5138 msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
5139 } | |
5140 | |
5141 #ifdef FEAT_VIMINFO | |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5142 /* |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5143 * Get the previous substitute pattern. |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5144 */ |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5145 char_u * |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5146 get_old_sub(void) |
7 | 5147 { |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5148 return old_sub; |
7 | 5149 } |
5150 | |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5151 /* |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5152 * 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
|
5153 */ |
7 | 5154 void |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5155 set_old_sub(char_u *val) |
7 | 5156 { |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5157 vim_free(old_sub); |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
5158 old_sub = val; |
7 | 5159 } |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17431
diff
changeset
|
5160 #endif // FEAT_VIMINFO |
7 | 5161 |
359 | 5162 #if defined(EXITFREE) || defined(PROTO) |
5163 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5164 free_old_sub(void) |
359 | 5165 { |
5166 vim_free(old_sub); | |
5167 } | |
5168 #endif | |
5169 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12297
diff
changeset
|
5170 #if defined(FEAT_QUICKFIX) || defined(PROTO) |
7 | 5171 /* |
5172 * 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
|
5173 * Makes the preview window the current window. |
735 | 5174 * Return TRUE when it was created. |
7 | 5175 */ |
735 | 5176 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5177 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
|
5178 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
|
5179 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
|
5180 use_popup_T use_popup) // use other popup window |
7 | 5181 { |
5182 win_T *wp; | |
5183 | |
5184 # ifdef FEAT_GUI | |
5185 need_mouse_correct = TRUE; | |
5186 # endif | |
5187 | |
5188 /* | |
5189 * If there is already a preview window open, use that one. | |
5190 */ | |
5191 if (!curwin->w_p_pvw) | |
5192 { | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
5193 # 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
|
5194 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
|
5195 { |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5196 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
|
5197 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
|
5198 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
|
5199 } |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5200 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
|
5201 { |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
5202 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
|
5203 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
|
5204 { |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5205 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
|
5206 popup_show(wp); |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5207 else |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5208 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
|
5209 // 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
|
5210 // another window. TODO: can this be done more efficiently? |
bb256b1fabf7
patch 8.1.2277: terminal window is not updated when info popup changes
Bram Moolenaar <Bram@vim.org>
parents:
18558
diff
changeset
|
5211 redraw_all_later(NOT_VALID); |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
5212 } |
17431
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5213 } |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5214 else |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5215 # endif |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5216 { |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5217 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
|
5218 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
|
5219 break; |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5220 } |
7 | 5221 if (wp != NULL) |
816 | 5222 win_enter(wp, undo_sync); |
7 | 5223 else |
5224 { | |
5225 /* | |
5226 * There is no preview window open yet. Create one. | |
5227 */ | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
5228 # 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
|
5229 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
|
5230 || 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
|
5231 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
|
5232 # endif |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5233 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) == FAIL) |
735 | 5234 return FALSE; |
7 | 5235 curwin->w_p_pvw = TRUE; |
5236 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
|
5237 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
|
5238 // and 'cursorbind' |
7 | 5239 # 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
|
5240 curwin->w_p_diff = FALSE; // no 'diff' |
7 | 5241 # endif |
5242 # 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
|
5243 curwin->w_p_fdc = 0; // no 'foldcolumn' |
7 | 5244 # endif |
735 | 5245 return TRUE; |
7 | 5246 } |
5247 } | |
735 | 5248 return FALSE; |
7 | 5249 } |
5250 | |
5251 #endif | |
5252 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5253 /* |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5254 * Make the user happy. |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5255 */ |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5256 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5257 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
|
5258 { |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5259 static char *code[] = { |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5260 "\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
|
5261 "\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
|
5262 }; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5263 char *p; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5264 int n; |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5265 int i; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5266 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5267 msg_start(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5268 msg_putchar('\n'); |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5269 for (i = 0; i < 2; ++i) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5270 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
|
5271 if (*p == 'x') |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5272 msg_putchar('\n'); |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5273 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5274 for (n = *p++; n > 0; --n) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5275 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
|
5276 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
|
5277 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
5278 msg_putchar(*p); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5279 msg_clr_eos(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
5280 } |
7 | 5281 |
5282 /* | |
5283 * ":drop" | |
5284 * Opens the first argument in a window. When there are two or more arguments | |
5285 * the argument list is redefined. | |
5286 */ | |
5287 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5288 ex_drop(exarg_T *eap) |
7 | 5289 { |
5290 int split = FALSE; | |
5291 win_T *wp; | |
5292 buf_T *buf; | |
735 | 5293 tabpage_T *tp; |
7 | 5294 |
20561
18c52f380193
patch 8.2.0834: :drop command in terminal popup causes problems
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
5295 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
|
5296 return; |
18c52f380193
patch 8.2.0834: :drop command in terminal popup causes problems
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
5297 |
7 | 5298 /* |
5299 * Check if the first argument is already being edited in a window. If | |
5300 * so, jump to that window. | |
5301 * We would actually need to check all arguments, but that's complicated | |
5302 * and mostly only one file is dropped. | |
5303 * This also ignores wildcards, since it is very unlikely the user is | |
5304 * editing a file name with a wildcard character. | |
5305 */ | |
735 | 5306 set_arglist(eap->arg); |
5307 | |
1067 | 5308 /* |
5309 * Expanding wildcards may result in an empty argument list. E.g. when | |
5310 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we | |
5311 * already did an error message for this. | |
5312 */ | |
5313 if (ARGCOUNT == 0) | |
5314 return; | |
5315 | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22588
diff
changeset
|
5316 if (cmdmod.cmod_tab) |
735 | 5317 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5318 // ":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
|
5319 // 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
|
5320 // windows or tabs. |
735 | 5321 ex_all(eap); |
5322 } | |
5323 else | |
5324 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5325 // ":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
|
5326 // 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
|
5327 // can be abandoned, otherwise open a new window. |
735 | 5328 buf = buflist_findnr(ARGLIST[0].ae_fnum); |
5329 | |
5330 FOR_ALL_TAB_WINDOWS(tp, wp) | |
5331 { | |
5332 if (wp->w_buffer == buf) | |
7 | 5333 { |
825 | 5334 goto_tabpage_win(tp, wp); |
7 | 5335 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
|
5336 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
|
5337 { |
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5338 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
|
5339 |
0d79d18f1c69
patch 8.2.2231: when "--remote file" is used "file" is not reloaded
Bram Moolenaar <Bram@vim.org>
parents:
23274
diff
changeset
|
5340 // 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
|
5341 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
|
5342 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
|
5343 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
|
5344 } |
7 | 5345 return; |
5346 } | |
5347 } | |
735 | 5348 |
5349 /* | |
5350 * Check whether the current buffer is changed. If so, we will need | |
5351 * to split the current window or data could be lost. | |
5352 * Skip the check if the 'hidden' option is set, as in this case the | |
5353 * buffer won't be lost. | |
5354 */ | |
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
|
5355 if (!buf_hide(curbuf)) |
735 | 5356 { |
5357 ++emsg_off; | |
5464 | 5358 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD); |
735 | 5359 --emsg_off; |
5360 } | |
5361 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5362 // Fake a ":sfirst" or ":first" command edit the first argument. |
735 | 5363 if (split) |
5364 { | |
5365 eap->cmdidx = CMD_sfirst; | |
5366 eap->cmd[0] = 's'; | |
5367 } | |
5368 else | |
5369 eap->cmdidx = CMD_first; | |
5370 ex_rewind(eap); | |
5371 } | |
7 | 5372 } |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5373 |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5374 /* |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5375 * 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
|
5376 * 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
|
5377 * 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
|
5378 * 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
|
5379 * 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
|
5380 */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5381 char_u * |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5382 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
|
5383 { |
24834
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5384 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
|
5385 } |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5386 |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5387 /* |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5388 * 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
|
5389 * 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
|
5390 */ |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5391 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
|
5392 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
|
5393 { |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5394 int c; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5395 |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5396 if (vim_isIDc(*p)) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5397 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5398 // ":vimgrep pattern fname" |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5399 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5400 *s = p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5401 p = skiptowhite(p); |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5402 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
|
5403 { |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5404 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
|
5405 { |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5406 *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
|
5407 *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
|
5408 } |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5409 *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
|
5410 } |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5411 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5412 else |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5413 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5414 // ":vimgrep /pattern/[g][j] fname" |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5415 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5416 *s = p + 1; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5417 c = *p; |
19892
5feb426d2ea1
patch 8.2.0502: Vim9: some code is not tested
Bram Moolenaar <Bram@vim.org>
parents:
19693
diff
changeset
|
5418 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
|
5419 if (*p != c) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5420 return NULL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5421 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5422 // Truncate the pattern. |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5423 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
|
5424 { |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5425 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
|
5426 { |
adcd50a18236
patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents:
24634
diff
changeset
|
5427 *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
|
5428 *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
|
5429 } |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5430 *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
|
5431 } |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5432 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5433 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5434 // Find the flags |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24488
diff
changeset
|
5435 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
|
5436 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5437 if (flags != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5438 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5439 if (*p == 'g') |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5440 *flags |= VGR_GLOBAL; |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24488
diff
changeset
|
5441 else if (*p == 'j') |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24488
diff
changeset
|
5442 *flags |= VGR_NOJUMP; |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5443 else |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24488
diff
changeset
|
5444 *flags |= VGR_FUZZY; |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5445 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5446 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5447 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5448 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5449 return p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5450 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
5451 |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5452 #if defined(FEAT_EVAL) || defined(PROTO) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5453 /* |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5454 * 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
|
5455 */ |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5456 void |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5457 ex_oldfiles(exarg_T *eap UNUSED) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5458 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5459 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
|
5460 listitem_T *li; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5461 int nr = 0; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5462 char_u *fname; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5463 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5464 if (l == NULL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
5465 msg(_("No old files")); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5466 else |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5467 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5468 msg_start(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5469 msg_scroll = TRUE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5470 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
|
5471 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5472 ++nr; |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15209
diff
changeset
|
5473 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
|
5474 if (!message_filtered(fname)) |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5475 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5476 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
|
5477 msg_puts(": "); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5478 msg_outtrans(fname); |
10021
5fc4bec66c33
commit https://github.com/vim/vim/commit/885c00eabe6d1fd757d4f0eb531ad3a15a35ec04
Christian Brabandt <cb@256bit.org>
parents:
9980
diff
changeset
|
5479 msg_clr_eos(); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5480 msg_putchar('\n'); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5481 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
|
5482 ui_breakcheck(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5483 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5484 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5485 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5486 // 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
|
5487 got_int = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5488 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5489 # 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
|
5490 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
|
5491 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5492 quit_more = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5493 nr = prompt_for_number(FALSE); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5494 msg_starthere(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5495 if (nr > 0) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5496 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5497 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
|
5498 (long)nr); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5499 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5500 if (p != NULL) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5501 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5502 p = expand_env_save(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5503 eap->arg = p; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5504 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
|
5505 cmdmod.cmod_flags &= ~CMOD_BROWSE; |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5506 do_exedit(eap, NULL); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5507 vim_free(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5508 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5509 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5510 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5511 # endif |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5512 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5513 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
5514 #endif |