Mercurial > vim
annotate src/ex_cmds.c @ 14174:d36eedd19166
Added tag v8.1.0104 for changeset 4b59671bce9ce5dcb72e28475ad333873c61f606
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 23 Jun 2018 17:15:06 +0200 |
parents | bcda3b864c31 |
children | 2ad722003b36 |
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); |
7 | 23 #ifdef FEAT_VIMINFO |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
24 static char_u *viminfo_filename(char_u *); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
25 static void do_viminfo(FILE *fp_in, FILE *fp_out, int flags); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
26 static int viminfo_encoding(vir_T *virp); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
27 static int read_viminfo_up_to_marks(vir_T *virp, int forceit, int writing); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
28 #endif |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
29 |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
30 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
|
31 static void delbuf_msg(char_u *name); |
7 | 32 static int |
33 #ifdef __BORLANDC__ | |
34 _RTLENTRYF | |
35 #endif | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
36 help_compare(const void *s1, const void *s2); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
37 static void prepare_help_buffer(void); |
7 | 38 |
39 /* | |
40 * ":ascii" and "ga". | |
41 */ | |
42 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
43 do_ascii(exarg_T *eap UNUSED) |
7 | 44 { |
45 int c; | |
1784 | 46 int cval; |
7 | 47 char buf1[20]; |
48 char buf2[20]; | |
49 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
|
50 #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
|
51 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
|
52 #endif |
7 | 53 #ifdef FEAT_MBYTE |
714 | 54 int cc[MAX_MCO]; |
55 int ci = 0; | |
7 | 56 int len; |
57 | |
58 if (enc_utf8) | |
714 | 59 c = utfc_ptr2char(ml_get_cursor(), cc); |
7 | 60 else |
61 #endif | |
62 c = gchar_cursor(); | |
63 if (c == NUL) | |
64 { | |
65 MSG("NUL"); | |
66 return; | |
67 } | |
68 | |
69 #ifdef FEAT_MBYTE | |
70 IObuff[0] = NUL; | |
71 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80) | |
72 #endif | |
73 { | |
74 if (c == NL) /* NUL is stored as NL */ | |
75 c = NUL; | |
1784 | 76 if (c == CAR && get_fileformat(curbuf) == EOL_MAC) |
77 cval = NL; /* NL is stored as CR */ | |
78 else | |
79 cval = c; | |
7 | 80 if (vim_isprintc_strict(c) && (c < ' ' |
81 #ifndef EBCDIC | |
82 || c > '~' | |
83 #endif | |
84 )) | |
85 { | |
86 transchar_nonprint(buf3, c); | |
1872 | 87 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3); |
7 | 88 } |
89 else | |
90 buf1[0] = NUL; | |
91 #ifndef EBCDIC | |
92 if (c >= 0x80) | |
1872 | 93 vim_snprintf(buf2, sizeof(buf2), " <M-%s>", |
94 (char *)transchar(c & 0x7f)); | |
7 | 95 else |
96 #endif | |
97 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
|
98 #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
|
99 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
|
100 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
|
101 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
|
102 _("<%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
|
103 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
|
104 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
|
105 #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
|
106 vim_snprintf((char *)IObuff, IOSIZE, |
274 | 107 _("<%s>%s%s %d, Hex %02x, Octal %03o"), |
1784 | 108 transchar(c), buf1, buf2, cval, cval, cval); |
7 | 109 #ifdef FEAT_MBYTE |
963 | 110 if (enc_utf8) |
111 c = cc[ci++]; | |
112 else | |
113 c = 0; | |
7 | 114 #endif |
115 } | |
116 | |
117 #ifdef FEAT_MBYTE | |
118 /* Repeat for combining characters. */ | |
119 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80))) | |
120 { | |
121 len = (int)STRLEN(IObuff); | |
122 /* This assumes every multi-byte char is printable... */ | |
123 if (len > 0) | |
124 IObuff[len++] = ' '; | |
125 IObuff[len++] = '<'; | |
963 | 126 if (enc_utf8 && utf_iscomposing(c) |
625 | 127 # ifdef USE_GUI |
7 | 128 && !gui.in_use |
625 | 129 # endif |
7 | 130 ) |
131 IObuff[len++] = ' '; /* draw composing char on top of a space */ | |
274 | 132 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
|
133 #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
|
134 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
|
135 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
|
136 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
|
137 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
|
138 : _("> %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
|
139 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
|
140 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
|
141 #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
|
142 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
|
143 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
|
144 : _("> %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
|
145 c, c, c); |
714 | 146 if (ci == MAX_MCO) |
147 break; | |
963 | 148 if (enc_utf8) |
149 c = cc[ci++]; | |
150 else | |
151 c = 0; | |
7 | 152 } |
153 #endif | |
154 | |
155 msg(IObuff); | |
156 } | |
157 | |
158 /* | |
159 * ":left", ":center" and ":right": align text. | |
160 */ | |
161 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
162 ex_align(exarg_T *eap) |
7 | 163 { |
164 pos_T save_curpos; | |
165 int len; | |
166 int indent = 0; | |
167 int new_indent; | |
168 int has_tab; | |
169 int width; | |
170 | |
171 #ifdef FEAT_RIGHTLEFT | |
172 if (curwin->w_p_rl) | |
173 { | |
174 /* switch left and right aligning */ | |
175 if (eap->cmdidx == CMD_right) | |
176 eap->cmdidx = CMD_left; | |
177 else if (eap->cmdidx == CMD_left) | |
178 eap->cmdidx = CMD_right; | |
179 } | |
180 #endif | |
181 | |
182 width = atoi((char *)eap->arg); | |
183 save_curpos = curwin->w_cursor; | |
184 if (eap->cmdidx == CMD_left) /* width is used for new indent */ | |
185 { | |
186 if (width >= 0) | |
187 indent = width; | |
188 } | |
189 else | |
190 { | |
191 /* | |
192 * if 'textwidth' set, use it | |
193 * else if 'wrapmargin' set, use it | |
194 * if invalid value, use 80 | |
195 */ | |
196 if (width <= 0) | |
197 width = curbuf->b_p_tw; | |
198 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
|
199 width = curwin->w_width - curbuf->b_p_wm; |
7 | 200 if (width <= 0) |
201 width = 80; | |
202 } | |
203 | |
204 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) | |
205 return; | |
206 | |
207 for (curwin->w_cursor.lnum = eap->line1; | |
208 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum) | |
209 { | |
210 if (eap->cmdidx == CMD_left) /* left align */ | |
211 new_indent = indent; | |
212 else | |
213 { | |
944 | 214 has_tab = FALSE; /* avoid uninit warnings */ |
7 | 215 len = linelen(eap->cmdidx == CMD_right ? &has_tab |
216 : NULL) - get_indent(); | |
217 | |
218 if (len <= 0) /* skip blank lines */ | |
219 continue; | |
220 | |
221 if (eap->cmdidx == CMD_center) | |
222 new_indent = (width - len) / 2; | |
223 else | |
224 { | |
225 new_indent = width - len; /* right align */ | |
226 | |
227 /* | |
228 * Make sure that embedded TABs don't make the text go too far | |
229 * to the right. | |
230 */ | |
231 if (has_tab) | |
232 while (new_indent > 0) | |
233 { | |
234 (void)set_indent(new_indent, 0); | |
235 if (linelen(NULL) <= width) | |
236 { | |
237 /* | |
238 * Now try to move the line as much as possible to | |
239 * the right. Stop when it moves too far. | |
240 */ | |
241 do | |
242 (void)set_indent(++new_indent, 0); | |
243 while (linelen(NULL) <= width); | |
244 --new_indent; | |
245 break; | |
246 } | |
247 --new_indent; | |
248 } | |
249 } | |
250 } | |
251 if (new_indent < 0) | |
252 new_indent = 0; | |
253 (void)set_indent(new_indent, 0); /* set indent */ | |
254 } | |
255 changed_lines(eap->line1, 0, eap->line2 + 1, 0L); | |
256 curwin->w_cursor = save_curpos; | |
257 beginline(BL_WHITE | BL_FIX); | |
258 } | |
259 | |
260 /* | |
261 * Get the length of the current line, excluding trailing white space. | |
262 */ | |
263 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
264 linelen(int *has_tab) |
7 | 265 { |
266 char_u *line; | |
267 char_u *first; | |
268 char_u *last; | |
269 int save; | |
270 int len; | |
271 | |
272 /* find the first non-blank character */ | |
273 line = ml_get_curline(); | |
274 first = skipwhite(line); | |
275 | |
276 /* find the character after the last non-blank character */ | |
277 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
|
278 last > first && VIM_ISWHITE(last[-1]); --last) |
7 | 279 ; |
280 save = *last; | |
281 *last = NUL; | |
282 len = linetabsize(line); /* get line length */ | |
283 if (has_tab != NULL) /* check for embedded TAB */ | |
284 *has_tab = (vim_strrchr(first, TAB) != NULL); | |
285 *last = save; | |
286 | |
287 return len; | |
288 } | |
289 | |
826 | 290 /* Buffer for two lines used during sorting. They are allocated to |
291 * contain the longest line being sorted. */ | |
292 static char_u *sortbuf1; | |
293 static char_u *sortbuf2; | |
284 | 294 |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
295 static int sort_ic; /* ignore case */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
296 static int sort_nr; /* sort on number */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
297 static int sort_rx; /* sort on regex instead of skipping it */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
298 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
299 static int sort_flt; /* sort on floating number */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
300 #endif |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
301 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
302 static int sort_abort; /* flag to indicate if sorting has been interrupted */ |
294 | 303 |
304 /* Struct to store info to be sorted. */ | |
305 typedef struct | |
306 { | |
307 linenr_T lnum; /* line number */ | |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
308 union { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
309 struct |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
310 { |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
311 varnumber_T start_col_nr; /* starting column number */ |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
312 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
|
313 } line; |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
314 varnumber_T value; /* value if sorting by integer */ |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
315 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
316 float_T value_flt; /* value if sorting by float */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
317 #endif |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
318 } st_u; |
294 | 319 } sorti_T; |
284 | 320 |
321 static int | |
322 #ifdef __BORLANDC__ | |
323 _RTLENTRYF | |
324 #endif | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
325 sort_compare(const void *s1, const void *s2); |
284 | 326 |
327 static int | |
328 #ifdef __BORLANDC__ | |
329 _RTLENTRYF | |
330 #endif | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
331 sort_compare(const void *s1, const void *s2) |
284 | 332 { |
294 | 333 sorti_T l1 = *(sorti_T *)s1; |
334 sorti_T l2 = *(sorti_T *)s2; | |
826 | 335 int result = 0; |
336 | |
337 /* If the user interrupts, there's no way to stop qsort() immediately, but | |
834 | 338 * if we return 0 every time, qsort will assume it's done sorting and |
339 * exit. */ | |
826 | 340 if (sort_abort) |
341 return 0; | |
342 fast_breakcheck(); | |
343 if (got_int) | |
344 sort_abort = TRUE; | |
345 | |
834 | 346 /* When sorting numbers "start_col_nr" is the number, not the column |
347 * number. */ | |
294 | 348 if (sort_nr) |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
349 result = l1.st_u.value == l2.st_u.value ? 0 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
350 : l1.st_u.value > l2.st_u.value ? 1 : -1; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
351 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
352 else if (sort_flt) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
353 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
|
354 : 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
|
355 #endif |
826 | 356 else |
357 { | |
834 | 358 /* We need to copy one line into "sortbuf1", because there is no |
359 * guarantee that the first pointer becomes invalid when obtaining the | |
360 * second one. */ | |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
361 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
|
362 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
|
363 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
|
364 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
|
365 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
|
366 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0; |
826 | 367 |
834 | 368 result = sort_ic ? STRICMP(sortbuf1, sortbuf2) |
369 : STRCMP(sortbuf1, sortbuf2); | |
370 } | |
371 | |
372 /* If two lines have the same value, preserve the original line order. */ | |
826 | 373 if (result == 0) |
834 | 374 return (int)(l1.lnum - l2.lnum); |
375 return result; | |
284 | 376 } |
377 | |
378 /* | |
379 * ":sort". | |
380 */ | |
381 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
382 ex_sort(exarg_T *eap) |
284 | 383 { |
384 regmatch_T regmatch; | |
385 int len; | |
386 linenr_T lnum; | |
387 long maxlen = 0; | |
294 | 388 sorti_T *nrs; |
1872 | 389 size_t count = (size_t)(eap->line2 - eap->line1 + 1); |
294 | 390 size_t i; |
284 | 391 char_u *p; |
392 char_u *s; | |
826 | 393 char_u *s2; |
394 char_u c; /* temporary character storage */ | |
284 | 395 int unique = FALSE; |
396 long deleted; | |
826 | 397 colnr_T start_col; |
398 colnr_T end_col; | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
399 int sort_what = 0; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
400 int format_found = 0; |
284 | 401 |
1538 | 402 /* Sorting one line is really quick! */ |
403 if (count <= 1) | |
404 return; | |
405 | |
284 | 406 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
407 return; | |
826 | 408 sortbuf1 = NULL; |
409 sortbuf2 = NULL; | |
284 | 410 regmatch.regprog = NULL; |
294 | 411 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE); |
284 | 412 if (nrs == NULL) |
826 | 413 goto sortend; |
414 | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
415 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
|
416 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
417 sort_flt = 0; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
418 #endif |
294 | 419 |
284 | 420 for (p = eap->arg; *p != NUL; ++p) |
421 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
422 if (VIM_ISWHITE(*p)) |
284 | 423 ; |
424 else if (*p == 'i') | |
425 sort_ic = TRUE; | |
826 | 426 else if (*p == 'r') |
427 sort_rx = TRUE; | |
294 | 428 else if (*p == 'n') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
429 { |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
430 sort_nr = 1; |
7447
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 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
433 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
434 else if (*p == 'f') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
435 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
436 sort_flt = 1; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
437 ++format_found; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
438 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
439 #endif |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
440 else if (*p == 'b') |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
441 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
442 sort_what = STR2NR_BIN + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
443 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
444 } |
294 | 445 else if (*p == 'o') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
446 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
447 sort_what = STR2NR_OCT + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
448 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
449 } |
294 | 450 else if (*p == 'x') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
451 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
452 sort_what = STR2NR_HEX + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
453 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
454 } |
284 | 455 else if (*p == 'u') |
456 unique = TRUE; | |
289 | 457 else if (*p == '"') /* comment start */ |
458 break; | |
459 else if (check_nextcmd(p) != NULL) | |
460 { | |
461 eap->nextcmd = check_nextcmd(p); | |
462 break; | |
463 } | |
464 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL) | |
284 | 465 { |
466 s = skip_regexp(p + 1, *p, TRUE, NULL); | |
467 if (*s != *p) | |
468 { | |
469 EMSG(_(e_invalpat)); | |
826 | 470 goto sortend; |
284 | 471 } |
472 *s = NUL; | |
1314 | 473 /* Use last search pattern if sort pattern is empty. */ |
4199 | 474 if (s == p + 1) |
475 { | |
476 if (last_search_pat() == NULL) | |
477 { | |
478 EMSG(_(e_noprevre)); | |
479 goto sortend; | |
480 } | |
1314 | 481 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC); |
4199 | 482 } |
1314 | 483 else |
484 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC); | |
284 | 485 if (regmatch.regprog == NULL) |
826 | 486 goto sortend; |
289 | 487 p = s; /* continue after the regexp */ |
284 | 488 regmatch.rm_ic = p_ic; |
489 } | |
490 else | |
491 { | |
492 EMSG2(_(e_invarg2), p); | |
826 | 493 goto sortend; |
284 | 494 } |
495 } | |
496 | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
497 /* Can only have one of 'n', 'b', 'o' and 'x'. */ |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
498 if (format_found > 1) |
294 | 499 { |
500 EMSG(_(e_invarg)); | |
826 | 501 goto sortend; |
294 | 502 } |
503 | |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
504 /* From here on "sort_nr" is used as a flag for any integer number |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
505 * sorting. */ |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
506 sort_nr += sort_what; |
294 | 507 |
284 | 508 /* |
294 | 509 * Make an array with all line numbers. This avoids having to copy all |
284 | 510 * the lines into allocated memory. |
826 | 511 * When sorting on strings "start_col_nr" is the offset in the line, for |
512 * numbers sorting it's the number to sort on. This means the pattern | |
513 * matching and number conversion only has to be done once per line. | |
294 | 514 * Also get the longest line length for allocating "sortbuf". |
284 | 515 */ |
516 for (lnum = eap->line1; lnum <= eap->line2; ++lnum) | |
517 { | |
518 s = ml_get(lnum); | |
835 | 519 len = (int)STRLEN(s); |
284 | 520 if (maxlen < len) |
521 maxlen = len; | |
294 | 522 |
826 | 523 start_col = 0; |
524 end_col = len; | |
294 | 525 if (regmatch.regprog != NULL && vim_regexec(®match, s, 0)) |
826 | 526 { |
527 if (sort_rx) | |
528 { | |
835 | 529 start_col = (colnr_T)(regmatch.startp[0] - s); |
530 end_col = (colnr_T)(regmatch.endp[0] - s); | |
826 | 531 } |
532 else | |
835 | 533 start_col = (colnr_T)(regmatch.endp[0] - s); |
826 | 534 } |
294 | 535 else |
826 | 536 if (regmatch.regprog != NULL) |
537 end_col = 0; | |
294 | 538 |
7844
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
539 if (sort_nr |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
540 #ifdef FEAT_FLOAT |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
541 || sort_flt |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
542 #endif |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
543 ) |
294 | 544 { |
826 | 545 /* Make sure vim_str2nr doesn't read any digits past the end |
546 * of the match, by temporarily terminating the string there */ | |
547 s2 = s + end_col; | |
548 c = *s2; | |
2606 | 549 *s2 = NUL; |
294 | 550 /* Sorting on number: Store the number itself. */ |
1687 | 551 p = s + start_col; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
552 if (sort_nr) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
553 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
554 if (sort_what & STR2NR_HEX) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
555 s = skiptohex(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
556 else if (sort_what & STR2NR_BIN) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
557 s = skiptobin(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
558 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
559 s = skiptodigit(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
560 if (s > p && s[-1] == '-') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
561 --s; /* include preceding negative sign */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
562 if (*s == NUL) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
563 /* empty line should sort before any number */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
564 nrs[lnum - eap->line1].st_u.value = -MAXLNUM; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
565 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
566 vim_str2nr(s, NULL, NULL, sort_what, |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
567 &nrs[lnum - eap->line1].st_u.value, NULL, 0); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
568 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
569 #ifdef FEAT_FLOAT |
294 | 570 else |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
571 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
572 s = skipwhite(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
573 if (*s == '+') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
574 s = skipwhite(s + 1); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
575 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
576 if (*s == NUL) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
577 /* empty line should sort before any number */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
578 nrs[lnum - eap->line1].st_u.value_flt = -DBL_MAX; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
579 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
580 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
|
581 strtod((char *)s, NULL); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
582 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
583 #endif |
2606 | 584 *s2 = c; |
294 | 585 } |
586 else | |
826 | 587 { |
294 | 588 /* 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
|
589 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
|
590 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col; |
826 | 591 } |
294 | 592 |
593 nrs[lnum - eap->line1].lnum = lnum; | |
481 | 594 |
595 if (regmatch.regprog != NULL) | |
596 fast_breakcheck(); | |
597 if (got_int) | |
826 | 598 goto sortend; |
284 | 599 } |
600 | |
294 | 601 /* Allocate a buffer that can hold the longest line. */ |
826 | 602 sortbuf1 = alloc((unsigned)maxlen + 1); |
603 if (sortbuf1 == NULL) | |
604 goto sortend; | |
605 sortbuf2 = alloc((unsigned)maxlen + 1); | |
606 if (sortbuf2 == NULL) | |
607 goto sortend; | |
284 | 608 |
481 | 609 /* Sort the array of line numbers. Note: can't be interrupted! */ |
294 | 610 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare); |
284 | 611 |
826 | 612 if (sort_abort) |
613 goto sortend; | |
614 | |
284 | 615 /* Insert the lines in the sorted order below the last one. */ |
616 lnum = eap->line2; | |
617 for (i = 0; i < count; ++i) | |
618 { | |
619 s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum); | |
620 if (!unique || i == 0 | |
826 | 621 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0) |
284 | 622 { |
7340
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
623 /* Copy the line into a buffer, it may become invalid in |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
624 * ml_append(). And it's needed for "unique". */ |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
625 STRCPY(sortbuf1, s); |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
626 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL) |
284 | 627 break; |
628 } | |
481 | 629 fast_breakcheck(); |
630 if (got_int) | |
826 | 631 goto sortend; |
284 | 632 } |
633 | |
634 /* delete the original lines if appending worked */ | |
635 if (i == count) | |
636 for (i = 0; i < count; ++i) | |
637 ml_delete(eap->line1, FALSE); | |
638 else | |
639 count = 0; | |
640 | |
294 | 641 /* Adjust marks for deleted (or added) lines and prepare for displaying. */ |
835 | 642 deleted = (long)(count - (lnum - eap->line2)); |
284 | 643 if (deleted > 0) |
644 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted); | |
645 else if (deleted < 0) | |
646 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L); | |
647 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted); | |
294 | 648 |
284 | 649 curwin->w_cursor.lnum = eap->line1; |
650 beginline(BL_WHITE | BL_FIX); | |
651 | |
826 | 652 sortend: |
284 | 653 vim_free(nrs); |
826 | 654 vim_free(sortbuf1); |
655 vim_free(sortbuf2); | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
656 vim_regfree(regmatch.regprog); |
481 | 657 if (got_int) |
658 EMSG(_(e_interr)); | |
284 | 659 } |
660 | |
7 | 661 /* |
662 * ":retab". | |
663 */ | |
664 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
665 ex_retab(exarg_T *eap) |
7 | 666 { |
667 linenr_T lnum; | |
668 int got_tab = FALSE; | |
669 long num_spaces = 0; | |
670 long num_tabs; | |
671 long len; | |
672 long col; | |
673 long vcol; | |
674 long start_col = 0; /* For start of white-space string */ | |
675 long start_vcol = 0; /* For start of white-space string */ | |
676 int temp; | |
677 long old_len; | |
678 char_u *ptr; | |
679 char_u *new_line = (char_u *)1; /* init to non-NULL */ | |
680 int did_undo; /* called u_save for current line */ | |
681 int new_ts; | |
682 int save_list; | |
683 linenr_T first_line = 0; /* first changed line */ | |
684 linenr_T last_line = 0; /* last changed line */ | |
685 | |
686 save_list = curwin->w_p_list; | |
687 curwin->w_p_list = 0; /* don't want list mode here */ | |
688 | |
689 new_ts = getdigits(&(eap->arg)); | |
690 if (new_ts < 0) | |
691 { | |
692 EMSG(_(e_positive)); | |
693 return; | |
694 } | |
695 if (new_ts == 0) | |
696 new_ts = curbuf->b_p_ts; | |
697 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum) | |
698 { | |
699 ptr = ml_get(lnum); | |
700 col = 0; | |
701 vcol = 0; | |
702 did_undo = FALSE; | |
703 for (;;) | |
704 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
705 if (VIM_ISWHITE(ptr[col])) |
7 | 706 { |
707 if (!got_tab && num_spaces == 0) | |
708 { | |
709 /* First consecutive white-space */ | |
710 start_vcol = vcol; | |
711 start_col = col; | |
712 } | |
713 if (ptr[col] == ' ') | |
714 num_spaces++; | |
715 else | |
716 got_tab = TRUE; | |
717 } | |
718 else | |
719 { | |
720 if (got_tab || (eap->forceit && num_spaces > 1)) | |
721 { | |
722 /* Retabulate this string of white-space */ | |
723 | |
724 /* len is virtual length of white string */ | |
725 len = num_spaces = vcol - start_vcol; | |
726 num_tabs = 0; | |
727 if (!curbuf->b_p_et) | |
728 { | |
729 temp = new_ts - (start_vcol % new_ts); | |
730 if (num_spaces >= temp) | |
731 { | |
732 num_spaces -= temp; | |
733 num_tabs++; | |
734 } | |
735 num_tabs += num_spaces / new_ts; | |
736 num_spaces -= (num_spaces / new_ts) * new_ts; | |
737 } | |
738 if (curbuf->b_p_et || got_tab || | |
739 (num_spaces + num_tabs < len)) | |
740 { | |
741 if (did_undo == FALSE) | |
742 { | |
743 did_undo = TRUE; | |
744 if (u_save((linenr_T)(lnum - 1), | |
745 (linenr_T)(lnum + 1)) == FAIL) | |
746 { | |
747 new_line = NULL; /* flag out-of-memory */ | |
748 break; | |
749 } | |
750 } | |
751 | |
752 /* len is actual number of white characters used */ | |
753 len = num_spaces + num_tabs; | |
754 old_len = (long)STRLEN(ptr); | |
755 new_line = lalloc(old_len - col + start_col + len + 1, | |
756 TRUE); | |
757 if (new_line == NULL) | |
758 break; | |
759 if (start_col > 0) | |
760 mch_memmove(new_line, ptr, (size_t)start_col); | |
761 mch_memmove(new_line + start_col + len, | |
762 ptr + col, (size_t)(old_len - col + 1)); | |
763 ptr = new_line + start_col; | |
764 for (col = 0; col < len; col++) | |
765 ptr[col] = (col < num_tabs) ? '\t' : ' '; | |
766 ml_replace(lnum, new_line, FALSE); | |
767 if (first_line == 0) | |
768 first_line = lnum; | |
769 last_line = lnum; | |
770 ptr = new_line; | |
771 col = start_col + len; | |
772 } | |
773 } | |
774 got_tab = FALSE; | |
775 num_spaces = 0; | |
776 } | |
777 if (ptr[col] == NUL) | |
778 break; | |
779 vcol += chartabsize(ptr + col, (colnr_T)vcol); | |
780 #ifdef FEAT_MBYTE | |
781 if (has_mbyte) | |
474 | 782 col += (*mb_ptr2len)(ptr + col); |
7 | 783 else |
784 #endif | |
785 ++col; | |
786 } | |
787 if (new_line == NULL) /* out of memory */ | |
788 break; | |
789 line_breakcheck(); | |
790 } | |
791 if (got_int) | |
792 EMSG(_(e_interr)); | |
793 | |
794 if (curbuf->b_p_ts != new_ts) | |
795 redraw_curbuf_later(NOT_VALID); | |
796 if (first_line != 0) | |
797 changed_lines(first_line, 0, last_line + 1, 0L); | |
798 | |
799 curwin->w_p_list = save_list; /* restore 'list' */ | |
800 | |
801 curbuf->b_p_ts = new_ts; | |
802 coladvance(curwin->w_curswant); | |
803 | |
804 u_clearline(); | |
805 } | |
806 | |
807 /* | |
808 * :move command - move lines line1-line2 to line dest | |
809 * | |
810 * return FAIL for failure, OK otherwise | |
811 */ | |
812 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
813 do_move(linenr_T line1, linenr_T line2, linenr_T dest) |
7 | 814 { |
815 char_u *str; | |
816 linenr_T l; | |
817 linenr_T extra; /* Num lines added before line1 */ | |
818 linenr_T num_lines; /* Num lines moved */ | |
819 linenr_T last_line; /* Last line in file after adding new text */ | |
6755 | 820 #ifdef FEAT_FOLDING |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
821 win_T *win; |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
822 tabpage_T *tp; |
6755 | 823 #endif |
7 | 824 |
825 if (dest >= line1 && dest < line2) | |
826 { | |
827 EMSG(_("E134: Move lines into themselves")); | |
828 return FAIL; | |
829 } | |
830 | |
831 num_lines = line2 - line1 + 1; | |
832 | |
833 /* | |
834 * First we copy the old text to its new location -- webb | |
835 * Also copy the flag that ":global" command uses. | |
836 */ | |
837 if (u_save(dest, dest + 1) == FAIL) | |
838 return FAIL; | |
839 for (extra = 0, l = line1; l <= line2; l++) | |
840 { | |
841 str = vim_strsave(ml_get(l + extra)); | |
842 if (str != NULL) | |
843 { | |
844 ml_append(dest + l - line1, str, (colnr_T)0, FALSE); | |
845 vim_free(str); | |
846 if (dest < line1) | |
847 extra++; | |
848 } | |
849 } | |
850 | |
851 /* | |
852 * Now we must be careful adjusting our marks so that we don't overlap our | |
853 * mark_adjust() calls. | |
854 * | |
855 * We adjust the marks within the old text so that they refer to the | |
856 * last lines of the file (temporarily), because we know no other marks | |
857 * will be set there since these line numbers did not exist until we added | |
858 * our new lines. | |
859 * | |
860 * Then we adjust the marks on lines between the old and new text positions | |
861 * (either forwards or backwards). | |
862 * | |
863 * And Finally we adjust the marks we put at the end of the file back to | |
864 * their final destination at the new text position -- webb | |
865 */ | |
866 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
|
867 mark_adjust_nofold(line1, line2, last_line - line2, 0L); |
7 | 868 if (dest >= line2) |
869 { | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
870 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
|
871 #ifdef FEAT_FOLDING |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
872 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
|
873 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
|
874 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
|
875 } |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
876 #endif |
7 | 877 curbuf->b_op_start.lnum = dest - num_lines + 1; |
878 curbuf->b_op_end.lnum = dest; | |
879 } | |
880 else | |
881 { | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
882 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
|
883 #ifdef FEAT_FOLDING |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
884 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
|
885 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
|
886 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
|
887 } |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
888 #endif |
7 | 889 curbuf->b_op_start.lnum = dest + 1; |
890 curbuf->b_op_end.lnum = dest + num_lines; | |
891 } | |
892 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
|
893 mark_adjust_nofold(last_line - num_lines + 1, last_line, |
7 | 894 -(last_line - dest - extra), 0L); |
895 | |
896 /* | |
897 * Now we delete the original text -- webb | |
898 */ | |
899 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL) | |
900 return FAIL; | |
901 | |
902 for (l = line1; l <= line2; l++) | |
903 ml_delete(line1 + extra, TRUE); | |
904 | |
905 if (!global_busy && num_lines > p_report) | |
906 { | |
907 if (num_lines == 1) | |
908 MSG(_("1 line moved")); | |
909 else | |
910 smsg((char_u *)_("%ld lines moved"), num_lines); | |
911 } | |
912 | |
913 /* | |
914 * Leave the cursor on the last of the moved lines. | |
915 */ | |
916 if (dest >= line1) | |
917 curwin->w_cursor.lnum = dest; | |
918 else | |
919 curwin->w_cursor.lnum = dest + (line2 - line1) + 1; | |
920 | |
921 if (line1 < dest) | |
3184 | 922 { |
923 dest += num_lines + 1; | |
924 last_line = curbuf->b_ml.ml_line_count; | |
925 if (dest > last_line + 1) | |
926 dest = last_line + 1; | |
927 changed_lines(line1, 0, dest, 0L); | |
928 } | |
7 | 929 else |
930 changed_lines(dest + 1, 0, line1 + num_lines, 0L); | |
931 | |
932 return OK; | |
933 } | |
934 | |
935 /* | |
936 * ":copy" | |
937 */ | |
938 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
939 ex_copy(linenr_T line1, linenr_T line2, linenr_T n) |
7 | 940 { |
941 linenr_T count; | |
942 char_u *p; | |
943 | |
944 count = line2 - line1 + 1; | |
945 curbuf->b_op_start.lnum = n + 1; | |
946 curbuf->b_op_end.lnum = n + count; | |
947 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
948 | |
949 /* | |
950 * there are three situations: | |
951 * 1. destination is above line1 | |
952 * 2. destination is between line1 and line2 | |
953 * 3. destination is below line2 | |
954 * | |
955 * n = destination (when starting) | |
956 * curwin->w_cursor.lnum = destination (while copying) | |
957 * line1 = start of source (while copying) | |
958 * line2 = end of source (while copying) | |
959 */ | |
960 if (u_save(n, n + 1) == FAIL) | |
961 return; | |
962 | |
963 curwin->w_cursor.lnum = n; | |
964 while (line1 <= line2) | |
965 { | |
966 /* need to use vim_strsave() because the line will be unlocked within | |
967 * ml_append() */ | |
968 p = vim_strsave(ml_get(line1)); | |
969 if (p != NULL) | |
970 { | |
971 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE); | |
972 vim_free(p); | |
973 } | |
974 /* situation 2: skip already copied lines */ | |
975 if (line1 == n) | |
976 line1 = curwin->w_cursor.lnum; | |
977 ++line1; | |
978 if (curwin->w_cursor.lnum < line1) | |
979 ++line1; | |
980 if (curwin->w_cursor.lnum < line2) | |
981 ++line2; | |
982 ++curwin->w_cursor.lnum; | |
983 } | |
984 | |
985 appended_lines_mark(n, count); | |
986 | |
987 msgmore((long)count); | |
988 } | |
989 | |
359 | 990 static char_u *prevcmd = NULL; /* the previous command */ |
991 | |
992 #if defined(EXITFREE) || defined(PROTO) | |
993 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
994 free_prev_shellcmd(void) |
359 | 995 { |
996 vim_free(prevcmd); | |
997 } | |
998 #endif | |
999 | |
7 | 1000 /* |
1001 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd" | |
1002 * Bangs in the argument are replaced with the previously entered command. | |
1003 * Remember the argument. | |
1004 */ | |
1005 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1006 do_bang( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1007 int addr_count, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1008 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1009 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1010 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1011 int do_out) |
7 | 1012 { |
1013 char_u *arg = eap->arg; /* command */ | |
1014 linenr_T line1 = eap->line1; /* start of range */ | |
1015 linenr_T line2 = eap->line2; /* end of range */ | |
1016 char_u *newcmd = NULL; /* the new command */ | |
1017 int free_newcmd = FALSE; /* need to free() newcmd */ | |
1018 int ins_prevcmd; | |
1019 char_u *t; | |
1020 char_u *p; | |
1021 char_u *trailarg; | |
1022 int len; | |
1023 int scroll_save = msg_scroll; | |
1024 | |
1025 /* | |
1026 * Disallow shell commands for "rvim". | |
1027 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1028 * security reasons. | |
1029 */ | |
1030 if (check_restricted() || check_secure()) | |
1031 return; | |
1032 | |
1033 if (addr_count == 0) /* :! */ | |
1034 { | |
1035 msg_scroll = FALSE; /* don't scroll here */ | |
1036 autowrite_all(); | |
1037 msg_scroll = scroll_save; | |
1038 } | |
1039 | |
1040 /* | |
1041 * Try to find an embedded bang, like in :!<cmd> ! [args] | |
1042 * (:!! is indicated by the 'forceit' variable) | |
1043 */ | |
1044 ins_prevcmd = forceit; | |
1045 trailarg = arg; | |
1046 do | |
1047 { | |
1048 len = (int)STRLEN(trailarg) + 1; | |
1049 if (newcmd != NULL) | |
1050 len += (int)STRLEN(newcmd); | |
1051 if (ins_prevcmd) | |
1052 { | |
1053 if (prevcmd == NULL) | |
1054 { | |
1055 EMSG(_(e_noprev)); | |
1056 vim_free(newcmd); | |
1057 return; | |
1058 } | |
1059 len += (int)STRLEN(prevcmd); | |
1060 } | |
1872 | 1061 if ((t = alloc((unsigned)len)) == NULL) |
7 | 1062 { |
1063 vim_free(newcmd); | |
1064 return; | |
1065 } | |
1066 *t = NUL; | |
1067 if (newcmd != NULL) | |
1068 STRCAT(t, newcmd); | |
1069 if (ins_prevcmd) | |
1070 STRCAT(t, prevcmd); | |
1071 p = t + STRLEN(t); | |
1072 STRCAT(t, trailarg); | |
1073 vim_free(newcmd); | |
1074 newcmd = t; | |
1075 | |
1076 /* | |
1077 * Scan the rest of the argument for '!', which is replaced by the | |
1078 * previous command. "\!" is replaced by "!" (this is vi compatible). | |
1079 */ | |
1080 trailarg = NULL; | |
1081 while (*p) | |
1082 { | |
2823 | 1083 if (*p == '!') |
7 | 1084 { |
1085 if (p > newcmd && p[-1] == '\\') | |
1624 | 1086 STRMOVE(p - 1, p); |
7 | 1087 else |
1088 { | |
1089 trailarg = p; | |
1090 *trailarg++ = NUL; | |
1091 ins_prevcmd = TRUE; | |
1092 break; | |
1093 } | |
1094 } | |
1095 ++p; | |
1096 } | |
1097 } while (trailarg != NULL); | |
1098 | |
1099 vim_free(prevcmd); | |
1100 prevcmd = newcmd; | |
1101 | |
1102 if (bangredo) /* put cmd in redo buffer for ! command */ | |
1103 { | |
5728 | 1104 /* If % or # appears in the command, it must have been escaped. |
1105 * Reescape them, so that redoing them does not substitute them by the | |
1106 * buffername. */ | |
1107 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#"); | |
1108 | |
1109 if (cmd != NULL) | |
1110 { | |
1111 AppendToRedobuffLit(cmd, -1); | |
1112 vim_free(cmd); | |
1113 } | |
1114 else | |
1115 AppendToRedobuffLit(prevcmd, -1); | |
7 | 1116 AppendToRedobuff((char_u *)"\n"); |
1117 bangredo = FALSE; | |
1118 } | |
1119 /* | |
1120 * Add quotes around the command, for shells that need them. | |
1121 */ | |
1122 if (*p_shq != NUL) | |
1123 { | |
1124 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1)); | |
1125 if (newcmd == NULL) | |
1126 return; | |
1127 STRCPY(newcmd, p_shq); | |
1128 STRCAT(newcmd, prevcmd); | |
1129 STRCAT(newcmd, p_shq); | |
1130 free_newcmd = TRUE; | |
1131 } | |
1132 if (addr_count == 0) /* :! */ | |
1133 { | |
1134 /* echo the command */ | |
1135 msg_start(); | |
1136 msg_putchar(':'); | |
1137 msg_putchar('!'); | |
1138 msg_outtrans(newcmd); | |
1139 msg_clr_eos(); | |
1140 windgoto(msg_row, msg_col); | |
1141 | |
1142 do_shell(newcmd, 0); | |
1143 } | |
1144 else /* :range! */ | |
725 | 1145 { |
7 | 1146 /* Careful: This may recursively call do_bang() again! (because of |
1147 * autocommands) */ | |
1148 do_filter(line1, line2, eap, newcmd, do_in, do_out); | |
725 | 1149 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf); |
1150 } | |
7 | 1151 if (free_newcmd) |
1152 vim_free(newcmd); | |
1153 } | |
1154 | |
1155 /* | |
1156 * do_filter: filter lines through a command given by the user | |
1157 * | |
169 | 1158 * We mostly use temp files and the call_shell() routine here. This would |
1159 * normally be done using pipes on a UNIX machine, but this is more portable | |
1160 * to non-unix machines. The call_shell() routine needs to be able | |
7 | 1161 * to deal with redirection somehow, and should handle things like looking |
1162 * at the PATH env. variable, and adding reasonable extensions to the | |
1163 * command name given by the user. All reasonable versions of call_shell() | |
1164 * do this. | |
169 | 1165 * Alternatively, if on Unix and redirecting input or output, but not both, |
1166 * and the 'shelltemp' option isn't set, use pipes. | |
7 | 1167 * We use input redirection if do_in is TRUE. |
1168 * We use output redirection if do_out is TRUE. | |
1169 */ | |
1170 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1171 do_filter( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1172 linenr_T line1, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1173 linenr_T line2, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1174 exarg_T *eap, /* for forced 'ff' and 'fenc' */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1175 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1176 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1177 int do_out) |
7 | 1178 { |
1179 char_u *itmp = NULL; | |
1180 char_u *otmp = NULL; | |
1181 linenr_T linecount; | |
1182 linenr_T read_linecount; | |
1183 pos_T cursor_save; | |
1184 char_u *cmd_buf; | |
1185 buf_T *old_curbuf = curbuf; | |
169 | 1186 int shell_flags = 0; |
7 | 1187 |
1188 if (*cmd == NUL) /* no filter command */ | |
1189 return; | |
1190 | |
1191 cursor_save = curwin->w_cursor; | |
1192 linecount = line2 - line1 + 1; | |
1193 curwin->w_cursor.lnum = line1; | |
1194 curwin->w_cursor.col = 0; | |
1195 changed_line_abv_curs(); | |
1196 invalidate_botline(); | |
1197 | |
1198 /* | |
169 | 1199 * When using temp files: |
1200 * 1. * Form temp file names | |
1201 * 2. * Write the lines to a temp file | |
1202 * 3. Run the filter command on the temp file | |
1203 * 4. * Read the output of the command into the buffer | |
1204 * 5. * Delete the original lines to be filtered | |
1205 * 6. * Remove the temp files | |
1206 * | |
1207 * When writing the input with a pipe or when catching the output with a | |
1208 * pipe only need to do 3. | |
7 | 1209 */ |
1210 | |
169 | 1211 if (do_out) |
1212 shell_flags |= SHELL_DOOUT; | |
1213 | |
3482 | 1214 #ifdef FEAT_FILTERPIPE |
169 | 1215 if (!do_in && do_out && !p_stmp) |
1216 { | |
1217 /* Use a pipe to fetch stdout of the command, do not use a temp file. */ | |
1218 shell_flags |= SHELL_READ; | |
1219 curwin->w_cursor.lnum = line2; | |
1220 } | |
1221 else if (do_in && !do_out && !p_stmp) | |
7 | 1222 { |
169 | 1223 /* Use a pipe to write stdin of the command, do not use a temp file. */ |
1224 shell_flags |= SHELL_WRITE; | |
1225 curbuf->b_op_start.lnum = line1; | |
1226 curbuf->b_op_end.lnum = line2; | |
7 | 1227 } |
169 | 1228 else if (do_in && do_out && !p_stmp) |
1229 { | |
1230 /* Use a pipe to write stdin and fetch stdout of the command, do not | |
1231 * use a temp file. */ | |
1232 shell_flags |= SHELL_READ|SHELL_WRITE; | |
1233 curbuf->b_op_start.lnum = line1; | |
1234 curbuf->b_op_end.lnum = line2; | |
1235 curwin->w_cursor.lnum = line2; | |
1236 } | |
1237 else | |
1238 #endif | |
6721 | 1239 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL) |
1240 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL)) | |
169 | 1241 { |
1242 EMSG(_(e_notmp)); | |
1243 goto filterend; | |
1244 } | |
7 | 1245 |
1246 /* | |
1247 * The writing and reading of temp files will not be shown. | |
1248 * Vi also doesn't do this and the messages are not very informative. | |
1249 */ | |
1250 ++no_wait_return; /* don't call wait_return() while busy */ | |
169 | 1251 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap, |
7 | 1252 FALSE, FALSE, FALSE, TRUE) == FAIL) |
1253 { | |
1254 msg_putchar('\n'); /* keep message from buf_write() */ | |
1255 --no_wait_return; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1256 #if defined(FEAT_EVAL) |
7 | 1257 if (!aborting()) |
1258 #endif | |
1259 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */ | |
1260 goto filterend; | |
1261 } | |
1262 if (curbuf != old_curbuf) | |
1263 goto filterend; | |
1264 | |
1265 if (!do_out) | |
1266 msg_putchar('\n'); | |
1267 | |
1581 | 1268 /* Create the shell command in allocated memory. */ |
7 | 1269 cmd_buf = make_filter_cmd(cmd, itmp, otmp); |
1270 if (cmd_buf == NULL) | |
1271 goto filterend; | |
1272 | |
1273 windgoto((int)Rows - 1, 0); | |
1274 cursor_on(); | |
1275 | |
1276 /* | |
1277 * When not redirecting the output the command can write anything to the | |
1278 * screen. If 'shellredir' is equal to ">", screen may be messed up by | |
1279 * stderr output of external command. Clear the screen later. | |
1280 * If do_in is FALSE, this could be something like ":r !cat", which may | |
1281 * also mess up the screen, clear it later. | |
1282 */ | |
1283 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in) | |
1284 redraw_later_clear(); | |
1285 | |
169 | 1286 if (do_out) |
1287 { | |
1288 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL) | |
1581 | 1289 { |
1290 vim_free(cmd_buf); | |
169 | 1291 goto error; |
1581 | 1292 } |
169 | 1293 redraw_curbuf_later(VALID); |
1294 } | |
1295 read_linecount = curbuf->b_ml.ml_line_count; | |
1296 | |
7 | 1297 /* |
1298 * When call_shell() fails wait_return() is called to give the user a | |
1299 * chance to read the error messages. Otherwise errors are ignored, so you | |
1300 * can see the error messages from the command that appear on stdout; use | |
1301 * 'u' to fix the text | |
1302 * Switch to cooked mode when not redirecting stdin, avoids that something | |
1303 * like ":r !cat" hangs. | |
1304 * Pass on the SHELL_DOOUT flag when the output is being redirected. | |
1305 */ | |
169 | 1306 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags)) |
7 | 1307 { |
1308 redraw_later_clear(); | |
1309 wait_return(FALSE); | |
1310 } | |
1311 vim_free(cmd_buf); | |
1312 | |
1313 did_check_timestamps = FALSE; | |
1314 need_check_timestamps = TRUE; | |
1315 | |
1316 /* When interrupting the shell command, it may still have produced some | |
1317 * useful output. Reset got_int here, so that readfile() won't cancel | |
1318 * reading. */ | |
1319 ui_breakcheck(); | |
1320 got_int = FALSE; | |
1321 | |
1322 if (do_out) | |
1323 { | |
169 | 1324 if (otmp != NULL) |
7 | 1325 { |
169 | 1326 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
|
1327 eap, READ_FILTER) != OK) |
169 | 1328 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1329 #if defined(FEAT_EVAL) |
169 | 1330 if (!aborting()) |
1331 #endif | |
1332 { | |
1333 msg_putchar('\n'); | |
1334 EMSG2(_(e_notread), otmp); | |
1335 } | |
1336 goto error; | |
7 | 1337 } |
169 | 1338 if (curbuf != old_curbuf) |
1339 goto filterend; | |
7 | 1340 } |
169 | 1341 |
1342 read_linecount = curbuf->b_ml.ml_line_count - read_linecount; | |
1343 | |
1344 if (shell_flags & SHELL_READ) | |
1345 { | |
1346 curbuf->b_op_start.lnum = line2 + 1; | |
1347 curbuf->b_op_end.lnum = curwin->w_cursor.lnum; | |
1348 appended_lines_mark(line2, read_linecount); | |
1349 } | |
7 | 1350 |
1351 if (do_in) | |
1352 { | |
1353 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL) | |
1354 { | |
1355 if (read_linecount >= linecount) | |
1356 /* move all marks from old lines to new lines */ | |
1357 mark_adjust(line1, line2, linecount, 0L); | |
1358 else | |
1359 { | |
1360 /* move marks from old lines to new lines, delete marks | |
1361 * that are in deleted lines */ | |
1362 mark_adjust(line1, line1 + read_linecount - 1, | |
1363 linecount, 0L); | |
1364 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); | |
1365 } | |
1366 } | |
1367 | |
1368 /* | |
1369 * Put cursor on first filtered line for ":range!cmd". | |
1370 * Adjust '[ and '] (set by buf_write()). | |
1371 */ | |
1372 curwin->w_cursor.lnum = line1; | |
1373 del_lines(linecount, TRUE); | |
1374 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */ | |
1375 curbuf->b_op_end.lnum -= linecount; /* adjust '] */ | |
1376 write_lnum_adjust(-linecount); /* adjust last line | |
1377 for next write */ | |
100 | 1378 #ifdef FEAT_FOLDING |
1379 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum); | |
1380 #endif | |
7 | 1381 } |
1382 else | |
1383 { | |
1384 /* | |
1385 * Put cursor on last new line for ":r !cmd". | |
1386 */ | |
169 | 1387 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1; |
7 | 1388 curwin->w_cursor.lnum = curbuf->b_op_end.lnum; |
1389 } | |
100 | 1390 |
7 | 1391 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */ |
1392 --no_wait_return; | |
1393 | |
1394 if (linecount > p_report) | |
1395 { | |
1396 if (do_in) | |
1397 { | |
274 | 1398 vim_snprintf((char *)msg_buf, sizeof(msg_buf), |
1399 _("%ld lines filtered"), (long)linecount); | |
7 | 1400 if (msg(msg_buf) && !msg_scroll) |
1401 /* save message to display it after redraw */ | |
680 | 1402 set_keep_msg(msg_buf, 0); |
7 | 1403 } |
1404 else | |
1405 msgmore((long)linecount); | |
1406 } | |
1407 } | |
1408 else | |
1409 { | |
1410 error: | |
1411 /* put cursor back in same position for ":w !cmd" */ | |
1412 curwin->w_cursor = cursor_save; | |
1413 --no_wait_return; | |
1414 wait_return(FALSE); | |
1415 } | |
1416 | |
1417 filterend: | |
1418 | |
1419 if (curbuf != old_curbuf) | |
1420 { | |
1421 --no_wait_return; | |
1422 EMSG(_("E135: *Filter* Autocommands must not change current buffer")); | |
1423 } | |
1424 if (itmp != NULL) | |
1425 mch_remove(itmp); | |
1426 if (otmp != NULL) | |
1427 mch_remove(otmp); | |
1428 vim_free(itmp); | |
1429 vim_free(otmp); | |
1430 } | |
1431 | |
1432 /* | |
1433 * Call a shell to execute a command. | |
1434 * When "cmd" is NULL start an interactive shell. | |
1435 */ | |
1436 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1437 do_shell( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1438 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1439 int flags) /* may be SHELL_DOOUT when output is redirected */ |
7 | 1440 { |
1441 buf_T *buf; | |
1442 #ifndef FEAT_GUI_MSWIN | |
1443 int save_nwr; | |
1444 #endif | |
1445 #ifdef MSWIN | |
1446 int winstart = FALSE; | |
1447 #endif | |
1448 | |
1449 /* | |
1450 * Disallow shell commands for "rvim". | |
1451 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1452 * security reasons. | |
1453 */ | |
1454 if (check_restricted() || check_secure()) | |
1455 { | |
1456 msg_end(); | |
1457 return; | |
1458 } | |
1459 | |
1460 #ifdef MSWIN | |
1461 /* | |
1462 * Check if ":!start" is used. | |
1463 */ | |
1464 if (cmd != NULL) | |
1465 winstart = (STRNICMP(cmd, "start ", 6) == 0); | |
1466 #endif | |
1467 | |
1468 /* | |
1469 * For autocommands we want to get the output on the current screen, to | |
1470 * avoid having to type return below. | |
1471 */ | |
1472 msg_putchar('\r'); /* put cursor at start of line */ | |
1473 if (!autocmd_busy) | |
1474 { | |
1475 #ifdef MSWIN | |
1476 if (!winstart) | |
1477 #endif | |
1478 stoptermcap(); | |
1479 } | |
1480 #ifdef MSWIN | |
1481 if (!winstart) | |
1482 #endif | |
1483 msg_putchar('\n'); /* may shift screen one line up */ | |
1484 | |
1485 /* warning message before calling the shell */ | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1486 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
|
1487 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
|
1488 if (bufIsChangedNotTerm(buf)) |
7 | 1489 { |
1490 #ifdef FEAT_GUI_MSWIN | |
1491 if (!winstart) | |
1492 starttermcap(); /* don't want a message box here */ | |
1493 #endif | |
1494 MSG_PUTS(_("[No write since last change]\n")); | |
1495 #ifdef FEAT_GUI_MSWIN | |
1496 if (!winstart) | |
1497 stoptermcap(); | |
1498 #endif | |
1499 break; | |
1500 } | |
1501 | |
1502 /* This windgoto is required for when the '\n' resulted in a "delete line | |
1503 * 1" command to the terminal. */ | |
1504 if (!swapping_screen()) | |
1505 windgoto(msg_row, msg_col); | |
1506 cursor_on(); | |
1507 (void)call_shell(cmd, SHELL_COOKED | flags); | |
1508 did_check_timestamps = FALSE; | |
1509 need_check_timestamps = TRUE; | |
1510 | |
1511 /* | |
1512 * put the message cursor at the end of the screen, avoids wait_return() | |
1513 * to overwrite the text that the external command showed | |
1514 */ | |
1515 if (!swapping_screen()) | |
1516 { | |
1517 msg_row = Rows - 1; | |
1518 msg_col = 0; | |
1519 } | |
1520 | |
1521 if (autocmd_busy) | |
1522 { | |
1523 if (msg_silent == 0) | |
1524 redraw_later_clear(); | |
1525 } | |
1526 else | |
1527 { | |
1528 /* | |
1529 * For ":sh" there is no need to call wait_return(), just redraw. | |
1530 * Also for the Win32 GUI (the output is in a console window). | |
1531 * Otherwise there is probably text on the screen that the user wants | |
1532 * to read before redrawing, so call wait_return(). | |
1533 */ | |
1534 #ifndef FEAT_GUI_MSWIN | |
1535 if (cmd == NULL | |
1536 # ifdef WIN3264 | |
1537 || (winstart && !need_wait_return) | |
1538 # endif | |
1539 ) | |
1540 { | |
1541 if (msg_silent == 0) | |
1542 redraw_later_clear(); | |
1543 need_wait_return = FALSE; | |
1544 } | |
1545 else | |
1546 { | |
1547 /* | |
1548 * If we switch screens when starttermcap() is called, we really | |
1549 * want to wait for "hit return to continue". | |
1550 */ | |
1551 save_nwr = no_wait_return; | |
1552 if (swapping_screen()) | |
1553 no_wait_return = FALSE; | |
1554 # ifdef AMIGA | |
1555 wait_return(term_console ? -1 : msg_silent == 0); /* see below */ | |
1556 # else | |
1557 wait_return(msg_silent == 0); | |
1558 # endif | |
1559 no_wait_return = save_nwr; | |
1560 } | |
1561 #endif /* FEAT_GUI_W32 */ | |
1562 | |
1563 #ifdef MSWIN | |
1564 if (!winstart) /* if winstart==TRUE, never stopped termcap! */ | |
1565 #endif | |
1566 starttermcap(); /* start termcap if not done by wait_return() */ | |
1567 | |
1568 /* | |
1569 * In an Amiga window redrawing is caused by asking the window size. | |
1570 * If we got an interrupt this will not work. The chance that the | |
1571 * window size is wrong is very small, but we need to redraw the | |
1572 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY | |
1573 * but it saves an extra redraw. | |
1574 */ | |
1575 #ifdef AMIGA | |
1576 if (skip_redraw) /* ':' hit in wait_return() */ | |
1577 { | |
1578 if (msg_silent == 0) | |
1579 redraw_later_clear(); | |
1580 } | |
1581 else if (term_console) | |
1582 { | |
1583 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */ | |
1584 if (got_int && msg_silent == 0) | |
1585 redraw_later_clear(); /* if got_int is TRUE, redraw needed */ | |
1586 else | |
1587 must_redraw = 0; /* no extra redraw needed */ | |
1588 } | |
1589 #endif | |
1590 } | |
1591 | |
1592 /* display any error messages now */ | |
1593 display_errors(); | |
725 | 1594 |
1595 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf); | |
7 | 1596 } |
1597 | |
1598 /* | |
1599 * Create a shell command from a command string, input redirection file and | |
1600 * output redirection file. | |
1601 * Returns an allocated string with the shell command, or NULL for failure. | |
1602 */ | |
1603 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1604 make_filter_cmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1605 char_u *cmd, /* command */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1606 char_u *itmp, /* NULL or name of input file */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1607 char_u *otmp) /* NULL or name of output file */ |
7 | 1608 { |
1609 char_u *buf; | |
1610 long_u len; | |
5867 | 1611 |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1612 #if defined(UNIX) |
5881 | 1613 int is_fish_shell; |
5911 | 1614 char_u *shell_name = get_isolated_shell_name(); |
5881 | 1615 |
5867 | 1616 /* Account for fish's different syntax for subshells */ |
5911 | 1617 is_fish_shell = (fnamecmp(shell_name, "fish") == 0); |
1618 vim_free(shell_name); | |
5867 | 1619 if (is_fish_shell) |
1620 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */ | |
1621 else | |
1622 #endif | |
1623 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */ | |
7 | 1624 if (itmp != NULL) |
1625 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */ | |
1626 if (otmp != NULL) | |
1627 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */ | |
1628 buf = lalloc(len, TRUE); | |
1629 if (buf == NULL) | |
1630 return NULL; | |
1631 | |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1632 #if defined(UNIX) |
7 | 1633 /* |
169 | 1634 * Put braces around the command (for concatenated commands) when |
1635 * redirecting input and/or output. | |
7 | 1636 */ |
169 | 1637 if (itmp != NULL || otmp != NULL) |
5867 | 1638 { |
1639 if (is_fish_shell) | |
1640 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd); | |
1641 else | |
1642 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); | |
1643 } | |
169 | 1644 else |
1645 STRCPY(buf, cmd); | |
7 | 1646 if (itmp != NULL) |
1647 { | |
1648 STRCAT(buf, " < "); | |
1649 STRCAT(buf, itmp); | |
1650 } | |
1651 #else | |
1652 /* | |
5867 | 1653 * For shells that don't understand braces around commands, at least allow |
7 | 1654 * the use of commands in a pipe. |
1655 */ | |
1656 STRCPY(buf, cmd); | |
1657 if (itmp != NULL) | |
1658 { | |
1659 char_u *p; | |
1660 | |
1661 /* | |
1662 * If there is a pipe, we have to put the '<' in front of it. | |
1663 * Don't do this when 'shellquote' is not empty, otherwise the | |
1664 * redirection would be inside the quotes. | |
1665 */ | |
1666 if (*p_shq == NUL) | |
1667 { | |
1668 p = vim_strchr(buf, '|'); | |
1669 if (p != NULL) | |
1670 *p = NUL; | |
1671 } | |
1672 STRCAT(buf, " <"); /* " < " causes problems on Amiga */ | |
1673 STRCAT(buf, itmp); | |
1674 if (*p_shq == NUL) | |
1675 { | |
1676 p = vim_strchr(cmd, '|'); | |
1677 if (p != NULL) | |
1678 { | |
1679 STRCAT(buf, " "); /* insert a space before the '|' for DOS */ | |
1680 STRCAT(buf, p); | |
1681 } | |
1682 } | |
1683 } | |
1684 #endif | |
1685 if (otmp != NULL) | |
1872 | 1686 append_redir(buf, (int)len, p_srr, otmp); |
7 | 1687 |
1688 return buf; | |
1689 } | |
1690 | |
1691 /* | |
1872 | 1692 * Append output redirection for file "fname" to the end of string buffer |
1693 * "buf[buflen]" | |
7 | 1694 * Works with the 'shellredir' and 'shellpipe' options. |
1695 * The caller should make sure that there is enough room: | |
1696 * STRLEN(opt) + STRLEN(fname) + 3 | |
1697 */ | |
1698 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1699 append_redir( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1700 char_u *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1701 int buflen, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1702 char_u *opt, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1703 char_u *fname) |
7 | 1704 { |
1705 char_u *p; | |
1872 | 1706 char_u *end; |
1707 | |
1708 end = buf + STRLEN(buf); | |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1709 /* find "%s" */ |
7 | 1710 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
|
1711 { |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1712 if (p[1] == 's') /* found %s */ |
7 | 1713 break; |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1714 if (p[1] == '%') /* skip %% */ |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1715 ++p; |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1716 } |
7 | 1717 if (p != NULL) |
1718 { | |
1872 | 1719 *end = ' '; /* not really needed? Not with sh, ksh or bash */ |
1720 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)), | |
1721 (char *)opt, (char *)fname); | |
7 | 1722 } |
1723 else | |
1872 | 1724 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
7 | 1725 #ifdef FEAT_QUICKFIX |
1726 " %s %s", | |
1727 #else | |
1728 " %s%s", /* " > %s" causes problems on Amiga */ | |
1729 #endif | |
1730 (char *)opt, (char *)fname); | |
1731 } | |
1732 | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1733 #if defined(FEAT_VIMINFO) || defined(PROTO) |
7 | 1734 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
1735 static int no_viminfo(void); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
1736 static int read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing); |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
1737 static void write_viminfo_version(FILE *fp_out); |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1738 static void write_viminfo_barlines(vir_T *virp, FILE *fp_out); |
7 | 1739 static int viminfo_errcnt; |
1740 | |
1741 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1742 no_viminfo(void) |
7 | 1743 { |
1744 /* "vim -i NONE" does not read or write a viminfo file */ | |
11666
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11649
diff
changeset
|
1745 return STRCMP(p_viminfofile, "NONE") == 0; |
7 | 1746 } |
1747 | |
1748 /* | |
1749 * Report an error for reading a viminfo file. | |
1750 * Count the number of errors. When there are more than 10, return TRUE. | |
1751 */ | |
1752 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1753 viminfo_error(char *errnum, char *message, char_u *line) |
7 | 1754 { |
274 | 1755 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "), |
1756 errnum, message); | |
1459 | 1757 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1); |
156 | 1758 if (IObuff[STRLEN(IObuff) - 1] == '\n') |
1759 IObuff[STRLEN(IObuff) - 1] = NUL; | |
7 | 1760 emsg(IObuff); |
1761 if (++viminfo_errcnt >= 10) | |
1762 { | |
1763 EMSG(_("E136: viminfo: Too many errors, skipping rest of file")); | |
1764 return TRUE; | |
1765 } | |
1766 return FALSE; | |
1767 } | |
1768 | |
1769 /* | |
1770 * read_viminfo() -- Read the viminfo file. Registers etc. which are already | |
1733 | 1771 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb |
7 | 1772 */ |
1773 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1774 read_viminfo( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1775 char_u *file, /* file name or NULL to use default name */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1776 int flags) /* VIF_WANT_INFO et al. */ |
7 | 1777 { |
1778 FILE *fp; | |
1779 char_u *fname; | |
1780 | |
1781 if (no_viminfo()) | |
1782 return FAIL; | |
1783 | |
1733 | 1784 fname = viminfo_filename(file); /* get file name in allocated buffer */ |
7 | 1785 if (fname == NULL) |
1786 return FAIL; | |
1787 fp = mch_fopen((char *)fname, READBIN); | |
1788 | |
1789 if (p_verbose > 0) | |
294 | 1790 { |
1791 verbose_enter(); | |
274 | 1792 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"), |
1793 fname, | |
1733 | 1794 (flags & VIF_WANT_INFO) ? _(" info") : "", |
1795 (flags & VIF_WANT_MARKS) ? _(" marks") : "", | |
1796 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "", | |
274 | 1797 fp == NULL ? _(" FAILED") : ""); |
294 | 1798 verbose_leave(); |
1799 } | |
7 | 1800 |
1801 vim_free(fname); | |
1802 if (fp == NULL) | |
1803 return FAIL; | |
1804 | |
1805 viminfo_errcnt = 0; | |
1733 | 1806 do_viminfo(fp, NULL, flags); |
7 | 1807 |
1808 fclose(fp); | |
1809 return OK; | |
1810 } | |
1811 | |
1812 /* | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1813 * Write the viminfo file. The old one is read in first so that effectively a |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1814 * merge of current info and old info is done. This allows multiple vims to |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1815 * run simultaneously, without losing any marks etc. |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1816 * If "forceit" is TRUE, then the old file is not read in, and only internal |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1817 * info is written to the file. |
7 | 1818 */ |
1819 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1820 write_viminfo(char_u *file, int forceit) |
7 | 1821 { |
1822 char_u *fname; | |
1823 FILE *fp_in = NULL; /* input viminfo file, if any */ | |
1824 FILE *fp_out = NULL; /* output viminfo file */ | |
1825 char_u *tempname = NULL; /* name of temp viminfo file */ | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9377
diff
changeset
|
1826 stat_T st_new; /* mch_stat() of potential new file */ |
7 | 1827 #if defined(UNIX) || defined(VMS) |
1828 mode_t umask_save; | |
1829 #endif | |
1830 #ifdef UNIX | |
1831 int shortname = FALSE; /* use 8.3 file name */ | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9377
diff
changeset
|
1832 stat_T st_old; /* mch_stat() of existing viminfo file */ |
7 | 1833 #endif |
601 | 1834 #ifdef WIN3264 |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
1835 int hidden = FALSE; |
601 | 1836 #endif |
7 | 1837 |
1838 if (no_viminfo()) | |
1839 return; | |
1840 | |
1841 fname = viminfo_filename(file); /* may set to default if NULL */ | |
1842 if (fname == NULL) | |
1843 return; | |
1844 | |
1845 fp_in = mch_fopen((char *)fname, READBIN); | |
1846 if (fp_in == NULL) | |
1847 { | |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1848 int fd; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1849 |
7 | 1850 /* if it does exist, but we can't read it, don't try writing */ |
1851 if (mch_stat((char *)fname, &st_new) == 0) | |
1852 goto end; | |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1853 |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1854 /* Create the new .viminfo non-accessible for others, because it may |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1855 * contain text from non-accessible documents. It is up to the user to |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1856 * widen access (e.g. to a group). This may also fail if there is a |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1857 * race condition, then just give up. */ |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1858 fd = mch_open((char *)fname, |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1859 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600); |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1860 if (fd < 0) |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1861 goto end; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1862 fp_out = fdopen(fd, WRITEBIN); |
7 | 1863 } |
1864 else | |
1865 { | |
1866 /* | |
1867 * There is an existing viminfo file. Create a temporary file to | |
1868 * write the new viminfo into, in the same directory as the | |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1869 * existing viminfo file, which will be renamed once all writing is |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1870 * successful. |
7 | 1871 */ |
1872 #ifdef UNIX | |
1873 /* | |
1874 * For Unix we check the owner of the file. It's not very nice to | |
1875 * overwrite a user's viminfo file after a "su root", with a | |
1876 * viminfo file that the user can't read. | |
1877 */ | |
1869 | 1878 st_old.st_dev = (dev_t)0; |
1438 | 1879 st_old.st_ino = 0; |
7 | 1880 st_old.st_mode = 0600; |
1076 | 1881 if (mch_stat((char *)fname, &st_old) == 0 |
1882 && getuid() != ROOT_UID | |
560 | 1883 && !(st_old.st_uid == getuid() |
7 | 1884 ? (st_old.st_mode & 0200) |
1885 : (st_old.st_gid == getgid() | |
1886 ? (st_old.st_mode & 0020) | |
1887 : (st_old.st_mode & 0002)))) | |
1888 { | |
944 | 1889 int tt = msg_didany; |
7 | 1890 |
1891 /* avoid a wait_return for this message, it's annoying */ | |
1892 EMSG2(_("E137: Viminfo file is not writable: %s"), fname); | |
1893 msg_didany = tt; | |
840 | 1894 fclose(fp_in); |
7 | 1895 goto end; |
1896 } | |
1897 #endif | |
601 | 1898 #ifdef WIN3264 |
1899 /* Get the file attributes of the existing viminfo file. */ | |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
1900 hidden = mch_ishidden(fname); |
601 | 1901 #endif |
7 | 1902 |
1903 /* | |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1904 * Make tempname, find one that does not exist yet. |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1905 * Beware of a race condition: If someone logs out and all Vim |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1906 * instances exit at the same time a temp file might be created between |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1907 * stat() and open(). Use mch_open() with O_EXCL to avoid that. |
7 | 1908 * May try twice: Once normal and once with shortname set, just in |
1909 * case somebody puts his viminfo file in an 8.3 filesystem. | |
1910 */ | |
1911 for (;;) | |
1912 { | |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1913 int next_char = 'z'; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1914 char_u *wp; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1915 |
7 | 1916 tempname = buf_modname( |
1917 #ifdef UNIX | |
1918 shortname, | |
1919 #else | |
1920 FALSE, | |
1921 #endif | |
1922 fname, | |
1923 #ifdef VMS | |
1924 (char_u *)"-tmp", | |
1925 #else | |
1926 (char_u *)".tmp", | |
1927 #endif | |
1928 FALSE); | |
1929 if (tempname == NULL) /* out of memory */ | |
1930 break; | |
1931 | |
1932 /* | |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1933 * Try a series of names. Change one character, just before |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1934 * the extension. This should also work for an 8.3 |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1935 * file name, when after adding the extension it still is |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1936 * the same file as the original. |
7 | 1937 */ |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1938 wp = tempname + STRLEN(tempname) - 5; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1939 if (wp < gettail(tempname)) /* empty file name? */ |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1940 wp = gettail(tempname); |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1941 for (;;) |
7 | 1942 { |
1943 /* | |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1944 * Check if tempfile already exists. Never overwrite an |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1945 * existing file! |
7 | 1946 */ |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1947 if (mch_stat((char *)tempname, &st_new) == 0) |
7 | 1948 { |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1949 #ifdef UNIX |
7 | 1950 /* |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1951 * Check if tempfile is same as original file. May happen |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1952 * when modname() gave the same file back. E.g. silly |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1953 * link, or file name-length reached. Try again with |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1954 * shortname set. |
7 | 1955 */ |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1956 if (!shortname && st_new.st_dev == st_old.st_dev |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1957 && st_new.st_ino == st_old.st_ino) |
7 | 1958 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13174
diff
changeset
|
1959 VIM_CLEAR(tempname); |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1960 shortname = TRUE; |
7 | 1961 break; |
1962 } | |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1963 #endif |
7 | 1964 } |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1965 else |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1966 { |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1967 /* Try creating the file exclusively. This may fail if |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1968 * another Vim tries to do it at the same time. */ |
762 | 1969 #ifdef VMS |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1970 /* fdopen() fails for some reason */ |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1971 umask_save = umask(077); |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1972 fp_out = mch_fopen((char *)tempname, WRITEBIN); |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1973 (void)umask(umask_save); |
762 | 1974 #else |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1975 int fd; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1976 |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1977 /* Use mch_open() to be able to use O_NOFOLLOW and set file |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1978 * protection: |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1979 * Unix: same as original file, but strip s-bit. Reset |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1980 * umask to avoid it getting in the way. |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1981 * Others: r&w for user only. */ |
762 | 1982 # ifdef UNIX |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1983 umask_save = umask(0); |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1984 fd = mch_open((char *)tempname, |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1985 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1986 (int)((st_old.st_mode & 0777) | 0600)); |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1987 (void)umask(umask_save); |
762 | 1988 # else |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1989 fd = mch_open((char *)tempname, |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1990 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600); |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1991 # endif |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1992 if (fd < 0) |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1993 { |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1994 fp_out = NULL; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1995 # ifdef EEXIST |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1996 /* Avoid trying lots of names while the problem is lack |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1997 * of premission, only retry if the file already |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1998 * exists. */ |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
1999 if (errno != EEXIST) |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2000 break; |
762 | 2001 # endif |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2002 } |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2003 else |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2004 fp_out = fdopen(fd, WRITEBIN); |
762 | 2005 #endif /* VMS */ |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2006 if (fp_out != NULL) |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2007 break; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2008 } |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2009 |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2010 /* Assume file exists, try again with another name. */ |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2011 if (next_char == 'a' - 1) |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2012 { |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2013 /* They all exist? Must be something wrong! Don't write |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2014 * the viminfo file then. */ |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2015 EMSG2(_("E929: Too many viminfo temp files, like %s!"), |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2016 tempname); |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2017 break; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2018 } |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2019 *wp = next_char; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2020 --next_char; |
7 | 2021 } |
557 | 2022 |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2023 if (tempname != NULL) |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2024 break; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2025 /* continue if shortname was set */ |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2026 } |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2027 |
557 | 2028 #if defined(UNIX) && defined(HAVE_FCHOWN) |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2029 if (tempname != NULL && fp_out != NULL) |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2030 { |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2031 stat_T tmp_st; |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2032 |
7 | 2033 /* |
12820
63d87ba12c34
patch 8.0.1287: temp file used for viminfo may have wrong permissions
Christian Brabandt <cb@256bit.org>
parents:
12676
diff
changeset
|
2034 * Make sure the original owner can read/write the tempfile and |
63d87ba12c34
patch 8.0.1287: temp file used for viminfo may have wrong permissions
Christian Brabandt <cb@256bit.org>
parents:
12676
diff
changeset
|
2035 * otherwise preserve permissions, making sure the group matches. |
7 | 2036 */ |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2037 if (mch_stat((char *)tempname, &tmp_st) >= 0) |
12820
63d87ba12c34
patch 8.0.1287: temp file used for viminfo may have wrong permissions
Christian Brabandt <cb@256bit.org>
parents:
12676
diff
changeset
|
2038 { |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2039 if (st_old.st_uid != tmp_st.st_uid) |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2040 /* Changing the owner might fail, in which case the |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2041 * file will now owned by the current user, oh well. */ |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2042 ignored = fchown(fileno(fp_out), st_old.st_uid, -1); |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2043 if (st_old.st_gid != tmp_st.st_gid |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2044 && fchown(fileno(fp_out), -1, st_old.st_gid) == -1) |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2045 /* can't set the group to what it should be, remove |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2046 * group permissions */ |
12820
63d87ba12c34
patch 8.0.1287: temp file used for viminfo may have wrong permissions
Christian Brabandt <cb@256bit.org>
parents:
12676
diff
changeset
|
2047 (void)mch_setperm(tempname, 0600); |
63d87ba12c34
patch 8.0.1287: temp file used for viminfo may have wrong permissions
Christian Brabandt <cb@256bit.org>
parents:
12676
diff
changeset
|
2048 } |
12938
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2049 else |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2050 /* can't stat the file, set conservative permissions */ |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2051 (void)mch_setperm(tempname, 0600); |
1d41836582b3
patch 8.0.1345: race condition between stat() and open() for viminfo
Christian Brabandt <cb@256bit.org>
parents:
12820
diff
changeset
|
2052 } |
12942
914fbd1d269f
patch 8.0.1347: MS-Windows: build broken by misplaced curly
Christian Brabandt <cb@256bit.org>
parents:
12938
diff
changeset
|
2053 #endif |
914fbd1d269f
patch 8.0.1347: MS-Windows: build broken by misplaced curly
Christian Brabandt <cb@256bit.org>
parents:
12938
diff
changeset
|
2054 } |
7 | 2055 |
2056 /* | |
2057 * Check if the new viminfo file can be written to. | |
2058 */ | |
2059 if (fp_out == NULL) | |
2060 { | |
2061 EMSG2(_("E138: Can't write viminfo file %s!"), | |
301 | 2062 (fp_in == NULL || tempname == NULL) ? fname : tempname); |
7 | 2063 if (fp_in != NULL) |
2064 fclose(fp_in); | |
2065 goto end; | |
2066 } | |
2067 | |
2068 if (p_verbose > 0) | |
294 | 2069 { |
2070 verbose_enter(); | |
274 | 2071 smsg((char_u *)_("Writing viminfo file \"%s\""), fname); |
294 | 2072 verbose_leave(); |
2073 } | |
7 | 2074 |
2075 viminfo_errcnt = 0; | |
1733 | 2076 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS)); |
7 | 2077 |
8573
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2078 if (fclose(fp_out) == EOF) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2079 ++viminfo_errcnt; |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2080 |
7 | 2081 if (fp_in != NULL) |
2082 { | |
2083 fclose(fp_in); | |
601 | 2084 |
6049 | 2085 /* In case of an error keep the original viminfo file. Otherwise |
2086 * rename the newly written file. Give an error if that fails. */ | |
8573
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2087 if (viminfo_errcnt == 0) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2088 { |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2089 if (vim_rename(tempname, fname) == -1) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2090 { |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2091 ++viminfo_errcnt; |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2092 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname); |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2093 } |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2094 # ifdef WIN3264 |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2095 /* If the viminfo file was hidden then also hide the new file. */ |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2096 else if (hidden) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2097 mch_hide(fname); |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2098 # endif |
6049 | 2099 } |
2100 if (viminfo_errcnt > 0) | |
7 | 2101 mch_remove(tempname); |
601 | 2102 } |
2103 | |
7 | 2104 end: |
2105 vim_free(fname); | |
2106 vim_free(tempname); | |
2107 } | |
2108 | |
2109 /* | |
2110 * Get the viminfo file name to use. | |
2111 * If "file" is given and not empty, use it (has already been expanded by | |
2112 * cmdline functions). | |
2113 * Otherwise use "-i file_name", value from 'viminfo' or the default, and | |
2114 * expand environment variables. | |
2115 * Returns an allocated string. NULL when out of memory. | |
2116 */ | |
2117 static char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2118 viminfo_filename(char_u *file) |
7 | 2119 { |
2120 if (file == NULL || *file == NUL) | |
2121 { | |
11666
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11649
diff
changeset
|
2122 if (*p_viminfofile != NUL) |
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11649
diff
changeset
|
2123 file = p_viminfofile; |
7 | 2124 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL) |
2125 { | |
2126 #ifdef VIMINFO_FILE2 | |
2127 # ifdef VMS | |
2128 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL) | |
2129 # else | |
12297
98586656fcae
patch 8.0.1028: MS-Windows: viminfo uses $VIM/_viminfo if $HOME not set
Christian Brabandt <cb@256bit.org>
parents:
12146
diff
changeset
|
2130 # ifdef MSWIN |
98586656fcae
patch 8.0.1028: MS-Windows: viminfo uses $VIM/_viminfo if $HOME not set
Christian Brabandt <cb@256bit.org>
parents:
12146
diff
changeset
|
2131 /* Use $VIM only if $HOME is the default "C:/". */ |
98586656fcae
patch 8.0.1028: MS-Windows: viminfo uses $VIM/_viminfo if $HOME not set
Christian Brabandt <cb@256bit.org>
parents:
12146
diff
changeset
|
2132 if (STRCMP(vim_getenv((char_u *)"HOME", NULL), "C:/") == 0 |
98586656fcae
patch 8.0.1028: MS-Windows: viminfo uses $VIM/_viminfo if $HOME not set
Christian Brabandt <cb@256bit.org>
parents:
12146
diff
changeset
|
2133 && mch_getenv((char_u *)"HOME") == NULL) |
98586656fcae
patch 8.0.1028: MS-Windows: viminfo uses $VIM/_viminfo if $HOME not set
Christian Brabandt <cb@256bit.org>
parents:
12146
diff
changeset
|
2134 # else |
7 | 2135 if (mch_getenv((char_u *)"HOME") == NULL) |
12297
98586656fcae
patch 8.0.1028: MS-Windows: viminfo uses $VIM/_viminfo if $HOME not set
Christian Brabandt <cb@256bit.org>
parents:
12146
diff
changeset
|
2136 # endif |
7 | 2137 # endif |
2138 { | |
2139 /* don't use $VIM when not available. */ | |
2140 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL); | |
2141 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */ | |
2142 file = (char_u *)VIMINFO_FILE2; | |
2143 else | |
2144 file = (char_u *)VIMINFO_FILE; | |
2145 } | |
2146 else | |
2147 #endif | |
2148 file = (char_u *)VIMINFO_FILE; | |
2149 } | |
2150 expand_env(file, NameBuff, MAXPATHL); | |
2151 file = NameBuff; | |
2152 } | |
2153 return vim_strsave(file); | |
2154 } | |
2155 | |
2156 /* | |
2157 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo(). | |
2158 */ | |
2159 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2160 do_viminfo(FILE *fp_in, FILE *fp_out, int flags) |
7 | 2161 { |
2162 int eof = FALSE; | |
2163 vir_T vir; | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2164 int merge = FALSE; |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2165 int do_copy_marks = FALSE; |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2166 garray_T buflist; |
7 | 2167 |
2168 if ((vir.vir_line = alloc(LSIZE)) == NULL) | |
2169 return; | |
2170 vir.vir_fd = fp_in; | |
2171 #ifdef FEAT_MBYTE | |
2172 vir.vir_conv.vc_type = CONV_NONE; | |
2173 #endif | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2174 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100); |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2175 vir.vir_version = -1; |
7 | 2176 |
2177 if (fp_in != NULL) | |
2178 { | |
1733 | 2179 if (flags & VIF_WANT_INFO) |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2180 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2181 if (fp_out != NULL) |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2182 { |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2183 /* Registers and marks are read and kept separate from what |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2184 * this Vim is using. They are merged when writing. */ |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2185 prepare_viminfo_registers(); |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2186 prepare_viminfo_marks(); |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2187 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2188 |
1733 | 2189 eof = read_viminfo_up_to_marks(&vir, |
2190 flags & VIF_FORCEIT, fp_out != NULL); | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2191 merge = TRUE; |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2192 } |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2193 else if (flags != 0) |
7 | 2194 /* Skip info, find start of marks */ |
2195 while (!(eof = viminfo_readline(&vir)) | |
2196 && vir.vir_line[0] != '>') | |
2197 ; | |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2198 |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2199 do_copy_marks = (flags & |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2200 (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT)); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2201 } |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2202 |
7 | 2203 if (fp_out != NULL) |
2204 { | |
2205 /* Write the info: */ | |
2206 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"), | |
2207 VIM_VERSION_MEDIUM); | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2208 fputs(_("# You may edit it if you're careful!\n\n"), fp_out); |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2209 write_viminfo_version(fp_out); |
7 | 2210 #ifdef FEAT_MBYTE |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2211 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out); |
7 | 2212 fprintf(fp_out, "*encoding=%s\n\n", p_enc); |
2213 #endif | |
2214 write_viminfo_search_pattern(fp_out); | |
2215 write_viminfo_sub_string(fp_out); | |
2216 #ifdef FEAT_CMDHIST | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2217 write_viminfo_history(fp_out, merge); |
7 | 2218 #endif |
2219 write_viminfo_registers(fp_out); | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2220 finish_viminfo_registers(); |
7 | 2221 #ifdef FEAT_EVAL |
2222 write_viminfo_varlist(fp_out); | |
2223 #endif | |
2224 write_viminfo_filemarks(fp_out); | |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2225 finish_viminfo_marks(); |
7 | 2226 write_viminfo_bufferlist(fp_out); |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2227 write_viminfo_barlines(&vir, fp_out); |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2228 |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2229 if (do_copy_marks) |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2230 ga_init2(&buflist, sizeof(buf_T *), 50); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2231 write_viminfo_marks(fp_out, do_copy_marks ? &buflist : NULL); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2232 } |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2233 |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2234 if (do_copy_marks) |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2235 { |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2236 copy_viminfo_marks(&vir, fp_out, &buflist, eof, flags); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2237 if (fp_out != NULL) |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2238 ga_clear(&buflist); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2239 } |
7 | 2240 |
2241 vim_free(vir.vir_line); | |
2242 #ifdef FEAT_MBYTE | |
2243 if (vir.vir_conv.vc_type != CONV_NONE) | |
2244 convert_setup(&vir.vir_conv, NULL, NULL); | |
2245 #endif | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2246 ga_clear_strings(&vir.vir_barlines); |
7 | 2247 } |
2248 | |
2249 /* | |
2250 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the | |
2251 * first part of the viminfo file which contains everything but the marks that | |
2252 * are local to a file. Returns TRUE when end-of-file is reached. -- webb | |
2253 */ | |
2254 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2255 read_viminfo_up_to_marks( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2256 vir_T *virp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2257 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2258 int writing) |
7 | 2259 { |
2260 int eof; | |
2261 buf_T *buf; | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2262 int got_encoding = FALSE; |
7 | 2263 |
2264 #ifdef FEAT_CMDHIST | |
4285 | 2265 prepare_viminfo_history(forceit ? 9999 : 0, writing); |
7 | 2266 #endif |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2267 |
7 | 2268 eof = viminfo_readline(virp); |
2269 while (!eof && virp->vir_line[0] != '>') | |
2270 { | |
2271 switch (virp->vir_line[0]) | |
2272 { | |
2273 /* Characters reserved for future expansion, ignored now */ | |
2274 case '+': /* "+40 /path/dir file", for running vim without args */ | |
2275 case '^': /* to be defined */ | |
2276 case '<': /* long line - ignored */ | |
2277 /* A comment or empty line. */ | |
2278 case NUL: | |
2279 case '\r': | |
2280 case '\n': | |
2281 case '#': | |
2282 eof = viminfo_readline(virp); | |
2283 break; | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2284 case '|': |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2285 eof = read_viminfo_barline(virp, got_encoding, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2286 forceit, writing); |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2287 break; |
7 | 2288 case '*': /* "*encoding=value" */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2289 got_encoding = TRUE; |
7 | 2290 eof = viminfo_encoding(virp); |
2291 break; | |
2292 case '!': /* global variable */ | |
2293 #ifdef FEAT_EVAL | |
2294 eof = read_viminfo_varlist(virp, writing); | |
2295 #else | |
2296 eof = viminfo_readline(virp); | |
2297 #endif | |
2298 break; | |
2299 case '%': /* entry for buffer list */ | |
2300 eof = read_viminfo_bufferlist(virp, writing); | |
2301 break; | |
2302 case '"': | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2303 /* When registers are in bar lines skip the old style register |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2304 * lines. */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2305 if (virp->vir_version < VIMINFO_VERSION_WITH_REGISTERS) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2306 eof = read_viminfo_register(virp, forceit); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2307 else |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2308 do { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2309 eof = viminfo_readline(virp); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2310 } while (!eof && (virp->vir_line[0] == TAB |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2311 || virp->vir_line[0] == '<')); |
7 | 2312 break; |
2313 case '/': /* Search string */ | |
2314 case '&': /* Substitute search string */ | |
2315 case '~': /* Last search string, followed by '/' or '&' */ | |
2316 eof = read_viminfo_search_pattern(virp, forceit); | |
2317 break; | |
2318 case '$': | |
2319 eof = read_viminfo_sub_string(virp, forceit); | |
2320 break; | |
2321 case ':': | |
2322 case '?': | |
2323 case '=': | |
2324 case '@': | |
2325 #ifdef FEAT_CMDHIST | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2326 /* When history is in bar lines skip the old style history |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2327 * lines. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2328 if (virp->vir_version < VIMINFO_VERSION_WITH_HISTORY) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2329 eof = read_viminfo_history(virp, writing); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2330 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2331 #endif |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2332 eof = viminfo_readline(virp); |
7 | 2333 break; |
2334 case '-': | |
2335 case '\'': | |
9297
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2336 /* When file marks are in bar lines skip the old style lines. */ |
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2337 if (virp->vir_version < VIMINFO_VERSION_WITH_MARKS) |
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2338 eof = read_viminfo_filemark(virp, forceit); |
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2339 else |
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2340 eof = viminfo_readline(virp); |
7 | 2341 break; |
2342 default: | |
2343 if (viminfo_error("E575: ", _("Illegal starting char"), | |
2344 virp->vir_line)) | |
2345 eof = TRUE; | |
2346 else | |
2347 eof = viminfo_readline(virp); | |
2348 break; | |
2349 } | |
2350 } | |
2351 | |
2352 #ifdef FEAT_CMDHIST | |
2353 /* Finish reading history items. */ | |
4285 | 2354 if (!writing) |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9248
diff
changeset
|
2355 finish_viminfo_history(virp); |
7 | 2356 #endif |
2357 | |
2358 /* Change file names to buffer numbers for fmarks. */ | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2359 FOR_ALL_BUFFERS(buf) |
7 | 2360 fmarks_check_names(buf); |
2361 | |
2362 return eof; | |
2363 } | |
2364 | |
2365 /* | |
2366 * Compare the 'encoding' value in the viminfo file with the current value of | |
2367 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for | |
2368 * conversion of text with iconv() in viminfo_readstring(). | |
2369 */ | |
2370 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2371 viminfo_encoding(vir_T *virp) |
7 | 2372 { |
2373 #ifdef FEAT_MBYTE | |
2374 char_u *p; | |
2375 int i; | |
2376 | |
2377 if (get_viminfo_parameter('c') != 0) | |
2378 { | |
2379 p = vim_strchr(virp->vir_line, '='); | |
2380 if (p != NULL) | |
2381 { | |
2382 /* remove trailing newline */ | |
2383 ++p; | |
2384 for (i = 0; vim_isprintc(p[i]); ++i) | |
2385 ; | |
2386 p[i] = NUL; | |
2387 | |
2388 convert_setup(&virp->vir_conv, p, p_enc); | |
2389 } | |
2390 } | |
2391 #endif | |
2392 return viminfo_readline(virp); | |
2393 } | |
2394 | |
2395 /* | |
2396 * Read a line from the viminfo file. | |
2397 * Returns TRUE for end-of-file; | |
2398 */ | |
2399 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2400 viminfo_readline(vir_T *virp) |
7 | 2401 { |
2402 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); | |
2403 } | |
2404 | |
2405 /* | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2406 * Check string read from viminfo file. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2407 * Remove '\n' at the end of the line. |
7 | 2408 * - replace CTRL-V CTRL-V with CTRL-V |
2409 * - replace CTRL-V 'n' with '\n' | |
2410 * | |
2411 * Check for a long line as written by viminfo_writestring(). | |
2412 * | |
2413 * Return the string in allocated memory (NULL when out of memory). | |
2414 */ | |
2415 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2416 viminfo_readstring( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2417 vir_T *virp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2418 int off, /* offset for virp->vir_line */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2419 int convert UNUSED) /* convert the string */ |
7 | 2420 { |
2421 char_u *retval; | |
2422 char_u *s, *d; | |
2423 long len; | |
2424 | |
2425 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1])) | |
2426 { | |
2427 len = atol((char *)virp->vir_line + off + 1); | |
2428 retval = lalloc(len, TRUE); | |
2429 if (retval == NULL) | |
2430 { | |
2431 /* Line too long? File messed up? Skip next line. */ | |
2432 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd); | |
2433 return NULL; | |
2434 } | |
2435 (void)vim_fgets(retval, (int)len, virp->vir_fd); | |
2436 s = retval + 1; /* Skip the leading '<' */ | |
2437 } | |
2438 else | |
2439 { | |
2440 retval = vim_strsave(virp->vir_line + off); | |
2441 if (retval == NULL) | |
2442 return NULL; | |
2443 s = retval; | |
2444 } | |
2445 | |
2446 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */ | |
2447 d = retval; | |
2448 while (*s != NUL && *s != '\n') | |
2449 { | |
2450 if (s[0] == Ctrl_V && s[1] != NUL) | |
2451 { | |
2452 if (s[1] == 'n') | |
2453 *d++ = '\n'; | |
2454 else | |
2455 *d++ = Ctrl_V; | |
2456 s += 2; | |
2457 } | |
2458 else | |
2459 *d++ = *s++; | |
2460 } | |
2461 *d = NUL; | |
2462 | |
2463 #ifdef FEAT_MBYTE | |
2464 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL) | |
2465 { | |
2466 d = string_convert(&virp->vir_conv, retval, NULL); | |
2467 if (d != NULL) | |
2468 { | |
2469 vim_free(retval); | |
2470 retval = d; | |
2471 } | |
2472 } | |
2473 #endif | |
2474 | |
2475 return retval; | |
2476 } | |
2477 | |
2478 /* | |
2479 * write string to viminfo file | |
2480 * - replace CTRL-V with CTRL-V CTRL-V | |
2481 * - replace '\n' with CTRL-V 'n' | |
2482 * - add a '\n' at the end | |
2483 * | |
2484 * For a long line: | |
2485 * - write " CTRL-V <length> \n " in first line | |
2486 * - write " < <string> \n " in second line | |
2487 */ | |
2488 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2489 viminfo_writestring(FILE *fd, char_u *p) |
7 | 2490 { |
2491 int c; | |
2492 char_u *s; | |
2493 int len = 0; | |
2494 | |
2495 for (s = p; *s != NUL; ++s) | |
2496 { | |
2497 if (*s == Ctrl_V || *s == '\n') | |
2498 ++len; | |
2499 ++len; | |
2500 } | |
2501 | |
2502 /* If the string will be too long, write its length and put it in the next | |
2503 * line. Take into account that some room is needed for what comes before | |
2504 * the string (e.g., variable name). Add something to the length for the | |
2505 * '<', NL and trailing NUL. */ | |
2506 if (len > LSIZE / 2) | |
2507 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3); | |
2508 | |
2509 while ((c = *p++) != NUL) | |
2510 { | |
2511 if (c == Ctrl_V || c == '\n') | |
2512 { | |
2513 putc(Ctrl_V, fd); | |
2514 if (c == '\n') | |
2515 c = 'n'; | |
2516 } | |
2517 putc(c, fd); | |
2518 } | |
2519 putc('\n', fd); | |
2520 } | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2521 |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2522 /* |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2523 * Write a string in quotes that barline_parse() can read back. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2524 * Breaks the line in less than LSIZE pieces when needed. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2525 * Returns remaining characters in the line. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2526 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2527 int |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2528 barline_writestring(FILE *fd, char_u *s, int remaining_start) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2529 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2530 char_u *p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2531 int remaining = remaining_start; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2532 int len = 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2533 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2534 /* Count the number of characters produced, including quotes. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2535 for (p = s; *p != NUL; ++p) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2536 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2537 if (*p == NL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2538 len += 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2539 else if (*p == '"' || *p == '\\') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2540 len += 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2541 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2542 ++len; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2543 } |
9978
baad324e9fbc
commit https://github.com/vim/vim/commit/257095760732597983bdd026e791907b7980e295
Christian Brabandt <cb@256bit.org>
parents:
9959
diff
changeset
|
2544 if (len > remaining - 2) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2545 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2546 fprintf(fd, ">%d\n|<", len); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2547 remaining = LSIZE - 20; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2548 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2549 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2550 putc('"', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2551 for (p = s; *p != NUL; ++p) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2552 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2553 if (*p == NL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2554 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2555 putc('\\', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2556 putc('n', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2557 --remaining; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2558 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2559 else if (*p == '"' || *p == '\\') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2560 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2561 putc('\\', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2562 putc(*p, fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2563 --remaining; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2564 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2565 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2566 putc(*p, fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2567 --remaining; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2568 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2569 if (remaining < 3) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2570 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2571 putc('\n', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2572 putc('|', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2573 putc('<', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2574 /* Leave enough space for another continuation. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2575 remaining = LSIZE - 20; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2576 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2577 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2578 putc('"', fd); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2579 return remaining - 2; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2580 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2581 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2582 /* |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2583 * Parse a viminfo line starting with '|'. |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2584 * Add each decoded value to "values". |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2585 * Returns TRUE if the next line is to be read after using the parsed values. |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2586 */ |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2587 static int |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2588 barline_parse(vir_T *virp, char_u *text, garray_T *values) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2589 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2590 char_u *p = text; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2591 char_u *nextp = NULL; |
9244
931bbf7b6ee3
commit https://github.com/vim/vim/commit/fdd82fe365d0e287bafc71f98c039cb5af8ed827
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
2592 char_u *buf = NULL; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2593 bval_T *value; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2594 int i; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2595 int allocated = FALSE; |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2596 int eof; |
9268
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2597 #ifdef FEAT_MBYTE |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2598 char_u *sconv; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2599 int converted; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2600 #endif |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2601 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2602 while (*p == ',') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2603 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2604 ++p; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2605 if (ga_grow(values, 1) == FAIL) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2606 break; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2607 value = (bval_T *)(values->ga_data) + values->ga_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2608 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2609 if (*p == '>') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2610 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2611 /* Need to read a continuation line. Put strings in allocated |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2612 * memory, because virp->vir_line is overwritten. */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2613 if (!allocated) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2614 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2615 for (i = 0; i < values->ga_len; ++i) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2616 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2617 bval_T *vp = (bval_T *)(values->ga_data) + i; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2618 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2619 if (vp->bv_type == BVAL_STRING && !vp->bv_allocated) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2620 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2621 vp->bv_string = vim_strnsave(vp->bv_string, vp->bv_len); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2622 vp->bv_allocated = TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2623 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2624 } |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2625 allocated = TRUE; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2626 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2627 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2628 if (vim_isdigit(p[1])) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2629 { |
9248
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2630 size_t len; |
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2631 size_t todo; |
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2632 size_t n; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2633 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2634 /* String value was split into lines that are each shorter |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2635 * than LSIZE: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2636 * |{bartype},>{length of "{text}{text2}"} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2637 * |<"{text1} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2638 * |<{text2}",{value} |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2639 * Length includes the quotes. |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2640 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2641 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2642 len = getdigits(&p); |
9248
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2643 buf = alloc((int)(len + 1)); |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9268
diff
changeset
|
2644 if (buf == NULL) |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2645 return TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2646 p = buf; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2647 for (todo = len; todo > 0; todo -= n) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2648 { |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2649 eof = viminfo_readline(virp); |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2650 if (eof || virp->vir_line[0] != '|' |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2651 || virp->vir_line[1] != '<') |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9268
diff
changeset
|
2652 { |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2653 /* File was truncated or garbled. Read another line if |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2654 * this one starts with '|'. */ |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9268
diff
changeset
|
2655 vim_free(buf); |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2656 return eof || virp->vir_line[0] == '|'; |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9268
diff
changeset
|
2657 } |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2658 /* Get length of text, excluding |< and NL chars. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2659 n = STRLEN(virp->vir_line); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2660 while (n > 0 && (virp->vir_line[n - 1] == NL |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2661 || virp->vir_line[n - 1] == CAR)) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2662 --n; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2663 n -= 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2664 if (n > todo) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2665 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2666 /* more values follow after the string */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2667 nextp = virp->vir_line + 2 + todo; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2668 n = todo; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2669 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2670 mch_memmove(p, virp->vir_line + 2, n); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2671 p += n; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2672 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2673 *p = NUL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2674 p = buf; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2675 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2676 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2677 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2678 /* Line ending in ">" continues in the next line: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2679 * |{bartype},{lots of values},> |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2680 * |<{value},{value} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2681 */ |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2682 eof = viminfo_readline(virp); |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2683 if (eof || virp->vir_line[0] != '|' |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2684 || virp->vir_line[1] != '<') |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2685 /* File was truncated or garbled. Read another line if |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2686 * this one starts with '|'. */ |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2687 return eof || virp->vir_line[0] == '|'; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2688 p = virp->vir_line + 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2689 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2690 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2691 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2692 if (isdigit(*p)) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2693 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2694 value->bv_type = BVAL_NR; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2695 value->bv_nr = getdigits(&p); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2696 ++values->ga_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2697 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2698 else if (*p == '"') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2699 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2700 int len = 0; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2701 char_u *s = p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2702 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2703 /* Unescape special characters in-place. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2704 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2705 while (*p != '"') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2706 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2707 if (*p == NL || *p == NUL) |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2708 return TRUE; /* syntax error, drop the value */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2709 if (*p == '\\') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2710 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2711 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2712 if (*p == 'n') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2713 s[len++] = '\n'; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2714 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2715 s[len++] = *p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2716 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2717 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2718 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2719 s[len++] = *p++; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2720 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2721 ++p; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2722 s[len] = NUL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2723 |
9268
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2724 #ifdef FEAT_MBYTE |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2725 converted = FALSE; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2726 if (virp->vir_conv.vc_type != CONV_NONE && *s != NUL) |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2727 { |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2728 sconv = string_convert(&virp->vir_conv, s, NULL); |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2729 if (sconv != NULL) |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2730 { |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2731 if (s == buf) |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2732 vim_free(s); |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2733 s = sconv; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2734 buf = s; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2735 converted = TRUE; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2736 } |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2737 } |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2738 #endif |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2739 /* Need to copy in allocated memory if the string wasn't allocated |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2740 * above and we did allocate before, thus vir_line may change. */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2741 if (s != buf && allocated) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2742 s = vim_strsave(s); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2743 value->bv_string = s; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2744 value->bv_type = BVAL_STRING; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2745 value->bv_len = len; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2746 value->bv_allocated = allocated |
9268
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2747 #ifdef FEAT_MBYTE |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2748 || converted |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2749 #endif |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2750 ; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2751 ++values->ga_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2752 if (nextp != NULL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2753 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2754 /* values following a long string */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2755 p = nextp; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2756 nextp = NULL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2757 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2758 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2759 else if (*p == ',') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2760 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2761 value->bv_type = BVAL_EMPTY; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2762 ++values->ga_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2763 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2764 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2765 break; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2766 } |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2767 return TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2768 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2769 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2770 static int |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2771 read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2772 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2773 char_u *p = virp->vir_line + 1; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2774 int bartype; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2775 garray_T values; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2776 bval_T *vp; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2777 int i; |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2778 int read_next = TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2779 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2780 /* The format is: |{bartype},{value},... |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2781 * For a very long string: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2782 * |{bartype},>{length of "{text}{text2}"} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2783 * |<{text1} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2784 * |<{text2},{value} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2785 * For a long line not using a string |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2786 * |{bartype},{lots of values},> |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2787 * |<{value},{value} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2788 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2789 if (*p == '<') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2790 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2791 /* Continuation line of an unrecognized item. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2792 if (writing) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2793 ga_add_string(&virp->vir_barlines, virp->vir_line); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2794 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2795 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2796 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2797 ga_init2(&values, sizeof(bval_T), 20); |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2798 bartype = getdigits(&p); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2799 switch (bartype) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2800 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2801 case BARTYPE_VERSION: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2802 /* Only use the version when it comes before the encoding. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2803 * If it comes later it was copied by a Vim version that |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2804 * doesn't understand the version. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2805 if (!got_encoding) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2806 { |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2807 read_next = barline_parse(virp, p, &values); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2808 vp = (bval_T *)values.ga_data; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2809 if (values.ga_len > 0 && vp->bv_type == BVAL_NR) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2810 virp->vir_version = vp->bv_nr; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2811 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2812 break; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2813 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2814 case BARTYPE_HISTORY: |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2815 read_next = barline_parse(virp, p, &values); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2816 handle_viminfo_history(&values, writing); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2817 break; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2818 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2819 case BARTYPE_REGISTER: |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2820 read_next = barline_parse(virp, p, &values); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2821 handle_viminfo_register(&values, force); |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2822 break; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2823 |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2824 case BARTYPE_MARK: |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2825 read_next = barline_parse(virp, p, &values); |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2826 handle_viminfo_mark(&values, force); |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2827 break; |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2828 |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2829 default: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2830 /* copy unrecognized line (for future use) */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2831 if (writing) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2832 ga_add_string(&virp->vir_barlines, virp->vir_line); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2833 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2834 for (i = 0; i < values.ga_len; ++i) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2835 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2836 vp = (bval_T *)values.ga_data + i; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2837 if (vp->bv_type == BVAL_STRING && vp->bv_allocated) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2838 vim_free(vp->bv_string); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2839 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2840 ga_clear(&values); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2841 } |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2842 |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2843 if (read_next) |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2844 return viminfo_readline(virp); |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2845 return FALSE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2846 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2847 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2848 static void |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2849 write_viminfo_version(FILE *fp_out) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2850 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2851 fprintf(fp_out, "# Viminfo version\n|%d,%d\n\n", |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2852 BARTYPE_VERSION, VIMINFO_VERSION); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2853 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2854 |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2855 static void |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2856 write_viminfo_barlines(vir_T *virp, FILE *fp_out) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2857 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2858 int i; |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2859 garray_T *gap = &virp->vir_barlines; |
9412
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2860 int seen_useful = FALSE; |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2861 char *line; |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2862 |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2863 if (gap->ga_len > 0) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2864 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2865 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out); |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2866 |
9412
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2867 /* Skip over continuation lines until seeing a useful line. */ |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2868 for (i = 0; i < gap->ga_len; ++i) |
9412
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2869 { |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2870 line = ((char **)(gap->ga_data))[i]; |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2871 if (seen_useful || line[1] != '<') |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2872 { |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2873 fputs(line, fp_out); |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2874 seen_useful = TRUE; |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2875 } |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2876 } |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2877 } |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2878 } |
7 | 2879 #endif /* FEAT_VIMINFO */ |
2880 | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2881 /* |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2882 * Return the current time in seconds. Calls time(), unless test_settime() |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2883 * was used. |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2884 */ |
9347
25c562442f8c
commit https://github.com/vim/vim/commit/f4fba6dcd508cb369ffa6916d9cb3fcf3d7ed548
Christian Brabandt <cb@256bit.org>
parents:
9330
diff
changeset
|
2885 time_T |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2886 vim_time(void) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2887 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2888 # ifdef FEAT_EVAL |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2889 return time_for_testing == 0 ? time(NULL) : time_for_testing; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2890 # else |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2891 return time(NULL); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2892 # endif |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2893 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2894 |
7 | 2895 /* |
2896 * Implementation of ":fixdel", also used by get_stty(). | |
2897 * <BS> resulting <Del> | |
2898 * ^? ^H | |
2899 * not ^? ^? | |
2900 */ | |
2901 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2902 do_fixdel(exarg_T *eap UNUSED) |
7 | 2903 { |
2904 char_u *p; | |
2905 | |
2906 p = find_termcode((char_u *)"kb"); | |
2907 add_termcode((char_u *)"kD", p != NULL | |
2908 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); | |
2909 } | |
2910 | |
2911 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2912 print_line_no_prefix( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2913 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2914 int use_number, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2915 int list) |
7 | 2916 { |
13 | 2917 char_u numbuf[30]; |
7 | 2918 |
2919 if (curwin->w_p_nu || use_number) | |
2920 { | |
1872 | 2921 vim_snprintf((char *)numbuf, sizeof(numbuf), |
2922 "%*ld ", number_width(curwin), (long)lnum); | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11144
diff
changeset
|
2923 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); /* Highlight line nrs */ |
7 | 2924 } |
169 | 2925 msg_prt_line(ml_get(lnum), list); |
7 | 2926 } |
2927 | |
2928 /* | |
2929 * Print a text line. Also in silent mode ("ex -s"). | |
2930 */ | |
2931 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2932 print_line(linenr_T lnum, int use_number, int list) |
7 | 2933 { |
2934 int save_silent = silent_mode; | |
2935 | |
9980
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2936 /* apply :filter /pat/ */ |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2937 if (message_filtered(ml_get(lnum))) |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2938 return; |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2939 |
169 | 2940 msg_start(); |
7 | 2941 silent_mode = FALSE; |
169 | 2942 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */ |
2943 print_line_no_prefix(lnum, use_number, list); | |
7 | 2944 if (save_silent) |
2945 { | |
2946 msg_putchar('\n'); | |
2947 cursor_on(); /* msg_start() switches it off */ | |
2948 out_flush(); | |
2949 silent_mode = save_silent; | |
1798 | 2950 } |
2951 info_message = FALSE; | |
7 | 2952 } |
2953 | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2954 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2955 rename_buffer(char_u *new_fname) |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2956 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2957 char_u *fname, *sfname, *xfname; |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2958 buf_T *buf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2959 |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2960 buf = curbuf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2961 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2962 /* buffer changed, don't change name now */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2963 if (buf != curbuf) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2964 return FAIL; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
2965 #ifdef FEAT_EVAL |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2966 if (aborting()) /* autocmds may abort script processing */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2967 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2968 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2969 /* |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2970 * 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
|
2971 * 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
|
2972 * name, which will become the alternate file name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2973 * 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
|
2974 * name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2975 */ |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2976 fname = curbuf->b_ffname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2977 sfname = curbuf->b_sfname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2978 xfname = curbuf->b_fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2979 curbuf->b_ffname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2980 curbuf->b_sfname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2981 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL) |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2982 { |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2983 curbuf->b_ffname = fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2984 curbuf->b_sfname = sfname; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2985 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2986 } |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2987 curbuf->b_flags |= BF_NOTEDITED; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2988 if (xfname != NULL && *xfname != NUL) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2989 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2990 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
|
2991 if (buf != NULL && !cmdmod.keepalt) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2992 curwin->w_alt_fnum = buf->b_fnum; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2993 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2994 vim_free(fname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2995 vim_free(sfname); |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2996 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
|
2997 |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2998 /* 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
|
2999 DO_AUTOCHDIR; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
3000 return OK; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
3001 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
3002 |
7 | 3003 /* |
3004 * ":file[!] [fname]". | |
3005 */ | |
3006 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3007 ex_file(exarg_T *eap) |
7 | 3008 { |
14 | 3009 /* ":0file" removes the file name. Check for illegal uses ":3file", |
3010 * "0file name", etc. */ | |
3011 if (eap->addr_count > 0 | |
3012 && (*eap->arg != NUL | |
3013 || eap->line2 > 0 | |
3014 || eap->addr_count > 1)) | |
3015 { | |
3016 EMSG(_(e_invarg)); | |
3017 return; | |
3018 } | |
3019 | |
3020 if (*eap->arg != NUL || eap->addr_count == 1) | |
7 | 3021 { |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
3022 if (rename_buffer(eap->arg) == FAIL) |
7 | 3023 return; |
3024 } | |
3025 /* print full file name if :cd used */ | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
3026 if (!shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
3027 fileinfo(FALSE, FALSE, eap->forceit); |
12676
7ac0ab4c5ee4
patch 8.0.1216: tabline is not always updated for :file command
Christian Brabandt <cb@256bit.org>
parents:
12648
diff
changeset
|
3028 redraw_tabline = TRUE; |
7 | 3029 } |
3030 | |
3031 /* | |
3032 * ":update". | |
3033 */ | |
3034 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3035 ex_update(exarg_T *eap) |
7 | 3036 { |
3037 if (curbufIsChanged()) | |
3038 (void)do_write(eap); | |
3039 } | |
3040 | |
3041 /* | |
3042 * ":write" and ":saveas". | |
3043 */ | |
3044 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3045 ex_write(exarg_T *eap) |
7 | 3046 { |
3047 if (eap->usefilter) /* input lines to shell command */ | |
3048 do_bang(1, eap, FALSE, TRUE, FALSE); | |
3049 else | |
3050 (void)do_write(eap); | |
3051 } | |
3052 | |
3053 /* | |
3054 * write current buffer to file 'eap->arg' | |
3055 * if 'eap->append' is TRUE, append to the file | |
3056 * | |
3057 * if *eap->arg == NUL write to current file | |
3058 * | |
3059 * return FAIL for failure, OK otherwise | |
3060 */ | |
3061 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3062 do_write(exarg_T *eap) |
7 | 3063 { |
3064 int other; | |
3065 char_u *fname = NULL; /* init to shut up gcc */ | |
3066 char_u *ffname; | |
3067 int retval = FAIL; | |
3068 char_u *free_fname = NULL; | |
3069 #ifdef FEAT_BROWSE | |
3070 char_u *browse_file = NULL; | |
3071 #endif | |
3072 buf_T *alt_buf = NULL; | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3073 int name_was_missing; |
7 | 3074 |
3075 if (not_writing()) /* check 'write' option */ | |
3076 return FAIL; | |
3077 | |
3078 ffname = eap->arg; | |
3079 #ifdef FEAT_BROWSE | |
3080 if (cmdmod.browse) | |
3081 { | |
29 | 3082 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
7 | 3083 NULL, NULL, NULL, curbuf); |
3084 if (browse_file == NULL) | |
3085 goto theend; | |
3086 ffname = browse_file; | |
3087 } | |
3088 #endif | |
3089 if (*ffname == NUL) | |
3090 { | |
3091 if (eap->cmdidx == CMD_saveas) | |
3092 { | |
3093 EMSG(_(e_argreq)); | |
3094 goto theend; | |
3095 } | |
3096 other = FALSE; | |
3097 } | |
3098 else | |
3099 { | |
3100 fname = ffname; | |
3101 free_fname = fix_fname(ffname); | |
3102 /* | |
3103 * When out-of-memory, keep unexpanded file name, because we MUST be | |
3104 * able to write the file in this situation. | |
3105 */ | |
3106 if (free_fname != NULL) | |
3107 ffname = free_fname; | |
3108 other = otherfile(ffname); | |
3109 } | |
3110 | |
3111 /* | |
3112 * If we have a new file, put its name in the list of alternate file names. | |
3113 */ | |
3114 if (other) | |
3115 { | |
3116 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL | |
3117 || eap->cmdidx == CMD_saveas) | |
3118 alt_buf = setaltfname(ffname, fname, (linenr_T)1); | |
3119 else | |
3120 alt_buf = buflist_findname(ffname); | |
3121 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) | |
3122 { | |
3123 /* Overwriting a file that is loaded in another buffer is not a | |
3124 * good idea. */ | |
315 | 3125 EMSG(_(e_bufloaded)); |
7 | 3126 goto theend; |
3127 } | |
3128 } | |
3129 | |
3130 /* | |
3131 * Writing to the current file is not allowed in readonly mode | |
3132 * and a file name is required. | |
3133 * "nofile" and "nowrite" buffers cannot be written implicitly either. | |
3134 */ | |
3135 if (!other && ( | |
3136 #ifdef FEAT_QUICKFIX | |
3137 bt_dontwrite_msg(curbuf) || | |
3138 #endif | |
3139 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf))) | |
3140 goto theend; | |
3141 | |
3142 if (!other) | |
3143 { | |
3144 ffname = curbuf->b_ffname; | |
3145 fname = curbuf->b_fname; | |
3146 /* | |
3147 * Not writing the whole file is only allowed with '!'. | |
3148 */ | |
3149 if ( (eap->line1 != 1 | |
3150 || eap->line2 != curbuf->b_ml.ml_line_count) | |
3151 && !eap->forceit | |
3152 && !eap->append | |
3153 && !p_wa) | |
3154 { | |
3155 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3156 if (p_confirm || cmdmod.confirm) | |
3157 { | |
3158 if (vim_dialog_yesno(VIM_QUESTION, NULL, | |
3159 (char_u *)_("Write partial file?"), 2) != VIM_YES) | |
3160 goto theend; | |
3161 eap->forceit = TRUE; | |
3162 } | |
3163 else | |
3164 #endif | |
3165 { | |
3166 EMSG(_("E140: Use ! to write partial buffer")); | |
3167 goto theend; | |
3168 } | |
3169 } | |
3170 } | |
3171 | |
3172 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) | |
3173 { | |
3174 if (eap->cmdidx == CMD_saveas && alt_buf != NULL) | |
3175 { | |
3176 buf_T *was_curbuf = curbuf; | |
3177 | |
3178 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); | |
21 | 3179 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
|
3180 #ifdef FEAT_EVAL |
7 | 3181 if (curbuf != was_curbuf || aborting()) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3182 #else |
7 | 3183 if (curbuf != was_curbuf) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3184 #endif |
7 | 3185 { |
3186 /* buffer changed, don't change name now */ | |
3187 retval = FAIL; | |
3188 goto theend; | |
3189 } | |
3190 /* Exchange the file names for the current and the alternate | |
3191 * buffer. This makes it look like we are now editing the buffer | |
3192 * under the new name. Must be done before buf_write(), because | |
3193 * if there is no file name and 'cpo' contains 'F', it will set | |
3194 * the file name. */ | |
3195 fname = alt_buf->b_fname; | |
3196 alt_buf->b_fname = curbuf->b_fname; | |
3197 curbuf->b_fname = fname; | |
3198 fname = alt_buf->b_ffname; | |
3199 alt_buf->b_ffname = curbuf->b_ffname; | |
3200 curbuf->b_ffname = fname; | |
3201 fname = alt_buf->b_sfname; | |
3202 alt_buf->b_sfname = curbuf->b_sfname; | |
3203 curbuf->b_sfname = fname; | |
3204 buf_name_changed(curbuf); | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3205 |
7 | 3206 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
21 | 3207 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
7 | 3208 if (!alt_buf->b_p_bl) |
3209 { | |
3210 alt_buf->b_p_bl = TRUE; | |
3211 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); | |
3212 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3213 #ifdef FEAT_EVAL |
7 | 3214 if (curbuf != was_curbuf || aborting()) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3215 #else |
7 | 3216 if (curbuf != was_curbuf) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3217 #endif |
7 | 3218 { |
3219 /* buffer changed, don't write the file */ | |
3220 retval = FAIL; | |
3221 goto theend; | |
3222 } | |
634 | 3223 |
3224 /* If 'filetype' was empty try detecting it now. */ | |
3225 if (*curbuf->b_p_ft == NUL) | |
3226 { | |
819 | 3227 if (au_has_group((char_u *)"filetypedetect")) |
3228 (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
|
3229 TRUE, NULL); |
717 | 3230 do_modelines(0); |
634 | 3231 } |
2648 | 3232 |
3233 /* Autocommands may have changed buffer names, esp. when | |
3234 * 'autochdir' is set. */ | |
3235 fname = curbuf->b_sfname; | |
7 | 3236 } |
3237 | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3238 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
|
3239 |
7 | 3240 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, |
3241 eap, eap->append, eap->forceit, TRUE, FALSE); | |
634 | 3242 |
819 | 3243 /* After ":saveas fname" reset 'readonly'. */ |
961 | 3244 if (eap->cmdidx == CMD_saveas) |
3245 { | |
3246 if (retval == OK) | |
1806 | 3247 { |
961 | 3248 curbuf->b_p_ro = FALSE; |
1806 | 3249 redraw_tabline = TRUE; |
3250 } | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3251 } |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3252 |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3253 /* Change directories when the 'acd' option is set and the file name |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3254 * got changed or set. */ |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3255 if (eap->cmdidx == CMD_saveas || name_was_missing) |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3256 { |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
3257 DO_AUTOCHDIR; |
961 | 3258 } |
7 | 3259 } |
3260 | |
3261 theend: | |
3262 #ifdef FEAT_BROWSE | |
3263 vim_free(browse_file); | |
3264 #endif | |
3265 vim_free(free_fname); | |
3266 return retval; | |
3267 } | |
3268 | |
3269 /* | |
3270 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, | |
3271 * BF_NEW or BF_READERR, check for overwriting current file. | |
3272 * May set eap->forceit if a dialog says it's OK to overwrite. | |
3273 * Return OK if it's OK, FAIL if it is not. | |
3274 */ | |
3486 | 3275 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3276 check_overwrite( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3277 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3278 buf_T *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3279 char_u *fname, /* file name to be used (can differ from |
7 | 3280 buf->ffname) */ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3281 char_u *ffname, /* full path version of fname */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3282 int other) /* writing under other name */ |
7 | 3283 { |
3284 /* | |
3285 * write to other file or b_flags set or not writing the whole file: | |
3286 * overwriting only allowed with '!' | |
3287 */ | |
3288 if ( (other | |
3289 || (buf->b_flags & BF_NOTEDITED) | |
3290 || ((buf->b_flags & BF_NEW) | |
3291 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) | |
3292 || (buf->b_flags & BF_READERR)) | |
3293 && !p_wa | |
1457 | 3294 #ifdef FEAT_QUICKFIX |
3295 && !bt_nofile(buf) | |
3296 #endif | |
7 | 3297 && vim_fexists(ffname)) |
3298 { | |
460 | 3299 if (!eap->forceit && !eap->append) |
7 | 3300 { |
460 | 3301 #ifdef UNIX |
637 | 3302 /* with UNIX it is possible to open a directory */ |
460 | 3303 if (mch_isdir(ffname)) |
3304 { | |
3305 EMSG2(_(e_isadir2), ffname); | |
3306 return FAIL; | |
3307 } | |
7 | 3308 #endif |
3309 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
460 | 3310 if (p_confirm || cmdmod.confirm) |
3311 { | |
2770 | 3312 char_u buff[DIALOG_MSG_SIZE]; |
460 | 3313 |
3314 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); | |
3315 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) | |
3316 return FAIL; | |
3317 eap->forceit = TRUE; | |
3318 } | |
3319 else | |
3320 #endif | |
3321 { | |
3322 EMSG(_(e_exists)); | |
7 | 3323 return FAIL; |
460 | 3324 } |
7 | 3325 } |
460 | 3326 |
3327 /* For ":w! filename" check that no swap file exists for "filename". */ | |
3328 if (other && !emsg_silent) | |
7 | 3329 { |
2770 | 3330 char_u *dir; |
460 | 3331 char_u *p; |
3332 int r; | |
3333 char_u *swapname; | |
3334 | |
3335 /* We only try the first entry in 'directory', without checking if | |
3336 * it's writable. If the "." directory is not writable the write | |
3337 * will probably fail anyway. | |
3338 * Use 'shortname' of the current buffer, since there is no buffer | |
3339 * for the written file. */ | |
3340 if (*p_dir == NUL) | |
2770 | 3341 { |
3342 dir = alloc(5); | |
3343 if (dir == NULL) | |
3344 return FAIL; | |
460 | 3345 STRCPY(dir, "."); |
2770 | 3346 } |
460 | 3347 else |
3348 { | |
2770 | 3349 dir = alloc(MAXPATHL); |
3350 if (dir == NULL) | |
3351 return FAIL; | |
460 | 3352 p = p_dir; |
3353 copy_option_part(&p, dir, MAXPATHL, ","); | |
3354 } | |
3355 swapname = makeswapname(fname, ffname, curbuf, dir); | |
2770 | 3356 vim_free(dir); |
460 | 3357 r = vim_fexists(swapname); |
3358 if (r) | |
3359 { | |
3360 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3361 if (p_confirm || cmdmod.confirm) | |
3362 { | |
2770 | 3363 char_u buff[DIALOG_MSG_SIZE]; |
460 | 3364 |
3365 dialog_msg(buff, | |
3366 _("Swap file \"%s\" exists, overwrite anyway?"), | |
3367 swapname); | |
3368 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) | |
3369 != VIM_YES) | |
819 | 3370 { |
3371 vim_free(swapname); | |
460 | 3372 return FAIL; |
819 | 3373 } |
460 | 3374 eap->forceit = TRUE; |
3375 } | |
3376 else | |
3377 #endif | |
3378 { | |
3379 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"), | |
3380 swapname); | |
819 | 3381 vim_free(swapname); |
460 | 3382 return FAIL; |
3383 } | |
3384 } | |
819 | 3385 vim_free(swapname); |
7 | 3386 } |
3387 } | |
3388 return OK; | |
3389 } | |
3390 | |
3391 /* | |
3392 * Handle ":wnext", ":wNext" and ":wprevious" commands. | |
3393 */ | |
3394 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3395 ex_wnext(exarg_T *eap) |
7 | 3396 { |
3397 int i; | |
3398 | |
3399 if (eap->cmd[1] == 'n') | |
3400 i = curwin->w_arg_idx + (int)eap->line2; | |
3401 else | |
3402 i = curwin->w_arg_idx - (int)eap->line2; | |
3403 eap->line1 = 1; | |
3404 eap->line2 = curbuf->b_ml.ml_line_count; | |
3405 if (do_write(eap) != FAIL) | |
3406 do_argfile(eap, i); | |
3407 } | |
3408 | |
3409 /* | |
3410 * ":wall", ":wqall" and ":xall": Write all changed files (and exit). | |
3411 */ | |
3412 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3413 do_wqall(exarg_T *eap) |
7 | 3414 { |
3415 buf_T *buf; | |
3416 int error = 0; | |
3417 int save_forceit = eap->forceit; | |
3418 | |
3419 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) | |
3420 exiting = TRUE; | |
3421 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3422 FOR_ALL_BUFFERS(buf) |
7 | 3423 { |
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
|
3424 #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
|
3425 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
|
3426 { |
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
|
3427 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
|
3428 ++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
|
3429 } |
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
|
3430 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
|
3431 #endif |
12648
cdfd6eb8bb80
patch 8.0.1202: :wall gives an errof for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
3432 if (bufIsChanged(buf) && !bt_dontwrite(buf)) |
7 | 3433 { |
3434 /* | |
3435 * Check if there is a reason the buffer cannot be written: | |
3436 * 1. if the 'write' option is set | |
3437 * 2. if there is no file name (even after browsing) | |
3438 * 3. if the 'readonly' is set (even after a dialog) | |
3439 * 4. if overwriting is allowed (even after a dialog) | |
3440 */ | |
3441 if (not_writing()) | |
3442 { | |
3443 ++error; | |
3444 break; | |
3445 } | |
3446 #ifdef FEAT_BROWSE | |
3447 /* ":browse wall": ask for file name if there isn't one */ | |
3448 if (buf->b_ffname == NULL && cmdmod.browse) | |
3449 browse_save_fname(buf); | |
3450 #endif | |
3451 if (buf->b_ffname == NULL) | |
3452 { | |
3453 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum); | |
3454 ++error; | |
3455 } | |
3456 else if (check_readonly(&eap->forceit, buf) | |
3457 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, | |
3458 FALSE) == FAIL) | |
3459 { | |
3460 ++error; | |
3461 } | |
3462 else | |
3463 { | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3464 bufref_T bufref; |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3465 |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3466 set_bufref(&bufref, buf); |
7 | 3467 if (buf_write_all(buf, eap->forceit) == FAIL) |
3468 ++error; | |
3469 /* 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
|
3470 if (!bufref_valid(&bufref)) |
7 | 3471 buf = firstbuf; |
3472 } | |
3473 eap->forceit = save_forceit; /* check_overwrite() may set it */ | |
3474 } | |
3475 } | |
3476 if (exiting) | |
3477 { | |
3478 if (!error) | |
3479 getout(0); /* exit Vim */ | |
3480 not_exiting(); | |
3481 } | |
3482 } | |
3483 | |
3484 /* | |
3485 * Check the 'write' option. | |
3486 * Return TRUE and give a message when it's not st. | |
3487 */ | |
3488 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3489 not_writing(void) |
7 | 3490 { |
3491 if (p_write) | |
3492 return FALSE; | |
3493 EMSG(_("E142: File not written: Writing is disabled by 'write' option")); | |
3494 return TRUE; | |
3495 } | |
3496 | |
3497 /* | |
1303 | 3498 * Check if a buffer is read-only (either 'readonly' option is set or file is |
3499 * read-only). Ask for overruling in a dialog. Return TRUE and give an error | |
3500 * message when the buffer is readonly. | |
7 | 3501 */ |
3502 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3503 check_readonly(int *forceit, buf_T *buf) |
7 | 3504 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9377
diff
changeset
|
3505 stat_T st; |
1303 | 3506 |
3507 /* Handle a file being readonly when the 'readonly' option is set or when | |
3508 * the file exists and permissions are read-only. | |
3509 * We will send 0777 to check_file_readonly(), as the "perm" variable is | |
3510 * important for device checks but not here. */ | |
3511 if (!*forceit && (buf->b_p_ro | |
3512 || (mch_stat((char *)buf->b_ffname, &st) >= 0 | |
3513 && check_file_readonly(buf->b_ffname, 0777)))) | |
7 | 3514 { |
3515 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3516 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL) | |
3517 { | |
2770 | 3518 char_u buff[DIALOG_MSG_SIZE]; |
7 | 3519 |
1303 | 3520 if (buf->b_p_ro) |
3521 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), | |
3522 buf->b_fname); | |
3523 else | |
3524 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"), | |
7 | 3525 buf->b_fname); |
3526 | |
3527 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) | |
3528 { | |
3529 /* Set forceit, to force the writing of a readonly file */ | |
3530 *forceit = TRUE; | |
3531 return FALSE; | |
3532 } | |
3533 else | |
3534 return TRUE; | |
3535 } | |
3536 else | |
3537 #endif | |
1303 | 3538 if (buf->b_p_ro) |
7 | 3539 EMSG(_(e_readonly)); |
1303 | 3540 else |
3541 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"), | |
3542 buf->b_fname); | |
7 | 3543 return TRUE; |
3544 } | |
1303 | 3545 |
7 | 3546 return FALSE; |
3547 } | |
3548 | |
3549 /* | |
632 | 3550 * Try to abandon current file and edit a new or existing file. |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3551 * "fnum" is the number of the file, if zero use ffname/sfname. |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3552 * "lnum" is the line number for the cursor in the new file (if non-zero). |
7 | 3553 * |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3554 * Return: |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3555 * GETFILE_ERROR for "normal" error, |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3556 * 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
|
3557 * GETFILE_SAME_FILE for success |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3558 * GETFILE_OPEN_OTHER for successfully opening another file. |
7 | 3559 */ |
3560 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3561 getfile( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3562 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3563 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3564 char_u *sfname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3565 int setpm, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3566 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3567 int forceit) |
7 | 3568 { |
3569 int other; | |
3570 int retval; | |
3571 char_u *free_me = NULL; | |
3572 | |
634 | 3573 if (text_locked()) |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3574 return GETFILE_ERROR; |
819 | 3575 if (curbuf_locked()) |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3576 return GETFILE_ERROR; |
7 | 3577 |
3578 if (fnum == 0) | |
3579 { | |
3580 /* make ffname full path, set sfname */ | |
3581 fname_expand(curbuf, &ffname, &sfname); | |
3582 other = otherfile(ffname); | |
3583 free_me = ffname; /* has been allocated, free() later */ | |
3584 } | |
3585 else | |
3586 other = (fnum != curbuf->b_fnum); | |
3587 | |
3588 if (other) | |
3589 ++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
|
3590 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf) |
7 | 3591 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) |
3592 { | |
3593 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3594 if (p_confirm && p_write) | |
3595 dialog_changed(curbuf, FALSE); | |
3596 if (curbufIsChanged()) | |
3597 #endif | |
3598 { | |
3599 if (other) | |
3600 --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
|
3601 no_write_message(); |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3602 retval = GETFILE_NOT_WRITTEN; /* file has been changed */ |
7 | 3603 goto theend; |
3604 } | |
3605 } | |
3606 if (other) | |
3607 --no_wait_return; | |
3608 if (setpm) | |
3609 setpcmark(); | |
3610 if (!other) | |
3611 { | |
3612 if (lnum != 0) | |
3613 curwin->w_cursor.lnum = lnum; | |
3614 check_cursor_lnum(); | |
3615 beginline(BL_SOL | BL_FIX); | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3616 retval = GETFILE_SAME_FILE; /* it's in the same file */ |
7 | 3617 } |
3618 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
|
3619 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0), |
1743 | 3620 curwin) == OK) |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3621 retval = GETFILE_OPEN_OTHER; /* opened another file */ |
7 | 3622 else |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11372
diff
changeset
|
3623 retval = GETFILE_ERROR; /* error encountered */ |
7 | 3624 |
3625 theend: | |
3626 vim_free(free_me); | |
3627 return retval; | |
3628 } | |
3629 | |
3630 /* | |
3631 * start editing a new file | |
3632 * | |
3633 * fnum: file number; if zero use ffname/sfname | |
3634 * ffname: the file name | |
3635 * - full path if sfname used, | |
3636 * - any file name if sfname is NULL | |
3637 * - empty string to re-edit with the same file name (but may be | |
3638 * in a different directory) | |
3639 * - NULL to start an empty buffer | |
3640 * sfname: the short file name (or NULL) | |
3641 * eap: contains the command to be executed after loading the file and | |
3642 * forced 'ff' and 'fenc' | |
3643 * newlnum: if > 0: put cursor on this line number (if possible) | |
3644 * if ECMD_LASTL: use last position in loaded file | |
3645 * if ECMD_LAST: use last position in all files | |
3646 * if ECMD_ONE: use first line | |
3647 * flags: | |
3648 * ECMD_HIDE: if TRUE don't free the current buffer | |
3649 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file | |
3650 * ECMD_OLDBUF: use existing buffer if it exists | |
3651 * ECMD_FORCEIT: ! used for Ex command | |
3652 * ECMD_ADDBUF: don't edit, just add to buffer list | |
1743 | 3653 * 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
|
3654 * 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
|
3655 * of the previous buffer for "oldwin" is stored. |
7 | 3656 * |
3657 * return FAIL for failure, OK otherwise | |
3658 */ | |
3659 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3660 do_ecmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3661 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3662 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3663 char_u *sfname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3664 exarg_T *eap, /* can be NULL! */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3665 linenr_T newlnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3666 int flags, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3667 win_T *oldwin) |
7 | 3668 { |
3669 int other_file; /* TRUE if editing another file */ | |
3670 int oldbuf; /* TRUE if using existing buffer */ | |
3671 int auto_buf = FALSE; /* TRUE if autocommands brought us | |
3672 into the buffer unexpectedly */ | |
3673 char_u *new_name = NULL; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3674 #if defined(FEAT_EVAL) |
716 | 3675 int did_set_swapcommand = FALSE; |
7 | 3676 #endif |
3677 buf_T *buf; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3678 bufref_T bufref; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3679 bufref_T old_curbuf; |
7 | 3680 char_u *free_fname = NULL; |
3681 #ifdef FEAT_BROWSE | |
3682 char_u *browse_file = NULL; | |
3683 #endif | |
3684 int retval = FAIL; | |
3685 long n; | |
6702 | 3686 pos_T orig_pos; |
7 | 3687 linenr_T topline = 0; |
3688 int newcol = -1; | |
3689 int solcol = -1; | |
3690 pos_T *pos; | |
3691 #ifdef FEAT_SUN_WORKSHOP | |
3692 char_u *cp; | |
3693 #endif | |
3694 char_u *command = NULL; | |
1185 | 3695 #ifdef FEAT_SPELL |
3696 int did_get_winopts = FALSE; | |
3697 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3698 int readfile_flags = 0; |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3699 int did_inc_redrawing_disabled = FALSE; |
7 | 3700 |
3701 if (eap != NULL) | |
3702 command = eap->do_ecmd_cmd; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3703 set_bufref(&old_curbuf, curbuf); |
7 | 3704 |
3705 if (fnum != 0) | |
3706 { | |
3707 if (fnum == curbuf->b_fnum) /* file is already being edited */ | |
3708 return OK; /* nothing to do */ | |
3709 other_file = TRUE; | |
3710 } | |
3711 else | |
3712 { | |
3713 #ifdef FEAT_BROWSE | |
3714 if (cmdmod.browse) | |
3715 { | |
462 | 3716 if ( |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3717 # ifdef FEAT_GUI |
462 | 3718 !gui.in_use && |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3719 # endif |
462 | 3720 au_has_group((char_u *)"FileExplorer")) |
3721 { | |
3722 /* No browsing supported but we do have the file explorer: | |
3723 * Edit the directory. */ | |
3724 if (ffname == NULL || !mch_isdir(ffname)) | |
3725 ffname = (char_u *)"."; | |
3726 } | |
3727 else | |
3728 { | |
3729 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, | |
7 | 3730 NULL, NULL, NULL, curbuf); |
462 | 3731 if (browse_file == NULL) |
3732 goto theend; | |
3733 ffname = browse_file; | |
3734 } | |
7 | 3735 } |
3736 #endif | |
3737 /* if no short name given, use ffname for short name */ | |
3738 if (sfname == NULL) | |
3739 sfname = ffname; | |
3740 #ifdef USE_FNAME_CASE | |
3741 # ifdef USE_LONG_FNAME | |
3742 if (USE_LONG_FNAME) | |
3743 # endif | |
436 | 3744 if (sfname != NULL) |
3745 fname_case(sfname, 0); /* set correct case for sfname */ | |
7 | 3746 #endif |
3747 | |
3748 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL)) | |
3749 goto theend; | |
3750 | |
3751 if (ffname == NULL) | |
3752 other_file = TRUE; | |
3753 /* there is no file name */ | |
3754 else if (*ffname == NUL && curbuf->b_ffname == NULL) | |
3755 other_file = FALSE; | |
3756 else | |
3757 { | |
3758 if (*ffname == NUL) /* re-edit with same file name */ | |
3759 { | |
3760 ffname = curbuf->b_ffname; | |
3761 sfname = curbuf->b_fname; | |
3762 } | |
3763 free_fname = fix_fname(ffname); /* may expand to full path name */ | |
3764 if (free_fname != NULL) | |
3765 ffname = free_fname; | |
3766 other_file = otherfile(ffname); | |
3767 #ifdef FEAT_SUN_WORKSHOP | |
3768 if (usingSunWorkShop && p_acd | |
3769 && (cp = vim_strrchr(sfname, '/')) != NULL) | |
3770 sfname = ++cp; | |
3771 #endif | |
3772 } | |
3773 } | |
3774 | |
3775 /* | |
3776 * if the file was changed we may not be allowed to abandon it | |
3777 * - if we are going to re-edit the same file | |
3778 * - or if we are the only window on this file and if ECMD_HIDE is FALSE | |
3779 */ | |
3780 if ( ((!other_file && !(flags & ECMD_OLDBUF)) | |
3781 || (curbuf->b_nwindows == 1 | |
3782 && !(flags & (ECMD_HIDE | ECMD_ADDBUF)))) | |
5464 | 3783 && check_changed(curbuf, (p_awa ? CCGD_AW : 0) |
3784 | (other_file ? 0 : CCGD_MULTWIN) | |
3785 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0) | |
3786 | (eap == NULL ? 0 : CCGD_EXCMD))) | |
7 | 3787 { |
3788 if (fnum == 0 && other_file && ffname != NULL) | |
3789 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); | |
3790 goto theend; | |
3791 } | |
3792 | |
3793 /* | |
3794 * End Visual mode before switching to another buffer, so the text can be | |
3795 * copied into the GUI selection buffer. | |
3796 */ | |
3797 reset_VIsual(); | |
3798 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3799 #if defined(FEAT_EVAL) |
716 | 3800 if ((command != NULL || newlnum > (linenr_T)0) |
3801 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) | |
3802 { | |
3803 int len; | |
3804 char_u *p; | |
3805 | |
3806 /* Set v:swapcommand for the SwapExists autocommands. */ | |
3807 if (command != NULL) | |
835 | 3808 len = (int)STRLEN(command) + 3; |
716 | 3809 else |
3810 len = 30; | |
3811 p = alloc((unsigned)len); | |
3812 if (p != NULL) | |
3813 { | |
3814 if (command != NULL) | |
3815 vim_snprintf((char *)p, len, ":%s\r", command); | |
3816 else | |
3817 vim_snprintf((char *)p, len, "%ldG", (long)newlnum); | |
3818 set_vim_var_string(VV_SWAPCOMMAND, p, -1); | |
3819 did_set_swapcommand = TRUE; | |
3820 vim_free(p); | |
3821 } | |
3822 } | |
3823 #endif | |
3824 | |
7 | 3825 /* |
3826 * If we are starting to edit another file, open a (new) buffer. | |
3827 * Otherwise we re-use the current buffer. | |
3828 */ | |
3829 if (other_file) | |
3830 { | |
3831 if (!(flags & ECMD_ADDBUF)) | |
3832 { | |
22 | 3833 if (!cmdmod.keepalt) |
3834 curwin->w_alt_fnum = curbuf->b_fnum; | |
1743 | 3835 if (oldwin != NULL) |
3836 buflist_altfpos(oldwin); | |
7 | 3837 } |
3838 | |
3839 if (fnum) | |
3840 buf = buflist_findnr(fnum); | |
3841 else | |
3842 { | |
3843 if (flags & ECMD_ADDBUF) | |
3844 { | |
3845 linenr_T tlnum = 1L; | |
3846 | |
3847 if (command != NULL) | |
3848 { | |
3849 tlnum = atol((char *)command); | |
3850 if (tlnum <= 0) | |
3851 tlnum = 1L; | |
3852 } | |
3853 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED); | |
3854 goto theend; | |
3855 } | |
3856 buf = buflist_new(ffname, sfname, 0L, | |
3857 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
|
3858 |
5816 | 3859 /* autocommands may change curwin and curbuf */ |
3860 if (oldwin != NULL) | |
3861 oldwin = curwin; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3862 set_bufref(&old_curbuf, curbuf); |
7 | 3863 } |
3864 if (buf == NULL) | |
3865 goto theend; | |
3866 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */ | |
3867 { | |
3868 oldbuf = FALSE; | |
3869 } | |
3870 else /* existing memfile */ | |
3871 { | |
3872 oldbuf = TRUE; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3873 set_bufref(&bufref, buf); |
7 | 3874 (void)buf_check_timestamp(buf, FALSE); |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
3875 /* Check if autocommands made the buffer invalid or changed the |
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
3876 * current buffer. */ |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3877 if (!bufref_valid(&bufref) || curbuf != old_curbuf.br_buf) |
7 | 3878 goto theend; |
3879 #ifdef FEAT_EVAL | |
3880 if (aborting()) /* autocmds may abort script processing */ | |
3881 goto theend; | |
3882 #endif | |
3883 } | |
3884 | |
3885 /* May jump to last used line number for a loaded buffer or when asked | |
3886 * for explicitly */ | |
3887 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) | |
3888 { | |
3889 pos = buflist_findfpos(buf); | |
3890 newlnum = pos->lnum; | |
3891 solcol = pos->col; | |
3892 } | |
3893 | |
3894 /* | |
3895 * Make the (new) buffer the one used by the current window. | |
3896 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. | |
3897 * If the current buffer was empty and has no file name, curbuf | |
6639 | 3898 * is returned by buflist_new(), nothing to do here. |
7 | 3899 */ |
3900 if (buf != curbuf) | |
3901 { | |
3902 /* | |
3903 * Be careful: The autocommands may delete any buffer and change | |
3904 * the current buffer. | |
3905 * - If the buffer we are going to edit is deleted, give up. | |
3906 * - If the current buffer is deleted, prefer to load the new | |
3907 * buffer when loading a buffer is required. This avoids | |
3908 * loading another buffer which then must be closed again. | |
3909 * - If we ended up in the new buffer already, need to skip a few | |
3910 * things, set auto_buf. | |
3911 */ | |
3912 if (buf->b_fname != NULL) | |
3913 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
|
3914 set_bufref(&au_new_curbuf, buf); |
7 | 3915 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
|
3916 if (!bufref_valid(&au_new_curbuf)) |
7 | 3917 { |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3918 /* new buffer has been deleted */ |
7 | 3919 delbuf_msg(new_name); /* frees new_name */ |
3920 goto theend; | |
3921 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3922 #ifdef FEAT_EVAL |
7 | 3923 if (aborting()) /* autocmds may abort script processing */ |
3924 { | |
3925 vim_free(new_name); | |
3926 goto theend; | |
3927 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3928 #endif |
7 | 3929 if (buf == curbuf) /* already in new buffer */ |
3930 auto_buf = TRUE; | |
3931 else | |
3932 { | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3933 win_T *the_curwin = curwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3934 |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3935 /* Set the w_closing flag to avoid that autocommands close the |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
3936 * 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
|
3937 the_curwin->w_closing = TRUE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
3938 ++buf->b_locked; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3939 |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3940 if (curbuf == old_curbuf.br_buf) |
7 | 3941 buf_copy_options(buf, BCO_ENTER); |
3942 | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3943 /* Close the link to the current buffer. This will set |
10141
b67088aae933
commit https://github.com/vim/vim/commit/aeac9006d5d14910f214f09df52c026a5936e737
Christian Brabandt <cb@256bit.org>
parents:
10106
diff
changeset
|
3944 * oldwin->w_buffer to NULL. */ |
825 | 3945 u_sync(FALSE); |
1743 | 3946 close_buffer(oldwin, curbuf, |
3365 | 3947 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE); |
7 | 3948 |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3949 the_curwin->w_closing = FALSE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
3950 --buf->b_locked; |
3242 | 3951 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3952 #ifdef FEAT_EVAL |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3953 /* autocmds may abort script processing */ |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3954 if (aborting() && curwin->w_buffer != NULL) |
7 | 3955 { |
3956 vim_free(new_name); | |
3957 goto theend; | |
3958 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3959 #endif |
7 | 3960 /* Be careful again, like above. */ |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3961 if (!bufref_valid(&au_new_curbuf)) |
7 | 3962 { |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3963 /* new buffer has been deleted */ |
7 | 3964 delbuf_msg(new_name); /* frees new_name */ |
3965 goto theend; | |
3966 } | |
3967 if (buf == curbuf) /* already in new buffer */ | |
3968 auto_buf = TRUE; | |
3969 else | |
3970 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3971 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3972 /* |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3973 * <VN> We could instead free the synblock |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3974 * and re-attach to buffer, perhaps. |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3975 */ |
11649
0f7888a5ba68
patch 8.0.0707: freeing wrong memory with certain autocommands
Christian Brabandt <cb@256bit.org>
parents:
11589
diff
changeset
|
3976 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
|
3977 || curwin->w_s == &(curwin->w_buffer->b_s)) |
3480 | 3978 curwin->w_s = &(buf->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3979 #endif |
7 | 3980 curwin->w_buffer = buf; |
3981 curbuf = buf; | |
3982 ++curbuf->b_nwindows; | |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3983 |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3984 /* Set 'fileformat', 'binary' and 'fenc' when forced. */ |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3985 if (!oldbuf && eap != NULL) |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3986 { |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3987 set_file_options(TRUE, eap); |
5242
f0361e297d9c
updated for version 7.4a.046
Bram Moolenaar <bram@vim.org>
parents:
5231
diff
changeset
|
3988 #ifdef FEAT_MBYTE |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3989 set_forced_fenc(eap); |
5242
f0361e297d9c
updated for version 7.4a.046
Bram Moolenaar <bram@vim.org>
parents:
5231
diff
changeset
|
3990 #endif |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3991 } |
7 | 3992 } |
3993 | |
3994 /* May get the window options from the last time this buffer | |
3995 * was in this window (or another window). If not used | |
3996 * before, reset the local window options to the global | |
3997 * values. Also restores old folding stuff. */ | |
1289 | 3998 get_winopts(curbuf); |
1185 | 3999 #ifdef FEAT_SPELL |
4000 did_get_winopts = TRUE; | |
4001 #endif | |
7 | 4002 } |
4003 vim_free(new_name); | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
4004 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
|
4005 au_new_curbuf.br_buf_free_count = 0; |
7 | 4006 } |
4007 | |
4008 curwin->w_pcmark.lnum = 1; | |
4009 curwin->w_pcmark.col = 0; | |
4010 } | |
4011 else /* !other_file */ | |
4012 { | |
13553
04019fc3de93
patch 8.0.1650: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
4013 if ((flags & ECMD_ADDBUF) || check_fname() == FAIL) |
7 | 4014 goto theend; |
6531 | 4015 |
7 | 4016 oldbuf = (flags & ECMD_OLDBUF); |
4017 } | |
4018 | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4019 /* Don't redraw until the cursor is in the right line, otherwise |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4020 * autocommands may cause ml_get errors. */ |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4021 ++RedrawingDisabled; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4022 did_inc_redrawing_disabled = TRUE; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4023 |
6365 | 4024 buf = curbuf; |
7 | 4025 if ((flags & ECMD_SET_HELP) || keep_help_flag) |
4026 { | |
6365 | 4027 prepare_help_buffer(); |
7 | 4028 } |
4029 else | |
4030 { | |
4031 /* Don't make a buffer listed if it's a help buffer. Useful when | |
4032 * using CTRL-O to go back to a help file. */ | |
4033 if (!curbuf->b_help) | |
4034 set_buflisted(TRUE); | |
4035 } | |
4036 | |
4037 /* If autocommands change buffers under our fingers, forget about | |
4038 * editing the file. */ | |
4039 if (buf != curbuf) | |
4040 goto theend; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
4041 #ifdef FEAT_EVAL |
7 | 4042 if (aborting()) /* autocmds may abort script processing */ |
4043 goto theend; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
4044 #endif |
7 | 4045 |
4046 /* Since we are starting to edit a file, consider the filetype to be | |
4047 * unset. Helps for when an autocommand changes files and expects syntax | |
4048 * highlighting to work in the other file. */ | |
4049 did_filetype = FALSE; | |
4050 | |
4051 /* | |
4052 * other_file oldbuf | |
4053 * FALSE FALSE re-edit same file, buffer is re-used | |
4054 * FALSE TRUE re-edit same file, nothing changes | |
4055 * TRUE FALSE start editing new file, new buffer | |
4056 * TRUE TRUE start editing in existing buffer (nothing to do) | |
4057 */ | |
4058 if (!other_file && !oldbuf) /* re-use the buffer */ | |
4059 { | |
4060 set_last_cursor(curwin); /* may set b_last_cursor */ | |
4061 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) | |
4062 { | |
4063 newlnum = curwin->w_cursor.lnum; | |
4064 solcol = curwin->w_cursor.col; | |
4065 } | |
4066 buf = curbuf; | |
4067 if (buf->b_fname != NULL) | |
4068 new_name = vim_strsave(buf->b_fname); | |
4069 else | |
4070 new_name = NULL; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
4071 set_bufref(&bufref, buf); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
4072 |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4073 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
|
4074 { |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4075 /* Save all the text, so that the reload can be undone. |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4076 * Sync first so that this is a separate undo-able action. */ |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4077 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
|
4078 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
|
4079 == FAIL) |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
4080 { |
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
4081 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
|
4082 goto theend; |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
4083 } |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4084 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
|
4085 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
|
4086 |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4087 /* tell readfile() not to clear or reload undo info */ |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4088 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
|
4089 } |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4090 else |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4091 buf_freeall(curbuf, 0); /* free all things for buffer */ |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
4092 |
7 | 4093 /* If autocommands deleted the buffer we were going to re-edit, give |
4094 * 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
|
4095 if (!bufref_valid(&bufref)) |
7 | 4096 { |
4097 delbuf_msg(new_name); /* frees new_name */ | |
4098 goto theend; | |
4099 } | |
4100 vim_free(new_name); | |
4101 | |
4102 /* If autocommands change buffers under our fingers, forget about | |
4103 * re-editing the file. Should do the buf_clear_file(), but perhaps | |
4104 * the autocommands changed the buffer... */ | |
4105 if (buf != curbuf) | |
4106 goto theend; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
4107 #ifdef FEAT_EVAL |
7 | 4108 if (aborting()) /* autocmds may abort script processing */ |
4109 goto theend; | |
4110 #endif | |
4111 buf_clear_file(curbuf); | |
4112 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */ | |
4113 curbuf->b_op_end.lnum = 0; | |
4114 } | |
4115 | |
4116 /* | |
4117 * If we get here we are sure to start editing | |
4118 */ | |
4119 /* Assume success now */ | |
4120 retval = OK; | |
4121 | |
4122 /* | |
4123 * Check if we are editing the w_arg_idx file in the argument list. | |
4124 */ | |
4125 check_arg_idx(curwin); | |
4126 | |
4127 if (!auto_buf) | |
4128 { | |
4129 /* | |
4130 * Set cursor and init window before reading the file and executing | |
4131 * autocommands. This allows for the autocommands to position the | |
4132 * cursor. | |
4133 */ | |
677 | 4134 curwin_init(); |
7 | 4135 |
4136 #ifdef FEAT_FOLDING | |
1370 | 4137 /* It's possible that all lines in the buffer changed. Need to update |
4138 * automatic folding for all windows where it's used. */ | |
4139 { | |
4140 win_T *win; | |
4141 tabpage_T *tp; | |
4142 | |
4143 FOR_ALL_TAB_WINDOWS(tp, win) | |
4144 if (win->w_buffer == curbuf) | |
4145 foldUpdateAll(win); | |
4146 } | |
7 | 4147 #endif |
4148 | |
961 | 4149 /* 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
|
4150 DO_AUTOCHDIR; |
961 | 4151 |
7 | 4152 /* |
4153 * Careful: open_buffer() and apply_autocmds() may change the current | |
4154 * buffer and window. | |
4155 */ | |
6702 | 4156 orig_pos = curwin->w_cursor; |
7 | 4157 topline = curwin->w_topline; |
4158 if (!oldbuf) /* need to read the file */ | |
4159 { | |
580 | 4160 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 4161 swap_exists_action = SEA_DIALOG; |
4162 #endif | |
4163 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */ | |
4164 | |
4165 /* | |
4166 * Open the buffer and read the file. | |
4167 */ | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
4168 #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
|
4169 if (should_abort(open_buffer(FALSE, eap, readfile_flags))) |
7 | 4170 retval = FAIL; |
4171 #else | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4172 (void)open_buffer(FALSE, eap, readfile_flags); |
7 | 4173 #endif |
4174 | |
580 | 4175 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 4176 if (swap_exists_action == SEA_QUIT) |
4177 retval = FAIL; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
4178 handle_swap_exists(&old_curbuf); |
7 | 4179 #endif |
4180 } | |
4181 else | |
4182 { | |
23 | 4183 /* Read the modelines, but only to set window-local options. Any |
4184 * buffer-local options have already been set and may have been | |
4185 * changed by the user. */ | |
717 | 4186 do_modelines(OPT_WINONLY); |
23 | 4187 |
7 | 4188 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, |
4189 &retval); | |
4190 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, | |
4191 &retval); | |
4192 } | |
4193 check_arg_idx(curwin); | |
4194 | |
6702 | 4195 /* If autocommands change the cursor position or topline, we should |
14033
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
4196 * keep it. Also when it moves within a line. But not when it moves |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
4197 * 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
|
4198 if (!EQUAL_POS(curwin->w_cursor, orig_pos)) |
7 | 4199 { |
14033
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
4200 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
|
4201 |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
4202 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
|
4203 || 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
|
4204 { |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
4205 newlnum = curwin->w_cursor.lnum; |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
4206 newcol = curwin->w_cursor.col; |
bcda3b864c31
patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
4207 } |
7 | 4208 } |
4209 if (curwin->w_topline == topline) | |
4210 topline = 0; | |
4211 | |
4212 /* Even when cursor didn't move we need to recompute topline. */ | |
4213 changed_line_abv_curs(); | |
4214 | |
4215 #ifdef FEAT_TITLE | |
4216 maketitle(); | |
4217 #endif | |
4218 } | |
4219 | |
4220 #ifdef FEAT_DIFF | |
4221 /* Tell the diff stuff that this buffer is new and/or needs updating. | |
4222 * Also needed when re-editing the same buffer, because unloading will | |
4223 * have removed it as a diff buffer. */ | |
673 | 4224 if (curwin->w_p_diff) |
4225 { | |
4226 diff_buf_add(curbuf); | |
4227 diff_invalidate(curbuf); | |
4228 } | |
7 | 4229 #endif |
4230 | |
1185 | 4231 #ifdef FEAT_SPELL |
4232 /* If the window options were changed may need to set the spell language. | |
4233 * 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
|
4234 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
|
4235 (void)did_set_spelllang(curwin); |
1185 | 4236 #endif |
4237 | |
7 | 4238 if (command == NULL) |
4239 { | |
4240 if (newcol >= 0) /* position set by autocommands */ | |
4241 { | |
4242 curwin->w_cursor.lnum = newlnum; | |
4243 curwin->w_cursor.col = newcol; | |
4244 check_cursor(); | |
4245 } | |
4246 else if (newlnum > 0) /* line number from caller or old position */ | |
4247 { | |
4248 curwin->w_cursor.lnum = newlnum; | |
4249 check_cursor_lnum(); | |
4250 if (solcol >= 0 && !p_sol) | |
4251 { | |
4252 /* 'sol' is off: Use last known column. */ | |
4253 curwin->w_cursor.col = solcol; | |
4254 check_cursor_col(); | |
4255 #ifdef FEAT_VIRTUALEDIT | |
4256 curwin->w_cursor.coladd = 0; | |
4257 #endif | |
4258 curwin->w_set_curswant = TRUE; | |
4259 } | |
4260 else | |
4261 beginline(BL_SOL | BL_FIX); | |
4262 } | |
4263 else /* no line number, go to last line in Ex mode */ | |
4264 { | |
4265 if (exmode_active) | |
4266 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4267 beginline(BL_WHITE | BL_FIX); | |
4268 } | |
4269 } | |
4270 | |
4271 /* Check if cursors in other windows on the same buffer are still valid */ | |
4272 check_lnums(FALSE); | |
4273 | |
4274 /* | |
4275 * Did not read the file, need to show some info about the file. | |
4276 * Do this after setting the cursor. | |
4277 */ | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
4278 if (oldbuf && !auto_buf) |
7 | 4279 { |
4280 int msg_scroll_save = msg_scroll; | |
4281 | |
4282 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file | |
4283 * message. */ | |
4284 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) | |
4285 msg_scroll = FALSE; | |
4286 if (!msg_scroll) /* wait a bit when overwriting an error msg */ | |
4287 check_for_delay(FALSE); | |
4288 msg_start(); | |
4289 msg_scroll = msg_scroll_save; | |
4290 msg_scrolled_ign = TRUE; | |
4291 | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
4292 if (!shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
4293 fileinfo(FALSE, TRUE, FALSE); |
7 | 4294 |
4295 msg_scrolled_ign = FALSE; | |
4296 } | |
4297 | |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4298 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4299 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4300 #endif |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4301 |
7 | 4302 if (command != NULL) |
4303 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); | |
4304 | |
4305 #ifdef FEAT_KEYMAP | |
4306 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 4307 (void)keymap_init(); |
7 | 4308 #endif |
4309 | |
4310 --RedrawingDisabled; | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4311 did_inc_redrawing_disabled = FALSE; |
7 | 4312 if (!skip_redraw) |
4313 { | |
4314 n = p_so; | |
4315 if (topline == 0 && command == NULL) | |
4316 p_so = 999; /* force cursor halfway the window */ | |
4317 update_topline(); | |
4318 curwin->w_scbind_pos = curwin->w_topline; | |
4319 p_so = n; | |
4320 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */ | |
4321 } | |
4322 | |
4323 if (p_im) | |
4324 need_start_insertmode = TRUE; | |
4325 | |
13174
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4326 #ifdef FEAT_AUTOCHDIR |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4327 /* Change directories when the 'acd' option is set and we aren't already in |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4328 * that directory (should already be done above). Expect getcwd() to be |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4329 * faster than calling shorten_fnames() unnecessarily. */ |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4330 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
|
4331 { |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4332 char_u curdir[MAXPATHL]; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4333 char_u filedir[MAXPATHL]; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4334 |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4335 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
|
4336 *gettail_sep(filedir) = NUL; |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4337 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
|
4338 && vim_fnamecmp(curdir, filedir) != 0) |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4339 do_autochdir(); |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4340 } |
1bf3519889d3
patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents:
13014
diff
changeset
|
4341 #endif |
821 | 4342 |
4343 #if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
4344 if (curbuf->b_ffname != NULL) |
7 | 4345 { |
4346 # ifdef FEAT_SUN_WORKSHOP | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
4347 if (gui.in_use && usingSunWorkShop) |
7 | 4348 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro); |
4349 # endif | |
4350 # ifdef FEAT_NETBEANS_INTG | |
2210 | 4351 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP) |
34 | 4352 netbeans_file_opened(curbuf); |
7 | 4353 # endif |
4354 } | |
4355 #endif | |
4356 | |
4357 theend: | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4358 if (did_inc_redrawing_disabled) |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4359 --RedrawingDisabled; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
4360 #if defined(FEAT_EVAL) |
716 | 4361 if (did_set_swapcommand) |
4362 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); | |
4363 #endif | |
7 | 4364 #ifdef FEAT_BROWSE |
4365 vim_free(browse_file); | |
4366 #endif | |
4367 vim_free(free_fname); | |
4368 return retval; | |
4369 } | |
4370 | |
4371 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4372 delbuf_msg(char_u *name) |
7 | 4373 { |
4374 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"), | |
4375 name == NULL ? (char_u *)"" : name); | |
4376 vim_free(name); | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
4377 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
|
4378 au_new_curbuf.br_buf_free_count = 0; |
7 | 4379 } |
4380 | |
169 | 4381 static int append_indent = 0; /* autoindent for first line */ |
4382 | |
7 | 4383 /* |
4384 * ":insert" and ":append", also used by ":change" | |
4385 */ | |
4386 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4387 ex_append(exarg_T *eap) |
7 | 4388 { |
4389 char_u *theline; | |
4390 int did_undo = FALSE; | |
4391 linenr_T lnum = eap->line2; | |
165 | 4392 int indent = 0; |
4393 char_u *p; | |
4394 int vcol; | |
4395 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); | |
7 | 4396 |
169 | 4397 /* the ! flag toggles autoindent */ |
4398 if (eap->forceit) | |
4399 curbuf->b_p_ai = !curbuf->b_p_ai; | |
4400 | |
4401 /* First autoindent comes from the line we start on */ | |
4402 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) | |
4403 append_indent = get_indent_lnum(lnum); | |
4404 | |
7 | 4405 if (eap->cmdidx != CMD_append) |
4406 --lnum; | |
4407 | |
9377
5ec4fbfe38c5
commit https://github.com/vim/vim/commit/70e136e1d86ea1d795774824c7b712245912946d
Christian Brabandt <cb@256bit.org>
parents:
9347
diff
changeset
|
4408 /* when the buffer is empty need to delete the dummy line */ |
165 | 4409 if (empty && lnum == 1) |
4410 lnum = 0; | |
4411 | |
7 | 4412 State = INSERT; /* behave like in Insert mode */ |
4413 if (curbuf->b_p_iminsert == B_IMODE_LMAP) | |
4414 State |= LANGMAP; | |
165 | 4415 |
408 | 4416 for (;;) |
7 | 4417 { |
4418 msg_scroll = TRUE; | |
4419 need_wait_return = FALSE; | |
169 | 4420 if (curbuf->b_p_ai) |
4421 { | |
4422 if (append_indent >= 0) | |
4423 { | |
4424 indent = append_indent; | |
4425 append_indent = -1; | |
4426 } | |
4427 else if (lnum > 0) | |
4428 indent = get_indent_lnum(lnum); | |
4429 } | |
4430 ex_keep_indent = FALSE; | |
7 | 4431 if (eap->getline == NULL) |
169 | 4432 { |
4433 /* No getline() function, use the lines that follow. This ends | |
4434 * when there is no more. */ | |
4435 if (eap->nextcmd == NULL || *eap->nextcmd == NUL) | |
4436 break; | |
4437 p = vim_strchr(eap->nextcmd, NL); | |
4438 if (p == NULL) | |
4439 p = eap->nextcmd + STRLEN(eap->nextcmd); | |
4440 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd)); | |
4441 if (*p != NUL) | |
4442 ++p; | |
4443 eap->nextcmd = p; | |
4444 } | |
7 | 4445 else |
6164 | 4446 { |
4447 int save_State = State; | |
4448 | |
4449 /* Set State to avoid the cursor shape to be set to INSERT mode | |
4450 * when getline() returns. */ | |
4451 State = CMDLINE; | |
7 | 4452 theline = eap->getline( |
4453 #ifdef FEAT_EVAL | |
76 | 4454 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 4455 #endif |
165 | 4456 NUL, eap->cookie, indent); |
6164 | 4457 State = save_State; |
4458 } | |
7 | 4459 lines_left = Rows - 1; |
165 | 4460 if (theline == NULL) |
4461 break; | |
4462 | |
169 | 4463 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */ |
4464 if (ex_keep_indent) | |
4465 append_indent = indent; | |
4466 | |
165 | 4467 /* Look for the "." after automatic indent. */ |
4468 vcol = 0; | |
4469 for (p = theline; indent > vcol; ++p) | |
4470 { | |
4471 if (*p == ' ') | |
4472 ++vcol; | |
4473 else if (*p == TAB) | |
4474 vcol += 8 - vcol % 8; | |
4475 else | |
4476 break; | |
4477 } | |
4478 if ((p[0] == '.' && p[1] == NUL) | |
321 | 4479 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
4480 == FAIL)) | |
7 | 4481 { |
4482 vim_free(theline); | |
4483 break; | |
4484 } | |
4485 | |
169 | 4486 /* don't use autoindent if nothing was typed. */ |
4487 if (p[0] == NUL) | |
4488 theline[0] = NUL; | |
4489 | |
7 | 4490 did_undo = TRUE; |
4491 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
|
4492 appended_lines_mark(lnum + (empty ? 1 : 0), 1L); |
7 | 4493 |
4494 vim_free(theline); | |
4495 ++lnum; | |
165 | 4496 |
4497 if (empty) | |
4498 { | |
4499 ml_delete(2L, FALSE); | |
4500 empty = FALSE; | |
4501 } | |
7 | 4502 } |
4503 State = NORMAL; | |
4504 | |
169 | 4505 if (eap->forceit) |
4506 curbuf->b_p_ai = !curbuf->b_p_ai; | |
4507 | |
7 | 4508 /* "start" is set to eap->line2+1 unless that position is invalid (when |
1227 | 4509 * eap->line2 pointed to the end of the buffer and nothing was appended) |
7 | 4510 * "end" is set to lnum when something has been appended, otherwise |
4511 * it is the same than "start" -- Acevedo */ | |
4512 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ? | |
4513 eap->line2 + 1 : curbuf->b_ml.ml_line_count; | |
4514 if (eap->cmdidx != CMD_append) | |
4515 --curbuf->b_op_start.lnum; | |
4516 curbuf->b_op_end.lnum = (eap->line2 < lnum) | |
4517 ? lnum : curbuf->b_op_start.lnum; | |
4518 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
4519 curwin->w_cursor.lnum = lnum; | |
4520 check_cursor_lnum(); | |
4521 beginline(BL_SOL | BL_FIX); | |
4522 | |
4523 need_wait_return = FALSE; /* don't use wait_return() now */ | |
4524 ex_no_reprint = TRUE; | |
4525 } | |
4526 | |
4527 /* | |
4528 * ":change" | |
4529 */ | |
4530 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4531 ex_change(exarg_T *eap) |
7 | 4532 { |
4533 linenr_T lnum; | |
4534 | |
4535 if (eap->line2 >= eap->line1 | |
4536 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) | |
4537 return; | |
4538 | |
169 | 4539 /* the ! flag toggles autoindent */ |
4540 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) | |
4541 append_indent = get_indent_lnum(eap->line1); | |
4542 | |
7 | 4543 for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
4544 { | |
4545 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ | |
4546 break; | |
4547 ml_delete(eap->line1, FALSE); | |
4548 } | |
1929 | 4549 |
4550 /* make sure the cursor is not beyond the end of the file now */ | |
4551 check_cursor_lnum(); | |
7 | 4552 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
4553 | |
4554 /* ":append" on the line above the deleted lines. */ | |
4555 eap->line2 = eap->line1; | |
4556 ex_append(eap); | |
4557 } | |
4558 | |
4559 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4560 ex_z(exarg_T *eap) |
7 | 4561 { |
4562 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
|
4563 long bigness; |
165 | 4564 char_u *kind; |
7 | 4565 int minus = 0; |
4566 linenr_T start, end, curs, i; | |
4567 int j; | |
4568 linenr_T lnum = eap->line2; | |
4569 | |
165 | 4570 /* Vi compatible: ":z!" uses display height, without a count uses |
4571 * 'scroll' */ | |
4572 if (eap->forceit) | |
4573 bigness = curwin->w_height; | |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10299
diff
changeset
|
4574 else if (!ONE_WINDOW) |
5678 | 4575 bigness = curwin->w_height - 3; |
4576 else | |
165 | 4577 bigness = curwin->w_p_scr * 2; |
7 | 4578 if (bigness < 1) |
4579 bigness = 1; | |
4580 | |
4581 x = eap->arg; | |
165 | 4582 kind = x; |
4583 if (*kind == '-' || *kind == '+' || *kind == '=' | |
4584 || *kind == '^' || *kind == '.') | |
4585 ++x; | |
4586 while (*x == '-' || *x == '+') | |
7 | 4587 ++x; |
4588 | |
4589 if (*x != 0) | |
4590 { | |
4591 if (!VIM_ISDIGIT(*x)) | |
4592 { | |
4593 EMSG(_("E144: non-numeric argument to :z")); | |
4594 return; | |
4595 } | |
4596 else | |
165 | 4597 { |
11303
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
4598 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
|
4599 |
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
4600 /* bigness could be < 0 if atol(x) overflows. */ |
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
4601 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
|
4602 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
|
4603 |
165 | 4604 p_window = bigness; |
169 | 4605 if (*kind == '=') |
4606 bigness += 2; | |
165 | 4607 } |
7 | 4608 } |
4609 | |
165 | 4610 /* the number of '-' and '+' multiplies the distance */ |
4611 if (*kind == '-' || *kind == '+') | |
4612 for (x = kind + 1; *x == *kind; ++x) | |
4613 ; | |
4614 | |
4615 switch (*kind) | |
7 | 4616 { |
4617 case '-': | |
2881 | 4618 start = lnum - bigness * (linenr_T)(x - kind) + 1; |
4619 end = start + bigness - 1; | |
165 | 4620 curs = end; |
7 | 4621 break; |
4622 | |
4623 case '=': | |
159 | 4624 start = lnum - (bigness + 1) / 2 + 1; |
4625 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4626 curs = lnum; |
4627 minus = 1; | |
4628 break; | |
4629 | |
4630 case '^': | |
4631 start = lnum - bigness * 2; | |
4632 end = lnum - bigness; | |
4633 curs = lnum - bigness; | |
4634 break; | |
4635 | |
4636 case '.': | |
159 | 4637 start = lnum - (bigness + 1) / 2 + 1; |
4638 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4639 curs = end; |
4640 break; | |
4641 | |
4642 default: /* '+' */ | |
4643 start = lnum; | |
165 | 4644 if (*kind == '+') |
835 | 4645 start += bigness * (linenr_T)(x - kind - 1) + 1; |
169 | 4646 else if (eap->addr_count == 0) |
4647 ++start; | |
4648 end = start + bigness - 1; | |
7 | 4649 curs = end; |
4650 break; | |
4651 } | |
4652 | |
4653 if (start < 1) | |
4654 start = 1; | |
4655 | |
4656 if (end > curbuf->b_ml.ml_line_count) | |
4657 end = curbuf->b_ml.ml_line_count; | |
4658 | |
4659 if (curs > curbuf->b_ml.ml_line_count) | |
4660 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
|
4661 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
|
4662 curs = 1; |
7 | 4663 |
4664 for (i = start; i <= end; i++) | |
4665 { | |
4666 if (minus && i == lnum) | |
4667 { | |
4668 msg_putchar('\n'); | |
4669 | |
4670 for (j = 1; j < Columns; j++) | |
4671 msg_putchar('-'); | |
4672 } | |
4673 | |
169 | 4674 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
7 | 4675 |
4676 if (minus && i == lnum) | |
4677 { | |
4678 msg_putchar('\n'); | |
4679 | |
4680 for (j = 1; j < Columns; j++) | |
4681 msg_putchar('-'); | |
4682 } | |
4683 } | |
4684 | |
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
|
4685 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
|
4686 { |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
4687 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
|
4688 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
|
4689 } |
7 | 4690 ex_no_reprint = TRUE; |
4691 } | |
4692 | |
4693 /* | |
4694 * Check if the restricted flag is set. | |
4695 * If so, give an error message and return TRUE. | |
4696 * Otherwise, return FALSE. | |
4697 */ | |
4698 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4699 check_restricted(void) |
7 | 4700 { |
4701 if (restricted) | |
4702 { | |
4703 EMSG(_("E145: Shell commands not allowed in rvim")); | |
4704 return TRUE; | |
4705 } | |
4706 return FALSE; | |
4707 } | |
4708 | |
4709 /* | |
4710 * Check if the secure flag is set (.exrc or .vimrc in current directory). | |
4711 * If so, give an error message and return TRUE. | |
4712 * Otherwise, return FALSE. | |
4713 */ | |
4714 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4715 check_secure(void) |
7 | 4716 { |
4717 if (secure) | |
4718 { | |
4719 secure = 2; | |
4720 EMSG(_(e_curdir)); | |
4721 return TRUE; | |
4722 } | |
4723 #ifdef HAVE_SANDBOX | |
4724 /* | |
4725 * In the sandbox more things are not allowed, including the things | |
4726 * disallowed in secure mode. | |
4727 */ | |
4728 if (sandbox != 0) | |
4729 { | |
4730 EMSG(_(e_sandbox)); | |
4731 return TRUE; | |
4732 } | |
4733 #endif | |
4734 return FALSE; | |
4735 } | |
4736 | |
4737 static char_u *old_sub = NULL; /* previous substitute pattern */ | |
4738 static int global_need_beginline; /* call beginline() after ":g" */ | |
4739 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4740 /* |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4741 * 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
|
4742 */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4743 typedef struct { |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4744 int do_all; /* do multiple substitutions per line */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4745 int do_ask; /* ask for confirmation */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4746 int do_count; /* count only */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4747 int do_error; /* if false, ignore errors */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4748 int do_print; /* print last line with subs. */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4749 int do_list; /* list last line with subs. */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4750 int do_number; /* list last line with line nr*/ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4751 int do_ic; /* ignore case flag */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4752 } subflags_T; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4753 |
7 | 4754 /* do_sub() |
4755 * | |
4756 * Perform a substitution from line eap->line1 to line eap->line2 using the | |
4757 * command pointed to by eap->arg which should be of the form: | |
4758 * | |
4759 * /pattern/substitution/{flags} | |
4760 * | |
4761 * The usual escapes are supported as described in the regexp docs. | |
4762 */ | |
4763 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4764 do_sub(exarg_T *eap) |
7 | 4765 { |
4766 linenr_T lnum; | |
4767 long i = 0; | |
4768 regmmatch_T regmatch; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4769 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
|
4770 FALSE, FALSE, 0}; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4771 #ifdef FEAT_EVAL |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4772 subflags_T subflags_save; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4773 #endif |
6789 | 4774 int save_do_all; /* remember user specified 'g' flag */ |
4775 int save_do_ask; /* remember user specified 'c' flag */ | |
7 | 4776 char_u *pat = NULL, *sub = NULL; /* init for GCC */ |
4777 int delimiter; | |
4778 int sublen; | |
4779 int got_quit = FALSE; | |
4780 int got_match = FALSE; | |
4781 int temp; | |
4782 int which_pat; | |
4783 char_u *cmd; | |
4784 int save_State; | |
165 | 4785 linenr_T first_line = 0; /* first changed line */ |
4786 linenr_T last_line= 0; /* below last changed line AFTER the | |
7 | 4787 * change */ |
4788 linenr_T old_line_count = curbuf->b_ml.ml_line_count; | |
4789 linenr_T line2; | |
165 | 4790 long nmatch; /* number of lines in match */ |
4791 char_u *sub_firstline; /* allocated copy of first sub line */ | |
4792 int endcolumn = FALSE; /* cursor in last column when done */ | |
170 | 4793 pos_T old_cursor = curwin->w_cursor; |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4794 int start_nsubs; |
3736 | 4795 #ifdef FEAT_EVAL |
5867 | 4796 int save_ma = 0; |
3736 | 4797 #endif |
7 | 4798 |
4799 cmd = eap->arg; | |
4800 if (!global_busy) | |
4801 { | |
4802 sub_nsubs = 0; | |
4803 sub_nlines = 0; | |
4804 } | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4805 start_nsubs = sub_nsubs; |
7 | 4806 |
4807 if (eap->cmdidx == CMD_tilde) | |
4808 which_pat = RE_LAST; /* use last used regexp */ | |
4809 else | |
4810 which_pat = RE_SUBST; /* use last substitute regexp */ | |
4811 | |
4812 /* 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
|
4813 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd) |
7 | 4814 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) |
4815 { | |
4816 /* don't accept alphanumeric for separator */ | |
4817 if (isalpha(*cmd)) | |
4818 { | |
4819 EMSG(_("E146: Regular expressions can't be delimited by letters")); | |
4820 return; | |
4821 } | |
4822 /* | |
4823 * undocumented vi feature: | |
4824 * "\/sub/" and "\?sub?" use last used search pattern (almost like | |
4825 * //sub/r). "\&sub&" use last substitute pattern (like //sub/). | |
4826 */ | |
4827 if (*cmd == '\\') | |
4828 { | |
4829 ++cmd; | |
4830 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
4831 { | |
4832 EMSG(_(e_backslash)); | |
4833 return; | |
4834 } | |
4835 if (*cmd != '&') | |
4836 which_pat = RE_SEARCH; /* use last '/' pattern */ | |
4837 pat = (char_u *)""; /* empty search pattern */ | |
4838 delimiter = *cmd++; /* remember delimiter character */ | |
4839 } | |
4840 else /* find the end of the regexp */ | |
4841 { | |
1466 | 4842 #ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */ |
4843 if (p_altkeymap && curwin->w_p_rl) | |
4844 lrF_sub(cmd); | |
4845 #endif | |
7 | 4846 which_pat = RE_LAST; /* use last used regexp */ |
4847 delimiter = *cmd++; /* remember delimiter character */ | |
4848 pat = cmd; /* remember start of search pat */ | |
4849 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg); | |
4850 if (cmd[0] == delimiter) /* end delimiter found */ | |
4851 *cmd++ = NUL; /* replace it with a NUL */ | |
4852 } | |
4853 | |
4854 /* | |
4855 * Small incompatibility: vi sees '\n' as end of the command, but in | |
4856 * Vim we want to use '\n' to find/substitute a NUL. | |
4857 */ | |
4858 sub = cmd; /* remember the start of the substitution */ | |
4859 | |
4860 while (cmd[0]) | |
4861 { | |
4862 if (cmd[0] == delimiter) /* end delimiter found */ | |
4863 { | |
4864 *cmd++ = NUL; /* replace it with a NUL */ | |
4865 break; | |
4866 } | |
4867 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */ | |
4868 ++cmd; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11123
diff
changeset
|
4869 MB_PTR_ADV(cmd); |
7 | 4870 } |
4871 | |
4872 if (!eap->skip) | |
4873 { | |
169 | 4874 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */ |
4875 if (STRCMP(sub, "%") == 0 | |
4876 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) | |
4877 { | |
4878 if (old_sub == NULL) /* there is no previous command */ | |
4879 { | |
4880 EMSG(_(e_nopresub)); | |
4881 return; | |
4882 } | |
4883 sub = old_sub; | |
4884 } | |
4885 else | |
4886 { | |
4887 vim_free(old_sub); | |
4888 old_sub = vim_strsave(sub); | |
4889 } | |
7 | 4890 } |
4891 } | |
4892 else if (!eap->skip) /* use previous pattern and substitution */ | |
4893 { | |
4894 if (old_sub == NULL) /* there is no previous command */ | |
4895 { | |
4896 EMSG(_(e_nopresub)); | |
4897 return; | |
4898 } | |
4899 pat = NULL; /* search_regcomp() will use previous pattern */ | |
4900 sub = old_sub; | |
163 | 4901 |
4902 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the | |
4903 * last column after using "$". */ | |
4904 endcolumn = (curwin->w_curswant == MAXCOL); | |
7 | 4905 } |
4906 | |
5776 | 4907 /* Recognize ":%s/\n//" and turn it into a join command, which is much |
4908 * more efficient. | |
4909 * TODO: find a generic solution to make line-joining operations more | |
4910 * efficient, avoid allocating a string that grows in size. | |
4911 */ | |
5802 | 4912 if (pat != NULL && STRCMP(pat, "\\n") == 0 |
5776 | 4913 && *sub == NUL |
4914 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l' | |
4915 || *cmd == 'p' || *cmd == '#')))) | |
4916 { | |
6426 | 4917 linenr_T joined_lines_count; |
4918 | |
5776 | 4919 curwin->w_cursor.lnum = eap->line1; |
4920 if (*cmd == 'l') | |
4921 eap->flags = EXFLAG_LIST; | |
4922 else if (*cmd == '#') | |
4923 eap->flags = EXFLAG_NR; | |
4924 else if (*cmd == 'p') | |
4925 eap->flags = EXFLAG_PRINT; | |
4926 | |
6426 | 4927 /* The number of lines joined is the number of lines in the range plus |
4928 * one. One less when the last line is included. */ | |
4929 joined_lines_count = eap->line2 - eap->line1 + 1; | |
4930 if (eap->line2 < curbuf->b_ml.ml_line_count) | |
4931 ++joined_lines_count; | |
4932 if (joined_lines_count > 1) | |
4933 { | |
4934 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE); | |
4935 sub_nsubs = joined_lines_count - 1; | |
4936 sub_nlines = 1; | |
4937 (void)do_sub_msg(FALSE); | |
4938 ex_may_print(eap); | |
4939 } | |
4940 | |
4941 if (!cmdmod.keeppatterns) | |
4942 save_re_pat(RE_SUBST, pat, p_magic); | |
4943 #ifdef FEAT_CMDHIST | |
4944 /* put pattern in history */ | |
4945 add_to_history(HIST_SEARCH, pat, TRUE, NUL); | |
4946 #endif | |
4947 | |
5776 | 4948 return; |
4949 } | |
4950 | |
7 | 4951 /* |
4952 * Find trailing options. When '&' is used, keep old options. | |
4953 */ | |
4954 if (*cmd == '&') | |
4955 ++cmd; | |
4956 else | |
4957 { | |
4958 if (!p_ed) | |
4959 { | |
4960 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
|
4961 subflags.do_all = TRUE; |
7 | 4962 else |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4963 subflags.do_all = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4964 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4965 } |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4966 subflags.do_error = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4967 subflags.do_print = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4968 subflags.do_count = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4969 subflags.do_number = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4970 subflags.do_ic = 0; |
7 | 4971 } |
4972 while (*cmd) | |
4973 { | |
4974 /* | |
4975 * Note that 'g' and 'c' are always inverted, also when p_ed is off. | |
4976 * 'r' is never inverted. | |
4977 */ | |
4978 if (*cmd == 'g') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4979 subflags.do_all = !subflags.do_all; |
7 | 4980 else if (*cmd == 'c') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4981 subflags.do_ask = !subflags.do_ask; |
170 | 4982 else if (*cmd == 'n') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4983 subflags.do_count = TRUE; |
7 | 4984 else if (*cmd == 'e') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4985 subflags.do_error = !subflags.do_error; |
7 | 4986 else if (*cmd == 'r') /* use last used regexp */ |
4987 which_pat = RE_LAST; | |
4988 else if (*cmd == 'p') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4989 subflags.do_print = TRUE; |
169 | 4990 else if (*cmd == '#') |
4991 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4992 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4993 subflags.do_number = TRUE; |
169 | 4994 } |
4995 else if (*cmd == 'l') | |
4996 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4997 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4998 subflags.do_list = TRUE; |
169 | 4999 } |
7 | 5000 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
|
5001 subflags.do_ic = 'i'; |
7 | 5002 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
|
5003 subflags.do_ic = 'I'; |
7 | 5004 else |
5005 break; | |
5006 ++cmd; | |
5007 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5008 if (subflags.do_count) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5009 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5010 |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5011 save_do_all = subflags.do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5012 save_do_ask = subflags.do_ask; |
6789 | 5013 |
7 | 5014 /* |
5015 * check for a trailing count | |
5016 */ | |
5017 cmd = skipwhite(cmd); | |
5018 if (VIM_ISDIGIT(*cmd)) | |
5019 { | |
5020 i = getdigits(&cmd); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5021 if (i <= 0 && !eap->skip && subflags.do_error) |
7 | 5022 { |
5023 EMSG(_(e_zerocount)); | |
5024 return; | |
5025 } | |
5026 eap->line1 = eap->line2; | |
5027 eap->line2 += i - 1; | |
5028 if (eap->line2 > curbuf->b_ml.ml_line_count) | |
5029 eap->line2 = curbuf->b_ml.ml_line_count; | |
5030 } | |
5031 | |
5032 /* | |
5033 * check for trailing command or garbage | |
5034 */ | |
5035 cmd = skipwhite(cmd); | |
5036 if (*cmd && *cmd != '"') /* if not end-of-line or comment */ | |
5037 { | |
5038 eap->nextcmd = check_nextcmd(cmd); | |
5039 if (eap->nextcmd == NULL) | |
5040 { | |
5041 EMSG(_(e_trailing)); | |
5042 return; | |
5043 } | |
5044 } | |
5045 | |
5046 if (eap->skip) /* not executing commands, only parsing */ | |
5047 return; | |
5048 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5049 if (!subflags.do_count && !curbuf->b_p_ma) |
823 | 5050 { |
825 | 5051 /* Substitution is not allowed in non-'modifiable' buffer */ |
823 | 5052 EMSG(_(e_modifiable)); |
5053 return; | |
5054 } | |
5055 | |
7 | 5056 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
5057 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5058 if (subflags.do_error) |
7 | 5059 EMSG(_(e_invcmd)); |
5060 return; | |
5061 } | |
5062 | |
5063 /* 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
|
5064 if (subflags.do_ic == 'i') |
7 | 5065 regmatch.rmm_ic = TRUE; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5066 else if (subflags.do_ic == 'I') |
7 | 5067 regmatch.rmm_ic = FALSE; |
5068 | |
5069 sub_firstline = NULL; | |
5070 | |
5071 /* | |
5072 * ~ in the substitute pattern is replaced with the old pattern. | |
5073 * We do it here once to avoid it to be replaced over and over again. | |
5074 * But don't do it when it starts with "\=", then it's an expression. | |
5075 */ | |
5076 if (!(sub[0] == '\\' && sub[1] == '=')) | |
5077 sub = regtilde(sub, p_magic); | |
5078 | |
5079 /* | |
5080 * Check for a match on each line. | |
5081 */ | |
5082 line2 = eap->line2; | |
5083 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
|
5084 #if defined(FEAT_EVAL) |
7 | 5085 || aborting() |
5086 #endif | |
5087 ); ++lnum) | |
5088 { | |
1521 | 5089 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
|
5090 (colnr_T)0, NULL, NULL); |
7 | 5091 if (nmatch) |
5092 { | |
5093 colnr_T copycol; | |
5094 colnr_T matchcol; | |
5095 colnr_T prev_matchcol = MAXCOL; | |
5096 char_u *new_end, *new_start = NULL; | |
5097 unsigned new_start_len = 0; | |
5098 char_u *p1; | |
5099 int did_sub = FALSE; | |
5100 int lastone; | |
1872 | 5101 int len, copy_len, needed_len; |
7 | 5102 long nmatch_tl = 0; /* nr of lines matched below lnum */ |
5103 int do_again; /* do it again after joining lines */ | |
15 | 5104 int skip_match = FALSE; |
1499 | 5105 linenr_T sub_firstlnum; /* nr of first sub line */ |
7 | 5106 |
5107 /* | |
5108 * The new text is build up step by step, to avoid too much | |
5109 * copying. There are these pieces: | |
1581 | 5110 * sub_firstline The old text, unmodified. |
7 | 5111 * copycol Column in the old text where we started |
5112 * looking for a match; from here old text still | |
5113 * needs to be copied to the new text. | |
5114 * matchcol Column number of the old text where to look | |
5115 * for the next match. It's just after the | |
5116 * previous match or one further. | |
5117 * prev_matchcol Column just after the previous match (if any). | |
5118 * Mostly equal to matchcol, except for the first | |
5119 * match and after skipping an empty match. | |
5120 * regmatch.*pos Where the pattern matched in the old text. | |
5121 * new_start The new text, all that has been produced so | |
5122 * far. | |
5123 * new_end The new text, where to append new text. | |
5124 * | |
1499 | 5125 * lnum The line number where we found the start of |
5126 * the match. Can be below the line we searched | |
5127 * when there is a \n before a \zs in the | |
5128 * pattern. | |
7 | 5129 * sub_firstlnum The line number in the buffer where to look |
5130 * for a match. Can be different from "lnum" | |
5131 * when the pattern or substitute string contains | |
5132 * line breaks. | |
5133 * | |
5134 * Special situations: | |
5135 * - When the substitute string contains a line break, the part up | |
5136 * to the line break is inserted in the text, but the copy of | |
5137 * the original line is kept. "sub_firstlnum" is adjusted for | |
5138 * the inserted lines. | |
5139 * - When the matched pattern contains a line break, the old line | |
5140 * is taken from the line at the end of the pattern. The lines | |
5141 * in the match are deleted later, "sub_firstlnum" is adjusted | |
5142 * accordingly. | |
5143 * | |
5144 * The new text is built up in new_start[]. It has some extra | |
5145 * room to avoid using alloc()/free() too often. new_start_len is | |
1389 | 5146 * the length of the allocated memory at new_start. |
7 | 5147 * |
5148 * Make a copy of the old line, so it won't be taken away when | |
5149 * updating the screen or handling a multi-line match. The "old_" | |
5150 * pointers point into this copy. | |
5151 */ | |
1499 | 5152 sub_firstlnum = lnum; |
7 | 5153 copycol = 0; |
5154 matchcol = 0; | |
5155 | |
5156 /* At first match, remember current cursor position. */ | |
5157 if (!got_match) | |
5158 { | |
5159 setpcmark(); | |
5160 got_match = TRUE; | |
5161 } | |
5162 | |
5163 /* | |
5164 * Loop until nothing more to replace in this line. | |
5165 * 1. Handle match with empty string. | |
5166 * 2. If do_ask is set, ask for confirmation. | |
5167 * 3. substitute the string. | |
5168 * 4. if do_all is set, find next match | |
5169 * 5. break if there isn't another match in this line | |
5170 */ | |
5171 for (;;) | |
5172 { | |
1499 | 5173 /* Advance "lnum" to the line where the match starts. The |
5174 * match does not start in the first line when there is a line | |
5175 * break before \zs. */ | |
5176 if (regmatch.startpos[0].lnum > 0) | |
5177 { | |
5178 lnum += regmatch.startpos[0].lnum; | |
5179 sub_firstlnum += regmatch.startpos[0].lnum; | |
5180 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
|
5181 VIM_CLEAR(sub_firstline); |
1499 | 5182 } |
5183 | |
5184 if (sub_firstline == NULL) | |
5185 { | |
5186 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
5187 if (sub_firstline == NULL) | |
5188 { | |
5189 vim_free(new_start); | |
5190 goto outofmem; | |
5191 } | |
5192 } | |
5193 | |
7 | 5194 /* Save the line number of the last change for the final |
5195 * cursor position (just like Vi). */ | |
5196 curwin->w_cursor.lnum = lnum; | |
5197 do_again = FALSE; | |
5198 | |
5199 /* | |
5200 * 1. Match empty string does not count, except for first | |
5201 * match. This reproduces the strange vi behaviour. | |
5202 * This also catches endless loops. | |
5203 */ | |
5204 if (matchcol == prev_matchcol | |
5205 && regmatch.endpos[0].lnum == 0 | |
5206 && matchcol == regmatch.endpos[0].col) | |
5207 { | |
15 | 5208 if (sub_firstline[matchcol] == NUL) |
5209 /* We already were at the end of the line. Don't look | |
5210 * for a match in this line again. */ | |
5211 skip_match = TRUE; | |
5212 else | |
2837 | 5213 { |
5214 /* search for a match at next column */ | |
5215 #ifdef FEAT_MBYTE | |
5216 if (has_mbyte) | |
5217 matchcol += mb_ptr2len(sub_firstline + matchcol); | |
5218 else | |
5219 #endif | |
5220 ++matchcol; | |
5221 } | |
7 | 5222 goto skip; |
5223 } | |
5224 | |
5225 /* Normally we continue searching for a match just after the | |
5226 * previous match. */ | |
5227 matchcol = regmatch.endpos[0].col; | |
5228 prev_matchcol = matchcol; | |
5229 | |
5230 /* | |
170 | 5231 * 2. If do_count is set only increase the counter. |
5232 * If do_ask is set, ask for confirmation. | |
7 | 5233 */ |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5234 if (subflags.do_count) |
170 | 5235 { |
5236 /* For a multi-line match, put matchcol at the NUL at | |
5237 * the end of the line and set nmatch to one, so that | |
5238 * we continue looking for a match on the next line. | |
5239 * Avoids that ":s/\nB\@=//gc" get stuck. */ | |
5240 if (nmatch > 1) | |
5241 { | |
835 | 5242 matchcol = (colnr_T)STRLEN(sub_firstline); |
170 | 5243 nmatch = 1; |
1483 | 5244 skip_match = TRUE; |
170 | 5245 } |
5246 sub_nsubs++; | |
5247 did_sub = TRUE; | |
3736 | 5248 #ifdef FEAT_EVAL |
5249 /* Skip the substitution, unless an expression is used, | |
5250 * then it is evaluated in the sandbox. */ | |
5251 if (!(sub[0] == '\\' && sub[1] == '=')) | |
5252 #endif | |
5253 goto skip; | |
170 | 5254 } |
5255 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5256 if (subflags.do_ask) |
7 | 5257 { |
1874 | 5258 int typed = 0; |
1872 | 5259 |
7 | 5260 /* change State to CONFIRM, so that the mouse works |
5261 * properly */ | |
5262 save_State = State; | |
5263 State = CONFIRM; | |
5264 #ifdef FEAT_MOUSE | |
5265 setmouse(); /* disable mouse in xterm */ | |
5266 #endif | |
5267 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
|
5268 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
|
5269 do_check_cursorbind(); |
7 | 5270 |
5271 /* When 'cpoptions' contains "u" don't sync undo when | |
5272 * asking for confirmation. */ | |
5273 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
5274 ++no_u_sync; | |
5275 | |
5276 /* | |
5277 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. | |
5278 */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5279 while (subflags.do_ask) |
7 | 5280 { |
169 | 5281 if (exmode_active) |
5282 { | |
5283 char_u *resp; | |
5284 colnr_T sc, ec; | |
5285 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5286 print_line_no_prefix(lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5287 subflags.do_number, subflags.do_list); |
169 | 5288 |
5289 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); | |
5290 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
|
5291 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
|
5292 curwin->w_cursor.col = 0; |
169 | 5293 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
|
5294 if (subflags.do_number || curwin->w_p_nu) |
5396 | 5295 { |
5296 int numw = number_width(curwin) + 1; | |
5297 sc += numw; | |
5298 ec += numw; | |
5299 } | |
169 | 5300 msg_start(); |
170 | 5301 for (i = 0; i < (long)sc; ++i) |
169 | 5302 msg_putchar(' '); |
170 | 5303 for ( ; i <= (long)ec; ++i) |
169 | 5304 msg_putchar('^'); |
5305 | |
5306 resp = getexmodeline('?', NULL, 0); | |
5307 if (resp != NULL) | |
5308 { | |
1872 | 5309 typed = *resp; |
169 | 5310 vim_free(resp); |
5311 } | |
5312 } | |
5313 else | |
5314 { | |
4076 | 5315 char_u *orig_line = NULL; |
5316 int len_change = 0; | |
7 | 5317 #ifdef FEAT_FOLDING |
169 | 5318 int save_p_fen = curwin->w_p_fen; |
5319 | |
5320 curwin->w_p_fen = FALSE; | |
5321 #endif | |
5322 /* Invert the matched string. | |
5323 * Remove the inversion afterwards. */ | |
5324 temp = RedrawingDisabled; | |
5325 RedrawingDisabled = 0; | |
5326 | |
4076 | 5327 if (new_start != NULL) |
5328 { | |
5329 /* There already was a substitution, we would | |
5330 * like to show this to the user. We cannot | |
5331 * really update the line, it would change | |
5332 * what matches. Temporarily replace the line | |
5333 * and change it back afterwards. */ | |
5334 orig_line = vim_strsave(ml_get(lnum)); | |
5335 if (orig_line != NULL) | |
5336 { | |
5337 char_u *new_line = concat_str(new_start, | |
5338 sub_firstline + copycol); | |
5339 | |
5340 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
|
5341 VIM_CLEAR(orig_line); |
4076 | 5342 else |
5343 { | |
5344 /* Position the cursor relative to the | |
5345 * end of the line, the previous | |
5346 * substitute may have inserted or | |
5347 * deleted characters before the | |
5348 * cursor. */ | |
4086 | 5349 len_change = (int)STRLEN(new_line) |
5350 - (int)STRLEN(orig_line); | |
4076 | 5351 curwin->w_cursor.col += len_change; |
5352 ml_replace(lnum, new_line, FALSE); | |
5353 } | |
5354 } | |
5355 } | |
5356 | |
1499 | 5357 search_match_lines = regmatch.endpos[0].lnum |
5358 - regmatch.startpos[0].lnum; | |
4076 | 5359 search_match_endcol = regmatch.endpos[0].col |
5360 + len_change; | |
169 | 5361 highlight_match = TRUE; |
5362 | |
5363 update_topline(); | |
5364 validate_cursor(); | |
748 | 5365 update_screen(SOME_VALID); |
169 | 5366 highlight_match = FALSE; |
748 | 5367 redraw_later(SOME_VALID); |
7 | 5368 |
5369 #ifdef FEAT_FOLDING | |
169 | 5370 curwin->w_p_fen = save_p_fen; |
5371 #endif | |
5372 if (msg_row == Rows - 1) | |
5373 msg_didout = FALSE; /* avoid a scroll-up */ | |
5374 msg_starthere(); | |
5375 i = msg_scroll; | |
5376 msg_scroll = 0; /* truncate msg when | |
5377 needed */ | |
5378 msg_no_more = TRUE; | |
5379 /* write message same highlighting as for | |
5380 * wait_return */ | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11144
diff
changeset
|
5381 smsg_attr(HL_ATTR(HLF_R), |
169 | 5382 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); |
5383 msg_no_more = FALSE; | |
5384 msg_scroll = i; | |
5385 showruler(TRUE); | |
5386 windgoto(msg_row, msg_col); | |
5387 RedrawingDisabled = temp; | |
7 | 5388 |
5389 #ifdef USE_ON_FLY_SCROLL | |
169 | 5390 dont_scroll = FALSE; /* allow scrolling here */ |
5391 #endif | |
5392 ++no_mapping; /* don't map this key */ | |
5393 ++allow_keys; /* allow special keys */ | |
1872 | 5394 typed = plain_vgetc(); |
169 | 5395 --allow_keys; |
5396 --no_mapping; | |
5397 | |
5398 /* clear the question */ | |
5399 msg_didout = FALSE; /* don't scroll up */ | |
5400 msg_col = 0; | |
5401 gotocmdline(TRUE); | |
4076 | 5402 |
5403 /* restore the line */ | |
5404 if (orig_line != NULL) | |
5405 ml_replace(lnum, orig_line, FALSE); | |
169 | 5406 } |
5407 | |
7 | 5408 need_wait_return = FALSE; /* no hit-return prompt */ |
1872 | 5409 if (typed == 'q' || typed == ESC || typed == Ctrl_C |
7 | 5410 #ifdef UNIX |
1872 | 5411 || typed == intr_char |
7 | 5412 #endif |
5413 ) | |
5414 { | |
5415 got_quit = TRUE; | |
5416 break; | |
5417 } | |
1872 | 5418 if (typed == 'n') |
7 | 5419 break; |
1872 | 5420 if (typed == 'y') |
7 | 5421 break; |
1872 | 5422 if (typed == 'l') |
7 | 5423 { |
5424 /* last: replace and then stop */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5425 subflags.do_all = FALSE; |
7 | 5426 line2 = lnum; |
5427 break; | |
5428 } | |
1872 | 5429 if (typed == 'a') |
7 | 5430 { |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5431 subflags.do_ask = FALSE; |
7 | 5432 break; |
5433 } | |
5434 #ifdef FEAT_INS_EXPAND | |
1872 | 5435 if (typed == Ctrl_E) |
7 | 5436 scrollup_clamp(); |
1872 | 5437 else if (typed == Ctrl_Y) |
7 | 5438 scrolldown_clamp(); |
5439 #endif | |
5440 } | |
5441 State = save_State; | |
5442 #ifdef FEAT_MOUSE | |
5443 setmouse(); | |
5444 #endif | |
5445 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
5446 --no_u_sync; | |
5447 | |
1872 | 5448 if (typed == 'n') |
7 | 5449 { |
5450 /* For a multi-line match, put matchcol at the NUL at | |
5451 * the end of the line and set nmatch to one, so that | |
5452 * we continue looking for a match on the next line. | |
1091 | 5453 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc" |
5454 * get stuck when pressing 'n'. */ | |
7 | 5455 if (nmatch > 1) |
5456 { | |
835 | 5457 matchcol = (colnr_T)STRLEN(sub_firstline); |
1091 | 5458 skip_match = TRUE; |
7 | 5459 } |
5460 goto skip; | |
5461 } | |
5462 if (got_quit) | |
4099 | 5463 goto skip; |
7 | 5464 } |
5465 | |
5466 /* Move the cursor to the start of the match, so that we can | |
5467 * use "\=col("."). */ | |
5468 curwin->w_cursor.col = regmatch.startpos[0].col; | |
5469 | |
5470 /* | |
5471 * 3. substitute the string. | |
5472 */ | |
3736 | 5473 #ifdef FEAT_EVAL |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5474 if (subflags.do_count) |
3736 | 5475 { |
3786 | 5476 /* prevent accidentally changing the buffer by a function */ |
3736 | 5477 save_ma = curbuf->b_p_ma; |
5478 curbuf->b_p_ma = FALSE; | |
5479 sandbox++; | |
5480 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5481 /* Save flags for recursion. They can change for e.g. |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5482 * :s/^/\=execute("s#^##gn") */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5483 subflags_save = subflags; |
3736 | 5484 #endif |
7 | 5485 /* get length of substitution part */ |
1499 | 5486 sublen = vim_regsub_multi(®match, |
5487 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 5488 sub, sub_firstline, FALSE, p_magic, TRUE); |
3736 | 5489 #ifdef FEAT_EVAL |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5490 /* Don't keep flags set by a recursive call. */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5491 subflags = subflags_save; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5492 if (subflags.do_count) |
3736 | 5493 { |
5494 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
|
5495 if (sandbox > 0) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5496 sandbox--; |
3736 | 5497 goto skip; |
5498 } | |
5499 #endif | |
7 | 5500 |
533 | 5501 /* When the match included the "$" of the last line it may |
819 | 5502 * go beyond the last line of the buffer. */ |
533 | 5503 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
5504 { | |
5505 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; | |
5506 skip_match = TRUE; | |
5507 } | |
5508 | |
7 | 5509 /* Need room for: |
5510 * - result so far in new_start (not for first sub in line) | |
5511 * - original text up to match | |
5512 * - length of substituted part | |
5513 * - original text after match | |
5514 */ | |
5515 if (nmatch == 1) | |
5516 p1 = sub_firstline; | |
5517 else | |
5518 { | |
5519 p1 = ml_get(sub_firstlnum + nmatch - 1); | |
5520 nmatch_tl += nmatch - 1; | |
5521 } | |
1872 | 5522 copy_len = regmatch.startpos[0].col - copycol; |
5523 needed_len = copy_len + ((unsigned)STRLEN(p1) | |
5524 - regmatch.endpos[0].col) + sublen + 1; | |
7 | 5525 if (new_start == NULL) |
5526 { | |
5527 /* | |
5528 * Get some space for a temporary buffer to do the | |
5529 * substitution into (and some extra space to avoid | |
5530 * too many calls to alloc()/free()). | |
5531 */ | |
5532 new_start_len = needed_len + 50; | |
5533 if ((new_start = alloc_check(new_start_len)) == NULL) | |
5534 goto outofmem; | |
5535 *new_start = NUL; | |
5536 new_end = new_start; | |
5537 } | |
5538 else | |
5539 { | |
5540 /* | |
5541 * Check if the temporary buffer is long enough to do the | |
5542 * substitution into. If not, make it larger (with a bit | |
5543 * extra to avoid too many calls to alloc()/free()). | |
5544 */ | |
5545 len = (unsigned)STRLEN(new_start); | |
5546 needed_len += len; | |
1872 | 5547 if (needed_len > (int)new_start_len) |
7 | 5548 { |
5549 new_start_len = needed_len + 50; | |
5550 if ((p1 = alloc_check(new_start_len)) == NULL) | |
5551 { | |
5552 vim_free(new_start); | |
5553 goto outofmem; | |
5554 } | |
5555 mch_memmove(p1, new_start, (size_t)(len + 1)); | |
5556 vim_free(new_start); | |
5557 new_start = p1; | |
5558 } | |
5559 new_end = new_start + len; | |
5560 } | |
5561 | |
5562 /* | |
5563 * copy the text up to the part that matched | |
5564 */ | |
1872 | 5565 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); |
5566 new_end += copy_len; | |
7 | 5567 |
1499 | 5568 (void)vim_regsub_multi(®match, |
5569 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 5570 sub, new_end, TRUE, p_magic, TRUE); |
5571 sub_nsubs++; | |
5572 did_sub = TRUE; | |
5573 | |
5574 /* Move the cursor to the start of the line, to avoid that it | |
5575 * is beyond the end of the line after the substitution. */ | |
5576 curwin->w_cursor.col = 0; | |
5577 | |
5578 /* For a multi-line match, make a copy of the last matched | |
5579 * line and continue in that one. */ | |
5580 if (nmatch > 1) | |
5581 { | |
5582 sub_firstlnum += nmatch - 1; | |
5583 vim_free(sub_firstline); | |
5584 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
5585 /* When going beyond the last line, stop substituting. */ | |
5586 if (sub_firstlnum <= line2) | |
5587 do_again = TRUE; | |
5588 else | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5589 subflags.do_all = FALSE; |
7 | 5590 } |
5591 | |
5592 /* Remember next character to be copied. */ | |
5593 copycol = regmatch.endpos[0].col; | |
5594 | |
819 | 5595 if (skip_match) |
5596 { | |
5597 /* Already hit end of the buffer, sub_firstlnum is one | |
5598 * less than what it ought to be. */ | |
5599 vim_free(sub_firstline); | |
5600 sub_firstline = vim_strsave((char_u *)""); | |
5601 copycol = 0; | |
5602 } | |
5603 | |
7 | 5604 /* |
5605 * Now the trick is to replace CTRL-M chars with a real line | |
5606 * break. This would make it impossible to insert a CTRL-M in | |
5607 * the text. The line break can be avoided by preceding the | |
5608 * CTRL-M with a backslash. To be able to insert a backslash, | |
5609 * they must be doubled in the string and are halved here. | |
5610 * That is Vi compatible. | |
5611 */ | |
5612 for (p1 = new_end; *p1; ++p1) | |
5613 { | |
5614 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */ | |
1624 | 5615 STRMOVE(p1, p1 + 1); |
7 | 5616 else if (*p1 == CAR) |
5617 { | |
5618 if (u_inssub(lnum) == OK) /* prepare for undo */ | |
5619 { | |
5620 *p1 = NUL; /* truncate up to the CR */ | |
5621 ml_append(lnum - 1, new_start, | |
5622 (colnr_T)(p1 - new_start + 1), FALSE); | |
5623 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
|
5624 if (subflags.do_ask) |
7 | 5625 appended_lines(lnum - 1, 1L); |
5626 else | |
5627 { | |
5628 if (first_line == 0) | |
5629 first_line = lnum; | |
5630 last_line = lnum + 1; | |
5631 } | |
5632 /* All line numbers increase. */ | |
5633 ++sub_firstlnum; | |
5634 ++lnum; | |
5635 ++line2; | |
5636 /* move the cursor to the new line, like Vi */ | |
5637 ++curwin->w_cursor.lnum; | |
1444 | 5638 /* copy the rest */ |
1624 | 5639 STRMOVE(new_start, p1 + 1); |
7 | 5640 p1 = new_start - 1; |
5641 } | |
5642 } | |
5643 #ifdef FEAT_MBYTE | |
5644 else if (has_mbyte) | |
474 | 5645 p1 += (*mb_ptr2len)(p1) - 1; |
7 | 5646 #endif |
5647 } | |
5648 | |
5649 /* | |
5650 * 4. If do_all is set, find next match. | |
5651 * Prevent endless loop with patterns that match empty | |
5652 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. | |
5653 * But ":s/\n/#/" is OK. | |
5654 */ | |
5655 skip: | |
5656 /* We already know that we did the last subst when we are at | |
5657 * the end of the line, except that a pattern like | |
1499 | 5658 * "bar\|\nfoo" may match at the NUL. "lnum" can be below |
5659 * "line2" when there is a \zs in the pattern after a line | |
5660 * break. */ | |
15 | 5661 lastone = (skip_match |
5662 || got_int | |
5663 || got_quit | |
1499 | 5664 || lnum > line2 |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5665 || !(subflags.do_all || do_again) |
15 | 5666 || (sub_firstline[matchcol] == NUL && nmatch <= 1 |
5667 && !re_multiline(regmatch.regprog))); | |
7 | 5668 nmatch = -1; |
5669 | |
5670 /* | |
5671 * Replace the line in the buffer when needed. This is | |
5672 * skipped when there are more matches. | |
5673 * The check for nmatch_tl is needed for when multi-line | |
5674 * matching must replace the lines before trying to do another | |
5675 * match, otherwise "\@<=" won't work. | |
1499 | 5676 * When the match starts below where we start searching also |
5677 * need to replace the line first (using \zs after \n). | |
7 | 5678 */ |
5679 if (lastone | |
5680 || nmatch_tl > 0 | |
5681 || (nmatch = vim_regexec_multi(®match, curwin, | |
1521 | 5682 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
|
5683 matchcol, NULL, NULL)) == 0 |
1499 | 5684 || regmatch.startpos[0].lnum > 0) |
7 | 5685 { |
5686 if (new_start != NULL) | |
5687 { | |
5688 /* | |
5689 * Copy the rest of the line, that didn't match. | |
5690 * "matchcol" has to be adjusted, we use the end of | |
5691 * the line as reference, because the substitute may | |
5692 * have changed the number of characters. Same for | |
5693 * "prev_matchcol". | |
5694 */ | |
5695 STRCAT(new_start, sub_firstline + copycol); | |
5696 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5697 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5698 - prev_matchcol; | |
5699 | |
5700 if (u_savesub(lnum) != OK) | |
5701 break; | |
5702 ml_replace(lnum, new_start, TRUE); | |
5703 | |
5704 if (nmatch_tl > 0) | |
5705 { | |
5706 /* | |
5707 * Matched lines have now been substituted and are | |
5708 * useless, delete them. The part after the match | |
5709 * has been appended to new_start, we don't need | |
5710 * it in the buffer. | |
5711 */ | |
5712 ++lnum; | |
5713 if (u_savedel(lnum, nmatch_tl) != OK) | |
5714 break; | |
5715 for (i = 0; i < nmatch_tl; ++i) | |
5716 ml_delete(lnum, (int)FALSE); | |
5717 mark_adjust(lnum, lnum + nmatch_tl - 1, | |
5718 (long)MAXLNUM, -nmatch_tl); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5719 if (subflags.do_ask) |
7 | 5720 deleted_lines(lnum, nmatch_tl); |
5721 --lnum; | |
5722 line2 -= nmatch_tl; /* nr of lines decreases */ | |
5723 nmatch_tl = 0; | |
5724 } | |
5725 | |
5726 /* When asking, undo is saved each time, must also set | |
5727 * changed flag each time. */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5728 if (subflags.do_ask) |
7 | 5729 changed_bytes(lnum, 0); |
5730 else | |
5731 { | |
5732 if (first_line == 0) | |
5733 first_line = lnum; | |
5734 last_line = lnum + 1; | |
5735 } | |
5736 | |
5737 sub_firstlnum = lnum; | |
5738 vim_free(sub_firstline); /* free the temp buffer */ | |
5739 sub_firstline = new_start; | |
5740 new_start = NULL; | |
5741 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5742 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5743 - prev_matchcol; | |
5744 copycol = 0; | |
5745 } | |
5746 if (nmatch == -1 && !lastone) | |
5747 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
|
5748 sub_firstlnum, matchcol, NULL, NULL); |
7 | 5749 |
5750 /* | |
5751 * 5. break if there isn't another match in this line | |
5752 */ | |
5753 if (nmatch <= 0) | |
1499 | 5754 { |
5755 /* If the match found didn't start where we were | |
5756 * searching, do the next search in the line where we | |
5757 * found the match. */ | |
5758 if (nmatch == -1) | |
5759 lnum -= regmatch.startpos[0].lnum; | |
7 | 5760 break; |
1499 | 5761 } |
7 | 5762 } |
5763 | |
5764 line_breakcheck(); | |
5765 } | |
5766 | |
5767 if (did_sub) | |
5768 ++sub_nlines; | |
1720 | 5769 vim_free(new_start); /* for when substitute was cancelled */ |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13174
diff
changeset
|
5770 VIM_CLEAR(sub_firstline); /* free the copy of the original line */ |
7 | 5771 } |
5772 | |
5773 line_breakcheck(); | |
5774 } | |
5775 | |
5776 if (first_line != 0) | |
5777 { | |
5778 /* Need to subtract the number of added lines from "last_line" to get | |
5779 * the line number before the change (same as adding the number of | |
5780 * deleted lines). */ | |
5781 i = curbuf->b_ml.ml_line_count - old_line_count; | |
5782 changed_lines(first_line, 0, last_line - i, i); | |
5783 } | |
5784 | |
5785 outofmem: | |
5786 vim_free(sub_firstline); /* may have to free allocated copy of the line */ | |
170 | 5787 |
5788 /* ":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
|
5789 if (subflags.do_count) |
170 | 5790 curwin->w_cursor = old_cursor; |
5791 | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
5792 if (sub_nsubs > start_nsubs) |
7 | 5793 { |
5794 /* Set the '[ and '] marks. */ | |
5795 curbuf->b_op_start.lnum = eap->line1; | |
5796 curbuf->b_op_end.lnum = line2; | |
5797 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
5798 | |
5799 if (!global_busy) | |
5800 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5801 /* when interactive leave cursor on the match */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5802 if (!subflags.do_ask) |
3394 | 5803 { |
5804 if (endcolumn) | |
5805 coladvance((colnr_T)MAXCOL); | |
5806 else | |
5807 beginline(BL_WHITE | BL_FIX); | |
5808 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5809 if (!do_sub_msg(subflags.do_count) && subflags.do_ask) |
7 | 5810 MSG(""); |
5811 } | |
5812 else | |
5813 global_need_beginline = TRUE; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5814 if (subflags.do_print) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5815 print_line(curwin->w_cursor.lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5816 subflags.do_number, subflags.do_list); |
7 | 5817 } |
5818 else if (!global_busy) | |
5819 { | |
5820 if (got_int) /* interrupted */ | |
5821 EMSG(_(e_interr)); | |
5822 else if (got_match) /* did find something but nothing substituted */ | |
5823 MSG(""); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5824 else if (subflags.do_error) /* nothing found */ |
7 | 5825 EMSG2(_(e_patnotf2), get_search_pat()); |
5826 } | |
5827 | |
4035 | 5828 #ifdef FEAT_FOLDING |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5829 if (subflags.do_ask && hasAnyFolding(curwin)) |
4035 | 5830 /* Cursor position may require updating */ |
5831 changed_window_setting(); | |
5832 #endif | |
5833 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
5834 vim_regfree(regmatch.regprog); |
6789 | 5835 |
5836 /* 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
|
5837 subflags.do_all = save_do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5838 subflags.do_ask = save_do_ask; |
7 | 5839 } |
5840 | |
5841 /* | |
5842 * Give message for number of substitutions. | |
5843 * Can also be used after a ":global" command. | |
5844 * Return TRUE if a message was given. | |
5845 */ | |
484 | 5846 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5847 do_sub_msg( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5848 int count_only) /* used 'n' flag for ":s" */ |
7 | 5849 { |
5850 /* | |
5851 * Only report substitutions when: | |
5852 * - more than 'report' substitutions | |
5853 * - command was typed by user, or number of changed lines > 'report' | |
5854 * - giving messages is not disabled by 'lazyredraw' | |
5855 */ | |
170 | 5856 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
5857 || count_only) | |
7 | 5858 && messaging()) |
5859 { | |
5860 if (got_int) | |
5861 STRCPY(msg_buf, _("(Interrupted) ")); | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5862 else |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5863 *msg_buf = NUL; |
7 | 5864 if (sub_nsubs == 1) |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5865 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5866 "%s", count_only ? _("1 match") : _("1 substitution")); |
7 | 5867 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5868 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
170 | 5869 count_only ? _("%ld matches") : _("%ld substitutions"), |
7 | 5870 sub_nsubs); |
5871 if (sub_nlines == 1) | |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5872 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5873 "%s", _(" on 1 line")); |
7 | 5874 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5875 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5876 _(" on %ld lines"), (long)sub_nlines); |
7 | 5877 if (msg(msg_buf)) |
5878 /* save message to display it after redraw */ | |
680 | 5879 set_keep_msg(msg_buf, 0); |
7 | 5880 return TRUE; |
5881 } | |
5882 if (got_int) | |
5883 { | |
5884 EMSG(_(e_interr)); | |
5885 return TRUE; | |
5886 } | |
5887 return FALSE; | |
5888 } | |
5889 | |
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
|
5890 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
|
5891 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
|
5892 { |
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
|
5893 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
|
5894 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
|
5895 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
|
5896 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
|
5897 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
|
5898 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
|
5899 } |
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
|
5900 |
7 | 5901 /* |
5902 * Execute a global command of the form: | |
5903 * | |
5904 * g/pattern/X : execute X on all lines where pattern matches | |
5905 * v/pattern/X : execute X on all lines where pattern does not match | |
5906 * | |
5907 * where 'X' is an EX command | |
5908 * | |
5909 * The command character (as well as the trailing slash) is optional, and | |
5910 * is assumed to be 'p' if missing. | |
5911 * | |
5912 * This is implemented in two passes: first we scan the file for the pattern and | |
3786 | 5913 * set a mark for each line that (not) matches. Secondly we execute the command |
7 | 5914 * for each line that has a mark. This is required because after deleting |
5915 * lines we do not know where to search for the next match. | |
5916 */ | |
5917 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5918 ex_global(exarg_T *eap) |
7 | 5919 { |
5920 linenr_T lnum; /* line number according to old situation */ | |
170 | 5921 int ndone = 0; |
7 | 5922 int type; /* first char of cmd: 'v' or 'g' */ |
5923 char_u *cmd; /* command argument */ | |
5924 | |
5925 char_u delim; /* delimiter, normally '/' */ | |
5926 char_u *pat; | |
5927 regmmatch_T regmatch; | |
5928 int match; | |
5929 int which_pat; | |
5930 | |
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
|
5931 /* When nesting the command works on one line. This allows for |
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
|
5932 * ":g/found/v/notfound/command". */ |
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
|
5933 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
|
5934 || 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
|
5935 { |
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
|
5936 /* will increment global_busy to break out of the loop */ |
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
|
5937 EMSG(_("E147: Cannot do :global recursive with a range")); |
7 | 5938 return; |
5939 } | |
5940 | |
5941 if (eap->forceit) /* ":global!" is like ":vglobal" */ | |
5942 type = 'v'; | |
5943 else | |
5944 type = *eap->cmd; | |
5945 cmd = eap->arg; | |
5946 which_pat = RE_LAST; /* default: use last used regexp */ | |
5947 | |
5948 /* | |
5949 * undocumented vi feature: | |
5950 * "\/" and "\?": use previous search pattern. | |
5951 * "\&": use previous substitute pattern. | |
5952 */ | |
5953 if (*cmd == '\\') | |
5954 { | |
5955 ++cmd; | |
5956 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
5957 { | |
5958 EMSG(_(e_backslash)); | |
5959 return; | |
5960 } | |
5961 if (*cmd == '&') | |
5962 which_pat = RE_SUBST; /* use previous substitute pattern */ | |
5963 else | |
5964 which_pat = RE_SEARCH; /* use previous search pattern */ | |
5965 ++cmd; | |
5966 pat = (char_u *)""; | |
5967 } | |
5968 else if (*cmd == NUL) | |
5969 { | |
5970 EMSG(_("E148: Regular expression missing from global")); | |
5971 return; | |
5972 } | |
5973 else | |
5974 { | |
5975 delim = *cmd; /* get the delimiter */ | |
5976 if (delim) | |
5977 ++cmd; /* skip delimiter if there is one */ | |
5978 pat = cmd; /* remember start of pattern */ | |
5979 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg); | |
5980 if (cmd[0] == delim) /* end delimiter found */ | |
5981 *cmd++ = NUL; /* replace it with a NUL */ | |
5982 } | |
5983 | |
5984 #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */ | |
5985 if (p_altkeymap && curwin->w_p_rl) | |
5986 lrFswap(pat,0); | |
5987 #endif | |
5988 | |
5989 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) | |
5990 { | |
5991 EMSG(_(e_invcmd)); | |
5992 return; | |
5993 } | |
5994 | |
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
|
5995 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
|
5996 { |
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
|
5997 lnum = curwin->w_cursor.lnum; |
1521 | 5998 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
|
5999 (colnr_T)0, NULL, NULL); |
7 | 6000 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
|
6001 global_exe_one(cmd, lnum); |
7 | 6002 } |
6003 else | |
6116 | 6004 { |
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
|
6005 /* |
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
|
6006 * 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
|
6007 */ |
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
|
6008 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
|
6009 { |
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
|
6010 /* a match on this 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
|
6011 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
|
6012 (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
|
6013 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
|
6014 { |
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
|
6015 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
|
6016 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
|
6017 } |
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
|
6018 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
|
6019 } |
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
|
6020 |
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
|
6021 /* |
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
|
6022 * 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
|
6023 */ |
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
|
6024 if (got_int) |
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
|
6025 MSG(_(e_interr)); |
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
|
6026 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
|
6027 { |
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
|
6028 if (type == 'v') |
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
|
6029 smsg((char_u *)_("Pattern found in every line: %s"), pat); |
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
|
6030 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
|
6031 smsg((char_u *)_("Pattern not found: %s"), pat); |
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
|
6032 } |
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
|
6033 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
|
6034 { |
6116 | 6035 #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
|
6036 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
|
6037 #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
|
6038 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
|
6039 #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
|
6040 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
|
6041 #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
|
6042 } |
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
|
6043 |
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
|
6044 ml_clearmarked(); /* clear rest of the marks */ |
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
|
6045 } |
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
|
6046 |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
6047 vim_regfree(regmatch.regprog); |
7 | 6048 } |
6049 | |
6050 /* | |
6051 * Execute "cmd" on lines marked with ml_setmarked(). | |
6052 */ | |
6053 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6054 global_exe(char_u *cmd) |
7 | 6055 { |
2819 | 6056 linenr_T old_lcount; /* b_ml.ml_line_count before the command */ |
6057 buf_T *old_buf = curbuf; /* remember what buffer we started in */ | |
6058 linenr_T lnum; /* line number according to old situation */ | |
7 | 6059 |
6060 /* | |
6061 * Set current position only once for a global command. | |
6062 * If global_busy is set, setpcmark() will not do anything. | |
6063 * If there is an error, global_busy will be incremented. | |
6064 */ | |
6065 setpcmark(); | |
6066 | |
6067 /* When the command writes a message, don't overwrite the command. */ | |
6068 msg_didout = TRUE; | |
6069 | |
2127
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
6070 sub_nsubs = 0; |
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
6071 sub_nlines = 0; |
7 | 6072 global_need_beginline = FALSE; |
6073 global_busy = 1; | |
6074 old_lcount = curbuf->b_ml.ml_line_count; | |
6075 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) | |
6076 { | |
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
|
6077 global_exe_one(cmd, lnum); |
7 | 6078 ui_breakcheck(); |
6079 } | |
6080 | |
6081 global_busy = 0; | |
6082 if (global_need_beginline) | |
6083 beginline(BL_WHITE | BL_FIX); | |
6084 else | |
6085 check_cursor(); /* cursor may be beyond the end of the line */ | |
6086 | |
39 | 6087 /* the cursor may not have moved in the text but a change in a previous |
6088 * line may move it on the screen */ | |
6089 changed_line_abv_curs(); | |
6090 | |
7 | 6091 /* If it looks like no message was written, allow overwriting the |
6092 * command with the report for number of changes. */ | |
6093 if (msg_col == 0 && msg_scrolled == 0) | |
6094 msg_didout = FALSE; | |
6095 | |
1227 | 6096 /* If substitutes done, report number of substitutes, otherwise report |
2819 | 6097 * number of extra or deleted lines. |
6098 * Don't report extra or deleted lines in the edge case where the buffer | |
6099 * we are in after execution is different from the buffer we started in. */ | |
6100 if (!do_sub_msg(FALSE) && curbuf == old_buf) | |
7 | 6101 msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
6102 } | |
6103 | |
6104 #ifdef FEAT_VIMINFO | |
6105 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6106 read_viminfo_sub_string(vir_T *virp, int force) |
7 | 6107 { |
2690 | 6108 if (force) |
7 | 6109 vim_free(old_sub); |
6110 if (force || old_sub == NULL) | |
6111 old_sub = viminfo_readstring(virp, 1, TRUE); | |
6112 return viminfo_readline(virp); | |
6113 } | |
6114 | |
6115 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6116 write_viminfo_sub_string(FILE *fp) |
7 | 6117 { |
6118 if (get_viminfo_parameter('/') != 0 && old_sub != NULL) | |
6119 { | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
6120 fputs(_("\n# Last Substitute String:\n$"), fp); |
7 | 6121 viminfo_writestring(fp, old_sub); |
6122 } | |
6123 } | |
6124 #endif /* FEAT_VIMINFO */ | |
6125 | |
359 | 6126 #if defined(EXITFREE) || defined(PROTO) |
6127 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6128 free_old_sub(void) |
359 | 6129 { |
6130 vim_free(old_sub); | |
6131 } | |
6132 #endif | |
6133 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12297
diff
changeset
|
6134 #if defined(FEAT_QUICKFIX) || defined(PROTO) |
7 | 6135 /* |
6136 * Set up for a tagpreview. | |
735 | 6137 * Return TRUE when it was created. |
7 | 6138 */ |
735 | 6139 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6140 prepare_tagpreview( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6141 int undo_sync) /* sync undo when leaving the window */ |
7 | 6142 { |
6143 win_T *wp; | |
6144 | |
6145 # ifdef FEAT_GUI | |
6146 need_mouse_correct = TRUE; | |
6147 # endif | |
6148 | |
6149 /* | |
6150 * If there is already a preview window open, use that one. | |
6151 */ | |
6152 if (!curwin->w_p_pvw) | |
6153 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
6154 FOR_ALL_WINDOWS(wp) |
7 | 6155 if (wp->w_p_pvw) |
6156 break; | |
6157 if (wp != NULL) | |
816 | 6158 win_enter(wp, undo_sync); |
7 | 6159 else |
6160 { | |
6161 /* | |
6162 * There is no preview window open yet. Create one. | |
6163 */ | |
6164 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) | |
6165 == FAIL) | |
735 | 6166 return FALSE; |
7 | 6167 curwin->w_p_pvw = TRUE; |
6168 curwin->w_p_wfh = TRUE; | |
2583 | 6169 RESET_BINDING(curwin); /* don't take over 'scrollbind' |
6170 and 'cursorbind' */ | |
7 | 6171 # ifdef FEAT_DIFF |
6172 curwin->w_p_diff = FALSE; /* no 'diff' */ | |
6173 # endif | |
6174 # ifdef FEAT_FOLDING | |
6175 curwin->w_p_fdc = 0; /* no 'foldcolumn' */ | |
6176 # endif | |
735 | 6177 return TRUE; |
7 | 6178 } |
6179 } | |
735 | 6180 return FALSE; |
7 | 6181 } |
6182 | |
6183 #endif | |
6184 | |
6185 | |
6186 /* | |
6187 * ":help": open a read-only window on a help file | |
6188 */ | |
6189 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6190 ex_help(exarg_T *eap) |
7 | 6191 { |
6192 char_u *arg; | |
6193 char_u *tag; | |
6194 FILE *helpfd; /* file descriptor of help file */ | |
6195 int n; | |
6196 int i; | |
6197 win_T *wp; | |
6198 int num_matches; | |
6199 char_u **matches; | |
6200 char_u *p; | |
6201 int empty_fnum = 0; | |
6202 int alt_fnum = 0; | |
6203 buf_T *buf; | |
6204 #ifdef FEAT_MULTI_LANG | |
6205 int len; | |
9 | 6206 char_u *lang; |
7 | 6207 #endif |
3112 | 6208 #ifdef FEAT_FOLDING |
6209 int old_KeyTyped = KeyTyped; | |
6210 #endif | |
7 | 6211 |
6212 if (eap != NULL) | |
6213 { | |
6214 /* | |
6215 * A ":help" command ends at the first LF, or at a '|' that is | |
6216 * followed by some text. Set nextcmd to the following command. | |
6217 */ | |
6218 for (arg = eap->arg; *arg; ++arg) | |
6219 { | |
6220 if (*arg == '\n' || *arg == '\r' | |
6221 || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) | |
6222 { | |
6223 *arg++ = NUL; | |
6224 eap->nextcmd = arg; | |
6225 break; | |
6226 } | |
6227 } | |
6228 arg = eap->arg; | |
6229 | |
3446 | 6230 if (eap->forceit && *arg == NUL && !curbuf->b_help) |
7 | 6231 { |
6232 EMSG(_("E478: Don't panic!")); | |
6233 return; | |
6234 } | |
6235 | |
6236 if (eap->skip) /* not executing commands */ | |
6237 return; | |
6238 } | |
6239 else | |
6240 arg = (char_u *)""; | |
6241 | |
6242 /* remove trailing blanks */ | |
6243 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
|
6244 while (p > arg && VIM_ISWHITE(*p) && p[-1] != '\\') |
7 | 6245 *p-- = NUL; |
6246 | |
6247 #ifdef FEAT_MULTI_LANG | |
6248 /* Check for a specified language */ | |
9 | 6249 lang = check_help_lang(arg); |
7 | 6250 #endif |
6251 | |
6252 /* When no argument given go to the index. */ | |
6253 if (*arg == NUL) | |
6254 arg = (char_u *)"help.txt"; | |
6255 | |
6256 /* | |
6257 * Check if there is a match for the argument. | |
6258 */ | |
6259 n = find_help_tags(arg, &num_matches, &matches, | |
6260 eap != NULL && eap->forceit); | |
6261 | |
6262 i = 0; | |
6263 #ifdef FEAT_MULTI_LANG | |
6264 if (n != FAIL && lang != NULL) | |
6265 /* Find first item with the requested language. */ | |
6266 for (i = 0; i < num_matches; ++i) | |
6267 { | |
835 | 6268 len = (int)STRLEN(matches[i]); |
7 | 6269 if (len > 3 && matches[i][len - 3] == '@' |
6270 && STRICMP(matches[i] + len - 2, lang) == 0) | |
6271 break; | |
6272 } | |
6273 #endif | |
6274 if (i >= num_matches || n == FAIL) | |
6275 { | |
6276 #ifdef FEAT_MULTI_LANG | |
6277 if (lang != NULL) | |
6278 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg); | |
6279 else | |
6280 #endif | |
6281 EMSG2(_("E149: Sorry, no help for %s"), arg); | |
6282 if (n != FAIL) | |
6283 FreeWild(num_matches, matches); | |
6284 return; | |
6285 } | |
6286 | |
6287 /* The first match (in the requested language) is the best match. */ | |
6288 tag = vim_strsave(matches[i]); | |
6289 FreeWild(num_matches, matches); | |
6290 | |
6291 #ifdef FEAT_GUI | |
6292 need_mouse_correct = TRUE; | |
6293 #endif | |
6294 | |
6295 /* | |
6296 * Re-use an existing help window or open a new one. | |
684 | 6297 * Always open a new one for ":tab help". |
7 | 6298 */ |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12297
diff
changeset
|
6299 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
|
6300 { |
684 | 6301 if (cmdmod.tab != 0) |
6302 wp = NULL; | |
6303 else | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
6304 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
|
6305 if (bt_help(wp->w_buffer)) |
684 | 6306 break; |
7 | 6307 if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
6308 win_enter(wp, TRUE); | |
6309 else | |
6310 { | |
6311 /* | |
6312 * There is no help window yet. | |
6313 * Try to open the file specified by the "helpfile" option. | |
6314 */ | |
6315 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL) | |
6316 { | |
274 | 6317 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf); |
7 | 6318 goto erret; |
6319 } | |
6320 fclose(helpfd); | |
6321 | |
6322 /* Split off help window; put it at far top if no position | |
684 | 6323 * specified, the current window is vertically split and |
6324 * narrow. */ | |
7 | 6325 n = WSP_HELP; |
6326 if (cmdmod.split == 0 && curwin->w_width != Columns | |
684 | 6327 && curwin->w_width < 80) |
7 | 6328 n |= WSP_TOP; |
6329 if (win_split(0, n) == FAIL) | |
684 | 6330 goto erret; |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12297
diff
changeset
|
6331 |
7 | 6332 if (curwin->w_height < p_hh) |
6333 win_setheight((int)p_hh); | |
6334 | |
6335 /* | |
6336 * Open help file (do_ecmd() will set b_help flag, readfile() will | |
6337 * set b_p_ro flag). | |
6338 * Set the alternate file to the previously edited file. | |
6339 */ | |
6340 alt_fnum = curbuf->b_fnum; | |
6341 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL, | |
1743 | 6342 ECMD_HIDE + ECMD_SET_HELP, |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12297
diff
changeset
|
6343 NULL); /* buffer is still open, don't store info */ |
22 | 6344 if (!cmdmod.keepalt) |
6345 curwin->w_alt_fnum = alt_fnum; | |
7 | 6346 empty_fnum = curbuf->b_fnum; |
6347 } | |
6348 } | |
6349 | |
6350 if (!p_im) | |
6351 restart_edit = 0; /* don't want insert mode in help file */ | |
6352 | |
3112 | 6353 #ifdef FEAT_FOLDING |
6354 /* Restore KeyTyped, setting 'filetype=help' may reset it. | |
6355 * It is needed for do_tag top open folds under the cursor. */ | |
6356 KeyTyped = old_KeyTyped; | |
6357 #endif | |
6358 | |
7 | 6359 if (tag != NULL) |
6360 do_tag(tag, DT_HELP, 1, FALSE, TRUE); | |
6361 | |
819 | 6362 /* Delete the empty buffer if we're not using it. Careful: autocommands |
6363 * may have jumped to another window, check that the buffer is not in a | |
6364 * window. */ | |
7 | 6365 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum) |
6366 { | |
6367 buf = buflist_findnr(empty_fnum); | |
819 | 6368 if (buf != NULL && buf->b_nwindows == 0) |
7 | 6369 wipe_buffer(buf, TRUE); |
6370 } | |
6371 | |
6372 /* keep the previous alternate file */ | |
22 | 6373 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt) |
7 | 6374 curwin->w_alt_fnum = alt_fnum; |
6375 | |
6376 erret: | |
6377 vim_free(tag); | |
6378 } | |
6379 | |
6228 | 6380 /* |
6234 | 6381 * ":helpclose": Close one help window |
6228 | 6382 */ |
6383 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6384 ex_helpclose(exarg_T *eap UNUSED) |
6228 | 6385 { |
6386 win_T *win; | |
6387 | |
6388 FOR_ALL_WINDOWS(win) | |
6389 { | |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11666
diff
changeset
|
6390 if (bt_help(win->w_buffer)) |
6228 | 6391 { |
6392 win_close(win, FALSE); | |
6234 | 6393 return; |
6228 | 6394 } |
6395 } | |
6396 } | |
7 | 6397 |
9 | 6398 #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
6399 /* | |
6400 * In an argument search for a language specifiers in the form "@xx". | |
6401 * Changes the "@" to NUL if found, and returns a pointer to "xx". | |
6402 * Returns NULL if not found. | |
6403 */ | |
6404 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6405 check_help_lang(char_u *arg) |
9 | 6406 { |
835 | 6407 int len = (int)STRLEN(arg); |
9 | 6408 |
6409 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2]) | |
6410 && ASCII_ISALPHA(arg[len - 1])) | |
6411 { | |
6412 arg[len - 3] = NUL; /* remove the '@' */ | |
6413 return arg + len - 2; | |
6414 } | |
6415 return NULL; | |
6416 } | |
6417 #endif | |
6418 | |
7 | 6419 /* |
6420 * Return a heuristic indicating how well the given string matches. The | |
6421 * smaller the number, the better the match. This is the order of priorities, | |
6422 * from best match to worst match: | |
6423 * - Match with least alpha-numeric characters is better. | |
6424 * - Match with least total characters is better. | |
6425 * - Match towards the start is better. | |
6426 * - Match starting with "+" is worse (feature instead of command) | |
6427 * Assumption is made that the matched_string passed has already been found to | |
6428 * match some string for which help is requested. webb. | |
6429 */ | |
6430 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6431 help_heuristic( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6432 char_u *matched_string, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6433 int offset, /* offset for match */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6434 int wrong_case) /* no matching case */ |
7 | 6435 { |
6436 int num_letters; | |
6437 char_u *p; | |
6438 | |
6439 num_letters = 0; | |
6440 for (p = matched_string; *p; p++) | |
6441 if (ASCII_ISALNUM(*p)) | |
6442 num_letters++; | |
6443 | |
6444 /* | |
6445 * Multiply the number of letters by 100 to give it a much bigger | |
6446 * weighting than the number of characters. | |
6447 * If there only is a match while ignoring case, add 5000. | |
6448 * If the match starts in the middle of a word, add 10000 to put it | |
6449 * somewhere in the last half. | |
6450 * If the match is more than 2 chars from the start, multiply by 200 to | |
6451 * put it after matches at the start. | |
6452 */ | |
6453 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 | |
6454 && ASCII_ISALNUM(matched_string[offset - 1])) | |
6455 offset += 10000; | |
6456 else if (offset > 2) | |
6457 offset *= 200; | |
6458 if (wrong_case) | |
6459 offset += 5000; | |
6460 /* Features are less interesting than the subjects themselves, but "+" | |
6461 * alone is not a feature. */ | |
6462 if (matched_string[0] == '+' && matched_string[1] != NUL) | |
6463 offset += 100; | |
6464 return (int)(100 * num_letters + STRLEN(matched_string) + offset); | |
6465 } | |
6466 | |
6467 /* | |
6468 * Compare functions for qsort() below, that checks the help heuristics number | |
6469 * that has been put after the tagname by find_tags(). | |
6470 */ | |
6471 static int | |
6472 #ifdef __BORLANDC__ | |
6473 _RTLENTRYF | |
6474 #endif | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6475 help_compare(const void *s1, const void *s2) |
7 | 6476 { |
6477 char *p1; | |
6478 char *p2; | |
6479 | |
6480 p1 = *(char **)s1 + strlen(*(char **)s1) + 1; | |
6481 p2 = *(char **)s2 + strlen(*(char **)s2) + 1; | |
6482 return strcmp(p1, p2); | |
6483 } | |
6484 | |
6485 /* | |
6486 * Find all help tags matching "arg", sort them and return in matches[], with | |
6487 * the number of matches in num_matches. | |
6488 * The matches will be sorted with a "best" match algorithm. | |
6489 * When "keep_lang" is TRUE try keeping the language of the current buffer. | |
6490 */ | |
6491 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6492 find_help_tags( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6493 char_u *arg, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6494 int *num_matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6495 char_u ***matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6496 int keep_lang) |
7 | 6497 { |
6498 char_u *s, *d; | |
6499 int i; | |
6500 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", | |
445 | 6501 "/*", "/\\*", "\"*", "**", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
6502 "cpo-*", "/\\(\\)", "/\\%(\\)", |
10853
b760fa91f8b3
patch 8.0.0316: :help z? does not work
Christian Brabandt <cb@256bit.org>
parents:
10851
diff
changeset
|
6503 "?", ":?", "?<CR>", "g?", "g?g?", "g??", |
279 | 6504 "/\\?", "/\\z(\\)", "\\=", ":s\\=", |
10851
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
6505 "[count]", "[quotex]", |
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
6506 "[range]", ":[range]", |
5647 | 6507 "[pattern]", "\\|", "\\%$", |
6508 "s/\\~", "s/\\U", "s/\\L", | |
6509 "s/\\1", "s/\\2", "s/\\3", "s/\\9"}; | |
7 | 6510 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", |
445 | 6511 "/star", "/\\\\star", "quotestar", "starstar", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
6512 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)", |
10853
b760fa91f8b3
patch 8.0.0316: :help z? does not work
Christian Brabandt <cb@256bit.org>
parents:
10851
diff
changeset
|
6513 "?", ":?", "?<CR>", "g?", "g?g?", "g??", |
279 | 6514 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", |
10851
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
6515 "\\[count]", "\\[quotex]", |
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
6516 "\\[range]", ":\\[range]", |
5647 | 6517 "\\[pattern]", "\\\\bar", "/\\\\%\\$", |
5867 | 6518 "s/\\\\\\~", "s/\\\\U", "s/\\\\L", |
5647 | 6519 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"}; |
7 | 6520 int flags; |
6521 | |
6522 d = IObuff; /* assume IObuff is long enough! */ | |
6523 | |
6524 /* | |
6525 * Recognize a few exceptions to the rule. Some strings that contain '*' | |
6526 * with "star". Otherwise '*' is recognized as a wildcard. | |
6527 */ | |
1872 | 6528 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; ) |
7 | 6529 if (STRCMP(arg, mtable[i]) == 0) |
6530 { | |
6531 STRCPY(d, rtable[i]); | |
6532 break; | |
6533 } | |
6534 | |
6535 if (i < 0) /* no match in table */ | |
6536 { | |
6537 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched. | |
6538 * Also replace "\%^" and "\%(", they match every tag too. | |
6539 * Also "\zs", "\z1", etc. | |
6540 * Also "\@<", "\@=", "\@<=", etc. | |
6541 * And also "\_$" and "\_^". */ | |
6542 if (arg[0] == '\\' | |
6543 && ((arg[1] != NUL && arg[2] == NUL) | |
6544 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL | |
6545 && arg[2] != NUL))) | |
6546 { | |
6547 STRCPY(d, "/\\\\"); | |
6548 STRCPY(d + 3, arg + 1); | |
6549 /* Check for "/\\_$", should be "/\\_\$" */ | |
6550 if (d[3] == '_' && d[4] == '$') | |
6551 STRCPY(d + 4, "\\$"); | |
6552 } | |
6553 else | |
6554 { | |
3786 | 6555 /* Replace: |
6556 * "[:...:]" with "\[:...:]" | |
6557 * "[++...]" with "\[++...]" | |
5867 | 6558 * "\{" with "\\{" -- matching "} \}" |
3786 | 6559 */ |
6560 if ((arg[0] == '[' && (arg[1] == ':' | |
6561 || (arg[1] == '+' && arg[2] == '+'))) | |
6562 || (arg[0] == '\\' && arg[1] == '{')) | |
7 | 6563 *d++ = '\\'; |
6564 | |
8556
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6565 /* |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6566 * 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
|
6567 */ |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6568 if (*arg == '(' && arg[1] == '\'') |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6569 arg++; |
7 | 6570 for (s = arg; *s; ++s) |
6571 { | |
6572 /* | |
6573 * Replace "|" with "bar" and '"' with "quote" to match the name of | |
6574 * the tags for these commands. | |
6575 * Replace "*" with ".*" and "?" with "." to match command line | |
6576 * completion. | |
6577 * Insert a backslash before '~', '$' and '.' to avoid their | |
6578 * special meaning. | |
6579 */ | |
6580 if (d - IObuff > IOSIZE - 10) /* getting too long!? */ | |
6581 break; | |
6582 switch (*s) | |
6583 { | |
6584 case '|': STRCPY(d, "bar"); | |
6585 d += 3; | |
6586 continue; | |
6587 case '"': STRCPY(d, "quote"); | |
6588 d += 5; | |
6589 continue; | |
6590 case '*': *d++ = '.'; | |
6591 break; | |
6592 case '?': *d++ = '.'; | |
6593 continue; | |
6594 case '$': | |
6595 case '.': | |
6596 case '~': *d++ = '\\'; | |
6597 break; | |
6598 } | |
6599 | |
6600 /* | |
6601 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make | |
6602 * ":help i_^_CTRL-D" work. | |
6603 * Insert '-' before and after "CTRL-X" when applicable. | |
6604 */ | |
6605 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1]) | |
6606 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL))) | |
6607 { | |
5282
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
6608 if (d > IObuff && d[-1] != '_' && d[-1] != '\\') |
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
6609 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */ |
7 | 6610 STRCPY(d, "CTRL-"); |
6611 d += 5; | |
6612 if (*s < ' ') | |
6613 { | |
6614 #ifdef EBCDIC | |
6615 *d++ = CtrlChar(*s); | |
6616 #else | |
6617 *d++ = *s + '@'; | |
6618 #endif | |
6619 if (d[-1] == '\\') | |
6620 *d++ = '\\'; /* double a backslash */ | |
6621 } | |
6622 else | |
6623 *d++ = *++s; | |
6624 if (s[1] != NUL && s[1] != '_') | |
6625 *d++ = '_'; /* append a '_' */ | |
6626 continue; | |
6627 } | |
6628 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */ | |
6629 *d++ = '\\'; | |
6630 | |
6631 /* | |
6632 * Insert a backslash before a backslash after a slash, for search | |
6633 * pattern tags: "/\|" --> "/\\|". | |
6634 */ | |
6635 else if (s[0] == '\\' && s[1] != '\\' | |
6636 && *arg == '/' && s == arg + 1) | |
6637 *d++ = '\\'; | |
6638 | |
6639 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in | |
6640 * "CTRL-\_CTRL-N" */ | |
6641 if (STRNICMP(s, "CTRL-\\_", 7) == 0) | |
6642 { | |
6643 STRCPY(d, "CTRL-\\\\"); | |
6644 d += 7; | |
6645 s += 6; | |
6646 } | |
6647 | |
6648 *d++ = *s; | |
6649 | |
6650 /* | |
8883
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6651 * 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
|
6652 * 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
|
6653 */ |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6654 if (*s == '(' && (s[1] == '{' || s[1] =='[')) |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6655 break; |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6656 |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6657 /* |
7 | 6658 * If tag starts with ', toss everything after a second '. Fixes |
6659 * CTRL-] on 'option'. (would include the trailing '.'). | |
6660 */ | |
6661 if (*s == '\'' && s > arg && *arg == '\'') | |
6662 break; | |
9234
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
6663 /* Also '{' and '}'. */ |
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
6664 if (*s == '}' && s > arg && *arg == '{') |
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
6665 break; |
7 | 6666 } |
6667 *d = NUL; | |
3480 | 6668 |
6669 if (*IObuff == '`') | |
6670 { | |
6671 if (d > IObuff + 2 && d[-1] == '`') | |
6672 { | |
6673 /* remove the backticks from `command` */ | |
6674 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6675 d[-2] = NUL; | |
6676 } | |
6677 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',') | |
6678 { | |
6679 /* remove the backticks and comma from `command`, */ | |
6680 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6681 d[-3] = NUL; | |
6682 } | |
6683 else if (d > IObuff + 4 && d[-3] == '`' | |
6684 && d[-2] == '\\' && d[-1] == '.') | |
6685 { | |
6686 /* remove the backticks and dot from `command`\. */ | |
6687 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6688 d[-4] = NUL; | |
6689 } | |
6690 } | |
7 | 6691 } |
6692 } | |
6693 | |
6694 *matches = (char_u **)""; | |
6695 *num_matches = 0; | |
6696 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; | |
6697 if (keep_lang) | |
6698 flags |= TAG_KEEP_LANG; | |
1696 | 6699 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK |
7 | 6700 && *num_matches > 0) |
1696 | 6701 { |
7 | 6702 /* Sort the matches found on the heuristic number that is after the |
6703 * tag name. */ | |
6704 qsort((void *)*matches, (size_t)*num_matches, | |
6705 sizeof(char_u *), help_compare); | |
1696 | 6706 /* Delete more than TAG_MANY to reduce the size of the listing. */ |
6707 while (*num_matches > TAG_MANY) | |
6708 vim_free((*matches)[--*num_matches]); | |
6709 } | |
7 | 6710 return OK; |
6711 } | |
6712 | |
6713 /* | |
6365 | 6714 * Called when starting to edit a buffer for a help file. |
6715 */ | |
6716 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6717 prepare_help_buffer(void) |
6365 | 6718 { |
6719 char_u *p; | |
6720 | |
6721 curbuf->b_help = TRUE; | |
6722 #ifdef FEAT_QUICKFIX | |
6723 set_string_option_direct((char_u *)"buftype", -1, | |
6724 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0); | |
6725 #endif | |
6726 | |
6727 /* | |
6728 * Always set these options after jumping to a help tag, because the | |
6729 * user may have an autocommand that gets in the way. | |
6730 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and | |
6731 * latin1 word characters (for translated help files). | |
6732 * Only set it when needed, buf_init_chartab() is some work. | |
6733 */ | |
6734 p = | |
6735 #ifdef EBCDIC | |
6736 (char_u *)"65-255,^*,^|,^\""; | |
6737 #else | |
6738 (char_u *)"!-~,^*,^|,^\",192-255"; | |
6739 #endif | |
6740 if (STRCMP(curbuf->b_p_isk, p) != 0) | |
6741 { | |
6742 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0); | |
6743 check_buf_options(curbuf); | |
6744 (void)buf_init_chartab(curbuf, FALSE); | |
6745 } | |
6746 | |
6415 | 6747 #ifdef FEAT_FOLDING |
6365 | 6748 /* Don't use the global foldmethod.*/ |
6749 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual", | |
6750 OPT_FREE|OPT_LOCAL, 0); | |
6415 | 6751 #endif |
6365 | 6752 |
6753 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */ | |
6754 curwin->w_p_list = FALSE; /* no list mode */ | |
6755 | |
6756 curbuf->b_p_ma = FALSE; /* not modifiable */ | |
6757 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */ | |
6758 curwin->w_p_nu = 0; /* no line numbers */ | |
6759 curwin->w_p_rnu = 0; /* no relative line numbers */ | |
6760 RESET_BINDING(curwin); /* no scroll or cursor binding */ | |
6761 #ifdef FEAT_ARABIC | |
6762 curwin->w_p_arab = FALSE; /* no arabic mode */ | |
6763 #endif | |
6764 #ifdef FEAT_RIGHTLEFT | |
6765 curwin->w_p_rl = FALSE; /* help window is left-to-right */ | |
6766 #endif | |
6767 #ifdef FEAT_FOLDING | |
6768 curwin->w_p_fen = FALSE; /* No folding in the help window */ | |
6769 #endif | |
6770 #ifdef FEAT_DIFF | |
6771 curwin->w_p_diff = FALSE; /* No 'diff' */ | |
6772 #endif | |
6773 #ifdef FEAT_SPELL | |
6774 curwin->w_p_spell = FALSE; /* No spell checking */ | |
6775 #endif | |
6776 | |
6777 set_buflisted(FALSE); | |
6778 } | |
6779 | |
6780 /* | |
7 | 6781 * After reading a help file: May cleanup a help buffer when syntax |
6782 * highlighting is not used. | |
6783 */ | |
6784 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6785 fix_help_buffer(void) |
7 | 6786 { |
6787 linenr_T lnum; | |
6788 char_u *line; | |
6789 int in_example = FALSE; | |
6790 int len; | |
3141 | 6791 char_u *fname; |
7 | 6792 char_u *p; |
6793 char_u *rt; | |
6794 int mustfree; | |
6795 | |
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
|
6796 /* Set filetype to "help" if still needed. */ |
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
|
6797 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
|
6798 { |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11537
diff
changeset
|
6799 ++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
|
6800 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
|
6801 --curbuf_lock; |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11537
diff
changeset
|
6802 } |
7 | 6803 |
6804 #ifdef FEAT_SYN_HL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6805 if (!syntax_present(curwin)) |
7 | 6806 #endif |
6807 { | |
6808 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
6809 { | |
6810 line = ml_get_buf(curbuf, lnum, FALSE); | |
6811 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
|
6812 if (in_example && len > 0 && !VIM_ISWHITE(line[0])) |
7 | 6813 { |
6814 /* End of example: non-white or '<' in first column. */ | |
6815 if (line[0] == '<') | |
6816 { | |
6817 /* blank-out a '<' in the first column */ | |
6818 line = ml_get_buf(curbuf, lnum, TRUE); | |
6819 line[0] = ' '; | |
6820 } | |
6821 in_example = FALSE; | |
6822 } | |
6823 if (!in_example && len > 0) | |
6824 { | |
6825 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' ')) | |
6826 { | |
6827 /* blank-out a '>' in the last column (start of example) */ | |
6828 line = ml_get_buf(curbuf, lnum, TRUE); | |
6829 line[len - 1] = ' '; | |
6830 in_example = TRUE; | |
6831 } | |
6832 else if (line[len - 1] == '~') | |
6833 { | |
6834 /* blank-out a '~' at the end of line (header marker) */ | |
6835 line = ml_get_buf(curbuf, lnum, TRUE); | |
6836 line[len - 1] = ' '; | |
6837 } | |
6838 } | |
6839 } | |
6840 } | |
6841 | |
6842 /* | |
3141 | 6843 * In the "help.txt" and "help.abx" file, add the locally added help |
6844 * files. This uses the very first line in the help file. | |
7 | 6845 */ |
3141 | 6846 fname = gettail(curbuf->b_fname); |
6847 if (fnamecmp(fname, "help.txt") == 0 | |
6848 #ifdef FEAT_MULTI_LANG | |
6849 || (fnamencmp(fname, "help.", 5) == 0 | |
6850 && ASCII_ISALPHA(fname[5]) | |
6851 && ASCII_ISALPHA(fname[6]) | |
6852 && TOLOWER_ASC(fname[7]) == 'x' | |
6853 && fname[8] == NUL) | |
6854 #endif | |
6855 ) | |
7 | 6856 { |
6857 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) | |
6858 { | |
6859 line = ml_get_buf(curbuf, lnum, FALSE); | |
3141 | 6860 if (strstr((char *)line, "*local-additions*") == NULL) |
6861 continue; | |
6862 | |
6863 /* Go through all directories in 'runtimepath', skipping | |
6864 * $VIMRUNTIME. */ | |
6865 p = p_rtp; | |
6866 while (*p != NUL) | |
7 | 6867 { |
3141 | 6868 copy_option_part(&p, NameBuff, MAXPATHL, ","); |
6869 mustfree = FALSE; | |
6870 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); | |
13276
6958e700a458
patch 8.0.1512: warning for possibly using NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
13268
diff
changeset
|
6871 if (rt != NULL && fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME) |
7 | 6872 { |
3141 | 6873 int fcount; |
6874 char_u **fnames; | |
6875 FILE *fd; | |
6876 char_u *s; | |
6877 int fi; | |
7 | 6878 #ifdef FEAT_MBYTE |
3141 | 6879 vimconv_T vc; |
6880 char_u *cp; | |
6881 #endif | |
6882 | |
6883 /* Find all "doc/ *.txt" files in this directory. */ | |
6884 add_pathsep(NameBuff); | |
6885 #ifdef FEAT_MULTI_LANG | |
6886 STRCAT(NameBuff, "doc/*.??[tx]"); | |
7 | 6887 #else |
3141 | 6888 STRCAT(NameBuff, "doc/*.txt"); |
6889 #endif | |
6890 if (gen_expand_wildcards(1, &NameBuff, &fcount, | |
6891 &fnames, EW_FILE|EW_SILENT) == OK | |
6892 && fcount > 0) | |
6893 { | |
6894 #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
|
6895 int i1, i2; |
e1deb00ffc27
patch 8.0.1383: local additions in help skips some files
Christian Brabandt <cb@256bit.org>
parents:
13012
diff
changeset
|
6896 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
|
6897 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
|
6898 char_u *e1, *e2; |
3141 | 6899 |
6900 /* If foo.abx is found use it instead of foo.txt in | |
6901 * the same directory. */ | |
6902 for (i1 = 0; i1 < fcount; ++i1) | |
6903 { | |
6904 for (i2 = 0; i2 < fcount; ++i2) | |
6905 { | |
6906 if (i1 == i2) | |
6907 continue; | |
6908 if (fnames[i1] == NULL || fnames[i2] == NULL) | |
6909 continue; | |
6910 f1 = fnames[i1]; | |
6911 f2 = fnames[i2]; | |
6912 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
|
6913 t2 = gettail(f2); |
3141 | 6914 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
|
6915 e2 = vim_strrchr(t2, '.'); |
10299
7b2f95633e28
commit https://github.com/vim/vim/commit/7756e7465d627ff9cd01e59625484a8c302ef853
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
6916 if (e1 == NULL || e2 == NULL) |
3141 | 6917 continue; |
6918 if (fnamecmp(e1, ".txt") != 0 | |
6919 && fnamecmp(e1, fname + 4) != 0) | |
6920 { | |
6921 /* 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
|
6922 VIM_CLEAR(fnames[i1]); |
3141 | 6923 continue; |
6924 } | |
13014
e1deb00ffc27
patch 8.0.1383: local additions in help skips some files
Christian Brabandt <cb@256bit.org>
parents:
13012
diff
changeset
|
6925 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
|
6926 || fnamencmp(f1, f2, e1 - f1) != 0) |
3141 | 6927 continue; |
6928 if (fnamecmp(e1, ".txt") == 0 | |
6929 && fnamecmp(e2, fname + 4) == 0) | |
6930 /* 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
|
6931 VIM_CLEAR(fnames[i1]); |
7 | 6932 } |
6933 } | |
3141 | 6934 #endif |
6935 for (fi = 0; fi < fcount; ++fi) | |
6936 { | |
6937 if (fnames[fi] == NULL) | |
6938 continue; | |
6939 fd = mch_fopen((char *)fnames[fi], "r"); | |
6940 if (fd != NULL) | |
6941 { | |
6942 vim_fgets(IObuff, IOSIZE, fd); | |
6943 if (IObuff[0] == '*' | |
6944 && (s = vim_strchr(IObuff + 1, '*')) | |
6945 != NULL) | |
6946 { | |
6947 #ifdef FEAT_MBYTE | |
6948 int this_utf = MAYBE; | |
6949 #endif | |
6950 /* Change tag definition to a | |
6951 * reference and remove <CR>/<NL>. */ | |
6952 IObuff[0] = '|'; | |
6953 *s = '|'; | |
6954 while (*s != NUL) | |
6955 { | |
6956 if (*s == '\r' || *s == '\n') | |
6957 *s = NUL; | |
6958 #ifdef FEAT_MBYTE | |
6959 /* The text is utf-8 when a byte | |
6960 * above 127 is found and no | |
6961 * illegal byte sequence is found. | |
6962 */ | |
6963 if (*s >= 0x80 && this_utf != FALSE) | |
6964 { | |
6965 int l; | |
6966 | |
6967 this_utf = TRUE; | |
6968 l = utf_ptr2len(s); | |
6969 if (l == 1) | |
6970 this_utf = FALSE; | |
6971 s += l - 1; | |
6972 } | |
6973 #endif | |
6974 ++s; | |
6975 } | |
6976 #ifdef FEAT_MBYTE | |
6977 /* The help file is latin1 or utf-8; | |
6978 * conversion to the current | |
6979 * 'encoding' may be required. */ | |
6980 vc.vc_type = CONV_NONE; | |
6981 convert_setup(&vc, (char_u *)( | |
6982 this_utf == TRUE ? "utf-8" | |
6983 : "latin1"), p_enc); | |
6984 if (vc.vc_type == CONV_NONE) | |
6985 /* No conversion needed. */ | |
6986 cp = IObuff; | |
6987 else | |
6988 { | |
6989 /* Do the conversion. If it fails | |
6990 * use the unconverted text. */ | |
6991 cp = string_convert(&vc, IObuff, | |
6992 NULL); | |
6993 if (cp == NULL) | |
6994 cp = IObuff; | |
6995 } | |
6996 convert_setup(&vc, NULL, NULL); | |
6997 | |
6998 ml_append(lnum, cp, (colnr_T)0, FALSE); | |
6999 if (cp != IObuff) | |
7000 vim_free(cp); | |
7001 #else | |
7002 ml_append(lnum, IObuff, (colnr_T)0, | |
7003 FALSE); | |
7004 #endif | |
7005 ++lnum; | |
7006 } | |
7007 fclose(fd); | |
7008 } | |
7009 } | |
7010 FreeWild(fcount, fnames); | |
7 | 7011 } |
7012 } | |
3141 | 7013 if (mustfree) |
7014 vim_free(rt); | |
7 | 7015 } |
3141 | 7016 break; |
7 | 7017 } |
7018 } | |
7019 } | |
7020 | |
40 | 7021 /* |
7022 * ":exusage" | |
7023 */ | |
7024 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7025 ex_exusage(exarg_T *eap UNUSED) |
40 | 7026 { |
7027 do_cmdline_cmd((char_u *)"help ex-cmd-index"); | |
7028 } | |
7029 | |
7030 /* | |
7031 * ":viusage" | |
7032 */ | |
7033 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7034 ex_viusage(exarg_T *eap UNUSED) |
40 | 7035 { |
7036 do_cmdline_cmd((char_u *)"help normal-index"); | |
7037 } | |
7038 | |
7 | 7039 /* |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7040 * Generate tags in one help directory. |
7 | 7041 */ |
7042 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7043 helptags_one( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7044 char_u *dir, /* doc directory */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7045 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7046 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7047 int add_help_tags) /* add "help-tags" tag */ |
7 | 7048 { |
7049 FILE *fd_tags; | |
7050 FILE *fd; | |
7051 garray_T ga; | |
7052 int filecount; | |
7053 char_u **files; | |
7054 char_u *p1, *p2; | |
7055 int fi; | |
7056 char_u *s; | |
7057 int i; | |
7058 char_u *fname; | |
3957 | 7059 int dirlen; |
7 | 7060 # ifdef FEAT_MBYTE |
7061 int utf8 = MAYBE; | |
7062 int this_utf8; | |
7063 int firstline; | |
7064 int mix = FALSE; /* detected mixed encodings */ | |
7065 # endif | |
7066 | |
7067 /* | |
7068 * Find all *.txt files. | |
7069 */ | |
3978 | 7070 dirlen = (int)STRLEN(dir); |
7 | 7071 STRCPY(NameBuff, dir); |
3957 | 7072 STRCAT(NameBuff, "/**/*"); |
7 | 7073 STRCAT(NameBuff, ext); |
7074 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, | |
7075 EW_FILE|EW_SILENT) == FAIL | |
7076 || filecount == 0) | |
7077 { | |
7078 if (!got_int) | |
9953
9560a2eb7968
commit https://github.com/vim/vim/commit/5b30291785e6b9be1a607504c14bd03c601b59a6
Christian Brabandt <cb@256bit.org>
parents:
9947
diff
changeset
|
7079 EMSG2(_("E151: No match: %s"), NameBuff); |
7 | 7080 return; |
7081 } | |
7082 | |
7083 /* | |
7084 * Open the tags file for writing. | |
7085 * Do this before scanning through all the files. | |
7086 */ | |
7087 STRCPY(NameBuff, dir); | |
7088 add_pathsep(NameBuff); | |
7089 STRCAT(NameBuff, tagfname); | |
531 | 7090 fd_tags = mch_fopen((char *)NameBuff, "w"); |
7 | 7091 if (fd_tags == NULL) |
7092 { | |
7093 EMSG2(_("E152: Cannot open %s for writing"), NameBuff); | |
7094 FreeWild(filecount, files); | |
7095 return; | |
7096 } | |
7097 | |
7098 /* | |
1502 | 7099 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc" |
7100 * add the "help-tags" tag. | |
7 | 7101 */ |
7102 ga_init2(&ga, (int)sizeof(char_u *), 100); | |
1502 | 7103 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc", |
7104 dir, FALSE) == FPC_SAME) | |
7 | 7105 { |
7106 if (ga_grow(&ga, 1) == FAIL) | |
7107 got_int = TRUE; | |
7108 else | |
7109 { | |
835 | 7110 s = alloc(18 + (unsigned)STRLEN(tagfname)); |
7 | 7111 if (s == NULL) |
7112 got_int = TRUE; | |
7113 else | |
7114 { | |
7115 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname); | |
7116 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
7117 ++ga.ga_len; | |
7118 } | |
7119 } | |
7120 } | |
7121 | |
7122 /* | |
7123 * Go over all the files and extract the tags. | |
7124 */ | |
7125 for (fi = 0; fi < filecount && !got_int; ++fi) | |
7126 { | |
531 | 7127 fd = mch_fopen((char *)files[fi], "r"); |
7 | 7128 if (fd == NULL) |
7129 { | |
7130 EMSG2(_("E153: Unable to open %s for reading"), files[fi]); | |
7131 continue; | |
7132 } | |
3957 | 7133 fname = files[fi] + dirlen + 1; |
7 | 7134 |
7135 # ifdef FEAT_MBYTE | |
7136 firstline = TRUE; | |
7137 # endif | |
7138 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) | |
7139 { | |
7140 # ifdef FEAT_MBYTE | |
7141 if (firstline) | |
7142 { | |
7143 /* Detect utf-8 file by a non-ASCII char in the first line. */ | |
7144 this_utf8 = MAYBE; | |
7145 for (s = IObuff; *s != NUL; ++s) | |
7146 if (*s >= 0x80) | |
7147 { | |
7148 int l; | |
7149 | |
7150 this_utf8 = TRUE; | |
474 | 7151 l = utf_ptr2len(s); |
7 | 7152 if (l == 1) |
7153 { | |
7154 /* Illegal UTF-8 byte sequence. */ | |
7155 this_utf8 = FALSE; | |
7156 break; | |
7157 } | |
7158 s += l - 1; | |
7159 } | |
7160 if (this_utf8 == MAYBE) /* only ASCII characters found */ | |
7161 this_utf8 = FALSE; | |
7162 if (utf8 == MAYBE) /* first file */ | |
7163 utf8 = this_utf8; | |
7164 else if (utf8 != this_utf8) | |
7165 { | |
7166 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]); | |
7167 mix = !got_int; | |
7168 got_int = TRUE; | |
7169 } | |
7170 firstline = FALSE; | |
7171 } | |
7172 # endif | |
7173 p1 = vim_strchr(IObuff, '*'); /* find first '*' */ | |
7174 while (p1 != NULL) | |
7175 { | |
3514 | 7176 /* Use vim_strbyte() instead of vim_strchr() so that when |
7177 * 'encoding' is dbcs it still works, don't find '*' in the | |
7178 * second byte. */ | |
7179 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */ | |
7 | 7180 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */ |
7181 { | |
7182 for (s = p1 + 1; s < p2; ++s) | |
7183 if (*s == ' ' || *s == '\t' || *s == '|') | |
7184 break; | |
7185 | |
7186 /* | |
7187 * Only accept a *tag* when it consists of valid | |
7188 * characters, there is white space before it and is | |
7189 * followed by a white character or end-of-line. | |
7190 */ | |
7191 if (s == p2 | |
7192 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') | |
7193 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL | |
7194 || s[1] == '\0')) | |
7195 { | |
7196 *p2 = '\0'; | |
7197 ++p1; | |
7198 if (ga_grow(&ga, 1) == FAIL) | |
7199 { | |
7200 got_int = TRUE; | |
7201 break; | |
7202 } | |
7203 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2)); | |
7204 if (s == NULL) | |
7205 { | |
7206 got_int = TRUE; | |
7207 break; | |
7208 } | |
7209 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
7210 ++ga.ga_len; | |
7211 sprintf((char *)s, "%s\t%s", p1, fname); | |
7212 | |
7213 /* find next '*' */ | |
7214 p2 = vim_strchr(p2 + 1, '*'); | |
7215 } | |
7216 } | |
7217 p1 = p2; | |
7218 } | |
7219 line_breakcheck(); | |
7220 } | |
7221 | |
7222 fclose(fd); | |
7223 } | |
7224 | |
7225 FreeWild(filecount, files); | |
7226 | |
7227 if (!got_int) | |
7228 { | |
7229 /* | |
7230 * Sort the tags. | |
7231 */ | |
7009 | 7232 if (ga.ga_data != NULL) |
7233 sort_strings((char_u **)ga.ga_data, ga.ga_len); | |
7 | 7234 |
7235 /* | |
7236 * Check for duplicates. | |
7237 */ | |
7238 for (i = 1; i < ga.ga_len; ++i) | |
7239 { | |
7240 p1 = ((char_u **)ga.ga_data)[i - 1]; | |
7241 p2 = ((char_u **)ga.ga_data)[i]; | |
7242 while (*p1 == *p2) | |
7243 { | |
7244 if (*p2 == '\t') | |
7245 { | |
7246 *p2 = NUL; | |
274 | 7247 vim_snprintf((char *)NameBuff, MAXPATHL, |
7 | 7248 _("E154: Duplicate tag \"%s\" in file %s/%s"), |
7249 ((char_u **)ga.ga_data)[i], dir, p2 + 1); | |
7250 EMSG(NameBuff); | |
7251 *p2 = '\t'; | |
7252 break; | |
7253 } | |
7254 ++p1; | |
7255 ++p2; | |
7256 } | |
7257 } | |
7258 | |
7259 # ifdef FEAT_MBYTE | |
7260 if (utf8 == TRUE) | |
7261 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n"); | |
7262 # endif | |
7263 | |
7264 /* | |
7265 * Write the tags into the file. | |
7266 */ | |
7267 for (i = 0; i < ga.ga_len; ++i) | |
7268 { | |
7269 s = ((char_u **)ga.ga_data)[i]; | |
1325 | 7270 if (STRNCMP(s, "help-tags\t", 10) == 0) |
7 | 7271 /* help-tags entry was added in formatted form */ |
1325 | 7272 fputs((char *)s, fd_tags); |
7 | 7273 else |
7274 { | |
7275 fprintf(fd_tags, "%s\t/*", s); | |
7276 for (p1 = s; *p1 != '\t'; ++p1) | |
7277 { | |
7278 /* insert backslash before '\\' and '/' */ | |
7279 if (*p1 == '\\' || *p1 == '/') | |
7280 putc('\\', fd_tags); | |
7281 putc(*p1, fd_tags); | |
7282 } | |
7283 fprintf(fd_tags, "*\n"); | |
7284 } | |
7285 } | |
7286 } | |
7287 #ifdef FEAT_MBYTE | |
7288 if (mix) | |
7289 got_int = FALSE; /* continue with other languages */ | |
7290 #endif | |
7291 | |
7292 for (i = 0; i < ga.ga_len; ++i) | |
7293 vim_free(((char_u **)ga.ga_data)[i]); | |
7294 ga_clear(&ga); | |
7295 fclose(fd_tags); /* there is no check for an error... */ | |
7296 } | |
7297 | |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7298 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7299 * 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
|
7300 */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7301 static void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7302 do_helptags(char_u *dirname, int add_help_tags) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7303 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7304 #ifdef FEAT_MULTI_LANG |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7305 int len; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7306 int i, j; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7307 garray_T ga; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7308 char_u lang[2]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7309 char_u ext[5]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7310 char_u fname[8]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7311 int filecount; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7312 char_u **files; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7313 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7314 /* Get a list of all files in the help directory and in subdirectories. */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7315 STRCPY(NameBuff, dirname); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7316 add_pathsep(NameBuff); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7317 STRCAT(NameBuff, "**"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7318 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
|
7319 EW_FILE|EW_SILENT) == FAIL |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7320 || filecount == 0) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7321 { |
9953
9560a2eb7968
commit https://github.com/vim/vim/commit/5b30291785e6b9be1a607504c14bd03c601b59a6
Christian Brabandt <cb@256bit.org>
parents:
9947
diff
changeset
|
7322 EMSG2(_("E151: No match: %s"), NameBuff); |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7323 return; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7324 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7325 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7326 /* Go over all files in the directory to find out what languages are |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7327 * present. */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7328 ga_init2(&ga, 1, 10); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7329 for (i = 0; i < filecount; ++i) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7330 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7331 len = (int)STRLEN(files[i]); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7332 if (len > 4) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7333 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7334 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
|
7335 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7336 /* ".txt" -> language "en" */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7337 lang[0] = 'e'; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7338 lang[1] = 'n'; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7339 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7340 else if (files[i][len - 4] == '.' |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7341 && ASCII_ISALPHA(files[i][len - 3]) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7342 && ASCII_ISALPHA(files[i][len - 2]) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7343 && 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
|
7344 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7345 /* ".abx" -> language "ab" */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7346 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
|
7347 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
|
7348 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7349 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7350 continue; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7351 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7352 /* Did we find this language already? */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7353 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
|
7354 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
|
7355 break; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7356 if (j == ga.ga_len) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7357 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7358 /* New language, add it. */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7359 if (ga_grow(&ga, 2) == FAIL) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7360 break; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7361 ((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
|
7362 ((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
|
7363 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7364 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7365 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7366 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7367 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7368 * 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
|
7369 */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7370 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
|
7371 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7372 STRCPY(fname, "tags-xx"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7373 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
|
7374 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
|
7375 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
|
7376 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7377 /* English is an exception: use ".txt" and "tags". */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7378 fname[4] = NUL; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7379 STRCPY(ext, ".txt"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7380 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7381 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7382 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7383 /* Language "ab" uses ".abx" and "tags-ab". */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7384 STRCPY(ext, ".xxx"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7385 ext[1] = fname[5]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7386 ext[2] = fname[6]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7387 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7388 helptags_one(dirname, ext, fname, add_help_tags); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7389 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7390 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7391 ga_clear(&ga); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7392 FreeWild(filecount, files); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7393 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7394 #else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7395 /* No language support, just use "*.txt" and "tags". */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7396 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7397 #endif |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7398 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7399 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7400 static void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7401 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
|
7402 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7403 do_helptags(fname, *(int *)cookie); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7404 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7405 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7406 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7407 * ":helptags" |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7408 */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7409 void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7410 ex_helptags(exarg_T *eap) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7411 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7412 expand_T xpc; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7413 char_u *dirname; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7414 int add_help_tags = FALSE; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7415 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7416 /* 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
|
7417 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
|
7418 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7419 add_help_tags = TRUE; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7420 eap->arg = skipwhite(eap->arg + 3); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7421 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7422 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7423 if (STRCMP(eap->arg, "ALL") == 0) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7424 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7425 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
|
7426 helptags_cb, &add_help_tags); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7427 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7428 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7429 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7430 ExpandInit(&xpc); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7431 xpc.xp_context = EXPAND_DIRECTORIES; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7432 dirname = ExpandOne(&xpc, eap->arg, NULL, |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7433 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
|
7434 if (dirname == NULL || !mch_isdir(dirname)) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7435 EMSG2(_("E150: Not a directory: %s"), eap->arg); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7436 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7437 do_helptags(dirname, add_help_tags); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7438 vim_free(dirname); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7439 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7440 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7441 |
7 | 7442 #if defined(FEAT_SIGNS) || defined(PROTO) |
7443 | |
7444 /* | |
7445 * Struct to hold the sign properties. | |
7446 */ | |
7447 typedef struct sign sign_T; | |
7448 | |
7449 struct sign | |
7450 { | |
7451 sign_T *sn_next; /* next sign in list */ | |
2606 | 7452 int sn_typenr; /* type number of sign */ |
7 | 7453 char_u *sn_name; /* name of sign */ |
7454 char_u *sn_icon; /* name of pixmap */ | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7455 # ifdef FEAT_SIGN_ICONS |
7 | 7456 void *sn_image; /* icon image */ |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7457 # endif |
7 | 7458 char_u *sn_text; /* text used instead of pixmap */ |
7459 int sn_line_hl; /* highlight ID for line */ | |
7460 int sn_text_hl; /* highlight ID for text */ | |
7461 }; | |
7462 | |
7463 static sign_T *first_sign = NULL; | |
2605 | 7464 static int next_sign_typenr = 1; |
7 | 7465 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
7466 static int sign_cmd_idx(char_u *begin_cmd, char_u *end_cmd); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
7467 static void sign_list_defined(sign_T *sp); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
7468 static void sign_undefine(sign_T *sp, sign_T *sp_prev); |
7 | 7469 |
1868 | 7470 static char *cmds[] = { |
7471 "define", | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7472 # define SIGNCMD_DEFINE 0 |
1868 | 7473 "undefine", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7474 # define SIGNCMD_UNDEFINE 1 |
1868 | 7475 "list", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7476 # define SIGNCMD_LIST 2 |
1868 | 7477 "place", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7478 # define SIGNCMD_PLACE 3 |
1868 | 7479 "unplace", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7480 # define SIGNCMD_UNPLACE 4 |
1868 | 7481 "jump", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7482 # define SIGNCMD_JUMP 5 |
1868 | 7483 NULL |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7484 # define SIGNCMD_LAST 6 |
1868 | 7485 }; |
7486 | |
7487 /* | |
7488 * Find index of a ":sign" subcmd from its name. | |
7489 * "*end_cmd" must be writable. | |
7490 */ | |
7491 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7492 sign_cmd_idx( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7493 char_u *begin_cmd, /* begin of sign subcmd */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7494 char_u *end_cmd) /* just after sign subcmd */ |
1868 | 7495 { |
7496 int idx; | |
7497 char save = *end_cmd; | |
7498 | |
7499 *end_cmd = NUL; | |
7500 for (idx = 0; ; ++idx) | |
7501 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0) | |
7502 break; | |
7503 *end_cmd = save; | |
7504 return idx; | |
7505 } | |
7506 | |
7 | 7507 /* |
7508 * ":sign" command | |
7509 */ | |
7510 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7511 ex_sign(exarg_T *eap) |
7 | 7512 { |
7513 char_u *arg = eap->arg; | |
7514 char_u *p; | |
7515 int idx; | |
7516 sign_T *sp; | |
7517 sign_T *sp_prev; | |
12820
63d87ba12c34
patch 8.0.1287: temp file used for viminfo may have wrong permissions
Christian Brabandt <cb@256bit.org>
parents:
12676
diff
changeset
|
7518 buf_T *buf = NULL; |
7 | 7519 |
7520 /* Parse the subcommand. */ | |
7521 p = skiptowhite(arg); | |
1868 | 7522 idx = sign_cmd_idx(arg, p); |
7523 if (idx == SIGNCMD_LAST) | |
7524 { | |
7525 EMSG2(_("E160: Unknown sign command: %s"), arg); | |
7526 return; | |
7 | 7527 } |
7528 arg = skipwhite(p); | |
7529 | |
7530 if (idx <= SIGNCMD_LIST) | |
7531 { | |
7532 /* | |
7533 * Define, undefine or list signs. | |
7534 */ | |
7535 if (idx == SIGNCMD_LIST && *arg == NUL) | |
7536 { | |
7537 /* ":sign list": list all defined signs */ | |
3411 | 7538 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next) |
7 | 7539 sign_list_defined(sp); |
7540 } | |
7541 else if (*arg == NUL) | |
7542 EMSG(_("E156: Missing sign name")); | |
7543 else | |
7544 { | |
2605 | 7545 /* Isolate the sign name. If it's a number skip leading zeroes, |
7546 * so that "099" and "99" are the same sign. But keep "0". */ | |
7 | 7547 p = skiptowhite(arg); |
7548 if (*p != NUL) | |
7549 *p++ = NUL; | |
2605 | 7550 while (arg[0] == '0' && arg[1] != NUL) |
7551 ++arg; | |
7552 | |
7 | 7553 sp_prev = NULL; |
7554 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7555 { | |
7556 if (STRCMP(sp->sn_name, arg) == 0) | |
7557 break; | |
7558 sp_prev = sp; | |
7559 } | |
7560 if (idx == SIGNCMD_DEFINE) | |
7561 { | |
7562 /* ":sign define {name} ...": define a sign */ | |
7563 if (sp == NULL) | |
7564 { | |
2605 | 7565 sign_T *lp; |
7566 int start = next_sign_typenr; | |
7567 | |
7 | 7568 /* Allocate a new sign. */ |
7569 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T)); | |
7570 if (sp == NULL) | |
7571 return; | |
7572 | |
2605 | 7573 /* Check that next_sign_typenr is not already being used. |
7574 * This only happens after wrapping around. Hopefully | |
7575 * another one got deleted and we can use its number. */ | |
7576 for (lp = first_sign; lp != NULL; ) | |
7 | 7577 { |
2605 | 7578 if (lp->sn_typenr == next_sign_typenr) |
7 | 7579 { |
2605 | 7580 ++next_sign_typenr; |
7581 if (next_sign_typenr == MAX_TYPENR) | |
7582 next_sign_typenr = 1; | |
7583 if (next_sign_typenr == start) | |
7 | 7584 { |
2605 | 7585 vim_free(sp); |
7586 EMSG(_("E612: Too many signs defined")); | |
7587 return; | |
7 | 7588 } |
2605 | 7589 lp = first_sign; /* start all over */ |
7590 continue; | |
7 | 7591 } |
2605 | 7592 lp = lp->sn_next; |
7593 } | |
7594 | |
7595 sp->sn_typenr = next_sign_typenr; | |
7596 if (++next_sign_typenr == MAX_TYPENR) | |
7597 next_sign_typenr = 1; /* wrap around */ | |
7598 | |
7599 sp->sn_name = vim_strsave(arg); | |
7600 if (sp->sn_name == NULL) /* out of memory */ | |
7601 { | |
7602 vim_free(sp); | |
7603 return; | |
7 | 7604 } |
2601 | 7605 |
7606 /* add the new sign to the list of signs */ | |
7607 if (sp_prev == NULL) | |
7608 first_sign = sp; | |
7609 else | |
7610 sp_prev->sn_next = sp; | |
7 | 7611 } |
7612 | |
7613 /* set values for a defined sign. */ | |
7614 for (;;) | |
7615 { | |
7616 arg = skipwhite(p); | |
7617 if (*arg == NUL) | |
7618 break; | |
7619 p = skiptowhite_esc(arg); | |
7620 if (STRNCMP(arg, "icon=", 5) == 0) | |
7621 { | |
7622 arg += 5; | |
7623 vim_free(sp->sn_icon); | |
7624 sp->sn_icon = vim_strnsave(arg, (int)(p - arg)); | |
7625 backslash_halve(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7626 # ifdef FEAT_SIGN_ICONS |
7 | 7627 if (gui.in_use) |
7628 { | |
7629 out_flush(); | |
7630 if (sp->sn_image != NULL) | |
7631 gui_mch_destroy_sign(sp->sn_image); | |
7632 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7633 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7634 # endif |
7 | 7635 } |
7636 else if (STRNCMP(arg, "text=", 5) == 0) | |
7637 { | |
7638 char_u *s; | |
7639 int cells; | |
7640 int len; | |
7641 | |
7642 arg += 5; | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7643 # ifdef FEAT_MBYTE |
7 | 7644 /* Count cells and check for non-printable chars */ |
7645 if (has_mbyte) | |
7646 { | |
7647 cells = 0; | |
474 | 7648 for (s = arg; s < p; s += (*mb_ptr2len)(s)) |
7 | 7649 { |
7650 if (!vim_isprintc((*mb_ptr2char)(s))) | |
7651 break; | |
7652 cells += (*mb_ptr2cells)(s); | |
7653 } | |
7654 } | |
7655 else | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7656 # endif |
7 | 7657 { |
7658 for (s = arg; s < p; ++s) | |
7659 if (!vim_isprintc(*s)) | |
7660 break; | |
835 | 7661 cells = (int)(s - arg); |
7 | 7662 } |
7663 /* Currently must be one or two display cells */ | |
7664 if (s != p || cells < 1 || cells > 2) | |
7665 { | |
7666 *p = NUL; | |
7667 EMSG2(_("E239: Invalid sign text: %s"), arg); | |
7668 return; | |
7669 } | |
7670 | |
7671 vim_free(sp->sn_text); | |
7672 /* Allocate one byte more if we need to pad up | |
7673 * with a space. */ | |
835 | 7674 len = (int)(p - arg + ((cells == 1) ? 1 : 0)); |
7 | 7675 sp->sn_text = vim_strnsave(arg, len); |
7676 | |
7677 if (sp->sn_text != NULL && cells == 1) | |
7678 STRCPY(sp->sn_text + len - 1, " "); | |
7679 } | |
7680 else if (STRNCMP(arg, "linehl=", 7) == 0) | |
7681 { | |
7682 arg += 7; | |
7683 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg)); | |
7684 } | |
7685 else if (STRNCMP(arg, "texthl=", 7) == 0) | |
7686 { | |
7687 arg += 7; | |
7688 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg)); | |
7689 } | |
7690 else | |
7691 { | |
7692 EMSG2(_(e_invarg2), arg); | |
7693 return; | |
7694 } | |
7695 } | |
7696 } | |
7697 else if (sp == NULL) | |
7698 EMSG2(_("E155: Unknown sign: %s"), arg); | |
7699 else if (idx == SIGNCMD_LIST) | |
7700 /* ":sign list {name}" */ | |
7701 sign_list_defined(sp); | |
7702 else | |
7703 /* ":sign undefine {name}" */ | |
1828 | 7704 sign_undefine(sp, sp_prev); |
7 | 7705 } |
7706 } | |
7707 else | |
7708 { | |
7709 int id = -1; | |
7710 linenr_T lnum = -1; | |
7711 char_u *sign_name = NULL; | |
7712 char_u *arg1; | |
7713 | |
7714 if (*arg == NUL) | |
7715 { | |
7716 if (idx == SIGNCMD_PLACE) | |
7717 { | |
7718 /* ":sign place": list placed signs in all buffers */ | |
7719 sign_list_placed(NULL); | |
7720 } | |
7721 else if (idx == SIGNCMD_UNPLACE) | |
7722 { | |
7723 /* ":sign unplace": remove placed sign at cursor */ | |
7724 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum); | |
7725 if (id > 0) | |
7726 { | |
7727 buf_delsign(curwin->w_buffer, id); | |
7728 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum); | |
7729 } | |
7730 else | |
7731 EMSG(_("E159: Missing sign number")); | |
7732 } | |
7733 else | |
7734 EMSG(_(e_argreq)); | |
7735 return; | |
7736 } | |
7737 | |
7738 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL) | |
7739 { | |
7740 /* ":sign unplace *": remove all placed signs */ | |
7741 buf_delete_all_signs(); | |
7742 return; | |
7743 } | |
7744 | |
7745 /* first arg could be placed sign id */ | |
7746 arg1 = arg; | |
7747 if (VIM_ISDIGIT(*arg)) | |
7748 { | |
7749 id = getdigits(&arg); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
7750 if (!VIM_ISWHITE(*arg) && *arg != NUL) |
7 | 7751 { |
7752 id = -1; | |
7753 arg = arg1; | |
7754 } | |
7755 else | |
7756 { | |
7757 arg = skipwhite(arg); | |
7758 if (idx == SIGNCMD_UNPLACE && *arg == NUL) | |
7759 { | |
7760 /* ":sign unplace {id}": remove placed sign by number */ | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
7761 FOR_ALL_BUFFERS(buf) |
7 | 7762 if ((lnum = buf_delsign(buf, id)) != 0) |
7763 update_debug_sign(buf, lnum); | |
7764 return; | |
7765 } | |
7766 } | |
7767 } | |
7768 | |
7769 /* | |
7770 * Check for line={lnum} name={name} and file={fname} or buffer={nr}. | |
7771 * Leave "arg" pointing to {fname}. | |
7772 */ | |
7773 for (;;) | |
7774 { | |
7775 if (STRNCMP(arg, "line=", 5) == 0) | |
7776 { | |
7777 arg += 5; | |
7778 lnum = atoi((char *)arg); | |
7779 arg = skiptowhite(arg); | |
7780 } | |
3672 | 7781 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE) |
7782 { | |
7783 if (id != -1) | |
7784 { | |
7785 EMSG(_(e_invarg)); | |
7786 return; | |
7787 } | |
7788 id = -2; | |
7789 arg = skiptowhite(arg + 1); | |
7790 } | |
7 | 7791 else if (STRNCMP(arg, "name=", 5) == 0) |
7792 { | |
7793 arg += 5; | |
7794 sign_name = arg; | |
7795 arg = skiptowhite(arg); | |
7796 if (*arg != NUL) | |
7797 *arg++ = NUL; | |
2605 | 7798 while (sign_name[0] == '0' && sign_name[1] != NUL) |
7799 ++sign_name; | |
7 | 7800 } |
7801 else if (STRNCMP(arg, "file=", 5) == 0) | |
7802 { | |
7803 arg += 5; | |
7804 buf = buflist_findname(arg); | |
7805 break; | |
7806 } | |
7807 else if (STRNCMP(arg, "buffer=", 7) == 0) | |
7808 { | |
7809 arg += 7; | |
7810 buf = buflist_findnr((int)getdigits(&arg)); | |
7811 if (*skipwhite(arg) != NUL) | |
7812 EMSG(_(e_trailing)); | |
7813 break; | |
7814 } | |
7815 else | |
7816 { | |
7817 EMSG(_(e_invarg)); | |
7818 return; | |
7819 } | |
7820 arg = skipwhite(arg); | |
7821 } | |
7822 | |
7823 if (buf == NULL) | |
7824 { | |
7825 EMSG2(_("E158: Invalid buffer name: %s"), arg); | |
7826 } | |
3672 | 7827 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2)) |
7 | 7828 { |
7829 if (lnum >= 0 || sign_name != NULL) | |
7830 EMSG(_(e_invarg)); | |
7831 else | |
7832 /* ":sign place file={fname}": list placed signs in one file */ | |
7833 sign_list_placed(buf); | |
7834 } | |
7835 else if (idx == SIGNCMD_JUMP) | |
7836 { | |
7837 /* ":sign jump {id} file={fname}" */ | |
7838 if (lnum >= 0 || sign_name != NULL) | |
7839 EMSG(_(e_invarg)); | |
7840 else if ((lnum = buf_findsign(buf, id)) > 0) | |
7841 { /* goto a sign ... */ | |
7842 if (buf_jump_open_win(buf) != NULL) | |
7843 { /* ... in a current window */ | |
7844 curwin->w_cursor.lnum = lnum; | |
7845 check_cursor_lnum(); | |
7846 beginline(BL_WHITE); | |
7847 } | |
7848 else | |
7849 { /* ... not currently in a window */ | |
7850 char_u *cmd; | |
7851 | |
9902
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7852 if (buf->b_fname == NULL) |
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7853 { |
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7854 EMSG(_("E934: Cannot jump to a buffer that does not have a name")); |
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7855 return; |
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7856 } |
7 | 7857 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25); |
7858 if (cmd == NULL) | |
7859 return; | |
7860 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname); | |
7861 do_cmdline_cmd(cmd); | |
7862 vim_free(cmd); | |
7863 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7864 # ifdef FEAT_FOLDING |
7 | 7865 foldOpenCursor(); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7866 # endif |
7 | 7867 } |
7868 else | |
7869 EMSGN(_("E157: Invalid sign ID: %ld"), id); | |
7870 } | |
7871 else if (idx == SIGNCMD_UNPLACE) | |
7872 { | |
7873 if (lnum >= 0 || sign_name != NULL) | |
7874 EMSG(_(e_invarg)); | |
3672 | 7875 else if (id == -2) |
7876 { | |
7877 /* ":sign unplace * file={fname}" */ | |
7878 redraw_buf_later(buf, NOT_VALID); | |
7879 buf_delete_signs(buf); | |
7880 } | |
7 | 7881 else |
7882 { | |
3672 | 7883 /* ":sign unplace {id} file={fname}" */ |
7 | 7884 lnum = buf_delsign(buf, id); |
7885 update_debug_sign(buf, lnum); | |
7886 } | |
7887 } | |
7888 /* idx == SIGNCMD_PLACE */ | |
7889 else if (sign_name != NULL) | |
7890 { | |
7891 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7892 if (STRCMP(sp->sn_name, sign_name) == 0) | |
7893 break; | |
7894 if (sp == NULL) | |
7895 { | |
7896 EMSG2(_("E155: Unknown sign: %s"), sign_name); | |
7897 return; | |
7898 } | |
7899 if (lnum > 0) | |
7900 /* ":sign place {id} line={lnum} name={name} file={fname}": | |
7901 * place a sign */ | |
7902 buf_addsign(buf, id, lnum, sp->sn_typenr); | |
7903 else | |
7904 /* ":sign place {id} file={fname}": change sign type */ | |
7905 lnum = buf_change_sign_type(buf, id, sp->sn_typenr); | |
5865 | 7906 if (lnum > 0) |
7907 update_debug_sign(buf, lnum); | |
7908 else | |
7909 EMSG2(_("E885: Not possible to change sign %s"), sign_name); | |
7 | 7910 } |
7911 else | |
7912 EMSG(_(e_invarg)); | |
7913 } | |
7914 } | |
7915 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7916 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
7 | 7917 /* |
7918 * Allocate the icons. Called when the GUI has started. Allows defining | |
7919 * signs before it starts. | |
7920 */ | |
7921 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7922 sign_gui_started(void) |
7 | 7923 { |
7924 sign_T *sp; | |
7925 | |
7926 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7927 if (sp->sn_icon != NULL) | |
7928 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7929 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7930 # endif |
7 | 7931 |
7932 /* | |
7933 * List one sign. | |
7934 */ | |
7935 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7936 sign_list_defined(sign_T *sp) |
7 | 7937 { |
7938 char_u *p; | |
7939 | |
274 | 7940 smsg((char_u *)"sign %s", sp->sn_name); |
7 | 7941 if (sp->sn_icon != NULL) |
7942 { | |
7943 MSG_PUTS(" icon="); | |
7944 msg_outtrans(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7945 # ifdef FEAT_SIGN_ICONS |
7 | 7946 if (sp->sn_image == NULL) |
7947 MSG_PUTS(_(" (NOT FOUND)")); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7948 # else |
7 | 7949 MSG_PUTS(_(" (not supported)")); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7950 # endif |
7 | 7951 } |
7952 if (sp->sn_text != NULL) | |
7953 { | |
7954 MSG_PUTS(" text="); | |
7955 msg_outtrans(sp->sn_text); | |
7956 } | |
7957 if (sp->sn_line_hl > 0) | |
7958 { | |
7959 MSG_PUTS(" linehl="); | |
11254
918942a3b0ef
patch 8.0.0513: getting name of cleared highlight group is wrong
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
7960 p = get_highlight_name_ext(NULL, sp->sn_line_hl - 1, FALSE); |
7 | 7961 if (p == NULL) |
7962 MSG_PUTS("NONE"); | |
7963 else | |
7964 msg_puts(p); | |
7965 } | |
7966 if (sp->sn_text_hl > 0) | |
7967 { | |
7968 MSG_PUTS(" texthl="); | |
11254
918942a3b0ef
patch 8.0.0513: getting name of cleared highlight group is wrong
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
7969 p = get_highlight_name_ext(NULL, sp->sn_text_hl - 1, FALSE); |
7 | 7970 if (p == NULL) |
7971 MSG_PUTS("NONE"); | |
7972 else | |
7973 msg_puts(p); | |
7974 } | |
7975 } | |
7976 | |
7977 /* | |
1828 | 7978 * Undefine a sign and free its memory. |
7979 */ | |
7980 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7981 sign_undefine(sign_T *sp, sign_T *sp_prev) |
1828 | 7982 { |
7983 vim_free(sp->sn_name); | |
7984 vim_free(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7985 # ifdef FEAT_SIGN_ICONS |
1828 | 7986 if (sp->sn_image != NULL) |
7987 { | |
7988 out_flush(); | |
7989 gui_mch_destroy_sign(sp->sn_image); | |
7990 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7991 # endif |
1828 | 7992 vim_free(sp->sn_text); |
7993 if (sp_prev == NULL) | |
7994 first_sign = sp->sn_next; | |
7995 else | |
7996 sp_prev->sn_next = sp->sn_next; | |
7997 vim_free(sp); | |
7998 } | |
7999 | |
8000 /* | |
7 | 8001 * Get highlighting attribute for sign "typenr". |
8002 * If "line" is TRUE: line highl, if FALSE: text highl. | |
8003 */ | |
8004 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8005 sign_get_attr(int typenr, int line) |
7 | 8006 { |
8007 sign_T *sp; | |
8008 | |
8009 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8010 if (sp->sn_typenr == typenr) | |
8011 { | |
8012 if (line) | |
8013 { | |
8014 if (sp->sn_line_hl > 0) | |
8015 return syn_id2attr(sp->sn_line_hl); | |
8016 } | |
8017 else | |
8018 { | |
8019 if (sp->sn_text_hl > 0) | |
8020 return syn_id2attr(sp->sn_text_hl); | |
8021 } | |
8022 break; | |
8023 } | |
8024 return 0; | |
8025 } | |
8026 | |
8027 /* | |
8028 * Get text mark for sign "typenr". | |
8029 * Returns NULL if there isn't one. | |
8030 */ | |
8031 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8032 sign_get_text(int typenr) |
7 | 8033 { |
8034 sign_T *sp; | |
8035 | |
8036 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8037 if (sp->sn_typenr == typenr) | |
8038 return sp->sn_text; | |
8039 return NULL; | |
8040 } | |
8041 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8042 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
7 | 8043 void * |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8044 sign_get_image( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8045 int typenr) /* the attribute which may have a sign */ |
7 | 8046 { |
8047 sign_T *sp; | |
8048 | |
8049 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8050 if (sp->sn_typenr == typenr) | |
8051 return sp->sn_image; | |
8052 return NULL; | |
8053 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8054 # endif |
7 | 8055 |
8056 /* | |
8057 * Get the name of a sign by its typenr. | |
8058 */ | |
8059 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8060 sign_typenr2name(int typenr) |
7 | 8061 { |
8062 sign_T *sp; | |
8063 | |
8064 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8065 if (sp->sn_typenr == typenr) | |
8066 return sp->sn_name; | |
8067 return (char_u *)_("[Deleted]"); | |
8068 } | |
8069 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8070 # if defined(EXITFREE) || defined(PROTO) |
1828 | 8071 /* |
8072 * Undefine/free all signs. | |
8073 */ | |
8074 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8075 free_signs(void) |
1828 | 8076 { |
8077 while (first_sign != NULL) | |
8078 sign_undefine(first_sign, NULL); | |
8079 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8080 # endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8081 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8082 # if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
1868 | 8083 static enum |
8084 { | |
8085 EXP_SUBCMD, /* expand :sign sub-commands */ | |
8086 EXP_DEFINE, /* expand :sign define {name} args */ | |
8087 EXP_PLACE, /* expand :sign place {id} args */ | |
8088 EXP_UNPLACE, /* expand :sign unplace" */ | |
8089 EXP_SIGN_NAMES /* expand with name of placed signs */ | |
8090 } expand_what; | |
8091 | |
8092 /* | |
8093 * Function given to ExpandGeneric() to obtain the sign command | |
8094 * expansion. | |
8095 */ | |
8096 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8097 get_sign_name(expand_T *xp UNUSED, int idx) |
1868 | 8098 { |
8099 sign_T *sp; | |
8100 int current_idx; | |
8101 | |
8102 switch (expand_what) | |
8103 { | |
8104 case EXP_SUBCMD: | |
8105 return (char_u *)cmds[idx]; | |
8106 case EXP_DEFINE: | |
8107 { | |
8108 char *define_arg[] = | |
8109 { | |
8110 "icon=", "linehl=", "text=", "texthl=", NULL | |
8111 }; | |
8112 return (char_u *)define_arg[idx]; | |
8113 } | |
8114 case EXP_PLACE: | |
8115 { | |
8116 char *place_arg[] = | |
8117 { | |
8118 "line=", "name=", "file=", "buffer=", NULL | |
8119 }; | |
8120 return (char_u *)place_arg[idx]; | |
8121 } | |
8122 case EXP_UNPLACE: | |
8123 { | |
8124 char *unplace_arg[] = { "file=", "buffer=", NULL }; | |
8125 return (char_u *)unplace_arg[idx]; | |
8126 } | |
8127 case EXP_SIGN_NAMES: | |
8128 /* Complete with name of signs already defined */ | |
8129 current_idx = 0; | |
8130 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8131 if (current_idx++ == idx) | |
8132 return sp->sn_name; | |
8133 return NULL; | |
8134 default: | |
8135 return NULL; | |
8136 } | |
8137 } | |
8138 | |
8139 /* | |
8140 * Handle command line completion for :sign command. | |
8141 */ | |
8142 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8143 set_context_in_sign_cmd(expand_T *xp, char_u *arg) |
1868 | 8144 { |
8145 char_u *p; | |
8146 char_u *end_subcmd; | |
8147 char_u *last; | |
8148 int cmd_idx; | |
8149 char_u *begin_subcmd_args; | |
8150 | |
8151 /* Default: expand subcommands. */ | |
8152 xp->xp_context = EXPAND_SIGN; | |
8153 expand_what = EXP_SUBCMD; | |
8154 xp->xp_pattern = arg; | |
8155 | |
8156 end_subcmd = skiptowhite(arg); | |
8157 if (*end_subcmd == NUL) | |
8158 /* expand subcmd name | |
8159 * :sign {subcmd}<CTRL-D>*/ | |
8160 return; | |
8161 | |
8162 cmd_idx = sign_cmd_idx(arg, end_subcmd); | |
8163 | |
8164 /* :sign {subcmd} {subcmd_args} | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8165 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8166 * begin_subcmd_args */ |
1868 | 8167 begin_subcmd_args = skipwhite(end_subcmd); |
8168 p = skiptowhite(begin_subcmd_args); | |
8169 if (*p == NUL) | |
8170 { | |
8171 /* | |
8172 * Expand first argument of subcmd when possible. | |
8173 * For ":jump {id}" and ":unplace {id}", we could | |
8174 * possibly expand the ids of all signs already placed. | |
8175 */ | |
8176 xp->xp_pattern = begin_subcmd_args; | |
8177 switch (cmd_idx) | |
8178 { | |
8179 case SIGNCMD_LIST: | |
8180 case SIGNCMD_UNDEFINE: | |
8181 /* :sign list <CTRL-D> | |
8182 * :sign undefine <CTRL-D> */ | |
8183 expand_what = EXP_SIGN_NAMES; | |
8184 break; | |
8185 default: | |
8186 xp->xp_context = EXPAND_NOTHING; | |
8187 } | |
8188 return; | |
8189 } | |
8190 | |
8191 /* expand last argument of subcmd */ | |
8192 | |
8193 /* :sign define {name} {args}... | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8194 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8195 * p */ |
1868 | 8196 |
8197 /* Loop until reaching last argument. */ | |
8198 do | |
8199 { | |
8200 p = skipwhite(p); | |
8201 last = p; | |
8202 p = skiptowhite(p); | |
8203 } while (*p != NUL); | |
8204 | |
8205 p = vim_strchr(last, '='); | |
8206 | |
8207 /* :sign define {name} {args}... {last}= | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8208 * | | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8209 * last p */ |
10299
7b2f95633e28
commit https://github.com/vim/vim/commit/7756e7465d627ff9cd01e59625484a8c302ef853
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
8210 if (p == NULL) |
1868 | 8211 { |
8212 /* Expand last argument name (before equal sign). */ | |
8213 xp->xp_pattern = last; | |
8214 switch (cmd_idx) | |
8215 { | |
8216 case SIGNCMD_DEFINE: | |
8217 expand_what = EXP_DEFINE; | |
8218 break; | |
8219 case SIGNCMD_PLACE: | |
8220 expand_what = EXP_PLACE; | |
8221 break; | |
8222 case SIGNCMD_JUMP: | |
8223 case SIGNCMD_UNPLACE: | |
8224 expand_what = EXP_UNPLACE; | |
8225 break; | |
8226 default: | |
8227 xp->xp_context = EXPAND_NOTHING; | |
8228 } | |
8229 } | |
8230 else | |
8231 { | |
8232 /* Expand last argument value (after equal sign). */ | |
8233 xp->xp_pattern = p + 1; | |
8234 switch (cmd_idx) | |
8235 { | |
8236 case SIGNCMD_DEFINE: | |
8237 if (STRNCMP(last, "texthl", p - last) == 0 || | |
8238 STRNCMP(last, "linehl", p - last) == 0) | |
8239 xp->xp_context = EXPAND_HIGHLIGHT; | |
8240 else if (STRNCMP(last, "icon", p - last) == 0) | |
8241 xp->xp_context = EXPAND_FILES; | |
8242 else | |
8243 xp->xp_context = EXPAND_NOTHING; | |
8244 break; | |
8245 case SIGNCMD_PLACE: | |
8246 if (STRNCMP(last, "name", p - last) == 0) | |
8247 expand_what = EXP_SIGN_NAMES; | |
8248 else | |
8249 xp->xp_context = EXPAND_NOTHING; | |
8250 break; | |
8251 default: | |
8252 xp->xp_context = EXPAND_NOTHING; | |
8253 } | |
8254 } | |
8255 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8256 # endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8257 #endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8258 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8259 /* |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8260 * Make the user happy. |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8261 */ |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8262 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8263 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
|
8264 { |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8265 static char *code[] = { |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8266 "\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
|
8267 "\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
|
8268 }; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8269 char *p; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8270 int n; |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8271 int i; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8272 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8273 msg_start(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8274 msg_putchar('\n'); |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8275 for (i = 0; i < 2; ++i) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8276 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
|
8277 if (*p == 'x') |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8278 msg_putchar('\n'); |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8279 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8280 for (n = *p++; n > 0; --n) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8281 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
|
8282 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
|
8283 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8284 msg_putchar(*p); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8285 msg_clr_eos(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8286 } |
7 | 8287 |
8288 /* | |
8289 * ":drop" | |
8290 * Opens the first argument in a window. When there are two or more arguments | |
8291 * the argument list is redefined. | |
8292 */ | |
8293 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8294 ex_drop(exarg_T *eap) |
7 | 8295 { |
8296 int split = FALSE; | |
8297 win_T *wp; | |
8298 buf_T *buf; | |
735 | 8299 tabpage_T *tp; |
7 | 8300 |
8301 /* | |
8302 * Check if the first argument is already being edited in a window. If | |
8303 * so, jump to that window. | |
8304 * We would actually need to check all arguments, but that's complicated | |
8305 * and mostly only one file is dropped. | |
8306 * This also ignores wildcards, since it is very unlikely the user is | |
8307 * editing a file name with a wildcard character. | |
8308 */ | |
735 | 8309 set_arglist(eap->arg); |
8310 | |
1067 | 8311 /* |
8312 * Expanding wildcards may result in an empty argument list. E.g. when | |
8313 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we | |
8314 * already did an error message for this. | |
8315 */ | |
8316 if (ARGCOUNT == 0) | |
8317 return; | |
8318 | |
735 | 8319 if (cmdmod.tab) |
8320 { | |
8321 /* ":tab drop file ...": open a tab for each argument that isn't | |
8322 * edited in a window yet. It's like ":tab all" but without closing | |
8323 * windows or tabs. */ | |
8324 ex_all(eap); | |
8325 } | |
8326 else | |
8327 { | |
8328 /* ":drop file ...": Edit the first argument. Jump to an existing | |
8329 * window if possible, edit in current window if the current buffer | |
8330 * can be abandoned, otherwise open a new window. */ | |
8331 buf = buflist_findnr(ARGLIST[0].ae_fnum); | |
8332 | |
8333 FOR_ALL_TAB_WINDOWS(tp, wp) | |
8334 { | |
8335 if (wp->w_buffer == buf) | |
7 | 8336 { |
825 | 8337 goto_tabpage_win(tp, wp); |
7 | 8338 curwin->w_arg_idx = 0; |
8339 return; | |
8340 } | |
8341 } | |
735 | 8342 |
8343 /* | |
8344 * Check whether the current buffer is changed. If so, we will need | |
8345 * to split the current window or data could be lost. | |
8346 * Skip the check if the 'hidden' option is set, as in this case the | |
8347 * buffer won't be lost. | |
8348 */ | |
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
|
8349 if (!buf_hide(curbuf)) |
735 | 8350 { |
8351 ++emsg_off; | |
5464 | 8352 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD); |
735 | 8353 --emsg_off; |
8354 } | |
8355 | |
8356 /* Fake a ":sfirst" or ":first" command edit the first argument. */ | |
8357 if (split) | |
8358 { | |
8359 eap->cmdidx = CMD_sfirst; | |
8360 eap->cmd[0] = 's'; | |
8361 } | |
8362 else | |
8363 eap->cmdidx = CMD_first; | |
8364 ex_rewind(eap); | |
8365 } | |
7 | 8366 } |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8367 |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8368 /* |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8369 * 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
|
8370 * 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
|
8371 * 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
|
8372 * 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
|
8373 * 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
|
8374 */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8375 char_u * |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8376 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
|
8377 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8378 int c; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8379 |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8380 if (vim_isIDc(*p)) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8381 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8382 /* ":vimgrep pattern fname" */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8383 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8384 *s = p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8385 p = skiptowhite(p); |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8386 if (s != NULL && *p != NUL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8387 *p++ = NUL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8388 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8389 else |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8390 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8391 /* ":vimgrep /pattern/[g][j] fname" */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8392 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8393 *s = p + 1; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8394 c = *p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8395 p = skip_regexp(p + 1, c, TRUE, NULL); |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8396 if (*p != c) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8397 return NULL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8398 |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8399 /* Truncate the pattern. */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8400 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8401 *p = NUL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8402 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8403 |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8404 /* Find the flags */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8405 while (*p == 'g' || *p == 'j') |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8406 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8407 if (flags != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8408 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8409 if (*p == 'g') |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8410 *flags |= VGR_GLOBAL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8411 else |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8412 *flags |= VGR_NOJUMP; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8413 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8414 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8415 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8416 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8417 return p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8418 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8419 |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8420 #if defined(FEAT_EVAL) || defined(PROTO) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8421 /* |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8422 * 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
|
8423 */ |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8424 void |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8425 ex_oldfiles(exarg_T *eap UNUSED) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8426 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8427 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
|
8428 listitem_T *li; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8429 int nr = 0; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8430 char_u *fname; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8431 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8432 if (l == NULL) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8433 msg((char_u *)_("No old files")); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8434 else |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8435 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8436 msg_start(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8437 msg_scroll = TRUE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8438 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
|
8439 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8440 ++nr; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8441 fname = get_tv_string(&li->li_tv); |
9945
d63a89b526ea
commit https://github.com/vim/vim/commit/d6f2ee32dcfa18c781ef157918b524318a2215a2
Christian Brabandt <cb@256bit.org>
parents:
9931
diff
changeset
|
8442 if (!message_filtered(fname)) |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8443 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8444 msg_outnum((long)nr); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8445 MSG_PUTS(": "); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8446 msg_outtrans(fname); |
10021
5fc4bec66c33
commit https://github.com/vim/vim/commit/885c00eabe6d1fd757d4f0eb531ad3a15a35ec04
Christian Brabandt <cb@256bit.org>
parents:
9980
diff
changeset
|
8447 msg_clr_eos(); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8448 msg_putchar('\n'); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8449 out_flush(); /* output one line at a time */ |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8450 ui_breakcheck(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8451 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8452 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8453 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8454 /* Assume "got_int" was set to truncate the listing. */ |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8455 got_int = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8456 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8457 # ifdef FEAT_BROWSE_CMD |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8458 if (cmdmod.browse) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8459 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8460 quit_more = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8461 nr = prompt_for_number(FALSE); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8462 msg_starthere(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8463 if (nr > 0) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8464 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8465 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
|
8466 (long)nr); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8467 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8468 if (p != NULL) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8469 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8470 p = expand_env_save(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8471 eap->arg = p; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8472 eap->cmdidx = CMD_edit; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8473 cmdmod.browse = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8474 do_exedit(eap, NULL); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8475 vim_free(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8476 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8477 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8478 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8479 # endif |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8480 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8481 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8482 #endif |