Mercurial > vim
annotate src/ex_cmds.c @ 20565:5788b78a1af0 v8.2.0836
patch 8.2.0836: not all :cdo output is visible
Commit: https://github.com/vim/vim/commit/14798ab9a5ee4b94f6c12f1986207569356acfc8
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu May 28 21:30:11 2020 +0200
patch 8.2.0836: not all :cdo output is visible
Problem: Not all :cdo output is visible.
Solution: Reset 'shortmess' temporarily. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/6155)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 28 May 2020 21:45:03 +0200 |
parents | 18c52f380193 |
children | d571231175b4 |
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); |
16606
7e733046db1d
patch 8.1.1306: Borland support is outdated and doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
16475
diff
changeset
|
26 static int help_compare(const void *s1, const void *s2); |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
27 static void prepare_help_buffer(void); |
7 | 28 |
29 /* | |
30 * ":ascii" and "ga". | |
31 */ | |
32 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
33 do_ascii(exarg_T *eap UNUSED) |
7 | 34 { |
35 int c; | |
1784 | 36 int cval; |
7 | 37 char buf1[20]; |
38 char buf2[20]; | |
39 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
|
40 #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
|
41 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
|
42 #endif |
714 | 43 int cc[MAX_MCO]; |
44 int ci = 0; | |
7 | 45 int len; |
46 | |
47 if (enc_utf8) | |
714 | 48 c = utfc_ptr2char(ml_get_cursor(), cc); |
7 | 49 else |
50 c = gchar_cursor(); | |
51 if (c == NUL) | |
52 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
53 msg("NUL"); |
7 | 54 return; |
55 } | |
56 | |
57 IObuff[0] = NUL; | |
58 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80) | |
59 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
60 if (c == NL) // NUL is stored as NL |
7 | 61 c = NUL; |
1784 | 62 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
|
63 cval = NL; // NL is stored as CR |
1784 | 64 else |
65 cval = c; | |
7 | 66 if (vim_isprintc_strict(c) && (c < ' ' |
67 #ifndef EBCDIC | |
68 || c > '~' | |
69 #endif | |
70 )) | |
71 { | |
72 transchar_nonprint(buf3, c); | |
1872 | 73 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3); |
7 | 74 } |
75 else | |
76 buf1[0] = NUL; | |
77 #ifndef EBCDIC | |
78 if (c >= 0x80) | |
1872 | 79 vim_snprintf(buf2, sizeof(buf2), " <M-%s>", |
80 (char *)transchar(c & 0x7f)); | |
7 | 81 else |
82 #endif | |
83 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
|
84 #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
|
85 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
|
86 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
|
87 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
|
88 _("<%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
|
89 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
|
90 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
|
91 #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
|
92 vim_snprintf((char *)IObuff, IOSIZE, |
274 | 93 _("<%s>%s%s %d, Hex %02x, Octal %03o"), |
1784 | 94 transchar(c), buf1, buf2, cval, cval, cval); |
963 | 95 if (enc_utf8) |
96 c = cc[ci++]; | |
97 else | |
98 c = 0; | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
99 } |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
100 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
101 // Repeat for combining characters. |
7 | 102 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80))) |
103 { | |
104 len = (int)STRLEN(IObuff); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
105 // This assumes every multi-byte char is printable... |
7 | 106 if (len > 0) |
107 IObuff[len++] = ' '; | |
108 IObuff[len++] = '<'; | |
963 | 109 if (enc_utf8 && utf_iscomposing(c) |
625 | 110 # ifdef USE_GUI |
7 | 111 && !gui.in_use |
625 | 112 # endif |
7 | 113 ) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
114 IObuff[len++] = ' '; // draw composing char on top of a space |
274 | 115 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
|
116 #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
|
117 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
|
118 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
|
119 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
|
120 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
|
121 : _("> %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
|
122 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
|
123 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
|
124 #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
|
125 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
|
126 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
|
127 : _("> %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
|
128 c, c, c); |
714 | 129 if (ci == MAX_MCO) |
130 break; | |
963 | 131 if (enc_utf8) |
132 c = cc[ci++]; | |
133 else | |
134 c = 0; | |
7 | 135 } |
136 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
137 msg((char *)IObuff); |
7 | 138 } |
139 | |
140 /* | |
141 * ":left", ":center" and ":right": align text. | |
142 */ | |
143 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
144 ex_align(exarg_T *eap) |
7 | 145 { |
146 pos_T save_curpos; | |
147 int len; | |
148 int indent = 0; | |
149 int new_indent; | |
150 int has_tab; | |
151 int width; | |
152 | |
153 #ifdef FEAT_RIGHTLEFT | |
154 if (curwin->w_p_rl) | |
155 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
156 // switch left and right aligning |
7 | 157 if (eap->cmdidx == CMD_right) |
158 eap->cmdidx = CMD_left; | |
159 else if (eap->cmdidx == CMD_left) | |
160 eap->cmdidx = CMD_right; | |
161 } | |
162 #endif | |
163 | |
164 width = atoi((char *)eap->arg); | |
165 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
|
166 if (eap->cmdidx == CMD_left) // width is used for new indent |
7 | 167 { |
168 if (width >= 0) | |
169 indent = width; | |
170 } | |
171 else | |
172 { | |
173 /* | |
174 * if 'textwidth' set, use it | |
175 * else if 'wrapmargin' set, use it | |
176 * if invalid value, use 80 | |
177 */ | |
178 if (width <= 0) | |
179 width = curbuf->b_p_tw; | |
180 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
|
181 width = curwin->w_width - curbuf->b_p_wm; |
7 | 182 if (width <= 0) |
183 width = 80; | |
184 } | |
185 | |
186 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) | |
187 return; | |
188 | |
189 for (curwin->w_cursor.lnum = eap->line1; | |
190 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum) | |
191 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
192 if (eap->cmdidx == CMD_left) // left align |
7 | 193 new_indent = indent; |
194 else | |
195 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
196 has_tab = FALSE; // avoid uninit warnings |
7 | 197 len = linelen(eap->cmdidx == CMD_right ? &has_tab |
198 : NULL) - get_indent(); | |
199 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
200 if (len <= 0) // skip blank lines |
7 | 201 continue; |
202 | |
203 if (eap->cmdidx == CMD_center) | |
204 new_indent = (width - len) / 2; | |
205 else | |
206 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
207 new_indent = width - len; // right align |
7 | 208 |
209 /* | |
210 * Make sure that embedded TABs don't make the text go too far | |
211 * to the right. | |
212 */ | |
213 if (has_tab) | |
214 while (new_indent > 0) | |
215 { | |
216 (void)set_indent(new_indent, 0); | |
217 if (linelen(NULL) <= width) | |
218 { | |
219 /* | |
220 * Now try to move the line as much as possible to | |
221 * the right. Stop when it moves too far. | |
222 */ | |
223 do | |
224 (void)set_indent(++new_indent, 0); | |
225 while (linelen(NULL) <= width); | |
226 --new_indent; | |
227 break; | |
228 } | |
229 --new_indent; | |
230 } | |
231 } | |
232 } | |
233 if (new_indent < 0) | |
234 new_indent = 0; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
235 (void)set_indent(new_indent, 0); // set indent |
7 | 236 } |
237 changed_lines(eap->line1, 0, eap->line2 + 1, 0L); | |
238 curwin->w_cursor = save_curpos; | |
239 beginline(BL_WHITE | BL_FIX); | |
240 } | |
241 | |
242 /* | |
243 * Get the length of the current line, excluding trailing white space. | |
244 */ | |
245 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
246 linelen(int *has_tab) |
7 | 247 { |
248 char_u *line; | |
249 char_u *first; | |
250 char_u *last; | |
251 int save; | |
252 int len; | |
253 | |
18408
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
254 // 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
|
255 // for an unloaded buffer). |
7 | 256 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
|
257 if (*line == NUL) |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
258 return 0; |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
259 |
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
260 // find the first non-blank character |
7 | 261 first = skipwhite(line); |
262 | |
18408
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
263 // find the character after the last non-blank character |
7 | 264 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
|
265 last > first && VIM_ISWHITE(last[-1]); --last) |
7 | 266 ; |
267 save = *last; | |
268 *last = NUL; | |
18408
50c0a9fb07ae
patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
18396
diff
changeset
|
269 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
|
270 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
|
271 *has_tab = (vim_strchr(first, TAB) != NULL); |
7 | 272 *last = save; |
273 | |
274 return len; | |
275 } | |
276 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
277 // 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
|
278 // contain the longest line being sorted. |
826 | 279 static char_u *sortbuf1; |
280 static char_u *sortbuf2; | |
284 | 281 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
282 static int sort_ic; // ignore case |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
283 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
|
284 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
|
285 #ifdef FEAT_FLOAT |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
286 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
|
287 #endif |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
288 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
289 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
|
290 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
291 // Struct to store info to be sorted. |
294 | 292 typedef struct |
293 { | |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
294 linenr_T lnum; // line number |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
295 union { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
296 struct |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
297 { |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
298 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
|
299 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
|
300 } line; |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
301 struct |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
302 { |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
303 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
|
304 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
|
305 } num; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
306 #ifdef FEAT_FLOAT |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
307 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
|
308 #endif |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
309 } st_u; |
294 | 310 } sorti_T; |
284 | 311 |
16606
7e733046db1d
patch 8.1.1306: Borland support is outdated and doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
16475
diff
changeset
|
312 static int sort_compare(const void *s1, const void *s2); |
284 | 313 |
314 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
315 sort_compare(const void *s1, const void *s2) |
284 | 316 { |
294 | 317 sorti_T l1 = *(sorti_T *)s1; |
318 sorti_T l2 = *(sorti_T *)s2; | |
826 | 319 int result = 0; |
320 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
321 // 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
|
322 // 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
|
323 // exit. |
826 | 324 if (sort_abort) |
325 return 0; | |
326 fast_breakcheck(); | |
327 if (got_int) | |
328 sort_abort = TRUE; | |
329 | |
294 | 330 if (sort_nr) |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
331 { |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
332 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
|
333 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
|
334 else |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
335 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
|
336 : 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
|
337 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
338 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
339 else if (sort_flt) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
340 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
|
341 : 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
|
342 #endif |
826 | 343 else |
344 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
345 // 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
|
346 // 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
|
347 // second one. |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
348 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
|
349 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
|
350 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
|
351 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
|
352 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
|
353 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0; |
826 | 354 |
834 | 355 result = sort_ic ? STRICMP(sortbuf1, sortbuf2) |
356 : STRCMP(sortbuf1, sortbuf2); | |
357 } | |
358 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
359 // If two lines have the same value, preserve the original line order. |
826 | 360 if (result == 0) |
834 | 361 return (int)(l1.lnum - l2.lnum); |
362 return result; | |
284 | 363 } |
364 | |
365 /* | |
366 * ":sort". | |
367 */ | |
368 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
369 ex_sort(exarg_T *eap) |
284 | 370 { |
371 regmatch_T regmatch; | |
372 int len; | |
373 linenr_T lnum; | |
374 long maxlen = 0; | |
294 | 375 sorti_T *nrs; |
1872 | 376 size_t count = (size_t)(eap->line2 - eap->line1 + 1); |
294 | 377 size_t i; |
284 | 378 char_u *p; |
379 char_u *s; | |
826 | 380 char_u *s2; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
381 char_u c; // temporary character storage |
284 | 382 int unique = FALSE; |
383 long deleted; | |
826 | 384 colnr_T start_col; |
385 colnr_T end_col; | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
386 int sort_what = 0; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
387 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
|
388 int change_occurred = FALSE; // Buffer contents changed. |
284 | 389 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
390 // Sorting one line is really quick! |
1538 | 391 if (count <= 1) |
392 return; | |
393 | |
284 | 394 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
395 return; | |
826 | 396 sortbuf1 = NULL; |
397 sortbuf2 = NULL; | |
284 | 398 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
|
399 nrs = ALLOC_MULT(sorti_T, count); |
284 | 400 if (nrs == NULL) |
826 | 401 goto sortend; |
402 | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
403 sort_abort = sort_ic = sort_rx = sort_nr = 0; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
404 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
405 sort_flt = 0; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
406 #endif |
294 | 407 |
284 | 408 for (p = eap->arg; *p != NUL; ++p) |
409 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
410 if (VIM_ISWHITE(*p)) |
284 | 411 ; |
412 else if (*p == 'i') | |
413 sort_ic = TRUE; | |
826 | 414 else if (*p == 'r') |
415 sort_rx = TRUE; | |
294 | 416 else if (*p == 'n') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
417 { |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
418 sort_nr = 1; |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
419 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
420 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
421 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
422 else if (*p == 'f') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
423 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
424 sort_flt = 1; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
425 ++format_found; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
426 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
427 #endif |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
428 else if (*p == 'b') |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
429 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
430 sort_what = STR2NR_BIN + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
431 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
432 } |
294 | 433 else if (*p == 'o') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
434 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
435 sort_what = STR2NR_OCT + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
436 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
437 } |
294 | 438 else if (*p == 'x') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
439 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
440 sort_what = STR2NR_HEX + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
441 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
442 } |
284 | 443 else if (*p == 'u') |
444 unique = TRUE; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
445 else if (*p == '"') // comment start |
289 | 446 break; |
447 else if (check_nextcmd(p) != NULL) | |
448 { | |
449 eap->nextcmd = check_nextcmd(p); | |
450 break; | |
451 } | |
452 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL) | |
284 | 453 { |
20113
2c23053c654a
patch 8.2.0612: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
454 s = skip_regexp_err(p + 1, *p, TRUE); |
2c23053c654a
patch 8.2.0612: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
455 if (s == NULL) |
826 | 456 goto sortend; |
284 | 457 *s = NUL; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
458 // Use last search pattern if sort pattern is empty. |
4199 | 459 if (s == p + 1) |
460 { | |
461 if (last_search_pat() == NULL) | |
462 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
463 emsg(_(e_noprevre)); |
4199 | 464 goto sortend; |
465 } | |
1314 | 466 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC); |
4199 | 467 } |
1314 | 468 else |
469 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC); | |
284 | 470 if (regmatch.regprog == NULL) |
826 | 471 goto sortend; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
472 p = s; // continue after the regexp |
284 | 473 regmatch.rm_ic = p_ic; |
474 } | |
475 else | |
476 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
477 semsg(_(e_invarg2), p); |
826 | 478 goto sortend; |
284 | 479 } |
480 } | |
481 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
482 // Can only have one of 'n', 'b', 'o' and 'x'. |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
483 if (format_found > 1) |
294 | 484 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
485 emsg(_(e_invarg)); |
826 | 486 goto sortend; |
294 | 487 } |
488 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
489 // From here on "sort_nr" is used as a flag for any integer number |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
490 // sorting. |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
491 sort_nr += sort_what; |
294 | 492 |
284 | 493 /* |
294 | 494 * Make an array with all line numbers. This avoids having to copy all |
284 | 495 * the lines into allocated memory. |
826 | 496 * When sorting on strings "start_col_nr" is the offset in the line, for |
497 * numbers sorting it's the number to sort on. This means the pattern | |
498 * matching and number conversion only has to be done once per line. | |
294 | 499 * Also get the longest line length for allocating "sortbuf". |
284 | 500 */ |
501 for (lnum = eap->line1; lnum <= eap->line2; ++lnum) | |
502 { | |
503 s = ml_get(lnum); | |
835 | 504 len = (int)STRLEN(s); |
284 | 505 if (maxlen < len) |
506 maxlen = len; | |
294 | 507 |
826 | 508 start_col = 0; |
509 end_col = len; | |
294 | 510 if (regmatch.regprog != NULL && vim_regexec(®match, s, 0)) |
826 | 511 { |
512 if (sort_rx) | |
513 { | |
835 | 514 start_col = (colnr_T)(regmatch.startp[0] - s); |
515 end_col = (colnr_T)(regmatch.endp[0] - s); | |
826 | 516 } |
517 else | |
835 | 518 start_col = (colnr_T)(regmatch.endp[0] - s); |
826 | 519 } |
294 | 520 else |
826 | 521 if (regmatch.regprog != NULL) |
522 end_col = 0; | |
294 | 523 |
7844
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
524 if (sort_nr |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
525 #ifdef FEAT_FLOAT |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
526 || sort_flt |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
527 #endif |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
528 ) |
294 | 529 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
530 // Make sure vim_str2nr doesn't read any digits past the end |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
531 // of the match, by temporarily terminating the string there |
826 | 532 s2 = s + end_col; |
533 c = *s2; | |
2606 | 534 *s2 = NUL; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
535 // Sorting on number: Store the number itself. |
1687 | 536 p = s + start_col; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
537 if (sort_nr) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
538 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
539 if (sort_what & STR2NR_HEX) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
540 s = skiptohex(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
541 else if (sort_what & STR2NR_BIN) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
542 s = skiptobin(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
543 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
544 s = skiptodigit(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
545 if (s > p && s[-1] == '-') |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
546 --s; // include preceding negative sign |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
547 if (*s == NUL) |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
548 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
549 // line without number should sort before any number |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
550 nrs[lnum - eap->line1].st_u.num.is_number = FALSE; |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
551 nrs[lnum - eap->line1].st_u.num.value = 0; |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
552 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
553 else |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
554 { |
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
555 nrs[lnum - eap->line1].st_u.num.is_number = TRUE; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
556 vim_str2nr(s, NULL, NULL, sort_what, |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16698
diff
changeset
|
557 &nrs[lnum - eap->line1].st_u.num.value, |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16698
diff
changeset
|
558 NULL, 0, FALSE); |
15906
f581167d59bf
patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
559 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
560 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
561 #ifdef FEAT_FLOAT |
294 | 562 else |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
563 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
564 s = skipwhite(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
565 if (*s == '+') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
566 s = skipwhite(s + 1); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
567 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
568 if (*s == NUL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
569 // empty line should sort before any number |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
570 nrs[lnum - eap->line1].st_u.value_flt = -DBL_MAX; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
571 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
572 nrs[lnum - eap->line1].st_u.value_flt = |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
573 strtod((char *)s, NULL); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
574 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
575 #endif |
2606 | 576 *s2 = c; |
294 | 577 } |
578 else | |
826 | 579 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
580 // Store the column to sort at. |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
581 nrs[lnum - eap->line1].st_u.line.start_col_nr = start_col; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
582 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col; |
826 | 583 } |
294 | 584 |
585 nrs[lnum - eap->line1].lnum = lnum; | |
481 | 586 |
587 if (regmatch.regprog != NULL) | |
588 fast_breakcheck(); | |
589 if (got_int) | |
826 | 590 goto sortend; |
284 | 591 } |
592 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
593 // Allocate a buffer that can hold the longest line. |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
594 sortbuf1 = alloc(maxlen + 1); |
826 | 595 if (sortbuf1 == NULL) |
596 goto sortend; | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
597 sortbuf2 = alloc(maxlen + 1); |
826 | 598 if (sortbuf2 == NULL) |
599 goto sortend; | |
284 | 600 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
601 // Sort the array of line numbers. Note: can't be interrupted! |
294 | 602 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare); |
284 | 603 |
826 | 604 if (sort_abort) |
605 goto sortend; | |
606 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
607 // Insert the lines in the sorted order below the last one. |
284 | 608 lnum = eap->line2; |
609 for (i = 0; i < count; ++i) | |
610 { | |
14206
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
611 linenr_T get_lnum = nrs[eap->forceit ? count - i - 1 : i].lnum; |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
612 |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
613 // If the original line number of the line being placed is not the same |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
614 // as "lnum" (accounting for offset), we know that the buffer changed. |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
615 if (get_lnum + ((linenr_T)count - 1) != lnum) |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
616 change_occurred = TRUE; |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
617 |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
618 s = ml_get(get_lnum); |
284 | 619 if (!unique || i == 0 |
826 | 620 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0) |
284 | 621 { |
14206
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
622 // 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
|
623 // 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
|
624 STRCPY(sortbuf1, s); |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
625 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL) |
284 | 626 break; |
627 } | |
481 | 628 fast_breakcheck(); |
629 if (got_int) | |
826 | 630 goto sortend; |
284 | 631 } |
632 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
633 // delete the original lines if appending worked |
284 | 634 if (i == count) |
635 for (i = 0; i < count; ++i) | |
636 ml_delete(eap->line1, FALSE); | |
637 else | |
638 count = 0; | |
639 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
640 // Adjust marks for deleted (or added) lines and prepare for displaying. |
835 | 641 deleted = (long)(count - (lnum - eap->line2)); |
284 | 642 if (deleted > 0) |
14808
3d0b6e2a3a01
patch 8.1.0416: sort doesn't report deleted lines
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
643 { |
284 | 644 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
|
645 msgmore(-deleted); |
3d0b6e2a3a01
patch 8.1.0416: sort doesn't report deleted lines
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
646 } |
284 | 647 else if (deleted < 0) |
648 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
|
649 |
f2ab259ef88a
patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents:
14194
diff
changeset
|
650 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
|
651 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted); |
294 | 652 |
284 | 653 curwin->w_cursor.lnum = eap->line1; |
654 beginline(BL_WHITE | BL_FIX); | |
655 | |
826 | 656 sortend: |
284 | 657 vim_free(nrs); |
826 | 658 vim_free(sortbuf1); |
659 vim_free(sortbuf2); | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
660 vim_regfree(regmatch.regprog); |
481 | 661 if (got_int) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
662 emsg(_(e_interr)); |
284 | 663 } |
664 | |
7 | 665 /* |
666 * :move command - move lines line1-line2 to line dest | |
667 * | |
668 * return FAIL for failure, OK otherwise | |
669 */ | |
670 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
671 do_move(linenr_T line1, linenr_T line2, linenr_T dest) |
7 | 672 { |
673 char_u *str; | |
674 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
|
675 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
|
676 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
|
677 linenr_T last_line; // Last line in file after adding new text |
6755 | 678 #ifdef FEAT_FOLDING |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
679 win_T *win; |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
680 tabpage_T *tp; |
6755 | 681 #endif |
7 | 682 |
683 if (dest >= line1 && dest < line2) | |
684 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
685 emsg(_("E134: Cannot move a range of lines into itself")); |
7 | 686 return FAIL; |
687 } | |
688 | |
15010
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
689 // 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
|
690 // 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
|
691 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
|
692 { |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
693 // 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
|
694 // compatible. |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
695 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
|
696 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
|
697 else |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
698 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
|
699 |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
700 return OK; |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
701 } |
e3910b9827d0
patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
14917
diff
changeset
|
702 |
7 | 703 num_lines = line2 - line1 + 1; |
704 | |
705 /* | |
706 * First we copy the old text to its new location -- webb | |
707 * Also copy the flag that ":global" command uses. | |
708 */ | |
709 if (u_save(dest, dest + 1) == FAIL) | |
710 return FAIL; | |
711 for (extra = 0, l = line1; l <= line2; l++) | |
712 { | |
713 str = vim_strsave(ml_get(l + extra)); | |
714 if (str != NULL) | |
715 { | |
716 ml_append(dest + l - line1, str, (colnr_T)0, FALSE); | |
717 vim_free(str); | |
718 if (dest < line1) | |
719 extra++; | |
720 } | |
721 } | |
722 | |
723 /* | |
724 * Now we must be careful adjusting our marks so that we don't overlap our | |
725 * mark_adjust() calls. | |
726 * | |
727 * We adjust the marks within the old text so that they refer to the | |
728 * last lines of the file (temporarily), because we know no other marks | |
729 * will be set there since these line numbers did not exist until we added | |
730 * our new lines. | |
731 * | |
732 * Then we adjust the marks on lines between the old and new text positions | |
733 * (either forwards or backwards). | |
734 * | |
735 * And Finally we adjust the marks we put at the end of the file back to | |
736 * their final destination at the new text position -- webb | |
737 */ | |
738 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
|
739 mark_adjust_nofold(line1, line2, last_line - line2, 0L); |
7 | 740 if (dest >= line2) |
741 { | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
742 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
|
743 #ifdef FEAT_FOLDING |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
744 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
|
745 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
|
746 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
|
747 } |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
748 #endif |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
749 if (!cmdmod.lockmarks) |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
750 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
751 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
|
752 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
|
753 } |
7 | 754 } |
755 else | |
756 { | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
757 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
|
758 #ifdef FEAT_FOLDING |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
759 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
|
760 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
|
761 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
|
762 } |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
763 #endif |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
764 if (!cmdmod.lockmarks) |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
765 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
766 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
|
767 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
|
768 } |
7 | 769 } |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
770 if (!cmdmod.lockmarks) |
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.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
|
772 mark_adjust_nofold(last_line - num_lines + 1, last_line, |
7 | 773 -(last_line - dest - extra), 0L); |
774 | |
775 /* | |
776 * Now we delete the original text -- webb | |
777 */ | |
778 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL) | |
779 return FAIL; | |
780 | |
781 for (l = line1; l <= line2; l++) | |
782 ml_delete(line1 + extra, TRUE); | |
783 | |
784 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
|
785 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
|
786 (long)num_lines); |
7 | 787 |
788 /* | |
789 * Leave the cursor on the last of the moved lines. | |
790 */ | |
791 if (dest >= line1) | |
792 curwin->w_cursor.lnum = dest; | |
793 else | |
794 curwin->w_cursor.lnum = dest + (line2 - line1) + 1; | |
795 | |
796 if (line1 < dest) | |
3184 | 797 { |
798 dest += num_lines + 1; | |
799 last_line = curbuf->b_ml.ml_line_count; | |
800 if (dest > last_line + 1) | |
801 dest = last_line + 1; | |
802 changed_lines(line1, 0, dest, 0L); | |
803 } | |
7 | 804 else |
805 changed_lines(dest + 1, 0, line1 + num_lines, 0L); | |
806 | |
807 return OK; | |
808 } | |
809 | |
810 /* | |
811 * ":copy" | |
812 */ | |
813 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
814 ex_copy(linenr_T line1, linenr_T line2, linenr_T n) |
7 | 815 { |
816 linenr_T count; | |
817 char_u *p; | |
818 | |
819 count = line2 - line1 + 1; | |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
820 if (!cmdmod.lockmarks) |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
821 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
822 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
|
823 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
|
824 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
|
825 } |
7 | 826 |
827 /* | |
828 * there are three situations: | |
829 * 1. destination is above line1 | |
830 * 2. destination is between line1 and line2 | |
831 * 3. destination is below line2 | |
832 * | |
833 * n = destination (when starting) | |
834 * curwin->w_cursor.lnum = destination (while copying) | |
835 * line1 = start of source (while copying) | |
836 * line2 = end of source (while copying) | |
837 */ | |
838 if (u_save(n, n + 1) == FAIL) | |
839 return; | |
840 | |
841 curwin->w_cursor.lnum = n; | |
842 while (line1 <= line2) | |
843 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
844 // 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
|
845 // ml_append() |
7 | 846 p = vim_strsave(ml_get(line1)); |
847 if (p != NULL) | |
848 { | |
849 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE); | |
850 vim_free(p); | |
851 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
852 // situation 2: skip already copied lines |
7 | 853 if (line1 == n) |
854 line1 = curwin->w_cursor.lnum; | |
855 ++line1; | |
856 if (curwin->w_cursor.lnum < line1) | |
857 ++line1; | |
858 if (curwin->w_cursor.lnum < line2) | |
859 ++line2; | |
860 ++curwin->w_cursor.lnum; | |
861 } | |
862 | |
863 appended_lines_mark(n, count); | |
864 | |
865 msgmore((long)count); | |
866 } | |
867 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
868 static char_u *prevcmd = NULL; // the previous command |
359 | 869 |
870 #if defined(EXITFREE) || defined(PROTO) | |
871 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
872 free_prev_shellcmd(void) |
359 | 873 { |
874 vim_free(prevcmd); | |
875 } | |
876 #endif | |
877 | |
7 | 878 /* |
879 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd" | |
880 * Bangs in the argument are replaced with the previously entered command. | |
881 * Remember the argument. | |
882 */ | |
883 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
884 do_bang( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
885 int addr_count, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
886 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
887 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
888 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
889 int do_out) |
7 | 890 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
891 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
|
892 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
|
893 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
|
894 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
|
895 int free_newcmd = FALSE; // need to free() newcmd |
7 | 896 int ins_prevcmd; |
897 char_u *t; | |
898 char_u *p; | |
899 char_u *trailarg; | |
900 int len; | |
901 int scroll_save = msg_scroll; | |
902 | |
903 /* | |
904 * Disallow shell commands for "rvim". | |
905 * Disallow shell commands from .exrc and .vimrc in current directory for | |
906 * security reasons. | |
907 */ | |
908 if (check_restricted() || check_secure()) | |
909 return; | |
910 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
911 if (addr_count == 0) // :! |
7 | 912 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
913 msg_scroll = FALSE; // don't scroll here |
7 | 914 autowrite_all(); |
915 msg_scroll = scroll_save; | |
916 } | |
917 | |
918 /* | |
919 * Try to find an embedded bang, like in :!<cmd> ! [args] | |
920 * (:!! is indicated by the 'forceit' variable) | |
921 */ | |
922 ins_prevcmd = forceit; | |
923 trailarg = arg; | |
924 do | |
925 { | |
926 len = (int)STRLEN(trailarg) + 1; | |
927 if (newcmd != NULL) | |
928 len += (int)STRLEN(newcmd); | |
929 if (ins_prevcmd) | |
930 { | |
931 if (prevcmd == NULL) | |
932 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
933 emsg(_(e_noprev)); |
7 | 934 vim_free(newcmd); |
935 return; | |
936 } | |
937 len += (int)STRLEN(prevcmd); | |
938 } | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
939 if ((t = alloc(len)) == NULL) |
7 | 940 { |
941 vim_free(newcmd); | |
942 return; | |
943 } | |
944 *t = NUL; | |
945 if (newcmd != NULL) | |
946 STRCAT(t, newcmd); | |
947 if (ins_prevcmd) | |
948 STRCAT(t, prevcmd); | |
949 p = t + STRLEN(t); | |
950 STRCAT(t, trailarg); | |
951 vim_free(newcmd); | |
952 newcmd = t; | |
953 | |
954 /* | |
955 * Scan the rest of the argument for '!', which is replaced by the | |
956 * previous command. "\!" is replaced by "!" (this is vi compatible). | |
957 */ | |
958 trailarg = NULL; | |
959 while (*p) | |
960 { | |
2823 | 961 if (*p == '!') |
7 | 962 { |
963 if (p > newcmd && p[-1] == '\\') | |
1624 | 964 STRMOVE(p - 1, p); |
7 | 965 else |
966 { | |
967 trailarg = p; | |
968 *trailarg++ = NUL; | |
969 ins_prevcmd = TRUE; | |
970 break; | |
971 } | |
972 } | |
973 ++p; | |
974 } | |
975 } while (trailarg != NULL); | |
976 | |
977 vim_free(prevcmd); | |
978 prevcmd = newcmd; | |
979 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
980 if (bangredo) // put cmd in redo buffer for ! command |
7 | 981 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
982 // 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
|
983 // 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
|
984 // buffername. |
5728 | 985 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#"); |
986 | |
987 if (cmd != NULL) | |
988 { | |
989 AppendToRedobuffLit(cmd, -1); | |
990 vim_free(cmd); | |
991 } | |
992 else | |
993 AppendToRedobuffLit(prevcmd, -1); | |
7 | 994 AppendToRedobuff((char_u *)"\n"); |
995 bangredo = FALSE; | |
996 } | |
997 /* | |
998 * Add quotes around the command, for shells that need them. | |
999 */ | |
1000 if (*p_shq != NUL) | |
1001 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
1002 newcmd = alloc(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1); |
7 | 1003 if (newcmd == NULL) |
1004 return; | |
1005 STRCPY(newcmd, p_shq); | |
1006 STRCAT(newcmd, prevcmd); | |
1007 STRCAT(newcmd, p_shq); | |
1008 free_newcmd = TRUE; | |
1009 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1010 if (addr_count == 0) // :! |
7 | 1011 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1012 // echo the command |
7 | 1013 msg_start(); |
1014 msg_putchar(':'); | |
1015 msg_putchar('!'); | |
1016 msg_outtrans(newcmd); | |
1017 msg_clr_eos(); | |
1018 windgoto(msg_row, msg_col); | |
1019 | |
1020 do_shell(newcmd, 0); | |
1021 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1022 else // :range! |
725 | 1023 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1024 // 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
|
1025 // autocommands) |
7 | 1026 do_filter(line1, line2, eap, newcmd, do_in, do_out); |
725 | 1027 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf); |
1028 } | |
7 | 1029 if (free_newcmd) |
1030 vim_free(newcmd); | |
1031 } | |
1032 | |
1033 /* | |
1034 * do_filter: filter lines through a command given by the user | |
1035 * | |
169 | 1036 * We mostly use temp files and the call_shell() routine here. This would |
1037 * normally be done using pipes on a UNIX machine, but this is more portable | |
1038 * to non-unix machines. The call_shell() routine needs to be able | |
7 | 1039 * to deal with redirection somehow, and should handle things like looking |
1040 * at the PATH env. variable, and adding reasonable extensions to the | |
1041 * command name given by the user. All reasonable versions of call_shell() | |
1042 * do this. | |
169 | 1043 * Alternatively, if on Unix and redirecting input or output, but not both, |
1044 * and the 'shelltemp' option isn't set, use pipes. | |
7 | 1045 * We use input redirection if do_in is TRUE. |
1046 * We use output redirection if do_out is TRUE. | |
1047 */ | |
1048 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1049 do_filter( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1050 linenr_T line1, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1051 linenr_T line2, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1052 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
|
1053 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1054 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1055 int do_out) |
7 | 1056 { |
1057 char_u *itmp = NULL; | |
1058 char_u *otmp = NULL; | |
1059 linenr_T linecount; | |
1060 linenr_T read_linecount; | |
1061 pos_T cursor_save; | |
1062 char_u *cmd_buf; | |
1063 buf_T *old_curbuf = curbuf; | |
169 | 1064 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
|
1065 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
|
1066 pos_T orig_end = curbuf->b_op_end; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1067 int save_lockmarks = cmdmod.lockmarks; |
18742
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1068 #ifdef FEAT_FILTERPIPE |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1069 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
|
1070 #endif |
7 | 1071 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1072 if (*cmd == NUL) // no filter command |
7 | 1073 return; |
1074 | |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1075 // 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
|
1076 // regions of the buffer for foldUpdate(), linecount, etc. |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1077 cmdmod.lockmarks = 0; |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1078 |
7 | 1079 cursor_save = curwin->w_cursor; |
1080 linecount = line2 - line1 + 1; | |
1081 curwin->w_cursor.lnum = line1; | |
1082 curwin->w_cursor.col = 0; | |
1083 changed_line_abv_curs(); | |
1084 invalidate_botline(); | |
1085 | |
1086 /* | |
169 | 1087 * When using temp files: |
1088 * 1. * Form temp file names | |
1089 * 2. * Write the lines to a temp file | |
1090 * 3. Run the filter command on the temp file | |
1091 * 4. * Read the output of the command into the buffer | |
1092 * 5. * Delete the original lines to be filtered | |
1093 * 6. * Remove the temp files | |
1094 * | |
1095 * When writing the input with a pipe or when catching the output with a | |
1096 * pipe only need to do 3. | |
7 | 1097 */ |
1098 | |
169 | 1099 if (do_out) |
1100 shell_flags |= SHELL_DOOUT; | |
1101 | |
3482 | 1102 #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
|
1103 # ifdef VIMDLL |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1104 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
|
1105 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
|
1106 # endif |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1107 |
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1108 if (!do_in && do_out && !stmp) |
169 | 1109 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1110 // Use a pipe to fetch stdout of the command, do not use a temp file. |
169 | 1111 shell_flags |= SHELL_READ; |
1112 curwin->w_cursor.lnum = line2; | |
1113 } | |
18742
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1114 else if (do_in && !do_out && !stmp) |
7 | 1115 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1116 // Use a pipe to write stdin of the command, do not use a temp file. |
169 | 1117 shell_flags |= SHELL_WRITE; |
1118 curbuf->b_op_start.lnum = line1; | |
1119 curbuf->b_op_end.lnum = line2; | |
7 | 1120 } |
18742
e9b2ade1adbd
patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents:
18619
diff
changeset
|
1121 else if (do_in && do_out && !stmp) |
169 | 1122 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1123 // Use a pipe to 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
|
1124 // use a temp file. |
169 | 1125 shell_flags |= SHELL_READ|SHELL_WRITE; |
1126 curbuf->b_op_start.lnum = line1; | |
1127 curbuf->b_op_end.lnum = line2; | |
1128 curwin->w_cursor.lnum = line2; | |
1129 } | |
1130 else | |
1131 #endif | |
6721 | 1132 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL) |
1133 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL)) | |
169 | 1134 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
1135 emsg(_(e_notmp)); |
169 | 1136 goto filterend; |
1137 } | |
7 | 1138 |
1139 /* | |
1140 * The writing and reading of temp files will not be shown. | |
1141 * Vi also doesn't do this and the messages are not very informative. | |
1142 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1143 ++no_wait_return; // don't call wait_return() while busy |
169 | 1144 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap, |
7 | 1145 FALSE, FALSE, FALSE, TRUE) == FAIL) |
1146 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1147 msg_putchar('\n'); // keep message from buf_write() |
7 | 1148 --no_wait_return; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1149 #if defined(FEAT_EVAL) |
7 | 1150 if (!aborting()) |
1151 #endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1152 (void)semsg(_(e_notcreate), itmp); // will call wait_return |
7 | 1153 goto filterend; |
1154 } | |
1155 if (curbuf != old_curbuf) | |
1156 goto filterend; | |
1157 | |
1158 if (!do_out) | |
1159 msg_putchar('\n'); | |
1160 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1161 // Create the shell command in allocated memory. |
7 | 1162 cmd_buf = make_filter_cmd(cmd, itmp, otmp); |
1163 if (cmd_buf == NULL) | |
1164 goto filterend; | |
1165 | |
1166 windgoto((int)Rows - 1, 0); | |
1167 cursor_on(); | |
1168 | |
1169 /* | |
1170 * When not redirecting the output the command can write anything to the | |
1171 * screen. If 'shellredir' is equal to ">", screen may be messed up by | |
1172 * stderr output of external command. Clear the screen later. | |
1173 * If do_in is FALSE, this could be something like ":r !cat", which may | |
1174 * also mess up the screen, clear it later. | |
1175 */ | |
1176 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in) | |
1177 redraw_later_clear(); | |
1178 | |
169 | 1179 if (do_out) |
1180 { | |
1181 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL) | |
1581 | 1182 { |
1183 vim_free(cmd_buf); | |
169 | 1184 goto error; |
1581 | 1185 } |
169 | 1186 redraw_curbuf_later(VALID); |
1187 } | |
1188 read_linecount = curbuf->b_ml.ml_line_count; | |
1189 | |
7 | 1190 /* |
1191 * When call_shell() fails wait_return() is called to give the user a | |
1192 * chance to read the error messages. Otherwise errors are ignored, so you | |
1193 * can see the error messages from the command that appear on stdout; use | |
1194 * 'u' to fix the text | |
1195 * Switch to cooked mode when not redirecting stdin, avoids that something | |
1196 * like ":r !cat" hangs. | |
1197 * Pass on the SHELL_DOOUT flag when the output is being redirected. | |
1198 */ | |
169 | 1199 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags)) |
7 | 1200 { |
1201 redraw_later_clear(); | |
1202 wait_return(FALSE); | |
1203 } | |
1204 vim_free(cmd_buf); | |
1205 | |
1206 did_check_timestamps = FALSE; | |
1207 need_check_timestamps = TRUE; | |
1208 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1209 // 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
|
1210 // 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
|
1211 // reading. |
7 | 1212 ui_breakcheck(); |
1213 got_int = FALSE; | |
1214 | |
1215 if (do_out) | |
1216 { | |
169 | 1217 if (otmp != NULL) |
7 | 1218 { |
169 | 1219 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
|
1220 eap, READ_FILTER) != OK) |
169 | 1221 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1222 #if defined(FEAT_EVAL) |
169 | 1223 if (!aborting()) |
1224 #endif | |
1225 { | |
1226 msg_putchar('\n'); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
1227 semsg(_(e_notread), otmp); |
169 | 1228 } |
1229 goto error; | |
7 | 1230 } |
169 | 1231 if (curbuf != old_curbuf) |
1232 goto filterend; | |
7 | 1233 } |
169 | 1234 |
1235 read_linecount = curbuf->b_ml.ml_line_count - read_linecount; | |
1236 | |
1237 if (shell_flags & SHELL_READ) | |
1238 { | |
1239 curbuf->b_op_start.lnum = line2 + 1; | |
1240 curbuf->b_op_end.lnum = curwin->w_cursor.lnum; | |
1241 appended_lines_mark(line2, read_linecount); | |
1242 } | |
7 | 1243 |
1244 if (do_in) | |
1245 { | |
1246 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL) | |
1247 { | |
1248 if (read_linecount >= linecount) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1249 // move all marks from old lines to new lines |
7 | 1250 mark_adjust(line1, line2, linecount, 0L); |
1251 else | |
1252 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1253 // 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
|
1254 // that are in deleted lines |
7 | 1255 mark_adjust(line1, line1 + read_linecount - 1, |
1256 linecount, 0L); | |
1257 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); | |
1258 } | |
1259 } | |
1260 | |
1261 /* | |
1262 * Put cursor on first filtered line for ":range!cmd". | |
1263 * Adjust '[ and '] (set by buf_write()). | |
1264 */ | |
1265 curwin->w_cursor.lnum = line1; | |
1266 del_lines(linecount, TRUE); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1267 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
|
1268 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
|
1269 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
|
1270 // for next write |
100 | 1271 #ifdef FEAT_FOLDING |
1272 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum); | |
1273 #endif | |
7 | 1274 } |
1275 else | |
1276 { | |
1277 /* | |
1278 * Put cursor on last new line for ":r !cmd". | |
1279 */ | |
169 | 1280 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1; |
7 | 1281 curwin->w_cursor.lnum = curbuf->b_op_end.lnum; |
1282 } | |
100 | 1283 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1284 beginline(BL_WHITE | BL_FIX); // cursor on first non-blank |
7 | 1285 --no_wait_return; |
1286 | |
1287 if (linecount > p_report) | |
1288 { | |
1289 if (do_in) | |
1290 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1291 vim_snprintf(msg_buf, sizeof(msg_buf), |
274 | 1292 _("%ld lines filtered"), (long)linecount); |
7 | 1293 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
|
1294 // 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
|
1295 set_keep_msg((char_u *)msg_buf, 0); |
7 | 1296 } |
1297 else | |
1298 msgmore((long)linecount); | |
1299 } | |
1300 } | |
1301 else | |
1302 { | |
1303 error: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1304 // put cursor back in same position for ":w !cmd" |
7 | 1305 curwin->w_cursor = cursor_save; |
1306 --no_wait_return; | |
1307 wait_return(FALSE); | |
1308 } | |
1309 | |
1310 filterend: | |
1311 | |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1312 cmdmod.lockmarks = save_lockmarks; |
7 | 1313 if (curbuf != old_curbuf) |
1314 { | |
1315 --no_wait_return; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
1316 emsg(_("E135: *Filter* Autocommands must not change current buffer")); |
7 | 1317 } |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1318 else if (cmdmod.lockmarks) |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1319 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1320 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
|
1321 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
|
1322 } |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
1323 |
7 | 1324 if (itmp != NULL) |
1325 mch_remove(itmp); | |
1326 if (otmp != NULL) | |
1327 mch_remove(otmp); | |
1328 vim_free(itmp); | |
1329 vim_free(otmp); | |
1330 } | |
1331 | |
1332 /* | |
1333 * Call a shell to execute a command. | |
1334 * When "cmd" is NULL start an interactive shell. | |
1335 */ | |
1336 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1337 do_shell( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1338 char_u *cmd, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1339 int flags) // may be SHELL_DOOUT when output is redirected |
7 | 1340 { |
1341 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
|
1342 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) |
7 | 1343 int save_nwr; |
1344 #endif | |
1345 #ifdef MSWIN | |
1346 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
|
1347 int keep_termcap = FALSE; |
7 | 1348 #endif |
1349 | |
1350 /* | |
1351 * Disallow shell commands for "rvim". | |
1352 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1353 * security reasons. | |
1354 */ | |
1355 if (check_restricted() || check_secure()) | |
1356 { | |
1357 msg_end(); | |
1358 return; | |
1359 } | |
1360 | |
1361 #ifdef MSWIN | |
1362 /* | |
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 * Check if ":!start" is used. This implies not stopping termcap mode. |
7 | 1364 */ |
1365 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
|
1366 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
|
1367 |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1368 # 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
|
1369 // 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
|
1370 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
|
1371 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
|
1372 # endif |
7 | 1373 #endif |
1374 | |
1375 /* | |
1376 * For autocommands we want to get the output on the current screen, to | |
1377 * avoid having to type return below. | |
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 msg_putchar('\r'); // put cursor at start of line |
7 | 1380 if (!autocmd_busy) |
1381 { | |
1382 #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
|
1383 if (!keep_termcap) |
7 | 1384 #endif |
1385 stoptermcap(); | |
1386 } | |
1387 #ifdef MSWIN | |
1388 if (!winstart) | |
1389 #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
|
1390 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
|
1391 |
5417a7f802ff
patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents:
15906
diff
changeset
|
1392 // warning message before calling the shell |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1393 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
|
1394 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
|
1395 if (bufIsChangedNotTerm(buf)) |
7 | 1396 { |
1397 #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
|
1398 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
|
1399 starttermcap(); // don't want a message box here |
7 | 1400 #endif |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1401 msg_puts(_("[No write since last change]\n")); |
7 | 1402 #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
|
1403 if (!keep_termcap) |
7 | 1404 stoptermcap(); |
1405 #endif | |
1406 break; | |
1407 } | |
1408 | |
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
|
1409 // 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
|
1410 // 1" command to the terminal. |
7 | 1411 if (!swapping_screen()) |
1412 windgoto(msg_row, msg_col); | |
1413 cursor_on(); | |
1414 (void)call_shell(cmd, SHELL_COOKED | flags); | |
1415 did_check_timestamps = FALSE; | |
1416 need_check_timestamps = TRUE; | |
1417 | |
1418 /* | |
1419 * put the message cursor at the end of the screen, avoids wait_return() | |
1420 * to overwrite the text that the external command showed | |
1421 */ | |
1422 if (!swapping_screen()) | |
1423 { | |
1424 msg_row = Rows - 1; | |
1425 msg_col = 0; | |
1426 } | |
1427 | |
1428 if (autocmd_busy) | |
1429 { | |
1430 if (msg_silent == 0) | |
1431 redraw_later_clear(); | |
1432 } | |
1433 else | |
1434 { | |
1435 /* | |
1436 * For ":sh" there is no need to call wait_return(), just redraw. | |
1437 * Also for the Win32 GUI (the output is in a console window). | |
1438 * Otherwise there is probably text on the screen that the user wants | |
1439 * to read before redrawing, so call wait_return(). | |
1440 */ | |
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
|
1441 #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
|
1442 # 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
|
1443 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
|
1444 # 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
|
1445 { |
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
|
1446 if (cmd == NULL |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1447 # 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
|
1448 || (keep_termcap && !need_wait_return) |
7 | 1449 # 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
|
1450 ) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1451 { |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1452 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
|
1453 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
|
1454 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
|
1455 } |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
1456 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
|
1457 { |
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 /* |
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 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
|
1460 * 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
|
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 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
|
1463 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
|
1464 no_wait_return = FALSE; |
7 | 1465 # 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
|
1466 wait_return(term_console ? -1 : msg_silent == 0); // see below |
7 | 1467 # 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
|
1468 wait_return(msg_silent == 0); |
7 | 1469 # 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
|
1470 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
|
1471 } |
7 | 1472 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1473 #endif // FEAT_GUI_MSWIN |
7 | 1474 |
1475 #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
|
1476 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
|
1477 #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
|
1478 starttermcap(); // start termcap if not done by wait_return() |
7 | 1479 |
1480 /* | |
1481 * In an Amiga window redrawing is caused by asking the window size. | |
1482 * If we got an interrupt this will not work. The chance that the | |
1483 * window size is wrong is very small, but we need to redraw the | |
1484 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY | |
1485 * but it saves an extra redraw. | |
1486 */ | |
1487 #ifdef AMIGA | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1488 if (skip_redraw) // ':' hit in wait_return() |
7 | 1489 { |
1490 if (msg_silent == 0) | |
1491 redraw_later_clear(); | |
1492 } | |
1493 else if (term_console) | |
1494 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1495 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); // get window size |
7 | 1496 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
|
1497 redraw_later_clear(); // if got_int is TRUE, redraw needed |
7 | 1498 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1499 must_redraw = 0; // no extra redraw needed |
7 | 1500 } |
1501 #endif | |
1502 } | |
1503 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1504 // display any error messages now |
7 | 1505 display_errors(); |
725 | 1506 |
1507 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf); | |
7 | 1508 } |
1509 | |
14913
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1510 #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
|
1511 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
|
1512 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
|
1513 { |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1514 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
|
1515 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
|
1516 |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1517 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
|
1518 { |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1519 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
|
1520 return p; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1521 if (*p == '"') |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1522 inquote = !inquote; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1523 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
|
1524 ++p; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1525 } |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1526 return NULL; |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1527 } |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1528 #endif |
d4777be849d0
patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1529 |
7 | 1530 /* |
1531 * Create a shell command from a command string, input redirection file and | |
1532 * output redirection file. | |
1533 * Returns an allocated string with the shell command, or NULL for failure. | |
1534 */ | |
1535 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1536 make_filter_cmd( |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1537 char_u *cmd, // command |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1538 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
|
1539 char_u *otmp) // NULL or name of output file |
7 | 1540 { |
1541 char_u *buf; | |
1542 long_u len; | |
5867 | 1543 |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1544 #if defined(UNIX) |
5881 | 1545 int is_fish_shell; |
5911 | 1546 char_u *shell_name = get_isolated_shell_name(); |
5881 | 1547 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1548 // Account for fish's different syntax for subshells |
5911 | 1549 is_fish_shell = (fnamecmp(shell_name, "fish") == 0); |
1550 vim_free(shell_name); | |
5867 | 1551 if (is_fish_shell) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1552 len = (long_u)STRLEN(cmd) + 13; // "begin; " + "; end" + NUL |
5867 | 1553 else |
1554 #endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1555 len = (long_u)STRLEN(cmd) + 3; // "()" + NUL |
7 | 1556 if (itmp != NULL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1557 len += (long_u)STRLEN(itmp) + 9; // " { < " + " } " |
7 | 1558 if (otmp != NULL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1559 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
|
1560 buf = alloc(len); |
7 | 1561 if (buf == NULL) |
1562 return NULL; | |
1563 | |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1564 #if defined(UNIX) |
7 | 1565 /* |
169 | 1566 * Put braces around the command (for concatenated commands) when |
1567 * redirecting input and/or output. | |
7 | 1568 */ |
169 | 1569 if (itmp != NULL || otmp != NULL) |
5867 | 1570 { |
1571 if (is_fish_shell) | |
1572 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd); | |
1573 else | |
1574 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); | |
1575 } | |
169 | 1576 else |
1577 STRCPY(buf, cmd); | |
7 | 1578 if (itmp != NULL) |
1579 { | |
1580 STRCAT(buf, " < "); | |
1581 STRCAT(buf, itmp); | |
1582 } | |
1583 #else | |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1584 // 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
|
1585 // 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
|
1586 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
|
1587 { |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1588 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
|
1589 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
|
1590 else |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1591 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
|
1592 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
|
1593 { |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1594 STRCAT(buf, " < "); |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1595 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
|
1596 } |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1597 } |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1598 else |
7 | 1599 { |
18221
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1600 STRCPY(buf, cmd); |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1601 if (itmp != NULL) |
7 | 1602 { |
18221
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1603 char_u *p; |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1604 |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1605 // 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
|
1606 // 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
|
1607 // 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
|
1608 if (*p_shq == NUL) |
7 | 1609 { |
18221
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1610 p = find_pipe(buf); |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1611 if (p != NULL) |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1612 *p = NUL; |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1613 } |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1614 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
|
1615 STRCAT(buf, itmp); |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1616 if (*p_shq == NUL) |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1617 { |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1618 p = find_pipe(cmd); |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1619 if (p != NULL) |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1620 { |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1621 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
|
1622 STRCAT(buf, p); |
d27060eba45f
patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents:
18195
diff
changeset
|
1623 } |
7 | 1624 } |
1625 } | |
1626 } | |
1627 #endif | |
1628 if (otmp != NULL) | |
1872 | 1629 append_redir(buf, (int)len, p_srr, otmp); |
7 | 1630 |
1631 return buf; | |
1632 } | |
1633 | |
1634 /* | |
1872 | 1635 * Append output redirection for file "fname" to the end of string buffer |
1636 * "buf[buflen]" | |
7 | 1637 * Works with the 'shellredir' and 'shellpipe' options. |
1638 * The caller should make sure that there is enough room: | |
1639 * STRLEN(opt) + STRLEN(fname) + 3 | |
1640 */ | |
1641 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1642 append_redir( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1643 char_u *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1644 int buflen, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1645 char_u *opt, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1646 char_u *fname) |
7 | 1647 { |
1648 char_u *p; | |
1872 | 1649 char_u *end; |
1650 | |
1651 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
|
1652 // find "%s" |
7 | 1653 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
|
1654 { |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1655 if (p[1] == 's') // found %s |
7 | 1656 break; |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1657 if (p[1] == '%') // skip %% |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1658 ++p; |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1659 } |
7 | 1660 if (p != NULL) |
1661 { | |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1662 #ifdef MSWIN |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1663 *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
|
1664 #endif |
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1665 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
1872 | 1666 (char *)opt, (char *)fname); |
7 | 1667 } |
1668 else | |
1872 | 1669 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
7 | 1670 #ifdef FEAT_QUICKFIX |
1671 " %s %s", | |
1672 #else | |
18195
a81f0c936112
patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1673 " %s%s", // " > %s" causes problems on Amiga |
7 | 1674 #endif |
1675 (char *)opt, (char *)fname); | |
1676 } | |
1677 | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
1678 /* |
7 | 1679 * Implementation of ":fixdel", also used by get_stty(). |
1680 * <BS> resulting <Del> | |
1681 * ^? ^H | |
1682 * not ^? ^? | |
1683 */ | |
1684 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1685 do_fixdel(exarg_T *eap UNUSED) |
7 | 1686 { |
1687 char_u *p; | |
1688 | |
1689 p = find_termcode((char_u *)"kb"); | |
1690 add_termcode((char_u *)"kD", p != NULL | |
1691 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); | |
1692 } | |
1693 | |
1694 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1695 print_line_no_prefix( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1696 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1697 int use_number, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1698 int list) |
7 | 1699 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1700 char numbuf[30]; |
7 | 1701 |
1702 if (curwin->w_p_nu || use_number) | |
1703 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
1704 vim_snprintf(numbuf, sizeof(numbuf), |
1872 | 1705 "%*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
|
1706 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); // Highlight line nrs |
7 | 1707 } |
169 | 1708 msg_prt_line(ml_get(lnum), list); |
7 | 1709 } |
1710 | |
1711 /* | |
1712 * Print a text line. Also in silent mode ("ex -s"). | |
1713 */ | |
1714 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1715 print_line(linenr_T lnum, int use_number, int list) |
7 | 1716 { |
1717 int save_silent = silent_mode; | |
1718 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1719 // apply :filter /pat/ |
9980
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
1720 if (message_filtered(ml_get(lnum))) |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
1721 return; |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
1722 |
169 | 1723 msg_start(); |
7 | 1724 silent_mode = FALSE; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1725 info_message = TRUE; // use mch_msg(), not mch_errmsg() |
169 | 1726 print_line_no_prefix(lnum, use_number, list); |
7 | 1727 if (save_silent) |
1728 { | |
1729 msg_putchar('\n'); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1730 cursor_on(); // msg_start() switches it off |
7 | 1731 out_flush(); |
1732 silent_mode = save_silent; | |
1798 | 1733 } |
1734 info_message = FALSE; | |
7 | 1735 } |
1736 | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1737 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1738 rename_buffer(char_u *new_fname) |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1739 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1740 char_u *fname, *sfname, *xfname; |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1741 buf_T *buf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1742 |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1743 buf = curbuf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1744 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
|
1745 // buffer changed, don't change name now |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1746 if (buf != curbuf) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1747 return FAIL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1748 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1749 if (aborting()) // autocmds may abort script processing |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1750 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1751 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1752 /* |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1753 * 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
|
1754 * 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
|
1755 * name, which will become the alternate file name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1756 * 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
|
1757 * name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1758 */ |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1759 fname = curbuf->b_ffname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1760 sfname = curbuf->b_sfname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1761 xfname = curbuf->b_fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1762 curbuf->b_ffname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1763 curbuf->b_sfname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1764 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL) |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1765 { |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1766 curbuf->b_ffname = fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1767 curbuf->b_sfname = sfname; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1768 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1769 } |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1770 curbuf->b_flags |= BF_NOTEDITED; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1771 if (xfname != NULL && *xfname != NUL) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1772 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1773 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1774 if (buf != NULL && !cmdmod.keepalt) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1775 curwin->w_alt_fnum = buf->b_fnum; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1776 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1777 vim_free(fname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1778 vim_free(sfname); |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
1779 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
|
1780 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1781 // 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
|
1782 DO_AUTOCHDIR; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1783 return OK; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1784 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1785 |
7 | 1786 /* |
1787 * ":file[!] [fname]". | |
1788 */ | |
1789 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1790 ex_file(exarg_T *eap) |
7 | 1791 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1792 // ":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
|
1793 // "0file name", etc. |
14 | 1794 if (eap->addr_count > 0 |
1795 && (*eap->arg != NUL | |
1796 || eap->line2 > 0 | |
1797 || eap->addr_count > 1)) | |
1798 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
1799 emsg(_(e_invarg)); |
14 | 1800 return; |
1801 } | |
1802 | |
1803 if (*eap->arg != NUL || eap->addr_count == 1) | |
7 | 1804 { |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
1805 if (rename_buffer(eap->arg) == FAIL) |
7 | 1806 return; |
14185
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1807 redraw_tabline = TRUE; |
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1808 } |
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1809 |
20468fb49f9b
patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1810 // 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
|
1811 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
|
1812 fileinfo(FALSE, FALSE, eap->forceit); |
7 | 1813 } |
1814 | |
1815 /* | |
1816 * ":update". | |
1817 */ | |
1818 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1819 ex_update(exarg_T *eap) |
7 | 1820 { |
1821 if (curbufIsChanged()) | |
1822 (void)do_write(eap); | |
1823 } | |
1824 | |
1825 /* | |
1826 * ":write" and ":saveas". | |
1827 */ | |
1828 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1829 ex_write(exarg_T *eap) |
7 | 1830 { |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1831 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
|
1832 { |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1833 // :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
|
1834 eap->line1 = 1; |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1835 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
|
1836 } |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
1837 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1838 if (eap->usefilter) // input lines to shell command |
7 | 1839 do_bang(1, eap, FALSE, TRUE, FALSE); |
1840 else | |
1841 (void)do_write(eap); | |
1842 } | |
1843 | |
1844 /* | |
1845 * write current buffer to file 'eap->arg' | |
1846 * if 'eap->append' is TRUE, append to the file | |
1847 * | |
1848 * if *eap->arg == NUL write to current file | |
1849 * | |
1850 * return FAIL for failure, OK otherwise | |
1851 */ | |
1852 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1853 do_write(exarg_T *eap) |
7 | 1854 { |
1855 int other; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1856 char_u *fname = NULL; // init to shut up gcc |
7 | 1857 char_u *ffname; |
1858 int retval = FAIL; | |
1859 char_u *free_fname = NULL; | |
1860 #ifdef FEAT_BROWSE | |
1861 char_u *browse_file = NULL; | |
1862 #endif | |
1863 buf_T *alt_buf = NULL; | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
1864 int name_was_missing; |
7 | 1865 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1866 if (not_writing()) // check 'write' option |
7 | 1867 return FAIL; |
1868 | |
1869 ffname = eap->arg; | |
1870 #ifdef FEAT_BROWSE | |
17186
278583ff5e44
patch 8.1.1592: may start file dialog while exiting
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1871 if (cmdmod.browse && !exiting) |
7 | 1872 { |
29 | 1873 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
7 | 1874 NULL, NULL, NULL, curbuf); |
1875 if (browse_file == NULL) | |
1876 goto theend; | |
1877 ffname = browse_file; | |
1878 } | |
1879 #endif | |
1880 if (*ffname == NUL) | |
1881 { | |
1882 if (eap->cmdidx == CMD_saveas) | |
1883 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
1884 emsg(_(e_argreq)); |
7 | 1885 goto theend; |
1886 } | |
1887 other = FALSE; | |
1888 } | |
1889 else | |
1890 { | |
1891 fname = ffname; | |
1892 free_fname = fix_fname(ffname); | |
1893 /* | |
1894 * When out-of-memory, keep unexpanded file name, because we MUST be | |
1895 * able to write the file in this situation. | |
1896 */ | |
1897 if (free_fname != NULL) | |
1898 ffname = free_fname; | |
1899 other = otherfile(ffname); | |
1900 } | |
1901 | |
1902 /* | |
1903 * If we have a new file, put its name in the list of alternate file names. | |
1904 */ | |
1905 if (other) | |
1906 { | |
1907 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL | |
1908 || eap->cmdidx == CMD_saveas) | |
1909 alt_buf = setaltfname(ffname, fname, (linenr_T)1); | |
1910 else | |
1911 alt_buf = buflist_findname(ffname); | |
1912 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) | |
1913 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1914 // 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
|
1915 // good idea. |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
1916 emsg(_(e_bufloaded)); |
7 | 1917 goto theend; |
1918 } | |
1919 } | |
1920 | |
1921 /* | |
1922 * Writing to the current file is not allowed in readonly mode | |
1923 * and a file name is required. | |
1924 * "nofile" and "nowrite" buffers cannot be written implicitly either. | |
1925 */ | |
1926 if (!other && ( | |
1927 #ifdef FEAT_QUICKFIX | |
1928 bt_dontwrite_msg(curbuf) || | |
1929 #endif | |
1930 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf))) | |
1931 goto theend; | |
1932 | |
1933 if (!other) | |
1934 { | |
1935 ffname = curbuf->b_ffname; | |
1936 fname = curbuf->b_fname; | |
1937 /* | |
1938 * Not writing the whole file is only allowed with '!'. | |
1939 */ | |
1940 if ( (eap->line1 != 1 | |
1941 || eap->line2 != curbuf->b_ml.ml_line_count) | |
1942 && !eap->forceit | |
1943 && !eap->append | |
1944 && !p_wa) | |
1945 { | |
1946 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
1947 if (p_confirm || cmdmod.confirm) | |
1948 { | |
1949 if (vim_dialog_yesno(VIM_QUESTION, NULL, | |
1950 (char_u *)_("Write partial file?"), 2) != VIM_YES) | |
1951 goto theend; | |
1952 eap->forceit = TRUE; | |
1953 } | |
1954 else | |
1955 #endif | |
1956 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
1957 emsg(_("E140: Use ! to write partial buffer")); |
7 | 1958 goto theend; |
1959 } | |
1960 } | |
1961 } | |
1962 | |
1963 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) | |
1964 { | |
1965 if (eap->cmdidx == CMD_saveas && alt_buf != NULL) | |
1966 { | |
1967 buf_T *was_curbuf = curbuf; | |
1968 | |
1969 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); | |
21 | 1970 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
|
1971 #ifdef FEAT_EVAL |
7 | 1972 if (curbuf != was_curbuf || aborting()) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1973 #else |
7 | 1974 if (curbuf != was_curbuf) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1975 #endif |
7 | 1976 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1977 // buffer changed, don't change name now |
7 | 1978 retval = FAIL; |
1979 goto theend; | |
1980 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
1981 // 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
|
1982 // 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
|
1983 // 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
|
1984 // 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
|
1985 // the file name. |
7 | 1986 fname = alt_buf->b_fname; |
1987 alt_buf->b_fname = curbuf->b_fname; | |
1988 curbuf->b_fname = fname; | |
1989 fname = alt_buf->b_ffname; | |
1990 alt_buf->b_ffname = curbuf->b_ffname; | |
1991 curbuf->b_ffname = fname; | |
1992 fname = alt_buf->b_sfname; | |
1993 alt_buf->b_sfname = curbuf->b_sfname; | |
1994 curbuf->b_sfname = fname; | |
1995 buf_name_changed(curbuf); | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1996 |
7 | 1997 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
21 | 1998 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
7 | 1999 if (!alt_buf->b_p_bl) |
2000 { | |
2001 alt_buf->b_p_bl = TRUE; | |
2002 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); | |
2003 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2004 #ifdef FEAT_EVAL |
7 | 2005 if (curbuf != was_curbuf || aborting()) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2006 #else |
7 | 2007 if (curbuf != was_curbuf) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2008 #endif |
7 | 2009 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2010 // buffer changed, don't write the file |
7 | 2011 retval = FAIL; |
2012 goto theend; | |
2013 } | |
634 | 2014 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2015 // If 'filetype' was empty try detecting it now. |
634 | 2016 if (*curbuf->b_p_ft == NUL) |
2017 { | |
819 | 2018 if (au_has_group((char_u *)"filetypedetect")) |
2019 (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
|
2020 TRUE, NULL); |
717 | 2021 do_modelines(0); |
634 | 2022 } |
2648 | 2023 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2024 // 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
|
2025 // 'autochdir' is set. |
2648 | 2026 fname = curbuf->b_sfname; |
7 | 2027 } |
2028 | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2029 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
|
2030 |
7 | 2031 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, |
2032 eap, eap->append, eap->forceit, TRUE, FALSE); | |
634 | 2033 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2034 // After ":saveas fname" reset 'readonly'. |
961 | 2035 if (eap->cmdidx == CMD_saveas) |
2036 { | |
2037 if (retval == OK) | |
1806 | 2038 { |
961 | 2039 curbuf->b_p_ro = FALSE; |
1806 | 2040 redraw_tabline = TRUE; |
2041 } | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2042 } |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2043 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2044 // 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
|
2045 // got changed or set. |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
2046 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
|
2047 DO_AUTOCHDIR; |
7 | 2048 } |
2049 | |
2050 theend: | |
2051 #ifdef FEAT_BROWSE | |
2052 vim_free(browse_file); | |
2053 #endif | |
2054 vim_free(free_fname); | |
2055 return retval; | |
2056 } | |
2057 | |
2058 /* | |
2059 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, | |
2060 * BF_NEW or BF_READERR, check for overwriting current file. | |
2061 * May set eap->forceit if a dialog says it's OK to overwrite. | |
2062 * Return OK if it's OK, FAIL if it is not. | |
2063 */ | |
3486 | 2064 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2065 check_overwrite( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2066 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2067 buf_T *buf, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2068 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
|
2069 // buf->ffname) |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2070 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
|
2071 int other) // writing under other name |
7 | 2072 { |
2073 /* | |
19693
9fbeb3bdf49e
patch 8.2.0403: when 'buftype' is "nofile" there is no overwrite check
Bram Moolenaar <Bram@vim.org>
parents:
19429
diff
changeset
|
2074 * 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
|
2075 * overwriting only allowed with '!'. |
7 | 2076 */ |
2077 if ( (other | |
2078 || (buf->b_flags & BF_NOTEDITED) | |
2079 || ((buf->b_flags & BF_NEW) | |
2080 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) | |
2081 || (buf->b_flags & BF_READERR)) | |
2082 && !p_wa | |
2083 && vim_fexists(ffname)) | |
2084 { | |
460 | 2085 if (!eap->forceit && !eap->append) |
7 | 2086 { |
460 | 2087 #ifdef UNIX |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2088 // with UNIX it is possible to open a directory |
460 | 2089 if (mch_isdir(ffname)) |
2090 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
2091 semsg(_(e_isadir2), ffname); |
460 | 2092 return FAIL; |
2093 } | |
7 | 2094 #endif |
2095 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
460 | 2096 if (p_confirm || cmdmod.confirm) |
2097 { | |
2770 | 2098 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2099 |
2100 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); | |
2101 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) | |
2102 return FAIL; | |
2103 eap->forceit = TRUE; | |
2104 } | |
2105 else | |
2106 #endif | |
2107 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
2108 emsg(_(e_exists)); |
7 | 2109 return FAIL; |
460 | 2110 } |
7 | 2111 } |
460 | 2112 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2113 // For ":w! filename" check that no swap file exists for "filename". |
460 | 2114 if (other && !emsg_silent) |
7 | 2115 { |
2770 | 2116 char_u *dir; |
460 | 2117 char_u *p; |
2118 int r; | |
2119 char_u *swapname; | |
2120 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2121 // 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
|
2122 // 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
|
2123 // will probably fail anyway. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2124 // 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
|
2125 // for the written file. |
460 | 2126 if (*p_dir == NUL) |
2770 | 2127 { |
2128 dir = alloc(5); | |
2129 if (dir == NULL) | |
2130 return FAIL; | |
460 | 2131 STRCPY(dir, "."); |
2770 | 2132 } |
460 | 2133 else |
2134 { | |
2770 | 2135 dir = alloc(MAXPATHL); |
2136 if (dir == NULL) | |
2137 return FAIL; | |
460 | 2138 p = p_dir; |
2139 copy_option_part(&p, dir, MAXPATHL, ","); | |
2140 } | |
2141 swapname = makeswapname(fname, ffname, curbuf, dir); | |
2770 | 2142 vim_free(dir); |
460 | 2143 r = vim_fexists(swapname); |
2144 if (r) | |
2145 { | |
2146 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2147 if (p_confirm || cmdmod.confirm) | |
2148 { | |
2770 | 2149 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2150 |
2151 dialog_msg(buff, | |
2152 _("Swap file \"%s\" exists, overwrite anyway?"), | |
2153 swapname); | |
2154 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) | |
2155 != VIM_YES) | |
819 | 2156 { |
2157 vim_free(swapname); | |
460 | 2158 return FAIL; |
819 | 2159 } |
460 | 2160 eap->forceit = TRUE; |
2161 } | |
2162 else | |
2163 #endif | |
2164 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
2165 semsg(_("E768: Swap file exists: %s (:silent! overrides)"), |
460 | 2166 swapname); |
819 | 2167 vim_free(swapname); |
460 | 2168 return FAIL; |
2169 } | |
2170 } | |
819 | 2171 vim_free(swapname); |
7 | 2172 } |
2173 } | |
2174 return OK; | |
2175 } | |
2176 | |
2177 /* | |
2178 * Handle ":wnext", ":wNext" and ":wprevious" commands. | |
2179 */ | |
2180 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2181 ex_wnext(exarg_T *eap) |
7 | 2182 { |
2183 int i; | |
2184 | |
2185 if (eap->cmd[1] == 'n') | |
2186 i = curwin->w_arg_idx + (int)eap->line2; | |
2187 else | |
2188 i = curwin->w_arg_idx - (int)eap->line2; | |
2189 eap->line1 = 1; | |
2190 eap->line2 = curbuf->b_ml.ml_line_count; | |
2191 if (do_write(eap) != FAIL) | |
2192 do_argfile(eap, i); | |
2193 } | |
2194 | |
2195 /* | |
2196 * ":wall", ":wqall" and ":xall": Write all changed files (and exit). | |
2197 */ | |
2198 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2199 do_wqall(exarg_T *eap) |
7 | 2200 { |
2201 buf_T *buf; | |
2202 int error = 0; | |
2203 int save_forceit = eap->forceit; | |
2204 | |
2205 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) | |
2206 exiting = TRUE; | |
2207 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2208 FOR_ALL_BUFFERS(buf) |
7 | 2209 { |
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
|
2210 #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
|
2211 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
|
2212 { |
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
|
2213 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
|
2214 ++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
|
2215 } |
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
|
2216 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
|
2217 #endif |
12648
cdfd6eb8bb80
patch 8.0.1202: :wall gives an errof for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
2218 if (bufIsChanged(buf) && !bt_dontwrite(buf)) |
7 | 2219 { |
2220 /* | |
2221 * Check if there is a reason the buffer cannot be written: | |
2222 * 1. if the 'write' option is set | |
2223 * 2. if there is no file name (even after browsing) | |
2224 * 3. if the 'readonly' is set (even after a dialog) | |
2225 * 4. if overwriting is allowed (even after a dialog) | |
2226 */ | |
2227 if (not_writing()) | |
2228 { | |
2229 ++error; | |
2230 break; | |
2231 } | |
2232 #ifdef FEAT_BROWSE | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2233 // ":browse wall": ask for file name if there isn't one |
7 | 2234 if (buf->b_ffname == NULL && cmdmod.browse) |
2235 browse_save_fname(buf); | |
2236 #endif | |
2237 if (buf->b_ffname == NULL) | |
2238 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
2239 semsg(_("E141: No file name for buffer %ld"), (long)buf->b_fnum); |
7 | 2240 ++error; |
2241 } | |
2242 else if (check_readonly(&eap->forceit, buf) | |
2243 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, | |
2244 FALSE) == FAIL) | |
2245 { | |
2246 ++error; | |
2247 } | |
2248 else | |
2249 { | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2250 bufref_T bufref; |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2251 |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2252 set_bufref(&bufref, buf); |
7 | 2253 if (buf_write_all(buf, eap->forceit) == FAIL) |
2254 ++error; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2255 // 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
|
2256 if (!bufref_valid(&bufref)) |
7 | 2257 buf = firstbuf; |
2258 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2259 eap->forceit = save_forceit; // check_overwrite() may set it |
7 | 2260 } |
2261 } | |
2262 if (exiting) | |
2263 { | |
2264 if (!error) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2265 getout(0); // exit Vim |
7 | 2266 not_exiting(); |
2267 } | |
2268 } | |
2269 | |
2270 /* | |
2271 * 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
|
2272 * Return TRUE and give a message when it's not set. |
7 | 2273 */ |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17767
diff
changeset
|
2274 static int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2275 not_writing(void) |
7 | 2276 { |
2277 if (p_write) | |
2278 return FALSE; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
2279 emsg(_("E142: File not written: Writing is disabled by 'write' option")); |
7 | 2280 return TRUE; |
2281 } | |
2282 | |
2283 /* | |
1303 | 2284 * Check if a buffer is read-only (either 'readonly' option is set or file is |
2285 * read-only). Ask for overruling in a dialog. Return TRUE and give an error | |
2286 * message when the buffer is readonly. | |
7 | 2287 */ |
2288 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2289 check_readonly(int *forceit, buf_T *buf) |
7 | 2290 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9377
diff
changeset
|
2291 stat_T st; |
1303 | 2292 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2293 // 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
|
2294 // 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
|
2295 // 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
|
2296 // important for device checks but not here. |
1303 | 2297 if (!*forceit && (buf->b_p_ro |
2298 || (mch_stat((char *)buf->b_ffname, &st) >= 0 | |
2299 && check_file_readonly(buf->b_ffname, 0777)))) | |
7 | 2300 { |
2301 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2302 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL) | |
2303 { | |
2770 | 2304 char_u buff[DIALOG_MSG_SIZE]; |
7 | 2305 |
1303 | 2306 if (buf->b_p_ro) |
2307 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), | |
2308 buf->b_fname); | |
2309 else | |
2310 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"), | |
7 | 2311 buf->b_fname); |
2312 | |
2313 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) | |
2314 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2315 // Set forceit, to force the writing of a readonly file |
7 | 2316 *forceit = TRUE; |
2317 return FALSE; | |
2318 } | |
2319 else | |
2320 return TRUE; | |
2321 } | |
2322 else | |
2323 #endif | |
1303 | 2324 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
|
2325 emsg(_(e_readonly)); |
1303 | 2326 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
2327 semsg(_("E505: \"%s\" is read-only (add ! to override)"), |
1303 | 2328 buf->b_fname); |
7 | 2329 return TRUE; |
2330 } | |
1303 | 2331 |
7 | 2332 return FALSE; |
2333 } | |
2334 | |
2335 /* | |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2336 * 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
|
2337 * "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
|
2338 * "lnum" is the line number for the cursor in the new file (if non-zero). |
7 | 2339 * |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2340 * Return: |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2341 * GETFILE_ERROR for "normal" error, |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2342 * 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
|
2343 * GETFILE_SAME_FILE for success |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2344 * GETFILE_OPEN_OTHER for successfully opening another file. |
7 | 2345 */ |
2346 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2347 getfile( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2348 int fnum, |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2349 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
|
2350 char_u *sfname_arg, |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2351 int setpm, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2352 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2353 int forceit) |
7 | 2354 { |
14917
6f2ce3b311de
patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents:
14913
diff
changeset
|
2355 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
|
2356 char_u *sfname = sfname_arg; |
7 | 2357 int other; |
2358 int retval; | |
2359 char_u *free_me = NULL; | |
2360 | |
634 | 2361 if (text_locked()) |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2362 return GETFILE_ERROR; |
819 | 2363 if (curbuf_locked()) |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
2364 return GETFILE_ERROR; |
7 | 2365 |
2366 if (fnum == 0) | |
2367 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2368 // make ffname full path, set sfname |
7 | 2369 fname_expand(curbuf, &ffname, &sfname); |
2370 other = otherfile(ffname); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2371 free_me = ffname; // has been allocated, free() later |
7 | 2372 } |
2373 else | |
2374 other = (fnum != curbuf->b_fnum); | |
2375 | |
2376 if (other) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2377 ++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
|
2378 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf) |
7 | 2379 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) |
2380 { | |
2381 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2382 if (p_confirm && p_write) | |
2383 dialog_changed(curbuf, FALSE); | |
2384 if (curbufIsChanged()) | |
2385 #endif | |
2386 { | |
2387 if (other) | |
2388 --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
|
2389 no_write_message(); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2390 retval = GETFILE_NOT_WRITTEN; // file has been changed |
7 | 2391 goto theend; |
2392 } | |
2393 } | |
2394 if (other) | |
2395 --no_wait_return; | |
2396 if (setpm) | |
2397 setpcmark(); | |
2398 if (!other) | |
2399 { | |
2400 if (lnum != 0) | |
2401 curwin->w_cursor.lnum = lnum; | |
2402 check_cursor_lnum(); | |
2403 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
|
2404 retval = GETFILE_SAME_FILE; // it's in the same file |
7 | 2405 } |
2406 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
|
2407 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0), |
1743 | 2408 curwin) == OK) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2409 retval = GETFILE_OPEN_OTHER; // opened another file |
7 | 2410 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2411 retval = GETFILE_ERROR; // error encountered |
7 | 2412 |
2413 theend: | |
2414 vim_free(free_me); | |
2415 return retval; | |
2416 } | |
2417 | |
2418 /* | |
2419 * start editing a new file | |
2420 * | |
2421 * fnum: file number; if zero use ffname/sfname | |
2422 * ffname: the file name | |
2423 * - full path if sfname used, | |
2424 * - any file name if sfname is NULL | |
2425 * - empty string to re-edit with the same file name (but may be | |
2426 * in a different directory) | |
2427 * - NULL to start an empty buffer | |
2428 * sfname: the short file name (or NULL) | |
2429 * eap: contains the command to be executed after loading the file and | |
2430 * forced 'ff' and 'fenc' | |
2431 * newlnum: if > 0: put cursor on this line number (if possible) | |
2432 * if ECMD_LASTL: use last position in loaded file | |
2433 * if ECMD_LAST: use last position in all files | |
2434 * if ECMD_ONE: use first line | |
2435 * flags: | |
2436 * ECMD_HIDE: if TRUE don't free the current buffer | |
2437 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file | |
2438 * ECMD_OLDBUF: use existing buffer if it exists | |
2439 * ECMD_FORCEIT: ! used for Ex command | |
2440 * ECMD_ADDBUF: don't edit, just add to buffer list | |
1743 | 2441 * 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
|
2442 * 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
|
2443 * of the previous buffer for "oldwin" is stored. |
7 | 2444 * |
2445 * return FAIL for failure, OK otherwise | |
2446 */ | |
2447 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2448 do_ecmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2449 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2450 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2451 char_u *sfname, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2452 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
|
2453 linenr_T newlnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2454 int flags, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2455 win_T *oldwin) |
7 | 2456 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2457 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
|
2458 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
|
2459 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
|
2460 // into the buffer unexpectedly |
7 | 2461 char_u *new_name = NULL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2462 #if defined(FEAT_EVAL) |
716 | 2463 int did_set_swapcommand = FALSE; |
7 | 2464 #endif |
2465 buf_T *buf; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2466 bufref_T bufref; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2467 bufref_T old_curbuf; |
7 | 2468 char_u *free_fname = NULL; |
2469 #ifdef FEAT_BROWSE | |
2470 char_u *browse_file = NULL; | |
2471 #endif | |
2472 int retval = FAIL; | |
2473 long n; | |
6702 | 2474 pos_T orig_pos; |
7 | 2475 linenr_T topline = 0; |
2476 int newcol = -1; | |
2477 int solcol = -1; | |
2478 pos_T *pos; | |
2479 char_u *command = NULL; | |
1185 | 2480 #ifdef FEAT_SPELL |
2481 int did_get_winopts = FALSE; | |
2482 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2483 int readfile_flags = 0; |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2484 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
|
2485 long *so_ptr = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so; |
7 | 2486 |
20384
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2487 #ifdef FEAT_PROP_POPUP |
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2488 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
|
2489 return FAIL; |
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2490 #endif |
42ab4d40e78f
patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents:
20380
diff
changeset
|
2491 |
7 | 2492 if (eap != NULL) |
2493 command = eap->do_ecmd_cmd; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2494 set_bufref(&old_curbuf, curbuf); |
7 | 2495 |
2496 if (fnum != 0) | |
2497 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2498 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
|
2499 return OK; // nothing to do |
7 | 2500 other_file = TRUE; |
2501 } | |
2502 else | |
2503 { | |
2504 #ifdef FEAT_BROWSE | |
17190
94cc7da54754
patch 8.1.1594: may still start file dialog while exiting
Bram Moolenaar <Bram@vim.org>
parents:
17186
diff
changeset
|
2505 if (cmdmod.browse && !exiting) |
7 | 2506 { |
462 | 2507 if ( |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2508 # ifdef FEAT_GUI |
462 | 2509 !gui.in_use && |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2510 # endif |
462 | 2511 au_has_group((char_u *)"FileExplorer")) |
2512 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2513 // 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
|
2514 // Edit the directory. |
462 | 2515 if (ffname == NULL || !mch_isdir(ffname)) |
2516 ffname = (char_u *)"."; | |
2517 } | |
2518 else | |
2519 { | |
2520 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, | |
7 | 2521 NULL, NULL, NULL, curbuf); |
462 | 2522 if (browse_file == NULL) |
2523 goto theend; | |
2524 ffname = browse_file; | |
2525 } | |
7 | 2526 } |
2527 #endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2528 // if no short name given, use ffname for short name |
7 | 2529 if (sfname == NULL) |
2530 sfname = ffname; | |
2531 #ifdef USE_FNAME_CASE | |
15794
0d8291665b59
patch 8.1.0904: USE_LONG_FNAME never defined
Bram Moolenaar <Bram@vim.org>
parents:
15760
diff
changeset
|
2532 if (sfname != NULL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2533 fname_case(sfname, 0); // set correct case for sfname |
7 | 2534 #endif |
2535 | |
2536 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL)) | |
2537 goto theend; | |
2538 | |
2539 if (ffname == NULL) | |
2540 other_file = TRUE; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2541 // there is no file name |
7 | 2542 else if (*ffname == NUL && curbuf->b_ffname == NULL) |
2543 other_file = FALSE; | |
2544 else | |
2545 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2546 if (*ffname == NUL) // re-edit with same file name |
7 | 2547 { |
2548 ffname = curbuf->b_ffname; | |
2549 sfname = curbuf->b_fname; | |
2550 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2551 free_fname = fix_fname(ffname); // may expand to full path name |
7 | 2552 if (free_fname != NULL) |
2553 ffname = free_fname; | |
2554 other_file = otherfile(ffname); | |
2555 } | |
2556 } | |
2557 | |
2558 /* | |
2559 * if the file was changed we may not be allowed to abandon it | |
2560 * - if we are going to re-edit the same file | |
2561 * - or if we are the only window on this file and if ECMD_HIDE is FALSE | |
2562 */ | |
2563 if ( ((!other_file && !(flags & ECMD_OLDBUF)) | |
2564 || (curbuf->b_nwindows == 1 | |
2565 && !(flags & (ECMD_HIDE | ECMD_ADDBUF)))) | |
5464 | 2566 && check_changed(curbuf, (p_awa ? CCGD_AW : 0) |
2567 | (other_file ? 0 : CCGD_MULTWIN) | |
2568 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0) | |
2569 | (eap == NULL ? 0 : CCGD_EXCMD))) | |
7 | 2570 { |
2571 if (fnum == 0 && other_file && ffname != NULL) | |
2572 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); | |
2573 goto theend; | |
2574 } | |
2575 | |
2576 /* | |
2577 * End Visual mode before switching to another buffer, so the text can be | |
2578 * copied into the GUI selection buffer. | |
2579 */ | |
2580 reset_VIsual(); | |
2581 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2582 #if defined(FEAT_EVAL) |
716 | 2583 if ((command != NULL || newlnum > (linenr_T)0) |
2584 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) | |
2585 { | |
2586 int len; | |
2587 char_u *p; | |
2588 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2589 // Set v:swapcommand for the SwapExists autocommands. |
716 | 2590 if (command != NULL) |
835 | 2591 len = (int)STRLEN(command) + 3; |
716 | 2592 else |
2593 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
|
2594 p = alloc(len); |
716 | 2595 if (p != NULL) |
2596 { | |
2597 if (command != NULL) | |
2598 vim_snprintf((char *)p, len, ":%s\r", command); | |
2599 else | |
2600 vim_snprintf((char *)p, len, "%ldG", (long)newlnum); | |
2601 set_vim_var_string(VV_SWAPCOMMAND, p, -1); | |
2602 did_set_swapcommand = TRUE; | |
2603 vim_free(p); | |
2604 } | |
2605 } | |
2606 #endif | |
2607 | |
7 | 2608 /* |
2609 * If we are starting to edit another file, open a (new) buffer. | |
2610 * Otherwise we re-use the current buffer. | |
2611 */ | |
2612 if (other_file) | |
2613 { | |
2614 if (!(flags & ECMD_ADDBUF)) | |
2615 { | |
22 | 2616 if (!cmdmod.keepalt) |
2617 curwin->w_alt_fnum = curbuf->b_fnum; | |
1743 | 2618 if (oldwin != NULL) |
2619 buflist_altfpos(oldwin); | |
7 | 2620 } |
2621 | |
2622 if (fnum) | |
2623 buf = buflist_findnr(fnum); | |
2624 else | |
2625 { | |
2626 if (flags & ECMD_ADDBUF) | |
2627 { | |
2628 linenr_T tlnum = 1L; | |
2629 | |
2630 if (command != NULL) | |
2631 { | |
2632 tlnum = atol((char *)command); | |
2633 if (tlnum <= 0) | |
2634 tlnum = 1L; | |
2635 } | |
2636 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED); | |
2637 goto theend; | |
2638 } | |
2639 buf = buflist_new(ffname, sfname, 0L, | |
2640 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
|
2641 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2642 // autocommands may change curwin and curbuf |
5816 | 2643 if (oldwin != NULL) |
2644 oldwin = curwin; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2645 set_bufref(&old_curbuf, curbuf); |
7 | 2646 } |
2647 if (buf == NULL) | |
2648 goto theend; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2649 if (buf->b_ml.ml_mfp == NULL) // no memfile yet |
7 | 2650 { |
2651 oldbuf = FALSE; | |
2652 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2653 else // existing memfile |
7 | 2654 { |
2655 oldbuf = TRUE; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2656 set_bufref(&bufref, buf); |
7 | 2657 (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
|
2658 // 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
|
2659 // current buffer. |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2660 if (!bufref_valid(&bufref) || curbuf != old_curbuf.br_buf) |
7 | 2661 goto theend; |
2662 #ifdef FEAT_EVAL | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2663 if (aborting()) // autocmds may abort script processing |
7 | 2664 goto theend; |
2665 #endif | |
2666 } | |
2667 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2668 // 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
|
2669 // for explicitly |
7 | 2670 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) |
2671 { | |
2672 pos = buflist_findfpos(buf); | |
2673 newlnum = pos->lnum; | |
2674 solcol = pos->col; | |
2675 } | |
2676 | |
2677 /* | |
2678 * Make the (new) buffer the one used by the current window. | |
2679 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. | |
2680 * If the current buffer was empty and has no file name, curbuf | |
6639 | 2681 * is returned by buflist_new(), nothing to do here. |
7 | 2682 */ |
2683 if (buf != curbuf) | |
2684 { | |
2685 /* | |
2686 * Be careful: The autocommands may delete any buffer and change | |
2687 * the current buffer. | |
2688 * - If the buffer we are going to edit is deleted, give up. | |
2689 * - If the current buffer is deleted, prefer to load the new | |
2690 * buffer when loading a buffer is required. This avoids | |
2691 * loading another buffer which then must be closed again. | |
2692 * - If we ended up in the new buffer already, need to skip a few | |
2693 * things, set auto_buf. | |
2694 */ | |
2695 if (buf->b_fname != NULL) | |
2696 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
|
2697 set_bufref(&au_new_curbuf, buf); |
7 | 2698 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
|
2699 if (!bufref_valid(&au_new_curbuf)) |
7 | 2700 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2701 // new buffer has been deleted |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2702 delbuf_msg(new_name); // frees new_name |
7 | 2703 goto theend; |
2704 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2705 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2706 if (aborting()) // autocmds may abort script processing |
7 | 2707 { |
2708 vim_free(new_name); | |
2709 goto theend; | |
2710 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2711 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2712 if (buf == curbuf) // already in new buffer |
7 | 2713 auto_buf = TRUE; |
2714 else | |
2715 { | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2716 win_T *the_curwin = curwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2717 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2718 // 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
|
2719 // 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
|
2720 the_curwin->w_closing = TRUE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2721 ++buf->b_locked; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2722 |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2723 if (curbuf == old_curbuf.br_buf) |
7 | 2724 buf_copy_options(buf, BCO_ENTER); |
2725 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2726 // 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
|
2727 // oldwin->w_buffer to NULL. |
825 | 2728 u_sync(FALSE); |
1743 | 2729 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
|
2730 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE, FALSE); |
7 | 2731 |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2732 the_curwin->w_closing = FALSE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2733 --buf->b_locked; |
3242 | 2734 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2735 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2736 // autocmds may abort script processing |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2737 if (aborting() && curwin->w_buffer != NULL) |
7 | 2738 { |
2739 vim_free(new_name); | |
2740 goto theend; | |
2741 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2742 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2743 // Be careful again, like above. |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2744 if (!bufref_valid(&au_new_curbuf)) |
7 | 2745 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2746 // new buffer has been deleted |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2747 delbuf_msg(new_name); // frees new_name |
7 | 2748 goto theend; |
2749 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2750 if (buf == curbuf) // already in new buffer |
7 | 2751 auto_buf = TRUE; |
2752 else | |
2753 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2754 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2755 /* |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2756 * <VN> We could instead free the synblock |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2757 * and re-attach to buffer, perhaps. |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2758 */ |
11649
0f7888a5ba68
patch 8.0.0707: freeing wrong memory with certain autocommands
Christian Brabandt <cb@256bit.org>
parents:
11589
diff
changeset
|
2759 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
|
2760 || curwin->w_s == &(curwin->w_buffer->b_s)) |
3480 | 2761 curwin->w_s = &(buf->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
2762 #endif |
7 | 2763 curwin->w_buffer = buf; |
2764 curbuf = buf; | |
2765 ++curbuf->b_nwindows; | |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2766 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2767 // Set 'fileformat', 'binary' and 'fenc' when forced. |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2768 if (!oldbuf && eap != NULL) |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2769 { |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2770 set_file_options(TRUE, eap); |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2771 set_forced_fenc(eap); |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2772 } |
7 | 2773 } |
2774 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2775 // 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
|
2776 // 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
|
2777 // 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
|
2778 // values. Also restores old folding stuff. |
1289 | 2779 get_winopts(curbuf); |
1185 | 2780 #ifdef FEAT_SPELL |
2781 did_get_winopts = TRUE; | |
2782 #endif | |
7 | 2783 } |
2784 vim_free(new_name); | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2785 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
|
2786 au_new_curbuf.br_buf_free_count = 0; |
7 | 2787 } |
2788 | |
2789 curwin->w_pcmark.lnum = 1; | |
2790 curwin->w_pcmark.col = 0; | |
2791 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2792 else // !other_file |
7 | 2793 { |
13553
04019fc3de93
patch 8.0.1650: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2794 if ((flags & ECMD_ADDBUF) || check_fname() == FAIL) |
7 | 2795 goto theend; |
6531 | 2796 |
7 | 2797 oldbuf = (flags & ECMD_OLDBUF); |
2798 } | |
2799 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2800 // 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
|
2801 // 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
|
2802 ++RedrawingDisabled; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2803 did_inc_redrawing_disabled = TRUE; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2804 |
6365 | 2805 buf = curbuf; |
7 | 2806 if ((flags & ECMD_SET_HELP) || keep_help_flag) |
2807 { | |
6365 | 2808 prepare_help_buffer(); |
7 | 2809 } |
2810 else | |
2811 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2812 // 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
|
2813 // using CTRL-O to go back to a help file. |
7 | 2814 if (!curbuf->b_help) |
2815 set_buflisted(TRUE); | |
2816 } | |
2817 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2818 // 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
|
2819 // editing the file. |
7 | 2820 if (buf != curbuf) |
2821 goto theend; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2822 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2823 if (aborting()) // autocmds may abort script processing |
7 | 2824 goto theend; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2825 #endif |
7 | 2826 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2827 // 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
|
2828 // 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
|
2829 // highlighting to work in the other file. |
7 | 2830 did_filetype = FALSE; |
2831 | |
2832 /* | |
2833 * other_file oldbuf | |
2834 * FALSE FALSE re-edit same file, buffer is re-used | |
2835 * FALSE TRUE re-edit same file, nothing changes | |
2836 * TRUE FALSE start editing new file, new buffer | |
2837 * TRUE TRUE start editing in existing buffer (nothing to do) | |
2838 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2839 if (!other_file && !oldbuf) // re-use the buffer |
7 | 2840 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2841 set_last_cursor(curwin); // may set b_last_cursor |
7 | 2842 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) |
2843 { | |
2844 newlnum = curwin->w_cursor.lnum; | |
2845 solcol = curwin->w_cursor.col; | |
2846 } | |
2847 buf = curbuf; | |
2848 if (buf->b_fname != NULL) | |
2849 new_name = vim_strsave(buf->b_fname); | |
2850 else | |
2851 new_name = NULL; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
2852 set_bufref(&bufref, buf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2853 |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2854 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur) |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2855 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2856 // Save all the text, so that the reload can be undone. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2857 // 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
|
2858 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
|
2859 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
|
2860 == FAIL) |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
2861 { |
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
2862 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
|
2863 goto theend; |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
2864 } |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2865 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
|
2866 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
|
2867 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2868 // 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
|
2869 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
|
2870 } |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2871 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2872 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
|
2873 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2874 // 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
|
2875 // 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
|
2876 if (!bufref_valid(&bufref)) |
7 | 2877 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2878 delbuf_msg(new_name); // frees new_name |
7 | 2879 goto theend; |
2880 } | |
2881 vim_free(new_name); | |
2882 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2883 // 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
|
2884 // 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
|
2885 // the autocommands changed the buffer... |
7 | 2886 if (buf != curbuf) |
2887 goto theend; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2888 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2889 if (aborting()) // autocmds may abort script processing |
7 | 2890 goto theend; |
2891 #endif | |
2892 buf_clear_file(curbuf); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2893 curbuf->b_op_start.lnum = 0; // clear '[ and '] marks |
7 | 2894 curbuf->b_op_end.lnum = 0; |
2895 } | |
2896 | |
2897 /* | |
2898 * If we get here we are sure to start editing | |
2899 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2900 // Assume success now |
7 | 2901 retval = OK; |
2902 | |
2903 /* | |
2904 * Check if we are editing the w_arg_idx file in the argument list. | |
2905 */ | |
2906 check_arg_idx(curwin); | |
2907 | |
2908 if (!auto_buf) | |
2909 { | |
2910 /* | |
2911 * Set cursor and init window before reading the file and executing | |
2912 * autocommands. This allows for the autocommands to position the | |
2913 * cursor. | |
2914 */ | |
677 | 2915 curwin_init(); |
7 | 2916 |
2917 #ifdef FEAT_FOLDING | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2918 // 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
|
2919 // automatic folding for all windows where it's used. |
1370 | 2920 { |
2921 win_T *win; | |
2922 tabpage_T *tp; | |
2923 | |
2924 FOR_ALL_TAB_WINDOWS(tp, win) | |
2925 if (win->w_buffer == curbuf) | |
2926 foldUpdateAll(win); | |
2927 } | |
7 | 2928 #endif |
2929 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2930 // 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
|
2931 DO_AUTOCHDIR; |
961 | 2932 |
7 | 2933 /* |
2934 * Careful: open_buffer() and apply_autocmds() may change the current | |
2935 * buffer and window. | |
2936 */ | |
6702 | 2937 orig_pos = curwin->w_cursor; |
7 | 2938 topline = curwin->w_topline; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2939 if (!oldbuf) // need to read the file |
7 | 2940 { |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
2941 #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
|
2942 // 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
|
2943 // the buffer. |
5278e5a2a4e3
patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents:
17584
diff
changeset
|
2944 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
|
2945 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
|
2946 #endif |
7 | 2947 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
|
2948 curbuf->b_flags |= BF_CHECK_RO; // set/reset 'ro' flag |
7 | 2949 |
2950 /* | |
2951 * Open the buffer and read the file. | |
2952 */ | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2953 #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
|
2954 if (should_abort(open_buffer(FALSE, eap, readfile_flags))) |
7 | 2955 retval = FAIL; |
2956 #else | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2957 (void)open_buffer(FALSE, eap, readfile_flags); |
7 | 2958 #endif |
2959 | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
2960 #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
|
2961 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
|
2962 #endif |
7 | 2963 if (swap_exists_action == SEA_QUIT) |
2964 retval = FAIL; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
2965 handle_swap_exists(&old_curbuf); |
7 | 2966 } |
2967 else | |
2968 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2969 // 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
|
2970 // 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
|
2971 // changed by the user. |
717 | 2972 do_modelines(OPT_WINONLY); |
23 | 2973 |
7 | 2974 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, |
2975 &retval); | |
2976 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, | |
2977 &retval); | |
2978 } | |
2979 check_arg_idx(curwin); | |
2980 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2981 // 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
|
2982 // 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
|
2983 // 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
|
2984 if (!EQUAL_POS(curwin->w_cursor, orig_pos)) |
7 | 2985 { |
14033
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
2986 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
|
2987 |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
2988 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
|
2989 || 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
|
2990 { |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
2991 newlnum = curwin->w_cursor.lnum; |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
2992 newcol = curwin->w_cursor.col; |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
2993 } |
7 | 2994 } |
2995 if (curwin->w_topline == topline) | |
2996 topline = 0; | |
2997 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
2998 // Even when cursor didn't move we need to recompute topline. |
7 | 2999 changed_line_abv_curs(); |
3000 | |
3001 #ifdef FEAT_TITLE | |
3002 maketitle(); | |
3003 #endif | |
18767
068337e86133
patch 8.1.2373: cannot build with +popupwin but without +quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3004 #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
|
3005 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
|
3006 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
|
3007 #endif |
7 | 3008 } |
3009 | |
3010 #ifdef FEAT_DIFF | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3011 // 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
|
3012 // 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
|
3013 // have removed it as a diff buffer. |
673 | 3014 if (curwin->w_p_diff) |
3015 { | |
3016 diff_buf_add(curbuf); | |
3017 diff_invalidate(curbuf); | |
3018 } | |
7 | 3019 #endif |
3020 | |
1185 | 3021 #ifdef FEAT_SPELL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3022 // 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
|
3023 // 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
|
3024 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
|
3025 (void)did_set_spelllang(curwin); |
1185 | 3026 #endif |
3027 | |
7 | 3028 if (command == NULL) |
3029 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3030 if (newcol >= 0) // position set by autocommands |
7 | 3031 { |
3032 curwin->w_cursor.lnum = newlnum; | |
3033 curwin->w_cursor.col = newcol; | |
3034 check_cursor(); | |
3035 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3036 else if (newlnum > 0) // line number from caller or old position |
7 | 3037 { |
3038 curwin->w_cursor.lnum = newlnum; | |
3039 check_cursor_lnum(); | |
3040 if (solcol >= 0 && !p_sol) | |
3041 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3042 // 'sol' is off: Use last known column. |
7 | 3043 curwin->w_cursor.col = solcol; |
3044 check_cursor_col(); | |
3045 curwin->w_cursor.coladd = 0; | |
3046 curwin->w_set_curswant = TRUE; | |
3047 } | |
3048 else | |
3049 beginline(BL_SOL | BL_FIX); | |
3050 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3051 else // no line number, go to last line in Ex mode |
7 | 3052 { |
3053 if (exmode_active) | |
3054 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
3055 beginline(BL_WHITE | BL_FIX); | |
3056 } | |
3057 } | |
3058 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3059 // Check if cursors in other windows on the same buffer are still valid |
7 | 3060 check_lnums(FALSE); |
3061 | |
3062 /* | |
3063 * Did not read the file, need to show some info about the file. | |
3064 * Do this after setting the cursor. | |
3065 */ | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3066 if (oldbuf && !auto_buf) |
7 | 3067 { |
3068 int msg_scroll_save = msg_scroll; | |
3069 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3070 // 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
|
3071 // message. |
7 | 3072 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) |
3073 msg_scroll = FALSE; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3074 if (!msg_scroll) // wait a bit when overwriting an error msg |
7 | 3075 check_for_delay(FALSE); |
3076 msg_start(); | |
3077 msg_scroll = msg_scroll_save; | |
3078 msg_scrolled_ign = TRUE; | |
3079 | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
3080 if (!shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
3081 fileinfo(FALSE, TRUE, FALSE); |
7 | 3082 |
3083 msg_scrolled_ign = FALSE; | |
3084 } | |
3085 | |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3086 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3087 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3088 #endif |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
3089 |
7 | 3090 if (command != NULL) |
3091 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); | |
3092 | |
3093 #ifdef FEAT_KEYMAP | |
3094 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 3095 (void)keymap_init(); |
7 | 3096 #endif |
3097 | |
3098 --RedrawingDisabled; | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3099 did_inc_redrawing_disabled = FALSE; |
7 | 3100 if (!skip_redraw) |
3101 { | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3102 n = *so_ptr; |
7 | 3103 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
|
3104 *so_ptr = 9999; // force cursor halfway the window |
7 | 3105 update_topline(); |
3106 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
|
3107 *so_ptr = n; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3108 redraw_curbuf_later(NOT_VALID); // redraw this buffer later |
7 | 3109 } |
3110 | |
3111 if (p_im) | |
3112 need_start_insertmode = TRUE; | |
3113 | |
13174
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3114 #ifdef FEAT_AUTOCHDIR |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3115 // 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
|
3116 // 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
|
3117 // 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
|
3118 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
|
3119 { |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3120 char_u curdir[MAXPATHL]; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3121 char_u filedir[MAXPATHL]; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3122 |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3123 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
|
3124 *gettail_sep(filedir) = NUL; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3125 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
|
3126 && vim_fnamecmp(curdir, filedir) != 0) |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3127 do_autochdir(); |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3128 } |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
3129 #endif |
821 | 3130 |
15510
41fbbcea0f1b
patch 8.1.0763: nobody is using the Sun Workshop support
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3131 #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
|
3132 if (curbuf->b_ffname != NULL) |
7 | 3133 { |
3134 # ifdef FEAT_NETBEANS_INTG | |
2210 | 3135 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP) |
34 | 3136 netbeans_file_opened(curbuf); |
7 | 3137 # endif |
3138 } | |
3139 #endif | |
3140 | |
3141 theend: | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3142 if (did_inc_redrawing_disabled) |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3143 --RedrawingDisabled; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3144 #if defined(FEAT_EVAL) |
716 | 3145 if (did_set_swapcommand) |
3146 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); | |
3147 #endif | |
7 | 3148 #ifdef FEAT_BROWSE |
3149 vim_free(browse_file); | |
3150 #endif | |
3151 vim_free(free_fname); | |
3152 return retval; | |
3153 } | |
3154 | |
3155 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3156 delbuf_msg(char_u *name) |
7 | 3157 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3158 semsg(_("E143: Autocommands unexpectedly deleted new buffer %s"), |
7 | 3159 name == NULL ? (char_u *)"" : name); |
3160 vim_free(name); | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3161 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
|
3162 au_new_curbuf.br_buf_free_count = 0; |
7 | 3163 } |
3164 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3165 static int append_indent = 0; // autoindent for first line |
169 | 3166 |
7 | 3167 /* |
3168 * ":insert" and ":append", also used by ":change" | |
3169 */ | |
3170 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3171 ex_append(exarg_T *eap) |
7 | 3172 { |
3173 char_u *theline; | |
3174 int did_undo = FALSE; | |
3175 linenr_T lnum = eap->line2; | |
165 | 3176 int indent = 0; |
3177 char_u *p; | |
3178 int vcol; | |
3179 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); | |
7 | 3180 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3181 // the ! flag toggles autoindent |
169 | 3182 if (eap->forceit) |
3183 curbuf->b_p_ai = !curbuf->b_p_ai; | |
3184 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3185 // First autoindent comes from the line we start on |
169 | 3186 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) |
3187 append_indent = get_indent_lnum(lnum); | |
3188 | |
7 | 3189 if (eap->cmdidx != CMD_append) |
3190 --lnum; | |
3191 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3192 // when the buffer is empty need to delete the dummy line |
165 | 3193 if (empty && lnum == 1) |
3194 lnum = 0; | |
3195 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3196 State = INSERT; // behave like in Insert mode |
7 | 3197 if (curbuf->b_p_iminsert == B_IMODE_LMAP) |
3198 State |= LANGMAP; | |
165 | 3199 |
408 | 3200 for (;;) |
7 | 3201 { |
3202 msg_scroll = TRUE; | |
3203 need_wait_return = FALSE; | |
169 | 3204 if (curbuf->b_p_ai) |
3205 { | |
3206 if (append_indent >= 0) | |
3207 { | |
3208 indent = append_indent; | |
3209 append_indent = -1; | |
3210 } | |
3211 else if (lnum > 0) | |
3212 indent = get_indent_lnum(lnum); | |
3213 } | |
3214 ex_keep_indent = FALSE; | |
7 | 3215 if (eap->getline == NULL) |
169 | 3216 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3217 // 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
|
3218 // when there is no more. |
169 | 3219 if (eap->nextcmd == NULL || *eap->nextcmd == NUL) |
3220 break; | |
3221 p = vim_strchr(eap->nextcmd, NL); | |
3222 if (p == NULL) | |
3223 p = eap->nextcmd + STRLEN(eap->nextcmd); | |
3224 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd)); | |
3225 if (*p != NUL) | |
3226 ++p; | |
3227 eap->nextcmd = p; | |
3228 } | |
7 | 3229 else |
6164 | 3230 { |
3231 int save_State = State; | |
3232 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3233 // 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
|
3234 // when getline() returns. |
6164 | 3235 State = CMDLINE; |
7 | 3236 theline = eap->getline( |
3237 #ifdef FEAT_EVAL | |
76 | 3238 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 3239 #endif |
17178
40c4cb095d53
patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents:
17095
diff
changeset
|
3240 NUL, eap->cookie, indent, TRUE); |
6164 | 3241 State = save_State; |
3242 } | |
7 | 3243 lines_left = Rows - 1; |
165 | 3244 if (theline == NULL) |
3245 break; | |
3246 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3247 // Using ^ CTRL-D in getexmodeline() makes us repeat the indent. |
169 | 3248 if (ex_keep_indent) |
3249 append_indent = indent; | |
3250 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3251 // Look for the "." after automatic indent. |
165 | 3252 vcol = 0; |
3253 for (p = theline; indent > vcol; ++p) | |
3254 { | |
3255 if (*p == ' ') | |
3256 ++vcol; | |
3257 else if (*p == TAB) | |
3258 vcol += 8 - vcol % 8; | |
3259 else | |
3260 break; | |
3261 } | |
3262 if ((p[0] == '.' && p[1] == NUL) | |
321 | 3263 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
3264 == FAIL)) | |
7 | 3265 { |
3266 vim_free(theline); | |
3267 break; | |
3268 } | |
3269 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3270 // don't use autoindent if nothing was typed. |
169 | 3271 if (p[0] == NUL) |
3272 theline[0] = NUL; | |
3273 | |
7 | 3274 did_undo = TRUE; |
3275 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
|
3276 appended_lines_mark(lnum + (empty ? 1 : 0), 1L); |
7 | 3277 |
3278 vim_free(theline); | |
3279 ++lnum; | |
165 | 3280 |
3281 if (empty) | |
3282 { | |
3283 ml_delete(2L, FALSE); | |
3284 empty = FALSE; | |
3285 } | |
7 | 3286 } |
3287 State = NORMAL; | |
3288 | |
169 | 3289 if (eap->forceit) |
3290 curbuf->b_p_ai = !curbuf->b_p_ai; | |
3291 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3292 // "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
|
3293 // 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
|
3294 // "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
|
3295 // it is the same than "start" -- Acevedo |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3296 if (!cmdmod.lockmarks) |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3297 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3298 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
|
3299 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
|
3300 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
|
3301 --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
|
3302 curbuf->b_op_end.lnum = (eap->line2 < lnum) |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
3303 ? lnum : 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
|
3304 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
|
3305 } |
7 | 3306 curwin->w_cursor.lnum = lnum; |
3307 check_cursor_lnum(); | |
3308 beginline(BL_SOL | BL_FIX); | |
3309 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3310 need_wait_return = FALSE; // don't use wait_return() now |
7 | 3311 ex_no_reprint = TRUE; |
3312 } | |
3313 | |
3314 /* | |
3315 * ":change" | |
3316 */ | |
3317 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3318 ex_change(exarg_T *eap) |
7 | 3319 { |
3320 linenr_T lnum; | |
3321 | |
3322 if (eap->line2 >= eap->line1 | |
3323 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) | |
3324 return; | |
3325 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3326 // the ! flag toggles autoindent |
169 | 3327 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) |
3328 append_indent = get_indent_lnum(eap->line1); | |
3329 | |
7 | 3330 for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
3331 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3332 if (curbuf->b_ml.ml_flags & ML_EMPTY) // nothing to delete |
7 | 3333 break; |
3334 ml_delete(eap->line1, FALSE); | |
3335 } | |
1929 | 3336 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3337 // make sure the cursor is not beyond the end of the file now |
1929 | 3338 check_cursor_lnum(); |
7 | 3339 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
3340 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3341 // ":append" on the line above the deleted lines. |
7 | 3342 eap->line2 = eap->line1; |
3343 ex_append(eap); | |
3344 } | |
3345 | |
3346 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3347 ex_z(exarg_T *eap) |
7 | 3348 { |
3349 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
|
3350 long bigness; |
165 | 3351 char_u *kind; |
7 | 3352 int minus = 0; |
3353 linenr_T start, end, curs, i; | |
3354 int j; | |
3355 linenr_T lnum = eap->line2; | |
3356 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3357 // 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
|
3358 // 'scroll' |
165 | 3359 if (eap->forceit) |
3360 bigness = curwin->w_height; | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10299
diff
changeset
|
3361 else if (!ONE_WINDOW) |
5678 | 3362 bigness = curwin->w_height - 3; |
3363 else | |
165 | 3364 bigness = curwin->w_p_scr * 2; |
7 | 3365 if (bigness < 1) |
3366 bigness = 1; | |
3367 | |
3368 x = eap->arg; | |
165 | 3369 kind = x; |
3370 if (*kind == '-' || *kind == '+' || *kind == '=' | |
3371 || *kind == '^' || *kind == '.') | |
3372 ++x; | |
3373 while (*x == '-' || *x == '+') | |
7 | 3374 ++x; |
3375 | |
3376 if (*x != 0) | |
3377 { | |
3378 if (!VIM_ISDIGIT(*x)) | |
3379 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3380 emsg(_("E144: non-numeric argument to :z")); |
7 | 3381 return; |
3382 } | |
3383 else | |
165 | 3384 { |
11303
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
3385 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
|
3386 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3387 // 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
|
3388 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
|
3389 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
|
3390 |
165 | 3391 p_window = bigness; |
169 | 3392 if (*kind == '=') |
3393 bigness += 2; | |
165 | 3394 } |
7 | 3395 } |
3396 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3397 // the number of '-' and '+' multiplies the distance |
165 | 3398 if (*kind == '-' || *kind == '+') |
3399 for (x = kind + 1; *x == *kind; ++x) | |
3400 ; | |
3401 | |
3402 switch (*kind) | |
7 | 3403 { |
3404 case '-': | |
2881 | 3405 start = lnum - bigness * (linenr_T)(x - kind) + 1; |
3406 end = start + bigness - 1; | |
165 | 3407 curs = end; |
7 | 3408 break; |
3409 | |
3410 case '=': | |
159 | 3411 start = lnum - (bigness + 1) / 2 + 1; |
3412 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 3413 curs = lnum; |
3414 minus = 1; | |
3415 break; | |
3416 | |
3417 case '^': | |
3418 start = lnum - bigness * 2; | |
3419 end = lnum - bigness; | |
3420 curs = lnum - bigness; | |
3421 break; | |
3422 | |
3423 case '.': | |
159 | 3424 start = lnum - (bigness + 1) / 2 + 1; |
3425 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 3426 curs = end; |
3427 break; | |
3428 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3429 default: // '+' |
7 | 3430 start = lnum; |
165 | 3431 if (*kind == '+') |
835 | 3432 start += bigness * (linenr_T)(x - kind - 1) + 1; |
169 | 3433 else if (eap->addr_count == 0) |
3434 ++start; | |
3435 end = start + bigness - 1; | |
7 | 3436 curs = end; |
3437 break; | |
3438 } | |
3439 | |
3440 if (start < 1) | |
3441 start = 1; | |
3442 | |
3443 if (end > curbuf->b_ml.ml_line_count) | |
3444 end = curbuf->b_ml.ml_line_count; | |
3445 | |
3446 if (curs > curbuf->b_ml.ml_line_count) | |
3447 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
|
3448 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
|
3449 curs = 1; |
7 | 3450 |
3451 for (i = start; i <= end; i++) | |
3452 { | |
3453 if (minus && i == lnum) | |
3454 { | |
3455 msg_putchar('\n'); | |
3456 | |
3457 for (j = 1; j < Columns; j++) | |
3458 msg_putchar('-'); | |
3459 } | |
3460 | |
169 | 3461 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
7 | 3462 |
3463 if (minus && i == lnum) | |
3464 { | |
3465 msg_putchar('\n'); | |
3466 | |
3467 for (j = 1; j < Columns; j++) | |
3468 msg_putchar('-'); | |
3469 } | |
3470 } | |
3471 | |
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
|
3472 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
|
3473 { |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
3474 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
|
3475 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
|
3476 } |
7 | 3477 ex_no_reprint = TRUE; |
3478 } | |
3479 | |
3480 /* | |
3481 * Check if the restricted flag is set. | |
3482 * If so, give an error message and return TRUE. | |
3483 * Otherwise, return FALSE. | |
3484 */ | |
3485 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3486 check_restricted(void) |
7 | 3487 { |
3488 if (restricted) | |
3489 { | |
15748
93b78c4a7cd5
patch 8.1.0881: can execute shell commands in rvim through interfaces
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
3490 emsg(_("E145: Shell commands and some functionality not allowed in rvim")); |
7 | 3491 return TRUE; |
3492 } | |
3493 return FALSE; | |
3494 } | |
3495 | |
3496 /* | |
3497 * Check if the secure flag is set (.exrc or .vimrc in current directory). | |
3498 * If so, give an error message and return TRUE. | |
3499 * Otherwise, return FALSE. | |
3500 */ | |
3501 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3502 check_secure(void) |
7 | 3503 { |
3504 if (secure) | |
3505 { | |
3506 secure = 2; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3507 emsg(_(e_curdir)); |
7 | 3508 return TRUE; |
3509 } | |
3510 #ifdef HAVE_SANDBOX | |
3511 /* | |
3512 * In the sandbox more things are not allowed, including the things | |
3513 * disallowed in secure mode. | |
3514 */ | |
3515 if (sandbox != 0) | |
3516 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3517 emsg(_(e_sandbox)); |
7 | 3518 return TRUE; |
3519 } | |
3520 #endif | |
3521 return FALSE; | |
3522 } | |
3523 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3524 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
|
3525 static int global_need_beginline; // call beginline() after ":g" |
7 | 3526 |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3527 /* |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3528 * 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
|
3529 */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3530 typedef struct { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3531 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
|
3532 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
|
3533 int do_count; // count only |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3534 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
|
3535 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
|
3536 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
|
3537 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
|
3538 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
|
3539 } subflags_T; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3540 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3541 /* |
7 | 3542 * Perform a substitution from line eap->line1 to line eap->line2 using the |
3543 * command pointed to by eap->arg which should be of the form: | |
3544 * | |
3545 * /pattern/substitution/{flags} | |
3546 * | |
3547 * The usual escapes are supported as described in the regexp docs. | |
3548 */ | |
3549 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3550 do_sub(exarg_T *eap) |
7 | 3551 { |
3552 linenr_T lnum; | |
3553 long i = 0; | |
3554 regmmatch_T regmatch; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3555 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
|
3556 FALSE, FALSE, 0}; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3557 #ifdef FEAT_EVAL |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3558 subflags_T subflags_save; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3559 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3560 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
|
3561 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
|
3562 char_u *pat = NULL, *sub = NULL; // init for GCC |
7 | 3563 int delimiter; |
3564 int sublen; | |
3565 int got_quit = FALSE; | |
3566 int got_match = FALSE; | |
3567 int temp; | |
3568 int which_pat; | |
3569 char_u *cmd; | |
3570 int save_State; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3571 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
|
3572 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
|
3573 // change |
7 | 3574 linenr_T old_line_count = curbuf->b_ml.ml_line_count; |
3575 linenr_T line2; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3576 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
|
3577 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
|
3578 int endcolumn = FALSE; // cursor in last column when done |
170 | 3579 pos_T old_cursor = curwin->w_cursor; |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
3580 int start_nsubs; |
3736 | 3581 #ifdef FEAT_EVAL |
5867 | 3582 int save_ma = 0; |
3736 | 3583 #endif |
7 | 3584 |
3585 cmd = eap->arg; | |
3586 if (!global_busy) | |
3587 { | |
3588 sub_nsubs = 0; | |
3589 sub_nlines = 0; | |
3590 } | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
3591 start_nsubs = sub_nsubs; |
7 | 3592 |
3593 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
|
3594 which_pat = RE_LAST; // use last used regexp |
7 | 3595 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3596 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
|
3597 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3598 // 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
|
3599 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd) |
7 | 3600 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) |
3601 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3602 // don't accept alphanumeric for separator |
7 | 3603 if (isalpha(*cmd)) |
3604 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3605 emsg(_("E146: Regular expressions can't be delimited by letters")); |
7 | 3606 return; |
3607 } | |
3608 /* | |
3609 * undocumented vi feature: | |
3610 * "\/sub/" and "\?sub?" use last used search pattern (almost like | |
3611 * //sub/r). "\&sub&" use last substitute pattern (like //sub/). | |
3612 */ | |
3613 if (*cmd == '\\') | |
3614 { | |
3615 ++cmd; | |
3616 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
3617 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3618 emsg(_(e_backslash)); |
7 | 3619 return; |
3620 } | |
3621 if (*cmd != '&') | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3622 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
|
3623 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
|
3624 delimiter = *cmd++; // remember delimiter character |
7 | 3625 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3626 else // find the end of the regexp |
7 | 3627 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3628 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
|
3629 delimiter = *cmd++; // remember delimiter character |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3630 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
|
3631 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
|
3632 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
|
3633 *cmd++ = NUL; // replace it with a NUL |
7 | 3634 } |
3635 | |
3636 /* | |
3637 * Small incompatibility: vi sees '\n' as end of the command, but in | |
3638 * Vim we want to use '\n' to find/substitute a NUL. | |
3639 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3640 sub = cmd; // remember the start of the substitution |
7 | 3641 |
3642 while (cmd[0]) | |
3643 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3644 if (cmd[0] == delimiter) // end delimiter found |
7 | 3645 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3646 *cmd++ = NUL; // replace it with a NUL |
7 | 3647 break; |
3648 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3649 if (cmd[0] == '\\' && cmd[1] != 0) // skip escaped characters |
7 | 3650 ++cmd; |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11123
diff
changeset
|
3651 MB_PTR_ADV(cmd); |
7 | 3652 } |
3653 | |
3654 if (!eap->skip) | |
3655 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3656 // In POSIX vi ":s/pat/%/" uses the previous subst. string. |
169 | 3657 if (STRCMP(sub, "%") == 0 |
3658 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) | |
3659 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3660 if (old_sub == NULL) // there is no previous command |
169 | 3661 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3662 emsg(_(e_nopresub)); |
169 | 3663 return; |
3664 } | |
3665 sub = old_sub; | |
3666 } | |
3667 else | |
3668 { | |
3669 vim_free(old_sub); | |
3670 old_sub = vim_strsave(sub); | |
3671 } | |
7 | 3672 } |
3673 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3674 else if (!eap->skip) // use previous pattern and substitution |
7 | 3675 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3676 if (old_sub == NULL) // there is no previous command |
7 | 3677 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3678 emsg(_(e_nopresub)); |
7 | 3679 return; |
3680 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3681 pat = NULL; // search_regcomp() will use previous pattern |
7 | 3682 sub = old_sub; |
163 | 3683 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3684 // 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
|
3685 // last column after using "$". |
163 | 3686 endcolumn = (curwin->w_curswant == MAXCOL); |
7 | 3687 } |
3688 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3689 // 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
|
3690 // more efficient. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3691 // 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
|
3692 // efficient, avoid allocating a string that grows in size. |
5802 | 3693 if (pat != NULL && STRCMP(pat, "\\n") == 0 |
5776 | 3694 && *sub == NUL |
3695 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l' | |
3696 || *cmd == 'p' || *cmd == '#')))) | |
3697 { | |
6426 | 3698 linenr_T joined_lines_count; |
3699 | |
5776 | 3700 curwin->w_cursor.lnum = eap->line1; |
3701 if (*cmd == 'l') | |
3702 eap->flags = EXFLAG_LIST; | |
3703 else if (*cmd == '#') | |
3704 eap->flags = EXFLAG_NR; | |
3705 else if (*cmd == 'p') | |
3706 eap->flags = EXFLAG_PRINT; | |
3707 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3708 // 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
|
3709 // one. One less when the last line is included. |
6426 | 3710 joined_lines_count = eap->line2 - eap->line1 + 1; |
3711 if (eap->line2 < curbuf->b_ml.ml_line_count) | |
3712 ++joined_lines_count; | |
3713 if (joined_lines_count > 1) | |
3714 { | |
3715 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE); | |
3716 sub_nsubs = joined_lines_count - 1; | |
3717 sub_nlines = 1; | |
3718 (void)do_sub_msg(FALSE); | |
3719 ex_may_print(eap); | |
3720 } | |
3721 | |
3722 if (!cmdmod.keeppatterns) | |
3723 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
|
3724 // put pattern in history |
6426 | 3725 add_to_history(HIST_SEARCH, pat, TRUE, NUL); |
3726 | |
5776 | 3727 return; |
3728 } | |
3729 | |
7 | 3730 /* |
3731 * Find trailing options. When '&' is used, keep old options. | |
3732 */ | |
3733 if (*cmd == '&') | |
3734 ++cmd; | |
3735 else | |
3736 { | |
3737 if (!p_ed) | |
3738 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3739 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
|
3740 subflags.do_all = TRUE; |
7 | 3741 else |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3742 subflags.do_all = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3743 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3744 } |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3745 subflags.do_error = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3746 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
|
3747 subflags.do_list = FALSE; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3748 subflags.do_count = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3749 subflags.do_number = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3750 subflags.do_ic = 0; |
7 | 3751 } |
3752 while (*cmd) | |
3753 { | |
3754 /* | |
3755 * Note that 'g' and 'c' are always inverted, also when p_ed is off. | |
3756 * 'r' is never inverted. | |
3757 */ | |
3758 if (*cmd == 'g') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3759 subflags.do_all = !subflags.do_all; |
7 | 3760 else if (*cmd == 'c') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3761 subflags.do_ask = !subflags.do_ask; |
170 | 3762 else if (*cmd == 'n') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3763 subflags.do_count = TRUE; |
7 | 3764 else if (*cmd == 'e') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3765 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
|
3766 else if (*cmd == 'r') // use last used regexp |
7 | 3767 which_pat = RE_LAST; |
3768 else if (*cmd == 'p') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3769 subflags.do_print = TRUE; |
169 | 3770 else if (*cmd == '#') |
3771 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3772 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3773 subflags.do_number = TRUE; |
169 | 3774 } |
3775 else if (*cmd == 'l') | |
3776 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3777 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3778 subflags.do_list = TRUE; |
169 | 3779 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3780 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
|
3781 subflags.do_ic = 'i'; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3782 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
|
3783 subflags.do_ic = 'I'; |
7 | 3784 else |
3785 break; | |
3786 ++cmd; | |
3787 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3788 if (subflags.do_count) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3789 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3790 |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3791 save_do_all = subflags.do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3792 save_do_ask = subflags.do_ask; |
6789 | 3793 |
7 | 3794 /* |
3795 * check for a trailing count | |
3796 */ | |
3797 cmd = skipwhite(cmd); | |
3798 if (VIM_ISDIGIT(*cmd)) | |
3799 { | |
3800 i = getdigits(&cmd); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3801 if (i <= 0 && !eap->skip && subflags.do_error) |
7 | 3802 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3803 emsg(_(e_zerocount)); |
7 | 3804 return; |
3805 } | |
3806 eap->line1 = eap->line2; | |
3807 eap->line2 += i - 1; | |
3808 if (eap->line2 > curbuf->b_ml.ml_line_count) | |
3809 eap->line2 = curbuf->b_ml.ml_line_count; | |
3810 } | |
3811 | |
3812 /* | |
3813 * check for trailing command or garbage | |
3814 */ | |
3815 cmd = skipwhite(cmd); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3816 if (*cmd && *cmd != '"') // if not end-of-line or comment |
7 | 3817 { |
3818 eap->nextcmd = check_nextcmd(cmd); | |
3819 if (eap->nextcmd == NULL) | |
3820 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3821 emsg(_(e_trailing)); |
7 | 3822 return; |
3823 } | |
3824 } | |
3825 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3826 if (eap->skip) // not executing commands, only parsing |
7 | 3827 return; |
3828 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3829 if (!subflags.do_count && !curbuf->b_p_ma) |
823 | 3830 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3831 // 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
|
3832 emsg(_(e_modifiable)); |
823 | 3833 return; |
3834 } | |
3835 | |
7 | 3836 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
3837 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3838 if (subflags.do_error) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
3839 emsg(_(e_invcmd)); |
7 | 3840 return; |
3841 } | |
3842 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3843 // 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
|
3844 if (subflags.do_ic == 'i') |
7 | 3845 regmatch.rmm_ic = TRUE; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
3846 else if (subflags.do_ic == 'I') |
7 | 3847 regmatch.rmm_ic = FALSE; |
3848 | |
3849 sub_firstline = NULL; | |
3850 | |
3851 /* | |
3852 * ~ in the substitute pattern is replaced with the old pattern. | |
3853 * We do it here once to avoid it to be replaced over and over again. | |
3854 * But don't do it when it starts with "\=", then it's an expression. | |
3855 */ | |
3856 if (!(sub[0] == '\\' && sub[1] == '=')) | |
3857 sub = regtilde(sub, p_magic); | |
3858 | |
3859 /* | |
3860 * Check for a match on each line. | |
3861 */ | |
3862 line2 = eap->line2; | |
3863 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
|
3864 #if defined(FEAT_EVAL) |
7 | 3865 || aborting() |
3866 #endif | |
3867 ); ++lnum) | |
3868 { | |
1521 | 3869 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
|
3870 (colnr_T)0, NULL, NULL); |
7 | 3871 if (nmatch) |
3872 { | |
3873 colnr_T copycol; | |
3874 colnr_T matchcol; | |
3875 colnr_T prev_matchcol = MAXCOL; | |
3876 char_u *new_end, *new_start = NULL; | |
3877 unsigned new_start_len = 0; | |
3878 char_u *p1; | |
3879 int did_sub = FALSE; | |
3880 int lastone; | |
1872 | 3881 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
|
3882 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
|
3883 int do_again; // do it again after joining lines |
15 | 3884 int skip_match = FALSE; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3885 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
|
3886 #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
|
3887 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
|
3888 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
|
3889 #endif |
7 | 3890 |
3891 /* | |
3892 * The new text is build up step by step, to avoid too much | |
3893 * copying. There are these pieces: | |
1581 | 3894 * sub_firstline The old text, unmodified. |
7 | 3895 * copycol Column in the old text where we started |
3896 * looking for a match; from here old text still | |
3897 * needs to be copied to the new text. | |
3898 * matchcol Column number of the old text where to look | |
3899 * for the next match. It's just after the | |
3900 * previous match or one further. | |
3901 * prev_matchcol Column just after the previous match (if any). | |
3902 * Mostly equal to matchcol, except for the first | |
3903 * match and after skipping an empty match. | |
3904 * regmatch.*pos Where the pattern matched in the old text. | |
3905 * new_start The new text, all that has been produced so | |
3906 * far. | |
3907 * new_end The new text, where to append new text. | |
3908 * | |
1499 | 3909 * lnum The line number where we found the start of |
3910 * the match. Can be below the line we searched | |
3911 * when there is a \n before a \zs in the | |
3912 * pattern. | |
7 | 3913 * sub_firstlnum The line number in the buffer where to look |
3914 * for a match. Can be different from "lnum" | |
3915 * when the pattern or substitute string contains | |
3916 * line breaks. | |
3917 * | |
3918 * Special situations: | |
3919 * - When the substitute string contains a line break, the part up | |
3920 * to the line break is inserted in the text, but the copy of | |
3921 * the original line is kept. "sub_firstlnum" is adjusted for | |
3922 * the inserted lines. | |
3923 * - When the matched pattern contains a line break, the old line | |
3924 * is taken from the line at the end of the pattern. The lines | |
3925 * in the match are deleted later, "sub_firstlnum" is adjusted | |
3926 * accordingly. | |
3927 * | |
3928 * The new text is built up in new_start[]. It has some extra | |
3929 * room to avoid using alloc()/free() too often. new_start_len is | |
1389 | 3930 * the length of the allocated memory at new_start. |
7 | 3931 * |
3932 * Make a copy of the old line, so it won't be taken away when | |
3933 * updating the screen or handling a multi-line match. The "old_" | |
3934 * pointers point into this copy. | |
3935 */ | |
1499 | 3936 sub_firstlnum = lnum; |
7 | 3937 copycol = 0; |
3938 matchcol = 0; | |
3939 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3940 // At first match, remember current cursor position. |
7 | 3941 if (!got_match) |
3942 { | |
3943 setpcmark(); | |
3944 got_match = TRUE; | |
3945 } | |
3946 | |
3947 /* | |
3948 * Loop until nothing more to replace in this line. | |
3949 * 1. Handle match with empty string. | |
3950 * 2. If do_ask is set, ask for confirmation. | |
3951 * 3. substitute the string. | |
3952 * 4. if do_all is set, find next match | |
3953 * 5. break if there isn't another match in this line | |
3954 */ | |
3955 for (;;) | |
3956 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3957 // 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
|
3958 // 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
|
3959 // break before \zs. |
1499 | 3960 if (regmatch.startpos[0].lnum > 0) |
3961 { | |
3962 lnum += regmatch.startpos[0].lnum; | |
3963 sub_firstlnum += regmatch.startpos[0].lnum; | |
3964 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
|
3965 VIM_CLEAR(sub_firstline); |
1499 | 3966 } |
3967 | |
18483
54e5fa1f9cfc
patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents:
18446
diff
changeset
|
3968 // 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
|
3969 // 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
|
3970 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
|
3971 break; |
54e5fa1f9cfc
patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents:
18446
diff
changeset
|
3972 |
1499 | 3973 if (sub_firstline == NULL) |
3974 { | |
3975 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
3976 if (sub_firstline == NULL) | |
3977 { | |
3978 vim_free(new_start); | |
3979 goto outofmem; | |
3980 } | |
3981 } | |
3982 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
3983 // 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
|
3984 // cursor position (just like Vi). |
7 | 3985 curwin->w_cursor.lnum = lnum; |
3986 do_again = FALSE; | |
3987 | |
3988 /* | |
3989 * 1. Match empty string does not count, except for first | |
3990 * match. This reproduces the strange vi behaviour. | |
3991 * This also catches endless loops. | |
3992 */ | |
3993 if (matchcol == prev_matchcol | |
3994 && regmatch.endpos[0].lnum == 0 | |
3995 && matchcol == regmatch.endpos[0].col) | |
3996 { | |
15 | 3997 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
|
3998 // 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
|
3999 // for a match in this line again. |
15 | 4000 skip_match = TRUE; |
4001 else | |
2837 | 4002 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4003 // search for a match at next column |
2837 | 4004 if (has_mbyte) |
4005 matchcol += mb_ptr2len(sub_firstline + matchcol); | |
4006 else | |
4007 ++matchcol; | |
4008 } | |
7 | 4009 goto skip; |
4010 } | |
4011 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4012 // 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
|
4013 // previous match. |
7 | 4014 matchcol = regmatch.endpos[0].col; |
4015 prev_matchcol = matchcol; | |
4016 | |
4017 /* | |
170 | 4018 * 2. If do_count is set only increase the counter. |
4019 * If do_ask is set, ask for confirmation. | |
7 | 4020 */ |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4021 if (subflags.do_count) |
170 | 4022 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4023 // 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
|
4024 // 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
|
4025 // 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
|
4026 // Avoids that ":s/\nB\@=//gc" get stuck. |
170 | 4027 if (nmatch > 1) |
4028 { | |
835 | 4029 matchcol = (colnr_T)STRLEN(sub_firstline); |
170 | 4030 nmatch = 1; |
1483 | 4031 skip_match = TRUE; |
170 | 4032 } |
4033 sub_nsubs++; | |
4034 did_sub = TRUE; | |
3736 | 4035 #ifdef FEAT_EVAL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4036 // 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
|
4037 // then it is evaluated in the sandbox. |
3736 | 4038 if (!(sub[0] == '\\' && sub[1] == '=')) |
4039 #endif | |
4040 goto skip; | |
170 | 4041 } |
4042 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4043 if (subflags.do_ask) |
7 | 4044 { |
1874 | 4045 int typed = 0; |
1872 | 4046 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4047 // 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
|
4048 // properly |
7 | 4049 save_State = State; |
4050 State = CONFIRM; | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17817
diff
changeset
|
4051 setmouse(); // disable mouse in xterm |
7 | 4052 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
|
4053 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
|
4054 do_check_cursorbind(); |
7 | 4055 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4056 // 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
|
4057 // asking for confirmation. |
7 | 4058 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) |
4059 ++no_u_sync; | |
4060 | |
4061 /* | |
4062 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. | |
4063 */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4064 while (subflags.do_ask) |
7 | 4065 { |
169 | 4066 if (exmode_active) |
4067 { | |
4068 char_u *resp; | |
4069 colnr_T sc, ec; | |
4070 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4071 print_line_no_prefix(lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4072 subflags.do_number, subflags.do_list); |
169 | 4073 |
4074 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); | |
4075 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
|
4076 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
|
4077 curwin->w_cursor.col = 0; |
169 | 4078 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
|
4079 if (subflags.do_number || curwin->w_p_nu) |
5396 | 4080 { |
4081 int numw = number_width(curwin) + 1; | |
4082 sc += numw; | |
4083 ec += numw; | |
4084 } | |
169 | 4085 msg_start(); |
170 | 4086 for (i = 0; i < (long)sc; ++i) |
169 | 4087 msg_putchar(' '); |
170 | 4088 for ( ; i <= (long)ec; ++i) |
169 | 4089 msg_putchar('^'); |
4090 | |
17178
40c4cb095d53
patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents:
17095
diff
changeset
|
4091 resp = getexmodeline('?', NULL, 0, TRUE); |
169 | 4092 if (resp != NULL) |
4093 { | |
1872 | 4094 typed = *resp; |
169 | 4095 vim_free(resp); |
4096 } | |
4097 } | |
4098 else | |
4099 { | |
4076 | 4100 char_u *orig_line = NULL; |
4101 int len_change = 0; | |
7 | 4102 #ifdef FEAT_FOLDING |
169 | 4103 int save_p_fen = curwin->w_p_fen; |
4104 | |
4105 curwin->w_p_fen = FALSE; | |
4106 #endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4107 // Invert the matched string. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4108 // Remove the inversion afterwards. |
169 | 4109 temp = RedrawingDisabled; |
4110 RedrawingDisabled = 0; | |
4111 | |
4076 | 4112 if (new_start != NULL) |
4113 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4114 // 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
|
4115 // 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
|
4116 // 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
|
4117 // 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
|
4118 // and change it back afterwards. |
4076 | 4119 orig_line = vim_strsave(ml_get(lnum)); |
4120 if (orig_line != NULL) | |
4121 { | |
4122 char_u *new_line = concat_str(new_start, | |
4123 sub_firstline + copycol); | |
4124 | |
4125 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
|
4126 VIM_CLEAR(orig_line); |
4076 | 4127 else |
4128 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4129 // 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
|
4130 // 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
|
4131 // substitute may have inserted or |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4132 // deleted characters before the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4133 // cursor. |
4086 | 4134 len_change = (int)STRLEN(new_line) |
4135 - (int)STRLEN(orig_line); | |
4076 | 4136 curwin->w_cursor.col += len_change; |
4137 ml_replace(lnum, new_line, FALSE); | |
4138 } | |
4139 } | |
4140 } | |
4141 | |
1499 | 4142 search_match_lines = regmatch.endpos[0].lnum |
4143 - regmatch.startpos[0].lnum; | |
4076 | 4144 search_match_endcol = regmatch.endpos[0].col |
4145 + len_change; | |
169 | 4146 highlight_match = TRUE; |
4147 | |
4148 update_topline(); | |
4149 validate_cursor(); | |
748 | 4150 update_screen(SOME_VALID); |
169 | 4151 highlight_match = FALSE; |
748 | 4152 redraw_later(SOME_VALID); |
7 | 4153 |
4154 #ifdef FEAT_FOLDING | |
169 | 4155 curwin->w_p_fen = save_p_fen; |
4156 #endif | |
4157 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
|
4158 msg_didout = FALSE; // avoid a scroll-up |
169 | 4159 msg_starthere(); |
4160 i = msg_scroll; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4161 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
|
4162 // needed |
169 | 4163 msg_no_more = TRUE; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4164 // 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
|
4165 // wait_return |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11144
diff
changeset
|
4166 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
|
4167 _("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); |
169 | 4168 msg_no_more = FALSE; |
4169 msg_scroll = i; | |
4170 showruler(TRUE); | |
4171 windgoto(msg_row, msg_col); | |
4172 RedrawingDisabled = temp; | |
7 | 4173 |
4174 #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
|
4175 dont_scroll = FALSE; // allow scrolling here |
169 | 4176 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4177 ++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
|
4178 ++allow_keys; // allow special keys |
1872 | 4179 typed = plain_vgetc(); |
169 | 4180 --allow_keys; |
4181 --no_mapping; | |
4182 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4183 // clear the question |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4184 msg_didout = FALSE; // don't scroll up |
169 | 4185 msg_col = 0; |
4186 gotocmdline(TRUE); | |
4076 | 4187 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4188 // restore the line |
4076 | 4189 if (orig_line != NULL) |
4190 ml_replace(lnum, orig_line, FALSE); | |
169 | 4191 } |
4192 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4193 need_wait_return = FALSE; // no hit-return prompt |
1872 | 4194 if (typed == 'q' || typed == ESC || typed == Ctrl_C |
7 | 4195 #ifdef UNIX |
1872 | 4196 || typed == intr_char |
7 | 4197 #endif |
4198 ) | |
4199 { | |
4200 got_quit = TRUE; | |
4201 break; | |
4202 } | |
1872 | 4203 if (typed == 'n') |
7 | 4204 break; |
1872 | 4205 if (typed == 'y') |
7 | 4206 break; |
1872 | 4207 if (typed == 'l') |
7 | 4208 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4209 // last: replace and then stop |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4210 subflags.do_all = FALSE; |
7 | 4211 line2 = lnum; |
4212 break; | |
4213 } | |
1872 | 4214 if (typed == 'a') |
7 | 4215 { |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4216 subflags.do_ask = FALSE; |
7 | 4217 break; |
4218 } | |
1872 | 4219 if (typed == Ctrl_E) |
7 | 4220 scrollup_clamp(); |
1872 | 4221 else if (typed == Ctrl_Y) |
7 | 4222 scrolldown_clamp(); |
4223 } | |
4224 State = save_State; | |
4225 setmouse(); | |
4226 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
4227 --no_u_sync; | |
4228 | |
1872 | 4229 if (typed == 'n') |
7 | 4230 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4231 // 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
|
4232 // 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
|
4233 // 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
|
4234 // 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
|
4235 // get stuck when pressing 'n'. |
7 | 4236 if (nmatch > 1) |
4237 { | |
835 | 4238 matchcol = (colnr_T)STRLEN(sub_firstline); |
1091 | 4239 skip_match = TRUE; |
7 | 4240 } |
4241 goto skip; | |
4242 } | |
4243 if (got_quit) | |
4099 | 4244 goto skip; |
7 | 4245 } |
4246 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4247 // 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
|
4248 // use "\=col("."). |
7 | 4249 curwin->w_cursor.col = regmatch.startpos[0].col; |
4250 | |
4251 /* | |
4252 * 3. substitute the string. | |
4253 */ | |
3736 | 4254 #ifdef FEAT_EVAL |
16716
5a541d459ef7
patch 8.1.1360: buffer left 'nomodifiable' after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16714
diff
changeset
|
4255 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
|
4256 if (subflags.do_count) |
3736 | 4257 { |
16686
6ea3f93b4428
patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents:
16662
diff
changeset
|
4258 // prevent accidentally changing the buffer by a function |
3736 | 4259 curbuf->b_p_ma = FALSE; |
4260 sandbox++; | |
4261 } | |
16686
6ea3f93b4428
patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents:
16662
diff
changeset
|
4262 // 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
|
4263 // :s/^/\=execute("s#^##gn") |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4264 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
|
4265 #endif |
6ea3f93b4428
patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents:
16662
diff
changeset
|
4266 // get length of substitution part |
1499 | 4267 sublen = vim_regsub_multi(®match, |
4268 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 4269 sub, sub_firstline, FALSE, p_magic, TRUE); |
3736 | 4270 #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
|
4271 // 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
|
4272 // the replacement. |
9994c50f7879
patch 8.1.1061: when substitute string throws error, substitute happens anyway
Bram Moolenaar <Bram@vim.org>
parents:
16021
diff
changeset
|
4273 // 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
|
4274 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
|
4275 if (aborting() || subflags.do_count) |
3736 | 4276 { |
4277 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
|
4278 if (sandbox > 0) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4279 sandbox--; |
3736 | 4280 goto skip; |
4281 } | |
4282 #endif | |
7 | 4283 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4284 // 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
|
4285 // go beyond the last line of the buffer. |
533 | 4286 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
4287 { | |
4288 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; | |
4289 skip_match = TRUE; | |
4290 } | |
4291 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4292 // Need room for: |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4293 // - 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
|
4294 // - original text up to match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4295 // - length of substituted part |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4296 // - original text after match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4297 // 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
|
4298 // needed. |
7 | 4299 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
|
4300 { |
7 | 4301 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
|
4302 #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
|
4303 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
|
4304 { |
18444
967ca19425e3
patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
18408
diff
changeset
|
4305 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
|
4306 - 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
|
4307 |
16698
23af483c4ceb
patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16686
diff
changeset
|
4308 // 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
|
4309 // 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
|
4310 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
|
4311 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
|
4312 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
|
4313 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
|
4314 // 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
|
4315 // 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
|
4316 total_added += bytes_added; |
16698
23af483c4ceb
patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents:
16686
diff
changeset
|
4317 } |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4318 #endif |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4319 } |
7 | 4320 else |
4321 { | |
4322 p1 = ml_get(sub_firstlnum + nmatch - 1); | |
4323 nmatch_tl += nmatch - 1; | |
4324 } | |
1872 | 4325 copy_len = regmatch.startpos[0].col - copycol; |
4326 needed_len = copy_len + ((unsigned)STRLEN(p1) | |
4327 - regmatch.endpos[0].col) + sublen + 1; | |
7 | 4328 if (new_start == NULL) |
4329 { | |
4330 /* | |
4331 * Get some space for a temporary buffer to do the | |
4332 * substitution into (and some extra space to avoid | |
4333 * too many calls to alloc()/free()). | |
4334 */ | |
4335 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
|
4336 if ((new_start = alloc(new_start_len)) == NULL) |
7 | 4337 goto outofmem; |
4338 *new_start = NUL; | |
4339 new_end = new_start; | |
4340 } | |
4341 else | |
4342 { | |
4343 /* | |
4344 * Check if the temporary buffer is long enough to do the | |
4345 * substitution into. If not, make it larger (with a bit | |
4346 * extra to avoid too many calls to alloc()/free()). | |
4347 */ | |
4348 len = (unsigned)STRLEN(new_start); | |
4349 needed_len += len; | |
1872 | 4350 if (needed_len > (int)new_start_len) |
7 | 4351 { |
4352 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
|
4353 if ((p1 = alloc(new_start_len)) == NULL) |
7 | 4354 { |
4355 vim_free(new_start); | |
4356 goto outofmem; | |
4357 } | |
4358 mch_memmove(p1, new_start, (size_t)(len + 1)); | |
4359 vim_free(new_start); | |
4360 new_start = p1; | |
4361 } | |
4362 new_end = new_start + len; | |
4363 } | |
4364 | |
4365 /* | |
4366 * copy the text up to the part that matched | |
4367 */ | |
1872 | 4368 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); |
4369 new_end += copy_len; | |
7 | 4370 |
1499 | 4371 (void)vim_regsub_multi(®match, |
4372 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 4373 sub, new_end, TRUE, p_magic, TRUE); |
4374 sub_nsubs++; | |
4375 did_sub = TRUE; | |
4376 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4377 // 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
|
4378 // is beyond the end of the line after the substitution. |
7 | 4379 curwin->w_cursor.col = 0; |
4380 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4381 // 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
|
4382 // line and continue in that one. |
7 | 4383 if (nmatch > 1) |
4384 { | |
4385 sub_firstlnum += nmatch - 1; | |
4386 vim_free(sub_firstline); | |
4387 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
|
4388 // When going beyond the last line, stop substituting. |
7 | 4389 if (sub_firstlnum <= line2) |
4390 do_again = TRUE; | |
4391 else | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4392 subflags.do_all = FALSE; |
7 | 4393 } |
4394 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4395 // Remember next character to be copied. |
7 | 4396 copycol = regmatch.endpos[0].col; |
4397 | |
819 | 4398 if (skip_match) |
4399 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4400 // 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
|
4401 // less than what it ought to be. |
819 | 4402 vim_free(sub_firstline); |
4403 sub_firstline = vim_strsave((char_u *)""); | |
4404 copycol = 0; | |
4405 } | |
4406 | |
7 | 4407 /* |
4408 * Now the trick is to replace CTRL-M chars with a real line | |
4409 * break. This would make it impossible to insert a CTRL-M in | |
4410 * the text. The line break can be avoided by preceding the | |
4411 * CTRL-M with a backslash. To be able to insert a backslash, | |
4412 * they must be doubled in the string and are halved here. | |
4413 * That is Vi compatible. | |
4414 */ | |
4415 for (p1 = new_end; *p1; ++p1) | |
4416 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4417 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
|
4418 { |
1624 | 4419 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
|
4420 #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
|
4421 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
|
4422 { |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4423 // 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
|
4424 // 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
|
4425 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
|
4426 (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
|
4427 apc_flags)) |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4428 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
|
4429 } |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4430 #endif |
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4431 } |
7 | 4432 else if (*p1 == CAR) |
4433 { | |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4434 if (u_inssub(lnum) == OK) // prepare for undo |
7 | 4435 { |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4436 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
|
4437 |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4438 *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
|
4439 ml_append(lnum - 1, new_start, plen, FALSE); |
7 | 4440 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
|
4441 if (subflags.do_ask) |
7 | 4442 appended_lines(lnum - 1, 1L); |
4443 else | |
4444 { | |
4445 if (first_line == 0) | |
4446 first_line = lnum; | |
4447 last_line = lnum + 1; | |
4448 } | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
4449 #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
|
4450 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
|
4451 #endif |
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4452 // all line numbers increase |
7 | 4453 ++sub_firstlnum; |
4454 ++lnum; | |
4455 ++line2; | |
15367
273649cad196
patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
4456 // move the cursor to the new line, like Vi |
7 | 4457 ++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
|
4458 // copy the rest |
1624 | 4459 STRMOVE(new_start, p1 + 1); |
7 | 4460 p1 = new_start - 1; |
4461 } | |
4462 } | |
4463 else if (has_mbyte) | |
474 | 4464 p1 += (*mb_ptr2len)(p1) - 1; |
7 | 4465 } |
4466 | |
4467 /* | |
4468 * 4. If do_all is set, find next match. | |
4469 * Prevent endless loop with patterns that match empty | |
4470 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. | |
4471 * But ":s/\n/#/" is OK. | |
4472 */ | |
4473 skip: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4474 // 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
|
4475 // 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
|
4476 // "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
|
4477 // "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
|
4478 // break. |
15 | 4479 lastone = (skip_match |
4480 || got_int | |
4481 || got_quit | |
1499 | 4482 || lnum > line2 |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4483 || !(subflags.do_all || do_again) |
15 | 4484 || (sub_firstline[matchcol] == NUL && nmatch <= 1 |
4485 && !re_multiline(regmatch.regprog))); | |
7 | 4486 nmatch = -1; |
4487 | |
4488 /* | |
4489 * Replace the line in the buffer when needed. This is | |
4490 * skipped when there are more matches. | |
4491 * The check for nmatch_tl is needed for when multi-line | |
4492 * matching must replace the lines before trying to do another | |
4493 * match, otherwise "\@<=" won't work. | |
1499 | 4494 * When the match starts below where we start searching also |
4495 * need to replace the line first (using \zs after \n). | |
7 | 4496 */ |
4497 if (lastone | |
4498 || nmatch_tl > 0 | |
4499 || (nmatch = vim_regexec_multi(®match, curwin, | |
1521 | 4500 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
|
4501 matchcol, NULL, NULL)) == 0 |
1499 | 4502 || regmatch.startpos[0].lnum > 0) |
7 | 4503 { |
4504 if (new_start != NULL) | |
4505 { | |
4506 /* | |
4507 * Copy the rest of the line, that didn't match. | |
4508 * "matchcol" has to be adjusted, we use the end of | |
4509 * the line as reference, because the substitute may | |
4510 * have changed the number of characters. Same for | |
4511 * "prev_matchcol". | |
4512 */ | |
4513 STRCAT(new_start, sub_firstline + copycol); | |
4514 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
4515 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
4516 - prev_matchcol; | |
4517 | |
4518 if (u_savesub(lnum) != OK) | |
4519 break; | |
4520 ml_replace(lnum, new_start, TRUE); | |
4521 | |
4522 if (nmatch_tl > 0) | |
4523 { | |
4524 /* | |
4525 * Matched lines have now been substituted and are | |
4526 * useless, delete them. The part after the match | |
4527 * has been appended to new_start, we don't need | |
4528 * it in the buffer. | |
4529 */ | |
4530 ++lnum; | |
4531 if (u_savedel(lnum, nmatch_tl) != OK) | |
4532 break; | |
4533 for (i = 0; i < nmatch_tl; ++i) | |
4534 ml_delete(lnum, (int)FALSE); | |
4535 mark_adjust(lnum, lnum + nmatch_tl - 1, | |
4536 (long)MAXLNUM, -nmatch_tl); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4537 if (subflags.do_ask) |
7 | 4538 deleted_lines(lnum, nmatch_tl); |
4539 --lnum; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4540 line2 -= nmatch_tl; // nr of lines decreases |
7 | 4541 nmatch_tl = 0; |
4542 } | |
4543 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4544 // 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
|
4545 // changed flag each time. |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4546 if (subflags.do_ask) |
7 | 4547 changed_bytes(lnum, 0); |
4548 else | |
4549 { | |
4550 if (first_line == 0) | |
4551 first_line = lnum; | |
4552 last_line = lnum + 1; | |
4553 } | |
4554 | |
4555 sub_firstlnum = lnum; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4556 vim_free(sub_firstline); // free the temp buffer |
7 | 4557 sub_firstline = new_start; |
4558 new_start = NULL; | |
4559 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
4560 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
4561 - prev_matchcol; | |
4562 copycol = 0; | |
4563 } | |
4564 if (nmatch == -1 && !lastone) | |
4565 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
|
4566 sub_firstlnum, matchcol, NULL, NULL); |
7 | 4567 |
4568 /* | |
4569 * 5. break if there isn't another match in this line | |
4570 */ | |
4571 if (nmatch <= 0) | |
1499 | 4572 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4573 // 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
|
4574 // 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
|
4575 // found the match. |
1499 | 4576 if (nmatch == -1) |
4577 lnum -= regmatch.startpos[0].lnum; | |
7 | 4578 break; |
1499 | 4579 } |
7 | 4580 } |
4581 | |
4582 line_breakcheck(); | |
4583 } | |
4584 | |
4585 if (did_sub) | |
4586 ++sub_nlines; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4587 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
|
4588 VIM_CLEAR(sub_firstline); // free the copy of the original line |
7 | 4589 } |
4590 | |
4591 line_breakcheck(); | |
4592 } | |
4593 | |
4594 if (first_line != 0) | |
4595 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4596 // 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
|
4597 // 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
|
4598 // deleted lines). |
7 | 4599 i = curbuf->b_ml.ml_line_count - old_line_count; |
4600 changed_lines(first_line, 0, last_line - i, i); | |
4601 } | |
4602 | |
4603 outofmem: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4604 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
|
4605 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4606 // ":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
|
4607 if (subflags.do_count) |
170 | 4608 curwin->w_cursor = old_cursor; |
4609 | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4610 if (sub_nsubs > start_nsubs) |
7 | 4611 { |
18619
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4612 if (!cmdmod.lockmarks) |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4613 { |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4614 // Set the '[ and '] marks. |
788d76db02ac
patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents:
18566
diff
changeset
|
4615 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
|
4616 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
|
4617 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
|
4618 } |
7 | 4619 |
4620 if (!global_busy) | |
4621 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4622 // 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
|
4623 if (!subflags.do_ask) |
3394 | 4624 { |
4625 if (endcolumn) | |
4626 coladvance((colnr_T)MAXCOL); | |
4627 else | |
4628 beginline(BL_WHITE | BL_FIX); | |
4629 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4630 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
|
4631 msg(""); |
7 | 4632 } |
4633 else | |
4634 global_need_beginline = TRUE; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4635 if (subflags.do_print) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4636 print_line(curwin->w_cursor.lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4637 subflags.do_number, subflags.do_list); |
7 | 4638 } |
4639 else if (!global_busy) | |
4640 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4641 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
|
4642 emsg(_(e_interr)); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4643 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
|
4644 msg(""); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4645 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
|
4646 semsg(_(e_patnotf2), get_search_pat()); |
7 | 4647 } |
4648 | |
4035 | 4649 #ifdef FEAT_FOLDING |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4650 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
|
4651 // Cursor position may require updating |
4035 | 4652 changed_window_setting(); |
4653 #endif | |
4654 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
4655 vim_regfree(regmatch.regprog); |
6789 | 4656 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4657 // 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
|
4658 subflags.do_all = save_do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4659 subflags.do_ask = save_do_ask; |
7 | 4660 } |
4661 | |
4662 /* | |
4663 * Give message for number of substitutions. | |
4664 * Can also be used after a ":global" command. | |
4665 * Return TRUE if a message was given. | |
4666 */ | |
484 | 4667 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4668 do_sub_msg( |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4669 int count_only) // used 'n' flag for ":s" |
7 | 4670 { |
4671 /* | |
4672 * Only report substitutions when: | |
4673 * - more than 'report' substitutions | |
4674 * - command was typed by user, or number of changed lines > 'report' | |
4675 * - giving messages is not disabled by 'lazyredraw' | |
4676 */ | |
170 | 4677 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
4678 || count_only) | |
7 | 4679 && messaging()) |
4680 { | |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4681 char *msg_single; |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4682 char *msg_plural; |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4683 |
7 | 4684 if (got_int) |
4685 STRCPY(msg_buf, _("(Interrupted) ")); | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
4686 else |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
4687 *msg_buf = NUL; |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4688 |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4689 msg_single = count_only |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4690 ? 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
|
4691 "%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
|
4692 : 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
|
4693 "%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
|
4694 msg_plural = count_only |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14513
diff
changeset
|
4695 ? 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
|
4696 "%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
|
4697 : 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
|
4698 "%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
|
4699 |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
4700 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
|
4701 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
|
4702 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
|
4703 |
7 | 4704 if (msg(msg_buf)) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4705 // 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
|
4706 set_keep_msg((char_u *)msg_buf, 0); |
7 | 4707 return TRUE; |
4708 } | |
4709 if (got_int) | |
4710 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
4711 emsg(_(e_interr)); |
7 | 4712 return TRUE; |
4713 } | |
4714 return FALSE; | |
4715 } | |
4716 | |
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
|
4717 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
|
4718 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
|
4719 { |
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
|
4720 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
|
4721 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
|
4722 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
|
4723 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
|
4724 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
|
4725 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
|
4726 } |
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
|
4727 |
7 | 4728 /* |
4729 * Execute a global command of the form: | |
4730 * | |
4731 * g/pattern/X : execute X on all lines where pattern matches | |
4732 * v/pattern/X : execute X on all lines where pattern does not match | |
4733 * | |
4734 * where 'X' is an EX command | |
4735 * | |
4736 * The command character (as well as the trailing slash) is optional, and | |
4737 * is assumed to be 'p' if missing. | |
4738 * | |
4739 * This is implemented in two passes: first we scan the file for the pattern and | |
3786 | 4740 * set a mark for each line that (not) matches. Secondly we execute the command |
7 | 4741 * for each line that has a mark. This is required because after deleting |
4742 * lines we do not know where to search for the next match. | |
4743 */ | |
4744 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4745 ex_global(exarg_T *eap) |
7 | 4746 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4747 linenr_T lnum; // line number according to old situation |
170 | 4748 int ndone = 0; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4749 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
|
4750 char_u *cmd; // command argument |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4751 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4752 char_u delim; // delimiter, normally '/' |
7 | 4753 char_u *pat; |
4754 regmmatch_T regmatch; | |
4755 int match; | |
4756 int which_pat; | |
4757 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4758 // 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
|
4759 // ":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
|
4760 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
|
4761 || 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
|
4762 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4763 // 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
|
4764 emsg(_("E147: Cannot do :global recursive with a range")); |
7 | 4765 return; |
4766 } | |
4767 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4768 if (eap->forceit) // ":global!" is like ":vglobal" |
7 | 4769 type = 'v'; |
4770 else | |
4771 type = *eap->cmd; | |
4772 cmd = eap->arg; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4773 which_pat = RE_LAST; // default: use last used regexp |
7 | 4774 |
4775 /* | |
4776 * undocumented vi feature: | |
4777 * "\/" and "\?": use previous search pattern. | |
4778 * "\&": use previous substitute pattern. | |
4779 */ | |
4780 if (*cmd == '\\') | |
4781 { | |
4782 ++cmd; | |
4783 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
4784 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
4785 emsg(_(e_backslash)); |
7 | 4786 return; |
4787 } | |
4788 if (*cmd == '&') | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4789 which_pat = RE_SUBST; // use previous substitute pattern |
7 | 4790 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4791 which_pat = RE_SEARCH; // use previous search pattern |
7 | 4792 ++cmd; |
4793 pat = (char_u *)""; | |
4794 } | |
4795 else if (*cmd == NUL) | |
4796 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
4797 emsg(_("E148: Regular expression missing from global")); |
7 | 4798 return; |
4799 } | |
4800 else | |
4801 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4802 delim = *cmd; // get the delimiter |
7 | 4803 if (delim) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4804 ++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
|
4805 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
|
4806 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
|
4807 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
|
4808 *cmd++ = NUL; // replace it with a NUL |
7 | 4809 } |
4810 | |
4811 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) | |
4812 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
4813 emsg(_(e_invcmd)); |
7 | 4814 return; |
4815 } | |
4816 | |
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
|
4817 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
|
4818 { |
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
|
4819 lnum = curwin->w_cursor.lnum; |
1521 | 4820 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
|
4821 (colnr_T)0, NULL, NULL); |
7 | 4822 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
|
4823 global_exe_one(cmd, lnum); |
7 | 4824 } |
4825 else | |
6116 | 4826 { |
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
|
4827 /* |
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
|
4828 * 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
|
4829 */ |
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
|
4830 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
|
4831 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4832 // 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
|
4833 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
|
4834 (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
|
4835 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
|
4836 { |
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
|
4837 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
|
4838 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
|
4839 } |
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
|
4840 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
|
4841 } |
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
|
4842 |
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
|
4843 /* |
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
|
4844 * 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
|
4845 */ |
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
|
4846 if (got_int) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
4847 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
|
4848 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
|
4849 { |
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
|
4850 if (type == 'v') |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
4851 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
|
4852 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
4853 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
|
4854 } |
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
|
4855 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
|
4856 { |
6116 | 4857 #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
|
4858 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
|
4859 #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
|
4860 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
|
4861 #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
|
4862 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
|
4863 #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
|
4864 } |
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
|
4865 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4866 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
|
4867 } |
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
|
4868 |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
4869 vim_regfree(regmatch.regprog); |
7 | 4870 } |
4871 | |
4872 /* | |
4873 * Execute "cmd" on lines marked with ml_setmarked(). | |
4874 */ | |
4875 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4876 global_exe(char_u *cmd) |
7 | 4877 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4878 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
|
4879 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
|
4880 linenr_T lnum; // line number according to old situation |
7 | 4881 |
4882 /* | |
4883 * Set current position only once for a global command. | |
4884 * If global_busy is set, setpcmark() will not do anything. | |
4885 * If there is an error, global_busy will be incremented. | |
4886 */ | |
4887 setpcmark(); | |
4888 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4889 // When the command writes a message, don't overwrite the command. |
7 | 4890 msg_didout = TRUE; |
4891 | |
2127
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
4892 sub_nsubs = 0; |
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
4893 sub_nlines = 0; |
7 | 4894 global_need_beginline = FALSE; |
4895 global_busy = 1; | |
4896 old_lcount = curbuf->b_ml.ml_line_count; | |
4897 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) | |
4898 { | |
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
|
4899 global_exe_one(cmd, lnum); |
7 | 4900 ui_breakcheck(); |
4901 } | |
4902 | |
4903 global_busy = 0; | |
4904 if (global_need_beginline) | |
4905 beginline(BL_WHITE | BL_FIX); | |
4906 else | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4907 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
|
4908 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4909 // 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
|
4910 // line may move it on the screen |
39 | 4911 changed_line_abv_curs(); |
4912 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4913 // 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
|
4914 // command with the report for number of changes. |
7 | 4915 if (msg_col == 0 && msg_scrolled == 0) |
4916 msg_didout = FALSE; | |
4917 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
4918 // 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
|
4919 // 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
|
4920 // 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
|
4921 // we are in after execution is different from the buffer we started in. |
2819 | 4922 if (!do_sub_msg(FALSE) && curbuf == old_buf) |
7 | 4923 msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
4924 } | |
4925 | |
4926 #ifdef FEAT_VIMINFO | |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4927 /* |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4928 * Get the previous substitute pattern. |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4929 */ |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4930 char_u * |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4931 get_old_sub(void) |
7 | 4932 { |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4933 return old_sub; |
7 | 4934 } |
4935 | |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4936 /* |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4937 * 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
|
4938 */ |
7 | 4939 void |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4940 set_old_sub(char_u *val) |
7 | 4941 { |
17476
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4942 vim_free(old_sub); |
d4b2a212fa2f
patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
4943 old_sub = val; |
7 | 4944 } |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17431
diff
changeset
|
4945 #endif // FEAT_VIMINFO |
7 | 4946 |
359 | 4947 #if defined(EXITFREE) || defined(PROTO) |
4948 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4949 free_old_sub(void) |
359 | 4950 { |
4951 vim_free(old_sub); | |
4952 } | |
4953 #endif | |
4954 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12297
diff
changeset
|
4955 #if defined(FEAT_QUICKFIX) || defined(PROTO) |
7 | 4956 /* |
4957 * 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
|
4958 * Makes the preview window the current window. |
735 | 4959 * Return TRUE when it was created. |
7 | 4960 */ |
735 | 4961 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4962 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
|
4963 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
|
4964 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
|
4965 use_popup_T use_popup) // use other popup window |
7 | 4966 { |
4967 win_T *wp; | |
4968 | |
4969 # ifdef FEAT_GUI | |
4970 need_mouse_correct = TRUE; | |
4971 # endif | |
4972 | |
4973 /* | |
4974 * If there is already a preview window open, use that one. | |
4975 */ | |
4976 if (!curwin->w_p_pvw) | |
4977 { | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
4978 # 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
|
4979 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
|
4980 { |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
4981 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
|
4982 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
|
4983 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
|
4984 } |
18396
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
4985 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
|
4986 { |
c75da1064e33
patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
4987 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
|
4988 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
|
4989 { |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
4990 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
|
4991 popup_show(wp); |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
4992 else |
ba5d8c5d77d7
patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
4993 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
|
4994 // 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
|
4995 // 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
|
4996 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
|
4997 } |
17431
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
4998 } |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
4999 else |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5000 # endif |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5001 { |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5002 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
|
5003 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
|
5004 break; |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5005 } |
7 | 5006 if (wp != NULL) |
816 | 5007 win_enter(wp, undo_sync); |
7 | 5008 else |
5009 { | |
5010 /* | |
5011 * There is no preview window open yet. Create one. | |
5012 */ | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18742
diff
changeset
|
5013 # 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
|
5014 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
|
5015 || 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
|
5016 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
|
5017 # endif |
ce35cdbe9f74
patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents:
17190
diff
changeset
|
5018 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) == FAIL) |
735 | 5019 return FALSE; |
7 | 5020 curwin->w_p_pvw = TRUE; |
5021 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
|
5022 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
|
5023 // and 'cursorbind' |
7 | 5024 # 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
|
5025 curwin->w_p_diff = FALSE; // no 'diff' |
7 | 5026 # endif |
5027 # 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
|
5028 curwin->w_p_fdc = 0; // no 'foldcolumn' |
7 | 5029 # endif |
735 | 5030 return TRUE; |
7 | 5031 } |
5032 } | |
735 | 5033 return FALSE; |
7 | 5034 } |
5035 | |
5036 #endif | |
5037 | |
5038 | |
5039 /* | |
5040 * ":help": open a read-only window on a help file | |
5041 */ | |
5042 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5043 ex_help(exarg_T *eap) |
7 | 5044 { |
5045 char_u *arg; | |
5046 char_u *tag; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5047 FILE *helpfd; // file descriptor of help file |
7 | 5048 int n; |
5049 int i; | |
5050 win_T *wp; | |
5051 int num_matches; | |
5052 char_u **matches; | |
5053 char_u *p; | |
5054 int empty_fnum = 0; | |
5055 int alt_fnum = 0; | |
5056 buf_T *buf; | |
5057 #ifdef FEAT_MULTI_LANG | |
5058 int len; | |
9 | 5059 char_u *lang; |
7 | 5060 #endif |
3112 | 5061 #ifdef FEAT_FOLDING |
5062 int old_KeyTyped = KeyTyped; | |
5063 #endif | |
7 | 5064 |
5065 if (eap != NULL) | |
5066 { | |
5067 /* | |
5068 * A ":help" command ends at the first LF, or at a '|' that is | |
5069 * followed by some text. Set nextcmd to the following command. | |
5070 */ | |
5071 for (arg = eap->arg; *arg; ++arg) | |
5072 { | |
5073 if (*arg == '\n' || *arg == '\r' | |
5074 || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) | |
5075 { | |
5076 *arg++ = NUL; | |
5077 eap->nextcmd = arg; | |
5078 break; | |
5079 } | |
5080 } | |
5081 arg = eap->arg; | |
5082 | |
3446 | 5083 if (eap->forceit && *arg == NUL && !curbuf->b_help) |
7 | 5084 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
5085 emsg(_("E478: Don't panic!")); |
7 | 5086 return; |
5087 } | |
5088 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5089 if (eap->skip) // not executing commands |
7 | 5090 return; |
5091 } | |
5092 else | |
5093 arg = (char_u *)""; | |
5094 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5095 // remove trailing blanks |
7 | 5096 p = arg + STRLEN(arg) - 1; |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
5097 while (p > arg && VIM_ISWHITE(*p) && p[-1] != '\\') |
7 | 5098 *p-- = NUL; |
5099 | |
5100 #ifdef FEAT_MULTI_LANG | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5101 // Check for a specified language |
9 | 5102 lang = check_help_lang(arg); |
7 | 5103 #endif |
5104 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5105 // When no argument given go to the index. |
7 | 5106 if (*arg == NUL) |
5107 arg = (char_u *)"help.txt"; | |
5108 | |
5109 /* | |
5110 * Check if there is a match for the argument. | |
5111 */ | |
5112 n = find_help_tags(arg, &num_matches, &matches, | |
5113 eap != NULL && eap->forceit); | |
5114 | |
5115 i = 0; | |
5116 #ifdef FEAT_MULTI_LANG | |
5117 if (n != FAIL && lang != NULL) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5118 // Find first item with the requested language. |
7 | 5119 for (i = 0; i < num_matches; ++i) |
5120 { | |
835 | 5121 len = (int)STRLEN(matches[i]); |
7 | 5122 if (len > 3 && matches[i][len - 3] == '@' |
5123 && STRICMP(matches[i] + len - 2, lang) == 0) | |
5124 break; | |
5125 } | |
5126 #endif | |
5127 if (i >= num_matches || n == FAIL) | |
5128 { | |
5129 #ifdef FEAT_MULTI_LANG | |
5130 if (lang != NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
5131 semsg(_("E661: Sorry, no '%s' help for %s"), lang, arg); |
7 | 5132 else |
5133 #endif | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
5134 semsg(_("E149: Sorry, no help for %s"), arg); |
7 | 5135 if (n != FAIL) |
5136 FreeWild(num_matches, matches); | |
5137 return; | |
5138 } | |
5139 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5140 // The first match (in the requested language) is the best match. |
7 | 5141 tag = vim_strsave(matches[i]); |
5142 FreeWild(num_matches, matches); | |
5143 | |
5144 #ifdef FEAT_GUI | |
5145 need_mouse_correct = TRUE; | |
5146 #endif | |
5147 | |
5148 /* | |
5149 * Re-use an existing help window or open a new one. | |
684 | 5150 * Always open a new one for ":tab help". |
7 | 5151 */ |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12297
diff
changeset
|
5152 if (!bt_help(curwin->w_buffer) || cmdmod.tab != 0) |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12297
diff
changeset
|
5153 { |
684 | 5154 if (cmdmod.tab != 0) |
5155 wp = NULL; | |
5156 else | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
5157 FOR_ALL_WINDOWS(wp) |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11666
diff
changeset
|
5158 if (bt_help(wp->w_buffer)) |
684 | 5159 break; |
7 | 5160 if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
5161 win_enter(wp, TRUE); | |
5162 else | |
5163 { | |
5164 /* | |
5165 * There is no help window yet. | |
5166 * Try to open the file specified by the "helpfile" option. | |
5167 */ | |
5168 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL) | |
5169 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
5170 smsg(_("Sorry, help file \"%s\" not found"), p_hf); |
7 | 5171 goto erret; |
5172 } | |
5173 fclose(helpfd); | |
5174 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5175 // Split off help window; put it at far top if no position |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5176 // specified, the current window is vertically split and |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5177 // narrow. |
7 | 5178 n = WSP_HELP; |
5179 if (cmdmod.split == 0 && curwin->w_width != Columns | |
684 | 5180 && curwin->w_width < 80) |
7 | 5181 n |= WSP_TOP; |
5182 if (win_split(0, n) == FAIL) | |
684 | 5183 goto erret; |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12297
diff
changeset
|
5184 |
7 | 5185 if (curwin->w_height < p_hh) |
5186 win_setheight((int)p_hh); | |
5187 | |
5188 /* | |
5189 * Open help file (do_ecmd() will set b_help flag, readfile() will | |
5190 * set b_p_ro flag). | |
5191 * Set the alternate file to the previously edited file. | |
5192 */ | |
5193 alt_fnum = curbuf->b_fnum; | |
5194 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL, | |
1743 | 5195 ECMD_HIDE + ECMD_SET_HELP, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5196 NULL); // buffer is still open, don't store info |
22 | 5197 if (!cmdmod.keepalt) |
5198 curwin->w_alt_fnum = alt_fnum; | |
7 | 5199 empty_fnum = curbuf->b_fnum; |
5200 } | |
5201 } | |
5202 | |
5203 if (!p_im) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5204 restart_edit = 0; // don't want insert mode in help file |
7 | 5205 |
3112 | 5206 #ifdef FEAT_FOLDING |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5207 // Restore KeyTyped, setting 'filetype=help' may reset it. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5208 // It is needed for do_tag top open folds under the cursor. |
3112 | 5209 KeyTyped = old_KeyTyped; |
5210 #endif | |
5211 | |
7 | 5212 if (tag != NULL) |
5213 do_tag(tag, DT_HELP, 1, FALSE, TRUE); | |
5214 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5215 // Delete the empty buffer if we're not using it. Careful: autocommands |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5216 // may have jumped to another window, check that the buffer is not in a |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5217 // window. |
7 | 5218 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum) |
5219 { | |
5220 buf = buflist_findnr(empty_fnum); | |
819 | 5221 if (buf != NULL && buf->b_nwindows == 0) |
7 | 5222 wipe_buffer(buf, TRUE); |
5223 } | |
5224 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5225 // keep the previous alternate file |
22 | 5226 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt) |
7 | 5227 curwin->w_alt_fnum = alt_fnum; |
5228 | |
5229 erret: | |
5230 vim_free(tag); | |
5231 } | |
5232 | |
6228 | 5233 /* |
6234 | 5234 * ":helpclose": Close one help window |
6228 | 5235 */ |
5236 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5237 ex_helpclose(exarg_T *eap UNUSED) |
6228 | 5238 { |
5239 win_T *win; | |
5240 | |
5241 FOR_ALL_WINDOWS(win) | |
5242 { | |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11666
diff
changeset
|
5243 if (bt_help(win->w_buffer)) |
6228 | 5244 { |
5245 win_close(win, FALSE); | |
6234 | 5246 return; |
6228 | 5247 } |
5248 } | |
5249 } | |
7 | 5250 |
9 | 5251 #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
5252 /* | |
5253 * In an argument search for a language specifiers in the form "@xx". | |
5254 * Changes the "@" to NUL if found, and returns a pointer to "xx". | |
5255 * Returns NULL if not found. | |
5256 */ | |
5257 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5258 check_help_lang(char_u *arg) |
9 | 5259 { |
835 | 5260 int len = (int)STRLEN(arg); |
9 | 5261 |
5262 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2]) | |
5263 && ASCII_ISALPHA(arg[len - 1])) | |
5264 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5265 arg[len - 3] = NUL; // remove the '@' |
9 | 5266 return arg + len - 2; |
5267 } | |
5268 return NULL; | |
5269 } | |
5270 #endif | |
5271 | |
7 | 5272 /* |
5273 * Return a heuristic indicating how well the given string matches. The | |
5274 * smaller the number, the better the match. This is the order of priorities, | |
5275 * from best match to worst match: | |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
18977
diff
changeset
|
5276 * - Match with least alphanumeric characters is better. |
7 | 5277 * - Match with least total characters is better. |
5278 * - Match towards the start is better. | |
5279 * - Match starting with "+" is worse (feature instead of command) | |
5280 * Assumption is made that the matched_string passed has already been found to | |
5281 * match some string for which help is requested. webb. | |
5282 */ | |
5283 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5284 help_heuristic( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5285 char_u *matched_string, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5286 int offset, // offset for match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5287 int wrong_case) // no matching case |
7 | 5288 { |
5289 int num_letters; | |
5290 char_u *p; | |
5291 | |
5292 num_letters = 0; | |
5293 for (p = matched_string; *p; p++) | |
5294 if (ASCII_ISALNUM(*p)) | |
5295 num_letters++; | |
5296 | |
5297 /* | |
5298 * Multiply the number of letters by 100 to give it a much bigger | |
5299 * weighting than the number of characters. | |
5300 * If there only is a match while ignoring case, add 5000. | |
5301 * If the match starts in the middle of a word, add 10000 to put it | |
5302 * somewhere in the last half. | |
5303 * If the match is more than 2 chars from the start, multiply by 200 to | |
5304 * put it after matches at the start. | |
5305 */ | |
5306 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 | |
5307 && ASCII_ISALNUM(matched_string[offset - 1])) | |
5308 offset += 10000; | |
5309 else if (offset > 2) | |
5310 offset *= 200; | |
5311 if (wrong_case) | |
5312 offset += 5000; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5313 // Features are less interesting than the subjects themselves, but "+" |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5314 // alone is not a feature. |
7 | 5315 if (matched_string[0] == '+' && matched_string[1] != NUL) |
5316 offset += 100; | |
5317 return (int)(100 * num_letters + STRLEN(matched_string) + offset); | |
5318 } | |
5319 | |
5320 /* | |
5321 * Compare functions for qsort() below, that checks the help heuristics number | |
5322 * that has been put after the tagname by find_tags(). | |
5323 */ | |
5324 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5325 help_compare(const void *s1, const void *s2) |
7 | 5326 { |
5327 char *p1; | |
5328 char *p2; | |
18977
5bef1043abff
patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
5329 int cmp; |
7 | 5330 |
5331 p1 = *(char **)s1 + strlen(*(char **)s1) + 1; | |
5332 p2 = *(char **)s2 + strlen(*(char **)s2) + 1; | |
18977
5bef1043abff
patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
5333 |
5bef1043abff
patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
5334 // Compare by help heuristic number first. |
5bef1043abff
patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
5335 cmp = strcmp(p1, p2); |
5bef1043abff
patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
5336 if (cmp != 0) |
5bef1043abff
patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
5337 return cmp; |
5bef1043abff
patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
5338 |
5bef1043abff
patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
5339 // Compare by strings as tie-breaker when same heuristic number. |
5bef1043abff
patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
5340 return strcmp(*(char **)s1, *(char **)s2); |
7 | 5341 } |
5342 | |
5343 /* | |
5344 * Find all help tags matching "arg", sort them and return in matches[], with | |
5345 * the number of matches in num_matches. | |
5346 * The matches will be sorted with a "best" match algorithm. | |
5347 * When "keep_lang" is TRUE try keeping the language of the current buffer. | |
5348 */ | |
5349 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5350 find_help_tags( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5351 char_u *arg, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5352 int *num_matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5353 char_u ***matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5354 int keep_lang) |
7 | 5355 { |
5356 char_u *s, *d; | |
5357 int i; | |
5358 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", | |
445 | 5359 "/*", "/\\*", "\"*", "**", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
5360 "cpo-*", "/\\(\\)", "/\\%(\\)", |
14443
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5361 "?", ":?", "?<CR>", "g?", "g?g?", "g??", |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5362 "-?", "q?", "v_g?", |
279 | 5363 "/\\?", "/\\z(\\)", "\\=", ":s\\=", |
10851
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
5364 "[count]", "[quotex]", |
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
5365 "[range]", ":[range]", |
5647 | 5366 "[pattern]", "\\|", "\\%$", |
5367 "s/\\~", "s/\\U", "s/\\L", | |
5368 "s/\\1", "s/\\2", "s/\\3", "s/\\9"}; | |
7 | 5369 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", |
445 | 5370 "/star", "/\\\\star", "quotestar", "starstar", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
5371 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)", |
14443
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5372 "?", ":?", "?<CR>", "g?", "g?g?", "g??", |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5373 "-?", "q?", "v_g?", |
279 | 5374 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", |
10851
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
5375 "\\[count]", "\\[quotex]", |
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
5376 "\\[range]", ":\\[range]", |
5647 | 5377 "\\[pattern]", "\\\\bar", "/\\\\%\\$", |
5867 | 5378 "s/\\\\\\~", "s/\\\\U", "s/\\\\L", |
5647 | 5379 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"}; |
14443
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5380 static char *(expr_table[]) = {"!=?", "!~?", "<=?", "<?", "==?", "=~?", |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5381 ">=?", ">?", "is?", "isnot?"}; |
7 | 5382 int flags; |
5383 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5384 d = IObuff; // assume IObuff is long enough! |
7 | 5385 |
14443
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5386 if (STRNICMP(arg, "expr-", 5) == 0) |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5387 { |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5388 // When the string starting with "expr-" and containing '?' and matches |
18237
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5389 // the table, it is taken literally (but ~ is escaped). Otherwise '?' |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5390 // is recognized as a wildcard. |
14443
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5391 for (i = (int)(sizeof(expr_table) / sizeof(char *)); --i >= 0; ) |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5392 if (STRCMP(arg + 5, expr_table[i]) == 0) |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5393 { |
18237
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5394 int si = 0, di = 0; |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5395 |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5396 for (;;) |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5397 { |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5398 if (arg[si] == '~') |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5399 d[di++] = '\\'; |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5400 d[di++] = arg[si]; |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5401 if (arg[si] == NUL) |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5402 break; |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5403 ++si; |
d0dfb3b0fe31
patch 8.1.2113: ":help expr-!~?" only works after searching
Bram Moolenaar <Bram@vim.org>
parents:
18221
diff
changeset
|
5404 } |
14443
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5405 break; |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5406 } |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5407 } |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5408 else |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5409 { |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5410 // Recognize a few exceptions to the rule. Some strings that contain |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5411 // '*' with "star". Otherwise '*' is recognized as a wildcard. |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5412 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; ) |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5413 if (STRCMP(arg, mtable[i]) == 0) |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5414 { |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5415 STRCPY(d, rtable[i]); |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5416 break; |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5417 } |
e1c6aee62a72
patch 8.1.0235: more help tags that jump to the wrong location
Christian Brabandt <cb@256bit.org>
parents:
14435
diff
changeset
|
5418 } |
7 | 5419 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5420 if (i < 0) // no match in table |
7 | 5421 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5422 // Replace "\S" with "/\\S", etc. Otherwise every tag is matched. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5423 // Also replace "\%^" and "\%(", they match every tag too. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5424 // Also "\zs", "\z1", etc. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5425 // Also "\@<", "\@=", "\@<=", etc. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5426 // And also "\_$" and "\_^". |
7 | 5427 if (arg[0] == '\\' |
5428 && ((arg[1] != NUL && arg[2] == NUL) | |
5429 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL | |
5430 && arg[2] != NUL))) | |
5431 { | |
5432 STRCPY(d, "/\\\\"); | |
5433 STRCPY(d + 3, arg + 1); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5434 // Check for "/\\_$", should be "/\\_\$" |
7 | 5435 if (d[3] == '_' && d[4] == '$') |
5436 STRCPY(d + 4, "\\$"); | |
5437 } | |
5438 else | |
5439 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5440 // Replace: |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5441 // "[:...:]" with "\[:...:]" |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5442 // "[++...]" with "\[++...]" |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5443 // "\{" with "\\{" -- matching "} \}" |
3786 | 5444 if ((arg[0] == '[' && (arg[1] == ':' |
5445 || (arg[1] == '+' && arg[2] == '+'))) | |
5446 || (arg[0] == '\\' && arg[1] == '{')) | |
7 | 5447 *d++ = '\\'; |
5448 | |
8556
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
5449 /* |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
5450 * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'. |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
5451 */ |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
5452 if (*arg == '(' && arg[1] == '\'') |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
5453 arg++; |
7 | 5454 for (s = arg; *s; ++s) |
5455 { | |
5456 /* | |
5457 * Replace "|" with "bar" and '"' with "quote" to match the name of | |
5458 * the tags for these commands. | |
5459 * Replace "*" with ".*" and "?" with "." to match command line | |
5460 * completion. | |
5461 * Insert a backslash before '~', '$' and '.' to avoid their | |
5462 * special meaning. | |
5463 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5464 if (d - IObuff > IOSIZE - 10) // getting too long!? |
7 | 5465 break; |
5466 switch (*s) | |
5467 { | |
5468 case '|': STRCPY(d, "bar"); | |
5469 d += 3; | |
5470 continue; | |
5471 case '"': STRCPY(d, "quote"); | |
5472 d += 5; | |
5473 continue; | |
5474 case '*': *d++ = '.'; | |
5475 break; | |
5476 case '?': *d++ = '.'; | |
5477 continue; | |
5478 case '$': | |
5479 case '.': | |
5480 case '~': *d++ = '\\'; | |
5481 break; | |
5482 } | |
5483 | |
5484 /* | |
5485 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make | |
5486 * ":help i_^_CTRL-D" work. | |
5487 * Insert '-' before and after "CTRL-X" when applicable. | |
5488 */ | |
5489 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1]) | |
5490 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL))) | |
5491 { | |
5282
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
5492 if (d > IObuff && d[-1] != '_' && d[-1] != '\\') |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5493 *d++ = '_'; // prepend a '_' to make x_CTRL-x |
7 | 5494 STRCPY(d, "CTRL-"); |
5495 d += 5; | |
5496 if (*s < ' ') | |
5497 { | |
5498 #ifdef EBCDIC | |
5499 *d++ = CtrlChar(*s); | |
5500 #else | |
5501 *d++ = *s + '@'; | |
5502 #endif | |
5503 if (d[-1] == '\\') | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5504 *d++ = '\\'; // double a backslash |
7 | 5505 } |
5506 else | |
5507 *d++ = *++s; | |
5508 if (s[1] != NUL && s[1] != '_') | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5509 *d++ = '_'; // append a '_' |
7 | 5510 continue; |
5511 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5512 else if (*s == '^') // "^" or "CTRL-^" or "^_" |
7 | 5513 *d++ = '\\'; |
5514 | |
5515 /* | |
5516 * Insert a backslash before a backslash after a slash, for search | |
5517 * pattern tags: "/\|" --> "/\\|". | |
5518 */ | |
5519 else if (s[0] == '\\' && s[1] != '\\' | |
5520 && *arg == '/' && s == arg + 1) | |
5521 *d++ = '\\'; | |
5522 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5523 // "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5524 // "CTRL-\_CTRL-N" |
7 | 5525 if (STRNICMP(s, "CTRL-\\_", 7) == 0) |
5526 { | |
5527 STRCPY(d, "CTRL-\\\\"); | |
5528 d += 7; | |
5529 s += 6; | |
5530 } | |
5531 | |
5532 *d++ = *s; | |
5533 | |
5534 /* | |
8883
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
5535 * If tag contains "({" or "([", tag terminates at the "(". |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
5536 * This is for help on functions, e.g.: abs({expr}). |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
5537 */ |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
5538 if (*s == '(' && (s[1] == '{' || s[1] =='[')) |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
5539 break; |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
5540 |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
5541 /* |
7 | 5542 * If tag starts with ', toss everything after a second '. Fixes |
5543 * CTRL-] on 'option'. (would include the trailing '.'). | |
5544 */ | |
5545 if (*s == '\'' && s > arg && *arg == '\'') | |
5546 break; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5547 // Also '{' and '}'. |
9234
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
5548 if (*s == '}' && s > arg && *arg == '{') |
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
5549 break; |
7 | 5550 } |
5551 *d = NUL; | |
3480 | 5552 |
5553 if (*IObuff == '`') | |
5554 { | |
5555 if (d > IObuff + 2 && d[-1] == '`') | |
5556 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5557 // remove the backticks from `command` |
3480 | 5558 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); |
5559 d[-2] = NUL; | |
5560 } | |
5561 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',') | |
5562 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5563 // remove the backticks and comma from `command`, |
3480 | 5564 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); |
5565 d[-3] = NUL; | |
5566 } | |
5567 else if (d > IObuff + 4 && d[-3] == '`' | |
5568 && d[-2] == '\\' && d[-1] == '.') | |
5569 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5570 // remove the backticks and dot from `command`\. |
3480 | 5571 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); |
5572 d[-4] = NUL; | |
5573 } | |
5574 } | |
7 | 5575 } |
5576 } | |
5577 | |
5578 *matches = (char_u **)""; | |
5579 *num_matches = 0; | |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5580 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE | TAG_NO_TAGFUNC; |
7 | 5581 if (keep_lang) |
5582 flags |= TAG_KEEP_LANG; | |
1696 | 5583 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK |
7 | 5584 && *num_matches > 0) |
1696 | 5585 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5586 // Sort the matches found on the heuristic number that is after the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5587 // tag name. |
7 | 5588 qsort((void *)*matches, (size_t)*num_matches, |
5589 sizeof(char_u *), help_compare); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5590 // Delete more than TAG_MANY to reduce the size of the listing. |
1696 | 5591 while (*num_matches > TAG_MANY) |
5592 vim_free((*matches)[--*num_matches]); | |
5593 } | |
7 | 5594 return OK; |
5595 } | |
5596 | |
5597 /* | |
6365 | 5598 * Called when starting to edit a buffer for a help file. |
5599 */ | |
5600 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5601 prepare_help_buffer(void) |
6365 | 5602 { |
5603 char_u *p; | |
5604 | |
5605 curbuf->b_help = TRUE; | |
5606 #ifdef FEAT_QUICKFIX | |
5607 set_string_option_direct((char_u *)"buftype", -1, | |
5608 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0); | |
5609 #endif | |
5610 | |
5611 /* | |
5612 * Always set these options after jumping to a help tag, because the | |
5613 * user may have an autocommand that gets in the way. | |
5614 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and | |
5615 * latin1 word characters (for translated help files). | |
5616 * Only set it when needed, buf_init_chartab() is some work. | |
5617 */ | |
5618 p = | |
5619 #ifdef EBCDIC | |
5620 (char_u *)"65-255,^*,^|,^\""; | |
5621 #else | |
5622 (char_u *)"!-~,^*,^|,^\",192-255"; | |
5623 #endif | |
5624 if (STRCMP(curbuf->b_p_isk, p) != 0) | |
5625 { | |
5626 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0); | |
5627 check_buf_options(curbuf); | |
5628 (void)buf_init_chartab(curbuf, FALSE); | |
5629 } | |
5630 | |
6415 | 5631 #ifdef FEAT_FOLDING |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5632 // Don't use the global foldmethod. |
6365 | 5633 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual", |
5634 OPT_FREE|OPT_LOCAL, 0); | |
6415 | 5635 #endif |
6365 | 5636 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5637 curbuf->b_p_ts = 8; // 'tabstop' is 8 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5638 curwin->w_p_list = FALSE; // no list mode |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5639 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5640 curbuf->b_p_ma = FALSE; // not modifiable |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5641 curbuf->b_p_bin = FALSE; // reset 'bin' before reading file |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5642 curwin->w_p_nu = 0; // no line numbers |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5643 curwin->w_p_rnu = 0; // no relative line numbers |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5644 RESET_BINDING(curwin); // no scroll or cursor binding |
6365 | 5645 #ifdef FEAT_ARABIC |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5646 curwin->w_p_arab = FALSE; // no arabic mode |
6365 | 5647 #endif |
5648 #ifdef FEAT_RIGHTLEFT | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5649 curwin->w_p_rl = FALSE; // help window is left-to-right |
6365 | 5650 #endif |
5651 #ifdef FEAT_FOLDING | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5652 curwin->w_p_fen = FALSE; // No folding in the help window |
6365 | 5653 #endif |
5654 #ifdef FEAT_DIFF | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5655 curwin->w_p_diff = FALSE; // No 'diff' |
6365 | 5656 #endif |
5657 #ifdef FEAT_SPELL | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5658 curwin->w_p_spell = FALSE; // No spell checking |
6365 | 5659 #endif |
5660 | |
5661 set_buflisted(FALSE); | |
5662 } | |
5663 | |
5664 /* | |
7 | 5665 * After reading a help file: May cleanup a help buffer when syntax |
5666 * highlighting is not used. | |
5667 */ | |
5668 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5669 fix_help_buffer(void) |
7 | 5670 { |
5671 linenr_T lnum; | |
5672 char_u *line; | |
5673 int in_example = FALSE; | |
5674 int len; | |
3141 | 5675 char_u *fname; |
7 | 5676 char_u *p; |
5677 char_u *rt; | |
5678 int mustfree; | |
5679 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5680 // Set filetype to "help" if still needed. |
11533
c83dd5fa40d8
patch 8.0.0649: when opening a help file the filetype is set several times
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
5681 if (STRCMP(curbuf->b_p_ft, "help") != 0) |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11537
diff
changeset
|
5682 { |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11537
diff
changeset
|
5683 ++curbuf_lock; |
11533
c83dd5fa40d8
patch 8.0.0649: when opening a help file the filetype is set several times
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
5684 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL); |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11537
diff
changeset
|
5685 --curbuf_lock; |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11537
diff
changeset
|
5686 } |
7 | 5687 |
5688 #ifdef FEAT_SYN_HL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
5689 if (!syntax_present(curwin)) |
7 | 5690 #endif |
5691 { | |
5692 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
5693 { | |
5694 line = ml_get_buf(curbuf, lnum, FALSE); | |
5695 len = (int)STRLEN(line); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
5696 if (in_example && len > 0 && !VIM_ISWHITE(line[0])) |
7 | 5697 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5698 // End of example: non-white or '<' in first column. |
7 | 5699 if (line[0] == '<') |
5700 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5701 // blank-out a '<' in the first column |
7 | 5702 line = ml_get_buf(curbuf, lnum, TRUE); |
5703 line[0] = ' '; | |
5704 } | |
5705 in_example = FALSE; | |
5706 } | |
5707 if (!in_example && len > 0) | |
5708 { | |
5709 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' ')) | |
5710 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5711 // blank-out a '>' in the last column (start of example) |
7 | 5712 line = ml_get_buf(curbuf, lnum, TRUE); |
5713 line[len - 1] = ' '; | |
5714 in_example = TRUE; | |
5715 } | |
5716 else if (line[len - 1] == '~') | |
5717 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5718 // blank-out a '~' at the end of line (header marker) |
7 | 5719 line = ml_get_buf(curbuf, lnum, TRUE); |
5720 line[len - 1] = ' '; | |
5721 } | |
5722 } | |
5723 } | |
5724 } | |
5725 | |
5726 /* | |
3141 | 5727 * In the "help.txt" and "help.abx" file, add the locally added help |
5728 * files. This uses the very first line in the help file. | |
7 | 5729 */ |
3141 | 5730 fname = gettail(curbuf->b_fname); |
5731 if (fnamecmp(fname, "help.txt") == 0 | |
5732 #ifdef FEAT_MULTI_LANG | |
5733 || (fnamencmp(fname, "help.", 5) == 0 | |
5734 && ASCII_ISALPHA(fname[5]) | |
5735 && ASCII_ISALPHA(fname[6]) | |
5736 && TOLOWER_ASC(fname[7]) == 'x' | |
5737 && fname[8] == NUL) | |
5738 #endif | |
5739 ) | |
7 | 5740 { |
5741 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) | |
5742 { | |
5743 line = ml_get_buf(curbuf, lnum, FALSE); | |
3141 | 5744 if (strstr((char *)line, "*local-additions*") == NULL) |
5745 continue; | |
5746 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5747 // Go through all directories in 'runtimepath', skipping |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5748 // $VIMRUNTIME. |
3141 | 5749 p = p_rtp; |
5750 while (*p != NUL) | |
7 | 5751 { |
3141 | 5752 copy_option_part(&p, NameBuff, MAXPATHL, ","); |
5753 mustfree = FALSE; | |
5754 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); | |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16716
diff
changeset
|
5755 if (rt != NULL && |
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16716
diff
changeset
|
5756 fullpathcmp(rt, NameBuff, FALSE, TRUE) != FPC_SAME) |
7 | 5757 { |
3141 | 5758 int fcount; |
5759 char_u **fnames; | |
5760 FILE *fd; | |
5761 char_u *s; | |
5762 int fi; | |
5763 vimconv_T vc; | |
5764 char_u *cp; | |
5765 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5766 // Find all "doc/ *.txt" files in this directory. |
3141 | 5767 add_pathsep(NameBuff); |
5768 #ifdef FEAT_MULTI_LANG | |
5769 STRCAT(NameBuff, "doc/*.??[tx]"); | |
7 | 5770 #else |
3141 | 5771 STRCAT(NameBuff, "doc/*.txt"); |
5772 #endif | |
5773 if (gen_expand_wildcards(1, &NameBuff, &fcount, | |
5774 &fnames, EW_FILE|EW_SILENT) == OK | |
5775 && fcount > 0) | |
5776 { | |
5777 #ifdef FEAT_MULTI_LANG | |
13014
e1deb00ffc27
patch 8.0.1383: local additions in help skips some files
Christian Brabandt <cb@256bit.org>
parents:
13012
diff
changeset
|
5778 int i1, i2; |
e1deb00ffc27
patch 8.0.1383: local additions in help skips some files
Christian Brabandt <cb@256bit.org>
parents:
13012
diff
changeset
|
5779 char_u *f1, *f2; |
e1deb00ffc27
patch 8.0.1383: local additions in help skips some files
Christian Brabandt <cb@256bit.org>
parents:
13012
diff
changeset
|
5780 char_u *t1, *t2; |
e1deb00ffc27
patch 8.0.1383: local additions in help skips some files
Christian Brabandt <cb@256bit.org>
parents:
13012
diff
changeset
|
5781 char_u *e1, *e2; |
3141 | 5782 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5783 // If foo.abx is found use it instead of foo.txt in |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5784 // the same directory. |
3141 | 5785 for (i1 = 0; i1 < fcount; ++i1) |
5786 { | |
5787 for (i2 = 0; i2 < fcount; ++i2) | |
5788 { | |
5789 if (i1 == i2) | |
5790 continue; | |
5791 if (fnames[i1] == NULL || fnames[i2] == NULL) | |
5792 continue; | |
5793 f1 = fnames[i1]; | |
5794 f2 = fnames[i2]; | |
5795 t1 = gettail(f1); | |
13014
e1deb00ffc27
patch 8.0.1383: local additions in help skips some files
Christian Brabandt <cb@256bit.org>
parents:
13012
diff
changeset
|
5796 t2 = gettail(f2); |
3141 | 5797 e1 = vim_strrchr(t1, '.'); |
13014
e1deb00ffc27
patch 8.0.1383: local additions in help skips some files
Christian Brabandt <cb@256bit.org>
parents:
13012
diff
changeset
|
5798 e2 = vim_strrchr(t2, '.'); |
10299
7b2f95633e28
commit https://github.com/vim/vim/commit/7756e7465d627ff9cd01e59625484a8c302ef853
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5799 if (e1 == NULL || e2 == NULL) |
3141 | 5800 continue; |
5801 if (fnamecmp(e1, ".txt") != 0 | |
5802 && fnamecmp(e1, fname + 4) != 0) | |
5803 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5804 // Not .txt and not .abx, remove it. |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13174
diff
changeset
|
5805 VIM_CLEAR(fnames[i1]); |
3141 | 5806 continue; |
5807 } | |
13014
e1deb00ffc27
patch 8.0.1383: local additions in help skips some files
Christian Brabandt <cb@256bit.org>
parents:
13012
diff
changeset
|
5808 if (e1 - f1 != e2 - f2 |
e1deb00ffc27
patch 8.0.1383: local additions in help skips some files
Christian Brabandt <cb@256bit.org>
parents:
13012
diff
changeset
|
5809 || fnamencmp(f1, f2, e1 - f1) != 0) |
3141 | 5810 continue; |
5811 if (fnamecmp(e1, ".txt") == 0 | |
5812 && fnamecmp(e2, fname + 4) == 0) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5813 // use .abx instead of .txt |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13174
diff
changeset
|
5814 VIM_CLEAR(fnames[i1]); |
7 | 5815 } |
5816 } | |
3141 | 5817 #endif |
5818 for (fi = 0; fi < fcount; ++fi) | |
5819 { | |
5820 if (fnames[fi] == NULL) | |
5821 continue; | |
5822 fd = mch_fopen((char *)fnames[fi], "r"); | |
5823 if (fd != NULL) | |
5824 { | |
5825 vim_fgets(IObuff, IOSIZE, fd); | |
5826 if (IObuff[0] == '*' | |
5827 && (s = vim_strchr(IObuff + 1, '*')) | |
5828 != NULL) | |
5829 { | |
5830 int this_utf = MAYBE; | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5831 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5832 // Change tag definition to a |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5833 // reference and remove <CR>/<NL>. |
3141 | 5834 IObuff[0] = '|'; |
5835 *s = '|'; | |
5836 while (*s != NUL) | |
5837 { | |
5838 if (*s == '\r' || *s == '\n') | |
5839 *s = NUL; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5840 // The text is utf-8 when a byte |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5841 // above 127 is found and no |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5842 // illegal byte sequence is found. |
3141 | 5843 if (*s >= 0x80 && this_utf != FALSE) |
5844 { | |
5845 int l; | |
5846 | |
5847 this_utf = TRUE; | |
5848 l = utf_ptr2len(s); | |
5849 if (l == 1) | |
5850 this_utf = FALSE; | |
5851 s += l - 1; | |
5852 } | |
5853 ++s; | |
5854 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5855 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5856 // The help file is latin1 or utf-8; |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5857 // conversion to the current |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5858 // 'encoding' may be required. |
3141 | 5859 vc.vc_type = CONV_NONE; |
5860 convert_setup(&vc, (char_u *)( | |
5861 this_utf == TRUE ? "utf-8" | |
5862 : "latin1"), p_enc); | |
5863 if (vc.vc_type == CONV_NONE) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5864 // No conversion needed. |
3141 | 5865 cp = IObuff; |
5866 else | |
5867 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5868 // Do the conversion. If it fails |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5869 // use the unconverted text. |
3141 | 5870 cp = string_convert(&vc, IObuff, |
5871 NULL); | |
5872 if (cp == NULL) | |
5873 cp = IObuff; | |
5874 } | |
5875 convert_setup(&vc, NULL, NULL); | |
5876 | |
5877 ml_append(lnum, cp, (colnr_T)0, FALSE); | |
5878 if (cp != IObuff) | |
5879 vim_free(cp); | |
5880 ++lnum; | |
5881 } | |
5882 fclose(fd); | |
5883 } | |
5884 } | |
5885 FreeWild(fcount, fnames); | |
7 | 5886 } |
5887 } | |
3141 | 5888 if (mustfree) |
5889 vim_free(rt); | |
7 | 5890 } |
3141 | 5891 break; |
7 | 5892 } |
5893 } | |
5894 } | |
5895 | |
40 | 5896 /* |
5897 * ":exusage" | |
5898 */ | |
5899 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5900 ex_exusage(exarg_T *eap UNUSED) |
40 | 5901 { |
5902 do_cmdline_cmd((char_u *)"help ex-cmd-index"); | |
5903 } | |
5904 | |
5905 /* | |
5906 * ":viusage" | |
5907 */ | |
5908 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5909 ex_viusage(exarg_T *eap UNUSED) |
40 | 5910 { |
5911 do_cmdline_cmd((char_u *)"help normal-index"); | |
5912 } | |
5913 | |
7 | 5914 /* |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
5915 * Generate tags in one help directory. |
7 | 5916 */ |
5917 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5918 helptags_one( |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5919 char_u *dir, // doc directory |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5920 char_u *ext, // suffix, ".txt", ".itx", ".frx", etc. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5921 char_u *tagfname, // "tags" for English, "tags-fr" for French. |
19429
7096af834c42
patch 8.2.0272: ":helptags ALL" gives error for some directories
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
5922 int add_help_tags, // add "help-tags" tag |
7096af834c42
patch 8.2.0272: ":helptags ALL" gives error for some directories
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
5923 int ignore_writeerr) // ignore write error |
7 | 5924 { |
5925 FILE *fd_tags; | |
5926 FILE *fd; | |
5927 garray_T ga; | |
5928 int filecount; | |
5929 char_u **files; | |
5930 char_u *p1, *p2; | |
5931 int fi; | |
5932 char_u *s; | |
5933 int i; | |
5934 char_u *fname; | |
3957 | 5935 int dirlen; |
7 | 5936 int utf8 = MAYBE; |
5937 int this_utf8; | |
5938 int firstline; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
5939 int mix = FALSE; // detected mixed encodings |
7 | 5940 |
5941 /* | |
5942 * Find all *.txt files. | |
5943 */ | |
3978 | 5944 dirlen = (int)STRLEN(dir); |
7 | 5945 STRCPY(NameBuff, dir); |
3957 | 5946 STRCAT(NameBuff, "/**/*"); |
7 | 5947 STRCAT(NameBuff, ext); |
5948 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, | |
5949 EW_FILE|EW_SILENT) == FAIL | |
5950 || filecount == 0) | |
5951 { | |
5952 if (!got_int) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
5953 semsg(_("E151: No match: %s"), NameBuff); |
7 | 5954 return; |
5955 } | |
5956 | |
5957 /* | |
5958 * Open the tags file for writing. | |
5959 * Do this before scanning through all the files. | |
5960 */ | |
5961 STRCPY(NameBuff, dir); | |
5962 add_pathsep(NameBuff); | |
5963 STRCAT(NameBuff, tagfname); | |
531 | 5964 fd_tags = mch_fopen((char *)NameBuff, "w"); |
7 | 5965 if (fd_tags == NULL) |
5966 { | |
19429
7096af834c42
patch 8.2.0272: ":helptags ALL" gives error for some directories
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
5967 if (!ignore_writeerr) |
7096af834c42
patch 8.2.0272: ":helptags ALL" gives error for some directories
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
5968 semsg(_("E152: Cannot open %s for writing"), NameBuff); |
7 | 5969 FreeWild(filecount, files); |
5970 return; | |
5971 } | |
5972 | |
5973 /* | |
1502 | 5974 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc" |
5975 * add the "help-tags" tag. | |
7 | 5976 */ |
5977 ga_init2(&ga, (int)sizeof(char_u *), 100); | |
1502 | 5978 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc", |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16716
diff
changeset
|
5979 dir, FALSE, TRUE) == FPC_SAME) |
7 | 5980 { |
5981 if (ga_grow(&ga, 1) == FAIL) | |
5982 got_int = TRUE; | |
5983 else | |
5984 { | |
835 | 5985 s = alloc(18 + (unsigned)STRLEN(tagfname)); |
7 | 5986 if (s == NULL) |
5987 got_int = TRUE; | |
5988 else | |
5989 { | |
5990 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname); | |
5991 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
5992 ++ga.ga_len; | |
5993 } | |
5994 } | |
5995 } | |
5996 | |
5997 /* | |
5998 * Go over all the files and extract the tags. | |
5999 */ | |
6000 for (fi = 0; fi < filecount && !got_int; ++fi) | |
6001 { | |
531 | 6002 fd = mch_fopen((char *)files[fi], "r"); |
7 | 6003 if (fd == NULL) |
6004 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
6005 semsg(_("E153: Unable to open %s for reading"), files[fi]); |
7 | 6006 continue; |
6007 } | |
3957 | 6008 fname = files[fi] + dirlen + 1; |
7 | 6009 |
6010 firstline = TRUE; | |
6011 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) | |
6012 { | |
6013 if (firstline) | |
6014 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6015 // Detect utf-8 file by a non-ASCII char in the first line. |
7 | 6016 this_utf8 = MAYBE; |
6017 for (s = IObuff; *s != NUL; ++s) | |
6018 if (*s >= 0x80) | |
6019 { | |
6020 int l; | |
6021 | |
6022 this_utf8 = TRUE; | |
474 | 6023 l = utf_ptr2len(s); |
7 | 6024 if (l == 1) |
6025 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6026 // Illegal UTF-8 byte sequence. |
7 | 6027 this_utf8 = FALSE; |
6028 break; | |
6029 } | |
6030 s += l - 1; | |
6031 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6032 if (this_utf8 == MAYBE) // only ASCII characters found |
7 | 6033 this_utf8 = FALSE; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6034 if (utf8 == MAYBE) // first file |
7 | 6035 utf8 = this_utf8; |
6036 else if (utf8 != this_utf8) | |
6037 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
6038 semsg(_("E670: Mix of help file encodings within a language: %s"), files[fi]); |
7 | 6039 mix = !got_int; |
6040 got_int = TRUE; | |
6041 } | |
6042 firstline = FALSE; | |
6043 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6044 p1 = vim_strchr(IObuff, '*'); // find first '*' |
7 | 6045 while (p1 != NULL) |
6046 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6047 // Use vim_strbyte() instead of vim_strchr() so that when |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6048 // 'encoding' is dbcs it still works, don't find '*' in the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6049 // second byte. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6050 p2 = vim_strbyte(p1 + 1, '*'); // find second '*' |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6051 if (p2 != NULL && p2 > p1 + 1) // skip "*" and "**" |
7 | 6052 { |
6053 for (s = p1 + 1; s < p2; ++s) | |
6054 if (*s == ' ' || *s == '\t' || *s == '|') | |
6055 break; | |
6056 | |
6057 /* | |
6058 * Only accept a *tag* when it consists of valid | |
6059 * characters, there is white space before it and is | |
6060 * followed by a white character or end-of-line. | |
6061 */ | |
6062 if (s == p2 | |
6063 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') | |
6064 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL | |
6065 || s[1] == '\0')) | |
6066 { | |
6067 *p2 = '\0'; | |
6068 ++p1; | |
6069 if (ga_grow(&ga, 1) == FAIL) | |
6070 { | |
6071 got_int = TRUE; | |
6072 break; | |
6073 } | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
6074 s = alloc(p2 - p1 + STRLEN(fname) + 2); |
7 | 6075 if (s == NULL) |
6076 { | |
6077 got_int = TRUE; | |
6078 break; | |
6079 } | |
6080 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
6081 ++ga.ga_len; | |
6082 sprintf((char *)s, "%s\t%s", p1, fname); | |
6083 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6084 // find next '*' |
7 | 6085 p2 = vim_strchr(p2 + 1, '*'); |
6086 } | |
6087 } | |
6088 p1 = p2; | |
6089 } | |
6090 line_breakcheck(); | |
6091 } | |
6092 | |
6093 fclose(fd); | |
6094 } | |
6095 | |
6096 FreeWild(filecount, files); | |
6097 | |
6098 if (!got_int) | |
6099 { | |
6100 /* | |
6101 * Sort the tags. | |
6102 */ | |
7009 | 6103 if (ga.ga_data != NULL) |
6104 sort_strings((char_u **)ga.ga_data, ga.ga_len); | |
7 | 6105 |
6106 /* | |
6107 * Check for duplicates. | |
6108 */ | |
6109 for (i = 1; i < ga.ga_len; ++i) | |
6110 { | |
6111 p1 = ((char_u **)ga.ga_data)[i - 1]; | |
6112 p2 = ((char_u **)ga.ga_data)[i]; | |
6113 while (*p1 == *p2) | |
6114 { | |
6115 if (*p2 == '\t') | |
6116 { | |
6117 *p2 = NUL; | |
274 | 6118 vim_snprintf((char *)NameBuff, MAXPATHL, |
7 | 6119 _("E154: Duplicate tag \"%s\" in file %s/%s"), |
6120 ((char_u **)ga.ga_data)[i], dir, p2 + 1); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
6121 emsg((char *)NameBuff); |
7 | 6122 *p2 = '\t'; |
6123 break; | |
6124 } | |
6125 ++p1; | |
6126 ++p2; | |
6127 } | |
6128 } | |
6129 | |
6130 if (utf8 == TRUE) | |
6131 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n"); | |
6132 | |
6133 /* | |
6134 * Write the tags into the file. | |
6135 */ | |
6136 for (i = 0; i < ga.ga_len; ++i) | |
6137 { | |
6138 s = ((char_u **)ga.ga_data)[i]; | |
1325 | 6139 if (STRNCMP(s, "help-tags\t", 10) == 0) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6140 // help-tags entry was added in formatted form |
1325 | 6141 fputs((char *)s, fd_tags); |
7 | 6142 else |
6143 { | |
6144 fprintf(fd_tags, "%s\t/*", s); | |
6145 for (p1 = s; *p1 != '\t'; ++p1) | |
6146 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6147 // insert backslash before '\\' and '/' |
7 | 6148 if (*p1 == '\\' || *p1 == '/') |
6149 putc('\\', fd_tags); | |
6150 putc(*p1, fd_tags); | |
6151 } | |
6152 fprintf(fd_tags, "*\n"); | |
6153 } | |
6154 } | |
6155 } | |
6156 if (mix) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6157 got_int = FALSE; // continue with other languages |
7 | 6158 |
6159 for (i = 0; i < ga.ga_len; ++i) | |
6160 vim_free(((char_u **)ga.ga_data)[i]); | |
6161 ga_clear(&ga); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6162 fclose(fd_tags); // there is no check for an error... |
7 | 6163 } |
6164 | |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6165 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6166 * Generate tags in one help directory, taking care of translations. |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6167 */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6168 static void |
19429
7096af834c42
patch 8.2.0272: ":helptags ALL" gives error for some directories
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
6169 do_helptags(char_u *dirname, int add_help_tags, int ignore_writeerr) |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6170 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6171 #ifdef FEAT_MULTI_LANG |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6172 int len; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6173 int i, j; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6174 garray_T ga; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6175 char_u lang[2]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6176 char_u ext[5]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6177 char_u fname[8]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6178 int filecount; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6179 char_u **files; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6180 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6181 // Get a list of all files in the help directory and in subdirectories. |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6182 STRCPY(NameBuff, dirname); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6183 add_pathsep(NameBuff); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6184 STRCAT(NameBuff, "**"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6185 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6186 EW_FILE|EW_SILENT) == FAIL |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6187 || filecount == 0) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6188 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
6189 semsg(_("E151: No match: %s"), NameBuff); |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6190 return; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6191 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6192 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6193 // Go over all files in the directory to find out what languages are |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6194 // present. |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6195 ga_init2(&ga, 1, 10); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6196 for (i = 0; i < filecount; ++i) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6197 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6198 len = (int)STRLEN(files[i]); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6199 if (len > 4) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6200 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6201 if (STRICMP(files[i] + len - 4, ".txt") == 0) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6202 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6203 // ".txt" -> language "en" |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6204 lang[0] = 'e'; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6205 lang[1] = 'n'; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6206 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6207 else if (files[i][len - 4] == '.' |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6208 && ASCII_ISALPHA(files[i][len - 3]) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6209 && ASCII_ISALPHA(files[i][len - 2]) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6210 && TOLOWER_ASC(files[i][len - 1]) == 'x') |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6211 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6212 // ".abx" -> language "ab" |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6213 lang[0] = TOLOWER_ASC(files[i][len - 3]); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6214 lang[1] = TOLOWER_ASC(files[i][len - 2]); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6215 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6216 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6217 continue; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6218 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6219 // Did we find this language already? |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6220 for (j = 0; j < ga.ga_len; j += 2) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6221 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6222 break; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6223 if (j == ga.ga_len) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6224 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6225 // New language, add it. |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6226 if (ga_grow(&ga, 2) == FAIL) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6227 break; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6228 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6229 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6230 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6231 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6232 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6233 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6234 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6235 * Loop over the found languages to generate a tags file for each one. |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6236 */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6237 for (j = 0; j < ga.ga_len; j += 2) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6238 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6239 STRCPY(fname, "tags-xx"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6240 fname[5] = ((char_u *)ga.ga_data)[j]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6241 fname[6] = ((char_u *)ga.ga_data)[j + 1]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6242 if (fname[5] == 'e' && fname[6] == 'n') |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6243 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6244 // English is an exception: use ".txt" and "tags". |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6245 fname[4] = NUL; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6246 STRCPY(ext, ".txt"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6247 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6248 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6249 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6250 // Language "ab" uses ".abx" and "tags-ab". |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6251 STRCPY(ext, ".xxx"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6252 ext[1] = fname[5]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6253 ext[2] = fname[6]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6254 } |
19429
7096af834c42
patch 8.2.0272: ":helptags ALL" gives error for some directories
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
6255 helptags_one(dirname, ext, fname, add_help_tags, ignore_writeerr); |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6256 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6257 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6258 ga_clear(&ga); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6259 FreeWild(filecount, files); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6260 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6261 #else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6262 // No language support, just use "*.txt" and "tags". |
19429
7096af834c42
patch 8.2.0272: ":helptags ALL" gives error for some directories
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
6263 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags, |
7096af834c42
patch 8.2.0272: ":helptags ALL" gives error for some directories
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
6264 ignore_writeerr); |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6265 #endif |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6266 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6267 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6268 static void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6269 helptags_cb(char_u *fname, void *cookie) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6270 { |
19429
7096af834c42
patch 8.2.0272: ":helptags ALL" gives error for some directories
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
6271 do_helptags(fname, *(int *)cookie, TRUE); |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6272 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6273 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6274 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6275 * ":helptags" |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6276 */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6277 void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6278 ex_helptags(exarg_T *eap) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6279 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6280 expand_T xpc; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6281 char_u *dirname; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6282 int add_help_tags = FALSE; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6283 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6284 // Check for ":helptags ++t {dir}". |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
6285 if (STRNCMP(eap->arg, "++t", 3) == 0 && VIM_ISWHITE(eap->arg[3])) |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6286 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6287 add_help_tags = TRUE; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6288 eap->arg = skipwhite(eap->arg + 3); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6289 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6290 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6291 if (STRCMP(eap->arg, "ALL") == 0) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6292 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6293 do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR, |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6294 helptags_cb, &add_help_tags); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6295 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6296 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6297 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6298 ExpandInit(&xpc); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6299 xpc.xp_context = EXPAND_DIRECTORIES; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6300 dirname = ExpandOne(&xpc, eap->arg, NULL, |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6301 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6302 if (dirname == NULL || !mch_isdir(dirname)) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15367
diff
changeset
|
6303 semsg(_("E150: Not a directory: %s"), eap->arg); |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6304 else |
19429
7096af834c42
patch 8.2.0272: ":helptags ALL" gives error for some directories
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
6305 do_helptags(dirname, add_help_tags, FALSE); |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6306 vim_free(dirname); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6307 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6308 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
6309 |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6310 /* |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6311 * Make the user happy. |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6312 */ |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6313 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6314 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
|
6315 { |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6316 static char *code[] = { |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6317 "\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
|
6318 "\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
|
6319 }; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6320 char *p; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6321 int n; |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6322 int i; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6323 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6324 msg_start(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6325 msg_putchar('\n'); |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6326 for (i = 0; i < 2; ++i) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6327 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
|
6328 if (*p == 'x') |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6329 msg_putchar('\n'); |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6330 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6331 for (n = *p++; n > 0; --n) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6332 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
|
6333 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
|
6334 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6335 msg_putchar(*p); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6336 msg_clr_eos(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6337 } |
7 | 6338 |
6339 /* | |
6340 * ":drop" | |
6341 * Opens the first argument in a window. When there are two or more arguments | |
6342 * the argument list is redefined. | |
6343 */ | |
6344 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6345 ex_drop(exarg_T *eap) |
7 | 6346 { |
6347 int split = FALSE; | |
6348 win_T *wp; | |
6349 buf_T *buf; | |
735 | 6350 tabpage_T *tp; |
7 | 6351 |
20561
18c52f380193
patch 8.2.0834: :drop command in terminal popup causes problems
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
6352 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
|
6353 return; |
18c52f380193
patch 8.2.0834: :drop command in terminal popup causes problems
Bram Moolenaar <Bram@vim.org>
parents:
20384
diff
changeset
|
6354 |
7 | 6355 /* |
6356 * Check if the first argument is already being edited in a window. If | |
6357 * so, jump to that window. | |
6358 * We would actually need to check all arguments, but that's complicated | |
6359 * and mostly only one file is dropped. | |
6360 * This also ignores wildcards, since it is very unlikely the user is | |
6361 * editing a file name with a wildcard character. | |
6362 */ | |
735 | 6363 set_arglist(eap->arg); |
6364 | |
1067 | 6365 /* |
6366 * Expanding wildcards may result in an empty argument list. E.g. when | |
6367 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we | |
6368 * already did an error message for this. | |
6369 */ | |
6370 if (ARGCOUNT == 0) | |
6371 return; | |
6372 | |
735 | 6373 if (cmdmod.tab) |
6374 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6375 // ":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
|
6376 // 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
|
6377 // windows or tabs. |
735 | 6378 ex_all(eap); |
6379 } | |
6380 else | |
6381 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6382 // ":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
|
6383 // 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
|
6384 // can be abandoned, otherwise open a new window. |
735 | 6385 buf = buflist_findnr(ARGLIST[0].ae_fnum); |
6386 | |
6387 FOR_ALL_TAB_WINDOWS(tp, wp) | |
6388 { | |
6389 if (wp->w_buffer == buf) | |
7 | 6390 { |
825 | 6391 goto_tabpage_win(tp, wp); |
7 | 6392 curwin->w_arg_idx = 0; |
6393 return; | |
6394 } | |
6395 } | |
735 | 6396 |
6397 /* | |
6398 * Check whether the current buffer is changed. If so, we will need | |
6399 * to split the current window or data could be lost. | |
6400 * Skip the check if the 'hidden' option is set, as in this case the | |
6401 * buffer won't be lost. | |
6402 */ | |
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
|
6403 if (!buf_hide(curbuf)) |
735 | 6404 { |
6405 ++emsg_off; | |
5464 | 6406 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD); |
735 | 6407 --emsg_off; |
6408 } | |
6409 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6410 // Fake a ":sfirst" or ":first" command edit the first argument. |
735 | 6411 if (split) |
6412 { | |
6413 eap->cmdidx = CMD_sfirst; | |
6414 eap->cmd[0] = 's'; | |
6415 } | |
6416 else | |
6417 eap->cmdidx = CMD_first; | |
6418 ex_rewind(eap); | |
6419 } | |
7 | 6420 } |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6421 |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6422 /* |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6423 * 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
|
6424 * 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
|
6425 * 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
|
6426 * 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
|
6427 * 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
|
6428 */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6429 char_u * |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6430 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
|
6431 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6432 int c; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6433 |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6434 if (vim_isIDc(*p)) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6435 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6436 // ":vimgrep pattern fname" |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6437 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6438 *s = p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6439 p = skiptowhite(p); |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6440 if (s != NULL && *p != NUL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6441 *p++ = NUL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6442 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6443 else |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6444 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6445 // ":vimgrep /pattern/[g][j] fname" |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6446 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6447 *s = p + 1; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6448 c = *p; |
19892
5feb426d2ea1
patch 8.2.0502: Vim9: some code is not tested
Bram Moolenaar <Bram@vim.org>
parents:
19693
diff
changeset
|
6449 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
|
6450 if (*p != c) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6451 return NULL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6452 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6453 // Truncate the pattern. |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6454 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6455 *p = NUL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6456 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6457 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6458 // Find the flags |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6459 while (*p == 'g' || *p == 'j') |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6460 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6461 if (flags != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6462 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6463 if (*p == 'g') |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6464 *flags |= VGR_GLOBAL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6465 else |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6466 *flags |= VGR_NOJUMP; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6467 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6468 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6469 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6470 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6471 return p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6472 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
6473 |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6474 #if defined(FEAT_EVAL) || defined(PROTO) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6475 /* |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6476 * 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
|
6477 */ |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6478 void |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6479 ex_oldfiles(exarg_T *eap UNUSED) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6480 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6481 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
|
6482 listitem_T *li; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6483 int nr = 0; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6484 char_u *fname; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6485 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6486 if (l == NULL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
6487 msg(_("No old files")); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6488 else |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6489 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6490 msg_start(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6491 msg_scroll = TRUE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6492 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
|
6493 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6494 ++nr; |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15209
diff
changeset
|
6495 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
|
6496 if (!message_filtered(fname)) |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6497 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6498 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
|
6499 msg_puts(": "); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6500 msg_outtrans(fname); |
10021
5fc4bec66c33
commit https://github.com/vim/vim/commit/885c00eabe6d1fd757d4f0eb531ad3a15a35ec04
Christian Brabandt <cb@256bit.org>
parents:
9980
diff
changeset
|
6501 msg_clr_eos(); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6502 msg_putchar('\n'); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6503 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
|
6504 ui_breakcheck(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6505 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6506 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6507 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18767
diff
changeset
|
6508 // 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
|
6509 got_int = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6510 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6511 # ifdef FEAT_BROWSE_CMD |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6512 if (cmdmod.browse) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6513 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6514 quit_more = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6515 nr = prompt_for_number(FALSE); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6516 msg_starthere(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6517 if (nr > 0) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6518 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6519 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
|
6520 (long)nr); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6521 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6522 if (p != NULL) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6523 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6524 p = expand_env_save(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6525 eap->arg = p; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6526 eap->cmdidx = CMD_edit; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6527 cmdmod.browse = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6528 do_exedit(eap, NULL); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6529 vim_free(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6530 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6531 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6532 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6533 # endif |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6534 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6535 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
6536 #endif |