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