Mercurial > vim
annotate src/ex_cmds.c @ 10643:9eee1718dcc6
Added tag v8.0.0211 for changeset c10f367d0dfc2440f86994309f1670294be18a5e
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 21 Jan 2017 23:00:05 +0100 |
parents | 21f983648487 |
children | 256b1b96c2ad |
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); |
7 | 31 #ifdef FEAT_AUTOCMD |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
32 static void delbuf_msg(char_u *name); |
7 | 33 #endif |
34 static int | |
35 #ifdef __BORLANDC__ | |
36 _RTLENTRYF | |
37 #endif | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
38 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
|
39 static void prepare_help_buffer(void); |
7 | 40 |
41 /* | |
42 * ":ascii" and "ga". | |
43 */ | |
44 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
45 do_ascii(exarg_T *eap UNUSED) |
7 | 46 { |
47 int c; | |
1784 | 48 int cval; |
7 | 49 char buf1[20]; |
50 char buf2[20]; | |
51 char_u buf3[7]; | |
52 #ifdef FEAT_MBYTE | |
714 | 53 int cc[MAX_MCO]; |
54 int ci = 0; | |
7 | 55 int len; |
56 | |
57 if (enc_utf8) | |
714 | 58 c = utfc_ptr2char(ml_get_cursor(), cc); |
7 | 59 else |
60 #endif | |
61 c = gchar_cursor(); | |
62 if (c == NUL) | |
63 { | |
64 MSG("NUL"); | |
65 return; | |
66 } | |
67 | |
68 #ifdef FEAT_MBYTE | |
69 IObuff[0] = NUL; | |
70 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80) | |
71 #endif | |
72 { | |
73 if (c == NL) /* NUL is stored as NL */ | |
74 c = NUL; | |
1784 | 75 if (c == CAR && get_fileformat(curbuf) == EOL_MAC) |
76 cval = NL; /* NL is stored as CR */ | |
77 else | |
78 cval = c; | |
7 | 79 if (vim_isprintc_strict(c) && (c < ' ' |
80 #ifndef EBCDIC | |
81 || c > '~' | |
82 #endif | |
83 )) | |
84 { | |
85 transchar_nonprint(buf3, c); | |
1872 | 86 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3); |
7 | 87 } |
88 else | |
89 buf1[0] = NUL; | |
90 #ifndef EBCDIC | |
91 if (c >= 0x80) | |
1872 | 92 vim_snprintf(buf2, sizeof(buf2), " <M-%s>", |
93 (char *)transchar(c & 0x7f)); | |
7 | 94 else |
95 #endif | |
96 buf2[0] = NUL; | |
274 | 97 vim_snprintf((char *)IObuff, IOSIZE, |
98 _("<%s>%s%s %d, Hex %02x, Octal %03o"), | |
1784 | 99 transchar(c), buf1, buf2, cval, cval, cval); |
7 | 100 #ifdef FEAT_MBYTE |
963 | 101 if (enc_utf8) |
102 c = cc[ci++]; | |
103 else | |
104 c = 0; | |
7 | 105 #endif |
106 } | |
107 | |
108 #ifdef FEAT_MBYTE | |
109 /* Repeat for combining characters. */ | |
110 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80))) | |
111 { | |
112 len = (int)STRLEN(IObuff); | |
113 /* This assumes every multi-byte char is printable... */ | |
114 if (len > 0) | |
115 IObuff[len++] = ' '; | |
116 IObuff[len++] = '<'; | |
963 | 117 if (enc_utf8 && utf_iscomposing(c) |
625 | 118 # ifdef USE_GUI |
7 | 119 && !gui.in_use |
625 | 120 # endif |
7 | 121 ) |
122 IObuff[len++] = ' '; /* draw composing char on top of a space */ | |
274 | 123 len += (*mb_char2bytes)(c, IObuff + len); |
124 vim_snprintf((char *)IObuff + len, IOSIZE - len, | |
7 | 125 c < 0x10000 ? _("> %d, Hex %04x, Octal %o") |
126 : _("> %d, Hex %08x, Octal %o"), c, c, c); | |
714 | 127 if (ci == MAX_MCO) |
128 break; | |
963 | 129 if (enc_utf8) |
130 c = cc[ci++]; | |
131 else | |
132 c = 0; | |
7 | 133 } |
134 #endif | |
135 | |
136 msg(IObuff); | |
137 } | |
138 | |
139 /* | |
140 * ":left", ":center" and ":right": align text. | |
141 */ | |
142 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
143 ex_align(exarg_T *eap) |
7 | 144 { |
145 pos_T save_curpos; | |
146 int len; | |
147 int indent = 0; | |
148 int new_indent; | |
149 int has_tab; | |
150 int width; | |
151 | |
152 #ifdef FEAT_RIGHTLEFT | |
153 if (curwin->w_p_rl) | |
154 { | |
155 /* switch left and right aligning */ | |
156 if (eap->cmdidx == CMD_right) | |
157 eap->cmdidx = CMD_left; | |
158 else if (eap->cmdidx == CMD_left) | |
159 eap->cmdidx = CMD_right; | |
160 } | |
161 #endif | |
162 | |
163 width = atoi((char *)eap->arg); | |
164 save_curpos = curwin->w_cursor; | |
165 if (eap->cmdidx == CMD_left) /* width is used for new indent */ | |
166 { | |
167 if (width >= 0) | |
168 indent = width; | |
169 } | |
170 else | |
171 { | |
172 /* | |
173 * if 'textwidth' set, use it | |
174 * else if 'wrapmargin' set, use it | |
175 * if invalid value, use 80 | |
176 */ | |
177 if (width <= 0) | |
178 width = curbuf->b_p_tw; | |
179 if (width == 0 && curbuf->b_p_wm > 0) | |
180 width = W_WIDTH(curwin) - curbuf->b_p_wm; | |
181 if (width <= 0) | |
182 width = 80; | |
183 } | |
184 | |
185 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) | |
186 return; | |
187 | |
188 for (curwin->w_cursor.lnum = eap->line1; | |
189 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum) | |
190 { | |
191 if (eap->cmdidx == CMD_left) /* left align */ | |
192 new_indent = indent; | |
193 else | |
194 { | |
944 | 195 has_tab = FALSE; /* avoid uninit warnings */ |
7 | 196 len = linelen(eap->cmdidx == CMD_right ? &has_tab |
197 : NULL) - get_indent(); | |
198 | |
199 if (len <= 0) /* skip blank lines */ | |
200 continue; | |
201 | |
202 if (eap->cmdidx == CMD_center) | |
203 new_indent = (width - len) / 2; | |
204 else | |
205 { | |
206 new_indent = width - len; /* right align */ | |
207 | |
208 /* | |
209 * Make sure that embedded TABs don't make the text go too far | |
210 * to the right. | |
211 */ | |
212 if (has_tab) | |
213 while (new_indent > 0) | |
214 { | |
215 (void)set_indent(new_indent, 0); | |
216 if (linelen(NULL) <= width) | |
217 { | |
218 /* | |
219 * Now try to move the line as much as possible to | |
220 * the right. Stop when it moves too far. | |
221 */ | |
222 do | |
223 (void)set_indent(++new_indent, 0); | |
224 while (linelen(NULL) <= width); | |
225 --new_indent; | |
226 break; | |
227 } | |
228 --new_indent; | |
229 } | |
230 } | |
231 } | |
232 if (new_indent < 0) | |
233 new_indent = 0; | |
234 (void)set_indent(new_indent, 0); /* set indent */ | |
235 } | |
236 changed_lines(eap->line1, 0, eap->line2 + 1, 0L); | |
237 curwin->w_cursor = save_curpos; | |
238 beginline(BL_WHITE | BL_FIX); | |
239 } | |
240 | |
241 /* | |
242 * Get the length of the current line, excluding trailing white space. | |
243 */ | |
244 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
245 linelen(int *has_tab) |
7 | 246 { |
247 char_u *line; | |
248 char_u *first; | |
249 char_u *last; | |
250 int save; | |
251 int len; | |
252 | |
253 /* find the first non-blank character */ | |
254 line = ml_get_curline(); | |
255 first = skipwhite(line); | |
256 | |
257 /* find the character after the last non-blank character */ | |
258 for (last = first + STRLEN(first); | |
259 last > first && vim_iswhite(last[-1]); --last) | |
260 ; | |
261 save = *last; | |
262 *last = NUL; | |
263 len = linetabsize(line); /* get line length */ | |
264 if (has_tab != NULL) /* check for embedded TAB */ | |
265 *has_tab = (vim_strrchr(first, TAB) != NULL); | |
266 *last = save; | |
267 | |
268 return len; | |
269 } | |
270 | |
826 | 271 /* Buffer for two lines used during sorting. They are allocated to |
272 * contain the longest line being sorted. */ | |
273 static char_u *sortbuf1; | |
274 static char_u *sortbuf2; | |
284 | 275 |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
276 static int sort_ic; /* ignore case */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
277 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
|
278 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
|
279 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
280 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
|
281 #endif |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
282 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
283 static int sort_abort; /* flag to indicate if sorting has been interrupted */ |
294 | 284 |
285 /* Struct to store info to be sorted. */ | |
286 typedef struct | |
287 { | |
288 linenr_T lnum; /* line number */ | |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
289 union { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
290 struct |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
291 { |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
292 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
|
293 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
|
294 } line; |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
295 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
|
296 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
297 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
|
298 #endif |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
299 } st_u; |
294 | 300 } sorti_T; |
284 | 301 |
302 static int | |
303 #ifdef __BORLANDC__ | |
304 _RTLENTRYF | |
305 #endif | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
306 sort_compare(const void *s1, const void *s2); |
284 | 307 |
308 static int | |
309 #ifdef __BORLANDC__ | |
310 _RTLENTRYF | |
311 #endif | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
312 sort_compare(const void *s1, const void *s2) |
284 | 313 { |
294 | 314 sorti_T l1 = *(sorti_T *)s1; |
315 sorti_T l2 = *(sorti_T *)s2; | |
826 | 316 int result = 0; |
317 | |
318 /* If the user interrupts, there's no way to stop qsort() immediately, but | |
834 | 319 * if we return 0 every time, qsort will assume it's done sorting and |
320 * exit. */ | |
826 | 321 if (sort_abort) |
322 return 0; | |
323 fast_breakcheck(); | |
324 if (got_int) | |
325 sort_abort = TRUE; | |
326 | |
834 | 327 /* When sorting numbers "start_col_nr" is the number, not the column |
328 * number. */ | |
294 | 329 if (sort_nr) |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
330 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
|
331 : 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
|
332 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
333 else if (sort_flt) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
334 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
|
335 : 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
|
336 #endif |
826 | 337 else |
338 { | |
834 | 339 /* We need to copy one line into "sortbuf1", because there is no |
340 * guarantee that the first pointer becomes invalid when obtaining the | |
341 * second one. */ | |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
342 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
|
343 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
|
344 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
|
345 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
|
346 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
|
347 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0; |
826 | 348 |
834 | 349 result = sort_ic ? STRICMP(sortbuf1, sortbuf2) |
350 : STRCMP(sortbuf1, sortbuf2); | |
351 } | |
352 | |
353 /* If two lines have the same value, preserve the original line order. */ | |
826 | 354 if (result == 0) |
834 | 355 return (int)(l1.lnum - l2.lnum); |
356 return result; | |
284 | 357 } |
358 | |
359 /* | |
360 * ":sort". | |
361 */ | |
362 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
363 ex_sort(exarg_T *eap) |
284 | 364 { |
365 regmatch_T regmatch; | |
366 int len; | |
367 linenr_T lnum; | |
368 long maxlen = 0; | |
294 | 369 sorti_T *nrs; |
1872 | 370 size_t count = (size_t)(eap->line2 - eap->line1 + 1); |
294 | 371 size_t i; |
284 | 372 char_u *p; |
373 char_u *s; | |
826 | 374 char_u *s2; |
375 char_u c; /* temporary character storage */ | |
284 | 376 int unique = FALSE; |
377 long deleted; | |
826 | 378 colnr_T start_col; |
379 colnr_T end_col; | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
380 int sort_what = 0; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
381 int format_found = 0; |
284 | 382 |
1538 | 383 /* Sorting one line is really quick! */ |
384 if (count <= 1) | |
385 return; | |
386 | |
284 | 387 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
388 return; | |
826 | 389 sortbuf1 = NULL; |
390 sortbuf2 = NULL; | |
284 | 391 regmatch.regprog = NULL; |
294 | 392 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE); |
284 | 393 if (nrs == NULL) |
826 | 394 goto sortend; |
395 | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
396 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
|
397 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
398 sort_flt = 0; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
399 #endif |
294 | 400 |
284 | 401 for (p = eap->arg; *p != NUL; ++p) |
402 { | |
403 if (vim_iswhite(*p)) | |
404 ; | |
405 else if (*p == 'i') | |
406 sort_ic = TRUE; | |
826 | 407 else if (*p == 'r') |
408 sort_rx = TRUE; | |
294 | 409 else if (*p == 'n') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
410 { |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
411 sort_nr = 1; |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
412 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
413 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
414 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
415 else if (*p == 'f') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
416 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
417 sort_flt = 1; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
418 ++format_found; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
419 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
420 #endif |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
421 else if (*p == 'b') |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
422 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
423 sort_what = STR2NR_BIN + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
424 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
425 } |
294 | 426 else if (*p == 'o') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
427 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
428 sort_what = STR2NR_OCT + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
429 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
430 } |
294 | 431 else if (*p == 'x') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
432 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
433 sort_what = STR2NR_HEX + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
434 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
435 } |
284 | 436 else if (*p == 'u') |
437 unique = TRUE; | |
289 | 438 else if (*p == '"') /* comment start */ |
439 break; | |
440 else if (check_nextcmd(p) != NULL) | |
441 { | |
442 eap->nextcmd = check_nextcmd(p); | |
443 break; | |
444 } | |
445 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL) | |
284 | 446 { |
447 s = skip_regexp(p + 1, *p, TRUE, NULL); | |
448 if (*s != *p) | |
449 { | |
450 EMSG(_(e_invalpat)); | |
826 | 451 goto sortend; |
284 | 452 } |
453 *s = NUL; | |
1314 | 454 /* Use last search pattern if sort pattern is empty. */ |
4199 | 455 if (s == p + 1) |
456 { | |
457 if (last_search_pat() == NULL) | |
458 { | |
459 EMSG(_(e_noprevre)); | |
460 goto sortend; | |
461 } | |
1314 | 462 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC); |
4199 | 463 } |
1314 | 464 else |
465 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC); | |
284 | 466 if (regmatch.regprog == NULL) |
826 | 467 goto sortend; |
289 | 468 p = s; /* continue after the regexp */ |
284 | 469 regmatch.rm_ic = p_ic; |
470 } | |
471 else | |
472 { | |
473 EMSG2(_(e_invarg2), p); | |
826 | 474 goto sortend; |
284 | 475 } |
476 } | |
477 | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
478 /* 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
|
479 if (format_found > 1) |
294 | 480 { |
481 EMSG(_(e_invarg)); | |
826 | 482 goto sortend; |
294 | 483 } |
484 | |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
485 /* 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
|
486 * sorting. */ |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
487 sort_nr += sort_what; |
294 | 488 |
284 | 489 /* |
294 | 490 * Make an array with all line numbers. This avoids having to copy all |
284 | 491 * the lines into allocated memory. |
826 | 492 * When sorting on strings "start_col_nr" is the offset in the line, for |
493 * numbers sorting it's the number to sort on. This means the pattern | |
494 * matching and number conversion only has to be done once per line. | |
294 | 495 * Also get the longest line length for allocating "sortbuf". |
284 | 496 */ |
497 for (lnum = eap->line1; lnum <= eap->line2; ++lnum) | |
498 { | |
499 s = ml_get(lnum); | |
835 | 500 len = (int)STRLEN(s); |
284 | 501 if (maxlen < len) |
502 maxlen = len; | |
294 | 503 |
826 | 504 start_col = 0; |
505 end_col = len; | |
294 | 506 if (regmatch.regprog != NULL && vim_regexec(®match, s, 0)) |
826 | 507 { |
508 if (sort_rx) | |
509 { | |
835 | 510 start_col = (colnr_T)(regmatch.startp[0] - s); |
511 end_col = (colnr_T)(regmatch.endp[0] - s); | |
826 | 512 } |
513 else | |
835 | 514 start_col = (colnr_T)(regmatch.endp[0] - s); |
826 | 515 } |
294 | 516 else |
826 | 517 if (regmatch.regprog != NULL) |
518 end_col = 0; | |
294 | 519 |
7844
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
520 if (sort_nr |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
521 #ifdef FEAT_FLOAT |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
522 || sort_flt |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
523 #endif |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
524 ) |
294 | 525 { |
826 | 526 /* Make sure vim_str2nr doesn't read any digits past the end |
527 * of the match, by temporarily terminating the string there */ | |
528 s2 = s + end_col; | |
529 c = *s2; | |
2606 | 530 *s2 = NUL; |
294 | 531 /* Sorting on number: Store the number itself. */ |
1687 | 532 p = s + start_col; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
533 if (sort_nr) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
534 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
535 if (sort_what & STR2NR_HEX) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
536 s = skiptohex(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
537 else if (sort_what & STR2NR_BIN) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
538 s = skiptobin(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
539 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
540 s = skiptodigit(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
541 if (s > p && s[-1] == '-') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
542 --s; /* include preceding negative sign */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
543 if (*s == NUL) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
544 /* 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
|
545 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
|
546 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
547 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
|
548 &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
|
549 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
550 #ifdef FEAT_FLOAT |
294 | 551 else |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
552 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
553 s = skipwhite(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
554 if (*s == '+') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
555 s = skipwhite(s + 1); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
556 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
557 if (*s == NUL) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
558 /* 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
|
559 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
|
560 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
561 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
|
562 strtod((char *)s, NULL); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
563 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
564 #endif |
2606 | 565 *s2 = c; |
294 | 566 } |
567 else | |
826 | 568 { |
294 | 569 /* 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
|
570 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
|
571 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col; |
826 | 572 } |
294 | 573 |
574 nrs[lnum - eap->line1].lnum = lnum; | |
481 | 575 |
576 if (regmatch.regprog != NULL) | |
577 fast_breakcheck(); | |
578 if (got_int) | |
826 | 579 goto sortend; |
284 | 580 } |
581 | |
294 | 582 /* Allocate a buffer that can hold the longest line. */ |
826 | 583 sortbuf1 = alloc((unsigned)maxlen + 1); |
584 if (sortbuf1 == NULL) | |
585 goto sortend; | |
586 sortbuf2 = alloc((unsigned)maxlen + 1); | |
587 if (sortbuf2 == NULL) | |
588 goto sortend; | |
284 | 589 |
481 | 590 /* Sort the array of line numbers. Note: can't be interrupted! */ |
294 | 591 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare); |
284 | 592 |
826 | 593 if (sort_abort) |
594 goto sortend; | |
595 | |
284 | 596 /* Insert the lines in the sorted order below the last one. */ |
597 lnum = eap->line2; | |
598 for (i = 0; i < count; ++i) | |
599 { | |
600 s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum); | |
601 if (!unique || i == 0 | |
826 | 602 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0) |
284 | 603 { |
7340
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
604 /* 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
|
605 * 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
|
606 STRCPY(sortbuf1, s); |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
607 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL) |
284 | 608 break; |
609 } | |
481 | 610 fast_breakcheck(); |
611 if (got_int) | |
826 | 612 goto sortend; |
284 | 613 } |
614 | |
615 /* delete the original lines if appending worked */ | |
616 if (i == count) | |
617 for (i = 0; i < count; ++i) | |
618 ml_delete(eap->line1, FALSE); | |
619 else | |
620 count = 0; | |
621 | |
294 | 622 /* Adjust marks for deleted (or added) lines and prepare for displaying. */ |
835 | 623 deleted = (long)(count - (lnum - eap->line2)); |
284 | 624 if (deleted > 0) |
625 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted); | |
626 else if (deleted < 0) | |
627 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L); | |
628 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted); | |
294 | 629 |
284 | 630 curwin->w_cursor.lnum = eap->line1; |
631 beginline(BL_WHITE | BL_FIX); | |
632 | |
826 | 633 sortend: |
284 | 634 vim_free(nrs); |
826 | 635 vim_free(sortbuf1); |
636 vim_free(sortbuf2); | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
637 vim_regfree(regmatch.regprog); |
481 | 638 if (got_int) |
639 EMSG(_(e_interr)); | |
284 | 640 } |
641 | |
7 | 642 /* |
643 * ":retab". | |
644 */ | |
645 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
646 ex_retab(exarg_T *eap) |
7 | 647 { |
648 linenr_T lnum; | |
649 int got_tab = FALSE; | |
650 long num_spaces = 0; | |
651 long num_tabs; | |
652 long len; | |
653 long col; | |
654 long vcol; | |
655 long start_col = 0; /* For start of white-space string */ | |
656 long start_vcol = 0; /* For start of white-space string */ | |
657 int temp; | |
658 long old_len; | |
659 char_u *ptr; | |
660 char_u *new_line = (char_u *)1; /* init to non-NULL */ | |
661 int did_undo; /* called u_save for current line */ | |
662 int new_ts; | |
663 int save_list; | |
664 linenr_T first_line = 0; /* first changed line */ | |
665 linenr_T last_line = 0; /* last changed line */ | |
666 | |
667 save_list = curwin->w_p_list; | |
668 curwin->w_p_list = 0; /* don't want list mode here */ | |
669 | |
670 new_ts = getdigits(&(eap->arg)); | |
671 if (new_ts < 0) | |
672 { | |
673 EMSG(_(e_positive)); | |
674 return; | |
675 } | |
676 if (new_ts == 0) | |
677 new_ts = curbuf->b_p_ts; | |
678 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum) | |
679 { | |
680 ptr = ml_get(lnum); | |
681 col = 0; | |
682 vcol = 0; | |
683 did_undo = FALSE; | |
684 for (;;) | |
685 { | |
686 if (vim_iswhite(ptr[col])) | |
687 { | |
688 if (!got_tab && num_spaces == 0) | |
689 { | |
690 /* First consecutive white-space */ | |
691 start_vcol = vcol; | |
692 start_col = col; | |
693 } | |
694 if (ptr[col] == ' ') | |
695 num_spaces++; | |
696 else | |
697 got_tab = TRUE; | |
698 } | |
699 else | |
700 { | |
701 if (got_tab || (eap->forceit && num_spaces > 1)) | |
702 { | |
703 /* Retabulate this string of white-space */ | |
704 | |
705 /* len is virtual length of white string */ | |
706 len = num_spaces = vcol - start_vcol; | |
707 num_tabs = 0; | |
708 if (!curbuf->b_p_et) | |
709 { | |
710 temp = new_ts - (start_vcol % new_ts); | |
711 if (num_spaces >= temp) | |
712 { | |
713 num_spaces -= temp; | |
714 num_tabs++; | |
715 } | |
716 num_tabs += num_spaces / new_ts; | |
717 num_spaces -= (num_spaces / new_ts) * new_ts; | |
718 } | |
719 if (curbuf->b_p_et || got_tab || | |
720 (num_spaces + num_tabs < len)) | |
721 { | |
722 if (did_undo == FALSE) | |
723 { | |
724 did_undo = TRUE; | |
725 if (u_save((linenr_T)(lnum - 1), | |
726 (linenr_T)(lnum + 1)) == FAIL) | |
727 { | |
728 new_line = NULL; /* flag out-of-memory */ | |
729 break; | |
730 } | |
731 } | |
732 | |
733 /* len is actual number of white characters used */ | |
734 len = num_spaces + num_tabs; | |
735 old_len = (long)STRLEN(ptr); | |
736 new_line = lalloc(old_len - col + start_col + len + 1, | |
737 TRUE); | |
738 if (new_line == NULL) | |
739 break; | |
740 if (start_col > 0) | |
741 mch_memmove(new_line, ptr, (size_t)start_col); | |
742 mch_memmove(new_line + start_col + len, | |
743 ptr + col, (size_t)(old_len - col + 1)); | |
744 ptr = new_line + start_col; | |
745 for (col = 0; col < len; col++) | |
746 ptr[col] = (col < num_tabs) ? '\t' : ' '; | |
747 ml_replace(lnum, new_line, FALSE); | |
748 if (first_line == 0) | |
749 first_line = lnum; | |
750 last_line = lnum; | |
751 ptr = new_line; | |
752 col = start_col + len; | |
753 } | |
754 } | |
755 got_tab = FALSE; | |
756 num_spaces = 0; | |
757 } | |
758 if (ptr[col] == NUL) | |
759 break; | |
760 vcol += chartabsize(ptr + col, (colnr_T)vcol); | |
761 #ifdef FEAT_MBYTE | |
762 if (has_mbyte) | |
474 | 763 col += (*mb_ptr2len)(ptr + col); |
7 | 764 else |
765 #endif | |
766 ++col; | |
767 } | |
768 if (new_line == NULL) /* out of memory */ | |
769 break; | |
770 line_breakcheck(); | |
771 } | |
772 if (got_int) | |
773 EMSG(_(e_interr)); | |
774 | |
775 if (curbuf->b_p_ts != new_ts) | |
776 redraw_curbuf_later(NOT_VALID); | |
777 if (first_line != 0) | |
778 changed_lines(first_line, 0, last_line + 1, 0L); | |
779 | |
780 curwin->w_p_list = save_list; /* restore 'list' */ | |
781 | |
782 curbuf->b_p_ts = new_ts; | |
783 coladvance(curwin->w_curswant); | |
784 | |
785 u_clearline(); | |
786 } | |
787 | |
788 /* | |
789 * :move command - move lines line1-line2 to line dest | |
790 * | |
791 * return FAIL for failure, OK otherwise | |
792 */ | |
793 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
794 do_move(linenr_T line1, linenr_T line2, linenr_T dest) |
7 | 795 { |
796 char_u *str; | |
797 linenr_T l; | |
798 linenr_T extra; /* Num lines added before line1 */ | |
799 linenr_T num_lines; /* Num lines moved */ | |
800 linenr_T last_line; /* Last line in file after adding new text */ | |
6755 | 801 #ifdef FEAT_FOLDING |
802 int isFolded; | |
803 | |
804 /* Moving lines seems to corrupt the folds, delete folding info now | |
805 * and recreate it when finished. Don't do this for manual folding, it | |
806 * would delete all folds. */ | |
807 isFolded = hasAnyFolding(curwin) && !foldmethodIsManual(curwin); | |
808 if (isFolded) | |
809 deleteFoldRecurse(&curwin->w_folds); | |
810 #endif | |
7 | 811 |
812 if (dest >= line1 && dest < line2) | |
813 { | |
814 EMSG(_("E134: Move lines into themselves")); | |
815 return FAIL; | |
816 } | |
817 | |
818 num_lines = line2 - line1 + 1; | |
819 | |
820 /* | |
821 * First we copy the old text to its new location -- webb | |
822 * Also copy the flag that ":global" command uses. | |
823 */ | |
824 if (u_save(dest, dest + 1) == FAIL) | |
825 return FAIL; | |
826 for (extra = 0, l = line1; l <= line2; l++) | |
827 { | |
828 str = vim_strsave(ml_get(l + extra)); | |
829 if (str != NULL) | |
830 { | |
831 ml_append(dest + l - line1, str, (colnr_T)0, FALSE); | |
832 vim_free(str); | |
833 if (dest < line1) | |
834 extra++; | |
835 } | |
836 } | |
837 | |
838 /* | |
839 * Now we must be careful adjusting our marks so that we don't overlap our | |
840 * mark_adjust() calls. | |
841 * | |
842 * We adjust the marks within the old text so that they refer to the | |
843 * last lines of the file (temporarily), because we know no other marks | |
844 * will be set there since these line numbers did not exist until we added | |
845 * our new lines. | |
846 * | |
847 * Then we adjust the marks on lines between the old and new text positions | |
848 * (either forwards or backwards). | |
849 * | |
850 * And Finally we adjust the marks we put at the end of the file back to | |
851 * their final destination at the new text position -- webb | |
852 */ | |
853 last_line = curbuf->b_ml.ml_line_count; | |
854 mark_adjust(line1, line2, last_line - line2, 0L); | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
855 changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines); |
7 | 856 if (dest >= line2) |
857 { | |
858 mark_adjust(line2 + 1, dest, -num_lines, 0L); | |
859 curbuf->b_op_start.lnum = dest - num_lines + 1; | |
860 curbuf->b_op_end.lnum = dest; | |
861 } | |
862 else | |
863 { | |
864 mark_adjust(dest + 1, line1 - 1, num_lines, 0L); | |
865 curbuf->b_op_start.lnum = dest + 1; | |
866 curbuf->b_op_end.lnum = dest + num_lines; | |
867 } | |
868 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
869 mark_adjust(last_line - num_lines + 1, last_line, | |
870 -(last_line - dest - extra), 0L); | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
871 changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra); |
7 | 872 |
873 /* | |
874 * Now we delete the original text -- webb | |
875 */ | |
876 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL) | |
877 return FAIL; | |
878 | |
879 for (l = line1; l <= line2; l++) | |
880 ml_delete(line1 + extra, TRUE); | |
881 | |
882 if (!global_busy && num_lines > p_report) | |
883 { | |
884 if (num_lines == 1) | |
885 MSG(_("1 line moved")); | |
886 else | |
887 smsg((char_u *)_("%ld lines moved"), num_lines); | |
888 } | |
889 | |
890 /* | |
891 * Leave the cursor on the last of the moved lines. | |
892 */ | |
893 if (dest >= line1) | |
894 curwin->w_cursor.lnum = dest; | |
895 else | |
896 curwin->w_cursor.lnum = dest + (line2 - line1) + 1; | |
897 | |
898 if (line1 < dest) | |
3184 | 899 { |
900 dest += num_lines + 1; | |
901 last_line = curbuf->b_ml.ml_line_count; | |
902 if (dest > last_line + 1) | |
903 dest = last_line + 1; | |
904 changed_lines(line1, 0, dest, 0L); | |
905 } | |
7 | 906 else |
907 changed_lines(dest + 1, 0, line1 + num_lines, 0L); | |
908 | |
6755 | 909 #ifdef FEAT_FOLDING |
910 /* recreate folds */ | |
911 if (isFolded) | |
912 foldUpdateAll(curwin); | |
913 #endif | |
914 | |
7 | 915 return OK; |
916 } | |
917 | |
918 /* | |
919 * ":copy" | |
920 */ | |
921 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
922 ex_copy(linenr_T line1, linenr_T line2, linenr_T n) |
7 | 923 { |
924 linenr_T count; | |
925 char_u *p; | |
926 | |
927 count = line2 - line1 + 1; | |
928 curbuf->b_op_start.lnum = n + 1; | |
929 curbuf->b_op_end.lnum = n + count; | |
930 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
931 | |
932 /* | |
933 * there are three situations: | |
934 * 1. destination is above line1 | |
935 * 2. destination is between line1 and line2 | |
936 * 3. destination is below line2 | |
937 * | |
938 * n = destination (when starting) | |
939 * curwin->w_cursor.lnum = destination (while copying) | |
940 * line1 = start of source (while copying) | |
941 * line2 = end of source (while copying) | |
942 */ | |
943 if (u_save(n, n + 1) == FAIL) | |
944 return; | |
945 | |
946 curwin->w_cursor.lnum = n; | |
947 while (line1 <= line2) | |
948 { | |
949 /* need to use vim_strsave() because the line will be unlocked within | |
950 * ml_append() */ | |
951 p = vim_strsave(ml_get(line1)); | |
952 if (p != NULL) | |
953 { | |
954 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE); | |
955 vim_free(p); | |
956 } | |
957 /* situation 2: skip already copied lines */ | |
958 if (line1 == n) | |
959 line1 = curwin->w_cursor.lnum; | |
960 ++line1; | |
961 if (curwin->w_cursor.lnum < line1) | |
962 ++line1; | |
963 if (curwin->w_cursor.lnum < line2) | |
964 ++line2; | |
965 ++curwin->w_cursor.lnum; | |
966 } | |
967 | |
968 appended_lines_mark(n, count); | |
969 | |
970 msgmore((long)count); | |
971 } | |
972 | |
359 | 973 static char_u *prevcmd = NULL; /* the previous command */ |
974 | |
975 #if defined(EXITFREE) || defined(PROTO) | |
976 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
977 free_prev_shellcmd(void) |
359 | 978 { |
979 vim_free(prevcmd); | |
980 } | |
981 #endif | |
982 | |
7 | 983 /* |
984 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd" | |
985 * Bangs in the argument are replaced with the previously entered command. | |
986 * Remember the argument. | |
987 */ | |
988 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
989 do_bang( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
990 int addr_count, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
991 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
992 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
993 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
994 int do_out) |
7 | 995 { |
996 char_u *arg = eap->arg; /* command */ | |
997 linenr_T line1 = eap->line1; /* start of range */ | |
998 linenr_T line2 = eap->line2; /* end of range */ | |
999 char_u *newcmd = NULL; /* the new command */ | |
1000 int free_newcmd = FALSE; /* need to free() newcmd */ | |
1001 int ins_prevcmd; | |
1002 char_u *t; | |
1003 char_u *p; | |
1004 char_u *trailarg; | |
1005 int len; | |
1006 int scroll_save = msg_scroll; | |
1007 | |
1008 /* | |
1009 * Disallow shell commands for "rvim". | |
1010 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1011 * security reasons. | |
1012 */ | |
1013 if (check_restricted() || check_secure()) | |
1014 return; | |
1015 | |
1016 if (addr_count == 0) /* :! */ | |
1017 { | |
1018 msg_scroll = FALSE; /* don't scroll here */ | |
1019 autowrite_all(); | |
1020 msg_scroll = scroll_save; | |
1021 } | |
1022 | |
1023 /* | |
1024 * Try to find an embedded bang, like in :!<cmd> ! [args] | |
1025 * (:!! is indicated by the 'forceit' variable) | |
1026 */ | |
1027 ins_prevcmd = forceit; | |
1028 trailarg = arg; | |
1029 do | |
1030 { | |
1031 len = (int)STRLEN(trailarg) + 1; | |
1032 if (newcmd != NULL) | |
1033 len += (int)STRLEN(newcmd); | |
1034 if (ins_prevcmd) | |
1035 { | |
1036 if (prevcmd == NULL) | |
1037 { | |
1038 EMSG(_(e_noprev)); | |
1039 vim_free(newcmd); | |
1040 return; | |
1041 } | |
1042 len += (int)STRLEN(prevcmd); | |
1043 } | |
1872 | 1044 if ((t = alloc((unsigned)len)) == NULL) |
7 | 1045 { |
1046 vim_free(newcmd); | |
1047 return; | |
1048 } | |
1049 *t = NUL; | |
1050 if (newcmd != NULL) | |
1051 STRCAT(t, newcmd); | |
1052 if (ins_prevcmd) | |
1053 STRCAT(t, prevcmd); | |
1054 p = t + STRLEN(t); | |
1055 STRCAT(t, trailarg); | |
1056 vim_free(newcmd); | |
1057 newcmd = t; | |
1058 | |
1059 /* | |
1060 * Scan the rest of the argument for '!', which is replaced by the | |
1061 * previous command. "\!" is replaced by "!" (this is vi compatible). | |
1062 */ | |
1063 trailarg = NULL; | |
1064 while (*p) | |
1065 { | |
2823 | 1066 if (*p == '!') |
7 | 1067 { |
1068 if (p > newcmd && p[-1] == '\\') | |
1624 | 1069 STRMOVE(p - 1, p); |
7 | 1070 else |
1071 { | |
1072 trailarg = p; | |
1073 *trailarg++ = NUL; | |
1074 ins_prevcmd = TRUE; | |
1075 break; | |
1076 } | |
1077 } | |
1078 ++p; | |
1079 } | |
1080 } while (trailarg != NULL); | |
1081 | |
1082 vim_free(prevcmd); | |
1083 prevcmd = newcmd; | |
1084 | |
1085 if (bangredo) /* put cmd in redo buffer for ! command */ | |
1086 { | |
5728 | 1087 /* If % or # appears in the command, it must have been escaped. |
1088 * Reescape them, so that redoing them does not substitute them by the | |
1089 * buffername. */ | |
1090 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#"); | |
1091 | |
1092 if (cmd != NULL) | |
1093 { | |
1094 AppendToRedobuffLit(cmd, -1); | |
1095 vim_free(cmd); | |
1096 } | |
1097 else | |
1098 AppendToRedobuffLit(prevcmd, -1); | |
7 | 1099 AppendToRedobuff((char_u *)"\n"); |
1100 bangredo = FALSE; | |
1101 } | |
1102 /* | |
1103 * Add quotes around the command, for shells that need them. | |
1104 */ | |
1105 if (*p_shq != NUL) | |
1106 { | |
1107 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1)); | |
1108 if (newcmd == NULL) | |
1109 return; | |
1110 STRCPY(newcmd, p_shq); | |
1111 STRCAT(newcmd, prevcmd); | |
1112 STRCAT(newcmd, p_shq); | |
1113 free_newcmd = TRUE; | |
1114 } | |
1115 if (addr_count == 0) /* :! */ | |
1116 { | |
1117 /* echo the command */ | |
1118 msg_start(); | |
1119 msg_putchar(':'); | |
1120 msg_putchar('!'); | |
1121 msg_outtrans(newcmd); | |
1122 msg_clr_eos(); | |
1123 windgoto(msg_row, msg_col); | |
1124 | |
1125 do_shell(newcmd, 0); | |
1126 } | |
1127 else /* :range! */ | |
725 | 1128 { |
7 | 1129 /* Careful: This may recursively call do_bang() again! (because of |
1130 * autocommands) */ | |
1131 do_filter(line1, line2, eap, newcmd, do_in, do_out); | |
725 | 1132 #ifdef FEAT_AUTOCMD |
1133 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf); | |
1134 #endif | |
1135 } | |
7 | 1136 if (free_newcmd) |
1137 vim_free(newcmd); | |
1138 } | |
1139 | |
1140 /* | |
1141 * do_filter: filter lines through a command given by the user | |
1142 * | |
169 | 1143 * We mostly use temp files and the call_shell() routine here. This would |
1144 * normally be done using pipes on a UNIX machine, but this is more portable | |
1145 * to non-unix machines. The call_shell() routine needs to be able | |
7 | 1146 * to deal with redirection somehow, and should handle things like looking |
1147 * at the PATH env. variable, and adding reasonable extensions to the | |
1148 * command name given by the user. All reasonable versions of call_shell() | |
1149 * do this. | |
169 | 1150 * Alternatively, if on Unix and redirecting input or output, but not both, |
1151 * and the 'shelltemp' option isn't set, use pipes. | |
7 | 1152 * We use input redirection if do_in is TRUE. |
1153 * We use output redirection if do_out is TRUE. | |
1154 */ | |
1155 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1156 do_filter( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1157 linenr_T line1, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1158 linenr_T line2, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1159 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
|
1160 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1161 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1162 int do_out) |
7 | 1163 { |
1164 char_u *itmp = NULL; | |
1165 char_u *otmp = NULL; | |
1166 linenr_T linecount; | |
1167 linenr_T read_linecount; | |
1168 pos_T cursor_save; | |
1169 char_u *cmd_buf; | |
1170 #ifdef FEAT_AUTOCMD | |
1171 buf_T *old_curbuf = curbuf; | |
1172 #endif | |
169 | 1173 int shell_flags = 0; |
7 | 1174 |
1175 if (*cmd == NUL) /* no filter command */ | |
1176 return; | |
1177 | |
1178 cursor_save = curwin->w_cursor; | |
1179 linecount = line2 - line1 + 1; | |
1180 curwin->w_cursor.lnum = line1; | |
1181 curwin->w_cursor.col = 0; | |
1182 changed_line_abv_curs(); | |
1183 invalidate_botline(); | |
1184 | |
1185 /* | |
169 | 1186 * When using temp files: |
1187 * 1. * Form temp file names | |
1188 * 2. * Write the lines to a temp file | |
1189 * 3. Run the filter command on the temp file | |
1190 * 4. * Read the output of the command into the buffer | |
1191 * 5. * Delete the original lines to be filtered | |
1192 * 6. * Remove the temp files | |
1193 * | |
1194 * When writing the input with a pipe or when catching the output with a | |
1195 * pipe only need to do 3. | |
7 | 1196 */ |
1197 | |
169 | 1198 if (do_out) |
1199 shell_flags |= SHELL_DOOUT; | |
1200 | |
3482 | 1201 #ifdef FEAT_FILTERPIPE |
169 | 1202 if (!do_in && do_out && !p_stmp) |
1203 { | |
1204 /* Use a pipe to fetch stdout of the command, do not use a temp file. */ | |
1205 shell_flags |= SHELL_READ; | |
1206 curwin->w_cursor.lnum = line2; | |
1207 } | |
1208 else if (do_in && !do_out && !p_stmp) | |
7 | 1209 { |
169 | 1210 /* Use a pipe to write stdin of the command, do not use a temp file. */ |
1211 shell_flags |= SHELL_WRITE; | |
1212 curbuf->b_op_start.lnum = line1; | |
1213 curbuf->b_op_end.lnum = line2; | |
7 | 1214 } |
169 | 1215 else if (do_in && do_out && !p_stmp) |
1216 { | |
1217 /* Use a pipe to write stdin and fetch stdout of the command, do not | |
1218 * use a temp file. */ | |
1219 shell_flags |= SHELL_READ|SHELL_WRITE; | |
1220 curbuf->b_op_start.lnum = line1; | |
1221 curbuf->b_op_end.lnum = line2; | |
1222 curwin->w_cursor.lnum = line2; | |
1223 } | |
1224 else | |
1225 #endif | |
6721 | 1226 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL) |
1227 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL)) | |
169 | 1228 { |
1229 EMSG(_(e_notmp)); | |
1230 goto filterend; | |
1231 } | |
7 | 1232 |
1233 /* | |
1234 * The writing and reading of temp files will not be shown. | |
1235 * Vi also doesn't do this and the messages are not very informative. | |
1236 */ | |
1237 ++no_wait_return; /* don't call wait_return() while busy */ | |
169 | 1238 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap, |
7 | 1239 FALSE, FALSE, FALSE, TRUE) == FAIL) |
1240 { | |
1241 msg_putchar('\n'); /* keep message from buf_write() */ | |
1242 --no_wait_return; | |
1243 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
1244 if (!aborting()) | |
1245 #endif | |
1246 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */ | |
1247 goto filterend; | |
1248 } | |
1249 #ifdef FEAT_AUTOCMD | |
1250 if (curbuf != old_curbuf) | |
1251 goto filterend; | |
1252 #endif | |
1253 | |
1254 if (!do_out) | |
1255 msg_putchar('\n'); | |
1256 | |
1581 | 1257 /* Create the shell command in allocated memory. */ |
7 | 1258 cmd_buf = make_filter_cmd(cmd, itmp, otmp); |
1259 if (cmd_buf == NULL) | |
1260 goto filterend; | |
1261 | |
1262 windgoto((int)Rows - 1, 0); | |
1263 cursor_on(); | |
1264 | |
1265 /* | |
1266 * When not redirecting the output the command can write anything to the | |
1267 * screen. If 'shellredir' is equal to ">", screen may be messed up by | |
1268 * stderr output of external command. Clear the screen later. | |
1269 * If do_in is FALSE, this could be something like ":r !cat", which may | |
1270 * also mess up the screen, clear it later. | |
1271 */ | |
1272 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in) | |
1273 redraw_later_clear(); | |
1274 | |
169 | 1275 if (do_out) |
1276 { | |
1277 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL) | |
1581 | 1278 { |
1279 vim_free(cmd_buf); | |
169 | 1280 goto error; |
1581 | 1281 } |
169 | 1282 redraw_curbuf_later(VALID); |
1283 } | |
1284 read_linecount = curbuf->b_ml.ml_line_count; | |
1285 | |
7 | 1286 /* |
1287 * When call_shell() fails wait_return() is called to give the user a | |
1288 * chance to read the error messages. Otherwise errors are ignored, so you | |
1289 * can see the error messages from the command that appear on stdout; use | |
1290 * 'u' to fix the text | |
1291 * Switch to cooked mode when not redirecting stdin, avoids that something | |
1292 * like ":r !cat" hangs. | |
1293 * Pass on the SHELL_DOOUT flag when the output is being redirected. | |
1294 */ | |
169 | 1295 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags)) |
7 | 1296 { |
1297 redraw_later_clear(); | |
1298 wait_return(FALSE); | |
1299 } | |
1300 vim_free(cmd_buf); | |
1301 | |
1302 did_check_timestamps = FALSE; | |
1303 need_check_timestamps = TRUE; | |
1304 | |
1305 /* When interrupting the shell command, it may still have produced some | |
1306 * useful output. Reset got_int here, so that readfile() won't cancel | |
1307 * reading. */ | |
1308 ui_breakcheck(); | |
1309 got_int = FALSE; | |
1310 | |
1311 if (do_out) | |
1312 { | |
169 | 1313 if (otmp != NULL) |
7 | 1314 { |
169 | 1315 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
|
1316 eap, READ_FILTER) != OK) |
169 | 1317 { |
7 | 1318 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
169 | 1319 if (!aborting()) |
1320 #endif | |
1321 { | |
1322 msg_putchar('\n'); | |
1323 EMSG2(_(e_notread), otmp); | |
1324 } | |
1325 goto error; | |
7 | 1326 } |
169 | 1327 #ifdef FEAT_AUTOCMD |
1328 if (curbuf != old_curbuf) | |
1329 goto filterend; | |
1330 #endif | |
7 | 1331 } |
169 | 1332 |
1333 read_linecount = curbuf->b_ml.ml_line_count - read_linecount; | |
1334 | |
1335 if (shell_flags & SHELL_READ) | |
1336 { | |
1337 curbuf->b_op_start.lnum = line2 + 1; | |
1338 curbuf->b_op_end.lnum = curwin->w_cursor.lnum; | |
1339 appended_lines_mark(line2, read_linecount); | |
1340 } | |
7 | 1341 |
1342 if (do_in) | |
1343 { | |
1344 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL) | |
1345 { | |
1346 if (read_linecount >= linecount) | |
1347 /* move all marks from old lines to new lines */ | |
1348 mark_adjust(line1, line2, linecount, 0L); | |
1349 else | |
1350 { | |
1351 /* move marks from old lines to new lines, delete marks | |
1352 * that are in deleted lines */ | |
1353 mark_adjust(line1, line1 + read_linecount - 1, | |
1354 linecount, 0L); | |
1355 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); | |
1356 } | |
1357 } | |
1358 | |
1359 /* | |
1360 * Put cursor on first filtered line for ":range!cmd". | |
1361 * Adjust '[ and '] (set by buf_write()). | |
1362 */ | |
1363 curwin->w_cursor.lnum = line1; | |
1364 del_lines(linecount, TRUE); | |
1365 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */ | |
1366 curbuf->b_op_end.lnum -= linecount; /* adjust '] */ | |
1367 write_lnum_adjust(-linecount); /* adjust last line | |
1368 for next write */ | |
100 | 1369 #ifdef FEAT_FOLDING |
1370 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum); | |
1371 #endif | |
7 | 1372 } |
1373 else | |
1374 { | |
1375 /* | |
1376 * Put cursor on last new line for ":r !cmd". | |
1377 */ | |
169 | 1378 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1; |
7 | 1379 curwin->w_cursor.lnum = curbuf->b_op_end.lnum; |
1380 } | |
100 | 1381 |
7 | 1382 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */ |
1383 --no_wait_return; | |
1384 | |
1385 if (linecount > p_report) | |
1386 { | |
1387 if (do_in) | |
1388 { | |
274 | 1389 vim_snprintf((char *)msg_buf, sizeof(msg_buf), |
1390 _("%ld lines filtered"), (long)linecount); | |
7 | 1391 if (msg(msg_buf) && !msg_scroll) |
1392 /* save message to display it after redraw */ | |
680 | 1393 set_keep_msg(msg_buf, 0); |
7 | 1394 } |
1395 else | |
1396 msgmore((long)linecount); | |
1397 } | |
1398 } | |
1399 else | |
1400 { | |
1401 error: | |
1402 /* put cursor back in same position for ":w !cmd" */ | |
1403 curwin->w_cursor = cursor_save; | |
1404 --no_wait_return; | |
1405 wait_return(FALSE); | |
1406 } | |
1407 | |
1408 filterend: | |
1409 | |
1410 #ifdef FEAT_AUTOCMD | |
1411 if (curbuf != old_curbuf) | |
1412 { | |
1413 --no_wait_return; | |
1414 EMSG(_("E135: *Filter* Autocommands must not change current buffer")); | |
1415 } | |
1416 #endif | |
1417 if (itmp != NULL) | |
1418 mch_remove(itmp); | |
1419 if (otmp != NULL) | |
1420 mch_remove(otmp); | |
1421 vim_free(itmp); | |
1422 vim_free(otmp); | |
1423 } | |
1424 | |
1425 /* | |
1426 * Call a shell to execute a command. | |
1427 * When "cmd" is NULL start an interactive shell. | |
1428 */ | |
1429 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1430 do_shell( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1431 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1432 int flags) /* may be SHELL_DOOUT when output is redirected */ |
7 | 1433 { |
1434 buf_T *buf; | |
1435 #ifndef FEAT_GUI_MSWIN | |
1436 int save_nwr; | |
1437 #endif | |
1438 #ifdef MSWIN | |
1439 int winstart = FALSE; | |
1440 #endif | |
1441 | |
1442 /* | |
1443 * Disallow shell commands for "rvim". | |
1444 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1445 * security reasons. | |
1446 */ | |
1447 if (check_restricted() || check_secure()) | |
1448 { | |
1449 msg_end(); | |
1450 return; | |
1451 } | |
1452 | |
1453 #ifdef MSWIN | |
1454 /* | |
1455 * Check if ":!start" is used. | |
1456 */ | |
1457 if (cmd != NULL) | |
1458 winstart = (STRNICMP(cmd, "start ", 6) == 0); | |
1459 #endif | |
1460 | |
1461 /* | |
1462 * For autocommands we want to get the output on the current screen, to | |
1463 * avoid having to type return below. | |
1464 */ | |
1465 msg_putchar('\r'); /* put cursor at start of line */ | |
1466 #ifdef FEAT_AUTOCMD | |
1467 if (!autocmd_busy) | |
1468 #endif | |
1469 { | |
1470 #ifdef MSWIN | |
1471 if (!winstart) | |
1472 #endif | |
1473 stoptermcap(); | |
1474 } | |
1475 #ifdef MSWIN | |
1476 if (!winstart) | |
1477 #endif | |
1478 msg_putchar('\n'); /* may shift screen one line up */ | |
1479 | |
1480 /* warning message before calling the shell */ | |
1481 if (p_warn | |
1482 #ifdef FEAT_AUTOCMD | |
1483 && !autocmd_busy | |
1484 #endif | |
1485 && msg_silent == 0) | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1486 FOR_ALL_BUFFERS(buf) |
7 | 1487 if (bufIsChanged(buf)) |
1488 { | |
1489 #ifdef FEAT_GUI_MSWIN | |
1490 if (!winstart) | |
1491 starttermcap(); /* don't want a message box here */ | |
1492 #endif | |
1493 MSG_PUTS(_("[No write since last change]\n")); | |
1494 #ifdef FEAT_GUI_MSWIN | |
1495 if (!winstart) | |
1496 stoptermcap(); | |
1497 #endif | |
1498 break; | |
1499 } | |
1500 | |
1501 /* This windgoto is required for when the '\n' resulted in a "delete line | |
1502 * 1" command to the terminal. */ | |
1503 if (!swapping_screen()) | |
1504 windgoto(msg_row, msg_col); | |
1505 cursor_on(); | |
1506 (void)call_shell(cmd, SHELL_COOKED | flags); | |
1507 did_check_timestamps = FALSE; | |
1508 need_check_timestamps = TRUE; | |
1509 | |
1510 /* | |
1511 * put the message cursor at the end of the screen, avoids wait_return() | |
1512 * to overwrite the text that the external command showed | |
1513 */ | |
1514 if (!swapping_screen()) | |
1515 { | |
1516 msg_row = Rows - 1; | |
1517 msg_col = 0; | |
1518 } | |
1519 | |
1520 #ifdef FEAT_AUTOCMD | |
1521 if (autocmd_busy) | |
1522 { | |
1523 if (msg_silent == 0) | |
1524 redraw_later_clear(); | |
1525 } | |
1526 else | |
1527 #endif | |
1528 { | |
1529 /* | |
1530 * For ":sh" there is no need to call wait_return(), just redraw. | |
1531 * Also for the Win32 GUI (the output is in a console window). | |
1532 * Otherwise there is probably text on the screen that the user wants | |
1533 * to read before redrawing, so call wait_return(). | |
1534 */ | |
1535 #ifndef FEAT_GUI_MSWIN | |
1536 if (cmd == NULL | |
1537 # ifdef WIN3264 | |
1538 || (winstart && !need_wait_return) | |
1539 # endif | |
1540 ) | |
1541 { | |
1542 if (msg_silent == 0) | |
1543 redraw_later_clear(); | |
1544 need_wait_return = FALSE; | |
1545 } | |
1546 else | |
1547 { | |
1548 /* | |
1549 * If we switch screens when starttermcap() is called, we really | |
1550 * want to wait for "hit return to continue". | |
1551 */ | |
1552 save_nwr = no_wait_return; | |
1553 if (swapping_screen()) | |
1554 no_wait_return = FALSE; | |
1555 # ifdef AMIGA | |
1556 wait_return(term_console ? -1 : msg_silent == 0); /* see below */ | |
1557 # else | |
1558 wait_return(msg_silent == 0); | |
1559 # endif | |
1560 no_wait_return = save_nwr; | |
1561 } | |
1562 #endif /* FEAT_GUI_W32 */ | |
1563 | |
1564 #ifdef MSWIN | |
1565 if (!winstart) /* if winstart==TRUE, never stopped termcap! */ | |
1566 #endif | |
1567 starttermcap(); /* start termcap if not done by wait_return() */ | |
1568 | |
1569 /* | |
1570 * In an Amiga window redrawing is caused by asking the window size. | |
1571 * If we got an interrupt this will not work. The chance that the | |
1572 * window size is wrong is very small, but we need to redraw the | |
1573 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY | |
1574 * but it saves an extra redraw. | |
1575 */ | |
1576 #ifdef AMIGA | |
1577 if (skip_redraw) /* ':' hit in wait_return() */ | |
1578 { | |
1579 if (msg_silent == 0) | |
1580 redraw_later_clear(); | |
1581 } | |
1582 else if (term_console) | |
1583 { | |
1584 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */ | |
1585 if (got_int && msg_silent == 0) | |
1586 redraw_later_clear(); /* if got_int is TRUE, redraw needed */ | |
1587 else | |
1588 must_redraw = 0; /* no extra redraw needed */ | |
1589 } | |
1590 #endif | |
1591 } | |
1592 | |
1593 /* display any error messages now */ | |
1594 display_errors(); | |
725 | 1595 |
1596 #ifdef FEAT_AUTOCMD | |
1597 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf); | |
1598 #endif | |
7 | 1599 } |
1600 | |
1601 /* | |
1602 * Create a shell command from a command string, input redirection file and | |
1603 * output redirection file. | |
1604 * Returns an allocated string with the shell command, or NULL for failure. | |
1605 */ | |
1606 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1607 make_filter_cmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1608 char_u *cmd, /* command */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1609 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
|
1610 char_u *otmp) /* NULL or name of output file */ |
7 | 1611 { |
1612 char_u *buf; | |
1613 long_u len; | |
5867 | 1614 |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1615 #if defined(UNIX) |
5881 | 1616 int is_fish_shell; |
5911 | 1617 char_u *shell_name = get_isolated_shell_name(); |
5881 | 1618 |
5867 | 1619 /* Account for fish's different syntax for subshells */ |
5911 | 1620 is_fish_shell = (fnamecmp(shell_name, "fish") == 0); |
1621 vim_free(shell_name); | |
5867 | 1622 if (is_fish_shell) |
1623 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */ | |
1624 else | |
1625 #endif | |
1626 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */ | |
7 | 1627 if (itmp != NULL) |
1628 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */ | |
1629 if (otmp != NULL) | |
1630 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */ | |
1631 buf = lalloc(len, TRUE); | |
1632 if (buf == NULL) | |
1633 return NULL; | |
1634 | |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1635 #if defined(UNIX) |
7 | 1636 /* |
169 | 1637 * Put braces around the command (for concatenated commands) when |
1638 * redirecting input and/or output. | |
7 | 1639 */ |
169 | 1640 if (itmp != NULL || otmp != NULL) |
5867 | 1641 { |
1642 if (is_fish_shell) | |
1643 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd); | |
1644 else | |
1645 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); | |
1646 } | |
169 | 1647 else |
1648 STRCPY(buf, cmd); | |
7 | 1649 if (itmp != NULL) |
1650 { | |
1651 STRCAT(buf, " < "); | |
1652 STRCAT(buf, itmp); | |
1653 } | |
1654 #else | |
1655 /* | |
5867 | 1656 * For shells that don't understand braces around commands, at least allow |
7 | 1657 * the use of commands in a pipe. |
1658 */ | |
1659 STRCPY(buf, cmd); | |
1660 if (itmp != NULL) | |
1661 { | |
1662 char_u *p; | |
1663 | |
1664 /* | |
1665 * If there is a pipe, we have to put the '<' in front of it. | |
1666 * Don't do this when 'shellquote' is not empty, otherwise the | |
1667 * redirection would be inside the quotes. | |
1668 */ | |
1669 if (*p_shq == NUL) | |
1670 { | |
1671 p = vim_strchr(buf, '|'); | |
1672 if (p != NULL) | |
1673 *p = NUL; | |
1674 } | |
1675 STRCAT(buf, " <"); /* " < " causes problems on Amiga */ | |
1676 STRCAT(buf, itmp); | |
1677 if (*p_shq == NUL) | |
1678 { | |
1679 p = vim_strchr(cmd, '|'); | |
1680 if (p != NULL) | |
1681 { | |
1682 STRCAT(buf, " "); /* insert a space before the '|' for DOS */ | |
1683 STRCAT(buf, p); | |
1684 } | |
1685 } | |
1686 } | |
1687 #endif | |
1688 if (otmp != NULL) | |
1872 | 1689 append_redir(buf, (int)len, p_srr, otmp); |
7 | 1690 |
1691 return buf; | |
1692 } | |
1693 | |
1694 /* | |
1872 | 1695 * Append output redirection for file "fname" to the end of string buffer |
1696 * "buf[buflen]" | |
7 | 1697 * Works with the 'shellredir' and 'shellpipe' options. |
1698 * The caller should make sure that there is enough room: | |
1699 * STRLEN(opt) + STRLEN(fname) + 3 | |
1700 */ | |
1701 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1702 append_redir( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1703 char_u *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1704 int buflen, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1705 char_u *opt, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1706 char_u *fname) |
7 | 1707 { |
1708 char_u *p; | |
1872 | 1709 char_u *end; |
1710 | |
1711 end = buf + STRLEN(buf); | |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1712 /* find "%s" */ |
7 | 1713 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
|
1714 { |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1715 if (p[1] == 's') /* found %s */ |
7 | 1716 break; |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1717 if (p[1] == '%') /* skip %% */ |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1718 ++p; |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1719 } |
7 | 1720 if (p != NULL) |
1721 { | |
1872 | 1722 *end = ' '; /* not really needed? Not with sh, ksh or bash */ |
1723 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)), | |
1724 (char *)opt, (char *)fname); | |
7 | 1725 } |
1726 else | |
1872 | 1727 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
7 | 1728 #ifdef FEAT_QUICKFIX |
1729 " %s %s", | |
1730 #else | |
1731 " %s%s", /* " > %s" causes problems on Amiga */ | |
1732 #endif | |
1733 (char *)opt, (char *)fname); | |
1734 } | |
1735 | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1736 #if defined(FEAT_VIMINFO) || defined(PROTO) |
7 | 1737 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
1738 static int no_viminfo(void); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
1739 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
|
1740 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
|
1741 static void write_viminfo_barlines(vir_T *virp, FILE *fp_out); |
7 | 1742 static int viminfo_errcnt; |
1743 | |
1744 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1745 no_viminfo(void) |
7 | 1746 { |
1747 /* "vim -i NONE" does not read or write a viminfo file */ | |
1748 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0); | |
1749 } | |
1750 | |
1751 /* | |
1752 * Report an error for reading a viminfo file. | |
1753 * Count the number of errors. When there are more than 10, return TRUE. | |
1754 */ | |
1755 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1756 viminfo_error(char *errnum, char *message, char_u *line) |
7 | 1757 { |
274 | 1758 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "), |
1759 errnum, message); | |
1459 | 1760 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1); |
156 | 1761 if (IObuff[STRLEN(IObuff) - 1] == '\n') |
1762 IObuff[STRLEN(IObuff) - 1] = NUL; | |
7 | 1763 emsg(IObuff); |
1764 if (++viminfo_errcnt >= 10) | |
1765 { | |
1766 EMSG(_("E136: viminfo: Too many errors, skipping rest of file")); | |
1767 return TRUE; | |
1768 } | |
1769 return FALSE; | |
1770 } | |
1771 | |
1772 /* | |
1773 * read_viminfo() -- Read the viminfo file. Registers etc. which are already | |
1733 | 1774 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb |
7 | 1775 */ |
1776 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1777 read_viminfo( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1778 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
|
1779 int flags) /* VIF_WANT_INFO et al. */ |
7 | 1780 { |
1781 FILE *fp; | |
1782 char_u *fname; | |
1783 | |
1784 if (no_viminfo()) | |
1785 return FAIL; | |
1786 | |
1733 | 1787 fname = viminfo_filename(file); /* get file name in allocated buffer */ |
7 | 1788 if (fname == NULL) |
1789 return FAIL; | |
1790 fp = mch_fopen((char *)fname, READBIN); | |
1791 | |
1792 if (p_verbose > 0) | |
294 | 1793 { |
1794 verbose_enter(); | |
274 | 1795 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"), |
1796 fname, | |
1733 | 1797 (flags & VIF_WANT_INFO) ? _(" info") : "", |
1798 (flags & VIF_WANT_MARKS) ? _(" marks") : "", | |
1799 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "", | |
274 | 1800 fp == NULL ? _(" FAILED") : ""); |
294 | 1801 verbose_leave(); |
1802 } | |
7 | 1803 |
1804 vim_free(fname); | |
1805 if (fp == NULL) | |
1806 return FAIL; | |
1807 | |
1808 viminfo_errcnt = 0; | |
1733 | 1809 do_viminfo(fp, NULL, flags); |
7 | 1810 |
1811 fclose(fp); | |
1812 return OK; | |
1813 } | |
1814 | |
1815 /* | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1816 * 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
|
1817 * 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
|
1818 * run simultaneously, without losing any marks etc. |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1819 * 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
|
1820 * info is written to the file. |
7 | 1821 */ |
1822 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1823 write_viminfo(char_u *file, int forceit) |
7 | 1824 { |
1825 char_u *fname; | |
1826 FILE *fp_in = NULL; /* input viminfo file, if any */ | |
1827 FILE *fp_out = NULL; /* output viminfo file */ | |
1828 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
|
1829 stat_T st_new; /* mch_stat() of potential new file */ |
7 | 1830 char_u *wp; |
1831 #if defined(UNIX) || defined(VMS) | |
1832 mode_t umask_save; | |
1833 #endif | |
1834 #ifdef UNIX | |
1835 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
|
1836 stat_T st_old; /* mch_stat() of existing viminfo file */ |
7 | 1837 #endif |
601 | 1838 #ifdef WIN3264 |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
1839 int hidden = FALSE; |
601 | 1840 #endif |
7 | 1841 |
1842 if (no_viminfo()) | |
1843 return; | |
1844 | |
1845 fname = viminfo_filename(file); /* may set to default if NULL */ | |
1846 if (fname == NULL) | |
1847 return; | |
1848 | |
1849 fp_in = mch_fopen((char *)fname, READBIN); | |
1850 if (fp_in == NULL) | |
1851 { | |
1852 /* if it does exist, but we can't read it, don't try writing */ | |
1853 if (mch_stat((char *)fname, &st_new) == 0) | |
1854 goto end; | |
1855 #if defined(UNIX) || defined(VMS) | |
1856 /* | |
1857 * For Unix we create the .viminfo non-accessible for others, | |
1858 * because it may contain text from non-accessible documents. | |
1859 */ | |
1860 umask_save = umask(077); | |
1861 #endif | |
1862 fp_out = mch_fopen((char *)fname, WRITEBIN); | |
1863 #if defined(UNIX) || defined(VMS) | |
1864 (void)umask(umask_save); | |
1865 #endif | |
1866 } | |
1867 else | |
1868 { | |
1869 /* | |
1870 * There is an existing viminfo file. Create a temporary file to | |
1871 * write the new viminfo into, in the same directory as the | |
1872 * existing viminfo file, which will be renamed later. | |
1873 */ | |
1874 #ifdef UNIX | |
1875 /* | |
1876 * For Unix we check the owner of the file. It's not very nice to | |
1877 * overwrite a user's viminfo file after a "su root", with a | |
1878 * viminfo file that the user can't read. | |
1879 */ | |
1869 | 1880 st_old.st_dev = (dev_t)0; |
1438 | 1881 st_old.st_ino = 0; |
7 | 1882 st_old.st_mode = 0600; |
1076 | 1883 if (mch_stat((char *)fname, &st_old) == 0 |
1884 && getuid() != ROOT_UID | |
560 | 1885 && !(st_old.st_uid == getuid() |
7 | 1886 ? (st_old.st_mode & 0200) |
1887 : (st_old.st_gid == getgid() | |
1888 ? (st_old.st_mode & 0020) | |
1889 : (st_old.st_mode & 0002)))) | |
1890 { | |
944 | 1891 int tt = msg_didany; |
7 | 1892 |
1893 /* avoid a wait_return for this message, it's annoying */ | |
1894 EMSG2(_("E137: Viminfo file is not writable: %s"), fname); | |
1895 msg_didany = tt; | |
840 | 1896 fclose(fp_in); |
7 | 1897 goto end; |
1898 } | |
1899 #endif | |
601 | 1900 #ifdef WIN3264 |
1901 /* 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
|
1902 hidden = mch_ishidden(fname); |
601 | 1903 #endif |
7 | 1904 |
1905 /* | |
1906 * Make tempname. | |
1907 * May try twice: Once normal and once with shortname set, just in | |
1908 * case somebody puts his viminfo file in an 8.3 filesystem. | |
1909 */ | |
1910 for (;;) | |
1911 { | |
1912 tempname = buf_modname( | |
1913 #ifdef UNIX | |
1914 shortname, | |
1915 #else | |
1916 FALSE, | |
1917 #endif | |
1918 fname, | |
1919 #ifdef VMS | |
1920 (char_u *)"-tmp", | |
1921 #else | |
1922 (char_u *)".tmp", | |
1923 #endif | |
1924 FALSE); | |
1925 if (tempname == NULL) /* out of memory */ | |
1926 break; | |
1927 | |
1928 /* | |
1929 * Check if tempfile already exists. Never overwrite an | |
1930 * existing file! | |
1931 */ | |
1932 if (mch_stat((char *)tempname, &st_new) == 0) | |
1933 { | |
1934 #ifdef UNIX | |
1935 /* | |
1936 * Check if tempfile is same as original file. May happen | |
1937 * when modname() gave the same file back. E.g. silly | |
1938 * link, or file name-length reached. Try again with | |
1939 * shortname set. | |
1940 */ | |
560 | 1941 if (!shortname && st_new.st_dev == st_old.st_dev |
1942 && st_new.st_ino == st_old.st_ino) | |
7 | 1943 { |
1944 vim_free(tempname); | |
1945 tempname = NULL; | |
1946 shortname = TRUE; | |
1947 continue; | |
1948 } | |
1949 #endif | |
1950 /* | |
1951 * Try another name. Change one character, just before | |
1952 * the extension. This should also work for an 8.3 | |
1953 * file name, when after adding the extension it still is | |
1954 * the same file as the original. | |
1955 */ | |
1956 wp = tempname + STRLEN(tempname) - 5; | |
1957 if (wp < gettail(tempname)) /* empty file name? */ | |
1958 wp = gettail(tempname); | |
1959 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0; | |
1960 --*wp) | |
1961 { | |
1962 /* | |
1963 * They all exist? Must be something wrong! Don't | |
1964 * write the viminfo file then. | |
1965 */ | |
1966 if (*wp == 'a') | |
1967 { | |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
1968 EMSG2(_("E929: Too many viminfo temp files, like %s!"), |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
1969 tempname); |
7 | 1970 vim_free(tempname); |
1971 tempname = NULL; | |
1972 break; | |
1973 } | |
1974 } | |
1975 } | |
1976 break; | |
1977 } | |
1978 | |
1979 if (tempname != NULL) | |
1980 { | |
762 | 1981 #ifdef VMS |
1982 /* fdopen() fails for some reason */ | |
770 | 1983 umask_save = umask(077); |
1984 fp_out = mch_fopen((char *)tempname, WRITEBIN); | |
1985 (void)umask(umask_save); | |
762 | 1986 #else |
557 | 1987 int fd; |
1988 | |
1989 /* Use mch_open() to be able to use O_NOFOLLOW and set file | |
601 | 1990 * protection: |
673 | 1991 * Unix: same as original file, but strip s-bit. Reset umask to |
1992 * avoid it getting in the way. | |
601 | 1993 * Others: r&w for user only. */ |
762 | 1994 # ifdef UNIX |
673 | 1995 umask_save = umask(0); |
557 | 1996 fd = mch_open((char *)tempname, |
1997 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, | |
569 | 1998 (int)((st_old.st_mode & 0777) | 0600)); |
673 | 1999 (void)umask(umask_save); |
762 | 2000 # else |
569 | 2001 fd = mch_open((char *)tempname, |
673 | 2002 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600); |
762 | 2003 # endif |
557 | 2004 if (fd < 0) |
2005 fp_out = NULL; | |
2006 else | |
2007 fp_out = fdopen(fd, WRITEBIN); | |
762 | 2008 #endif /* VMS */ |
7 | 2009 |
2010 /* | |
2011 * If we can't create in the same directory, try creating a | |
2012 * "normal" temp file. | |
2013 */ | |
2014 if (fp_out == NULL) | |
2015 { | |
2016 vim_free(tempname); | |
6721 | 2017 if ((tempname = vim_tempname('o', TRUE)) != NULL) |
7 | 2018 fp_out = mch_fopen((char *)tempname, WRITEBIN); |
2019 } | |
557 | 2020 |
2021 #if defined(UNIX) && defined(HAVE_FCHOWN) | |
7 | 2022 /* |
557 | 2023 * Make sure the owner can read/write it. This only works for |
2024 * root. | |
7 | 2025 */ |
2026 if (fp_out != NULL) | |
1757 | 2027 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid); |
7 | 2028 #endif |
2029 } | |
2030 } | |
2031 | |
2032 /* | |
2033 * Check if the new viminfo file can be written to. | |
2034 */ | |
2035 if (fp_out == NULL) | |
2036 { | |
2037 EMSG2(_("E138: Can't write viminfo file %s!"), | |
301 | 2038 (fp_in == NULL || tempname == NULL) ? fname : tempname); |
7 | 2039 if (fp_in != NULL) |
2040 fclose(fp_in); | |
2041 goto end; | |
2042 } | |
2043 | |
2044 if (p_verbose > 0) | |
294 | 2045 { |
2046 verbose_enter(); | |
274 | 2047 smsg((char_u *)_("Writing viminfo file \"%s\""), fname); |
294 | 2048 verbose_leave(); |
2049 } | |
7 | 2050 |
2051 viminfo_errcnt = 0; | |
1733 | 2052 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS)); |
7 | 2053 |
8573
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2054 if (fclose(fp_out) == EOF) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2055 ++viminfo_errcnt; |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2056 |
7 | 2057 if (fp_in != NULL) |
2058 { | |
2059 fclose(fp_in); | |
601 | 2060 |
6049 | 2061 /* In case of an error keep the original viminfo file. Otherwise |
2062 * 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
|
2063 if (viminfo_errcnt == 0) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2064 { |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2065 if (vim_rename(tempname, fname) == -1) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2066 { |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2067 ++viminfo_errcnt; |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2068 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
|
2069 } |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2070 # ifdef WIN3264 |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2071 /* 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
|
2072 else if (hidden) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2073 mch_hide(fname); |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2074 # endif |
6049 | 2075 } |
2076 if (viminfo_errcnt > 0) | |
7 | 2077 mch_remove(tempname); |
601 | 2078 } |
2079 | |
7 | 2080 end: |
2081 vim_free(fname); | |
2082 vim_free(tempname); | |
2083 } | |
2084 | |
2085 /* | |
2086 * Get the viminfo file name to use. | |
2087 * If "file" is given and not empty, use it (has already been expanded by | |
2088 * cmdline functions). | |
2089 * Otherwise use "-i file_name", value from 'viminfo' or the default, and | |
2090 * expand environment variables. | |
2091 * Returns an allocated string. NULL when out of memory. | |
2092 */ | |
2093 static char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2094 viminfo_filename(char_u *file) |
7 | 2095 { |
2096 if (file == NULL || *file == NUL) | |
2097 { | |
2098 if (use_viminfo != NULL) | |
2099 file = use_viminfo; | |
2100 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL) | |
2101 { | |
2102 #ifdef VIMINFO_FILE2 | |
2103 /* don't use $HOME when not defined (turned into "c:/"!). */ | |
2104 # ifdef VMS | |
2105 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL) | |
2106 # else | |
2107 if (mch_getenv((char_u *)"HOME") == NULL) | |
2108 # endif | |
2109 { | |
2110 /* don't use $VIM when not available. */ | |
2111 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL); | |
2112 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */ | |
2113 file = (char_u *)VIMINFO_FILE2; | |
2114 else | |
2115 file = (char_u *)VIMINFO_FILE; | |
2116 } | |
2117 else | |
2118 #endif | |
2119 file = (char_u *)VIMINFO_FILE; | |
2120 } | |
2121 expand_env(file, NameBuff, MAXPATHL); | |
2122 file = NameBuff; | |
2123 } | |
2124 return vim_strsave(file); | |
2125 } | |
2126 | |
2127 /* | |
2128 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo(). | |
2129 */ | |
2130 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2131 do_viminfo(FILE *fp_in, FILE *fp_out, int flags) |
7 | 2132 { |
2133 int eof = FALSE; | |
2134 vir_T vir; | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2135 int merge = FALSE; |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2136 int do_copy_marks = FALSE; |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2137 garray_T buflist; |
7 | 2138 |
2139 if ((vir.vir_line = alloc(LSIZE)) == NULL) | |
2140 return; | |
2141 vir.vir_fd = fp_in; | |
2142 #ifdef FEAT_MBYTE | |
2143 vir.vir_conv.vc_type = CONV_NONE; | |
2144 #endif | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2145 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
|
2146 vir.vir_version = -1; |
7 | 2147 |
2148 if (fp_in != NULL) | |
2149 { | |
1733 | 2150 if (flags & VIF_WANT_INFO) |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2151 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2152 if (fp_out != NULL) |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2153 { |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2154 /* 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
|
2155 * 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
|
2156 prepare_viminfo_registers(); |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2157 prepare_viminfo_marks(); |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2158 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2159 |
1733 | 2160 eof = read_viminfo_up_to_marks(&vir, |
2161 flags & VIF_FORCEIT, fp_out != NULL); | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2162 merge = TRUE; |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2163 } |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2164 else if (flags != 0) |
7 | 2165 /* Skip info, find start of marks */ |
2166 while (!(eof = viminfo_readline(&vir)) | |
2167 && vir.vir_line[0] != '>') | |
2168 ; | |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2169 |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2170 do_copy_marks = (flags & |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2171 (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
|
2172 } |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2173 |
7 | 2174 if (fp_out != NULL) |
2175 { | |
2176 /* Write the info: */ | |
2177 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"), | |
2178 VIM_VERSION_MEDIUM); | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2179 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
|
2180 write_viminfo_version(fp_out); |
7 | 2181 #ifdef FEAT_MBYTE |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2182 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out); |
7 | 2183 fprintf(fp_out, "*encoding=%s\n\n", p_enc); |
2184 #endif | |
2185 write_viminfo_search_pattern(fp_out); | |
2186 write_viminfo_sub_string(fp_out); | |
2187 #ifdef FEAT_CMDHIST | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2188 write_viminfo_history(fp_out, merge); |
7 | 2189 #endif |
2190 write_viminfo_registers(fp_out); | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2191 finish_viminfo_registers(); |
7 | 2192 #ifdef FEAT_EVAL |
2193 write_viminfo_varlist(fp_out); | |
2194 #endif | |
2195 write_viminfo_filemarks(fp_out); | |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2196 finish_viminfo_marks(); |
7 | 2197 write_viminfo_bufferlist(fp_out); |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2198 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
|
2199 |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2200 if (do_copy_marks) |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2201 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
|
2202 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
|
2203 } |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2204 |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2205 if (do_copy_marks) |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2206 { |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2207 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
|
2208 if (fp_out != NULL) |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2209 ga_clear(&buflist); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2210 } |
7 | 2211 |
2212 vim_free(vir.vir_line); | |
2213 #ifdef FEAT_MBYTE | |
2214 if (vir.vir_conv.vc_type != CONV_NONE) | |
2215 convert_setup(&vir.vir_conv, NULL, NULL); | |
2216 #endif | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2217 ga_clear_strings(&vir.vir_barlines); |
7 | 2218 } |
2219 | |
2220 /* | |
2221 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the | |
2222 * first part of the viminfo file which contains everything but the marks that | |
2223 * are local to a file. Returns TRUE when end-of-file is reached. -- webb | |
2224 */ | |
2225 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2226 read_viminfo_up_to_marks( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2227 vir_T *virp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2228 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2229 int writing) |
7 | 2230 { |
2231 int eof; | |
2232 buf_T *buf; | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2233 int got_encoding = FALSE; |
7 | 2234 |
2235 #ifdef FEAT_CMDHIST | |
4285 | 2236 prepare_viminfo_history(forceit ? 9999 : 0, writing); |
7 | 2237 #endif |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2238 |
7 | 2239 eof = viminfo_readline(virp); |
2240 while (!eof && virp->vir_line[0] != '>') | |
2241 { | |
2242 switch (virp->vir_line[0]) | |
2243 { | |
2244 /* Characters reserved for future expansion, ignored now */ | |
2245 case '+': /* "+40 /path/dir file", for running vim without args */ | |
2246 case '^': /* to be defined */ | |
2247 case '<': /* long line - ignored */ | |
2248 /* A comment or empty line. */ | |
2249 case NUL: | |
2250 case '\r': | |
2251 case '\n': | |
2252 case '#': | |
2253 eof = viminfo_readline(virp); | |
2254 break; | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2255 case '|': |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2256 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
|
2257 forceit, writing); |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2258 break; |
7 | 2259 case '*': /* "*encoding=value" */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2260 got_encoding = TRUE; |
7 | 2261 eof = viminfo_encoding(virp); |
2262 break; | |
2263 case '!': /* global variable */ | |
2264 #ifdef FEAT_EVAL | |
2265 eof = read_viminfo_varlist(virp, writing); | |
2266 #else | |
2267 eof = viminfo_readline(virp); | |
2268 #endif | |
2269 break; | |
2270 case '%': /* entry for buffer list */ | |
2271 eof = read_viminfo_bufferlist(virp, writing); | |
2272 break; | |
2273 case '"': | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2274 /* 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
|
2275 * lines. */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2276 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
|
2277 eof = read_viminfo_register(virp, forceit); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2278 else |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2279 do { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2280 eof = viminfo_readline(virp); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2281 } 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
|
2282 || virp->vir_line[0] == '<')); |
7 | 2283 break; |
2284 case '/': /* Search string */ | |
2285 case '&': /* Substitute search string */ | |
2286 case '~': /* Last search string, followed by '/' or '&' */ | |
2287 eof = read_viminfo_search_pattern(virp, forceit); | |
2288 break; | |
2289 case '$': | |
2290 eof = read_viminfo_sub_string(virp, forceit); | |
2291 break; | |
2292 case ':': | |
2293 case '?': | |
2294 case '=': | |
2295 case '@': | |
2296 #ifdef FEAT_CMDHIST | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2297 /* 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
|
2298 * lines. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2299 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
|
2300 eof = read_viminfo_history(virp, writing); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2301 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2302 #endif |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2303 eof = viminfo_readline(virp); |
7 | 2304 break; |
2305 case '-': | |
2306 case '\'': | |
9297
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2307 /* 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
|
2308 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
|
2309 eof = read_viminfo_filemark(virp, forceit); |
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2310 else |
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2311 eof = viminfo_readline(virp); |
7 | 2312 break; |
2313 default: | |
2314 if (viminfo_error("E575: ", _("Illegal starting char"), | |
2315 virp->vir_line)) | |
2316 eof = TRUE; | |
2317 else | |
2318 eof = viminfo_readline(virp); | |
2319 break; | |
2320 } | |
2321 } | |
2322 | |
2323 #ifdef FEAT_CMDHIST | |
2324 /* Finish reading history items. */ | |
4285 | 2325 if (!writing) |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9248
diff
changeset
|
2326 finish_viminfo_history(virp); |
7 | 2327 #endif |
2328 | |
2329 /* 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
|
2330 FOR_ALL_BUFFERS(buf) |
7 | 2331 fmarks_check_names(buf); |
2332 | |
2333 return eof; | |
2334 } | |
2335 | |
2336 /* | |
2337 * Compare the 'encoding' value in the viminfo file with the current value of | |
2338 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for | |
2339 * conversion of text with iconv() in viminfo_readstring(). | |
2340 */ | |
2341 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2342 viminfo_encoding(vir_T *virp) |
7 | 2343 { |
2344 #ifdef FEAT_MBYTE | |
2345 char_u *p; | |
2346 int i; | |
2347 | |
2348 if (get_viminfo_parameter('c') != 0) | |
2349 { | |
2350 p = vim_strchr(virp->vir_line, '='); | |
2351 if (p != NULL) | |
2352 { | |
2353 /* remove trailing newline */ | |
2354 ++p; | |
2355 for (i = 0; vim_isprintc(p[i]); ++i) | |
2356 ; | |
2357 p[i] = NUL; | |
2358 | |
2359 convert_setup(&virp->vir_conv, p, p_enc); | |
2360 } | |
2361 } | |
2362 #endif | |
2363 return viminfo_readline(virp); | |
2364 } | |
2365 | |
2366 /* | |
2367 * Read a line from the viminfo file. | |
2368 * Returns TRUE for end-of-file; | |
2369 */ | |
2370 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2371 viminfo_readline(vir_T *virp) |
7 | 2372 { |
2373 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); | |
2374 } | |
2375 | |
2376 /* | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2377 * Check string read from viminfo file. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2378 * Remove '\n' at the end of the line. |
7 | 2379 * - replace CTRL-V CTRL-V with CTRL-V |
2380 * - replace CTRL-V 'n' with '\n' | |
2381 * | |
2382 * Check for a long line as written by viminfo_writestring(). | |
2383 * | |
2384 * Return the string in allocated memory (NULL when out of memory). | |
2385 */ | |
2386 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2387 viminfo_readstring( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2388 vir_T *virp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2389 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
|
2390 int convert UNUSED) /* convert the string */ |
7 | 2391 { |
2392 char_u *retval; | |
2393 char_u *s, *d; | |
2394 long len; | |
2395 | |
2396 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1])) | |
2397 { | |
2398 len = atol((char *)virp->vir_line + off + 1); | |
2399 retval = lalloc(len, TRUE); | |
2400 if (retval == NULL) | |
2401 { | |
2402 /* Line too long? File messed up? Skip next line. */ | |
2403 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd); | |
2404 return NULL; | |
2405 } | |
2406 (void)vim_fgets(retval, (int)len, virp->vir_fd); | |
2407 s = retval + 1; /* Skip the leading '<' */ | |
2408 } | |
2409 else | |
2410 { | |
2411 retval = vim_strsave(virp->vir_line + off); | |
2412 if (retval == NULL) | |
2413 return NULL; | |
2414 s = retval; | |
2415 } | |
2416 | |
2417 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */ | |
2418 d = retval; | |
2419 while (*s != NUL && *s != '\n') | |
2420 { | |
2421 if (s[0] == Ctrl_V && s[1] != NUL) | |
2422 { | |
2423 if (s[1] == 'n') | |
2424 *d++ = '\n'; | |
2425 else | |
2426 *d++ = Ctrl_V; | |
2427 s += 2; | |
2428 } | |
2429 else | |
2430 *d++ = *s++; | |
2431 } | |
2432 *d = NUL; | |
2433 | |
2434 #ifdef FEAT_MBYTE | |
2435 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL) | |
2436 { | |
2437 d = string_convert(&virp->vir_conv, retval, NULL); | |
2438 if (d != NULL) | |
2439 { | |
2440 vim_free(retval); | |
2441 retval = d; | |
2442 } | |
2443 } | |
2444 #endif | |
2445 | |
2446 return retval; | |
2447 } | |
2448 | |
2449 /* | |
2450 * write string to viminfo file | |
2451 * - replace CTRL-V with CTRL-V CTRL-V | |
2452 * - replace '\n' with CTRL-V 'n' | |
2453 * - add a '\n' at the end | |
2454 * | |
2455 * For a long line: | |
2456 * - write " CTRL-V <length> \n " in first line | |
2457 * - write " < <string> \n " in second line | |
2458 */ | |
2459 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2460 viminfo_writestring(FILE *fd, char_u *p) |
7 | 2461 { |
2462 int c; | |
2463 char_u *s; | |
2464 int len = 0; | |
2465 | |
2466 for (s = p; *s != NUL; ++s) | |
2467 { | |
2468 if (*s == Ctrl_V || *s == '\n') | |
2469 ++len; | |
2470 ++len; | |
2471 } | |
2472 | |
2473 /* If the string will be too long, write its length and put it in the next | |
2474 * line. Take into account that some room is needed for what comes before | |
2475 * the string (e.g., variable name). Add something to the length for the | |
2476 * '<', NL and trailing NUL. */ | |
2477 if (len > LSIZE / 2) | |
2478 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3); | |
2479 | |
2480 while ((c = *p++) != NUL) | |
2481 { | |
2482 if (c == Ctrl_V || c == '\n') | |
2483 { | |
2484 putc(Ctrl_V, fd); | |
2485 if (c == '\n') | |
2486 c = 'n'; | |
2487 } | |
2488 putc(c, fd); | |
2489 } | |
2490 putc('\n', fd); | |
2491 } | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2492 |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2493 /* |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2494 * 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
|
2495 * 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
|
2496 * Returns remaining characters in the line. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2497 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2498 int |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2499 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
|
2500 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2501 char_u *p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2502 int remaining = remaining_start; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2503 int len = 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2504 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2505 /* 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
|
2506 for (p = s; *p != NUL; ++p) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2507 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2508 if (*p == NL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2509 len += 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2510 else if (*p == '"' || *p == '\\') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2511 len += 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2512 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2513 ++len; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2514 } |
9978
baad324e9fbc
commit https://github.com/vim/vim/commit/257095760732597983bdd026e791907b7980e295
Christian Brabandt <cb@256bit.org>
parents:
9959
diff
changeset
|
2515 if (len > remaining - 2) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2516 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2517 fprintf(fd, ">%d\n|<", len); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2518 remaining = LSIZE - 20; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2519 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2520 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2521 putc('"', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2522 for (p = s; *p != NUL; ++p) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2523 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2524 if (*p == NL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2525 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2526 putc('\\', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2527 putc('n', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2528 --remaining; |
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 else if (*p == '"' || *p == '\\') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2531 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2532 putc('\\', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2533 putc(*p, fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2534 --remaining; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2535 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2536 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2537 putc(*p, fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2538 --remaining; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2539 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2540 if (remaining < 3) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2541 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2542 putc('\n', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2543 putc('|', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2544 putc('<', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2545 /* Leave enough space for another continuation. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2546 remaining = LSIZE - 20; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2547 } |
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 putc('"', fd); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2550 return remaining - 2; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2551 } |
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 /* |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2554 * 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
|
2555 * 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
|
2556 * 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
|
2557 */ |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2558 static int |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2559 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
|
2560 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2561 char_u *p = text; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2562 char_u *nextp = NULL; |
9244
931bbf7b6ee3
commit https://github.com/vim/vim/commit/fdd82fe365d0e287bafc71f98c039cb5af8ed827
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
2563 char_u *buf = NULL; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2564 bval_T *value; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2565 int i; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2566 int allocated = FALSE; |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2567 int eof; |
9268
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2568 #ifdef FEAT_MBYTE |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2569 char_u *sconv; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2570 int converted; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2571 #endif |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2572 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2573 while (*p == ',') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2574 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2575 ++p; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2576 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
|
2577 break; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2578 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
|
2579 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2580 if (*p == '>') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2581 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2582 /* 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
|
2583 * 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
|
2584 if (!allocated) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2585 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2586 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
|
2587 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2588 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
|
2589 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2590 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
|
2591 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2592 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
|
2593 vp->bv_allocated = TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2594 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2595 } |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2596 allocated = TRUE; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2597 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2598 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2599 if (vim_isdigit(p[1])) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2600 { |
9248
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2601 size_t len; |
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2602 size_t todo; |
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2603 size_t n; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2604 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2605 /* 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
|
2606 * than LSIZE: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2607 * |{bartype},>{length of "{text}{text2}"} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2608 * |<"{text1} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2609 * |<{text2}",{value} |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2610 * Length includes the quotes. |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2611 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2612 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2613 len = getdigits(&p); |
9248
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2614 buf = alloc((int)(len + 1)); |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9268
diff
changeset
|
2615 if (buf == NULL) |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2616 return TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2617 p = buf; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2618 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
|
2619 { |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2620 eof = viminfo_readline(virp); |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2621 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
|
2622 || virp->vir_line[1] != '<') |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9268
diff
changeset
|
2623 { |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2624 /* 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
|
2625 * this one starts with '|'. */ |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9268
diff
changeset
|
2626 vim_free(buf); |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2627 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
|
2628 } |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2629 /* 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
|
2630 n = STRLEN(virp->vir_line); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2631 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
|
2632 || virp->vir_line[n - 1] == CAR)) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2633 --n; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2634 n -= 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2635 if (n > todo) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2636 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2637 /* more values follow after the string */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2638 nextp = virp->vir_line + 2 + todo; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2639 n = todo; |
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 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
|
2642 p += n; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2643 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2644 *p = NUL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2645 p = buf; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2646 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2647 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2648 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2649 /* 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
|
2650 * |{bartype},{lots of values},> |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2651 * |<{value},{value} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2652 */ |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2653 eof = viminfo_readline(virp); |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2654 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
|
2655 || virp->vir_line[1] != '<') |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2656 /* 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
|
2657 * this one starts with '|'. */ |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2658 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
|
2659 p = virp->vir_line + 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2660 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2661 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2662 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2663 if (isdigit(*p)) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2664 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2665 value->bv_type = BVAL_NR; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2666 value->bv_nr = getdigits(&p); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2667 ++values->ga_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2668 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2669 else if (*p == '"') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2670 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2671 int len = 0; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2672 char_u *s = p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2673 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2674 /* Unescape special characters in-place. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2675 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2676 while (*p != '"') |
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 if (*p == NL || *p == NUL) |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2679 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
|
2680 if (*p == '\\') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2681 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2682 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2683 if (*p == 'n') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2684 s[len++] = '\n'; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2685 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2686 s[len++] = *p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2687 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2688 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2689 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2690 s[len++] = *p++; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2691 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2692 ++p; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2693 s[len] = NUL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2694 |
9268
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2695 #ifdef FEAT_MBYTE |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2696 converted = FALSE; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2697 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
|
2698 { |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2699 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
|
2700 if (sconv != NULL) |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2701 { |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2702 if (s == buf) |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2703 vim_free(s); |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2704 s = sconv; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2705 buf = s; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2706 converted = TRUE; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2707 } |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2708 } |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2709 #endif |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2710 /* 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
|
2711 * 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
|
2712 if (s != buf && allocated) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2713 s = vim_strsave(s); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2714 value->bv_string = s; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2715 value->bv_type = BVAL_STRING; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2716 value->bv_len = len; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2717 value->bv_allocated = allocated |
9268
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2718 #ifdef FEAT_MBYTE |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2719 || converted |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2720 #endif |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2721 ; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2722 ++values->ga_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2723 if (nextp != NULL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2724 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2725 /* values following a long string */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2726 p = nextp; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2727 nextp = NULL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2728 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2729 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2730 else if (*p == ',') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2731 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2732 value->bv_type = BVAL_EMPTY; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2733 ++values->ga_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2734 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2735 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2736 break; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2737 } |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2738 return TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2739 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2740 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2741 static int |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2742 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
|
2743 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2744 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
|
2745 int bartype; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2746 garray_T values; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2747 bval_T *vp; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2748 int i; |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2749 int read_next = TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2750 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2751 /* The format is: |{bartype},{value},... |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2752 * For a very long string: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2753 * |{bartype},>{length of "{text}{text2}"} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2754 * |<{text1} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2755 * |<{text2},{value} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2756 * 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
|
2757 * |{bartype},{lots of values},> |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2758 * |<{value},{value} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2759 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2760 if (*p == '<') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2761 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2762 /* Continuation line of an unrecognized item. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2763 if (writing) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2764 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
|
2765 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2766 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2767 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2768 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
|
2769 bartype = getdigits(&p); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2770 switch (bartype) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2771 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2772 case BARTYPE_VERSION: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2773 /* 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
|
2774 * 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
|
2775 * doesn't understand the version. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2776 if (!got_encoding) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2777 { |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2778 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
|
2779 vp = (bval_T *)values.ga_data; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2780 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
|
2781 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
|
2782 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2783 break; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2784 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2785 case BARTYPE_HISTORY: |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2786 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
|
2787 handle_viminfo_history(&values, writing); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2788 break; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2789 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2790 case BARTYPE_REGISTER: |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2791 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
|
2792 handle_viminfo_register(&values, force); |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2793 break; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2794 |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2795 case BARTYPE_MARK: |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2796 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
|
2797 handle_viminfo_mark(&values, force); |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2798 break; |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2799 |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2800 default: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2801 /* copy unrecognized line (for future use) */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2802 if (writing) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2803 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
|
2804 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2805 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
|
2806 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2807 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
|
2808 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
|
2809 vim_free(vp->bv_string); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2810 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2811 ga_clear(&values); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2812 } |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2813 |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2814 if (read_next) |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2815 return viminfo_readline(virp); |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2816 return FALSE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2817 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2818 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2819 static void |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2820 write_viminfo_version(FILE *fp_out) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2821 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2822 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
|
2823 BARTYPE_VERSION, VIMINFO_VERSION); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2824 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2825 |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2826 static void |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2827 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
|
2828 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2829 int i; |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2830 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
|
2831 int seen_useful = FALSE; |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2832 char *line; |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2833 |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2834 if (gap->ga_len > 0) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2835 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2836 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
|
2837 |
9412
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2838 /* 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
|
2839 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
|
2840 { |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2841 line = ((char **)(gap->ga_data))[i]; |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2842 if (seen_useful || line[1] != '<') |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2843 { |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2844 fputs(line, fp_out); |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2845 seen_useful = TRUE; |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2846 } |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2847 } |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2848 } |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2849 } |
7 | 2850 #endif /* FEAT_VIMINFO */ |
2851 | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2852 /* |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2853 * 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
|
2854 * was used. |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2855 */ |
9347
25c562442f8c
commit https://github.com/vim/vim/commit/f4fba6dcd508cb369ffa6916d9cb3fcf3d7ed548
Christian Brabandt <cb@256bit.org>
parents:
9330
diff
changeset
|
2856 time_T |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2857 vim_time(void) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2858 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2859 # ifdef FEAT_EVAL |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2860 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
|
2861 # else |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2862 return time(NULL); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2863 # endif |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2864 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2865 |
7 | 2866 /* |
2867 * Implementation of ":fixdel", also used by get_stty(). | |
2868 * <BS> resulting <Del> | |
2869 * ^? ^H | |
2870 * not ^? ^? | |
2871 */ | |
2872 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2873 do_fixdel(exarg_T *eap UNUSED) |
7 | 2874 { |
2875 char_u *p; | |
2876 | |
2877 p = find_termcode((char_u *)"kb"); | |
2878 add_termcode((char_u *)"kD", p != NULL | |
2879 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); | |
2880 } | |
2881 | |
2882 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2883 print_line_no_prefix( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2884 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2885 int use_number, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2886 int list) |
7 | 2887 { |
13 | 2888 char_u numbuf[30]; |
7 | 2889 |
2890 if (curwin->w_p_nu || use_number) | |
2891 { | |
1872 | 2892 vim_snprintf((char *)numbuf, sizeof(numbuf), |
2893 "%*ld ", number_width(curwin), (long)lnum); | |
7 | 2894 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */ |
2895 } | |
169 | 2896 msg_prt_line(ml_get(lnum), list); |
7 | 2897 } |
2898 | |
2899 /* | |
2900 * Print a text line. Also in silent mode ("ex -s"). | |
2901 */ | |
2902 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2903 print_line(linenr_T lnum, int use_number, int list) |
7 | 2904 { |
2905 int save_silent = silent_mode; | |
2906 | |
9980
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2907 /* apply :filter /pat/ */ |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2908 if (message_filtered(ml_get(lnum))) |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2909 return; |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2910 |
169 | 2911 msg_start(); |
7 | 2912 silent_mode = FALSE; |
169 | 2913 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */ |
2914 print_line_no_prefix(lnum, use_number, list); | |
7 | 2915 if (save_silent) |
2916 { | |
2917 msg_putchar('\n'); | |
2918 cursor_on(); /* msg_start() switches it off */ | |
2919 out_flush(); | |
2920 silent_mode = save_silent; | |
1798 | 2921 } |
2922 info_message = FALSE; | |
7 | 2923 } |
2924 | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2925 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2926 rename_buffer(char_u *new_fname) |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2927 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2928 char_u *fname, *sfname, *xfname; |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2929 buf_T *buf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2930 |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2931 #ifdef FEAT_AUTOCMD |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2932 buf = curbuf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2933 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
|
2934 /* buffer changed, don't change name now */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2935 if (buf != curbuf) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2936 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2937 # ifdef FEAT_EVAL |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2938 if (aborting()) /* autocmds may abort script processing */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2939 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2940 # endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2941 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2942 /* |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2943 * 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
|
2944 * 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
|
2945 * name, which will become the alternate file name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2946 * 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
|
2947 * name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2948 */ |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2949 fname = curbuf->b_ffname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2950 sfname = curbuf->b_sfname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2951 xfname = curbuf->b_fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2952 curbuf->b_ffname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2953 curbuf->b_sfname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2954 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL) |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2955 { |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2956 curbuf->b_ffname = fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2957 curbuf->b_sfname = sfname; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2958 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2959 } |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2960 curbuf->b_flags |= BF_NOTEDITED; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2961 if (xfname != NULL && *xfname != NUL) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2962 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2963 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
|
2964 if (buf != NULL && !cmdmod.keepalt) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2965 curwin->w_alt_fnum = buf->b_fnum; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2966 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2967 vim_free(fname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2968 vim_free(sfname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2969 #ifdef FEAT_AUTOCMD |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2970 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2971 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2972 /* Change directories when the 'acd' option is set. */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2973 DO_AUTOCHDIR |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2974 return OK; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2975 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2976 |
7 | 2977 /* |
2978 * ":file[!] [fname]". | |
2979 */ | |
2980 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2981 ex_file(exarg_T *eap) |
7 | 2982 { |
14 | 2983 /* ":0file" removes the file name. Check for illegal uses ":3file", |
2984 * "0file name", etc. */ | |
2985 if (eap->addr_count > 0 | |
2986 && (*eap->arg != NUL | |
2987 || eap->line2 > 0 | |
2988 || eap->addr_count > 1)) | |
2989 { | |
2990 EMSG(_(e_invarg)); | |
2991 return; | |
2992 } | |
2993 | |
2994 if (*eap->arg != NUL || eap->addr_count == 1) | |
7 | 2995 { |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2996 if (rename_buffer(eap->arg) == FAIL) |
7 | 2997 return; |
2998 } | |
2999 /* 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
|
3000 if (!shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
3001 fileinfo(FALSE, FALSE, eap->forceit); |
7 | 3002 } |
3003 | |
3004 /* | |
3005 * ":update". | |
3006 */ | |
3007 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3008 ex_update(exarg_T *eap) |
7 | 3009 { |
3010 if (curbufIsChanged()) | |
3011 (void)do_write(eap); | |
3012 } | |
3013 | |
3014 /* | |
3015 * ":write" and ":saveas". | |
3016 */ | |
3017 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3018 ex_write(exarg_T *eap) |
7 | 3019 { |
3020 if (eap->usefilter) /* input lines to shell command */ | |
3021 do_bang(1, eap, FALSE, TRUE, FALSE); | |
3022 else | |
3023 (void)do_write(eap); | |
3024 } | |
3025 | |
3026 /* | |
3027 * write current buffer to file 'eap->arg' | |
3028 * if 'eap->append' is TRUE, append to the file | |
3029 * | |
3030 * if *eap->arg == NUL write to current file | |
3031 * | |
3032 * return FAIL for failure, OK otherwise | |
3033 */ | |
3034 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3035 do_write(exarg_T *eap) |
7 | 3036 { |
3037 int other; | |
3038 char_u *fname = NULL; /* init to shut up gcc */ | |
3039 char_u *ffname; | |
3040 int retval = FAIL; | |
3041 char_u *free_fname = NULL; | |
3042 #ifdef FEAT_BROWSE | |
3043 char_u *browse_file = NULL; | |
3044 #endif | |
3045 buf_T *alt_buf = NULL; | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3046 int name_was_missing; |
7 | 3047 |
3048 if (not_writing()) /* check 'write' option */ | |
3049 return FAIL; | |
3050 | |
3051 ffname = eap->arg; | |
3052 #ifdef FEAT_BROWSE | |
3053 if (cmdmod.browse) | |
3054 { | |
29 | 3055 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
7 | 3056 NULL, NULL, NULL, curbuf); |
3057 if (browse_file == NULL) | |
3058 goto theend; | |
3059 ffname = browse_file; | |
3060 } | |
3061 #endif | |
3062 if (*ffname == NUL) | |
3063 { | |
3064 if (eap->cmdidx == CMD_saveas) | |
3065 { | |
3066 EMSG(_(e_argreq)); | |
3067 goto theend; | |
3068 } | |
3069 other = FALSE; | |
3070 } | |
3071 else | |
3072 { | |
3073 fname = ffname; | |
3074 free_fname = fix_fname(ffname); | |
3075 /* | |
3076 * When out-of-memory, keep unexpanded file name, because we MUST be | |
3077 * able to write the file in this situation. | |
3078 */ | |
3079 if (free_fname != NULL) | |
3080 ffname = free_fname; | |
3081 other = otherfile(ffname); | |
3082 } | |
3083 | |
3084 /* | |
3085 * If we have a new file, put its name in the list of alternate file names. | |
3086 */ | |
3087 if (other) | |
3088 { | |
3089 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL | |
3090 || eap->cmdidx == CMD_saveas) | |
3091 alt_buf = setaltfname(ffname, fname, (linenr_T)1); | |
3092 else | |
3093 alt_buf = buflist_findname(ffname); | |
3094 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) | |
3095 { | |
3096 /* Overwriting a file that is loaded in another buffer is not a | |
3097 * good idea. */ | |
315 | 3098 EMSG(_(e_bufloaded)); |
7 | 3099 goto theend; |
3100 } | |
3101 } | |
3102 | |
3103 /* | |
3104 * Writing to the current file is not allowed in readonly mode | |
3105 * and a file name is required. | |
3106 * "nofile" and "nowrite" buffers cannot be written implicitly either. | |
3107 */ | |
3108 if (!other && ( | |
3109 #ifdef FEAT_QUICKFIX | |
3110 bt_dontwrite_msg(curbuf) || | |
3111 #endif | |
3112 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf))) | |
3113 goto theend; | |
3114 | |
3115 if (!other) | |
3116 { | |
3117 ffname = curbuf->b_ffname; | |
3118 fname = curbuf->b_fname; | |
3119 /* | |
3120 * Not writing the whole file is only allowed with '!'. | |
3121 */ | |
3122 if ( (eap->line1 != 1 | |
3123 || eap->line2 != curbuf->b_ml.ml_line_count) | |
3124 && !eap->forceit | |
3125 && !eap->append | |
3126 && !p_wa) | |
3127 { | |
3128 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3129 if (p_confirm || cmdmod.confirm) | |
3130 { | |
3131 if (vim_dialog_yesno(VIM_QUESTION, NULL, | |
3132 (char_u *)_("Write partial file?"), 2) != VIM_YES) | |
3133 goto theend; | |
3134 eap->forceit = TRUE; | |
3135 } | |
3136 else | |
3137 #endif | |
3138 { | |
3139 EMSG(_("E140: Use ! to write partial buffer")); | |
3140 goto theend; | |
3141 } | |
3142 } | |
3143 } | |
3144 | |
3145 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) | |
3146 { | |
3147 if (eap->cmdidx == CMD_saveas && alt_buf != NULL) | |
3148 { | |
3149 #ifdef FEAT_AUTOCMD | |
3150 buf_T *was_curbuf = curbuf; | |
3151 | |
3152 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); | |
21 | 3153 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf); |
7 | 3154 # ifdef FEAT_EVAL |
3155 if (curbuf != was_curbuf || aborting()) | |
3156 # else | |
3157 if (curbuf != was_curbuf) | |
3158 # endif | |
3159 { | |
3160 /* buffer changed, don't change name now */ | |
3161 retval = FAIL; | |
3162 goto theend; | |
3163 } | |
3164 #endif | |
3165 /* Exchange the file names for the current and the alternate | |
3166 * buffer. This makes it look like we are now editing the buffer | |
3167 * under the new name. Must be done before buf_write(), because | |
3168 * if there is no file name and 'cpo' contains 'F', it will set | |
3169 * the file name. */ | |
3170 fname = alt_buf->b_fname; | |
3171 alt_buf->b_fname = curbuf->b_fname; | |
3172 curbuf->b_fname = fname; | |
3173 fname = alt_buf->b_ffname; | |
3174 alt_buf->b_ffname = curbuf->b_ffname; | |
3175 curbuf->b_ffname = fname; | |
3176 fname = alt_buf->b_sfname; | |
3177 alt_buf->b_sfname = curbuf->b_sfname; | |
3178 curbuf->b_sfname = fname; | |
3179 buf_name_changed(curbuf); | |
3180 #ifdef FEAT_AUTOCMD | |
3181 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); | |
21 | 3182 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
7 | 3183 if (!alt_buf->b_p_bl) |
3184 { | |
3185 alt_buf->b_p_bl = TRUE; | |
3186 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); | |
3187 } | |
3188 # ifdef FEAT_EVAL | |
3189 if (curbuf != was_curbuf || aborting()) | |
3190 # else | |
3191 if (curbuf != was_curbuf) | |
3192 # endif | |
3193 { | |
3194 /* buffer changed, don't write the file */ | |
3195 retval = FAIL; | |
3196 goto theend; | |
3197 } | |
634 | 3198 |
3199 /* If 'filetype' was empty try detecting it now. */ | |
3200 if (*curbuf->b_p_ft == NUL) | |
3201 { | |
819 | 3202 if (au_has_group((char_u *)"filetypedetect")) |
3203 (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
|
3204 TRUE, NULL); |
717 | 3205 do_modelines(0); |
634 | 3206 } |
2648 | 3207 |
3208 /* Autocommands may have changed buffer names, esp. when | |
3209 * 'autochdir' is set. */ | |
3210 fname = curbuf->b_sfname; | |
7 | 3211 #endif |
3212 } | |
3213 | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3214 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
|
3215 |
7 | 3216 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, |
3217 eap, eap->append, eap->forceit, TRUE, FALSE); | |
634 | 3218 |
819 | 3219 /* After ":saveas fname" reset 'readonly'. */ |
961 | 3220 if (eap->cmdidx == CMD_saveas) |
3221 { | |
3222 if (retval == OK) | |
1806 | 3223 { |
961 | 3224 curbuf->b_p_ro = FALSE; |
1806 | 3225 #ifdef FEAT_WINDOWS |
3226 redraw_tabline = TRUE; | |
3227 #endif | |
3228 } | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3229 } |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3230 |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3231 /* 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
|
3232 * got changed or set. */ |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3233 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
|
3234 { |
961 | 3235 DO_AUTOCHDIR |
3236 } | |
7 | 3237 } |
3238 | |
3239 theend: | |
3240 #ifdef FEAT_BROWSE | |
3241 vim_free(browse_file); | |
3242 #endif | |
3243 vim_free(free_fname); | |
3244 return retval; | |
3245 } | |
3246 | |
3247 /* | |
3248 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, | |
3249 * BF_NEW or BF_READERR, check for overwriting current file. | |
3250 * May set eap->forceit if a dialog says it's OK to overwrite. | |
3251 * Return OK if it's OK, FAIL if it is not. | |
3252 */ | |
3486 | 3253 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3254 check_overwrite( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3255 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3256 buf_T *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3257 char_u *fname, /* file name to be used (can differ from |
7 | 3258 buf->ffname) */ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3259 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
|
3260 int other) /* writing under other name */ |
7 | 3261 { |
3262 /* | |
3263 * write to other file or b_flags set or not writing the whole file: | |
3264 * overwriting only allowed with '!' | |
3265 */ | |
3266 if ( (other | |
3267 || (buf->b_flags & BF_NOTEDITED) | |
3268 || ((buf->b_flags & BF_NEW) | |
3269 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) | |
3270 || (buf->b_flags & BF_READERR)) | |
3271 && !p_wa | |
1457 | 3272 #ifdef FEAT_QUICKFIX |
3273 && !bt_nofile(buf) | |
3274 #endif | |
7 | 3275 && vim_fexists(ffname)) |
3276 { | |
460 | 3277 if (!eap->forceit && !eap->append) |
7 | 3278 { |
460 | 3279 #ifdef UNIX |
637 | 3280 /* with UNIX it is possible to open a directory */ |
460 | 3281 if (mch_isdir(ffname)) |
3282 { | |
3283 EMSG2(_(e_isadir2), ffname); | |
3284 return FAIL; | |
3285 } | |
7 | 3286 #endif |
3287 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
460 | 3288 if (p_confirm || cmdmod.confirm) |
3289 { | |
2770 | 3290 char_u buff[DIALOG_MSG_SIZE]; |
460 | 3291 |
3292 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); | |
3293 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) | |
3294 return FAIL; | |
3295 eap->forceit = TRUE; | |
3296 } | |
3297 else | |
3298 #endif | |
3299 { | |
3300 EMSG(_(e_exists)); | |
7 | 3301 return FAIL; |
460 | 3302 } |
7 | 3303 } |
460 | 3304 |
3305 /* For ":w! filename" check that no swap file exists for "filename". */ | |
3306 if (other && !emsg_silent) | |
7 | 3307 { |
2770 | 3308 char_u *dir; |
460 | 3309 char_u *p; |
3310 int r; | |
3311 char_u *swapname; | |
3312 | |
3313 /* We only try the first entry in 'directory', without checking if | |
3314 * it's writable. If the "." directory is not writable the write | |
3315 * will probably fail anyway. | |
3316 * Use 'shortname' of the current buffer, since there is no buffer | |
3317 * for the written file. */ | |
3318 if (*p_dir == NUL) | |
2770 | 3319 { |
3320 dir = alloc(5); | |
3321 if (dir == NULL) | |
3322 return FAIL; | |
460 | 3323 STRCPY(dir, "."); |
2770 | 3324 } |
460 | 3325 else |
3326 { | |
2770 | 3327 dir = alloc(MAXPATHL); |
3328 if (dir == NULL) | |
3329 return FAIL; | |
460 | 3330 p = p_dir; |
3331 copy_option_part(&p, dir, MAXPATHL, ","); | |
3332 } | |
3333 swapname = makeswapname(fname, ffname, curbuf, dir); | |
2770 | 3334 vim_free(dir); |
460 | 3335 r = vim_fexists(swapname); |
3336 if (r) | |
3337 { | |
3338 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3339 if (p_confirm || cmdmod.confirm) | |
3340 { | |
2770 | 3341 char_u buff[DIALOG_MSG_SIZE]; |
460 | 3342 |
3343 dialog_msg(buff, | |
3344 _("Swap file \"%s\" exists, overwrite anyway?"), | |
3345 swapname); | |
3346 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) | |
3347 != VIM_YES) | |
819 | 3348 { |
3349 vim_free(swapname); | |
460 | 3350 return FAIL; |
819 | 3351 } |
460 | 3352 eap->forceit = TRUE; |
3353 } | |
3354 else | |
3355 #endif | |
3356 { | |
3357 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"), | |
3358 swapname); | |
819 | 3359 vim_free(swapname); |
460 | 3360 return FAIL; |
3361 } | |
3362 } | |
819 | 3363 vim_free(swapname); |
7 | 3364 } |
3365 } | |
3366 return OK; | |
3367 } | |
3368 | |
3369 /* | |
3370 * Handle ":wnext", ":wNext" and ":wprevious" commands. | |
3371 */ | |
3372 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3373 ex_wnext(exarg_T *eap) |
7 | 3374 { |
3375 int i; | |
3376 | |
3377 if (eap->cmd[1] == 'n') | |
3378 i = curwin->w_arg_idx + (int)eap->line2; | |
3379 else | |
3380 i = curwin->w_arg_idx - (int)eap->line2; | |
3381 eap->line1 = 1; | |
3382 eap->line2 = curbuf->b_ml.ml_line_count; | |
3383 if (do_write(eap) != FAIL) | |
3384 do_argfile(eap, i); | |
3385 } | |
3386 | |
3387 /* | |
3388 * ":wall", ":wqall" and ":xall": Write all changed files (and exit). | |
3389 */ | |
3390 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3391 do_wqall(exarg_T *eap) |
7 | 3392 { |
3393 buf_T *buf; | |
3394 int error = 0; | |
3395 int save_forceit = eap->forceit; | |
3396 | |
3397 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) | |
3398 exiting = TRUE; | |
3399 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3400 FOR_ALL_BUFFERS(buf) |
7 | 3401 { |
3402 if (bufIsChanged(buf)) | |
3403 { | |
3404 /* | |
3405 * Check if there is a reason the buffer cannot be written: | |
3406 * 1. if the 'write' option is set | |
3407 * 2. if there is no file name (even after browsing) | |
3408 * 3. if the 'readonly' is set (even after a dialog) | |
3409 * 4. if overwriting is allowed (even after a dialog) | |
3410 */ | |
3411 if (not_writing()) | |
3412 { | |
3413 ++error; | |
3414 break; | |
3415 } | |
3416 #ifdef FEAT_BROWSE | |
3417 /* ":browse wall": ask for file name if there isn't one */ | |
3418 if (buf->b_ffname == NULL && cmdmod.browse) | |
3419 browse_save_fname(buf); | |
3420 #endif | |
3421 if (buf->b_ffname == NULL) | |
3422 { | |
3423 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum); | |
3424 ++error; | |
3425 } | |
3426 else if (check_readonly(&eap->forceit, buf) | |
3427 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, | |
3428 FALSE) == FAIL) | |
3429 { | |
3430 ++error; | |
3431 } | |
3432 else | |
3433 { | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3434 #ifdef FEAT_AUTOCMD |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3435 bufref_T bufref; |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3436 |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3437 set_bufref(&bufref, buf); |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3438 #endif |
7 | 3439 if (buf_write_all(buf, eap->forceit) == FAIL) |
3440 ++error; | |
3441 #ifdef FEAT_AUTOCMD | |
3442 /* 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
|
3443 if (!bufref_valid(&bufref)) |
7 | 3444 buf = firstbuf; |
3445 #endif | |
3446 } | |
3447 eap->forceit = save_forceit; /* check_overwrite() may set it */ | |
3448 } | |
3449 } | |
3450 if (exiting) | |
3451 { | |
3452 if (!error) | |
3453 getout(0); /* exit Vim */ | |
3454 not_exiting(); | |
3455 } | |
3456 } | |
3457 | |
3458 /* | |
3459 * Check the 'write' option. | |
3460 * Return TRUE and give a message when it's not st. | |
3461 */ | |
3462 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3463 not_writing(void) |
7 | 3464 { |
3465 if (p_write) | |
3466 return FALSE; | |
3467 EMSG(_("E142: File not written: Writing is disabled by 'write' option")); | |
3468 return TRUE; | |
3469 } | |
3470 | |
3471 /* | |
1303 | 3472 * Check if a buffer is read-only (either 'readonly' option is set or file is |
3473 * read-only). Ask for overruling in a dialog. Return TRUE and give an error | |
3474 * message when the buffer is readonly. | |
7 | 3475 */ |
3476 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3477 check_readonly(int *forceit, buf_T *buf) |
7 | 3478 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9377
diff
changeset
|
3479 stat_T st; |
1303 | 3480 |
3481 /* Handle a file being readonly when the 'readonly' option is set or when | |
3482 * the file exists and permissions are read-only. | |
3483 * We will send 0777 to check_file_readonly(), as the "perm" variable is | |
3484 * important for device checks but not here. */ | |
3485 if (!*forceit && (buf->b_p_ro | |
3486 || (mch_stat((char *)buf->b_ffname, &st) >= 0 | |
3487 && check_file_readonly(buf->b_ffname, 0777)))) | |
7 | 3488 { |
3489 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3490 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL) | |
3491 { | |
2770 | 3492 char_u buff[DIALOG_MSG_SIZE]; |
7 | 3493 |
1303 | 3494 if (buf->b_p_ro) |
3495 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), | |
3496 buf->b_fname); | |
3497 else | |
3498 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"), | |
7 | 3499 buf->b_fname); |
3500 | |
3501 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) | |
3502 { | |
3503 /* Set forceit, to force the writing of a readonly file */ | |
3504 *forceit = TRUE; | |
3505 return FALSE; | |
3506 } | |
3507 else | |
3508 return TRUE; | |
3509 } | |
3510 else | |
3511 #endif | |
1303 | 3512 if (buf->b_p_ro) |
7 | 3513 EMSG(_(e_readonly)); |
1303 | 3514 else |
3515 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"), | |
3516 buf->b_fname); | |
7 | 3517 return TRUE; |
3518 } | |
1303 | 3519 |
7 | 3520 return FALSE; |
3521 } | |
3522 | |
3523 /* | |
632 | 3524 * Try to abandon current file and edit a new or existing file. |
3525 * 'fnum' is the number of the file, if zero use ffname/sfname. | |
7 | 3526 * |
632 | 3527 * Return 1 for "normal" error, 2 for "not written" error, 0 for success |
1370 | 3528 * -1 for successfully opening another file. |
7 | 3529 * 'lnum' is the line number for the cursor in the new file (if non-zero). |
3530 */ | |
3531 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3532 getfile( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3533 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3534 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3535 char_u *sfname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3536 int setpm, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3537 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3538 int forceit) |
7 | 3539 { |
3540 int other; | |
3541 int retval; | |
3542 char_u *free_me = NULL; | |
3543 | |
634 | 3544 if (text_locked()) |
7 | 3545 return 1; |
819 | 3546 #ifdef FEAT_AUTOCMD |
3547 if (curbuf_locked()) | |
3548 return 1; | |
3549 #endif | |
7 | 3550 |
3551 if (fnum == 0) | |
3552 { | |
3553 /* make ffname full path, set sfname */ | |
3554 fname_expand(curbuf, &ffname, &sfname); | |
3555 other = otherfile(ffname); | |
3556 free_me = ffname; /* has been allocated, free() later */ | |
3557 } | |
3558 else | |
3559 other = (fnum != curbuf->b_fnum); | |
3560 | |
3561 if (other) | |
3562 ++no_wait_return; /* don't wait for autowrite message */ | |
3563 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf) | |
3564 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) | |
3565 { | |
3566 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3567 if (p_confirm && p_write) | |
3568 dialog_changed(curbuf, FALSE); | |
3569 if (curbufIsChanged()) | |
3570 #endif | |
3571 { | |
3572 if (other) | |
3573 --no_wait_return; | |
3574 EMSG(_(e_nowrtmsg)); | |
3575 retval = 2; /* file has been changed */ | |
3576 goto theend; | |
3577 } | |
3578 } | |
3579 if (other) | |
3580 --no_wait_return; | |
3581 if (setpm) | |
3582 setpcmark(); | |
3583 if (!other) | |
3584 { | |
3585 if (lnum != 0) | |
3586 curwin->w_cursor.lnum = lnum; | |
3587 check_cursor_lnum(); | |
3588 beginline(BL_SOL | BL_FIX); | |
3589 retval = 0; /* it's in the same file */ | |
3590 } | |
3591 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum, | |
1743 | 3592 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0), |
3593 curwin) == OK) | |
7 | 3594 retval = -1; /* opened another file */ |
3595 else | |
3596 retval = 1; /* error encountered */ | |
3597 | |
3598 theend: | |
3599 vim_free(free_me); | |
3600 return retval; | |
3601 } | |
3602 | |
3603 /* | |
3604 * start editing a new file | |
3605 * | |
3606 * fnum: file number; if zero use ffname/sfname | |
3607 * ffname: the file name | |
3608 * - full path if sfname used, | |
3609 * - any file name if sfname is NULL | |
3610 * - empty string to re-edit with the same file name (but may be | |
3611 * in a different directory) | |
3612 * - NULL to start an empty buffer | |
3613 * sfname: the short file name (or NULL) | |
3614 * eap: contains the command to be executed after loading the file and | |
3615 * forced 'ff' and 'fenc' | |
3616 * newlnum: if > 0: put cursor on this line number (if possible) | |
3617 * if ECMD_LASTL: use last position in loaded file | |
3618 * if ECMD_LAST: use last position in all files | |
3619 * if ECMD_ONE: use first line | |
3620 * flags: | |
3621 * ECMD_HIDE: if TRUE don't free the current buffer | |
3622 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file | |
3623 * ECMD_OLDBUF: use existing buffer if it exists | |
3624 * ECMD_FORCEIT: ! used for Ex command | |
3625 * ECMD_ADDBUF: don't edit, just add to buffer list | |
1743 | 3626 * 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
|
3627 * 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
|
3628 * of the previous buffer for "oldwin" is stored. |
7 | 3629 * |
3630 * return FAIL for failure, OK otherwise | |
3631 */ | |
3632 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3633 do_ecmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3634 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3635 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3636 char_u *sfname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3637 exarg_T *eap, /* can be NULL! */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3638 linenr_T newlnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3639 int flags, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3640 win_T *oldwin) |
7 | 3641 { |
3642 int other_file; /* TRUE if editing another file */ | |
3643 int oldbuf; /* TRUE if using existing buffer */ | |
3644 #ifdef FEAT_AUTOCMD | |
3645 int auto_buf = FALSE; /* TRUE if autocommands brought us | |
3646 into the buffer unexpectedly */ | |
3647 char_u *new_name = NULL; | |
716 | 3648 int did_set_swapcommand = FALSE; |
7 | 3649 #endif |
3650 buf_T *buf; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3651 bufref_T bufref; |
7 | 3652 #if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3653 bufref_T old_curbuf; |
7 | 3654 #endif |
3655 char_u *free_fname = NULL; | |
3656 #ifdef FEAT_BROWSE | |
3657 char_u *browse_file = NULL; | |
3658 #endif | |
3659 int retval = FAIL; | |
3660 long n; | |
6702 | 3661 pos_T orig_pos; |
7 | 3662 linenr_T topline = 0; |
3663 int newcol = -1; | |
3664 int solcol = -1; | |
3665 pos_T *pos; | |
3666 #ifdef FEAT_SUN_WORKSHOP | |
3667 char_u *cp; | |
3668 #endif | |
3669 char_u *command = NULL; | |
1185 | 3670 #ifdef FEAT_SPELL |
3671 int did_get_winopts = FALSE; | |
3672 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3673 int readfile_flags = 0; |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3674 int did_inc_redrawing_disabled = FALSE; |
7 | 3675 |
3676 if (eap != NULL) | |
3677 command = eap->do_ecmd_cmd; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3678 #if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3679 set_bufref(&old_curbuf, curbuf); |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3680 #endif |
7 | 3681 |
3682 if (fnum != 0) | |
3683 { | |
3684 if (fnum == curbuf->b_fnum) /* file is already being edited */ | |
3685 return OK; /* nothing to do */ | |
3686 other_file = TRUE; | |
3687 } | |
3688 else | |
3689 { | |
3690 #ifdef FEAT_BROWSE | |
3691 if (cmdmod.browse) | |
3692 { | |
1683 | 3693 # ifdef FEAT_AUTOCMD |
462 | 3694 if ( |
1683 | 3695 # ifdef FEAT_GUI |
462 | 3696 !gui.in_use && |
1683 | 3697 # endif |
462 | 3698 au_has_group((char_u *)"FileExplorer")) |
3699 { | |
3700 /* No browsing supported but we do have the file explorer: | |
3701 * Edit the directory. */ | |
3702 if (ffname == NULL || !mch_isdir(ffname)) | |
3703 ffname = (char_u *)"."; | |
3704 } | |
3705 else | |
1683 | 3706 # endif |
462 | 3707 { |
3708 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, | |
7 | 3709 NULL, NULL, NULL, curbuf); |
462 | 3710 if (browse_file == NULL) |
3711 goto theend; | |
3712 ffname = browse_file; | |
3713 } | |
7 | 3714 } |
3715 #endif | |
3716 /* if no short name given, use ffname for short name */ | |
3717 if (sfname == NULL) | |
3718 sfname = ffname; | |
3719 #ifdef USE_FNAME_CASE | |
3720 # ifdef USE_LONG_FNAME | |
3721 if (USE_LONG_FNAME) | |
3722 # endif | |
436 | 3723 if (sfname != NULL) |
3724 fname_case(sfname, 0); /* set correct case for sfname */ | |
7 | 3725 #endif |
3726 | |
3727 #ifdef FEAT_LISTCMDS | |
3728 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL)) | |
3729 goto theend; | |
3730 #endif | |
3731 | |
3732 if (ffname == NULL) | |
3733 other_file = TRUE; | |
3734 /* there is no file name */ | |
3735 else if (*ffname == NUL && curbuf->b_ffname == NULL) | |
3736 other_file = FALSE; | |
3737 else | |
3738 { | |
3739 if (*ffname == NUL) /* re-edit with same file name */ | |
3740 { | |
3741 ffname = curbuf->b_ffname; | |
3742 sfname = curbuf->b_fname; | |
3743 } | |
3744 free_fname = fix_fname(ffname); /* may expand to full path name */ | |
3745 if (free_fname != NULL) | |
3746 ffname = free_fname; | |
3747 other_file = otherfile(ffname); | |
3748 #ifdef FEAT_SUN_WORKSHOP | |
3749 if (usingSunWorkShop && p_acd | |
3750 && (cp = vim_strrchr(sfname, '/')) != NULL) | |
3751 sfname = ++cp; | |
3752 #endif | |
3753 } | |
3754 } | |
3755 | |
3756 /* | |
3757 * if the file was changed we may not be allowed to abandon it | |
3758 * - if we are going to re-edit the same file | |
3759 * - or if we are the only window on this file and if ECMD_HIDE is FALSE | |
3760 */ | |
3761 if ( ((!other_file && !(flags & ECMD_OLDBUF)) | |
3762 || (curbuf->b_nwindows == 1 | |
3763 && !(flags & (ECMD_HIDE | ECMD_ADDBUF)))) | |
5464 | 3764 && check_changed(curbuf, (p_awa ? CCGD_AW : 0) |
3765 | (other_file ? 0 : CCGD_MULTWIN) | |
3766 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0) | |
3767 | (eap == NULL ? 0 : CCGD_EXCMD))) | |
7 | 3768 { |
3769 if (fnum == 0 && other_file && ffname != NULL) | |
3770 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); | |
3771 goto theend; | |
3772 } | |
3773 | |
3774 /* | |
3775 * End Visual mode before switching to another buffer, so the text can be | |
3776 * copied into the GUI selection buffer. | |
3777 */ | |
3778 reset_VIsual(); | |
3779 | |
716 | 3780 #ifdef FEAT_AUTOCMD |
3781 if ((command != NULL || newlnum > (linenr_T)0) | |
3782 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) | |
3783 { | |
3784 int len; | |
3785 char_u *p; | |
3786 | |
3787 /* Set v:swapcommand for the SwapExists autocommands. */ | |
3788 if (command != NULL) | |
835 | 3789 len = (int)STRLEN(command) + 3; |
716 | 3790 else |
3791 len = 30; | |
3792 p = alloc((unsigned)len); | |
3793 if (p != NULL) | |
3794 { | |
3795 if (command != NULL) | |
3796 vim_snprintf((char *)p, len, ":%s\r", command); | |
3797 else | |
3798 vim_snprintf((char *)p, len, "%ldG", (long)newlnum); | |
3799 set_vim_var_string(VV_SWAPCOMMAND, p, -1); | |
3800 did_set_swapcommand = TRUE; | |
3801 vim_free(p); | |
3802 } | |
3803 } | |
3804 #endif | |
3805 | |
7 | 3806 /* |
3807 * If we are starting to edit another file, open a (new) buffer. | |
3808 * Otherwise we re-use the current buffer. | |
3809 */ | |
3810 if (other_file) | |
3811 { | |
3812 #ifdef FEAT_LISTCMDS | |
3813 if (!(flags & ECMD_ADDBUF)) | |
3814 #endif | |
3815 { | |
22 | 3816 if (!cmdmod.keepalt) |
3817 curwin->w_alt_fnum = curbuf->b_fnum; | |
1743 | 3818 if (oldwin != NULL) |
3819 buflist_altfpos(oldwin); | |
7 | 3820 } |
3821 | |
3822 if (fnum) | |
3823 buf = buflist_findnr(fnum); | |
3824 else | |
3825 { | |
3826 #ifdef FEAT_LISTCMDS | |
3827 if (flags & ECMD_ADDBUF) | |
3828 { | |
3829 linenr_T tlnum = 1L; | |
3830 | |
3831 if (command != NULL) | |
3832 { | |
3833 tlnum = atol((char *)command); | |
3834 if (tlnum <= 0) | |
3835 tlnum = 1L; | |
3836 } | |
3837 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED); | |
3838 goto theend; | |
3839 } | |
3840 #endif | |
3841 buf = buflist_new(ffname, sfname, 0L, | |
3842 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED)); | |
5816 | 3843 #ifdef FEAT_AUTOCMD |
3844 /* autocommands may change curwin and curbuf */ | |
3845 if (oldwin != NULL) | |
3846 oldwin = curwin; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3847 set_bufref(&old_curbuf, curbuf); |
5816 | 3848 #endif |
7 | 3849 } |
3850 if (buf == NULL) | |
3851 goto theend; | |
3852 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */ | |
3853 { | |
3854 oldbuf = FALSE; | |
3855 } | |
3856 else /* existing memfile */ | |
3857 { | |
3858 oldbuf = TRUE; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3859 set_bufref(&bufref, buf); |
7 | 3860 (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
|
3861 /* 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
|
3862 * current buffer. */ |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3863 if (!bufref_valid(&bufref) |
7 | 3864 #ifdef FEAT_AUTOCMD |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3865 || curbuf != old_curbuf.br_buf |
7 | 3866 #endif |
3867 ) | |
3868 goto theend; | |
3869 #ifdef FEAT_EVAL | |
3870 if (aborting()) /* autocmds may abort script processing */ | |
3871 goto theend; | |
3872 #endif | |
3873 } | |
3874 | |
3875 /* May jump to last used line number for a loaded buffer or when asked | |
3876 * for explicitly */ | |
3877 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) | |
3878 { | |
3879 pos = buflist_findfpos(buf); | |
3880 newlnum = pos->lnum; | |
3881 solcol = pos->col; | |
3882 } | |
3883 | |
3884 /* | |
3885 * Make the (new) buffer the one used by the current window. | |
3886 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. | |
3887 * If the current buffer was empty and has no file name, curbuf | |
6639 | 3888 * is returned by buflist_new(), nothing to do here. |
7 | 3889 */ |
3890 if (buf != curbuf) | |
3891 { | |
3892 #ifdef FEAT_AUTOCMD | |
3893 /* | |
3894 * Be careful: The autocommands may delete any buffer and change | |
3895 * the current buffer. | |
3896 * - If the buffer we are going to edit is deleted, give up. | |
3897 * - If the current buffer is deleted, prefer to load the new | |
3898 * buffer when loading a buffer is required. This avoids | |
3899 * loading another buffer which then must be closed again. | |
3900 * - If we ended up in the new buffer already, need to skip a few | |
3901 * things, set auto_buf. | |
3902 */ | |
3903 if (buf->b_fname != NULL) | |
3904 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
|
3905 set_bufref(&au_new_curbuf, buf); |
7 | 3906 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
|
3907 if (!bufref_valid(&au_new_curbuf)) |
7 | 3908 { |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3909 /* new buffer has been deleted */ |
7 | 3910 delbuf_msg(new_name); /* frees new_name */ |
3911 goto theend; | |
3912 } | |
3913 # ifdef FEAT_EVAL | |
3914 if (aborting()) /* autocmds may abort script processing */ | |
3915 { | |
3916 vim_free(new_name); | |
3917 goto theend; | |
3918 } | |
3919 # endif | |
3920 if (buf == curbuf) /* already in new buffer */ | |
3921 auto_buf = TRUE; | |
3922 else | |
3923 { | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3924 win_T *the_curwin = curwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3925 |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3926 /* 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
|
3927 * 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
|
3928 the_curwin->w_closing = TRUE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
3929 ++buf->b_locked; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3930 |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3931 if (curbuf == old_curbuf.br_buf) |
7 | 3932 #endif |
3933 buf_copy_options(buf, BCO_ENTER); | |
3934 | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3935 /* 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
|
3936 * oldwin->w_buffer to NULL. */ |
825 | 3937 u_sync(FALSE); |
1743 | 3938 close_buffer(oldwin, curbuf, |
3365 | 3939 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE); |
7 | 3940 |
3941 #ifdef FEAT_AUTOCMD | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3942 the_curwin->w_closing = FALSE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
3943 --buf->b_locked; |
3242 | 3944 |
7 | 3945 # ifdef FEAT_EVAL |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3946 /* autocmds may abort script processing */ |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3947 if (aborting() && curwin->w_buffer != NULL) |
7 | 3948 { |
3949 vim_free(new_name); | |
3950 goto theend; | |
3951 } | |
3952 # endif | |
3953 /* Be careful again, like above. */ | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3954 if (!bufref_valid(&au_new_curbuf)) |
7 | 3955 { |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3956 /* new buffer has been deleted */ |
7 | 3957 delbuf_msg(new_name); /* frees new_name */ |
3958 goto theend; | |
3959 } | |
3960 if (buf == curbuf) /* already in new buffer */ | |
3961 auto_buf = TRUE; | |
3962 else | |
3963 #endif | |
3964 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3965 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3966 /* |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3967 * <VN> We could instead free the synblock |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3968 * and re-attach to buffer, perhaps. |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3969 */ |
10482
712acb0ad6a8
commit https://github.com/vim/vim/commit/c4bfedabe057c05f09a455a5851089e177fa9c00
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
3970 if (curwin->w_buffer != NULL |
712acb0ad6a8
commit https://github.com/vim/vim/commit/c4bfedabe057c05f09a455a5851089e177fa9c00
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
3971 && curwin->w_s == &(curwin->w_buffer->b_s)) |
3480 | 3972 curwin->w_s = &(buf->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3973 #endif |
7 | 3974 curwin->w_buffer = buf; |
3975 curbuf = buf; | |
3976 ++curbuf->b_nwindows; | |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3977 |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3978 /* Set 'fileformat', 'binary' and 'fenc' when forced. */ |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3979 if (!oldbuf && eap != NULL) |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3980 { |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3981 set_file_options(TRUE, eap); |
5242
f0361e297d9c
updated for version 7.4a.046
Bram Moolenaar <bram@vim.org>
parents:
5231
diff
changeset
|
3982 #ifdef FEAT_MBYTE |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3983 set_forced_fenc(eap); |
5242
f0361e297d9c
updated for version 7.4a.046
Bram Moolenaar <bram@vim.org>
parents:
5231
diff
changeset
|
3984 #endif |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3985 } |
7 | 3986 } |
3987 | |
3988 /* May get the window options from the last time this buffer | |
3989 * was in this window (or another window). If not used | |
3990 * before, reset the local window options to the global | |
3991 * values. Also restores old folding stuff. */ | |
1289 | 3992 get_winopts(curbuf); |
1185 | 3993 #ifdef FEAT_SPELL |
3994 did_get_winopts = TRUE; | |
3995 #endif | |
7 | 3996 |
3997 #ifdef FEAT_AUTOCMD | |
3998 } | |
3999 vim_free(new_name); | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
4000 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
|
4001 au_new_curbuf.br_buf_free_count = 0; |
7 | 4002 #endif |
4003 } | |
4004 | |
4005 curwin->w_pcmark.lnum = 1; | |
4006 curwin->w_pcmark.col = 0; | |
4007 } | |
4008 else /* !other_file */ | |
4009 { | |
4010 if ( | |
4011 #ifdef FEAT_LISTCMDS | |
4012 (flags & ECMD_ADDBUF) || | |
4013 #endif | |
4014 check_fname() == FAIL) | |
4015 goto theend; | |
6531 | 4016 |
7 | 4017 oldbuf = (flags & ECMD_OLDBUF); |
4018 } | |
4019 | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4020 /* 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
|
4021 * autocommands may cause ml_get errors. */ |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4022 ++RedrawingDisabled; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4023 did_inc_redrawing_disabled = TRUE; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4024 |
6365 | 4025 #ifdef FEAT_AUTOCMD |
4026 buf = curbuf; | |
4027 #endif | |
7 | 4028 if ((flags & ECMD_SET_HELP) || keep_help_flag) |
4029 { | |
6365 | 4030 prepare_help_buffer(); |
7 | 4031 } |
4032 else | |
4033 { | |
4034 /* Don't make a buffer listed if it's a help buffer. Useful when | |
4035 * using CTRL-O to go back to a help file. */ | |
4036 if (!curbuf->b_help) | |
4037 set_buflisted(TRUE); | |
4038 } | |
4039 | |
4040 #ifdef FEAT_AUTOCMD | |
4041 /* If autocommands change buffers under our fingers, forget about | |
4042 * editing the file. */ | |
4043 if (buf != curbuf) | |
4044 goto theend; | |
4045 # ifdef FEAT_EVAL | |
4046 if (aborting()) /* autocmds may abort script processing */ | |
4047 goto theend; | |
4048 # endif | |
4049 | |
4050 /* Since we are starting to edit a file, consider the filetype to be | |
4051 * unset. Helps for when an autocommand changes files and expects syntax | |
4052 * highlighting to work in the other file. */ | |
4053 did_filetype = FALSE; | |
4054 #endif | |
4055 | |
4056 /* | |
4057 * other_file oldbuf | |
4058 * FALSE FALSE re-edit same file, buffer is re-used | |
4059 * FALSE TRUE re-edit same file, nothing changes | |
4060 * TRUE FALSE start editing new file, new buffer | |
4061 * TRUE TRUE start editing in existing buffer (nothing to do) | |
4062 */ | |
4063 if (!other_file && !oldbuf) /* re-use the buffer */ | |
4064 { | |
4065 set_last_cursor(curwin); /* may set b_last_cursor */ | |
4066 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) | |
4067 { | |
4068 newlnum = curwin->w_cursor.lnum; | |
4069 solcol = curwin->w_cursor.col; | |
4070 } | |
4071 #ifdef FEAT_AUTOCMD | |
4072 buf = curbuf; | |
4073 if (buf->b_fname != NULL) | |
4074 new_name = vim_strsave(buf->b_fname); | |
4075 else | |
4076 new_name = NULL; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
4077 set_bufref(&bufref, buf); |
7 | 4078 #endif |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4079 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
|
4080 { |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4081 /* 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
|
4082 * 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
|
4083 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
|
4084 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
|
4085 == FAIL) |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
4086 { |
9715
dc2237f19ce2
commit https://github.com/vim/vim/commit/fc1f2015e833e69b89b994faf4b2c4fc1e09220f
Christian Brabandt <cb@256bit.org>
parents:
9705
diff
changeset
|
4087 #ifdef FEAT_AUTOCMD |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
4088 vim_free(new_name); |
9715
dc2237f19ce2
commit https://github.com/vim/vim/commit/fc1f2015e833e69b89b994faf4b2c4fc1e09220f
Christian Brabandt <cb@256bit.org>
parents:
9705
diff
changeset
|
4089 #endif |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4090 goto theend; |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
4091 } |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4092 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
|
4093 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
|
4094 |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4095 /* 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
|
4096 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
|
4097 } |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4098 else |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4099 buf_freeall(curbuf, 0); /* free all things for buffer */ |
7 | 4100 #ifdef FEAT_AUTOCMD |
4101 /* If autocommands deleted the buffer we were going to re-edit, give | |
4102 * 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
|
4103 if (!bufref_valid(&bufref)) |
7 | 4104 { |
4105 delbuf_msg(new_name); /* frees new_name */ | |
4106 goto theend; | |
4107 } | |
4108 vim_free(new_name); | |
4109 | |
4110 /* If autocommands change buffers under our fingers, forget about | |
4111 * re-editing the file. Should do the buf_clear_file(), but perhaps | |
4112 * the autocommands changed the buffer... */ | |
4113 if (buf != curbuf) | |
4114 goto theend; | |
4115 # ifdef FEAT_EVAL | |
4116 if (aborting()) /* autocmds may abort script processing */ | |
4117 goto theend; | |
4118 # endif | |
4119 #endif | |
4120 buf_clear_file(curbuf); | |
4121 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */ | |
4122 curbuf->b_op_end.lnum = 0; | |
4123 } | |
4124 | |
4125 /* | |
4126 * If we get here we are sure to start editing | |
4127 */ | |
4128 /* Assume success now */ | |
4129 retval = OK; | |
4130 | |
4131 /* | |
4132 * Check if we are editing the w_arg_idx file in the argument list. | |
4133 */ | |
4134 check_arg_idx(curwin); | |
4135 | |
4136 #ifdef FEAT_AUTOCMD | |
4137 if (!auto_buf) | |
4138 #endif | |
4139 { | |
4140 /* | |
4141 * Set cursor and init window before reading the file and executing | |
4142 * autocommands. This allows for the autocommands to position the | |
4143 * cursor. | |
4144 */ | |
677 | 4145 curwin_init(); |
7 | 4146 |
4147 #ifdef FEAT_FOLDING | |
1370 | 4148 /* It's possible that all lines in the buffer changed. Need to update |
4149 * automatic folding for all windows where it's used. */ | |
4150 # ifdef FEAT_WINDOWS | |
4151 { | |
4152 win_T *win; | |
4153 tabpage_T *tp; | |
4154 | |
4155 FOR_ALL_TAB_WINDOWS(tp, win) | |
4156 if (win->w_buffer == curbuf) | |
4157 foldUpdateAll(win); | |
4158 } | |
4159 # else | |
7 | 4160 foldUpdateAll(curwin); |
1370 | 4161 # endif |
7 | 4162 #endif |
4163 | |
961 | 4164 /* Change directories when the 'acd' option is set. */ |
4165 DO_AUTOCHDIR | |
4166 | |
7 | 4167 /* |
4168 * Careful: open_buffer() and apply_autocmds() may change the current | |
4169 * buffer and window. | |
4170 */ | |
6702 | 4171 orig_pos = curwin->w_cursor; |
7 | 4172 topline = curwin->w_topline; |
4173 if (!oldbuf) /* need to read the file */ | |
4174 { | |
580 | 4175 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 4176 swap_exists_action = SEA_DIALOG; |
4177 #endif | |
4178 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */ | |
4179 | |
4180 /* | |
4181 * Open the buffer and read the file. | |
4182 */ | |
4183 #if defined(FEAT_AUTOCMD) && 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
|
4184 if (should_abort(open_buffer(FALSE, eap, readfile_flags))) |
7 | 4185 retval = FAIL; |
4186 #else | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4187 (void)open_buffer(FALSE, eap, readfile_flags); |
7 | 4188 #endif |
4189 | |
580 | 4190 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 4191 if (swap_exists_action == SEA_QUIT) |
4192 retval = FAIL; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
4193 handle_swap_exists(&old_curbuf); |
7 | 4194 #endif |
4195 } | |
4196 #ifdef FEAT_AUTOCMD | |
4197 else | |
4198 { | |
23 | 4199 /* Read the modelines, but only to set window-local options. Any |
4200 * buffer-local options have already been set and may have been | |
4201 * changed by the user. */ | |
717 | 4202 do_modelines(OPT_WINONLY); |
23 | 4203 |
7 | 4204 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, |
4205 &retval); | |
4206 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, | |
4207 &retval); | |
4208 } | |
4209 check_arg_idx(curwin); | |
4210 #endif | |
4211 | |
6702 | 4212 /* If autocommands change the cursor position or topline, we should |
4213 * keep it. Also when it moves within a line. */ | |
4214 if (!equalpos(curwin->w_cursor, orig_pos)) | |
7 | 4215 { |
4216 newlnum = curwin->w_cursor.lnum; | |
4217 newcol = curwin->w_cursor.col; | |
4218 } | |
4219 if (curwin->w_topline == topline) | |
4220 topline = 0; | |
4221 | |
4222 /* Even when cursor didn't move we need to recompute topline. */ | |
4223 changed_line_abv_curs(); | |
4224 | |
4225 #ifdef FEAT_TITLE | |
4226 maketitle(); | |
4227 #endif | |
4228 } | |
4229 | |
4230 #ifdef FEAT_DIFF | |
4231 /* Tell the diff stuff that this buffer is new and/or needs updating. | |
4232 * Also needed when re-editing the same buffer, because unloading will | |
4233 * have removed it as a diff buffer. */ | |
673 | 4234 if (curwin->w_p_diff) |
4235 { | |
4236 diff_buf_add(curbuf); | |
4237 diff_invalidate(curbuf); | |
4238 } | |
7 | 4239 #endif |
4240 | |
1185 | 4241 #ifdef FEAT_SPELL |
4242 /* If the window options were changed may need to set the spell language. | |
4243 * 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
|
4244 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
|
4245 (void)did_set_spelllang(curwin); |
1185 | 4246 #endif |
4247 | |
7 | 4248 if (command == NULL) |
4249 { | |
4250 if (newcol >= 0) /* position set by autocommands */ | |
4251 { | |
4252 curwin->w_cursor.lnum = newlnum; | |
4253 curwin->w_cursor.col = newcol; | |
4254 check_cursor(); | |
4255 } | |
4256 else if (newlnum > 0) /* line number from caller or old position */ | |
4257 { | |
4258 curwin->w_cursor.lnum = newlnum; | |
4259 check_cursor_lnum(); | |
4260 if (solcol >= 0 && !p_sol) | |
4261 { | |
4262 /* 'sol' is off: Use last known column. */ | |
4263 curwin->w_cursor.col = solcol; | |
4264 check_cursor_col(); | |
4265 #ifdef FEAT_VIRTUALEDIT | |
4266 curwin->w_cursor.coladd = 0; | |
4267 #endif | |
4268 curwin->w_set_curswant = TRUE; | |
4269 } | |
4270 else | |
4271 beginline(BL_SOL | BL_FIX); | |
4272 } | |
4273 else /* no line number, go to last line in Ex mode */ | |
4274 { | |
4275 if (exmode_active) | |
4276 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4277 beginline(BL_WHITE | BL_FIX); | |
4278 } | |
4279 } | |
4280 | |
4281 #ifdef FEAT_WINDOWS | |
4282 /* Check if cursors in other windows on the same buffer are still valid */ | |
4283 check_lnums(FALSE); | |
4284 #endif | |
4285 | |
4286 /* | |
4287 * Did not read the file, need to show some info about the file. | |
4288 * Do this after setting the cursor. | |
4289 */ | |
4290 if (oldbuf | |
4291 #ifdef FEAT_AUTOCMD | |
4292 && !auto_buf | |
4293 #endif | |
4294 ) | |
4295 { | |
4296 int msg_scroll_save = msg_scroll; | |
4297 | |
4298 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file | |
4299 * message. */ | |
4300 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) | |
4301 msg_scroll = FALSE; | |
4302 if (!msg_scroll) /* wait a bit when overwriting an error msg */ | |
4303 check_for_delay(FALSE); | |
4304 msg_start(); | |
4305 msg_scroll = msg_scroll_save; | |
4306 msg_scrolled_ign = TRUE; | |
4307 | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
4308 if (!shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
4309 fileinfo(FALSE, TRUE, FALSE); |
7 | 4310 |
4311 msg_scrolled_ign = FALSE; | |
4312 } | |
4313 | |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4314 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4315 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4316 #endif |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4317 |
7 | 4318 if (command != NULL) |
4319 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); | |
4320 | |
4321 #ifdef FEAT_KEYMAP | |
4322 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 4323 (void)keymap_init(); |
7 | 4324 #endif |
4325 | |
4326 --RedrawingDisabled; | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4327 did_inc_redrawing_disabled = FALSE; |
7 | 4328 if (!skip_redraw) |
4329 { | |
4330 n = p_so; | |
4331 if (topline == 0 && command == NULL) | |
4332 p_so = 999; /* force cursor halfway the window */ | |
4333 update_topline(); | |
4334 #ifdef FEAT_SCROLLBIND | |
4335 curwin->w_scbind_pos = curwin->w_topline; | |
4336 #endif | |
4337 p_so = n; | |
4338 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */ | |
4339 } | |
4340 | |
4341 if (p_im) | |
4342 need_start_insertmode = TRUE; | |
4343 | |
961 | 4344 /* Change directories when the 'acd' option is set. */ |
4345 DO_AUTOCHDIR | |
821 | 4346 |
4347 #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
|
4348 if (curbuf->b_ffname != NULL) |
7 | 4349 { |
4350 # ifdef FEAT_SUN_WORKSHOP | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
4351 if (gui.in_use && usingSunWorkShop) |
7 | 4352 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro); |
4353 # endif | |
4354 # ifdef FEAT_NETBEANS_INTG | |
2210 | 4355 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP) |
34 | 4356 netbeans_file_opened(curbuf); |
7 | 4357 # endif |
4358 } | |
4359 #endif | |
4360 | |
4361 theend: | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4362 if (did_inc_redrawing_disabled) |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4363 --RedrawingDisabled; |
716 | 4364 #ifdef FEAT_AUTOCMD |
4365 if (did_set_swapcommand) | |
4366 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); | |
4367 #endif | |
7 | 4368 #ifdef FEAT_BROWSE |
4369 vim_free(browse_file); | |
4370 #endif | |
4371 vim_free(free_fname); | |
4372 return retval; | |
4373 } | |
4374 | |
4375 #ifdef FEAT_AUTOCMD | |
4376 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4377 delbuf_msg(char_u *name) |
7 | 4378 { |
4379 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"), | |
4380 name == NULL ? (char_u *)"" : name); | |
4381 vim_free(name); | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
4382 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
|
4383 au_new_curbuf.br_buf_free_count = 0; |
7 | 4384 } |
4385 #endif | |
4386 | |
169 | 4387 static int append_indent = 0; /* autoindent for first line */ |
4388 | |
7 | 4389 /* |
4390 * ":insert" and ":append", also used by ":change" | |
4391 */ | |
4392 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4393 ex_append(exarg_T *eap) |
7 | 4394 { |
4395 char_u *theline; | |
4396 int did_undo = FALSE; | |
4397 linenr_T lnum = eap->line2; | |
165 | 4398 int indent = 0; |
4399 char_u *p; | |
4400 int vcol; | |
4401 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); | |
7 | 4402 |
169 | 4403 /* the ! flag toggles autoindent */ |
4404 if (eap->forceit) | |
4405 curbuf->b_p_ai = !curbuf->b_p_ai; | |
4406 | |
4407 /* First autoindent comes from the line we start on */ | |
4408 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) | |
4409 append_indent = get_indent_lnum(lnum); | |
4410 | |
7 | 4411 if (eap->cmdidx != CMD_append) |
4412 --lnum; | |
4413 | |
9377
5ec4fbfe38c5
commit https://github.com/vim/vim/commit/70e136e1d86ea1d795774824c7b712245912946d
Christian Brabandt <cb@256bit.org>
parents:
9347
diff
changeset
|
4414 /* when the buffer is empty need to delete the dummy line */ |
165 | 4415 if (empty && lnum == 1) |
4416 lnum = 0; | |
4417 | |
7 | 4418 State = INSERT; /* behave like in Insert mode */ |
4419 if (curbuf->b_p_iminsert == B_IMODE_LMAP) | |
4420 State |= LANGMAP; | |
165 | 4421 |
408 | 4422 for (;;) |
7 | 4423 { |
4424 msg_scroll = TRUE; | |
4425 need_wait_return = FALSE; | |
169 | 4426 if (curbuf->b_p_ai) |
4427 { | |
4428 if (append_indent >= 0) | |
4429 { | |
4430 indent = append_indent; | |
4431 append_indent = -1; | |
4432 } | |
4433 else if (lnum > 0) | |
4434 indent = get_indent_lnum(lnum); | |
4435 } | |
4436 ex_keep_indent = FALSE; | |
7 | 4437 if (eap->getline == NULL) |
169 | 4438 { |
4439 /* No getline() function, use the lines that follow. This ends | |
4440 * when there is no more. */ | |
4441 if (eap->nextcmd == NULL || *eap->nextcmd == NUL) | |
4442 break; | |
4443 p = vim_strchr(eap->nextcmd, NL); | |
4444 if (p == NULL) | |
4445 p = eap->nextcmd + STRLEN(eap->nextcmd); | |
4446 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd)); | |
4447 if (*p != NUL) | |
4448 ++p; | |
4449 eap->nextcmd = p; | |
4450 } | |
7 | 4451 else |
6164 | 4452 { |
4453 int save_State = State; | |
4454 | |
4455 /* Set State to avoid the cursor shape to be set to INSERT mode | |
4456 * when getline() returns. */ | |
4457 State = CMDLINE; | |
7 | 4458 theline = eap->getline( |
4459 #ifdef FEAT_EVAL | |
76 | 4460 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 4461 #endif |
165 | 4462 NUL, eap->cookie, indent); |
6164 | 4463 State = save_State; |
4464 } | |
7 | 4465 lines_left = Rows - 1; |
165 | 4466 if (theline == NULL) |
4467 break; | |
4468 | |
169 | 4469 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */ |
4470 if (ex_keep_indent) | |
4471 append_indent = indent; | |
4472 | |
165 | 4473 /* Look for the "." after automatic indent. */ |
4474 vcol = 0; | |
4475 for (p = theline; indent > vcol; ++p) | |
4476 { | |
4477 if (*p == ' ') | |
4478 ++vcol; | |
4479 else if (*p == TAB) | |
4480 vcol += 8 - vcol % 8; | |
4481 else | |
4482 break; | |
4483 } | |
4484 if ((p[0] == '.' && p[1] == NUL) | |
321 | 4485 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
4486 == FAIL)) | |
7 | 4487 { |
4488 vim_free(theline); | |
4489 break; | |
4490 } | |
4491 | |
169 | 4492 /* don't use autoindent if nothing was typed. */ |
4493 if (p[0] == NUL) | |
4494 theline[0] = NUL; | |
4495 | |
7 | 4496 did_undo = TRUE; |
4497 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
|
4498 appended_lines_mark(lnum + (empty ? 1 : 0), 1L); |
7 | 4499 |
4500 vim_free(theline); | |
4501 ++lnum; | |
165 | 4502 |
4503 if (empty) | |
4504 { | |
4505 ml_delete(2L, FALSE); | |
4506 empty = FALSE; | |
4507 } | |
7 | 4508 } |
4509 State = NORMAL; | |
4510 | |
169 | 4511 if (eap->forceit) |
4512 curbuf->b_p_ai = !curbuf->b_p_ai; | |
4513 | |
7 | 4514 /* "start" is set to eap->line2+1 unless that position is invalid (when |
1227 | 4515 * eap->line2 pointed to the end of the buffer and nothing was appended) |
7 | 4516 * "end" is set to lnum when something has been appended, otherwise |
4517 * it is the same than "start" -- Acevedo */ | |
4518 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ? | |
4519 eap->line2 + 1 : curbuf->b_ml.ml_line_count; | |
4520 if (eap->cmdidx != CMD_append) | |
4521 --curbuf->b_op_start.lnum; | |
4522 curbuf->b_op_end.lnum = (eap->line2 < lnum) | |
4523 ? lnum : curbuf->b_op_start.lnum; | |
4524 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
4525 curwin->w_cursor.lnum = lnum; | |
4526 check_cursor_lnum(); | |
4527 beginline(BL_SOL | BL_FIX); | |
4528 | |
4529 need_wait_return = FALSE; /* don't use wait_return() now */ | |
4530 ex_no_reprint = TRUE; | |
4531 } | |
4532 | |
4533 /* | |
4534 * ":change" | |
4535 */ | |
4536 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4537 ex_change(exarg_T *eap) |
7 | 4538 { |
4539 linenr_T lnum; | |
4540 | |
4541 if (eap->line2 >= eap->line1 | |
4542 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) | |
4543 return; | |
4544 | |
169 | 4545 /* the ! flag toggles autoindent */ |
4546 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) | |
4547 append_indent = get_indent_lnum(eap->line1); | |
4548 | |
7 | 4549 for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
4550 { | |
4551 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ | |
4552 break; | |
4553 ml_delete(eap->line1, FALSE); | |
4554 } | |
1929 | 4555 |
4556 /* make sure the cursor is not beyond the end of the file now */ | |
4557 check_cursor_lnum(); | |
7 | 4558 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
4559 | |
4560 /* ":append" on the line above the deleted lines. */ | |
4561 eap->line2 = eap->line1; | |
4562 ex_append(eap); | |
4563 } | |
4564 | |
4565 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4566 ex_z(exarg_T *eap) |
7 | 4567 { |
4568 char_u *x; | |
165 | 4569 int bigness; |
4570 char_u *kind; | |
7 | 4571 int minus = 0; |
4572 linenr_T start, end, curs, i; | |
4573 int j; | |
4574 linenr_T lnum = eap->line2; | |
4575 | |
165 | 4576 /* Vi compatible: ":z!" uses display height, without a count uses |
4577 * 'scroll' */ | |
4578 if (eap->forceit) | |
4579 bigness = curwin->w_height; | |
5678 | 4580 #ifdef FEAT_WINDOWS |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10299
diff
changeset
|
4581 else if (!ONE_WINDOW) |
5678 | 4582 bigness = curwin->w_height - 3; |
4583 #endif | |
4584 else | |
165 | 4585 bigness = curwin->w_p_scr * 2; |
7 | 4586 if (bigness < 1) |
4587 bigness = 1; | |
4588 | |
4589 x = eap->arg; | |
165 | 4590 kind = x; |
4591 if (*kind == '-' || *kind == '+' || *kind == '=' | |
4592 || *kind == '^' || *kind == '.') | |
4593 ++x; | |
4594 while (*x == '-' || *x == '+') | |
7 | 4595 ++x; |
4596 | |
4597 if (*x != 0) | |
4598 { | |
4599 if (!VIM_ISDIGIT(*x)) | |
4600 { | |
4601 EMSG(_("E144: non-numeric argument to :z")); | |
4602 return; | |
4603 } | |
4604 else | |
165 | 4605 { |
7 | 4606 bigness = atoi((char *)x); |
165 | 4607 p_window = bigness; |
169 | 4608 if (*kind == '=') |
4609 bigness += 2; | |
165 | 4610 } |
7 | 4611 } |
4612 | |
165 | 4613 /* the number of '-' and '+' multiplies the distance */ |
4614 if (*kind == '-' || *kind == '+') | |
4615 for (x = kind + 1; *x == *kind; ++x) | |
4616 ; | |
4617 | |
4618 switch (*kind) | |
7 | 4619 { |
4620 case '-': | |
2881 | 4621 start = lnum - bigness * (linenr_T)(x - kind) + 1; |
4622 end = start + bigness - 1; | |
165 | 4623 curs = end; |
7 | 4624 break; |
4625 | |
4626 case '=': | |
159 | 4627 start = lnum - (bigness + 1) / 2 + 1; |
4628 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4629 curs = lnum; |
4630 minus = 1; | |
4631 break; | |
4632 | |
4633 case '^': | |
4634 start = lnum - bigness * 2; | |
4635 end = lnum - bigness; | |
4636 curs = lnum - bigness; | |
4637 break; | |
4638 | |
4639 case '.': | |
159 | 4640 start = lnum - (bigness + 1) / 2 + 1; |
4641 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4642 curs = end; |
4643 break; | |
4644 | |
4645 default: /* '+' */ | |
4646 start = lnum; | |
165 | 4647 if (*kind == '+') |
835 | 4648 start += bigness * (linenr_T)(x - kind - 1) + 1; |
169 | 4649 else if (eap->addr_count == 0) |
4650 ++start; | |
4651 end = start + bigness - 1; | |
7 | 4652 curs = end; |
4653 break; | |
4654 } | |
4655 | |
4656 if (start < 1) | |
4657 start = 1; | |
4658 | |
4659 if (end > curbuf->b_ml.ml_line_count) | |
4660 end = curbuf->b_ml.ml_line_count; | |
4661 | |
4662 if (curs > curbuf->b_ml.ml_line_count) | |
4663 curs = curbuf->b_ml.ml_line_count; | |
4664 | |
4665 for (i = start; i <= end; i++) | |
4666 { | |
4667 if (minus && i == lnum) | |
4668 { | |
4669 msg_putchar('\n'); | |
4670 | |
4671 for (j = 1; j < Columns; j++) | |
4672 msg_putchar('-'); | |
4673 } | |
4674 | |
169 | 4675 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
7 | 4676 |
4677 if (minus && i == lnum) | |
4678 { | |
4679 msg_putchar('\n'); | |
4680 | |
4681 for (j = 1; j < Columns; j++) | |
4682 msg_putchar('-'); | |
4683 } | |
4684 } | |
4685 | |
4686 curwin->w_cursor.lnum = curs; | |
4687 ex_no_reprint = TRUE; | |
4688 } | |
4689 | |
4690 /* | |
4691 * Check if the restricted flag is set. | |
4692 * If so, give an error message and return TRUE. | |
4693 * Otherwise, return FALSE. | |
4694 */ | |
4695 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4696 check_restricted(void) |
7 | 4697 { |
4698 if (restricted) | |
4699 { | |
4700 EMSG(_("E145: Shell commands not allowed in rvim")); | |
4701 return TRUE; | |
4702 } | |
4703 return FALSE; | |
4704 } | |
4705 | |
4706 /* | |
4707 * Check if the secure flag is set (.exrc or .vimrc in current directory). | |
4708 * If so, give an error message and return TRUE. | |
4709 * Otherwise, return FALSE. | |
4710 */ | |
4711 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4712 check_secure(void) |
7 | 4713 { |
4714 if (secure) | |
4715 { | |
4716 secure = 2; | |
4717 EMSG(_(e_curdir)); | |
4718 return TRUE; | |
4719 } | |
4720 #ifdef HAVE_SANDBOX | |
4721 /* | |
4722 * In the sandbox more things are not allowed, including the things | |
4723 * disallowed in secure mode. | |
4724 */ | |
4725 if (sandbox != 0) | |
4726 { | |
4727 EMSG(_(e_sandbox)); | |
4728 return TRUE; | |
4729 } | |
4730 #endif | |
4731 return FALSE; | |
4732 } | |
4733 | |
4734 static char_u *old_sub = NULL; /* previous substitute pattern */ | |
4735 static int global_need_beginline; /* call beginline() after ":g" */ | |
4736 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4737 /* |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4738 * 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
|
4739 */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4740 typedef struct { |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4741 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
|
4742 int do_ask; /* ask for confirmation */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4743 int do_count; /* count only */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4744 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
|
4745 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
|
4746 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
|
4747 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
|
4748 int do_ic; /* ignore case flag */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4749 } subflags_T; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4750 |
7 | 4751 /* do_sub() |
4752 * | |
4753 * Perform a substitution from line eap->line1 to line eap->line2 using the | |
4754 * command pointed to by eap->arg which should be of the form: | |
4755 * | |
4756 * /pattern/substitution/{flags} | |
4757 * | |
4758 * The usual escapes are supported as described in the regexp docs. | |
4759 */ | |
4760 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4761 do_sub(exarg_T *eap) |
7 | 4762 { |
4763 linenr_T lnum; | |
4764 long i = 0; | |
4765 regmmatch_T regmatch; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4766 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
|
4767 FALSE, FALSE, 0}; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4768 #ifdef FEAT_EVAL |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4769 subflags_T subflags_save; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4770 #endif |
6789 | 4771 int save_do_all; /* remember user specified 'g' flag */ |
4772 int save_do_ask; /* remember user specified 'c' flag */ | |
7 | 4773 char_u *pat = NULL, *sub = NULL; /* init for GCC */ |
4774 int delimiter; | |
4775 int sublen; | |
4776 int got_quit = FALSE; | |
4777 int got_match = FALSE; | |
4778 int temp; | |
4779 int which_pat; | |
4780 char_u *cmd; | |
4781 int save_State; | |
165 | 4782 linenr_T first_line = 0; /* first changed line */ |
4783 linenr_T last_line= 0; /* below last changed line AFTER the | |
7 | 4784 * change */ |
4785 linenr_T old_line_count = curbuf->b_ml.ml_line_count; | |
4786 linenr_T line2; | |
165 | 4787 long nmatch; /* number of lines in match */ |
4788 char_u *sub_firstline; /* allocated copy of first sub line */ | |
4789 int endcolumn = FALSE; /* cursor in last column when done */ | |
170 | 4790 pos_T old_cursor = curwin->w_cursor; |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4791 int start_nsubs; |
3736 | 4792 #ifdef FEAT_EVAL |
5867 | 4793 int save_ma = 0; |
3736 | 4794 #endif |
7 | 4795 |
4796 cmd = eap->arg; | |
4797 if (!global_busy) | |
4798 { | |
4799 sub_nsubs = 0; | |
4800 sub_nlines = 0; | |
4801 } | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4802 start_nsubs = sub_nsubs; |
7 | 4803 |
4804 if (eap->cmdidx == CMD_tilde) | |
4805 which_pat = RE_LAST; /* use last used regexp */ | |
4806 else | |
4807 which_pat = RE_SUBST; /* use last substitute regexp */ | |
4808 | |
4809 /* new pattern and substitution */ | |
4810 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd) | |
4811 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) | |
4812 { | |
4813 /* don't accept alphanumeric for separator */ | |
4814 if (isalpha(*cmd)) | |
4815 { | |
4816 EMSG(_("E146: Regular expressions can't be delimited by letters")); | |
4817 return; | |
4818 } | |
4819 /* | |
4820 * undocumented vi feature: | |
4821 * "\/sub/" and "\?sub?" use last used search pattern (almost like | |
4822 * //sub/r). "\&sub&" use last substitute pattern (like //sub/). | |
4823 */ | |
4824 if (*cmd == '\\') | |
4825 { | |
4826 ++cmd; | |
4827 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
4828 { | |
4829 EMSG(_(e_backslash)); | |
4830 return; | |
4831 } | |
4832 if (*cmd != '&') | |
4833 which_pat = RE_SEARCH; /* use last '/' pattern */ | |
4834 pat = (char_u *)""; /* empty search pattern */ | |
4835 delimiter = *cmd++; /* remember delimiter character */ | |
4836 } | |
4837 else /* find the end of the regexp */ | |
4838 { | |
1466 | 4839 #ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */ |
4840 if (p_altkeymap && curwin->w_p_rl) | |
4841 lrF_sub(cmd); | |
4842 #endif | |
7 | 4843 which_pat = RE_LAST; /* use last used regexp */ |
4844 delimiter = *cmd++; /* remember delimiter character */ | |
4845 pat = cmd; /* remember start of search pat */ | |
4846 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg); | |
4847 if (cmd[0] == delimiter) /* end delimiter found */ | |
4848 *cmd++ = NUL; /* replace it with a NUL */ | |
4849 } | |
4850 | |
4851 /* | |
4852 * Small incompatibility: vi sees '\n' as end of the command, but in | |
4853 * Vim we want to use '\n' to find/substitute a NUL. | |
4854 */ | |
4855 sub = cmd; /* remember the start of the substitution */ | |
4856 | |
4857 while (cmd[0]) | |
4858 { | |
4859 if (cmd[0] == delimiter) /* end delimiter found */ | |
4860 { | |
4861 *cmd++ = NUL; /* replace it with a NUL */ | |
4862 break; | |
4863 } | |
4864 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */ | |
4865 ++cmd; | |
39 | 4866 mb_ptr_adv(cmd); |
7 | 4867 } |
4868 | |
4869 if (!eap->skip) | |
4870 { | |
169 | 4871 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */ |
4872 if (STRCMP(sub, "%") == 0 | |
4873 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) | |
4874 { | |
4875 if (old_sub == NULL) /* there is no previous command */ | |
4876 { | |
4877 EMSG(_(e_nopresub)); | |
4878 return; | |
4879 } | |
4880 sub = old_sub; | |
4881 } | |
4882 else | |
4883 { | |
4884 vim_free(old_sub); | |
4885 old_sub = vim_strsave(sub); | |
4886 } | |
7 | 4887 } |
4888 } | |
4889 else if (!eap->skip) /* use previous pattern and substitution */ | |
4890 { | |
4891 if (old_sub == NULL) /* there is no previous command */ | |
4892 { | |
4893 EMSG(_(e_nopresub)); | |
4894 return; | |
4895 } | |
4896 pat = NULL; /* search_regcomp() will use previous pattern */ | |
4897 sub = old_sub; | |
163 | 4898 |
4899 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the | |
4900 * last column after using "$". */ | |
4901 endcolumn = (curwin->w_curswant == MAXCOL); | |
7 | 4902 } |
4903 | |
5776 | 4904 /* Recognize ":%s/\n//" and turn it into a join command, which is much |
4905 * more efficient. | |
4906 * TODO: find a generic solution to make line-joining operations more | |
4907 * efficient, avoid allocating a string that grows in size. | |
4908 */ | |
5802 | 4909 if (pat != NULL && STRCMP(pat, "\\n") == 0 |
5776 | 4910 && *sub == NUL |
4911 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l' | |
4912 || *cmd == 'p' || *cmd == '#')))) | |
4913 { | |
6426 | 4914 linenr_T joined_lines_count; |
4915 | |
5776 | 4916 curwin->w_cursor.lnum = eap->line1; |
4917 if (*cmd == 'l') | |
4918 eap->flags = EXFLAG_LIST; | |
4919 else if (*cmd == '#') | |
4920 eap->flags = EXFLAG_NR; | |
4921 else if (*cmd == 'p') | |
4922 eap->flags = EXFLAG_PRINT; | |
4923 | |
6426 | 4924 /* The number of lines joined is the number of lines in the range plus |
4925 * one. One less when the last line is included. */ | |
4926 joined_lines_count = eap->line2 - eap->line1 + 1; | |
4927 if (eap->line2 < curbuf->b_ml.ml_line_count) | |
4928 ++joined_lines_count; | |
4929 if (joined_lines_count > 1) | |
4930 { | |
4931 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE); | |
4932 sub_nsubs = joined_lines_count - 1; | |
4933 sub_nlines = 1; | |
4934 (void)do_sub_msg(FALSE); | |
4935 ex_may_print(eap); | |
4936 } | |
4937 | |
4938 if (!cmdmod.keeppatterns) | |
4939 save_re_pat(RE_SUBST, pat, p_magic); | |
4940 #ifdef FEAT_CMDHIST | |
4941 /* put pattern in history */ | |
4942 add_to_history(HIST_SEARCH, pat, TRUE, NUL); | |
4943 #endif | |
4944 | |
5776 | 4945 return; |
4946 } | |
4947 | |
7 | 4948 /* |
4949 * Find trailing options. When '&' is used, keep old options. | |
4950 */ | |
4951 if (*cmd == '&') | |
4952 ++cmd; | |
4953 else | |
4954 { | |
4955 if (!p_ed) | |
4956 { | |
4957 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
|
4958 subflags.do_all = TRUE; |
7 | 4959 else |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4960 subflags.do_all = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4961 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4962 } |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4963 subflags.do_error = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4964 subflags.do_print = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4965 subflags.do_count = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4966 subflags.do_number = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4967 subflags.do_ic = 0; |
7 | 4968 } |
4969 while (*cmd) | |
4970 { | |
4971 /* | |
4972 * Note that 'g' and 'c' are always inverted, also when p_ed is off. | |
4973 * 'r' is never inverted. | |
4974 */ | |
4975 if (*cmd == 'g') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4976 subflags.do_all = !subflags.do_all; |
7 | 4977 else if (*cmd == 'c') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4978 subflags.do_ask = !subflags.do_ask; |
170 | 4979 else if (*cmd == 'n') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4980 subflags.do_count = TRUE; |
7 | 4981 else if (*cmd == 'e') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4982 subflags.do_error = !subflags.do_error; |
7 | 4983 else if (*cmd == 'r') /* use last used regexp */ |
4984 which_pat = RE_LAST; | |
4985 else if (*cmd == 'p') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4986 subflags.do_print = TRUE; |
169 | 4987 else if (*cmd == '#') |
4988 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4989 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4990 subflags.do_number = TRUE; |
169 | 4991 } |
4992 else if (*cmd == 'l') | |
4993 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4994 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4995 subflags.do_list = TRUE; |
169 | 4996 } |
7 | 4997 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
|
4998 subflags.do_ic = 'i'; |
7 | 4999 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
|
5000 subflags.do_ic = 'I'; |
7 | 5001 else |
5002 break; | |
5003 ++cmd; | |
5004 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5005 if (subflags.do_count) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5006 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5007 |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5008 save_do_all = subflags.do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5009 save_do_ask = subflags.do_ask; |
6789 | 5010 |
7 | 5011 /* |
5012 * check for a trailing count | |
5013 */ | |
5014 cmd = skipwhite(cmd); | |
5015 if (VIM_ISDIGIT(*cmd)) | |
5016 { | |
5017 i = getdigits(&cmd); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5018 if (i <= 0 && !eap->skip && subflags.do_error) |
7 | 5019 { |
5020 EMSG(_(e_zerocount)); | |
5021 return; | |
5022 } | |
5023 eap->line1 = eap->line2; | |
5024 eap->line2 += i - 1; | |
5025 if (eap->line2 > curbuf->b_ml.ml_line_count) | |
5026 eap->line2 = curbuf->b_ml.ml_line_count; | |
5027 } | |
5028 | |
5029 /* | |
5030 * check for trailing command or garbage | |
5031 */ | |
5032 cmd = skipwhite(cmd); | |
5033 if (*cmd && *cmd != '"') /* if not end-of-line or comment */ | |
5034 { | |
5035 eap->nextcmd = check_nextcmd(cmd); | |
5036 if (eap->nextcmd == NULL) | |
5037 { | |
5038 EMSG(_(e_trailing)); | |
5039 return; | |
5040 } | |
5041 } | |
5042 | |
5043 if (eap->skip) /* not executing commands, only parsing */ | |
5044 return; | |
5045 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5046 if (!subflags.do_count && !curbuf->b_p_ma) |
823 | 5047 { |
825 | 5048 /* Substitution is not allowed in non-'modifiable' buffer */ |
823 | 5049 EMSG(_(e_modifiable)); |
5050 return; | |
5051 } | |
5052 | |
7 | 5053 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
5054 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5055 if (subflags.do_error) |
7 | 5056 EMSG(_(e_invcmd)); |
5057 return; | |
5058 } | |
5059 | |
5060 /* 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
|
5061 if (subflags.do_ic == 'i') |
7 | 5062 regmatch.rmm_ic = TRUE; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5063 else if (subflags.do_ic == 'I') |
7 | 5064 regmatch.rmm_ic = FALSE; |
5065 | |
5066 sub_firstline = NULL; | |
5067 | |
5068 /* | |
5069 * ~ in the substitute pattern is replaced with the old pattern. | |
5070 * We do it here once to avoid it to be replaced over and over again. | |
5071 * But don't do it when it starts with "\=", then it's an expression. | |
5072 */ | |
5073 if (!(sub[0] == '\\' && sub[1] == '=')) | |
5074 sub = regtilde(sub, p_magic); | |
5075 | |
5076 /* | |
5077 * Check for a match on each line. | |
5078 */ | |
5079 line2 = eap->line2; | |
5080 for (lnum = eap->line1; lnum <= line2 && !(got_quit | |
5081 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) | |
5082 || aborting() | |
5083 #endif | |
5084 ); ++lnum) | |
5085 { | |
1521 | 5086 nmatch = vim_regexec_multi(®match, curwin, curbuf, lnum, |
5087 (colnr_T)0, NULL); | |
7 | 5088 if (nmatch) |
5089 { | |
5090 colnr_T copycol; | |
5091 colnr_T matchcol; | |
5092 colnr_T prev_matchcol = MAXCOL; | |
5093 char_u *new_end, *new_start = NULL; | |
5094 unsigned new_start_len = 0; | |
5095 char_u *p1; | |
5096 int did_sub = FALSE; | |
5097 int lastone; | |
1872 | 5098 int len, copy_len, needed_len; |
7 | 5099 long nmatch_tl = 0; /* nr of lines matched below lnum */ |
5100 int do_again; /* do it again after joining lines */ | |
15 | 5101 int skip_match = FALSE; |
1499 | 5102 linenr_T sub_firstlnum; /* nr of first sub line */ |
7 | 5103 |
5104 /* | |
5105 * The new text is build up step by step, to avoid too much | |
5106 * copying. There are these pieces: | |
1581 | 5107 * sub_firstline The old text, unmodified. |
7 | 5108 * copycol Column in the old text where we started |
5109 * looking for a match; from here old text still | |
5110 * needs to be copied to the new text. | |
5111 * matchcol Column number of the old text where to look | |
5112 * for the next match. It's just after the | |
5113 * previous match or one further. | |
5114 * prev_matchcol Column just after the previous match (if any). | |
5115 * Mostly equal to matchcol, except for the first | |
5116 * match and after skipping an empty match. | |
5117 * regmatch.*pos Where the pattern matched in the old text. | |
5118 * new_start The new text, all that has been produced so | |
5119 * far. | |
5120 * new_end The new text, where to append new text. | |
5121 * | |
1499 | 5122 * lnum The line number where we found the start of |
5123 * the match. Can be below the line we searched | |
5124 * when there is a \n before a \zs in the | |
5125 * pattern. | |
7 | 5126 * sub_firstlnum The line number in the buffer where to look |
5127 * for a match. Can be different from "lnum" | |
5128 * when the pattern or substitute string contains | |
5129 * line breaks. | |
5130 * | |
5131 * Special situations: | |
5132 * - When the substitute string contains a line break, the part up | |
5133 * to the line break is inserted in the text, but the copy of | |
5134 * the original line is kept. "sub_firstlnum" is adjusted for | |
5135 * the inserted lines. | |
5136 * - When the matched pattern contains a line break, the old line | |
5137 * is taken from the line at the end of the pattern. The lines | |
5138 * in the match are deleted later, "sub_firstlnum" is adjusted | |
5139 * accordingly. | |
5140 * | |
5141 * The new text is built up in new_start[]. It has some extra | |
5142 * room to avoid using alloc()/free() too often. new_start_len is | |
1389 | 5143 * the length of the allocated memory at new_start. |
7 | 5144 * |
5145 * Make a copy of the old line, so it won't be taken away when | |
5146 * updating the screen or handling a multi-line match. The "old_" | |
5147 * pointers point into this copy. | |
5148 */ | |
1499 | 5149 sub_firstlnum = lnum; |
7 | 5150 copycol = 0; |
5151 matchcol = 0; | |
5152 | |
5153 /* At first match, remember current cursor position. */ | |
5154 if (!got_match) | |
5155 { | |
5156 setpcmark(); | |
5157 got_match = TRUE; | |
5158 } | |
5159 | |
5160 /* | |
5161 * Loop until nothing more to replace in this line. | |
5162 * 1. Handle match with empty string. | |
5163 * 2. If do_ask is set, ask for confirmation. | |
5164 * 3. substitute the string. | |
5165 * 4. if do_all is set, find next match | |
5166 * 5. break if there isn't another match in this line | |
5167 */ | |
5168 for (;;) | |
5169 { | |
1499 | 5170 /* Advance "lnum" to the line where the match starts. The |
5171 * match does not start in the first line when there is a line | |
5172 * break before \zs. */ | |
5173 if (regmatch.startpos[0].lnum > 0) | |
5174 { | |
5175 lnum += regmatch.startpos[0].lnum; | |
5176 sub_firstlnum += regmatch.startpos[0].lnum; | |
5177 nmatch -= regmatch.startpos[0].lnum; | |
5178 vim_free(sub_firstline); | |
5179 sub_firstline = NULL; | |
5180 } | |
5181 | |
5182 if (sub_firstline == NULL) | |
5183 { | |
5184 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
5185 if (sub_firstline == NULL) | |
5186 { | |
5187 vim_free(new_start); | |
5188 goto outofmem; | |
5189 } | |
5190 } | |
5191 | |
7 | 5192 /* Save the line number of the last change for the final |
5193 * cursor position (just like Vi). */ | |
5194 curwin->w_cursor.lnum = lnum; | |
5195 do_again = FALSE; | |
5196 | |
5197 /* | |
5198 * 1. Match empty string does not count, except for first | |
5199 * match. This reproduces the strange vi behaviour. | |
5200 * This also catches endless loops. | |
5201 */ | |
5202 if (matchcol == prev_matchcol | |
5203 && regmatch.endpos[0].lnum == 0 | |
5204 && matchcol == regmatch.endpos[0].col) | |
5205 { | |
15 | 5206 if (sub_firstline[matchcol] == NUL) |
5207 /* We already were at the end of the line. Don't look | |
5208 * for a match in this line again. */ | |
5209 skip_match = TRUE; | |
5210 else | |
2837 | 5211 { |
5212 /* search for a match at next column */ | |
5213 #ifdef FEAT_MBYTE | |
5214 if (has_mbyte) | |
5215 matchcol += mb_ptr2len(sub_firstline + matchcol); | |
5216 else | |
5217 #endif | |
5218 ++matchcol; | |
5219 } | |
7 | 5220 goto skip; |
5221 } | |
5222 | |
5223 /* Normally we continue searching for a match just after the | |
5224 * previous match. */ | |
5225 matchcol = regmatch.endpos[0].col; | |
5226 prev_matchcol = matchcol; | |
5227 | |
5228 /* | |
170 | 5229 * 2. If do_count is set only increase the counter. |
5230 * If do_ask is set, ask for confirmation. | |
7 | 5231 */ |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5232 if (subflags.do_count) |
170 | 5233 { |
5234 /* For a multi-line match, put matchcol at the NUL at | |
5235 * the end of the line and set nmatch to one, so that | |
5236 * we continue looking for a match on the next line. | |
5237 * Avoids that ":s/\nB\@=//gc" get stuck. */ | |
5238 if (nmatch > 1) | |
5239 { | |
835 | 5240 matchcol = (colnr_T)STRLEN(sub_firstline); |
170 | 5241 nmatch = 1; |
1483 | 5242 skip_match = TRUE; |
170 | 5243 } |
5244 sub_nsubs++; | |
5245 did_sub = TRUE; | |
3736 | 5246 #ifdef FEAT_EVAL |
5247 /* Skip the substitution, unless an expression is used, | |
5248 * then it is evaluated in the sandbox. */ | |
5249 if (!(sub[0] == '\\' && sub[1] == '=')) | |
5250 #endif | |
5251 goto skip; | |
170 | 5252 } |
5253 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5254 if (subflags.do_ask) |
7 | 5255 { |
1874 | 5256 int typed = 0; |
1872 | 5257 |
7 | 5258 /* change State to CONFIRM, so that the mouse works |
5259 * properly */ | |
5260 save_State = State; | |
5261 State = CONFIRM; | |
5262 #ifdef FEAT_MOUSE | |
5263 setmouse(); /* disable mouse in xterm */ | |
5264 #endif | |
5265 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
|
5266 #ifdef FEAT_CURSORBIND |
21f983648487
patch 8.0.0209: cursor binding does not work with :substitute
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
5267 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
|
5268 do_check_cursorbind(); |
21f983648487
patch 8.0.0209: cursor binding does not work with :substitute
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
5269 #endif |
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; | |
5291 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
|
5292 if (subflags.do_number || curwin->w_p_nu) |
5396 | 5293 { |
5294 int numw = number_width(curwin) + 1; | |
5295 sc += numw; | |
5296 ec += numw; | |
5297 } | |
169 | 5298 msg_start(); |
170 | 5299 for (i = 0; i < (long)sc; ++i) |
169 | 5300 msg_putchar(' '); |
170 | 5301 for ( ; i <= (long)ec; ++i) |
169 | 5302 msg_putchar('^'); |
5303 | |
5304 resp = getexmodeline('?', NULL, 0); | |
5305 if (resp != NULL) | |
5306 { | |
1872 | 5307 typed = *resp; |
169 | 5308 vim_free(resp); |
5309 } | |
5310 } | |
5311 else | |
5312 { | |
4076 | 5313 char_u *orig_line = NULL; |
5314 int len_change = 0; | |
7 | 5315 #ifdef FEAT_FOLDING |
169 | 5316 int save_p_fen = curwin->w_p_fen; |
5317 | |
5318 curwin->w_p_fen = FALSE; | |
5319 #endif | |
5320 /* Invert the matched string. | |
5321 * Remove the inversion afterwards. */ | |
5322 temp = RedrawingDisabled; | |
5323 RedrawingDisabled = 0; | |
5324 | |
4076 | 5325 if (new_start != NULL) |
5326 { | |
5327 /* There already was a substitution, we would | |
5328 * like to show this to the user. We cannot | |
5329 * really update the line, it would change | |
5330 * what matches. Temporarily replace the line | |
5331 * and change it back afterwards. */ | |
5332 orig_line = vim_strsave(ml_get(lnum)); | |
5333 if (orig_line != NULL) | |
5334 { | |
5335 char_u *new_line = concat_str(new_start, | |
5336 sub_firstline + copycol); | |
5337 | |
5338 if (new_line == NULL) | |
5339 { | |
5340 vim_free(orig_line); | |
5341 orig_line = NULL; | |
5342 } | |
5343 else | |
5344 { | |
5345 /* Position the cursor relative to the | |
5346 * end of the line, the previous | |
5347 * substitute may have inserted or | |
5348 * deleted characters before the | |
5349 * cursor. */ | |
4086 | 5350 len_change = (int)STRLEN(new_line) |
5351 - (int)STRLEN(orig_line); | |
4076 | 5352 curwin->w_cursor.col += len_change; |
5353 ml_replace(lnum, new_line, FALSE); | |
5354 } | |
5355 } | |
5356 } | |
5357 | |
1499 | 5358 search_match_lines = regmatch.endpos[0].lnum |
5359 - regmatch.startpos[0].lnum; | |
4076 | 5360 search_match_endcol = regmatch.endpos[0].col |
5361 + len_change; | |
169 | 5362 highlight_match = TRUE; |
5363 | |
5364 update_topline(); | |
5365 validate_cursor(); | |
748 | 5366 update_screen(SOME_VALID); |
169 | 5367 highlight_match = FALSE; |
748 | 5368 redraw_later(SOME_VALID); |
7 | 5369 |
5370 #ifdef FEAT_FOLDING | |
169 | 5371 curwin->w_p_fen = save_p_fen; |
5372 #endif | |
5373 if (msg_row == Rows - 1) | |
5374 msg_didout = FALSE; /* avoid a scroll-up */ | |
5375 msg_starthere(); | |
5376 i = msg_scroll; | |
5377 msg_scroll = 0; /* truncate msg when | |
5378 needed */ | |
5379 msg_no_more = TRUE; | |
5380 /* write message same highlighting as for | |
5381 * wait_return */ | |
5382 smsg_attr(hl_attr(HLF_R), | |
5383 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); | |
5384 msg_no_more = FALSE; | |
5385 msg_scroll = i; | |
5386 showruler(TRUE); | |
5387 windgoto(msg_row, msg_col); | |
5388 RedrawingDisabled = temp; | |
7 | 5389 |
5390 #ifdef USE_ON_FLY_SCROLL | |
169 | 5391 dont_scroll = FALSE; /* allow scrolling here */ |
5392 #endif | |
5393 ++no_mapping; /* don't map this key */ | |
5394 ++allow_keys; /* allow special keys */ | |
1872 | 5395 typed = plain_vgetc(); |
169 | 5396 --allow_keys; |
5397 --no_mapping; | |
5398 | |
5399 /* clear the question */ | |
5400 msg_didout = FALSE; /* don't scroll up */ | |
5401 msg_col = 0; | |
5402 gotocmdline(TRUE); | |
4076 | 5403 |
5404 /* restore the line */ | |
5405 if (orig_line != NULL) | |
5406 ml_replace(lnum, orig_line, FALSE); | |
169 | 5407 } |
5408 | |
7 | 5409 need_wait_return = FALSE; /* no hit-return prompt */ |
1872 | 5410 if (typed == 'q' || typed == ESC || typed == Ctrl_C |
7 | 5411 #ifdef UNIX |
1872 | 5412 || typed == intr_char |
7 | 5413 #endif |
5414 ) | |
5415 { | |
5416 got_quit = TRUE; | |
5417 break; | |
5418 } | |
1872 | 5419 if (typed == 'n') |
7 | 5420 break; |
1872 | 5421 if (typed == 'y') |
7 | 5422 break; |
1872 | 5423 if (typed == 'l') |
7 | 5424 { |
5425 /* last: replace and then stop */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5426 subflags.do_all = FALSE; |
7 | 5427 line2 = lnum; |
5428 break; | |
5429 } | |
1872 | 5430 if (typed == 'a') |
7 | 5431 { |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5432 subflags.do_ask = FALSE; |
7 | 5433 break; |
5434 } | |
5435 #ifdef FEAT_INS_EXPAND | |
1872 | 5436 if (typed == Ctrl_E) |
7 | 5437 scrollup_clamp(); |
1872 | 5438 else if (typed == Ctrl_Y) |
7 | 5439 scrolldown_clamp(); |
5440 #endif | |
5441 } | |
5442 State = save_State; | |
5443 #ifdef FEAT_MOUSE | |
5444 setmouse(); | |
5445 #endif | |
5446 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
5447 --no_u_sync; | |
5448 | |
1872 | 5449 if (typed == 'n') |
7 | 5450 { |
5451 /* For a multi-line match, put matchcol at the NUL at | |
5452 * the end of the line and set nmatch to one, so that | |
5453 * we continue looking for a match on the next line. | |
1091 | 5454 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc" |
5455 * get stuck when pressing 'n'. */ | |
7 | 5456 if (nmatch > 1) |
5457 { | |
835 | 5458 matchcol = (colnr_T)STRLEN(sub_firstline); |
1091 | 5459 skip_match = TRUE; |
7 | 5460 } |
5461 goto skip; | |
5462 } | |
5463 if (got_quit) | |
4099 | 5464 goto skip; |
7 | 5465 } |
5466 | |
5467 /* Move the cursor to the start of the match, so that we can | |
5468 * use "\=col("."). */ | |
5469 curwin->w_cursor.col = regmatch.startpos[0].col; | |
5470 | |
5471 /* | |
5472 * 3. substitute the string. | |
5473 */ | |
3736 | 5474 #ifdef FEAT_EVAL |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5475 if (subflags.do_count) |
3736 | 5476 { |
3786 | 5477 /* prevent accidentally changing the buffer by a function */ |
3736 | 5478 save_ma = curbuf->b_p_ma; |
5479 curbuf->b_p_ma = FALSE; | |
5480 sandbox++; | |
5481 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5482 /* 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
|
5483 * :s/^/\=execute("s#^##gn") */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5484 subflags_save = subflags; |
3736 | 5485 #endif |
7 | 5486 /* get length of substitution part */ |
1499 | 5487 sublen = vim_regsub_multi(®match, |
5488 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 5489 sub, sub_firstline, FALSE, p_magic, TRUE); |
3736 | 5490 #ifdef FEAT_EVAL |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5491 /* 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
|
5492 subflags = subflags_save; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5493 if (subflags.do_count) |
3736 | 5494 { |
5495 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
|
5496 if (sandbox > 0) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5497 sandbox--; |
3736 | 5498 goto skip; |
5499 } | |
5500 #endif | |
7 | 5501 |
533 | 5502 /* When the match included the "$" of the last line it may |
819 | 5503 * go beyond the last line of the buffer. */ |
533 | 5504 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
5505 { | |
5506 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; | |
5507 skip_match = TRUE; | |
5508 } | |
5509 | |
7 | 5510 /* Need room for: |
5511 * - result so far in new_start (not for first sub in line) | |
5512 * - original text up to match | |
5513 * - length of substituted part | |
5514 * - original text after match | |
5515 */ | |
5516 if (nmatch == 1) | |
5517 p1 = sub_firstline; | |
5518 else | |
5519 { | |
5520 p1 = ml_get(sub_firstlnum + nmatch - 1); | |
5521 nmatch_tl += nmatch - 1; | |
5522 } | |
1872 | 5523 copy_len = regmatch.startpos[0].col - copycol; |
5524 needed_len = copy_len + ((unsigned)STRLEN(p1) | |
5525 - regmatch.endpos[0].col) + sublen + 1; | |
7 | 5526 if (new_start == NULL) |
5527 { | |
5528 /* | |
5529 * Get some space for a temporary buffer to do the | |
5530 * substitution into (and some extra space to avoid | |
5531 * too many calls to alloc()/free()). | |
5532 */ | |
5533 new_start_len = needed_len + 50; | |
5534 if ((new_start = alloc_check(new_start_len)) == NULL) | |
5535 goto outofmem; | |
5536 *new_start = NUL; | |
5537 new_end = new_start; | |
5538 } | |
5539 else | |
5540 { | |
5541 /* | |
5542 * Check if the temporary buffer is long enough to do the | |
5543 * substitution into. If not, make it larger (with a bit | |
5544 * extra to avoid too many calls to alloc()/free()). | |
5545 */ | |
5546 len = (unsigned)STRLEN(new_start); | |
5547 needed_len += len; | |
1872 | 5548 if (needed_len > (int)new_start_len) |
7 | 5549 { |
5550 new_start_len = needed_len + 50; | |
5551 if ((p1 = alloc_check(new_start_len)) == NULL) | |
5552 { | |
5553 vim_free(new_start); | |
5554 goto outofmem; | |
5555 } | |
5556 mch_memmove(p1, new_start, (size_t)(len + 1)); | |
5557 vim_free(new_start); | |
5558 new_start = p1; | |
5559 } | |
5560 new_end = new_start + len; | |
5561 } | |
5562 | |
5563 /* | |
5564 * copy the text up to the part that matched | |
5565 */ | |
1872 | 5566 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); |
5567 new_end += copy_len; | |
7 | 5568 |
1499 | 5569 (void)vim_regsub_multi(®match, |
5570 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 5571 sub, new_end, TRUE, p_magic, TRUE); |
5572 sub_nsubs++; | |
5573 did_sub = TRUE; | |
5574 | |
5575 /* Move the cursor to the start of the line, to avoid that it | |
5576 * is beyond the end of the line after the substitution. */ | |
5577 curwin->w_cursor.col = 0; | |
5578 | |
5579 /* For a multi-line match, make a copy of the last matched | |
5580 * line and continue in that one. */ | |
5581 if (nmatch > 1) | |
5582 { | |
5583 sub_firstlnum += nmatch - 1; | |
5584 vim_free(sub_firstline); | |
5585 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
5586 /* When going beyond the last line, stop substituting. */ | |
5587 if (sub_firstlnum <= line2) | |
5588 do_again = TRUE; | |
5589 else | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5590 subflags.do_all = FALSE; |
7 | 5591 } |
5592 | |
5593 /* Remember next character to be copied. */ | |
5594 copycol = regmatch.endpos[0].col; | |
5595 | |
819 | 5596 if (skip_match) |
5597 { | |
5598 /* Already hit end of the buffer, sub_firstlnum is one | |
5599 * less than what it ought to be. */ | |
5600 vim_free(sub_firstline); | |
5601 sub_firstline = vim_strsave((char_u *)""); | |
5602 copycol = 0; | |
5603 } | |
5604 | |
7 | 5605 /* |
5606 * Now the trick is to replace CTRL-M chars with a real line | |
5607 * break. This would make it impossible to insert a CTRL-M in | |
5608 * the text. The line break can be avoided by preceding the | |
5609 * CTRL-M with a backslash. To be able to insert a backslash, | |
5610 * they must be doubled in the string and are halved here. | |
5611 * That is Vi compatible. | |
5612 */ | |
5613 for (p1 = new_end; *p1; ++p1) | |
5614 { | |
5615 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */ | |
1624 | 5616 STRMOVE(p1, p1 + 1); |
7 | 5617 else if (*p1 == CAR) |
5618 { | |
5619 if (u_inssub(lnum) == OK) /* prepare for undo */ | |
5620 { | |
5621 *p1 = NUL; /* truncate up to the CR */ | |
5622 ml_append(lnum - 1, new_start, | |
5623 (colnr_T)(p1 - new_start + 1), FALSE); | |
5624 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
|
5625 if (subflags.do_ask) |
7 | 5626 appended_lines(lnum - 1, 1L); |
5627 else | |
5628 { | |
5629 if (first_line == 0) | |
5630 first_line = lnum; | |
5631 last_line = lnum + 1; | |
5632 } | |
5633 /* All line numbers increase. */ | |
5634 ++sub_firstlnum; | |
5635 ++lnum; | |
5636 ++line2; | |
5637 /* move the cursor to the new line, like Vi */ | |
5638 ++curwin->w_cursor.lnum; | |
1444 | 5639 /* copy the rest */ |
1624 | 5640 STRMOVE(new_start, p1 + 1); |
7 | 5641 p1 = new_start - 1; |
5642 } | |
5643 } | |
5644 #ifdef FEAT_MBYTE | |
5645 else if (has_mbyte) | |
474 | 5646 p1 += (*mb_ptr2len)(p1) - 1; |
7 | 5647 #endif |
5648 } | |
5649 | |
5650 /* | |
5651 * 4. If do_all is set, find next match. | |
5652 * Prevent endless loop with patterns that match empty | |
5653 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. | |
5654 * But ":s/\n/#/" is OK. | |
5655 */ | |
5656 skip: | |
5657 /* We already know that we did the last subst when we are at | |
5658 * the end of the line, except that a pattern like | |
1499 | 5659 * "bar\|\nfoo" may match at the NUL. "lnum" can be below |
5660 * "line2" when there is a \zs in the pattern after a line | |
5661 * break. */ | |
15 | 5662 lastone = (skip_match |
5663 || got_int | |
5664 || got_quit | |
1499 | 5665 || lnum > line2 |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5666 || !(subflags.do_all || do_again) |
15 | 5667 || (sub_firstline[matchcol] == NUL && nmatch <= 1 |
5668 && !re_multiline(regmatch.regprog))); | |
7 | 5669 nmatch = -1; |
5670 | |
5671 /* | |
5672 * Replace the line in the buffer when needed. This is | |
5673 * skipped when there are more matches. | |
5674 * The check for nmatch_tl is needed for when multi-line | |
5675 * matching must replace the lines before trying to do another | |
5676 * match, otherwise "\@<=" won't work. | |
1499 | 5677 * When the match starts below where we start searching also |
5678 * need to replace the line first (using \zs after \n). | |
7 | 5679 */ |
5680 if (lastone | |
5681 || nmatch_tl > 0 | |
5682 || (nmatch = vim_regexec_multi(®match, curwin, | |
1521 | 5683 curbuf, sub_firstlnum, |
5684 matchcol, NULL)) == 0 | |
1499 | 5685 || regmatch.startpos[0].lnum > 0) |
7 | 5686 { |
5687 if (new_start != NULL) | |
5688 { | |
5689 /* | |
5690 * Copy the rest of the line, that didn't match. | |
5691 * "matchcol" has to be adjusted, we use the end of | |
5692 * the line as reference, because the substitute may | |
5693 * have changed the number of characters. Same for | |
5694 * "prev_matchcol". | |
5695 */ | |
5696 STRCAT(new_start, sub_firstline + copycol); | |
5697 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5698 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5699 - prev_matchcol; | |
5700 | |
5701 if (u_savesub(lnum) != OK) | |
5702 break; | |
5703 ml_replace(lnum, new_start, TRUE); | |
5704 | |
5705 if (nmatch_tl > 0) | |
5706 { | |
5707 /* | |
5708 * Matched lines have now been substituted and are | |
5709 * useless, delete them. The part after the match | |
5710 * has been appended to new_start, we don't need | |
5711 * it in the buffer. | |
5712 */ | |
5713 ++lnum; | |
5714 if (u_savedel(lnum, nmatch_tl) != OK) | |
5715 break; | |
5716 for (i = 0; i < nmatch_tl; ++i) | |
5717 ml_delete(lnum, (int)FALSE); | |
5718 mark_adjust(lnum, lnum + nmatch_tl - 1, | |
5719 (long)MAXLNUM, -nmatch_tl); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5720 if (subflags.do_ask) |
7 | 5721 deleted_lines(lnum, nmatch_tl); |
5722 --lnum; | |
5723 line2 -= nmatch_tl; /* nr of lines decreases */ | |
5724 nmatch_tl = 0; | |
5725 } | |
5726 | |
5727 /* When asking, undo is saved each time, must also set | |
5728 * changed flag each time. */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5729 if (subflags.do_ask) |
7 | 5730 changed_bytes(lnum, 0); |
5731 else | |
5732 { | |
5733 if (first_line == 0) | |
5734 first_line = lnum; | |
5735 last_line = lnum + 1; | |
5736 } | |
5737 | |
5738 sub_firstlnum = lnum; | |
5739 vim_free(sub_firstline); /* free the temp buffer */ | |
5740 sub_firstline = new_start; | |
5741 new_start = NULL; | |
5742 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5743 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5744 - prev_matchcol; | |
5745 copycol = 0; | |
5746 } | |
5747 if (nmatch == -1 && !lastone) | |
5748 nmatch = vim_regexec_multi(®match, curwin, curbuf, | |
1521 | 5749 sub_firstlnum, matchcol, NULL); |
7 | 5750 |
5751 /* | |
5752 * 5. break if there isn't another match in this line | |
5753 */ | |
5754 if (nmatch <= 0) | |
1499 | 5755 { |
5756 /* If the match found didn't start where we were | |
5757 * searching, do the next search in the line where we | |
5758 * found the match. */ | |
5759 if (nmatch == -1) | |
5760 lnum -= regmatch.startpos[0].lnum; | |
7 | 5761 break; |
1499 | 5762 } |
7 | 5763 } |
5764 | |
5765 line_breakcheck(); | |
5766 } | |
5767 | |
5768 if (did_sub) | |
5769 ++sub_nlines; | |
1720 | 5770 vim_free(new_start); /* for when substitute was cancelled */ |
7 | 5771 vim_free(sub_firstline); /* free the copy of the original line */ |
5772 sub_firstline = NULL; | |
5773 } | |
5774 | |
5775 line_breakcheck(); | |
5776 } | |
5777 | |
5778 if (first_line != 0) | |
5779 { | |
5780 /* Need to subtract the number of added lines from "last_line" to get | |
5781 * the line number before the change (same as adding the number of | |
5782 * deleted lines). */ | |
5783 i = curbuf->b_ml.ml_line_count - old_line_count; | |
5784 changed_lines(first_line, 0, last_line - i, i); | |
5785 } | |
5786 | |
5787 outofmem: | |
5788 vim_free(sub_firstline); /* may have to free allocated copy of the line */ | |
170 | 5789 |
5790 /* ":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
|
5791 if (subflags.do_count) |
170 | 5792 curwin->w_cursor = old_cursor; |
5793 | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
5794 if (sub_nsubs > start_nsubs) |
7 | 5795 { |
5796 /* Set the '[ and '] marks. */ | |
5797 curbuf->b_op_start.lnum = eap->line1; | |
5798 curbuf->b_op_end.lnum = line2; | |
5799 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
5800 | |
5801 if (!global_busy) | |
5802 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5803 /* 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
|
5804 if (!subflags.do_ask) |
3394 | 5805 { |
5806 if (endcolumn) | |
5807 coladvance((colnr_T)MAXCOL); | |
5808 else | |
5809 beginline(BL_WHITE | BL_FIX); | |
5810 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5811 if (!do_sub_msg(subflags.do_count) && subflags.do_ask) |
7 | 5812 MSG(""); |
5813 } | |
5814 else | |
5815 global_need_beginline = TRUE; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5816 if (subflags.do_print) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5817 print_line(curwin->w_cursor.lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5818 subflags.do_number, subflags.do_list); |
7 | 5819 } |
5820 else if (!global_busy) | |
5821 { | |
5822 if (got_int) /* interrupted */ | |
5823 EMSG(_(e_interr)); | |
5824 else if (got_match) /* did find something but nothing substituted */ | |
5825 MSG(""); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5826 else if (subflags.do_error) /* nothing found */ |
7 | 5827 EMSG2(_(e_patnotf2), get_search_pat()); |
5828 } | |
5829 | |
4035 | 5830 #ifdef FEAT_FOLDING |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5831 if (subflags.do_ask && hasAnyFolding(curwin)) |
4035 | 5832 /* Cursor position may require updating */ |
5833 changed_window_setting(); | |
5834 #endif | |
5835 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
5836 vim_regfree(regmatch.regprog); |
6789 | 5837 |
5838 /* 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
|
5839 subflags.do_all = save_do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5840 subflags.do_ask = save_do_ask; |
7 | 5841 } |
5842 | |
5843 /* | |
5844 * Give message for number of substitutions. | |
5845 * Can also be used after a ":global" command. | |
5846 * Return TRUE if a message was given. | |
5847 */ | |
484 | 5848 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5849 do_sub_msg( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5850 int count_only) /* used 'n' flag for ":s" */ |
7 | 5851 { |
5852 /* | |
5853 * Only report substitutions when: | |
5854 * - more than 'report' substitutions | |
5855 * - command was typed by user, or number of changed lines > 'report' | |
5856 * - giving messages is not disabled by 'lazyredraw' | |
5857 */ | |
170 | 5858 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
5859 || count_only) | |
7 | 5860 && messaging()) |
5861 { | |
5862 if (got_int) | |
5863 STRCPY(msg_buf, _("(Interrupted) ")); | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5864 else |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5865 *msg_buf = NUL; |
7 | 5866 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
|
5867 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5868 "%s", count_only ? _("1 match") : _("1 substitution")); |
7 | 5869 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5870 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
170 | 5871 count_only ? _("%ld matches") : _("%ld substitutions"), |
7 | 5872 sub_nsubs); |
5873 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
|
5874 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5875 "%s", _(" on 1 line")); |
7 | 5876 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5877 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5878 _(" on %ld lines"), (long)sub_nlines); |
7 | 5879 if (msg(msg_buf)) |
5880 /* save message to display it after redraw */ | |
680 | 5881 set_keep_msg(msg_buf, 0); |
7 | 5882 return TRUE; |
5883 } | |
5884 if (got_int) | |
5885 { | |
5886 EMSG(_(e_interr)); | |
5887 return TRUE; | |
5888 } | |
5889 return FALSE; | |
5890 } | |
5891 | |
5892 /* | |
5893 * Execute a global command of the form: | |
5894 * | |
5895 * g/pattern/X : execute X on all lines where pattern matches | |
5896 * v/pattern/X : execute X on all lines where pattern does not match | |
5897 * | |
5898 * where 'X' is an EX command | |
5899 * | |
5900 * The command character (as well as the trailing slash) is optional, and | |
5901 * is assumed to be 'p' if missing. | |
5902 * | |
5903 * This is implemented in two passes: first we scan the file for the pattern and | |
3786 | 5904 * set a mark for each line that (not) matches. Secondly we execute the command |
7 | 5905 * for each line that has a mark. This is required because after deleting |
5906 * lines we do not know where to search for the next match. | |
5907 */ | |
5908 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5909 ex_global(exarg_T *eap) |
7 | 5910 { |
5911 linenr_T lnum; /* line number according to old situation */ | |
170 | 5912 int ndone = 0; |
7 | 5913 int type; /* first char of cmd: 'v' or 'g' */ |
5914 char_u *cmd; /* command argument */ | |
5915 | |
5916 char_u delim; /* delimiter, normally '/' */ | |
5917 char_u *pat; | |
5918 regmmatch_T regmatch; | |
5919 int match; | |
5920 int which_pat; | |
5921 | |
5922 if (global_busy) | |
5923 { | |
5924 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */ | |
5925 return; | |
5926 } | |
5927 | |
5928 if (eap->forceit) /* ":global!" is like ":vglobal" */ | |
5929 type = 'v'; | |
5930 else | |
5931 type = *eap->cmd; | |
5932 cmd = eap->arg; | |
5933 which_pat = RE_LAST; /* default: use last used regexp */ | |
5934 | |
5935 /* | |
5936 * undocumented vi feature: | |
5937 * "\/" and "\?": use previous search pattern. | |
5938 * "\&": use previous substitute pattern. | |
5939 */ | |
5940 if (*cmd == '\\') | |
5941 { | |
5942 ++cmd; | |
5943 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
5944 { | |
5945 EMSG(_(e_backslash)); | |
5946 return; | |
5947 } | |
5948 if (*cmd == '&') | |
5949 which_pat = RE_SUBST; /* use previous substitute pattern */ | |
5950 else | |
5951 which_pat = RE_SEARCH; /* use previous search pattern */ | |
5952 ++cmd; | |
5953 pat = (char_u *)""; | |
5954 } | |
5955 else if (*cmd == NUL) | |
5956 { | |
5957 EMSG(_("E148: Regular expression missing from global")); | |
5958 return; | |
5959 } | |
5960 else | |
5961 { | |
5962 delim = *cmd; /* get the delimiter */ | |
5963 if (delim) | |
5964 ++cmd; /* skip delimiter if there is one */ | |
5965 pat = cmd; /* remember start of pattern */ | |
5966 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg); | |
5967 if (cmd[0] == delim) /* end delimiter found */ | |
5968 *cmd++ = NUL; /* replace it with a NUL */ | |
5969 } | |
5970 | |
5971 #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */ | |
5972 if (p_altkeymap && curwin->w_p_rl) | |
5973 lrFswap(pat,0); | |
5974 #endif | |
5975 | |
5976 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) | |
5977 { | |
5978 EMSG(_(e_invcmd)); | |
5979 return; | |
5980 } | |
5981 | |
5982 /* | |
5983 * pass 1: set marks for each (not) matching line | |
5984 */ | |
5985 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum) | |
5986 { | |
5987 /* a match on this line? */ | |
1521 | 5988 match = vim_regexec_multi(®match, curwin, curbuf, lnum, |
5989 (colnr_T)0, NULL); | |
7 | 5990 if ((type == 'g' && match) || (type == 'v' && !match)) |
5991 { | |
5992 ml_setmarked(lnum); | |
5993 ndone++; | |
5994 } | |
5995 line_breakcheck(); | |
5996 } | |
5997 | |
5998 /* | |
5999 * pass 2: execute the command for each line that has been marked | |
6000 */ | |
6001 if (got_int) | |
6002 MSG(_(e_interr)); | |
6003 else if (ndone == 0) | |
6004 { | |
6005 if (type == 'v') | |
274 | 6006 smsg((char_u *)_("Pattern found in every line: %s"), pat); |
7 | 6007 else |
4195 | 6008 smsg((char_u *)_("Pattern not found: %s"), pat); |
7 | 6009 } |
6010 else | |
6116 | 6011 { |
6012 #ifdef FEAT_CLIPBOARD | |
6013 start_global_changes(); | |
6014 #endif | |
7 | 6015 global_exe(cmd); |
6116 | 6016 #ifdef FEAT_CLIPBOARD |
6017 end_global_changes(); | |
6018 #endif | |
6019 } | |
7 | 6020 |
6021 ml_clearmarked(); /* clear rest of the marks */ | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
6022 vim_regfree(regmatch.regprog); |
7 | 6023 } |
6024 | |
6025 /* | |
6026 * Execute "cmd" on lines marked with ml_setmarked(). | |
6027 */ | |
6028 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6029 global_exe(char_u *cmd) |
7 | 6030 { |
2819 | 6031 linenr_T old_lcount; /* b_ml.ml_line_count before the command */ |
6032 buf_T *old_buf = curbuf; /* remember what buffer we started in */ | |
6033 linenr_T lnum; /* line number according to old situation */ | |
7 | 6034 |
6035 /* | |
6036 * Set current position only once for a global command. | |
6037 * If global_busy is set, setpcmark() will not do anything. | |
6038 * If there is an error, global_busy will be incremented. | |
6039 */ | |
6040 setpcmark(); | |
6041 | |
6042 /* When the command writes a message, don't overwrite the command. */ | |
6043 msg_didout = TRUE; | |
6044 | |
2127
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
6045 sub_nsubs = 0; |
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
6046 sub_nlines = 0; |
7 | 6047 global_need_beginline = FALSE; |
6048 global_busy = 1; | |
6049 old_lcount = curbuf->b_ml.ml_line_count; | |
6050 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) | |
6051 { | |
6052 curwin->w_cursor.lnum = lnum; | |
6053 curwin->w_cursor.col = 0; | |
6054 if (*cmd == NUL || *cmd == '\n') | |
6055 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT); | |
6056 else | |
6057 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT); | |
6058 ui_breakcheck(); | |
6059 } | |
6060 | |
6061 global_busy = 0; | |
6062 if (global_need_beginline) | |
6063 beginline(BL_WHITE | BL_FIX); | |
6064 else | |
6065 check_cursor(); /* cursor may be beyond the end of the line */ | |
6066 | |
39 | 6067 /* the cursor may not have moved in the text but a change in a previous |
6068 * line may move it on the screen */ | |
6069 changed_line_abv_curs(); | |
6070 | |
7 | 6071 /* If it looks like no message was written, allow overwriting the |
6072 * command with the report for number of changes. */ | |
6073 if (msg_col == 0 && msg_scrolled == 0) | |
6074 msg_didout = FALSE; | |
6075 | |
1227 | 6076 /* If substitutes done, report number of substitutes, otherwise report |
2819 | 6077 * number of extra or deleted lines. |
6078 * Don't report extra or deleted lines in the edge case where the buffer | |
6079 * we are in after execution is different from the buffer we started in. */ | |
6080 if (!do_sub_msg(FALSE) && curbuf == old_buf) | |
7 | 6081 msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
6082 } | |
6083 | |
6084 #ifdef FEAT_VIMINFO | |
6085 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6086 read_viminfo_sub_string(vir_T *virp, int force) |
7 | 6087 { |
2690 | 6088 if (force) |
7 | 6089 vim_free(old_sub); |
6090 if (force || old_sub == NULL) | |
6091 old_sub = viminfo_readstring(virp, 1, TRUE); | |
6092 return viminfo_readline(virp); | |
6093 } | |
6094 | |
6095 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6096 write_viminfo_sub_string(FILE *fp) |
7 | 6097 { |
6098 if (get_viminfo_parameter('/') != 0 && old_sub != NULL) | |
6099 { | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
6100 fputs(_("\n# Last Substitute String:\n$"), fp); |
7 | 6101 viminfo_writestring(fp, old_sub); |
6102 } | |
6103 } | |
6104 #endif /* FEAT_VIMINFO */ | |
6105 | |
359 | 6106 #if defined(EXITFREE) || defined(PROTO) |
6107 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6108 free_old_sub(void) |
359 | 6109 { |
6110 vim_free(old_sub); | |
6111 } | |
6112 #endif | |
6113 | |
7 | 6114 #if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO) |
6115 /* | |
6116 * Set up for a tagpreview. | |
735 | 6117 * Return TRUE when it was created. |
7 | 6118 */ |
735 | 6119 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6120 prepare_tagpreview( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6121 int undo_sync) /* sync undo when leaving the window */ |
7 | 6122 { |
6123 win_T *wp; | |
6124 | |
6125 # ifdef FEAT_GUI | |
6126 need_mouse_correct = TRUE; | |
6127 # endif | |
6128 | |
6129 /* | |
6130 * If there is already a preview window open, use that one. | |
6131 */ | |
6132 if (!curwin->w_p_pvw) | |
6133 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
6134 FOR_ALL_WINDOWS(wp) |
7 | 6135 if (wp->w_p_pvw) |
6136 break; | |
6137 if (wp != NULL) | |
816 | 6138 win_enter(wp, undo_sync); |
7 | 6139 else |
6140 { | |
6141 /* | |
6142 * There is no preview window open yet. Create one. | |
6143 */ | |
6144 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) | |
6145 == FAIL) | |
735 | 6146 return FALSE; |
7 | 6147 curwin->w_p_pvw = TRUE; |
6148 curwin->w_p_wfh = TRUE; | |
2583 | 6149 RESET_BINDING(curwin); /* don't take over 'scrollbind' |
6150 and 'cursorbind' */ | |
7 | 6151 # ifdef FEAT_DIFF |
6152 curwin->w_p_diff = FALSE; /* no 'diff' */ | |
6153 # endif | |
6154 # ifdef FEAT_FOLDING | |
6155 curwin->w_p_fdc = 0; /* no 'foldcolumn' */ | |
6156 # endif | |
735 | 6157 return TRUE; |
7 | 6158 } |
6159 } | |
735 | 6160 return FALSE; |
7 | 6161 } |
6162 | |
6163 #endif | |
6164 | |
6165 | |
6166 /* | |
6167 * ":help": open a read-only window on a help file | |
6168 */ | |
6169 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6170 ex_help(exarg_T *eap) |
7 | 6171 { |
6172 char_u *arg; | |
6173 char_u *tag; | |
6174 FILE *helpfd; /* file descriptor of help file */ | |
6175 int n; | |
6176 int i; | |
6177 #ifdef FEAT_WINDOWS | |
6178 win_T *wp; | |
6179 #endif | |
6180 int num_matches; | |
6181 char_u **matches; | |
6182 char_u *p; | |
6183 int empty_fnum = 0; | |
6184 int alt_fnum = 0; | |
6185 buf_T *buf; | |
6186 #ifdef FEAT_MULTI_LANG | |
6187 int len; | |
9 | 6188 char_u *lang; |
7 | 6189 #endif |
3112 | 6190 #ifdef FEAT_FOLDING |
6191 int old_KeyTyped = KeyTyped; | |
6192 #endif | |
7 | 6193 |
6194 if (eap != NULL) | |
6195 { | |
6196 /* | |
6197 * A ":help" command ends at the first LF, or at a '|' that is | |
6198 * followed by some text. Set nextcmd to the following command. | |
6199 */ | |
6200 for (arg = eap->arg; *arg; ++arg) | |
6201 { | |
6202 if (*arg == '\n' || *arg == '\r' | |
6203 || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) | |
6204 { | |
6205 *arg++ = NUL; | |
6206 eap->nextcmd = arg; | |
6207 break; | |
6208 } | |
6209 } | |
6210 arg = eap->arg; | |
6211 | |
3446 | 6212 if (eap->forceit && *arg == NUL && !curbuf->b_help) |
7 | 6213 { |
6214 EMSG(_("E478: Don't panic!")); | |
6215 return; | |
6216 } | |
6217 | |
6218 if (eap->skip) /* not executing commands */ | |
6219 return; | |
6220 } | |
6221 else | |
6222 arg = (char_u *)""; | |
6223 | |
6224 /* remove trailing blanks */ | |
6225 p = arg + STRLEN(arg) - 1; | |
6226 while (p > arg && vim_iswhite(*p) && p[-1] != '\\') | |
6227 *p-- = NUL; | |
6228 | |
6229 #ifdef FEAT_MULTI_LANG | |
6230 /* Check for a specified language */ | |
9 | 6231 lang = check_help_lang(arg); |
7 | 6232 #endif |
6233 | |
6234 /* When no argument given go to the index. */ | |
6235 if (*arg == NUL) | |
6236 arg = (char_u *)"help.txt"; | |
6237 | |
6238 /* | |
6239 * Check if there is a match for the argument. | |
6240 */ | |
6241 n = find_help_tags(arg, &num_matches, &matches, | |
6242 eap != NULL && eap->forceit); | |
6243 | |
6244 i = 0; | |
6245 #ifdef FEAT_MULTI_LANG | |
6246 if (n != FAIL && lang != NULL) | |
6247 /* Find first item with the requested language. */ | |
6248 for (i = 0; i < num_matches; ++i) | |
6249 { | |
835 | 6250 len = (int)STRLEN(matches[i]); |
7 | 6251 if (len > 3 && matches[i][len - 3] == '@' |
6252 && STRICMP(matches[i] + len - 2, lang) == 0) | |
6253 break; | |
6254 } | |
6255 #endif | |
6256 if (i >= num_matches || n == FAIL) | |
6257 { | |
6258 #ifdef FEAT_MULTI_LANG | |
6259 if (lang != NULL) | |
6260 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg); | |
6261 else | |
6262 #endif | |
6263 EMSG2(_("E149: Sorry, no help for %s"), arg); | |
6264 if (n != FAIL) | |
6265 FreeWild(num_matches, matches); | |
6266 return; | |
6267 } | |
6268 | |
6269 /* The first match (in the requested language) is the best match. */ | |
6270 tag = vim_strsave(matches[i]); | |
6271 FreeWild(num_matches, matches); | |
6272 | |
6273 #ifdef FEAT_GUI | |
6274 need_mouse_correct = TRUE; | |
6275 #endif | |
6276 | |
6277 /* | |
6278 * Re-use an existing help window or open a new one. | |
684 | 6279 * Always open a new one for ":tab help". |
7 | 6280 */ |
684 | 6281 if (!curwin->w_buffer->b_help |
6282 #ifdef FEAT_WINDOWS | |
6283 || cmdmod.tab != 0 | |
6284 #endif | |
6285 ) | |
7 | 6286 { |
6287 #ifdef FEAT_WINDOWS | |
684 | 6288 if (cmdmod.tab != 0) |
6289 wp = NULL; | |
6290 else | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
6291 FOR_ALL_WINDOWS(wp) |
684 | 6292 if (wp->w_buffer != NULL && wp->w_buffer->b_help) |
6293 break; | |
7 | 6294 if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
6295 win_enter(wp, TRUE); | |
6296 else | |
6297 #endif | |
6298 { | |
6299 /* | |
6300 * There is no help window yet. | |
6301 * Try to open the file specified by the "helpfile" option. | |
6302 */ | |
6303 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL) | |
6304 { | |
274 | 6305 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf); |
7 | 6306 goto erret; |
6307 } | |
6308 fclose(helpfd); | |
6309 | |
6310 #ifdef FEAT_WINDOWS | |
6311 /* Split off help window; put it at far top if no position | |
684 | 6312 * specified, the current window is vertically split and |
6313 * narrow. */ | |
7 | 6314 n = WSP_HELP; |
6315 if (cmdmod.split == 0 && curwin->w_width != Columns | |
684 | 6316 && curwin->w_width < 80) |
7 | 6317 n |= WSP_TOP; |
6318 if (win_split(0, n) == FAIL) | |
684 | 6319 goto erret; |
7 | 6320 #else |
6321 /* use current window */ | |
6322 if (!can_abandon(curbuf, FALSE)) | |
6323 goto erret; | |
684 | 6324 #endif |
7 | 6325 |
6326 #ifdef FEAT_WINDOWS | |
6327 if (curwin->w_height < p_hh) | |
6328 win_setheight((int)p_hh); | |
6329 #endif | |
6330 | |
6331 /* | |
6332 * Open help file (do_ecmd() will set b_help flag, readfile() will | |
6333 * set b_p_ro flag). | |
6334 * Set the alternate file to the previously edited file. | |
6335 */ | |
6336 alt_fnum = curbuf->b_fnum; | |
6337 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL, | |
1743 | 6338 ECMD_HIDE + ECMD_SET_HELP, |
6339 #ifdef FEAT_WINDOWS | |
6340 NULL /* buffer is still open, don't store info */ | |
6341 #else | |
6342 curwin | |
6343 #endif | |
6344 ); | |
22 | 6345 if (!cmdmod.keepalt) |
6346 curwin->w_alt_fnum = alt_fnum; | |
7 | 6347 empty_fnum = curbuf->b_fnum; |
6348 } | |
6349 } | |
6350 | |
6351 if (!p_im) | |
6352 restart_edit = 0; /* don't want insert mode in help file */ | |
6353 | |
3112 | 6354 #ifdef FEAT_FOLDING |
6355 /* Restore KeyTyped, setting 'filetype=help' may reset it. | |
6356 * It is needed for do_tag top open folds under the cursor. */ | |
6357 KeyTyped = old_KeyTyped; | |
6358 #endif | |
6359 | |
7 | 6360 if (tag != NULL) |
6361 do_tag(tag, DT_HELP, 1, FALSE, TRUE); | |
6362 | |
819 | 6363 /* Delete the empty buffer if we're not using it. Careful: autocommands |
6364 * may have jumped to another window, check that the buffer is not in a | |
6365 * window. */ | |
7 | 6366 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum) |
6367 { | |
6368 buf = buflist_findnr(empty_fnum); | |
819 | 6369 if (buf != NULL && buf->b_nwindows == 0) |
7 | 6370 wipe_buffer(buf, TRUE); |
6371 } | |
6372 | |
6373 /* keep the previous alternate file */ | |
22 | 6374 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt) |
7 | 6375 curwin->w_alt_fnum = alt_fnum; |
6376 | |
6377 erret: | |
6378 vim_free(tag); | |
6379 } | |
6380 | |
6228 | 6381 /* |
6234 | 6382 * ":helpclose": Close one help window |
6228 | 6383 */ |
6384 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6385 ex_helpclose(exarg_T *eap UNUSED) |
6228 | 6386 { |
6236 | 6387 #if defined(FEAT_WINDOWS) |
6228 | 6388 win_T *win; |
6389 | |
6390 FOR_ALL_WINDOWS(win) | |
6391 { | |
6392 if (win->w_buffer->b_help) | |
6393 { | |
6394 win_close(win, FALSE); | |
6234 | 6395 return; |
6228 | 6396 } |
6397 } | |
6236 | 6398 #endif |
6228 | 6399 } |
7 | 6400 |
9 | 6401 #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
6402 /* | |
6403 * In an argument search for a language specifiers in the form "@xx". | |
6404 * Changes the "@" to NUL if found, and returns a pointer to "xx". | |
6405 * Returns NULL if not found. | |
6406 */ | |
6407 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6408 check_help_lang(char_u *arg) |
9 | 6409 { |
835 | 6410 int len = (int)STRLEN(arg); |
9 | 6411 |
6412 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2]) | |
6413 && ASCII_ISALPHA(arg[len - 1])) | |
6414 { | |
6415 arg[len - 3] = NUL; /* remove the '@' */ | |
6416 return arg + len - 2; | |
6417 } | |
6418 return NULL; | |
6419 } | |
6420 #endif | |
6421 | |
7 | 6422 /* |
6423 * Return a heuristic indicating how well the given string matches. The | |
6424 * smaller the number, the better the match. This is the order of priorities, | |
6425 * from best match to worst match: | |
6426 * - Match with least alpha-numeric characters is better. | |
6427 * - Match with least total characters is better. | |
6428 * - Match towards the start is better. | |
6429 * - Match starting with "+" is worse (feature instead of command) | |
6430 * Assumption is made that the matched_string passed has already been found to | |
6431 * match some string for which help is requested. webb. | |
6432 */ | |
6433 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6434 help_heuristic( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6435 char_u *matched_string, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6436 int offset, /* offset for match */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6437 int wrong_case) /* no matching case */ |
7 | 6438 { |
6439 int num_letters; | |
6440 char_u *p; | |
6441 | |
6442 num_letters = 0; | |
6443 for (p = matched_string; *p; p++) | |
6444 if (ASCII_ISALNUM(*p)) | |
6445 num_letters++; | |
6446 | |
6447 /* | |
6448 * Multiply the number of letters by 100 to give it a much bigger | |
6449 * weighting than the number of characters. | |
6450 * If there only is a match while ignoring case, add 5000. | |
6451 * If the match starts in the middle of a word, add 10000 to put it | |
6452 * somewhere in the last half. | |
6453 * If the match is more than 2 chars from the start, multiply by 200 to | |
6454 * put it after matches at the start. | |
6455 */ | |
6456 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 | |
6457 && ASCII_ISALNUM(matched_string[offset - 1])) | |
6458 offset += 10000; | |
6459 else if (offset > 2) | |
6460 offset *= 200; | |
6461 if (wrong_case) | |
6462 offset += 5000; | |
6463 /* Features are less interesting than the subjects themselves, but "+" | |
6464 * alone is not a feature. */ | |
6465 if (matched_string[0] == '+' && matched_string[1] != NUL) | |
6466 offset += 100; | |
6467 return (int)(100 * num_letters + STRLEN(matched_string) + offset); | |
6468 } | |
6469 | |
6470 /* | |
6471 * Compare functions for qsort() below, that checks the help heuristics number | |
6472 * that has been put after the tagname by find_tags(). | |
6473 */ | |
6474 static int | |
6475 #ifdef __BORLANDC__ | |
6476 _RTLENTRYF | |
6477 #endif | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6478 help_compare(const void *s1, const void *s2) |
7 | 6479 { |
6480 char *p1; | |
6481 char *p2; | |
6482 | |
6483 p1 = *(char **)s1 + strlen(*(char **)s1) + 1; | |
6484 p2 = *(char **)s2 + strlen(*(char **)s2) + 1; | |
6485 return strcmp(p1, p2); | |
6486 } | |
6487 | |
6488 /* | |
6489 * Find all help tags matching "arg", sort them and return in matches[], with | |
6490 * the number of matches in num_matches. | |
6491 * The matches will be sorted with a "best" match algorithm. | |
6492 * When "keep_lang" is TRUE try keeping the language of the current buffer. | |
6493 */ | |
6494 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6495 find_help_tags( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6496 char_u *arg, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6497 int *num_matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6498 char_u ***matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6499 int keep_lang) |
7 | 6500 { |
6501 char_u *s, *d; | |
6502 int i; | |
6503 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", | |
445 | 6504 "/*", "/\\*", "\"*", "**", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
6505 "cpo-*", "/\\(\\)", "/\\%(\\)", |
323 | 6506 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
279 | 6507 "/\\?", "/\\z(\\)", "\\=", ":s\\=", |
7 | 6508 "[count]", "[quotex]", "[range]", |
5647 | 6509 "[pattern]", "\\|", "\\%$", |
6510 "s/\\~", "s/\\U", "s/\\L", | |
6511 "s/\\1", "s/\\2", "s/\\3", "s/\\9"}; | |
7 | 6512 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", |
445 | 6513 "/star", "/\\\\star", "quotestar", "starstar", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
6514 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)", |
323 | 6515 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
279 | 6516 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", |
7 | 6517 "\\[count]", "\\[quotex]", "\\[range]", |
5647 | 6518 "\\[pattern]", "\\\\bar", "/\\\\%\\$", |
5867 | 6519 "s/\\\\\\~", "s/\\\\U", "s/\\\\L", |
5647 | 6520 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"}; |
7 | 6521 int flags; |
6522 | |
6523 d = IObuff; /* assume IObuff is long enough! */ | |
6524 | |
6525 /* | |
6526 * Recognize a few exceptions to the rule. Some strings that contain '*' | |
6527 * with "star". Otherwise '*' is recognized as a wildcard. | |
6528 */ | |
1872 | 6529 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; ) |
7 | 6530 if (STRCMP(arg, mtable[i]) == 0) |
6531 { | |
6532 STRCPY(d, rtable[i]); | |
6533 break; | |
6534 } | |
6535 | |
6536 if (i < 0) /* no match in table */ | |
6537 { | |
6538 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched. | |
6539 * Also replace "\%^" and "\%(", they match every tag too. | |
6540 * Also "\zs", "\z1", etc. | |
6541 * Also "\@<", "\@=", "\@<=", etc. | |
6542 * And also "\_$" and "\_^". */ | |
6543 if (arg[0] == '\\' | |
6544 && ((arg[1] != NUL && arg[2] == NUL) | |
6545 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL | |
6546 && arg[2] != NUL))) | |
6547 { | |
6548 STRCPY(d, "/\\\\"); | |
6549 STRCPY(d + 3, arg + 1); | |
6550 /* Check for "/\\_$", should be "/\\_\$" */ | |
6551 if (d[3] == '_' && d[4] == '$') | |
6552 STRCPY(d + 4, "\\$"); | |
6553 } | |
6554 else | |
6555 { | |
3786 | 6556 /* Replace: |
6557 * "[:...:]" with "\[:...:]" | |
6558 * "[++...]" with "\[++...]" | |
5867 | 6559 * "\{" with "\\{" -- matching "} \}" |
3786 | 6560 */ |
6561 if ((arg[0] == '[' && (arg[1] == ':' | |
6562 || (arg[1] == '+' && arg[2] == '+'))) | |
6563 || (arg[0] == '\\' && arg[1] == '{')) | |
7 | 6564 *d++ = '\\'; |
6565 | |
8556
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6566 /* |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6567 * 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
|
6568 */ |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6569 if (*arg == '(' && arg[1] == '\'') |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6570 arg++; |
7 | 6571 for (s = arg; *s; ++s) |
6572 { | |
6573 /* | |
6574 * Replace "|" with "bar" and '"' with "quote" to match the name of | |
6575 * the tags for these commands. | |
6576 * Replace "*" with ".*" and "?" with "." to match command line | |
6577 * completion. | |
6578 * Insert a backslash before '~', '$' and '.' to avoid their | |
6579 * special meaning. | |
6580 */ | |
6581 if (d - IObuff > IOSIZE - 10) /* getting too long!? */ | |
6582 break; | |
6583 switch (*s) | |
6584 { | |
6585 case '|': STRCPY(d, "bar"); | |
6586 d += 3; | |
6587 continue; | |
6588 case '"': STRCPY(d, "quote"); | |
6589 d += 5; | |
6590 continue; | |
6591 case '*': *d++ = '.'; | |
6592 break; | |
6593 case '?': *d++ = '.'; | |
6594 continue; | |
6595 case '$': | |
6596 case '.': | |
6597 case '~': *d++ = '\\'; | |
6598 break; | |
6599 } | |
6600 | |
6601 /* | |
6602 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make | |
6603 * ":help i_^_CTRL-D" work. | |
6604 * Insert '-' before and after "CTRL-X" when applicable. | |
6605 */ | |
6606 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1]) | |
6607 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL))) | |
6608 { | |
5282
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
6609 if (d > IObuff && d[-1] != '_' && d[-1] != '\\') |
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
6610 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */ |
7 | 6611 STRCPY(d, "CTRL-"); |
6612 d += 5; | |
6613 if (*s < ' ') | |
6614 { | |
6615 #ifdef EBCDIC | |
6616 *d++ = CtrlChar(*s); | |
6617 #else | |
6618 *d++ = *s + '@'; | |
6619 #endif | |
6620 if (d[-1] == '\\') | |
6621 *d++ = '\\'; /* double a backslash */ | |
6622 } | |
6623 else | |
6624 *d++ = *++s; | |
6625 if (s[1] != NUL && s[1] != '_') | |
6626 *d++ = '_'; /* append a '_' */ | |
6627 continue; | |
6628 } | |
6629 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */ | |
6630 *d++ = '\\'; | |
6631 | |
6632 /* | |
6633 * Insert a backslash before a backslash after a slash, for search | |
6634 * pattern tags: "/\|" --> "/\\|". | |
6635 */ | |
6636 else if (s[0] == '\\' && s[1] != '\\' | |
6637 && *arg == '/' && s == arg + 1) | |
6638 *d++ = '\\'; | |
6639 | |
6640 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in | |
6641 * "CTRL-\_CTRL-N" */ | |
6642 if (STRNICMP(s, "CTRL-\\_", 7) == 0) | |
6643 { | |
6644 STRCPY(d, "CTRL-\\\\"); | |
6645 d += 7; | |
6646 s += 6; | |
6647 } | |
6648 | |
6649 *d++ = *s; | |
6650 | |
6651 /* | |
8883
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6652 * 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
|
6653 * 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
|
6654 */ |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6655 if (*s == '(' && (s[1] == '{' || s[1] =='[')) |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6656 break; |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6657 |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6658 /* |
7 | 6659 * If tag starts with ', toss everything after a second '. Fixes |
6660 * CTRL-] on 'option'. (would include the trailing '.'). | |
6661 */ | |
6662 if (*s == '\'' && s > arg && *arg == '\'') | |
6663 break; | |
9234
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
6664 /* Also '{' and '}'. */ |
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
6665 if (*s == '}' && s > arg && *arg == '{') |
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
6666 break; |
7 | 6667 } |
6668 *d = NUL; | |
3480 | 6669 |
6670 if (*IObuff == '`') | |
6671 { | |
6672 if (d > IObuff + 2 && d[-1] == '`') | |
6673 { | |
6674 /* remove the backticks from `command` */ | |
6675 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6676 d[-2] = NUL; | |
6677 } | |
6678 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',') | |
6679 { | |
6680 /* remove the backticks and comma from `command`, */ | |
6681 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6682 d[-3] = NUL; | |
6683 } | |
6684 else if (d > IObuff + 4 && d[-3] == '`' | |
6685 && d[-2] == '\\' && d[-1] == '.') | |
6686 { | |
6687 /* remove the backticks and dot from `command`\. */ | |
6688 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6689 d[-4] = NUL; | |
6690 } | |
6691 } | |
7 | 6692 } |
6693 } | |
6694 | |
6695 *matches = (char_u **)""; | |
6696 *num_matches = 0; | |
6697 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; | |
6698 if (keep_lang) | |
6699 flags |= TAG_KEEP_LANG; | |
1696 | 6700 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK |
7 | 6701 && *num_matches > 0) |
1696 | 6702 { |
7 | 6703 /* Sort the matches found on the heuristic number that is after the |
6704 * tag name. */ | |
6705 qsort((void *)*matches, (size_t)*num_matches, | |
6706 sizeof(char_u *), help_compare); | |
1696 | 6707 /* Delete more than TAG_MANY to reduce the size of the listing. */ |
6708 while (*num_matches > TAG_MANY) | |
6709 vim_free((*matches)[--*num_matches]); | |
6710 } | |
7 | 6711 return OK; |
6712 } | |
6713 | |
6714 /* | |
6365 | 6715 * Called when starting to edit a buffer for a help file. |
6716 */ | |
6717 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6718 prepare_help_buffer(void) |
6365 | 6719 { |
6720 char_u *p; | |
6721 | |
6722 curbuf->b_help = TRUE; | |
6723 #ifdef FEAT_QUICKFIX | |
6724 set_string_option_direct((char_u *)"buftype", -1, | |
6725 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0); | |
6726 #endif | |
6727 | |
6728 /* | |
6729 * Always set these options after jumping to a help tag, because the | |
6730 * user may have an autocommand that gets in the way. | |
6731 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and | |
6732 * latin1 word characters (for translated help files). | |
6733 * Only set it when needed, buf_init_chartab() is some work. | |
6734 */ | |
6735 p = | |
6736 #ifdef EBCDIC | |
6737 (char_u *)"65-255,^*,^|,^\""; | |
6738 #else | |
6739 (char_u *)"!-~,^*,^|,^\",192-255"; | |
6740 #endif | |
6741 if (STRCMP(curbuf->b_p_isk, p) != 0) | |
6742 { | |
6743 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0); | |
6744 check_buf_options(curbuf); | |
6745 (void)buf_init_chartab(curbuf, FALSE); | |
6746 } | |
6747 | |
6415 | 6748 #ifdef FEAT_FOLDING |
6365 | 6749 /* Don't use the global foldmethod.*/ |
6750 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual", | |
6751 OPT_FREE|OPT_LOCAL, 0); | |
6415 | 6752 #endif |
6365 | 6753 |
6754 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */ | |
6755 curwin->w_p_list = FALSE; /* no list mode */ | |
6756 | |
6757 curbuf->b_p_ma = FALSE; /* not modifiable */ | |
6758 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */ | |
6759 curwin->w_p_nu = 0; /* no line numbers */ | |
6760 curwin->w_p_rnu = 0; /* no relative line numbers */ | |
6761 RESET_BINDING(curwin); /* no scroll or cursor binding */ | |
6762 #ifdef FEAT_ARABIC | |
6763 curwin->w_p_arab = FALSE; /* no arabic mode */ | |
6764 #endif | |
6765 #ifdef FEAT_RIGHTLEFT | |
6766 curwin->w_p_rl = FALSE; /* help window is left-to-right */ | |
6767 #endif | |
6768 #ifdef FEAT_FOLDING | |
6769 curwin->w_p_fen = FALSE; /* No folding in the help window */ | |
6770 #endif | |
6771 #ifdef FEAT_DIFF | |
6772 curwin->w_p_diff = FALSE; /* No 'diff' */ | |
6773 #endif | |
6774 #ifdef FEAT_SPELL | |
6775 curwin->w_p_spell = FALSE; /* No spell checking */ | |
6776 #endif | |
6777 | |
6778 set_buflisted(FALSE); | |
6779 } | |
6780 | |
6781 /* | |
7 | 6782 * After reading a help file: May cleanup a help buffer when syntax |
6783 * highlighting is not used. | |
6784 */ | |
6785 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6786 fix_help_buffer(void) |
7 | 6787 { |
6788 linenr_T lnum; | |
6789 char_u *line; | |
6790 int in_example = FALSE; | |
6791 int len; | |
3141 | 6792 char_u *fname; |
7 | 6793 char_u *p; |
6794 char_u *rt; | |
6795 int mustfree; | |
6796 | |
6797 /* set filetype to "help". */ | |
6798 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL); | |
6799 | |
6800 #ifdef FEAT_SYN_HL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6801 if (!syntax_present(curwin)) |
7 | 6802 #endif |
6803 { | |
6804 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
6805 { | |
6806 line = ml_get_buf(curbuf, lnum, FALSE); | |
6807 len = (int)STRLEN(line); | |
6808 if (in_example && len > 0 && !vim_iswhite(line[0])) | |
6809 { | |
6810 /* End of example: non-white or '<' in first column. */ | |
6811 if (line[0] == '<') | |
6812 { | |
6813 /* blank-out a '<' in the first column */ | |
6814 line = ml_get_buf(curbuf, lnum, TRUE); | |
6815 line[0] = ' '; | |
6816 } | |
6817 in_example = FALSE; | |
6818 } | |
6819 if (!in_example && len > 0) | |
6820 { | |
6821 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' ')) | |
6822 { | |
6823 /* blank-out a '>' in the last column (start of example) */ | |
6824 line = ml_get_buf(curbuf, lnum, TRUE); | |
6825 line[len - 1] = ' '; | |
6826 in_example = TRUE; | |
6827 } | |
6828 else if (line[len - 1] == '~') | |
6829 { | |
6830 /* blank-out a '~' at the end of line (header marker) */ | |
6831 line = ml_get_buf(curbuf, lnum, TRUE); | |
6832 line[len - 1] = ' '; | |
6833 } | |
6834 } | |
6835 } | |
6836 } | |
6837 | |
6838 /* | |
3141 | 6839 * In the "help.txt" and "help.abx" file, add the locally added help |
6840 * files. This uses the very first line in the help file. | |
7 | 6841 */ |
3141 | 6842 fname = gettail(curbuf->b_fname); |
6843 if (fnamecmp(fname, "help.txt") == 0 | |
6844 #ifdef FEAT_MULTI_LANG | |
6845 || (fnamencmp(fname, "help.", 5) == 0 | |
6846 && ASCII_ISALPHA(fname[5]) | |
6847 && ASCII_ISALPHA(fname[6]) | |
6848 && TOLOWER_ASC(fname[7]) == 'x' | |
6849 && fname[8] == NUL) | |
6850 #endif | |
6851 ) | |
7 | 6852 { |
6853 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) | |
6854 { | |
6855 line = ml_get_buf(curbuf, lnum, FALSE); | |
3141 | 6856 if (strstr((char *)line, "*local-additions*") == NULL) |
6857 continue; | |
6858 | |
6859 /* Go through all directories in 'runtimepath', skipping | |
6860 * $VIMRUNTIME. */ | |
6861 p = p_rtp; | |
6862 while (*p != NUL) | |
7 | 6863 { |
3141 | 6864 copy_option_part(&p, NameBuff, MAXPATHL, ","); |
6865 mustfree = FALSE; | |
6866 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); | |
6867 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME) | |
7 | 6868 { |
3141 | 6869 int fcount; |
6870 char_u **fnames; | |
6871 FILE *fd; | |
6872 char_u *s; | |
6873 int fi; | |
7 | 6874 #ifdef FEAT_MBYTE |
3141 | 6875 vimconv_T vc; |
6876 char_u *cp; | |
6877 #endif | |
6878 | |
6879 /* Find all "doc/ *.txt" files in this directory. */ | |
6880 add_pathsep(NameBuff); | |
6881 #ifdef FEAT_MULTI_LANG | |
6882 STRCAT(NameBuff, "doc/*.??[tx]"); | |
7 | 6883 #else |
3141 | 6884 STRCAT(NameBuff, "doc/*.txt"); |
6885 #endif | |
6886 if (gen_expand_wildcards(1, &NameBuff, &fcount, | |
6887 &fnames, EW_FILE|EW_SILENT) == OK | |
6888 && fcount > 0) | |
6889 { | |
6890 #ifdef FEAT_MULTI_LANG | |
6891 int i1; | |
6892 int i2; | |
6893 char_u *f1; | |
6894 char_u *f2; | |
6895 char_u *t1; | |
6896 char_u *e1; | |
6897 char_u *e2; | |
6898 | |
6899 /* If foo.abx is found use it instead of foo.txt in | |
6900 * the same directory. */ | |
6901 for (i1 = 0; i1 < fcount; ++i1) | |
6902 { | |
6903 for (i2 = 0; i2 < fcount; ++i2) | |
6904 { | |
6905 if (i1 == i2) | |
6906 continue; | |
6907 if (fnames[i1] == NULL || fnames[i2] == NULL) | |
6908 continue; | |
6909 f1 = fnames[i1]; | |
6910 f2 = fnames[i2]; | |
6911 t1 = gettail(f1); | |
6912 if (fnamencmp(f1, f2, t1 - f1) != 0) | |
6913 continue; | |
6914 e1 = vim_strrchr(t1, '.'); | |
6915 e2 = vim_strrchr(gettail(f2), '.'); | |
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. */ | |
6922 vim_free(fnames[i1]); | |
6923 fnames[i1] = NULL; | |
6924 continue; | |
6925 } | |
6926 if (fnamencmp(f1, f2, e1 - f1) != 0) | |
6927 continue; | |
6928 if (fnamecmp(e1, ".txt") == 0 | |
6929 && fnamecmp(e2, fname + 4) == 0) | |
6930 { | |
6931 /* use .abx instead of .txt */ | |
6932 vim_free(fnames[i1]); | |
6933 fnames[i1] = NULL; | |
7 | 6934 } |
6935 } | |
6936 } | |
3141 | 6937 #endif |
6938 for (fi = 0; fi < fcount; ++fi) | |
6939 { | |
6940 if (fnames[fi] == NULL) | |
6941 continue; | |
6942 fd = mch_fopen((char *)fnames[fi], "r"); | |
6943 if (fd != NULL) | |
6944 { | |
6945 vim_fgets(IObuff, IOSIZE, fd); | |
6946 if (IObuff[0] == '*' | |
6947 && (s = vim_strchr(IObuff + 1, '*')) | |
6948 != NULL) | |
6949 { | |
6950 #ifdef FEAT_MBYTE | |
6951 int this_utf = MAYBE; | |
6952 #endif | |
6953 /* Change tag definition to a | |
6954 * reference and remove <CR>/<NL>. */ | |
6955 IObuff[0] = '|'; | |
6956 *s = '|'; | |
6957 while (*s != NUL) | |
6958 { | |
6959 if (*s == '\r' || *s == '\n') | |
6960 *s = NUL; | |
6961 #ifdef FEAT_MBYTE | |
6962 /* The text is utf-8 when a byte | |
6963 * above 127 is found and no | |
6964 * illegal byte sequence is found. | |
6965 */ | |
6966 if (*s >= 0x80 && this_utf != FALSE) | |
6967 { | |
6968 int l; | |
6969 | |
6970 this_utf = TRUE; | |
6971 l = utf_ptr2len(s); | |
6972 if (l == 1) | |
6973 this_utf = FALSE; | |
6974 s += l - 1; | |
6975 } | |
6976 #endif | |
6977 ++s; | |
6978 } | |
6979 #ifdef FEAT_MBYTE | |
6980 /* The help file is latin1 or utf-8; | |
6981 * conversion to the current | |
6982 * 'encoding' may be required. */ | |
6983 vc.vc_type = CONV_NONE; | |
6984 convert_setup(&vc, (char_u *)( | |
6985 this_utf == TRUE ? "utf-8" | |
6986 : "latin1"), p_enc); | |
6987 if (vc.vc_type == CONV_NONE) | |
6988 /* No conversion needed. */ | |
6989 cp = IObuff; | |
6990 else | |
6991 { | |
6992 /* Do the conversion. If it fails | |
6993 * use the unconverted text. */ | |
6994 cp = string_convert(&vc, IObuff, | |
6995 NULL); | |
6996 if (cp == NULL) | |
6997 cp = IObuff; | |
6998 } | |
6999 convert_setup(&vc, NULL, NULL); | |
7000 | |
7001 ml_append(lnum, cp, (colnr_T)0, FALSE); | |
7002 if (cp != IObuff) | |
7003 vim_free(cp); | |
7004 #else | |
7005 ml_append(lnum, IObuff, (colnr_T)0, | |
7006 FALSE); | |
7007 #endif | |
7008 ++lnum; | |
7009 } | |
7010 fclose(fd); | |
7011 } | |
7012 } | |
7013 FreeWild(fcount, fnames); | |
7 | 7014 } |
7015 } | |
3141 | 7016 if (mustfree) |
7017 vim_free(rt); | |
7 | 7018 } |
3141 | 7019 break; |
7 | 7020 } |
7021 } | |
7022 } | |
7023 | |
40 | 7024 /* |
7025 * ":exusage" | |
7026 */ | |
7027 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7028 ex_exusage(exarg_T *eap UNUSED) |
40 | 7029 { |
7030 do_cmdline_cmd((char_u *)"help ex-cmd-index"); | |
7031 } | |
7032 | |
7033 /* | |
7034 * ":viusage" | |
7035 */ | |
7036 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7037 ex_viusage(exarg_T *eap UNUSED) |
40 | 7038 { |
7039 do_cmdline_cmd((char_u *)"help normal-index"); | |
7040 } | |
7041 | |
7 | 7042 /* |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7043 * Generate tags in one help directory. |
7 | 7044 */ |
7045 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7046 helptags_one( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7047 char_u *dir, /* doc directory */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7048 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
|
7049 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
|
7050 int add_help_tags) /* add "help-tags" tag */ |
7 | 7051 { |
7052 FILE *fd_tags; | |
7053 FILE *fd; | |
7054 garray_T ga; | |
7055 int filecount; | |
7056 char_u **files; | |
7057 char_u *p1, *p2; | |
7058 int fi; | |
7059 char_u *s; | |
7060 int i; | |
7061 char_u *fname; | |
3957 | 7062 int dirlen; |
7 | 7063 # ifdef FEAT_MBYTE |
7064 int utf8 = MAYBE; | |
7065 int this_utf8; | |
7066 int firstline; | |
7067 int mix = FALSE; /* detected mixed encodings */ | |
7068 # endif | |
7069 | |
7070 /* | |
7071 * Find all *.txt files. | |
7072 */ | |
3978 | 7073 dirlen = (int)STRLEN(dir); |
7 | 7074 STRCPY(NameBuff, dir); |
3957 | 7075 STRCAT(NameBuff, "/**/*"); |
7 | 7076 STRCAT(NameBuff, ext); |
7077 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, | |
7078 EW_FILE|EW_SILENT) == FAIL | |
7079 || filecount == 0) | |
7080 { | |
7081 if (!got_int) | |
9953
9560a2eb7968
commit https://github.com/vim/vim/commit/5b30291785e6b9be1a607504c14bd03c601b59a6
Christian Brabandt <cb@256bit.org>
parents:
9947
diff
changeset
|
7082 EMSG2(_("E151: No match: %s"), NameBuff); |
7 | 7083 return; |
7084 } | |
7085 | |
7086 /* | |
7087 * Open the tags file for writing. | |
7088 * Do this before scanning through all the files. | |
7089 */ | |
7090 STRCPY(NameBuff, dir); | |
7091 add_pathsep(NameBuff); | |
7092 STRCAT(NameBuff, tagfname); | |
531 | 7093 fd_tags = mch_fopen((char *)NameBuff, "w"); |
7 | 7094 if (fd_tags == NULL) |
7095 { | |
7096 EMSG2(_("E152: Cannot open %s for writing"), NameBuff); | |
7097 FreeWild(filecount, files); | |
7098 return; | |
7099 } | |
7100 | |
7101 /* | |
1502 | 7102 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc" |
7103 * add the "help-tags" tag. | |
7 | 7104 */ |
7105 ga_init2(&ga, (int)sizeof(char_u *), 100); | |
1502 | 7106 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc", |
7107 dir, FALSE) == FPC_SAME) | |
7 | 7108 { |
7109 if (ga_grow(&ga, 1) == FAIL) | |
7110 got_int = TRUE; | |
7111 else | |
7112 { | |
835 | 7113 s = alloc(18 + (unsigned)STRLEN(tagfname)); |
7 | 7114 if (s == NULL) |
7115 got_int = TRUE; | |
7116 else | |
7117 { | |
7118 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname); | |
7119 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
7120 ++ga.ga_len; | |
7121 } | |
7122 } | |
7123 } | |
7124 | |
7125 /* | |
7126 * Go over all the files and extract the tags. | |
7127 */ | |
7128 for (fi = 0; fi < filecount && !got_int; ++fi) | |
7129 { | |
531 | 7130 fd = mch_fopen((char *)files[fi], "r"); |
7 | 7131 if (fd == NULL) |
7132 { | |
7133 EMSG2(_("E153: Unable to open %s for reading"), files[fi]); | |
7134 continue; | |
7135 } | |
3957 | 7136 fname = files[fi] + dirlen + 1; |
7 | 7137 |
7138 # ifdef FEAT_MBYTE | |
7139 firstline = TRUE; | |
7140 # endif | |
7141 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) | |
7142 { | |
7143 # ifdef FEAT_MBYTE | |
7144 if (firstline) | |
7145 { | |
7146 /* Detect utf-8 file by a non-ASCII char in the first line. */ | |
7147 this_utf8 = MAYBE; | |
7148 for (s = IObuff; *s != NUL; ++s) | |
7149 if (*s >= 0x80) | |
7150 { | |
7151 int l; | |
7152 | |
7153 this_utf8 = TRUE; | |
474 | 7154 l = utf_ptr2len(s); |
7 | 7155 if (l == 1) |
7156 { | |
7157 /* Illegal UTF-8 byte sequence. */ | |
7158 this_utf8 = FALSE; | |
7159 break; | |
7160 } | |
7161 s += l - 1; | |
7162 } | |
7163 if (this_utf8 == MAYBE) /* only ASCII characters found */ | |
7164 this_utf8 = FALSE; | |
7165 if (utf8 == MAYBE) /* first file */ | |
7166 utf8 = this_utf8; | |
7167 else if (utf8 != this_utf8) | |
7168 { | |
7169 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]); | |
7170 mix = !got_int; | |
7171 got_int = TRUE; | |
7172 } | |
7173 firstline = FALSE; | |
7174 } | |
7175 # endif | |
7176 p1 = vim_strchr(IObuff, '*'); /* find first '*' */ | |
7177 while (p1 != NULL) | |
7178 { | |
3514 | 7179 /* Use vim_strbyte() instead of vim_strchr() so that when |
7180 * 'encoding' is dbcs it still works, don't find '*' in the | |
7181 * second byte. */ | |
7182 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */ | |
7 | 7183 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */ |
7184 { | |
7185 for (s = p1 + 1; s < p2; ++s) | |
7186 if (*s == ' ' || *s == '\t' || *s == '|') | |
7187 break; | |
7188 | |
7189 /* | |
7190 * Only accept a *tag* when it consists of valid | |
7191 * characters, there is white space before it and is | |
7192 * followed by a white character or end-of-line. | |
7193 */ | |
7194 if (s == p2 | |
7195 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') | |
7196 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL | |
7197 || s[1] == '\0')) | |
7198 { | |
7199 *p2 = '\0'; | |
7200 ++p1; | |
7201 if (ga_grow(&ga, 1) == FAIL) | |
7202 { | |
7203 got_int = TRUE; | |
7204 break; | |
7205 } | |
7206 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2)); | |
7207 if (s == NULL) | |
7208 { | |
7209 got_int = TRUE; | |
7210 break; | |
7211 } | |
7212 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
7213 ++ga.ga_len; | |
7214 sprintf((char *)s, "%s\t%s", p1, fname); | |
7215 | |
7216 /* find next '*' */ | |
7217 p2 = vim_strchr(p2 + 1, '*'); | |
7218 } | |
7219 } | |
7220 p1 = p2; | |
7221 } | |
7222 line_breakcheck(); | |
7223 } | |
7224 | |
7225 fclose(fd); | |
7226 } | |
7227 | |
7228 FreeWild(filecount, files); | |
7229 | |
7230 if (!got_int) | |
7231 { | |
7232 /* | |
7233 * Sort the tags. | |
7234 */ | |
7009 | 7235 if (ga.ga_data != NULL) |
7236 sort_strings((char_u **)ga.ga_data, ga.ga_len); | |
7 | 7237 |
7238 /* | |
7239 * Check for duplicates. | |
7240 */ | |
7241 for (i = 1; i < ga.ga_len; ++i) | |
7242 { | |
7243 p1 = ((char_u **)ga.ga_data)[i - 1]; | |
7244 p2 = ((char_u **)ga.ga_data)[i]; | |
7245 while (*p1 == *p2) | |
7246 { | |
7247 if (*p2 == '\t') | |
7248 { | |
7249 *p2 = NUL; | |
274 | 7250 vim_snprintf((char *)NameBuff, MAXPATHL, |
7 | 7251 _("E154: Duplicate tag \"%s\" in file %s/%s"), |
7252 ((char_u **)ga.ga_data)[i], dir, p2 + 1); | |
7253 EMSG(NameBuff); | |
7254 *p2 = '\t'; | |
7255 break; | |
7256 } | |
7257 ++p1; | |
7258 ++p2; | |
7259 } | |
7260 } | |
7261 | |
7262 # ifdef FEAT_MBYTE | |
7263 if (utf8 == TRUE) | |
7264 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n"); | |
7265 # endif | |
7266 | |
7267 /* | |
7268 * Write the tags into the file. | |
7269 */ | |
7270 for (i = 0; i < ga.ga_len; ++i) | |
7271 { | |
7272 s = ((char_u **)ga.ga_data)[i]; | |
1325 | 7273 if (STRNCMP(s, "help-tags\t", 10) == 0) |
7 | 7274 /* help-tags entry was added in formatted form */ |
1325 | 7275 fputs((char *)s, fd_tags); |
7 | 7276 else |
7277 { | |
7278 fprintf(fd_tags, "%s\t/*", s); | |
7279 for (p1 = s; *p1 != '\t'; ++p1) | |
7280 { | |
7281 /* insert backslash before '\\' and '/' */ | |
7282 if (*p1 == '\\' || *p1 == '/') | |
7283 putc('\\', fd_tags); | |
7284 putc(*p1, fd_tags); | |
7285 } | |
7286 fprintf(fd_tags, "*\n"); | |
7287 } | |
7288 } | |
7289 } | |
7290 #ifdef FEAT_MBYTE | |
7291 if (mix) | |
7292 got_int = FALSE; /* continue with other languages */ | |
7293 #endif | |
7294 | |
7295 for (i = 0; i < ga.ga_len; ++i) | |
7296 vim_free(((char_u **)ga.ga_data)[i]); | |
7297 ga_clear(&ga); | |
7298 fclose(fd_tags); /* there is no check for an error... */ | |
7299 } | |
7300 | |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7301 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7302 * 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
|
7303 */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7304 static void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7305 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
|
7306 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7307 #ifdef FEAT_MULTI_LANG |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7308 int len; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7309 int i, j; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7310 garray_T ga; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7311 char_u lang[2]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7312 char_u ext[5]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7313 char_u fname[8]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7314 int filecount; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7315 char_u **files; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7316 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7317 /* 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
|
7318 STRCPY(NameBuff, dirname); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7319 add_pathsep(NameBuff); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7320 STRCAT(NameBuff, "**"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7321 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
|
7322 EW_FILE|EW_SILENT) == FAIL |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7323 || filecount == 0) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7324 { |
9953
9560a2eb7968
commit https://github.com/vim/vim/commit/5b30291785e6b9be1a607504c14bd03c601b59a6
Christian Brabandt <cb@256bit.org>
parents:
9947
diff
changeset
|
7325 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
|
7326 return; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7327 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7328 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7329 /* 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
|
7330 * present. */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7331 ga_init2(&ga, 1, 10); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7332 for (i = 0; i < filecount; ++i) |
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 len = (int)STRLEN(files[i]); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7335 if (len > 4) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7336 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7337 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
|
7338 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7339 /* ".txt" -> language "en" */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7340 lang[0] = 'e'; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7341 lang[1] = 'n'; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7342 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7343 else if (files[i][len - 4] == '.' |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7344 && ASCII_ISALPHA(files[i][len - 3]) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7345 && ASCII_ISALPHA(files[i][len - 2]) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7346 && 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
|
7347 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7348 /* ".abx" -> language "ab" */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7349 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
|
7350 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
|
7351 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7352 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7353 continue; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7354 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7355 /* Did we find this language already? */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7356 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
|
7357 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
|
7358 break; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7359 if (j == ga.ga_len) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7360 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7361 /* New language, add it. */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7362 if (ga_grow(&ga, 2) == FAIL) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7363 break; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7364 ((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
|
7365 ((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
|
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 } |
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 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7371 * 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
|
7372 */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7373 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
|
7374 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7375 STRCPY(fname, "tags-xx"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7376 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
|
7377 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
|
7378 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
|
7379 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7380 /* 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
|
7381 fname[4] = NUL; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7382 STRCPY(ext, ".txt"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7383 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7384 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7385 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7386 /* 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
|
7387 STRCPY(ext, ".xxx"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7388 ext[1] = fname[5]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7389 ext[2] = fname[6]; |
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 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
|
7392 } |
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 ga_clear(&ga); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7395 FreeWild(filecount, files); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7396 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7397 #else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7398 /* 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
|
7399 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
|
7400 #endif |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7401 } |
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 static void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7404 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
|
7405 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7406 do_helptags(fname, *(int *)cookie); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7407 } |
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 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7410 * ":helptags" |
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 void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7413 ex_helptags(exarg_T *eap) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7414 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7415 expand_T xpc; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7416 char_u *dirname; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7417 int add_help_tags = FALSE; |
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 /* Check for ":helptags ++t {dir}". */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7420 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(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 add_help_tags = TRUE; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7423 eap->arg = skipwhite(eap->arg + 3); |
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 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7426 if (STRCMP(eap->arg, "ALL") == 0) |
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 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
|
7429 helptags_cb, &add_help_tags); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7430 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7431 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7432 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7433 ExpandInit(&xpc); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7434 xpc.xp_context = EXPAND_DIRECTORIES; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7435 dirname = ExpandOne(&xpc, eap->arg, NULL, |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7436 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
|
7437 if (dirname == NULL || !mch_isdir(dirname)) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7438 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
|
7439 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7440 do_helptags(dirname, add_help_tags); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7441 vim_free(dirname); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7442 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7443 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7444 |
7 | 7445 #if defined(FEAT_SIGNS) || defined(PROTO) |
7446 | |
7447 /* | |
7448 * Struct to hold the sign properties. | |
7449 */ | |
7450 typedef struct sign sign_T; | |
7451 | |
7452 struct sign | |
7453 { | |
7454 sign_T *sn_next; /* next sign in list */ | |
2606 | 7455 int sn_typenr; /* type number of sign */ |
7 | 7456 char_u *sn_name; /* name of sign */ |
7457 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
|
7458 # ifdef FEAT_SIGN_ICONS |
7 | 7459 void *sn_image; /* icon image */ |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7460 # endif |
7 | 7461 char_u *sn_text; /* text used instead of pixmap */ |
7462 int sn_line_hl; /* highlight ID for line */ | |
7463 int sn_text_hl; /* highlight ID for text */ | |
7464 }; | |
7465 | |
7466 static sign_T *first_sign = NULL; | |
2605 | 7467 static int next_sign_typenr = 1; |
7 | 7468 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
7469 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
|
7470 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
|
7471 static void sign_undefine(sign_T *sp, sign_T *sp_prev); |
7 | 7472 |
1868 | 7473 static char *cmds[] = { |
7474 "define", | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7475 # define SIGNCMD_DEFINE 0 |
1868 | 7476 "undefine", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7477 # define SIGNCMD_UNDEFINE 1 |
1868 | 7478 "list", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7479 # define SIGNCMD_LIST 2 |
1868 | 7480 "place", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7481 # define SIGNCMD_PLACE 3 |
1868 | 7482 "unplace", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7483 # define SIGNCMD_UNPLACE 4 |
1868 | 7484 "jump", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7485 # define SIGNCMD_JUMP 5 |
1868 | 7486 NULL |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7487 # define SIGNCMD_LAST 6 |
1868 | 7488 }; |
7489 | |
7490 /* | |
7491 * Find index of a ":sign" subcmd from its name. | |
7492 * "*end_cmd" must be writable. | |
7493 */ | |
7494 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7495 sign_cmd_idx( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7496 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
|
7497 char_u *end_cmd) /* just after sign subcmd */ |
1868 | 7498 { |
7499 int idx; | |
7500 char save = *end_cmd; | |
7501 | |
7502 *end_cmd = NUL; | |
7503 for (idx = 0; ; ++idx) | |
7504 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0) | |
7505 break; | |
7506 *end_cmd = save; | |
7507 return idx; | |
7508 } | |
7509 | |
7 | 7510 /* |
7511 * ":sign" command | |
7512 */ | |
7513 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7514 ex_sign(exarg_T *eap) |
7 | 7515 { |
7516 char_u *arg = eap->arg; | |
7517 char_u *p; | |
7518 int idx; | |
7519 sign_T *sp; | |
7520 sign_T *sp_prev; | |
7521 buf_T *buf; | |
7522 | |
7523 /* Parse the subcommand. */ | |
7524 p = skiptowhite(arg); | |
1868 | 7525 idx = sign_cmd_idx(arg, p); |
7526 if (idx == SIGNCMD_LAST) | |
7527 { | |
7528 EMSG2(_("E160: Unknown sign command: %s"), arg); | |
7529 return; | |
7 | 7530 } |
7531 arg = skipwhite(p); | |
7532 | |
7533 if (idx <= SIGNCMD_LIST) | |
7534 { | |
7535 /* | |
7536 * Define, undefine or list signs. | |
7537 */ | |
7538 if (idx == SIGNCMD_LIST && *arg == NUL) | |
7539 { | |
7540 /* ":sign list": list all defined signs */ | |
3411 | 7541 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next) |
7 | 7542 sign_list_defined(sp); |
7543 } | |
7544 else if (*arg == NUL) | |
7545 EMSG(_("E156: Missing sign name")); | |
7546 else | |
7547 { | |
2605 | 7548 /* Isolate the sign name. If it's a number skip leading zeroes, |
7549 * so that "099" and "99" are the same sign. But keep "0". */ | |
7 | 7550 p = skiptowhite(arg); |
7551 if (*p != NUL) | |
7552 *p++ = NUL; | |
2605 | 7553 while (arg[0] == '0' && arg[1] != NUL) |
7554 ++arg; | |
7555 | |
7 | 7556 sp_prev = NULL; |
7557 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7558 { | |
7559 if (STRCMP(sp->sn_name, arg) == 0) | |
7560 break; | |
7561 sp_prev = sp; | |
7562 } | |
7563 if (idx == SIGNCMD_DEFINE) | |
7564 { | |
7565 /* ":sign define {name} ...": define a sign */ | |
7566 if (sp == NULL) | |
7567 { | |
2605 | 7568 sign_T *lp; |
7569 int start = next_sign_typenr; | |
7570 | |
7 | 7571 /* Allocate a new sign. */ |
7572 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T)); | |
7573 if (sp == NULL) | |
7574 return; | |
7575 | |
2605 | 7576 /* Check that next_sign_typenr is not already being used. |
7577 * This only happens after wrapping around. Hopefully | |
7578 * another one got deleted and we can use its number. */ | |
7579 for (lp = first_sign; lp != NULL; ) | |
7 | 7580 { |
2605 | 7581 if (lp->sn_typenr == next_sign_typenr) |
7 | 7582 { |
2605 | 7583 ++next_sign_typenr; |
7584 if (next_sign_typenr == MAX_TYPENR) | |
7585 next_sign_typenr = 1; | |
7586 if (next_sign_typenr == start) | |
7 | 7587 { |
2605 | 7588 vim_free(sp); |
7589 EMSG(_("E612: Too many signs defined")); | |
7590 return; | |
7 | 7591 } |
2605 | 7592 lp = first_sign; /* start all over */ |
7593 continue; | |
7 | 7594 } |
2605 | 7595 lp = lp->sn_next; |
7596 } | |
7597 | |
7598 sp->sn_typenr = next_sign_typenr; | |
7599 if (++next_sign_typenr == MAX_TYPENR) | |
7600 next_sign_typenr = 1; /* wrap around */ | |
7601 | |
7602 sp->sn_name = vim_strsave(arg); | |
7603 if (sp->sn_name == NULL) /* out of memory */ | |
7604 { | |
7605 vim_free(sp); | |
7606 return; | |
7 | 7607 } |
2601 | 7608 |
7609 /* add the new sign to the list of signs */ | |
7610 if (sp_prev == NULL) | |
7611 first_sign = sp; | |
7612 else | |
7613 sp_prev->sn_next = sp; | |
7 | 7614 } |
7615 | |
7616 /* set values for a defined sign. */ | |
7617 for (;;) | |
7618 { | |
7619 arg = skipwhite(p); | |
7620 if (*arg == NUL) | |
7621 break; | |
7622 p = skiptowhite_esc(arg); | |
7623 if (STRNCMP(arg, "icon=", 5) == 0) | |
7624 { | |
7625 arg += 5; | |
7626 vim_free(sp->sn_icon); | |
7627 sp->sn_icon = vim_strnsave(arg, (int)(p - arg)); | |
7628 backslash_halve(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7629 # ifdef FEAT_SIGN_ICONS |
7 | 7630 if (gui.in_use) |
7631 { | |
7632 out_flush(); | |
7633 if (sp->sn_image != NULL) | |
7634 gui_mch_destroy_sign(sp->sn_image); | |
7635 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7636 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7637 # endif |
7 | 7638 } |
7639 else if (STRNCMP(arg, "text=", 5) == 0) | |
7640 { | |
7641 char_u *s; | |
7642 int cells; | |
7643 int len; | |
7644 | |
7645 arg += 5; | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7646 # ifdef FEAT_MBYTE |
7 | 7647 /* Count cells and check for non-printable chars */ |
7648 if (has_mbyte) | |
7649 { | |
7650 cells = 0; | |
474 | 7651 for (s = arg; s < p; s += (*mb_ptr2len)(s)) |
7 | 7652 { |
7653 if (!vim_isprintc((*mb_ptr2char)(s))) | |
7654 break; | |
7655 cells += (*mb_ptr2cells)(s); | |
7656 } | |
7657 } | |
7658 else | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7659 # endif |
7 | 7660 { |
7661 for (s = arg; s < p; ++s) | |
7662 if (!vim_isprintc(*s)) | |
7663 break; | |
835 | 7664 cells = (int)(s - arg); |
7 | 7665 } |
7666 /* Currently must be one or two display cells */ | |
7667 if (s != p || cells < 1 || cells > 2) | |
7668 { | |
7669 *p = NUL; | |
7670 EMSG2(_("E239: Invalid sign text: %s"), arg); | |
7671 return; | |
7672 } | |
7673 | |
7674 vim_free(sp->sn_text); | |
7675 /* Allocate one byte more if we need to pad up | |
7676 * with a space. */ | |
835 | 7677 len = (int)(p - arg + ((cells == 1) ? 1 : 0)); |
7 | 7678 sp->sn_text = vim_strnsave(arg, len); |
7679 | |
7680 if (sp->sn_text != NULL && cells == 1) | |
7681 STRCPY(sp->sn_text + len - 1, " "); | |
7682 } | |
7683 else if (STRNCMP(arg, "linehl=", 7) == 0) | |
7684 { | |
7685 arg += 7; | |
7686 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg)); | |
7687 } | |
7688 else if (STRNCMP(arg, "texthl=", 7) == 0) | |
7689 { | |
7690 arg += 7; | |
7691 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg)); | |
7692 } | |
7693 else | |
7694 { | |
7695 EMSG2(_(e_invarg2), arg); | |
7696 return; | |
7697 } | |
7698 } | |
7699 } | |
7700 else if (sp == NULL) | |
7701 EMSG2(_("E155: Unknown sign: %s"), arg); | |
7702 else if (idx == SIGNCMD_LIST) | |
7703 /* ":sign list {name}" */ | |
7704 sign_list_defined(sp); | |
7705 else | |
7706 /* ":sign undefine {name}" */ | |
1828 | 7707 sign_undefine(sp, sp_prev); |
7 | 7708 } |
7709 } | |
7710 else | |
7711 { | |
7712 int id = -1; | |
7713 linenr_T lnum = -1; | |
7714 char_u *sign_name = NULL; | |
7715 char_u *arg1; | |
7716 | |
7717 if (*arg == NUL) | |
7718 { | |
7719 if (idx == SIGNCMD_PLACE) | |
7720 { | |
7721 /* ":sign place": list placed signs in all buffers */ | |
7722 sign_list_placed(NULL); | |
7723 } | |
7724 else if (idx == SIGNCMD_UNPLACE) | |
7725 { | |
7726 /* ":sign unplace": remove placed sign at cursor */ | |
7727 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum); | |
7728 if (id > 0) | |
7729 { | |
7730 buf_delsign(curwin->w_buffer, id); | |
7731 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum); | |
7732 } | |
7733 else | |
7734 EMSG(_("E159: Missing sign number")); | |
7735 } | |
7736 else | |
7737 EMSG(_(e_argreq)); | |
7738 return; | |
7739 } | |
7740 | |
7741 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL) | |
7742 { | |
7743 /* ":sign unplace *": remove all placed signs */ | |
7744 buf_delete_all_signs(); | |
7745 return; | |
7746 } | |
7747 | |
7748 /* first arg could be placed sign id */ | |
7749 arg1 = arg; | |
7750 if (VIM_ISDIGIT(*arg)) | |
7751 { | |
7752 id = getdigits(&arg); | |
7753 if (!vim_iswhite(*arg) && *arg != NUL) | |
7754 { | |
7755 id = -1; | |
7756 arg = arg1; | |
7757 } | |
7758 else | |
7759 { | |
7760 arg = skipwhite(arg); | |
7761 if (idx == SIGNCMD_UNPLACE && *arg == NUL) | |
7762 { | |
7763 /* ":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
|
7764 FOR_ALL_BUFFERS(buf) |
7 | 7765 if ((lnum = buf_delsign(buf, id)) != 0) |
7766 update_debug_sign(buf, lnum); | |
7767 return; | |
7768 } | |
7769 } | |
7770 } | |
7771 | |
7772 /* | |
7773 * Check for line={lnum} name={name} and file={fname} or buffer={nr}. | |
7774 * Leave "arg" pointing to {fname}. | |
7775 */ | |
7776 for (;;) | |
7777 { | |
7778 if (STRNCMP(arg, "line=", 5) == 0) | |
7779 { | |
7780 arg += 5; | |
7781 lnum = atoi((char *)arg); | |
7782 arg = skiptowhite(arg); | |
7783 } | |
3672 | 7784 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE) |
7785 { | |
7786 if (id != -1) | |
7787 { | |
7788 EMSG(_(e_invarg)); | |
7789 return; | |
7790 } | |
7791 id = -2; | |
7792 arg = skiptowhite(arg + 1); | |
7793 } | |
7 | 7794 else if (STRNCMP(arg, "name=", 5) == 0) |
7795 { | |
7796 arg += 5; | |
7797 sign_name = arg; | |
7798 arg = skiptowhite(arg); | |
7799 if (*arg != NUL) | |
7800 *arg++ = NUL; | |
2605 | 7801 while (sign_name[0] == '0' && sign_name[1] != NUL) |
7802 ++sign_name; | |
7 | 7803 } |
7804 else if (STRNCMP(arg, "file=", 5) == 0) | |
7805 { | |
7806 arg += 5; | |
7807 buf = buflist_findname(arg); | |
7808 break; | |
7809 } | |
7810 else if (STRNCMP(arg, "buffer=", 7) == 0) | |
7811 { | |
7812 arg += 7; | |
7813 buf = buflist_findnr((int)getdigits(&arg)); | |
7814 if (*skipwhite(arg) != NUL) | |
7815 EMSG(_(e_trailing)); | |
7816 break; | |
7817 } | |
7818 else | |
7819 { | |
7820 EMSG(_(e_invarg)); | |
7821 return; | |
7822 } | |
7823 arg = skipwhite(arg); | |
7824 } | |
7825 | |
7826 if (buf == NULL) | |
7827 { | |
7828 EMSG2(_("E158: Invalid buffer name: %s"), arg); | |
7829 } | |
3672 | 7830 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2)) |
7 | 7831 { |
7832 if (lnum >= 0 || sign_name != NULL) | |
7833 EMSG(_(e_invarg)); | |
7834 else | |
7835 /* ":sign place file={fname}": list placed signs in one file */ | |
7836 sign_list_placed(buf); | |
7837 } | |
7838 else if (idx == SIGNCMD_JUMP) | |
7839 { | |
7840 /* ":sign jump {id} file={fname}" */ | |
7841 if (lnum >= 0 || sign_name != NULL) | |
7842 EMSG(_(e_invarg)); | |
7843 else if ((lnum = buf_findsign(buf, id)) > 0) | |
7844 { /* goto a sign ... */ | |
7845 if (buf_jump_open_win(buf) != NULL) | |
7846 { /* ... in a current window */ | |
7847 curwin->w_cursor.lnum = lnum; | |
7848 check_cursor_lnum(); | |
7849 beginline(BL_WHITE); | |
7850 } | |
7851 else | |
7852 { /* ... not currently in a window */ | |
7853 char_u *cmd; | |
7854 | |
9902
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7855 if (buf->b_fname == NULL) |
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7856 { |
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7857 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
|
7858 return; |
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7859 } |
7 | 7860 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25); |
7861 if (cmd == NULL) | |
7862 return; | |
7863 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname); | |
7864 do_cmdline_cmd(cmd); | |
7865 vim_free(cmd); | |
7866 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7867 # ifdef FEAT_FOLDING |
7 | 7868 foldOpenCursor(); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7869 # endif |
7 | 7870 } |
7871 else | |
7872 EMSGN(_("E157: Invalid sign ID: %ld"), id); | |
7873 } | |
7874 else if (idx == SIGNCMD_UNPLACE) | |
7875 { | |
7876 if (lnum >= 0 || sign_name != NULL) | |
7877 EMSG(_(e_invarg)); | |
3672 | 7878 else if (id == -2) |
7879 { | |
7880 /* ":sign unplace * file={fname}" */ | |
7881 redraw_buf_later(buf, NOT_VALID); | |
7882 buf_delete_signs(buf); | |
7883 } | |
7 | 7884 else |
7885 { | |
3672 | 7886 /* ":sign unplace {id} file={fname}" */ |
7 | 7887 lnum = buf_delsign(buf, id); |
7888 update_debug_sign(buf, lnum); | |
7889 } | |
7890 } | |
7891 /* idx == SIGNCMD_PLACE */ | |
7892 else if (sign_name != NULL) | |
7893 { | |
7894 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7895 if (STRCMP(sp->sn_name, sign_name) == 0) | |
7896 break; | |
7897 if (sp == NULL) | |
7898 { | |
7899 EMSG2(_("E155: Unknown sign: %s"), sign_name); | |
7900 return; | |
7901 } | |
7902 if (lnum > 0) | |
7903 /* ":sign place {id} line={lnum} name={name} file={fname}": | |
7904 * place a sign */ | |
7905 buf_addsign(buf, id, lnum, sp->sn_typenr); | |
7906 else | |
7907 /* ":sign place {id} file={fname}": change sign type */ | |
7908 lnum = buf_change_sign_type(buf, id, sp->sn_typenr); | |
5865 | 7909 if (lnum > 0) |
7910 update_debug_sign(buf, lnum); | |
7911 else | |
7912 EMSG2(_("E885: Not possible to change sign %s"), sign_name); | |
7 | 7913 } |
7914 else | |
7915 EMSG(_(e_invarg)); | |
7916 } | |
7917 } | |
7918 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7919 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
7 | 7920 /* |
7921 * Allocate the icons. Called when the GUI has started. Allows defining | |
7922 * signs before it starts. | |
7923 */ | |
7924 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7925 sign_gui_started(void) |
7 | 7926 { |
7927 sign_T *sp; | |
7928 | |
7929 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7930 if (sp->sn_icon != NULL) | |
7931 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7932 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7933 # endif |
7 | 7934 |
7935 /* | |
7936 * List one sign. | |
7937 */ | |
7938 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7939 sign_list_defined(sign_T *sp) |
7 | 7940 { |
7941 char_u *p; | |
7942 | |
274 | 7943 smsg((char_u *)"sign %s", sp->sn_name); |
7 | 7944 if (sp->sn_icon != NULL) |
7945 { | |
7946 MSG_PUTS(" icon="); | |
7947 msg_outtrans(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7948 # ifdef FEAT_SIGN_ICONS |
7 | 7949 if (sp->sn_image == NULL) |
7950 MSG_PUTS(_(" (NOT FOUND)")); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7951 # else |
7 | 7952 MSG_PUTS(_(" (not supported)")); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7953 # endif |
7 | 7954 } |
7955 if (sp->sn_text != NULL) | |
7956 { | |
7957 MSG_PUTS(" text="); | |
7958 msg_outtrans(sp->sn_text); | |
7959 } | |
7960 if (sp->sn_line_hl > 0) | |
7961 { | |
7962 MSG_PUTS(" linehl="); | |
7963 p = get_highlight_name(NULL, sp->sn_line_hl - 1); | |
7964 if (p == NULL) | |
7965 MSG_PUTS("NONE"); | |
7966 else | |
7967 msg_puts(p); | |
7968 } | |
7969 if (sp->sn_text_hl > 0) | |
7970 { | |
7971 MSG_PUTS(" texthl="); | |
7972 p = get_highlight_name(NULL, sp->sn_text_hl - 1); | |
7973 if (p == NULL) | |
7974 MSG_PUTS("NONE"); | |
7975 else | |
7976 msg_puts(p); | |
7977 } | |
7978 } | |
7979 | |
7980 /* | |
1828 | 7981 * Undefine a sign and free its memory. |
7982 */ | |
7983 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7984 sign_undefine(sign_T *sp, sign_T *sp_prev) |
1828 | 7985 { |
7986 vim_free(sp->sn_name); | |
7987 vim_free(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7988 # ifdef FEAT_SIGN_ICONS |
1828 | 7989 if (sp->sn_image != NULL) |
7990 { | |
7991 out_flush(); | |
7992 gui_mch_destroy_sign(sp->sn_image); | |
7993 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7994 # endif |
1828 | 7995 vim_free(sp->sn_text); |
7996 if (sp_prev == NULL) | |
7997 first_sign = sp->sn_next; | |
7998 else | |
7999 sp_prev->sn_next = sp->sn_next; | |
8000 vim_free(sp); | |
8001 } | |
8002 | |
8003 /* | |
7 | 8004 * Get highlighting attribute for sign "typenr". |
8005 * If "line" is TRUE: line highl, if FALSE: text highl. | |
8006 */ | |
8007 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8008 sign_get_attr(int typenr, int line) |
7 | 8009 { |
8010 sign_T *sp; | |
8011 | |
8012 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8013 if (sp->sn_typenr == typenr) | |
8014 { | |
8015 if (line) | |
8016 { | |
8017 if (sp->sn_line_hl > 0) | |
8018 return syn_id2attr(sp->sn_line_hl); | |
8019 } | |
8020 else | |
8021 { | |
8022 if (sp->sn_text_hl > 0) | |
8023 return syn_id2attr(sp->sn_text_hl); | |
8024 } | |
8025 break; | |
8026 } | |
8027 return 0; | |
8028 } | |
8029 | |
8030 /* | |
8031 * Get text mark for sign "typenr". | |
8032 * Returns NULL if there isn't one. | |
8033 */ | |
8034 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8035 sign_get_text(int typenr) |
7 | 8036 { |
8037 sign_T *sp; | |
8038 | |
8039 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8040 if (sp->sn_typenr == typenr) | |
8041 return sp->sn_text; | |
8042 return NULL; | |
8043 } | |
8044 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8045 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
7 | 8046 void * |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8047 sign_get_image( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8048 int typenr) /* the attribute which may have a sign */ |
7 | 8049 { |
8050 sign_T *sp; | |
8051 | |
8052 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8053 if (sp->sn_typenr == typenr) | |
8054 return sp->sn_image; | |
8055 return NULL; | |
8056 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8057 # endif |
7 | 8058 |
8059 /* | |
8060 * Get the name of a sign by its typenr. | |
8061 */ | |
8062 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8063 sign_typenr2name(int typenr) |
7 | 8064 { |
8065 sign_T *sp; | |
8066 | |
8067 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8068 if (sp->sn_typenr == typenr) | |
8069 return sp->sn_name; | |
8070 return (char_u *)_("[Deleted]"); | |
8071 } | |
8072 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8073 # if defined(EXITFREE) || defined(PROTO) |
1828 | 8074 /* |
8075 * Undefine/free all signs. | |
8076 */ | |
8077 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8078 free_signs(void) |
1828 | 8079 { |
8080 while (first_sign != NULL) | |
8081 sign_undefine(first_sign, NULL); | |
8082 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8083 # endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8084 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8085 # if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
1868 | 8086 static enum |
8087 { | |
8088 EXP_SUBCMD, /* expand :sign sub-commands */ | |
8089 EXP_DEFINE, /* expand :sign define {name} args */ | |
8090 EXP_PLACE, /* expand :sign place {id} args */ | |
8091 EXP_UNPLACE, /* expand :sign unplace" */ | |
8092 EXP_SIGN_NAMES /* expand with name of placed signs */ | |
8093 } expand_what; | |
8094 | |
8095 /* | |
8096 * Function given to ExpandGeneric() to obtain the sign command | |
8097 * expansion. | |
8098 */ | |
8099 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8100 get_sign_name(expand_T *xp UNUSED, int idx) |
1868 | 8101 { |
8102 sign_T *sp; | |
8103 int current_idx; | |
8104 | |
8105 switch (expand_what) | |
8106 { | |
8107 case EXP_SUBCMD: | |
8108 return (char_u *)cmds[idx]; | |
8109 case EXP_DEFINE: | |
8110 { | |
8111 char *define_arg[] = | |
8112 { | |
8113 "icon=", "linehl=", "text=", "texthl=", NULL | |
8114 }; | |
8115 return (char_u *)define_arg[idx]; | |
8116 } | |
8117 case EXP_PLACE: | |
8118 { | |
8119 char *place_arg[] = | |
8120 { | |
8121 "line=", "name=", "file=", "buffer=", NULL | |
8122 }; | |
8123 return (char_u *)place_arg[idx]; | |
8124 } | |
8125 case EXP_UNPLACE: | |
8126 { | |
8127 char *unplace_arg[] = { "file=", "buffer=", NULL }; | |
8128 return (char_u *)unplace_arg[idx]; | |
8129 } | |
8130 case EXP_SIGN_NAMES: | |
8131 /* Complete with name of signs already defined */ | |
8132 current_idx = 0; | |
8133 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8134 if (current_idx++ == idx) | |
8135 return sp->sn_name; | |
8136 return NULL; | |
8137 default: | |
8138 return NULL; | |
8139 } | |
8140 } | |
8141 | |
8142 /* | |
8143 * Handle command line completion for :sign command. | |
8144 */ | |
8145 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8146 set_context_in_sign_cmd(expand_T *xp, char_u *arg) |
1868 | 8147 { |
8148 char_u *p; | |
8149 char_u *end_subcmd; | |
8150 char_u *last; | |
8151 int cmd_idx; | |
8152 char_u *begin_subcmd_args; | |
8153 | |
8154 /* Default: expand subcommands. */ | |
8155 xp->xp_context = EXPAND_SIGN; | |
8156 expand_what = EXP_SUBCMD; | |
8157 xp->xp_pattern = arg; | |
8158 | |
8159 end_subcmd = skiptowhite(arg); | |
8160 if (*end_subcmd == NUL) | |
8161 /* expand subcmd name | |
8162 * :sign {subcmd}<CTRL-D>*/ | |
8163 return; | |
8164 | |
8165 cmd_idx = sign_cmd_idx(arg, end_subcmd); | |
8166 | |
8167 /* :sign {subcmd} {subcmd_args} | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8168 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8169 * begin_subcmd_args */ |
1868 | 8170 begin_subcmd_args = skipwhite(end_subcmd); |
8171 p = skiptowhite(begin_subcmd_args); | |
8172 if (*p == NUL) | |
8173 { | |
8174 /* | |
8175 * Expand first argument of subcmd when possible. | |
8176 * For ":jump {id}" and ":unplace {id}", we could | |
8177 * possibly expand the ids of all signs already placed. | |
8178 */ | |
8179 xp->xp_pattern = begin_subcmd_args; | |
8180 switch (cmd_idx) | |
8181 { | |
8182 case SIGNCMD_LIST: | |
8183 case SIGNCMD_UNDEFINE: | |
8184 /* :sign list <CTRL-D> | |
8185 * :sign undefine <CTRL-D> */ | |
8186 expand_what = EXP_SIGN_NAMES; | |
8187 break; | |
8188 default: | |
8189 xp->xp_context = EXPAND_NOTHING; | |
8190 } | |
8191 return; | |
8192 } | |
8193 | |
8194 /* expand last argument of subcmd */ | |
8195 | |
8196 /* :sign define {name} {args}... | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8197 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8198 * p */ |
1868 | 8199 |
8200 /* Loop until reaching last argument. */ | |
8201 do | |
8202 { | |
8203 p = skipwhite(p); | |
8204 last = p; | |
8205 p = skiptowhite(p); | |
8206 } while (*p != NUL); | |
8207 | |
8208 p = vim_strchr(last, '='); | |
8209 | |
8210 /* :sign define {name} {args}... {last}= | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8211 * | | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8212 * last p */ |
10299
7b2f95633e28
commit https://github.com/vim/vim/commit/7756e7465d627ff9cd01e59625484a8c302ef853
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
8213 if (p == NULL) |
1868 | 8214 { |
8215 /* Expand last argument name (before equal sign). */ | |
8216 xp->xp_pattern = last; | |
8217 switch (cmd_idx) | |
8218 { | |
8219 case SIGNCMD_DEFINE: | |
8220 expand_what = EXP_DEFINE; | |
8221 break; | |
8222 case SIGNCMD_PLACE: | |
8223 expand_what = EXP_PLACE; | |
8224 break; | |
8225 case SIGNCMD_JUMP: | |
8226 case SIGNCMD_UNPLACE: | |
8227 expand_what = EXP_UNPLACE; | |
8228 break; | |
8229 default: | |
8230 xp->xp_context = EXPAND_NOTHING; | |
8231 } | |
8232 } | |
8233 else | |
8234 { | |
8235 /* Expand last argument value (after equal sign). */ | |
8236 xp->xp_pattern = p + 1; | |
8237 switch (cmd_idx) | |
8238 { | |
8239 case SIGNCMD_DEFINE: | |
8240 if (STRNCMP(last, "texthl", p - last) == 0 || | |
8241 STRNCMP(last, "linehl", p - last) == 0) | |
8242 xp->xp_context = EXPAND_HIGHLIGHT; | |
8243 else if (STRNCMP(last, "icon", p - last) == 0) | |
8244 xp->xp_context = EXPAND_FILES; | |
8245 else | |
8246 xp->xp_context = EXPAND_NOTHING; | |
8247 break; | |
8248 case SIGNCMD_PLACE: | |
8249 if (STRNCMP(last, "name", p - last) == 0) | |
8250 expand_what = EXP_SIGN_NAMES; | |
8251 else | |
8252 xp->xp_context = EXPAND_NOTHING; | |
8253 break; | |
8254 default: | |
8255 xp->xp_context = EXPAND_NOTHING; | |
8256 } | |
8257 } | |
8258 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8259 # endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8260 #endif |
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 /* |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8263 * Make the user happy. |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8264 */ |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8265 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8266 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
|
8267 { |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8268 static char *code[] = { |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8269 "\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
|
8270 "\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
|
8271 }; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8272 char *p; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8273 int n; |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8274 int i; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8275 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8276 msg_start(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8277 msg_putchar('\n'); |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8278 for (i = 0; i < 2; ++i) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8279 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
|
8280 if (*p == 'x') |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8281 msg_putchar('\n'); |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8282 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8283 for (n = *p++; n > 0; --n) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8284 if (*p == 'o' || *p == '$') |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8285 msg_putchar_attr(*p, hl_attr(HLF_L)); |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8286 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8287 msg_putchar(*p); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8288 msg_clr_eos(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8289 } |
7 | 8290 |
8291 #if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO) | |
8292 /* | |
8293 * ":drop" | |
8294 * Opens the first argument in a window. When there are two or more arguments | |
8295 * the argument list is redefined. | |
8296 */ | |
8297 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8298 ex_drop(exarg_T *eap) |
7 | 8299 { |
8300 int split = FALSE; | |
8301 win_T *wp; | |
8302 buf_T *buf; | |
735 | 8303 # ifdef FEAT_WINDOWS |
8304 tabpage_T *tp; | |
8305 # endif | |
7 | 8306 |
8307 /* | |
8308 * Check if the first argument is already being edited in a window. If | |
8309 * so, jump to that window. | |
8310 * We would actually need to check all arguments, but that's complicated | |
8311 * and mostly only one file is dropped. | |
8312 * This also ignores wildcards, since it is very unlikely the user is | |
8313 * editing a file name with a wildcard character. | |
8314 */ | |
735 | 8315 set_arglist(eap->arg); |
8316 | |
1067 | 8317 /* |
8318 * Expanding wildcards may result in an empty argument list. E.g. when | |
8319 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we | |
8320 * already did an error message for this. | |
8321 */ | |
8322 if (ARGCOUNT == 0) | |
8323 return; | |
8324 | |
7 | 8325 # ifdef FEAT_WINDOWS |
735 | 8326 if (cmdmod.tab) |
8327 { | |
8328 /* ":tab drop file ...": open a tab for each argument that isn't | |
8329 * edited in a window yet. It's like ":tab all" but without closing | |
8330 * windows or tabs. */ | |
8331 ex_all(eap); | |
8332 } | |
8333 else | |
7 | 8334 # endif |
735 | 8335 { |
8336 /* ":drop file ...": Edit the first argument. Jump to an existing | |
8337 * window if possible, edit in current window if the current buffer | |
8338 * can be abandoned, otherwise open a new window. */ | |
8339 buf = buflist_findnr(ARGLIST[0].ae_fnum); | |
8340 | |
8341 FOR_ALL_TAB_WINDOWS(tp, wp) | |
8342 { | |
8343 if (wp->w_buffer == buf) | |
7 | 8344 { |
735 | 8345 # ifdef FEAT_WINDOWS |
825 | 8346 goto_tabpage_win(tp, wp); |
735 | 8347 # endif |
7 | 8348 curwin->w_arg_idx = 0; |
8349 return; | |
8350 } | |
8351 } | |
735 | 8352 |
8353 /* | |
8354 * Check whether the current buffer is changed. If so, we will need | |
8355 * to split the current window or data could be lost. | |
8356 * Skip the check if the 'hidden' option is set, as in this case the | |
8357 * buffer won't be lost. | |
8358 */ | |
8359 if (!P_HID(curbuf)) | |
8360 { | |
7 | 8361 # ifdef FEAT_WINDOWS |
735 | 8362 ++emsg_off; |
7 | 8363 # endif |
5464 | 8364 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD); |
7 | 8365 # ifdef FEAT_WINDOWS |
735 | 8366 --emsg_off; |
7 | 8367 # else |
735 | 8368 if (split) |
8369 return; | |
7 | 8370 # endif |
735 | 8371 } |
8372 | |
8373 /* Fake a ":sfirst" or ":first" command edit the first argument. */ | |
8374 if (split) | |
8375 { | |
8376 eap->cmdidx = CMD_sfirst; | |
8377 eap->cmd[0] = 's'; | |
8378 } | |
8379 else | |
8380 eap->cmdidx = CMD_first; | |
8381 ex_rewind(eap); | |
8382 } | |
7 | 8383 } |
8384 #endif | |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8385 |
9931
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8386 /* |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8387 * 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
|
8388 * 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
|
8389 * 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
|
8390 * 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
|
8391 * 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
|
8392 */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8393 char_u * |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8394 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
|
8395 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8396 int c; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8397 |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8398 if (vim_isIDc(*p)) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8399 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8400 /* ":vimgrep pattern fname" */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8401 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8402 *s = p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8403 p = skiptowhite(p); |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8404 if (s != NULL && *p != NUL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8405 *p++ = NUL; |
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 else |
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 /* ":vimgrep /pattern/[g][j] fname" */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8410 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8411 *s = p + 1; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8412 c = *p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8413 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
|
8414 if (*p != c) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8415 return NULL; |
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 /* Truncate the pattern. */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8418 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8419 *p = NUL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8420 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8421 |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8422 /* Find the flags */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8423 while (*p == 'g' || *p == 'j') |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8424 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8425 if (flags != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8426 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8427 if (*p == 'g') |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8428 *flags |= VGR_GLOBAL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8429 else |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8430 *flags |= VGR_NOJUMP; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8431 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8432 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8433 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8434 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8435 return p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8436 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8437 |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8438 #if defined(FEAT_EVAL) || defined(PROTO) |
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 * 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
|
8441 */ |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8442 void |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8443 ex_oldfiles(exarg_T *eap UNUSED) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8444 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8445 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
|
8446 listitem_T *li; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8447 int nr = 0; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8448 char_u *fname; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8449 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8450 if (l == NULL) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8451 msg((char_u *)_("No old files")); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8452 else |
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 msg_start(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8455 msg_scroll = TRUE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8456 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
|
8457 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8458 ++nr; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8459 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
|
8460 if (!message_filtered(fname)) |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8461 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8462 msg_outnum((long)nr); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8463 MSG_PUTS(": "); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8464 msg_outtrans(fname); |
10021
5fc4bec66c33
commit https://github.com/vim/vim/commit/885c00eabe6d1fd757d4f0eb531ad3a15a35ec04
Christian Brabandt <cb@256bit.org>
parents:
9980
diff
changeset
|
8465 msg_clr_eos(); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8466 msg_putchar('\n'); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8467 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
|
8468 ui_breakcheck(); |
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 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8471 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8472 /* 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
|
8473 got_int = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8474 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8475 # ifdef FEAT_BROWSE_CMD |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8476 if (cmdmod.browse) |
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 quit_more = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8479 nr = prompt_for_number(FALSE); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8480 msg_starthere(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8481 if (nr > 0) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8482 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8483 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
|
8484 (long)nr); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8485 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8486 if (p != NULL) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8487 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8488 p = expand_env_save(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8489 eap->arg = p; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8490 eap->cmdidx = CMD_edit; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8491 cmdmod.browse = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8492 do_exedit(eap, NULL); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8493 vim_free(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8494 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8495 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8496 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8497 # endif |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8498 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8499 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8500 #endif |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8501 |