Mercurial > vim
annotate src/ex_cmds.c @ 11378:2ed7a34ecc54 v8.0.0574
patch 8.0.0574: get only one quickfix list after :caddbuf
commit https://github.com/vim/vim/commit/99895eac1cf71be43ece7e14b50e206e041fbe9f
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Apr 20 22:44:47 2017 +0200
patch 8.0.0574: get only one quickfix list after :caddbuf
Problem: Get only one quickfix list after :caddbuf.
Solution: Reset qf_multiline. (Yegappan Lakshmanan)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 20 Apr 2017 22:45:04 +0200 |
parents | 1074f58e1673 |
children | c45fb081391c |
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); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
259 last > first && VIM_ISWHITE(last[-1]); --last) |
7 | 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 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
403 if (VIM_ISWHITE(*p)) |
284 | 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 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
686 if (VIM_ISWHITE(ptr[col])) |
7 | 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 |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
802 win_T *win; |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
803 tabpage_T *tp; |
6755 | 804 #endif |
7 | 805 |
806 if (dest >= line1 && dest < line2) | |
807 { | |
808 EMSG(_("E134: Move lines into themselves")); | |
809 return FAIL; | |
810 } | |
811 | |
812 num_lines = line2 - line1 + 1; | |
813 | |
814 /* | |
815 * First we copy the old text to its new location -- webb | |
816 * Also copy the flag that ":global" command uses. | |
817 */ | |
818 if (u_save(dest, dest + 1) == FAIL) | |
819 return FAIL; | |
820 for (extra = 0, l = line1; l <= line2; l++) | |
821 { | |
822 str = vim_strsave(ml_get(l + extra)); | |
823 if (str != NULL) | |
824 { | |
825 ml_append(dest + l - line1, str, (colnr_T)0, FALSE); | |
826 vim_free(str); | |
827 if (dest < line1) | |
828 extra++; | |
829 } | |
830 } | |
831 | |
832 /* | |
833 * Now we must be careful adjusting our marks so that we don't overlap our | |
834 * mark_adjust() calls. | |
835 * | |
836 * We adjust the marks within the old text so that they refer to the | |
837 * last lines of the file (temporarily), because we know no other marks | |
838 * will be set there since these line numbers did not exist until we added | |
839 * our new lines. | |
840 * | |
841 * Then we adjust the marks on lines between the old and new text positions | |
842 * (either forwards or backwards). | |
843 * | |
844 * And Finally we adjust the marks we put at the end of the file back to | |
845 * their final destination at the new text position -- webb | |
846 */ | |
847 last_line = curbuf->b_ml.ml_line_count; | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
848 mark_adjust_nofold(line1, line2, last_line - line2, 0L); |
7 | 849 if (dest >= line2) |
850 { | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
851 mark_adjust_nofold(line2 + 1, dest, -num_lines, 0L); |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
852 #ifdef FEAT_FOLDING |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
853 FOR_ALL_TAB_WINDOWS(tp, win) { |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
854 if (win->w_buffer == curbuf) |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
855 foldMoveRange(&win->w_folds, line1, line2, dest); |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
856 } |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
857 #endif |
7 | 858 curbuf->b_op_start.lnum = dest - num_lines + 1; |
859 curbuf->b_op_end.lnum = dest; | |
860 } | |
861 else | |
862 { | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
863 mark_adjust_nofold(dest + 1, line1 - 1, num_lines, 0L); |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
864 #ifdef FEAT_FOLDING |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
865 FOR_ALL_TAB_WINDOWS(tp, win) { |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
866 if (win->w_buffer == curbuf) |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
867 foldMoveRange(&win->w_folds, dest + 1, line1 - 1, line2); |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
868 } |
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
869 #endif |
7 | 870 curbuf->b_op_start.lnum = dest + 1; |
871 curbuf->b_op_end.lnum = dest + num_lines; | |
872 } | |
873 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
11140
6b26e044b6f5
patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
874 mark_adjust_nofold(last_line - num_lines + 1, last_line, |
7 | 875 -(last_line - dest - extra), 0L); |
876 | |
877 /* | |
878 * Now we delete the original text -- webb | |
879 */ | |
880 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL) | |
881 return FAIL; | |
882 | |
883 for (l = line1; l <= line2; l++) | |
884 ml_delete(line1 + extra, TRUE); | |
885 | |
886 if (!global_busy && num_lines > p_report) | |
887 { | |
888 if (num_lines == 1) | |
889 MSG(_("1 line moved")); | |
890 else | |
891 smsg((char_u *)_("%ld lines moved"), num_lines); | |
892 } | |
893 | |
894 /* | |
895 * Leave the cursor on the last of the moved lines. | |
896 */ | |
897 if (dest >= line1) | |
898 curwin->w_cursor.lnum = dest; | |
899 else | |
900 curwin->w_cursor.lnum = dest + (line2 - line1) + 1; | |
901 | |
902 if (line1 < dest) | |
3184 | 903 { |
904 dest += num_lines + 1; | |
905 last_line = curbuf->b_ml.ml_line_count; | |
906 if (dest > last_line + 1) | |
907 dest = last_line + 1; | |
908 changed_lines(line1, 0, dest, 0L); | |
909 } | |
7 | 910 else |
911 changed_lines(dest + 1, 0, line1 + num_lines, 0L); | |
912 | |
913 return OK; | |
914 } | |
915 | |
916 /* | |
917 * ":copy" | |
918 */ | |
919 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
920 ex_copy(linenr_T line1, linenr_T line2, linenr_T n) |
7 | 921 { |
922 linenr_T count; | |
923 char_u *p; | |
924 | |
925 count = line2 - line1 + 1; | |
926 curbuf->b_op_start.lnum = n + 1; | |
927 curbuf->b_op_end.lnum = n + count; | |
928 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
929 | |
930 /* | |
931 * there are three situations: | |
932 * 1. destination is above line1 | |
933 * 2. destination is between line1 and line2 | |
934 * 3. destination is below line2 | |
935 * | |
936 * n = destination (when starting) | |
937 * curwin->w_cursor.lnum = destination (while copying) | |
938 * line1 = start of source (while copying) | |
939 * line2 = end of source (while copying) | |
940 */ | |
941 if (u_save(n, n + 1) == FAIL) | |
942 return; | |
943 | |
944 curwin->w_cursor.lnum = n; | |
945 while (line1 <= line2) | |
946 { | |
947 /* need to use vim_strsave() because the line will be unlocked within | |
948 * ml_append() */ | |
949 p = vim_strsave(ml_get(line1)); | |
950 if (p != NULL) | |
951 { | |
952 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE); | |
953 vim_free(p); | |
954 } | |
955 /* situation 2: skip already copied lines */ | |
956 if (line1 == n) | |
957 line1 = curwin->w_cursor.lnum; | |
958 ++line1; | |
959 if (curwin->w_cursor.lnum < line1) | |
960 ++line1; | |
961 if (curwin->w_cursor.lnum < line2) | |
962 ++line2; | |
963 ++curwin->w_cursor.lnum; | |
964 } | |
965 | |
966 appended_lines_mark(n, count); | |
967 | |
968 msgmore((long)count); | |
969 } | |
970 | |
359 | 971 static char_u *prevcmd = NULL; /* the previous command */ |
972 | |
973 #if defined(EXITFREE) || defined(PROTO) | |
974 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
975 free_prev_shellcmd(void) |
359 | 976 { |
977 vim_free(prevcmd); | |
978 } | |
979 #endif | |
980 | |
7 | 981 /* |
982 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd" | |
983 * Bangs in the argument are replaced with the previously entered command. | |
984 * Remember the argument. | |
985 */ | |
986 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
987 do_bang( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
988 int addr_count, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
989 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
990 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
991 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
992 int do_out) |
7 | 993 { |
994 char_u *arg = eap->arg; /* command */ | |
995 linenr_T line1 = eap->line1; /* start of range */ | |
996 linenr_T line2 = eap->line2; /* end of range */ | |
997 char_u *newcmd = NULL; /* the new command */ | |
998 int free_newcmd = FALSE; /* need to free() newcmd */ | |
999 int ins_prevcmd; | |
1000 char_u *t; | |
1001 char_u *p; | |
1002 char_u *trailarg; | |
1003 int len; | |
1004 int scroll_save = msg_scroll; | |
1005 | |
1006 /* | |
1007 * Disallow shell commands for "rvim". | |
1008 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1009 * security reasons. | |
1010 */ | |
1011 if (check_restricted() || check_secure()) | |
1012 return; | |
1013 | |
1014 if (addr_count == 0) /* :! */ | |
1015 { | |
1016 msg_scroll = FALSE; /* don't scroll here */ | |
1017 autowrite_all(); | |
1018 msg_scroll = scroll_save; | |
1019 } | |
1020 | |
1021 /* | |
1022 * Try to find an embedded bang, like in :!<cmd> ! [args] | |
1023 * (:!! is indicated by the 'forceit' variable) | |
1024 */ | |
1025 ins_prevcmd = forceit; | |
1026 trailarg = arg; | |
1027 do | |
1028 { | |
1029 len = (int)STRLEN(trailarg) + 1; | |
1030 if (newcmd != NULL) | |
1031 len += (int)STRLEN(newcmd); | |
1032 if (ins_prevcmd) | |
1033 { | |
1034 if (prevcmd == NULL) | |
1035 { | |
1036 EMSG(_(e_noprev)); | |
1037 vim_free(newcmd); | |
1038 return; | |
1039 } | |
1040 len += (int)STRLEN(prevcmd); | |
1041 } | |
1872 | 1042 if ((t = alloc((unsigned)len)) == NULL) |
7 | 1043 { |
1044 vim_free(newcmd); | |
1045 return; | |
1046 } | |
1047 *t = NUL; | |
1048 if (newcmd != NULL) | |
1049 STRCAT(t, newcmd); | |
1050 if (ins_prevcmd) | |
1051 STRCAT(t, prevcmd); | |
1052 p = t + STRLEN(t); | |
1053 STRCAT(t, trailarg); | |
1054 vim_free(newcmd); | |
1055 newcmd = t; | |
1056 | |
1057 /* | |
1058 * Scan the rest of the argument for '!', which is replaced by the | |
1059 * previous command. "\!" is replaced by "!" (this is vi compatible). | |
1060 */ | |
1061 trailarg = NULL; | |
1062 while (*p) | |
1063 { | |
2823 | 1064 if (*p == '!') |
7 | 1065 { |
1066 if (p > newcmd && p[-1] == '\\') | |
1624 | 1067 STRMOVE(p - 1, p); |
7 | 1068 else |
1069 { | |
1070 trailarg = p; | |
1071 *trailarg++ = NUL; | |
1072 ins_prevcmd = TRUE; | |
1073 break; | |
1074 } | |
1075 } | |
1076 ++p; | |
1077 } | |
1078 } while (trailarg != NULL); | |
1079 | |
1080 vim_free(prevcmd); | |
1081 prevcmd = newcmd; | |
1082 | |
1083 if (bangredo) /* put cmd in redo buffer for ! command */ | |
1084 { | |
5728 | 1085 /* If % or # appears in the command, it must have been escaped. |
1086 * Reescape them, so that redoing them does not substitute them by the | |
1087 * buffername. */ | |
1088 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#"); | |
1089 | |
1090 if (cmd != NULL) | |
1091 { | |
1092 AppendToRedobuffLit(cmd, -1); | |
1093 vim_free(cmd); | |
1094 } | |
1095 else | |
1096 AppendToRedobuffLit(prevcmd, -1); | |
7 | 1097 AppendToRedobuff((char_u *)"\n"); |
1098 bangredo = FALSE; | |
1099 } | |
1100 /* | |
1101 * Add quotes around the command, for shells that need them. | |
1102 */ | |
1103 if (*p_shq != NUL) | |
1104 { | |
1105 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1)); | |
1106 if (newcmd == NULL) | |
1107 return; | |
1108 STRCPY(newcmd, p_shq); | |
1109 STRCAT(newcmd, prevcmd); | |
1110 STRCAT(newcmd, p_shq); | |
1111 free_newcmd = TRUE; | |
1112 } | |
1113 if (addr_count == 0) /* :! */ | |
1114 { | |
1115 /* echo the command */ | |
1116 msg_start(); | |
1117 msg_putchar(':'); | |
1118 msg_putchar('!'); | |
1119 msg_outtrans(newcmd); | |
1120 msg_clr_eos(); | |
1121 windgoto(msg_row, msg_col); | |
1122 | |
1123 do_shell(newcmd, 0); | |
1124 } | |
1125 else /* :range! */ | |
725 | 1126 { |
7 | 1127 /* Careful: This may recursively call do_bang() again! (because of |
1128 * autocommands) */ | |
1129 do_filter(line1, line2, eap, newcmd, do_in, do_out); | |
725 | 1130 #ifdef FEAT_AUTOCMD |
1131 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf); | |
1132 #endif | |
1133 } | |
7 | 1134 if (free_newcmd) |
1135 vim_free(newcmd); | |
1136 } | |
1137 | |
1138 /* | |
1139 * do_filter: filter lines through a command given by the user | |
1140 * | |
169 | 1141 * We mostly use temp files and the call_shell() routine here. This would |
1142 * normally be done using pipes on a UNIX machine, but this is more portable | |
1143 * to non-unix machines. The call_shell() routine needs to be able | |
7 | 1144 * to deal with redirection somehow, and should handle things like looking |
1145 * at the PATH env. variable, and adding reasonable extensions to the | |
1146 * command name given by the user. All reasonable versions of call_shell() | |
1147 * do this. | |
169 | 1148 * Alternatively, if on Unix and redirecting input or output, but not both, |
1149 * and the 'shelltemp' option isn't set, use pipes. | |
7 | 1150 * We use input redirection if do_in is TRUE. |
1151 * We use output redirection if do_out is TRUE. | |
1152 */ | |
1153 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1154 do_filter( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1155 linenr_T line1, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1156 linenr_T line2, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1157 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
|
1158 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1159 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1160 int do_out) |
7 | 1161 { |
1162 char_u *itmp = NULL; | |
1163 char_u *otmp = NULL; | |
1164 linenr_T linecount; | |
1165 linenr_T read_linecount; | |
1166 pos_T cursor_save; | |
1167 char_u *cmd_buf; | |
1168 #ifdef FEAT_AUTOCMD | |
1169 buf_T *old_curbuf = curbuf; | |
1170 #endif | |
169 | 1171 int shell_flags = 0; |
7 | 1172 |
1173 if (*cmd == NUL) /* no filter command */ | |
1174 return; | |
1175 | |
1176 cursor_save = curwin->w_cursor; | |
1177 linecount = line2 - line1 + 1; | |
1178 curwin->w_cursor.lnum = line1; | |
1179 curwin->w_cursor.col = 0; | |
1180 changed_line_abv_curs(); | |
1181 invalidate_botline(); | |
1182 | |
1183 /* | |
169 | 1184 * When using temp files: |
1185 * 1. * Form temp file names | |
1186 * 2. * Write the lines to a temp file | |
1187 * 3. Run the filter command on the temp file | |
1188 * 4. * Read the output of the command into the buffer | |
1189 * 5. * Delete the original lines to be filtered | |
1190 * 6. * Remove the temp files | |
1191 * | |
1192 * When writing the input with a pipe or when catching the output with a | |
1193 * pipe only need to do 3. | |
7 | 1194 */ |
1195 | |
169 | 1196 if (do_out) |
1197 shell_flags |= SHELL_DOOUT; | |
1198 | |
3482 | 1199 #ifdef FEAT_FILTERPIPE |
169 | 1200 if (!do_in && do_out && !p_stmp) |
1201 { | |
1202 /* Use a pipe to fetch stdout of the command, do not use a temp file. */ | |
1203 shell_flags |= SHELL_READ; | |
1204 curwin->w_cursor.lnum = line2; | |
1205 } | |
1206 else if (do_in && !do_out && !p_stmp) | |
7 | 1207 { |
169 | 1208 /* Use a pipe to write stdin of the command, do not use a temp file. */ |
1209 shell_flags |= SHELL_WRITE; | |
1210 curbuf->b_op_start.lnum = line1; | |
1211 curbuf->b_op_end.lnum = line2; | |
7 | 1212 } |
169 | 1213 else if (do_in && do_out && !p_stmp) |
1214 { | |
1215 /* Use a pipe to write stdin and fetch stdout of the command, do not | |
1216 * use a temp file. */ | |
1217 shell_flags |= SHELL_READ|SHELL_WRITE; | |
1218 curbuf->b_op_start.lnum = line1; | |
1219 curbuf->b_op_end.lnum = line2; | |
1220 curwin->w_cursor.lnum = line2; | |
1221 } | |
1222 else | |
1223 #endif | |
6721 | 1224 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL) |
1225 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL)) | |
169 | 1226 { |
1227 EMSG(_(e_notmp)); | |
1228 goto filterend; | |
1229 } | |
7 | 1230 |
1231 /* | |
1232 * The writing and reading of temp files will not be shown. | |
1233 * Vi also doesn't do this and the messages are not very informative. | |
1234 */ | |
1235 ++no_wait_return; /* don't call wait_return() while busy */ | |
169 | 1236 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap, |
7 | 1237 FALSE, FALSE, FALSE, TRUE) == FAIL) |
1238 { | |
1239 msg_putchar('\n'); /* keep message from buf_write() */ | |
1240 --no_wait_return; | |
1241 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
1242 if (!aborting()) | |
1243 #endif | |
1244 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */ | |
1245 goto filterend; | |
1246 } | |
1247 #ifdef FEAT_AUTOCMD | |
1248 if (curbuf != old_curbuf) | |
1249 goto filterend; | |
1250 #endif | |
1251 | |
1252 if (!do_out) | |
1253 msg_putchar('\n'); | |
1254 | |
1581 | 1255 /* Create the shell command in allocated memory. */ |
7 | 1256 cmd_buf = make_filter_cmd(cmd, itmp, otmp); |
1257 if (cmd_buf == NULL) | |
1258 goto filterend; | |
1259 | |
1260 windgoto((int)Rows - 1, 0); | |
1261 cursor_on(); | |
1262 | |
1263 /* | |
1264 * When not redirecting the output the command can write anything to the | |
1265 * screen. If 'shellredir' is equal to ">", screen may be messed up by | |
1266 * stderr output of external command. Clear the screen later. | |
1267 * If do_in is FALSE, this could be something like ":r !cat", which may | |
1268 * also mess up the screen, clear it later. | |
1269 */ | |
1270 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in) | |
1271 redraw_later_clear(); | |
1272 | |
169 | 1273 if (do_out) |
1274 { | |
1275 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL) | |
1581 | 1276 { |
1277 vim_free(cmd_buf); | |
169 | 1278 goto error; |
1581 | 1279 } |
169 | 1280 redraw_curbuf_later(VALID); |
1281 } | |
1282 read_linecount = curbuf->b_ml.ml_line_count; | |
1283 | |
7 | 1284 /* |
1285 * When call_shell() fails wait_return() is called to give the user a | |
1286 * chance to read the error messages. Otherwise errors are ignored, so you | |
1287 * can see the error messages from the command that appear on stdout; use | |
1288 * 'u' to fix the text | |
1289 * Switch to cooked mode when not redirecting stdin, avoids that something | |
1290 * like ":r !cat" hangs. | |
1291 * Pass on the SHELL_DOOUT flag when the output is being redirected. | |
1292 */ | |
169 | 1293 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags)) |
7 | 1294 { |
1295 redraw_later_clear(); | |
1296 wait_return(FALSE); | |
1297 } | |
1298 vim_free(cmd_buf); | |
1299 | |
1300 did_check_timestamps = FALSE; | |
1301 need_check_timestamps = TRUE; | |
1302 | |
1303 /* When interrupting the shell command, it may still have produced some | |
1304 * useful output. Reset got_int here, so that readfile() won't cancel | |
1305 * reading. */ | |
1306 ui_breakcheck(); | |
1307 got_int = FALSE; | |
1308 | |
1309 if (do_out) | |
1310 { | |
169 | 1311 if (otmp != NULL) |
7 | 1312 { |
169 | 1313 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
|
1314 eap, READ_FILTER) != OK) |
169 | 1315 { |
7 | 1316 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
169 | 1317 if (!aborting()) |
1318 #endif | |
1319 { | |
1320 msg_putchar('\n'); | |
1321 EMSG2(_(e_notread), otmp); | |
1322 } | |
1323 goto error; | |
7 | 1324 } |
169 | 1325 #ifdef FEAT_AUTOCMD |
1326 if (curbuf != old_curbuf) | |
1327 goto filterend; | |
1328 #endif | |
7 | 1329 } |
169 | 1330 |
1331 read_linecount = curbuf->b_ml.ml_line_count - read_linecount; | |
1332 | |
1333 if (shell_flags & SHELL_READ) | |
1334 { | |
1335 curbuf->b_op_start.lnum = line2 + 1; | |
1336 curbuf->b_op_end.lnum = curwin->w_cursor.lnum; | |
1337 appended_lines_mark(line2, read_linecount); | |
1338 } | |
7 | 1339 |
1340 if (do_in) | |
1341 { | |
1342 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL) | |
1343 { | |
1344 if (read_linecount >= linecount) | |
1345 /* move all marks from old lines to new lines */ | |
1346 mark_adjust(line1, line2, linecount, 0L); | |
1347 else | |
1348 { | |
1349 /* move marks from old lines to new lines, delete marks | |
1350 * that are in deleted lines */ | |
1351 mark_adjust(line1, line1 + read_linecount - 1, | |
1352 linecount, 0L); | |
1353 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); | |
1354 } | |
1355 } | |
1356 | |
1357 /* | |
1358 * Put cursor on first filtered line for ":range!cmd". | |
1359 * Adjust '[ and '] (set by buf_write()). | |
1360 */ | |
1361 curwin->w_cursor.lnum = line1; | |
1362 del_lines(linecount, TRUE); | |
1363 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */ | |
1364 curbuf->b_op_end.lnum -= linecount; /* adjust '] */ | |
1365 write_lnum_adjust(-linecount); /* adjust last line | |
1366 for next write */ | |
100 | 1367 #ifdef FEAT_FOLDING |
1368 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum); | |
1369 #endif | |
7 | 1370 } |
1371 else | |
1372 { | |
1373 /* | |
1374 * Put cursor on last new line for ":r !cmd". | |
1375 */ | |
169 | 1376 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1; |
7 | 1377 curwin->w_cursor.lnum = curbuf->b_op_end.lnum; |
1378 } | |
100 | 1379 |
7 | 1380 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */ |
1381 --no_wait_return; | |
1382 | |
1383 if (linecount > p_report) | |
1384 { | |
1385 if (do_in) | |
1386 { | |
274 | 1387 vim_snprintf((char *)msg_buf, sizeof(msg_buf), |
1388 _("%ld lines filtered"), (long)linecount); | |
7 | 1389 if (msg(msg_buf) && !msg_scroll) |
1390 /* save message to display it after redraw */ | |
680 | 1391 set_keep_msg(msg_buf, 0); |
7 | 1392 } |
1393 else | |
1394 msgmore((long)linecount); | |
1395 } | |
1396 } | |
1397 else | |
1398 { | |
1399 error: | |
1400 /* put cursor back in same position for ":w !cmd" */ | |
1401 curwin->w_cursor = cursor_save; | |
1402 --no_wait_return; | |
1403 wait_return(FALSE); | |
1404 } | |
1405 | |
1406 filterend: | |
1407 | |
1408 #ifdef FEAT_AUTOCMD | |
1409 if (curbuf != old_curbuf) | |
1410 { | |
1411 --no_wait_return; | |
1412 EMSG(_("E135: *Filter* Autocommands must not change current buffer")); | |
1413 } | |
1414 #endif | |
1415 if (itmp != NULL) | |
1416 mch_remove(itmp); | |
1417 if (otmp != NULL) | |
1418 mch_remove(otmp); | |
1419 vim_free(itmp); | |
1420 vim_free(otmp); | |
1421 } | |
1422 | |
1423 /* | |
1424 * Call a shell to execute a command. | |
1425 * When "cmd" is NULL start an interactive shell. | |
1426 */ | |
1427 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1428 do_shell( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1429 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1430 int flags) /* may be SHELL_DOOUT when output is redirected */ |
7 | 1431 { |
1432 buf_T *buf; | |
1433 #ifndef FEAT_GUI_MSWIN | |
1434 int save_nwr; | |
1435 #endif | |
1436 #ifdef MSWIN | |
1437 int winstart = FALSE; | |
1438 #endif | |
1439 | |
1440 /* | |
1441 * Disallow shell commands for "rvim". | |
1442 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1443 * security reasons. | |
1444 */ | |
1445 if (check_restricted() || check_secure()) | |
1446 { | |
1447 msg_end(); | |
1448 return; | |
1449 } | |
1450 | |
1451 #ifdef MSWIN | |
1452 /* | |
1453 * Check if ":!start" is used. | |
1454 */ | |
1455 if (cmd != NULL) | |
1456 winstart = (STRNICMP(cmd, "start ", 6) == 0); | |
1457 #endif | |
1458 | |
1459 /* | |
1460 * For autocommands we want to get the output on the current screen, to | |
1461 * avoid having to type return below. | |
1462 */ | |
1463 msg_putchar('\r'); /* put cursor at start of line */ | |
1464 #ifdef FEAT_AUTOCMD | |
1465 if (!autocmd_busy) | |
1466 #endif | |
1467 { | |
1468 #ifdef MSWIN | |
1469 if (!winstart) | |
1470 #endif | |
1471 stoptermcap(); | |
1472 } | |
1473 #ifdef MSWIN | |
1474 if (!winstart) | |
1475 #endif | |
1476 msg_putchar('\n'); /* may shift screen one line up */ | |
1477 | |
1478 /* warning message before calling the shell */ | |
1479 if (p_warn | |
1480 #ifdef FEAT_AUTOCMD | |
1481 && !autocmd_busy | |
1482 #endif | |
1483 && msg_silent == 0) | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1484 FOR_ALL_BUFFERS(buf) |
7 | 1485 if (bufIsChanged(buf)) |
1486 { | |
1487 #ifdef FEAT_GUI_MSWIN | |
1488 if (!winstart) | |
1489 starttermcap(); /* don't want a message box here */ | |
1490 #endif | |
1491 MSG_PUTS(_("[No write since last change]\n")); | |
1492 #ifdef FEAT_GUI_MSWIN | |
1493 if (!winstart) | |
1494 stoptermcap(); | |
1495 #endif | |
1496 break; | |
1497 } | |
1498 | |
1499 /* This windgoto is required for when the '\n' resulted in a "delete line | |
1500 * 1" command to the terminal. */ | |
1501 if (!swapping_screen()) | |
1502 windgoto(msg_row, msg_col); | |
1503 cursor_on(); | |
1504 (void)call_shell(cmd, SHELL_COOKED | flags); | |
1505 did_check_timestamps = FALSE; | |
1506 need_check_timestamps = TRUE; | |
1507 | |
1508 /* | |
1509 * put the message cursor at the end of the screen, avoids wait_return() | |
1510 * to overwrite the text that the external command showed | |
1511 */ | |
1512 if (!swapping_screen()) | |
1513 { | |
1514 msg_row = Rows - 1; | |
1515 msg_col = 0; | |
1516 } | |
1517 | |
1518 #ifdef FEAT_AUTOCMD | |
1519 if (autocmd_busy) | |
1520 { | |
1521 if (msg_silent == 0) | |
1522 redraw_later_clear(); | |
1523 } | |
1524 else | |
1525 #endif | |
1526 { | |
1527 /* | |
1528 * For ":sh" there is no need to call wait_return(), just redraw. | |
1529 * Also for the Win32 GUI (the output is in a console window). | |
1530 * Otherwise there is probably text on the screen that the user wants | |
1531 * to read before redrawing, so call wait_return(). | |
1532 */ | |
1533 #ifndef FEAT_GUI_MSWIN | |
1534 if (cmd == NULL | |
1535 # ifdef WIN3264 | |
1536 || (winstart && !need_wait_return) | |
1537 # endif | |
1538 ) | |
1539 { | |
1540 if (msg_silent == 0) | |
1541 redraw_later_clear(); | |
1542 need_wait_return = FALSE; | |
1543 } | |
1544 else | |
1545 { | |
1546 /* | |
1547 * If we switch screens when starttermcap() is called, we really | |
1548 * want to wait for "hit return to continue". | |
1549 */ | |
1550 save_nwr = no_wait_return; | |
1551 if (swapping_screen()) | |
1552 no_wait_return = FALSE; | |
1553 # ifdef AMIGA | |
1554 wait_return(term_console ? -1 : msg_silent == 0); /* see below */ | |
1555 # else | |
1556 wait_return(msg_silent == 0); | |
1557 # endif | |
1558 no_wait_return = save_nwr; | |
1559 } | |
1560 #endif /* FEAT_GUI_W32 */ | |
1561 | |
1562 #ifdef MSWIN | |
1563 if (!winstart) /* if winstart==TRUE, never stopped termcap! */ | |
1564 #endif | |
1565 starttermcap(); /* start termcap if not done by wait_return() */ | |
1566 | |
1567 /* | |
1568 * In an Amiga window redrawing is caused by asking the window size. | |
1569 * If we got an interrupt this will not work. The chance that the | |
1570 * window size is wrong is very small, but we need to redraw the | |
1571 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY | |
1572 * but it saves an extra redraw. | |
1573 */ | |
1574 #ifdef AMIGA | |
1575 if (skip_redraw) /* ':' hit in wait_return() */ | |
1576 { | |
1577 if (msg_silent == 0) | |
1578 redraw_later_clear(); | |
1579 } | |
1580 else if (term_console) | |
1581 { | |
1582 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */ | |
1583 if (got_int && msg_silent == 0) | |
1584 redraw_later_clear(); /* if got_int is TRUE, redraw needed */ | |
1585 else | |
1586 must_redraw = 0; /* no extra redraw needed */ | |
1587 } | |
1588 #endif | |
1589 } | |
1590 | |
1591 /* display any error messages now */ | |
1592 display_errors(); | |
725 | 1593 |
1594 #ifdef FEAT_AUTOCMD | |
1595 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf); | |
1596 #endif | |
7 | 1597 } |
1598 | |
1599 /* | |
1600 * Create a shell command from a command string, input redirection file and | |
1601 * output redirection file. | |
1602 * Returns an allocated string with the shell command, or NULL for failure. | |
1603 */ | |
1604 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1605 make_filter_cmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1606 char_u *cmd, /* command */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1607 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
|
1608 char_u *otmp) /* NULL or name of output file */ |
7 | 1609 { |
1610 char_u *buf; | |
1611 long_u len; | |
5867 | 1612 |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1613 #if defined(UNIX) |
5881 | 1614 int is_fish_shell; |
5911 | 1615 char_u *shell_name = get_isolated_shell_name(); |
5881 | 1616 |
5867 | 1617 /* Account for fish's different syntax for subshells */ |
5911 | 1618 is_fish_shell = (fnamecmp(shell_name, "fish") == 0); |
1619 vim_free(shell_name); | |
5867 | 1620 if (is_fish_shell) |
1621 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */ | |
1622 else | |
1623 #endif | |
1624 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */ | |
7 | 1625 if (itmp != NULL) |
1626 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */ | |
1627 if (otmp != NULL) | |
1628 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */ | |
1629 buf = lalloc(len, TRUE); | |
1630 if (buf == NULL) | |
1631 return NULL; | |
1632 | |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1633 #if defined(UNIX) |
7 | 1634 /* |
169 | 1635 * Put braces around the command (for concatenated commands) when |
1636 * redirecting input and/or output. | |
7 | 1637 */ |
169 | 1638 if (itmp != NULL || otmp != NULL) |
5867 | 1639 { |
1640 if (is_fish_shell) | |
1641 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd); | |
1642 else | |
1643 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); | |
1644 } | |
169 | 1645 else |
1646 STRCPY(buf, cmd); | |
7 | 1647 if (itmp != NULL) |
1648 { | |
1649 STRCAT(buf, " < "); | |
1650 STRCAT(buf, itmp); | |
1651 } | |
1652 #else | |
1653 /* | |
5867 | 1654 * For shells that don't understand braces around commands, at least allow |
7 | 1655 * the use of commands in a pipe. |
1656 */ | |
1657 STRCPY(buf, cmd); | |
1658 if (itmp != NULL) | |
1659 { | |
1660 char_u *p; | |
1661 | |
1662 /* | |
1663 * If there is a pipe, we have to put the '<' in front of it. | |
1664 * Don't do this when 'shellquote' is not empty, otherwise the | |
1665 * redirection would be inside the quotes. | |
1666 */ | |
1667 if (*p_shq == NUL) | |
1668 { | |
1669 p = vim_strchr(buf, '|'); | |
1670 if (p != NULL) | |
1671 *p = NUL; | |
1672 } | |
1673 STRCAT(buf, " <"); /* " < " causes problems on Amiga */ | |
1674 STRCAT(buf, itmp); | |
1675 if (*p_shq == NUL) | |
1676 { | |
1677 p = vim_strchr(cmd, '|'); | |
1678 if (p != NULL) | |
1679 { | |
1680 STRCAT(buf, " "); /* insert a space before the '|' for DOS */ | |
1681 STRCAT(buf, p); | |
1682 } | |
1683 } | |
1684 } | |
1685 #endif | |
1686 if (otmp != NULL) | |
1872 | 1687 append_redir(buf, (int)len, p_srr, otmp); |
7 | 1688 |
1689 return buf; | |
1690 } | |
1691 | |
1692 /* | |
1872 | 1693 * Append output redirection for file "fname" to the end of string buffer |
1694 * "buf[buflen]" | |
7 | 1695 * Works with the 'shellredir' and 'shellpipe' options. |
1696 * The caller should make sure that there is enough room: | |
1697 * STRLEN(opt) + STRLEN(fname) + 3 | |
1698 */ | |
1699 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1700 append_redir( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1701 char_u *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1702 int buflen, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1703 char_u *opt, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1704 char_u *fname) |
7 | 1705 { |
1706 char_u *p; | |
1872 | 1707 char_u *end; |
1708 | |
1709 end = buf + STRLEN(buf); | |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1710 /* find "%s" */ |
7 | 1711 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
|
1712 { |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1713 if (p[1] == 's') /* found %s */ |
7 | 1714 break; |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1715 if (p[1] == '%') /* skip %% */ |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1716 ++p; |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1717 } |
7 | 1718 if (p != NULL) |
1719 { | |
1872 | 1720 *end = ' '; /* not really needed? Not with sh, ksh or bash */ |
1721 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)), | |
1722 (char *)opt, (char *)fname); | |
7 | 1723 } |
1724 else | |
1872 | 1725 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
7 | 1726 #ifdef FEAT_QUICKFIX |
1727 " %s %s", | |
1728 #else | |
1729 " %s%s", /* " > %s" causes problems on Amiga */ | |
1730 #endif | |
1731 (char *)opt, (char *)fname); | |
1732 } | |
1733 | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1734 #if defined(FEAT_VIMINFO) || defined(PROTO) |
7 | 1735 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
1736 static int no_viminfo(void); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
1737 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
|
1738 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
|
1739 static void write_viminfo_barlines(vir_T *virp, FILE *fp_out); |
7 | 1740 static int viminfo_errcnt; |
1741 | |
1742 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1743 no_viminfo(void) |
7 | 1744 { |
1745 /* "vim -i NONE" does not read or write a viminfo file */ | |
1746 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0); | |
1747 } | |
1748 | |
1749 /* | |
1750 * Report an error for reading a viminfo file. | |
1751 * Count the number of errors. When there are more than 10, return TRUE. | |
1752 */ | |
1753 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1754 viminfo_error(char *errnum, char *message, char_u *line) |
7 | 1755 { |
274 | 1756 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "), |
1757 errnum, message); | |
1459 | 1758 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1); |
156 | 1759 if (IObuff[STRLEN(IObuff) - 1] == '\n') |
1760 IObuff[STRLEN(IObuff) - 1] = NUL; | |
7 | 1761 emsg(IObuff); |
1762 if (++viminfo_errcnt >= 10) | |
1763 { | |
1764 EMSG(_("E136: viminfo: Too many errors, skipping rest of file")); | |
1765 return TRUE; | |
1766 } | |
1767 return FALSE; | |
1768 } | |
1769 | |
1770 /* | |
1771 * read_viminfo() -- Read the viminfo file. Registers etc. which are already | |
1733 | 1772 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb |
7 | 1773 */ |
1774 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1775 read_viminfo( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1776 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
|
1777 int flags) /* VIF_WANT_INFO et al. */ |
7 | 1778 { |
1779 FILE *fp; | |
1780 char_u *fname; | |
1781 | |
1782 if (no_viminfo()) | |
1783 return FAIL; | |
1784 | |
1733 | 1785 fname = viminfo_filename(file); /* get file name in allocated buffer */ |
7 | 1786 if (fname == NULL) |
1787 return FAIL; | |
1788 fp = mch_fopen((char *)fname, READBIN); | |
1789 | |
1790 if (p_verbose > 0) | |
294 | 1791 { |
1792 verbose_enter(); | |
274 | 1793 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"), |
1794 fname, | |
1733 | 1795 (flags & VIF_WANT_INFO) ? _(" info") : "", |
1796 (flags & VIF_WANT_MARKS) ? _(" marks") : "", | |
1797 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "", | |
274 | 1798 fp == NULL ? _(" FAILED") : ""); |
294 | 1799 verbose_leave(); |
1800 } | |
7 | 1801 |
1802 vim_free(fname); | |
1803 if (fp == NULL) | |
1804 return FAIL; | |
1805 | |
1806 viminfo_errcnt = 0; | |
1733 | 1807 do_viminfo(fp, NULL, flags); |
7 | 1808 |
1809 fclose(fp); | |
1810 return OK; | |
1811 } | |
1812 | |
1813 /* | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1814 * 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
|
1815 * 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
|
1816 * run simultaneously, without losing any marks etc. |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1817 * 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
|
1818 * info is written to the file. |
7 | 1819 */ |
1820 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1821 write_viminfo(char_u *file, int forceit) |
7 | 1822 { |
1823 char_u *fname; | |
1824 FILE *fp_in = NULL; /* input viminfo file, if any */ | |
1825 FILE *fp_out = NULL; /* output viminfo file */ | |
1826 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
|
1827 stat_T st_new; /* mch_stat() of potential new file */ |
7 | 1828 char_u *wp; |
1829 #if defined(UNIX) || defined(VMS) | |
1830 mode_t umask_save; | |
1831 #endif | |
1832 #ifdef UNIX | |
1833 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
|
1834 stat_T st_old; /* mch_stat() of existing viminfo file */ |
7 | 1835 #endif |
601 | 1836 #ifdef WIN3264 |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
1837 int hidden = FALSE; |
601 | 1838 #endif |
7 | 1839 |
1840 if (no_viminfo()) | |
1841 return; | |
1842 | |
1843 fname = viminfo_filename(file); /* may set to default if NULL */ | |
1844 if (fname == NULL) | |
1845 return; | |
1846 | |
1847 fp_in = mch_fopen((char *)fname, READBIN); | |
1848 if (fp_in == NULL) | |
1849 { | |
1850 /* if it does exist, but we can't read it, don't try writing */ | |
1851 if (mch_stat((char *)fname, &st_new) == 0) | |
1852 goto end; | |
1853 #if defined(UNIX) || defined(VMS) | |
1854 /* | |
1855 * For Unix we create the .viminfo non-accessible for others, | |
1856 * because it may contain text from non-accessible documents. | |
1857 */ | |
1858 umask_save = umask(077); | |
1859 #endif | |
1860 fp_out = mch_fopen((char *)fname, WRITEBIN); | |
1861 #if defined(UNIX) || defined(VMS) | |
1862 (void)umask(umask_save); | |
1863 #endif | |
1864 } | |
1865 else | |
1866 { | |
1867 /* | |
1868 * There is an existing viminfo file. Create a temporary file to | |
1869 * write the new viminfo into, in the same directory as the | |
1870 * existing viminfo file, which will be renamed later. | |
1871 */ | |
1872 #ifdef UNIX | |
1873 /* | |
1874 * For Unix we check the owner of the file. It's not very nice to | |
1875 * overwrite a user's viminfo file after a "su root", with a | |
1876 * viminfo file that the user can't read. | |
1877 */ | |
1869 | 1878 st_old.st_dev = (dev_t)0; |
1438 | 1879 st_old.st_ino = 0; |
7 | 1880 st_old.st_mode = 0600; |
1076 | 1881 if (mch_stat((char *)fname, &st_old) == 0 |
1882 && getuid() != ROOT_UID | |
560 | 1883 && !(st_old.st_uid == getuid() |
7 | 1884 ? (st_old.st_mode & 0200) |
1885 : (st_old.st_gid == getgid() | |
1886 ? (st_old.st_mode & 0020) | |
1887 : (st_old.st_mode & 0002)))) | |
1888 { | |
944 | 1889 int tt = msg_didany; |
7 | 1890 |
1891 /* avoid a wait_return for this message, it's annoying */ | |
1892 EMSG2(_("E137: Viminfo file is not writable: %s"), fname); | |
1893 msg_didany = tt; | |
840 | 1894 fclose(fp_in); |
7 | 1895 goto end; |
1896 } | |
1897 #endif | |
601 | 1898 #ifdef WIN3264 |
1899 /* Get the file attributes of the existing viminfo file. */ | |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
1900 hidden = mch_ishidden(fname); |
601 | 1901 #endif |
7 | 1902 |
1903 /* | |
1904 * Make tempname. | |
1905 * May try twice: Once normal and once with shortname set, just in | |
1906 * case somebody puts his viminfo file in an 8.3 filesystem. | |
1907 */ | |
1908 for (;;) | |
1909 { | |
1910 tempname = buf_modname( | |
1911 #ifdef UNIX | |
1912 shortname, | |
1913 #else | |
1914 FALSE, | |
1915 #endif | |
1916 fname, | |
1917 #ifdef VMS | |
1918 (char_u *)"-tmp", | |
1919 #else | |
1920 (char_u *)".tmp", | |
1921 #endif | |
1922 FALSE); | |
1923 if (tempname == NULL) /* out of memory */ | |
1924 break; | |
1925 | |
1926 /* | |
1927 * Check if tempfile already exists. Never overwrite an | |
1928 * existing file! | |
1929 */ | |
1930 if (mch_stat((char *)tempname, &st_new) == 0) | |
1931 { | |
1932 #ifdef UNIX | |
1933 /* | |
1934 * Check if tempfile is same as original file. May happen | |
1935 * when modname() gave the same file back. E.g. silly | |
1936 * link, or file name-length reached. Try again with | |
1937 * shortname set. | |
1938 */ | |
560 | 1939 if (!shortname && st_new.st_dev == st_old.st_dev |
1940 && st_new.st_ino == st_old.st_ino) | |
7 | 1941 { |
1942 vim_free(tempname); | |
1943 tempname = NULL; | |
1944 shortname = TRUE; | |
1945 continue; | |
1946 } | |
1947 #endif | |
1948 /* | |
1949 * Try another name. Change one character, just before | |
1950 * the extension. This should also work for an 8.3 | |
1951 * file name, when after adding the extension it still is | |
1952 * the same file as the original. | |
1953 */ | |
1954 wp = tempname + STRLEN(tempname) - 5; | |
1955 if (wp < gettail(tempname)) /* empty file name? */ | |
1956 wp = gettail(tempname); | |
1957 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0; | |
1958 --*wp) | |
1959 { | |
1960 /* | |
1961 * They all exist? Must be something wrong! Don't | |
1962 * write the viminfo file then. | |
1963 */ | |
1964 if (*wp == 'a') | |
1965 { | |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
1966 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
|
1967 tempname); |
7 | 1968 vim_free(tempname); |
1969 tempname = NULL; | |
1970 break; | |
1971 } | |
1972 } | |
1973 } | |
1974 break; | |
1975 } | |
1976 | |
1977 if (tempname != NULL) | |
1978 { | |
762 | 1979 #ifdef VMS |
1980 /* fdopen() fails for some reason */ | |
770 | 1981 umask_save = umask(077); |
1982 fp_out = mch_fopen((char *)tempname, WRITEBIN); | |
1983 (void)umask(umask_save); | |
762 | 1984 #else |
557 | 1985 int fd; |
1986 | |
1987 /* Use mch_open() to be able to use O_NOFOLLOW and set file | |
601 | 1988 * protection: |
673 | 1989 * Unix: same as original file, but strip s-bit. Reset umask to |
1990 * avoid it getting in the way. | |
601 | 1991 * Others: r&w for user only. */ |
762 | 1992 # ifdef UNIX |
673 | 1993 umask_save = umask(0); |
557 | 1994 fd = mch_open((char *)tempname, |
1995 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, | |
569 | 1996 (int)((st_old.st_mode & 0777) | 0600)); |
673 | 1997 (void)umask(umask_save); |
762 | 1998 # else |
569 | 1999 fd = mch_open((char *)tempname, |
673 | 2000 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600); |
762 | 2001 # endif |
557 | 2002 if (fd < 0) |
2003 fp_out = NULL; | |
2004 else | |
2005 fp_out = fdopen(fd, WRITEBIN); | |
762 | 2006 #endif /* VMS */ |
7 | 2007 |
2008 /* | |
2009 * If we can't create in the same directory, try creating a | |
2010 * "normal" temp file. | |
2011 */ | |
2012 if (fp_out == NULL) | |
2013 { | |
2014 vim_free(tempname); | |
6721 | 2015 if ((tempname = vim_tempname('o', TRUE)) != NULL) |
7 | 2016 fp_out = mch_fopen((char *)tempname, WRITEBIN); |
2017 } | |
557 | 2018 |
2019 #if defined(UNIX) && defined(HAVE_FCHOWN) | |
7 | 2020 /* |
557 | 2021 * Make sure the owner can read/write it. This only works for |
2022 * root. | |
7 | 2023 */ |
2024 if (fp_out != NULL) | |
1757 | 2025 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid); |
7 | 2026 #endif |
2027 } | |
2028 } | |
2029 | |
2030 /* | |
2031 * Check if the new viminfo file can be written to. | |
2032 */ | |
2033 if (fp_out == NULL) | |
2034 { | |
2035 EMSG2(_("E138: Can't write viminfo file %s!"), | |
301 | 2036 (fp_in == NULL || tempname == NULL) ? fname : tempname); |
7 | 2037 if (fp_in != NULL) |
2038 fclose(fp_in); | |
2039 goto end; | |
2040 } | |
2041 | |
2042 if (p_verbose > 0) | |
294 | 2043 { |
2044 verbose_enter(); | |
274 | 2045 smsg((char_u *)_("Writing viminfo file \"%s\""), fname); |
294 | 2046 verbose_leave(); |
2047 } | |
7 | 2048 |
2049 viminfo_errcnt = 0; | |
1733 | 2050 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS)); |
7 | 2051 |
8573
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2052 if (fclose(fp_out) == EOF) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2053 ++viminfo_errcnt; |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2054 |
7 | 2055 if (fp_in != NULL) |
2056 { | |
2057 fclose(fp_in); | |
601 | 2058 |
6049 | 2059 /* In case of an error keep the original viminfo file. Otherwise |
2060 * 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
|
2061 if (viminfo_errcnt == 0) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2062 { |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2063 if (vim_rename(tempname, fname) == -1) |
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 ++viminfo_errcnt; |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2066 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
|
2067 } |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2068 # ifdef WIN3264 |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2069 /* 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
|
2070 else if (hidden) |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2071 mch_hide(fname); |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
2072 # endif |
6049 | 2073 } |
2074 if (viminfo_errcnt > 0) | |
7 | 2075 mch_remove(tempname); |
601 | 2076 } |
2077 | |
7 | 2078 end: |
2079 vim_free(fname); | |
2080 vim_free(tempname); | |
2081 } | |
2082 | |
2083 /* | |
2084 * Get the viminfo file name to use. | |
2085 * If "file" is given and not empty, use it (has already been expanded by | |
2086 * cmdline functions). | |
2087 * Otherwise use "-i file_name", value from 'viminfo' or the default, and | |
2088 * expand environment variables. | |
2089 * Returns an allocated string. NULL when out of memory. | |
2090 */ | |
2091 static char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2092 viminfo_filename(char_u *file) |
7 | 2093 { |
2094 if (file == NULL || *file == NUL) | |
2095 { | |
2096 if (use_viminfo != NULL) | |
2097 file = use_viminfo; | |
2098 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL) | |
2099 { | |
2100 #ifdef VIMINFO_FILE2 | |
2101 /* don't use $HOME when not defined (turned into "c:/"!). */ | |
2102 # ifdef VMS | |
2103 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL) | |
2104 # else | |
2105 if (mch_getenv((char_u *)"HOME") == NULL) | |
2106 # endif | |
2107 { | |
2108 /* don't use $VIM when not available. */ | |
2109 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL); | |
2110 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */ | |
2111 file = (char_u *)VIMINFO_FILE2; | |
2112 else | |
2113 file = (char_u *)VIMINFO_FILE; | |
2114 } | |
2115 else | |
2116 #endif | |
2117 file = (char_u *)VIMINFO_FILE; | |
2118 } | |
2119 expand_env(file, NameBuff, MAXPATHL); | |
2120 file = NameBuff; | |
2121 } | |
2122 return vim_strsave(file); | |
2123 } | |
2124 | |
2125 /* | |
2126 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo(). | |
2127 */ | |
2128 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2129 do_viminfo(FILE *fp_in, FILE *fp_out, int flags) |
7 | 2130 { |
2131 int eof = FALSE; | |
2132 vir_T vir; | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2133 int merge = FALSE; |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2134 int do_copy_marks = FALSE; |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2135 garray_T buflist; |
7 | 2136 |
2137 if ((vir.vir_line = alloc(LSIZE)) == NULL) | |
2138 return; | |
2139 vir.vir_fd = fp_in; | |
2140 #ifdef FEAT_MBYTE | |
2141 vir.vir_conv.vc_type = CONV_NONE; | |
2142 #endif | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2143 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
|
2144 vir.vir_version = -1; |
7 | 2145 |
2146 if (fp_in != NULL) | |
2147 { | |
1733 | 2148 if (flags & VIF_WANT_INFO) |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2149 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2150 if (fp_out != NULL) |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2151 { |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2152 /* 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
|
2153 * 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
|
2154 prepare_viminfo_registers(); |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2155 prepare_viminfo_marks(); |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2156 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2157 |
1733 | 2158 eof = read_viminfo_up_to_marks(&vir, |
2159 flags & VIF_FORCEIT, fp_out != NULL); | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2160 merge = TRUE; |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2161 } |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2162 else if (flags != 0) |
7 | 2163 /* Skip info, find start of marks */ |
2164 while (!(eof = viminfo_readline(&vir)) | |
2165 && vir.vir_line[0] != '>') | |
2166 ; | |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2167 |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2168 do_copy_marks = (flags & |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2169 (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
|
2170 } |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2171 |
7 | 2172 if (fp_out != NULL) |
2173 { | |
2174 /* Write the info: */ | |
2175 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"), | |
2176 VIM_VERSION_MEDIUM); | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2177 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
|
2178 write_viminfo_version(fp_out); |
7 | 2179 #ifdef FEAT_MBYTE |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2180 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out); |
7 | 2181 fprintf(fp_out, "*encoding=%s\n\n", p_enc); |
2182 #endif | |
2183 write_viminfo_search_pattern(fp_out); | |
2184 write_viminfo_sub_string(fp_out); | |
2185 #ifdef FEAT_CMDHIST | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2186 write_viminfo_history(fp_out, merge); |
7 | 2187 #endif |
2188 write_viminfo_registers(fp_out); | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2189 finish_viminfo_registers(); |
7 | 2190 #ifdef FEAT_EVAL |
2191 write_viminfo_varlist(fp_out); | |
2192 #endif | |
2193 write_viminfo_filemarks(fp_out); | |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2194 finish_viminfo_marks(); |
7 | 2195 write_viminfo_bufferlist(fp_out); |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2196 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
|
2197 |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2198 if (do_copy_marks) |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2199 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
|
2200 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
|
2201 } |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2202 |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2203 if (do_copy_marks) |
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 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
|
2206 if (fp_out != NULL) |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2207 ga_clear(&buflist); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
2208 } |
7 | 2209 |
2210 vim_free(vir.vir_line); | |
2211 #ifdef FEAT_MBYTE | |
2212 if (vir.vir_conv.vc_type != CONV_NONE) | |
2213 convert_setup(&vir.vir_conv, NULL, NULL); | |
2214 #endif | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2215 ga_clear_strings(&vir.vir_barlines); |
7 | 2216 } |
2217 | |
2218 /* | |
2219 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the | |
2220 * first part of the viminfo file which contains everything but the marks that | |
2221 * are local to a file. Returns TRUE when end-of-file is reached. -- webb | |
2222 */ | |
2223 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2224 read_viminfo_up_to_marks( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2225 vir_T *virp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2226 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2227 int writing) |
7 | 2228 { |
2229 int eof; | |
2230 buf_T *buf; | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2231 int got_encoding = FALSE; |
7 | 2232 |
2233 #ifdef FEAT_CMDHIST | |
4285 | 2234 prepare_viminfo_history(forceit ? 9999 : 0, writing); |
7 | 2235 #endif |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2236 |
7 | 2237 eof = viminfo_readline(virp); |
2238 while (!eof && virp->vir_line[0] != '>') | |
2239 { | |
2240 switch (virp->vir_line[0]) | |
2241 { | |
2242 /* Characters reserved for future expansion, ignored now */ | |
2243 case '+': /* "+40 /path/dir file", for running vim without args */ | |
2244 case '^': /* to be defined */ | |
2245 case '<': /* long line - ignored */ | |
2246 /* A comment or empty line. */ | |
2247 case NUL: | |
2248 case '\r': | |
2249 case '\n': | |
2250 case '#': | |
2251 eof = viminfo_readline(virp); | |
2252 break; | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2253 case '|': |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2254 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
|
2255 forceit, writing); |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2256 break; |
7 | 2257 case '*': /* "*encoding=value" */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2258 got_encoding = TRUE; |
7 | 2259 eof = viminfo_encoding(virp); |
2260 break; | |
2261 case '!': /* global variable */ | |
2262 #ifdef FEAT_EVAL | |
2263 eof = read_viminfo_varlist(virp, writing); | |
2264 #else | |
2265 eof = viminfo_readline(virp); | |
2266 #endif | |
2267 break; | |
2268 case '%': /* entry for buffer list */ | |
2269 eof = read_viminfo_bufferlist(virp, writing); | |
2270 break; | |
2271 case '"': | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2272 /* 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
|
2273 * lines. */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2274 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
|
2275 eof = read_viminfo_register(virp, forceit); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2276 else |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2277 do { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2278 eof = viminfo_readline(virp); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2279 } 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
|
2280 || virp->vir_line[0] == '<')); |
7 | 2281 break; |
2282 case '/': /* Search string */ | |
2283 case '&': /* Substitute search string */ | |
2284 case '~': /* Last search string, followed by '/' or '&' */ | |
2285 eof = read_viminfo_search_pattern(virp, forceit); | |
2286 break; | |
2287 case '$': | |
2288 eof = read_viminfo_sub_string(virp, forceit); | |
2289 break; | |
2290 case ':': | |
2291 case '?': | |
2292 case '=': | |
2293 case '@': | |
2294 #ifdef FEAT_CMDHIST | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2295 /* 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
|
2296 * lines. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2297 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
|
2298 eof = read_viminfo_history(virp, writing); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2299 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2300 #endif |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2301 eof = viminfo_readline(virp); |
7 | 2302 break; |
2303 case '-': | |
2304 case '\'': | |
9297
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2305 /* 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
|
2306 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
|
2307 eof = read_viminfo_filemark(virp, forceit); |
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2308 else |
9c663cda189f
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Christian Brabandt <cb@256bit.org>
parents:
9284
diff
changeset
|
2309 eof = viminfo_readline(virp); |
7 | 2310 break; |
2311 default: | |
2312 if (viminfo_error("E575: ", _("Illegal starting char"), | |
2313 virp->vir_line)) | |
2314 eof = TRUE; | |
2315 else | |
2316 eof = viminfo_readline(virp); | |
2317 break; | |
2318 } | |
2319 } | |
2320 | |
2321 #ifdef FEAT_CMDHIST | |
2322 /* Finish reading history items. */ | |
4285 | 2323 if (!writing) |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9248
diff
changeset
|
2324 finish_viminfo_history(virp); |
7 | 2325 #endif |
2326 | |
2327 /* 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
|
2328 FOR_ALL_BUFFERS(buf) |
7 | 2329 fmarks_check_names(buf); |
2330 | |
2331 return eof; | |
2332 } | |
2333 | |
2334 /* | |
2335 * Compare the 'encoding' value in the viminfo file with the current value of | |
2336 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for | |
2337 * conversion of text with iconv() in viminfo_readstring(). | |
2338 */ | |
2339 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2340 viminfo_encoding(vir_T *virp) |
7 | 2341 { |
2342 #ifdef FEAT_MBYTE | |
2343 char_u *p; | |
2344 int i; | |
2345 | |
2346 if (get_viminfo_parameter('c') != 0) | |
2347 { | |
2348 p = vim_strchr(virp->vir_line, '='); | |
2349 if (p != NULL) | |
2350 { | |
2351 /* remove trailing newline */ | |
2352 ++p; | |
2353 for (i = 0; vim_isprintc(p[i]); ++i) | |
2354 ; | |
2355 p[i] = NUL; | |
2356 | |
2357 convert_setup(&virp->vir_conv, p, p_enc); | |
2358 } | |
2359 } | |
2360 #endif | |
2361 return viminfo_readline(virp); | |
2362 } | |
2363 | |
2364 /* | |
2365 * Read a line from the viminfo file. | |
2366 * Returns TRUE for end-of-file; | |
2367 */ | |
2368 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2369 viminfo_readline(vir_T *virp) |
7 | 2370 { |
2371 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); | |
2372 } | |
2373 | |
2374 /* | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2375 * Check string read from viminfo file. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2376 * Remove '\n' at the end of the line. |
7 | 2377 * - replace CTRL-V CTRL-V with CTRL-V |
2378 * - replace CTRL-V 'n' with '\n' | |
2379 * | |
2380 * Check for a long line as written by viminfo_writestring(). | |
2381 * | |
2382 * Return the string in allocated memory (NULL when out of memory). | |
2383 */ | |
2384 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2385 viminfo_readstring( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2386 vir_T *virp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2387 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
|
2388 int convert UNUSED) /* convert the string */ |
7 | 2389 { |
2390 char_u *retval; | |
2391 char_u *s, *d; | |
2392 long len; | |
2393 | |
2394 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1])) | |
2395 { | |
2396 len = atol((char *)virp->vir_line + off + 1); | |
2397 retval = lalloc(len, TRUE); | |
2398 if (retval == NULL) | |
2399 { | |
2400 /* Line too long? File messed up? Skip next line. */ | |
2401 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd); | |
2402 return NULL; | |
2403 } | |
2404 (void)vim_fgets(retval, (int)len, virp->vir_fd); | |
2405 s = retval + 1; /* Skip the leading '<' */ | |
2406 } | |
2407 else | |
2408 { | |
2409 retval = vim_strsave(virp->vir_line + off); | |
2410 if (retval == NULL) | |
2411 return NULL; | |
2412 s = retval; | |
2413 } | |
2414 | |
2415 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */ | |
2416 d = retval; | |
2417 while (*s != NUL && *s != '\n') | |
2418 { | |
2419 if (s[0] == Ctrl_V && s[1] != NUL) | |
2420 { | |
2421 if (s[1] == 'n') | |
2422 *d++ = '\n'; | |
2423 else | |
2424 *d++ = Ctrl_V; | |
2425 s += 2; | |
2426 } | |
2427 else | |
2428 *d++ = *s++; | |
2429 } | |
2430 *d = NUL; | |
2431 | |
2432 #ifdef FEAT_MBYTE | |
2433 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL) | |
2434 { | |
2435 d = string_convert(&virp->vir_conv, retval, NULL); | |
2436 if (d != NULL) | |
2437 { | |
2438 vim_free(retval); | |
2439 retval = d; | |
2440 } | |
2441 } | |
2442 #endif | |
2443 | |
2444 return retval; | |
2445 } | |
2446 | |
2447 /* | |
2448 * write string to viminfo file | |
2449 * - replace CTRL-V with CTRL-V CTRL-V | |
2450 * - replace '\n' with CTRL-V 'n' | |
2451 * - add a '\n' at the end | |
2452 * | |
2453 * For a long line: | |
2454 * - write " CTRL-V <length> \n " in first line | |
2455 * - write " < <string> \n " in second line | |
2456 */ | |
2457 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2458 viminfo_writestring(FILE *fd, char_u *p) |
7 | 2459 { |
2460 int c; | |
2461 char_u *s; | |
2462 int len = 0; | |
2463 | |
2464 for (s = p; *s != NUL; ++s) | |
2465 { | |
2466 if (*s == Ctrl_V || *s == '\n') | |
2467 ++len; | |
2468 ++len; | |
2469 } | |
2470 | |
2471 /* If the string will be too long, write its length and put it in the next | |
2472 * line. Take into account that some room is needed for what comes before | |
2473 * the string (e.g., variable name). Add something to the length for the | |
2474 * '<', NL and trailing NUL. */ | |
2475 if (len > LSIZE / 2) | |
2476 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3); | |
2477 | |
2478 while ((c = *p++) != NUL) | |
2479 { | |
2480 if (c == Ctrl_V || c == '\n') | |
2481 { | |
2482 putc(Ctrl_V, fd); | |
2483 if (c == '\n') | |
2484 c = 'n'; | |
2485 } | |
2486 putc(c, fd); | |
2487 } | |
2488 putc('\n', fd); | |
2489 } | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2490 |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2491 /* |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2492 * 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
|
2493 * 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
|
2494 * Returns remaining characters in the line. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2495 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2496 int |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2497 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
|
2498 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2499 char_u *p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2500 int remaining = remaining_start; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2501 int len = 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2502 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2503 /* 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
|
2504 for (p = s; *p != NUL; ++p) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2505 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2506 if (*p == NL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2507 len += 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2508 else if (*p == '"' || *p == '\\') |
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 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2511 ++len; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2512 } |
9978
baad324e9fbc
commit https://github.com/vim/vim/commit/257095760732597983bdd026e791907b7980e295
Christian Brabandt <cb@256bit.org>
parents:
9959
diff
changeset
|
2513 if (len > remaining - 2) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2514 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2515 fprintf(fd, ">%d\n|<", len); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2516 remaining = LSIZE - 20; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2517 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2518 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2519 putc('"', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2520 for (p = s; *p != NUL; ++p) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2521 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2522 if (*p == NL) |
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 putc('\\', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2525 putc('n', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2526 --remaining; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2527 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2528 else if (*p == '"' || *p == '\\') |
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 putc('\\', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2531 putc(*p, fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2532 --remaining; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2533 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2534 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2535 putc(*p, fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2536 --remaining; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2537 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2538 if (remaining < 3) |
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 putc('\n', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2541 putc('|', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2542 putc('<', fd); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2543 /* Leave enough space for another continuation. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2544 remaining = LSIZE - 20; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2545 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2546 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2547 putc('"', fd); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2548 return remaining - 2; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2549 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2550 |
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 * 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
|
2553 * 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
|
2554 * 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
|
2555 */ |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2556 static int |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2557 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
|
2558 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2559 char_u *p = text; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2560 char_u *nextp = NULL; |
9244
931bbf7b6ee3
commit https://github.com/vim/vim/commit/fdd82fe365d0e287bafc71f98c039cb5af8ed827
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
2561 char_u *buf = NULL; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2562 bval_T *value; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2563 int i; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2564 int allocated = FALSE; |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2565 int eof; |
9268
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2566 #ifdef FEAT_MBYTE |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2567 char_u *sconv; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2568 int converted; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2569 #endif |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2570 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2571 while (*p == ',') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2572 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2573 ++p; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2574 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
|
2575 break; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2576 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
|
2577 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2578 if (*p == '>') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2579 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2580 /* 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
|
2581 * 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
|
2582 if (!allocated) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2583 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2584 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
|
2585 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2586 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
|
2587 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2588 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
|
2589 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2590 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
|
2591 vp->bv_allocated = TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2592 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2593 } |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2594 allocated = TRUE; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2595 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2596 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2597 if (vim_isdigit(p[1])) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2598 { |
9248
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2599 size_t len; |
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2600 size_t todo; |
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2601 size_t n; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2602 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2603 /* 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
|
2604 * than LSIZE: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2605 * |{bartype},>{length of "{text}{text2}"} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2606 * |<"{text1} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2607 * |<{text2}",{value} |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2608 * Length includes the quotes. |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2609 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2610 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2611 len = getdigits(&p); |
9248
9c751c33dc0f
commit https://github.com/vim/vim/commit/1d5f1d07aedb6f149f5de145b1dfd6528a769c93
Christian Brabandt <cb@256bit.org>
parents:
9244
diff
changeset
|
2612 buf = alloc((int)(len + 1)); |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9268
diff
changeset
|
2613 if (buf == NULL) |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2614 return TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2615 p = buf; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2616 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
|
2617 { |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2618 eof = viminfo_readline(virp); |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2619 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
|
2620 || virp->vir_line[1] != '<') |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9268
diff
changeset
|
2621 { |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2622 /* 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
|
2623 * this one starts with '|'. */ |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9268
diff
changeset
|
2624 vim_free(buf); |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2625 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
|
2626 } |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2627 /* 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
|
2628 n = STRLEN(virp->vir_line); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2629 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
|
2630 || virp->vir_line[n - 1] == CAR)) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2631 --n; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2632 n -= 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2633 if (n > todo) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2634 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2635 /* more values follow after the string */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2636 nextp = virp->vir_line + 2 + todo; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2637 n = todo; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2638 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2639 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
|
2640 p += n; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2641 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2642 *p = NUL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2643 p = buf; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2644 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2645 else |
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 /* 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
|
2648 * |{bartype},{lots of values},> |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2649 * |<{value},{value} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2650 */ |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2651 eof = viminfo_readline(virp); |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2652 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
|
2653 || virp->vir_line[1] != '<') |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2654 /* 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
|
2655 * this one starts with '|'. */ |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2656 return eof || virp->vir_line[0] == '|'; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2657 p = virp->vir_line + 2; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2658 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2659 } |
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 if (isdigit(*p)) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2662 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2663 value->bv_type = BVAL_NR; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2664 value->bv_nr = getdigits(&p); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2665 ++values->ga_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2666 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2667 else if (*p == '"') |
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 int len = 0; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2670 char_u *s = p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2671 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2672 /* Unescape special characters in-place. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2673 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2674 while (*p != '"') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2675 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2676 if (*p == NL || *p == NUL) |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2677 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
|
2678 if (*p == '\\') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2679 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2680 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2681 if (*p == 'n') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2682 s[len++] = '\n'; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2683 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2684 s[len++] = *p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2685 ++p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2686 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2687 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2688 s[len++] = *p++; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2689 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2690 ++p; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2691 s[len] = NUL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2692 |
9268
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2693 #ifdef FEAT_MBYTE |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2694 converted = FALSE; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2695 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
|
2696 { |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2697 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
|
2698 if (sconv != NULL) |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2699 { |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2700 if (s == buf) |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2701 vim_free(s); |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2702 s = sconv; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2703 buf = s; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2704 converted = TRUE; |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2705 } |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2706 } |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2707 #endif |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2708 /* 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
|
2709 * 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
|
2710 if (s != buf && allocated) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2711 s = vim_strsave(s); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2712 value->bv_string = s; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2713 value->bv_type = BVAL_STRING; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2714 value->bv_len = len; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2715 value->bv_allocated = allocated |
9268
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2716 #ifdef FEAT_MBYTE |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2717 || converted |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2718 #endif |
a00e32b5bb39
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Christian Brabandt <cb@256bit.org>
parents:
9260
diff
changeset
|
2719 ; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2720 ++values->ga_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2721 if (nextp != NULL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2722 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2723 /* values following a long string */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2724 p = nextp; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2725 nextp = NULL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2726 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2727 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2728 else if (*p == ',') |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2729 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2730 value->bv_type = BVAL_EMPTY; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2731 ++values->ga_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2732 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2733 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2734 break; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2735 } |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2736 return TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2737 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2738 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2739 static int |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2740 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
|
2741 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2742 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
|
2743 int bartype; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2744 garray_T values; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2745 bval_T *vp; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2746 int i; |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2747 int read_next = TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2748 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2749 /* The format is: |{bartype},{value},... |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2750 * For a very long string: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2751 * |{bartype},>{length of "{text}{text2}"} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2752 * |<{text1} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2753 * |<{text2},{value} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2754 * 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
|
2755 * |{bartype},{lots of values},> |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2756 * |<{value},{value} |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2757 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2758 if (*p == '<') |
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 /* Continuation line of an unrecognized item. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2761 if (writing) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2762 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
|
2763 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2764 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2765 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2766 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
|
2767 bartype = getdigits(&p); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2768 switch (bartype) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2769 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2770 case BARTYPE_VERSION: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2771 /* 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
|
2772 * 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
|
2773 * doesn't understand the version. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2774 if (!got_encoding) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2775 { |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2776 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
|
2777 vp = (bval_T *)values.ga_data; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2778 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
|
2779 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
|
2780 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2781 break; |
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 case BARTYPE_HISTORY: |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2784 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
|
2785 handle_viminfo_history(&values, writing); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2786 break; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2787 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2788 case BARTYPE_REGISTER: |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2789 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
|
2790 handle_viminfo_register(&values, force); |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2791 break; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2792 |
9284
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2793 case BARTYPE_MARK: |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2794 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
|
2795 handle_viminfo_mark(&values, force); |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2796 break; |
78712a2f687a
commit https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Christian Brabandt <cb@256bit.org>
parents:
9276
diff
changeset
|
2797 |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2798 default: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2799 /* copy unrecognized line (for future use) */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2800 if (writing) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2801 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
|
2802 } |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2803 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
|
2804 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2805 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
|
2806 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
|
2807 vim_free(vp->bv_string); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2808 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2809 ga_clear(&values); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2810 } |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2811 |
9330
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2812 if (read_next) |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2813 return viminfo_readline(virp); |
8cb76e38c346
commit https://github.com/vim/vim/commit/ecefe71704850b94df44f65fc756c1551ec68388
Christian Brabandt <cb@256bit.org>
parents:
9297
diff
changeset
|
2814 return FALSE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2815 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2816 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2817 static void |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2818 write_viminfo_version(FILE *fp_out) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2819 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2820 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
|
2821 BARTYPE_VERSION, VIMINFO_VERSION); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2822 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9234
diff
changeset
|
2823 |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2824 static void |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2825 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
|
2826 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2827 int i; |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2828 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
|
2829 int seen_useful = FALSE; |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2830 char *line; |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2831 |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2832 if (gap->ga_len > 0) |
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 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
|
2835 |
9412
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2836 /* 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
|
2837 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
|
2838 { |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2839 line = ((char **)(gap->ga_data))[i]; |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2840 if (seen_useful || line[1] != '<') |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2841 { |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2842 fputs(line, fp_out); |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2843 seen_useful = TRUE; |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2844 } |
80333fcbaddf
commit https://github.com/vim/vim/commit/dec85cf75044ed94f611c825a7a0b0050a2597b9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2845 } |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2846 } |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2847 } |
7 | 2848 #endif /* FEAT_VIMINFO */ |
2849 | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2850 /* |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2851 * 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
|
2852 * was used. |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2853 */ |
9347
25c562442f8c
commit https://github.com/vim/vim/commit/f4fba6dcd508cb369ffa6916d9cb3fcf3d7ed548
Christian Brabandt <cb@256bit.org>
parents:
9330
diff
changeset
|
2854 time_T |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2855 vim_time(void) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2856 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2857 # ifdef FEAT_EVAL |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2858 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
|
2859 # else |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2860 return time(NULL); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2861 # endif |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2862 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
2863 |
7 | 2864 /* |
2865 * Implementation of ":fixdel", also used by get_stty(). | |
2866 * <BS> resulting <Del> | |
2867 * ^? ^H | |
2868 * not ^? ^? | |
2869 */ | |
2870 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2871 do_fixdel(exarg_T *eap UNUSED) |
7 | 2872 { |
2873 char_u *p; | |
2874 | |
2875 p = find_termcode((char_u *)"kb"); | |
2876 add_termcode((char_u *)"kD", p != NULL | |
2877 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); | |
2878 } | |
2879 | |
2880 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2881 print_line_no_prefix( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2882 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2883 int use_number, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2884 int list) |
7 | 2885 { |
13 | 2886 char_u numbuf[30]; |
7 | 2887 |
2888 if (curwin->w_p_nu || use_number) | |
2889 { | |
1872 | 2890 vim_snprintf((char *)numbuf, sizeof(numbuf), |
2891 "%*ld ", number_width(curwin), (long)lnum); | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11144
diff
changeset
|
2892 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); /* Highlight line nrs */ |
7 | 2893 } |
169 | 2894 msg_prt_line(ml_get(lnum), list); |
7 | 2895 } |
2896 | |
2897 /* | |
2898 * Print a text line. Also in silent mode ("ex -s"). | |
2899 */ | |
2900 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2901 print_line(linenr_T lnum, int use_number, int list) |
7 | 2902 { |
2903 int save_silent = silent_mode; | |
2904 | |
9980
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2905 /* apply :filter /pat/ */ |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2906 if (message_filtered(ml_get(lnum))) |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2907 return; |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9978
diff
changeset
|
2908 |
169 | 2909 msg_start(); |
7 | 2910 silent_mode = FALSE; |
169 | 2911 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */ |
2912 print_line_no_prefix(lnum, use_number, list); | |
7 | 2913 if (save_silent) |
2914 { | |
2915 msg_putchar('\n'); | |
2916 cursor_on(); /* msg_start() switches it off */ | |
2917 out_flush(); | |
2918 silent_mode = save_silent; | |
1798 | 2919 } |
2920 info_message = FALSE; | |
7 | 2921 } |
2922 | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2923 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2924 rename_buffer(char_u *new_fname) |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2925 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2926 char_u *fname, *sfname, *xfname; |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2927 buf_T *buf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2928 |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2929 #ifdef FEAT_AUTOCMD |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2930 buf = curbuf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2931 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
|
2932 /* buffer changed, don't change name now */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2933 if (buf != curbuf) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2934 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2935 # ifdef FEAT_EVAL |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2936 if (aborting()) /* autocmds may abort script processing */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2937 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2938 # endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2939 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2940 /* |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2941 * 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
|
2942 * 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
|
2943 * name, which will become the alternate file name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2944 * 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
|
2945 * name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2946 */ |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2947 fname = curbuf->b_ffname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2948 sfname = curbuf->b_sfname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2949 xfname = curbuf->b_fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2950 curbuf->b_ffname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2951 curbuf->b_sfname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2952 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL) |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2953 { |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2954 curbuf->b_ffname = fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2955 curbuf->b_sfname = sfname; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2956 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2957 } |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2958 curbuf->b_flags |= BF_NOTEDITED; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2959 if (xfname != NULL && *xfname != NUL) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2960 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2961 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
|
2962 if (buf != NULL && !cmdmod.keepalt) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2963 curwin->w_alt_fnum = buf->b_fnum; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2964 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2965 vim_free(fname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2966 vim_free(sfname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2967 #ifdef FEAT_AUTOCMD |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2968 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
|
2969 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2970 /* Change directories when the 'acd' option is set. */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2971 DO_AUTOCHDIR |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2972 return OK; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2973 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2974 |
7 | 2975 /* |
2976 * ":file[!] [fname]". | |
2977 */ | |
2978 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2979 ex_file(exarg_T *eap) |
7 | 2980 { |
14 | 2981 /* ":0file" removes the file name. Check for illegal uses ":3file", |
2982 * "0file name", etc. */ | |
2983 if (eap->addr_count > 0 | |
2984 && (*eap->arg != NUL | |
2985 || eap->line2 > 0 | |
2986 || eap->addr_count > 1)) | |
2987 { | |
2988 EMSG(_(e_invarg)); | |
2989 return; | |
2990 } | |
2991 | |
2992 if (*eap->arg != NUL || eap->addr_count == 1) | |
7 | 2993 { |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2994 if (rename_buffer(eap->arg) == FAIL) |
7 | 2995 return; |
2996 } | |
2997 /* 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
|
2998 if (!shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
2999 fileinfo(FALSE, FALSE, eap->forceit); |
7 | 3000 } |
3001 | |
3002 /* | |
3003 * ":update". | |
3004 */ | |
3005 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3006 ex_update(exarg_T *eap) |
7 | 3007 { |
3008 if (curbufIsChanged()) | |
3009 (void)do_write(eap); | |
3010 } | |
3011 | |
3012 /* | |
3013 * ":write" and ":saveas". | |
3014 */ | |
3015 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3016 ex_write(exarg_T *eap) |
7 | 3017 { |
3018 if (eap->usefilter) /* input lines to shell command */ | |
3019 do_bang(1, eap, FALSE, TRUE, FALSE); | |
3020 else | |
3021 (void)do_write(eap); | |
3022 } | |
3023 | |
3024 /* | |
3025 * write current buffer to file 'eap->arg' | |
3026 * if 'eap->append' is TRUE, append to the file | |
3027 * | |
3028 * if *eap->arg == NUL write to current file | |
3029 * | |
3030 * return FAIL for failure, OK otherwise | |
3031 */ | |
3032 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3033 do_write(exarg_T *eap) |
7 | 3034 { |
3035 int other; | |
3036 char_u *fname = NULL; /* init to shut up gcc */ | |
3037 char_u *ffname; | |
3038 int retval = FAIL; | |
3039 char_u *free_fname = NULL; | |
3040 #ifdef FEAT_BROWSE | |
3041 char_u *browse_file = NULL; | |
3042 #endif | |
3043 buf_T *alt_buf = NULL; | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3044 int name_was_missing; |
7 | 3045 |
3046 if (not_writing()) /* check 'write' option */ | |
3047 return FAIL; | |
3048 | |
3049 ffname = eap->arg; | |
3050 #ifdef FEAT_BROWSE | |
3051 if (cmdmod.browse) | |
3052 { | |
29 | 3053 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
7 | 3054 NULL, NULL, NULL, curbuf); |
3055 if (browse_file == NULL) | |
3056 goto theend; | |
3057 ffname = browse_file; | |
3058 } | |
3059 #endif | |
3060 if (*ffname == NUL) | |
3061 { | |
3062 if (eap->cmdidx == CMD_saveas) | |
3063 { | |
3064 EMSG(_(e_argreq)); | |
3065 goto theend; | |
3066 } | |
3067 other = FALSE; | |
3068 } | |
3069 else | |
3070 { | |
3071 fname = ffname; | |
3072 free_fname = fix_fname(ffname); | |
3073 /* | |
3074 * When out-of-memory, keep unexpanded file name, because we MUST be | |
3075 * able to write the file in this situation. | |
3076 */ | |
3077 if (free_fname != NULL) | |
3078 ffname = free_fname; | |
3079 other = otherfile(ffname); | |
3080 } | |
3081 | |
3082 /* | |
3083 * If we have a new file, put its name in the list of alternate file names. | |
3084 */ | |
3085 if (other) | |
3086 { | |
3087 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL | |
3088 || eap->cmdidx == CMD_saveas) | |
3089 alt_buf = setaltfname(ffname, fname, (linenr_T)1); | |
3090 else | |
3091 alt_buf = buflist_findname(ffname); | |
3092 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) | |
3093 { | |
3094 /* Overwriting a file that is loaded in another buffer is not a | |
3095 * good idea. */ | |
315 | 3096 EMSG(_(e_bufloaded)); |
7 | 3097 goto theend; |
3098 } | |
3099 } | |
3100 | |
3101 /* | |
3102 * Writing to the current file is not allowed in readonly mode | |
3103 * and a file name is required. | |
3104 * "nofile" and "nowrite" buffers cannot be written implicitly either. | |
3105 */ | |
3106 if (!other && ( | |
3107 #ifdef FEAT_QUICKFIX | |
3108 bt_dontwrite_msg(curbuf) || | |
3109 #endif | |
3110 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf))) | |
3111 goto theend; | |
3112 | |
3113 if (!other) | |
3114 { | |
3115 ffname = curbuf->b_ffname; | |
3116 fname = curbuf->b_fname; | |
3117 /* | |
3118 * Not writing the whole file is only allowed with '!'. | |
3119 */ | |
3120 if ( (eap->line1 != 1 | |
3121 || eap->line2 != curbuf->b_ml.ml_line_count) | |
3122 && !eap->forceit | |
3123 && !eap->append | |
3124 && !p_wa) | |
3125 { | |
3126 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3127 if (p_confirm || cmdmod.confirm) | |
3128 { | |
3129 if (vim_dialog_yesno(VIM_QUESTION, NULL, | |
3130 (char_u *)_("Write partial file?"), 2) != VIM_YES) | |
3131 goto theend; | |
3132 eap->forceit = TRUE; | |
3133 } | |
3134 else | |
3135 #endif | |
3136 { | |
3137 EMSG(_("E140: Use ! to write partial buffer")); | |
3138 goto theend; | |
3139 } | |
3140 } | |
3141 } | |
3142 | |
3143 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) | |
3144 { | |
3145 if (eap->cmdidx == CMD_saveas && alt_buf != NULL) | |
3146 { | |
3147 #ifdef FEAT_AUTOCMD | |
3148 buf_T *was_curbuf = curbuf; | |
3149 | |
3150 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); | |
21 | 3151 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf); |
7 | 3152 # ifdef FEAT_EVAL |
3153 if (curbuf != was_curbuf || aborting()) | |
3154 # else | |
3155 if (curbuf != was_curbuf) | |
3156 # endif | |
3157 { | |
3158 /* buffer changed, don't change name now */ | |
3159 retval = FAIL; | |
3160 goto theend; | |
3161 } | |
3162 #endif | |
3163 /* Exchange the file names for the current and the alternate | |
3164 * buffer. This makes it look like we are now editing the buffer | |
3165 * under the new name. Must be done before buf_write(), because | |
3166 * if there is no file name and 'cpo' contains 'F', it will set | |
3167 * the file name. */ | |
3168 fname = alt_buf->b_fname; | |
3169 alt_buf->b_fname = curbuf->b_fname; | |
3170 curbuf->b_fname = fname; | |
3171 fname = alt_buf->b_ffname; | |
3172 alt_buf->b_ffname = curbuf->b_ffname; | |
3173 curbuf->b_ffname = fname; | |
3174 fname = alt_buf->b_sfname; | |
3175 alt_buf->b_sfname = curbuf->b_sfname; | |
3176 curbuf->b_sfname = fname; | |
3177 buf_name_changed(curbuf); | |
3178 #ifdef FEAT_AUTOCMD | |
3179 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); | |
21 | 3180 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
7 | 3181 if (!alt_buf->b_p_bl) |
3182 { | |
3183 alt_buf->b_p_bl = TRUE; | |
3184 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); | |
3185 } | |
3186 # ifdef FEAT_EVAL | |
3187 if (curbuf != was_curbuf || aborting()) | |
3188 # else | |
3189 if (curbuf != was_curbuf) | |
3190 # endif | |
3191 { | |
3192 /* buffer changed, don't write the file */ | |
3193 retval = FAIL; | |
3194 goto theend; | |
3195 } | |
634 | 3196 |
3197 /* If 'filetype' was empty try detecting it now. */ | |
3198 if (*curbuf->b_p_ft == NUL) | |
3199 { | |
819 | 3200 if (au_has_group((char_u *)"filetypedetect")) |
3201 (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
|
3202 TRUE, NULL); |
717 | 3203 do_modelines(0); |
634 | 3204 } |
2648 | 3205 |
3206 /* Autocommands may have changed buffer names, esp. when | |
3207 * 'autochdir' is set. */ | |
3208 fname = curbuf->b_sfname; | |
7 | 3209 #endif |
3210 } | |
3211 | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3212 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
|
3213 |
7 | 3214 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, |
3215 eap, eap->append, eap->forceit, TRUE, FALSE); | |
634 | 3216 |
819 | 3217 /* After ":saveas fname" reset 'readonly'. */ |
961 | 3218 if (eap->cmdidx == CMD_saveas) |
3219 { | |
3220 if (retval == OK) | |
1806 | 3221 { |
961 | 3222 curbuf->b_p_ro = FALSE; |
1806 | 3223 #ifdef FEAT_WINDOWS |
3224 redraw_tabline = TRUE; | |
3225 #endif | |
3226 } | |
9469
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3227 } |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3228 |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3229 /* 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
|
3230 * got changed or set. */ |
38e2fc4ee4ef
commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
3231 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
|
3232 { |
961 | 3233 DO_AUTOCHDIR |
3234 } | |
7 | 3235 } |
3236 | |
3237 theend: | |
3238 #ifdef FEAT_BROWSE | |
3239 vim_free(browse_file); | |
3240 #endif | |
3241 vim_free(free_fname); | |
3242 return retval; | |
3243 } | |
3244 | |
3245 /* | |
3246 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, | |
3247 * BF_NEW or BF_READERR, check for overwriting current file. | |
3248 * May set eap->forceit if a dialog says it's OK to overwrite. | |
3249 * Return OK if it's OK, FAIL if it is not. | |
3250 */ | |
3486 | 3251 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3252 check_overwrite( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3253 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3254 buf_T *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3255 char_u *fname, /* file name to be used (can differ from |
7 | 3256 buf->ffname) */ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3257 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
|
3258 int other) /* writing under other name */ |
7 | 3259 { |
3260 /* | |
3261 * write to other file or b_flags set or not writing the whole file: | |
3262 * overwriting only allowed with '!' | |
3263 */ | |
3264 if ( (other | |
3265 || (buf->b_flags & BF_NOTEDITED) | |
3266 || ((buf->b_flags & BF_NEW) | |
3267 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) | |
3268 || (buf->b_flags & BF_READERR)) | |
3269 && !p_wa | |
1457 | 3270 #ifdef FEAT_QUICKFIX |
3271 && !bt_nofile(buf) | |
3272 #endif | |
7 | 3273 && vim_fexists(ffname)) |
3274 { | |
460 | 3275 if (!eap->forceit && !eap->append) |
7 | 3276 { |
460 | 3277 #ifdef UNIX |
637 | 3278 /* with UNIX it is possible to open a directory */ |
460 | 3279 if (mch_isdir(ffname)) |
3280 { | |
3281 EMSG2(_(e_isadir2), ffname); | |
3282 return FAIL; | |
3283 } | |
7 | 3284 #endif |
3285 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
460 | 3286 if (p_confirm || cmdmod.confirm) |
3287 { | |
2770 | 3288 char_u buff[DIALOG_MSG_SIZE]; |
460 | 3289 |
3290 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); | |
3291 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) | |
3292 return FAIL; | |
3293 eap->forceit = TRUE; | |
3294 } | |
3295 else | |
3296 #endif | |
3297 { | |
3298 EMSG(_(e_exists)); | |
7 | 3299 return FAIL; |
460 | 3300 } |
7 | 3301 } |
460 | 3302 |
3303 /* For ":w! filename" check that no swap file exists for "filename". */ | |
3304 if (other && !emsg_silent) | |
7 | 3305 { |
2770 | 3306 char_u *dir; |
460 | 3307 char_u *p; |
3308 int r; | |
3309 char_u *swapname; | |
3310 | |
3311 /* We only try the first entry in 'directory', without checking if | |
3312 * it's writable. If the "." directory is not writable the write | |
3313 * will probably fail anyway. | |
3314 * Use 'shortname' of the current buffer, since there is no buffer | |
3315 * for the written file. */ | |
3316 if (*p_dir == NUL) | |
2770 | 3317 { |
3318 dir = alloc(5); | |
3319 if (dir == NULL) | |
3320 return FAIL; | |
460 | 3321 STRCPY(dir, "."); |
2770 | 3322 } |
460 | 3323 else |
3324 { | |
2770 | 3325 dir = alloc(MAXPATHL); |
3326 if (dir == NULL) | |
3327 return FAIL; | |
460 | 3328 p = p_dir; |
3329 copy_option_part(&p, dir, MAXPATHL, ","); | |
3330 } | |
3331 swapname = makeswapname(fname, ffname, curbuf, dir); | |
2770 | 3332 vim_free(dir); |
460 | 3333 r = vim_fexists(swapname); |
3334 if (r) | |
3335 { | |
3336 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3337 if (p_confirm || cmdmod.confirm) | |
3338 { | |
2770 | 3339 char_u buff[DIALOG_MSG_SIZE]; |
460 | 3340 |
3341 dialog_msg(buff, | |
3342 _("Swap file \"%s\" exists, overwrite anyway?"), | |
3343 swapname); | |
3344 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) | |
3345 != VIM_YES) | |
819 | 3346 { |
3347 vim_free(swapname); | |
460 | 3348 return FAIL; |
819 | 3349 } |
460 | 3350 eap->forceit = TRUE; |
3351 } | |
3352 else | |
3353 #endif | |
3354 { | |
3355 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"), | |
3356 swapname); | |
819 | 3357 vim_free(swapname); |
460 | 3358 return FAIL; |
3359 } | |
3360 } | |
819 | 3361 vim_free(swapname); |
7 | 3362 } |
3363 } | |
3364 return OK; | |
3365 } | |
3366 | |
3367 /* | |
3368 * Handle ":wnext", ":wNext" and ":wprevious" commands. | |
3369 */ | |
3370 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3371 ex_wnext(exarg_T *eap) |
7 | 3372 { |
3373 int i; | |
3374 | |
3375 if (eap->cmd[1] == 'n') | |
3376 i = curwin->w_arg_idx + (int)eap->line2; | |
3377 else | |
3378 i = curwin->w_arg_idx - (int)eap->line2; | |
3379 eap->line1 = 1; | |
3380 eap->line2 = curbuf->b_ml.ml_line_count; | |
3381 if (do_write(eap) != FAIL) | |
3382 do_argfile(eap, i); | |
3383 } | |
3384 | |
3385 /* | |
3386 * ":wall", ":wqall" and ":xall": Write all changed files (and exit). | |
3387 */ | |
3388 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3389 do_wqall(exarg_T *eap) |
7 | 3390 { |
3391 buf_T *buf; | |
3392 int error = 0; | |
3393 int save_forceit = eap->forceit; | |
3394 | |
3395 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) | |
3396 exiting = TRUE; | |
3397 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3398 FOR_ALL_BUFFERS(buf) |
7 | 3399 { |
3400 if (bufIsChanged(buf)) | |
3401 { | |
3402 /* | |
3403 * Check if there is a reason the buffer cannot be written: | |
3404 * 1. if the 'write' option is set | |
3405 * 2. if there is no file name (even after browsing) | |
3406 * 3. if the 'readonly' is set (even after a dialog) | |
3407 * 4. if overwriting is allowed (even after a dialog) | |
3408 */ | |
3409 if (not_writing()) | |
3410 { | |
3411 ++error; | |
3412 break; | |
3413 } | |
3414 #ifdef FEAT_BROWSE | |
3415 /* ":browse wall": ask for file name if there isn't one */ | |
3416 if (buf->b_ffname == NULL && cmdmod.browse) | |
3417 browse_save_fname(buf); | |
3418 #endif | |
3419 if (buf->b_ffname == NULL) | |
3420 { | |
3421 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum); | |
3422 ++error; | |
3423 } | |
3424 else if (check_readonly(&eap->forceit, buf) | |
3425 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, | |
3426 FALSE) == FAIL) | |
3427 { | |
3428 ++error; | |
3429 } | |
3430 else | |
3431 { | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3432 #ifdef FEAT_AUTOCMD |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3433 bufref_T bufref; |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3434 |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3435 set_bufref(&bufref, buf); |
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3436 #endif |
7 | 3437 if (buf_write_all(buf, eap->forceit) == FAIL) |
3438 ++error; | |
3439 #ifdef FEAT_AUTOCMD | |
3440 /* 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
|
3441 if (!bufref_valid(&bufref)) |
7 | 3442 buf = firstbuf; |
3443 #endif | |
3444 } | |
3445 eap->forceit = save_forceit; /* check_overwrite() may set it */ | |
3446 } | |
3447 } | |
3448 if (exiting) | |
3449 { | |
3450 if (!error) | |
3451 getout(0); /* exit Vim */ | |
3452 not_exiting(); | |
3453 } | |
3454 } | |
3455 | |
3456 /* | |
3457 * Check the 'write' option. | |
3458 * Return TRUE and give a message when it's not st. | |
3459 */ | |
3460 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3461 not_writing(void) |
7 | 3462 { |
3463 if (p_write) | |
3464 return FALSE; | |
3465 EMSG(_("E142: File not written: Writing is disabled by 'write' option")); | |
3466 return TRUE; | |
3467 } | |
3468 | |
3469 /* | |
1303 | 3470 * Check if a buffer is read-only (either 'readonly' option is set or file is |
3471 * read-only). Ask for overruling in a dialog. Return TRUE and give an error | |
3472 * message when the buffer is readonly. | |
7 | 3473 */ |
3474 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3475 check_readonly(int *forceit, buf_T *buf) |
7 | 3476 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9377
diff
changeset
|
3477 stat_T st; |
1303 | 3478 |
3479 /* Handle a file being readonly when the 'readonly' option is set or when | |
3480 * the file exists and permissions are read-only. | |
3481 * We will send 0777 to check_file_readonly(), as the "perm" variable is | |
3482 * important for device checks but not here. */ | |
3483 if (!*forceit && (buf->b_p_ro | |
3484 || (mch_stat((char *)buf->b_ffname, &st) >= 0 | |
3485 && check_file_readonly(buf->b_ffname, 0777)))) | |
7 | 3486 { |
3487 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3488 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL) | |
3489 { | |
2770 | 3490 char_u buff[DIALOG_MSG_SIZE]; |
7 | 3491 |
1303 | 3492 if (buf->b_p_ro) |
3493 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), | |
3494 buf->b_fname); | |
3495 else | |
3496 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"), | |
7 | 3497 buf->b_fname); |
3498 | |
3499 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) | |
3500 { | |
3501 /* Set forceit, to force the writing of a readonly file */ | |
3502 *forceit = TRUE; | |
3503 return FALSE; | |
3504 } | |
3505 else | |
3506 return TRUE; | |
3507 } | |
3508 else | |
3509 #endif | |
1303 | 3510 if (buf->b_p_ro) |
7 | 3511 EMSG(_(e_readonly)); |
1303 | 3512 else |
3513 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"), | |
3514 buf->b_fname); | |
7 | 3515 return TRUE; |
3516 } | |
1303 | 3517 |
7 | 3518 return FALSE; |
3519 } | |
3520 | |
3521 /* | |
632 | 3522 * Try to abandon current file and edit a new or existing file. |
3523 * 'fnum' is the number of the file, if zero use ffname/sfname. | |
7 | 3524 * |
632 | 3525 * Return 1 for "normal" error, 2 for "not written" error, 0 for success |
1370 | 3526 * -1 for successfully opening another file. |
7 | 3527 * 'lnum' is the line number for the cursor in the new file (if non-zero). |
3528 */ | |
3529 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3530 getfile( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3531 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3532 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3533 char_u *sfname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3534 int setpm, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3535 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3536 int forceit) |
7 | 3537 { |
3538 int other; | |
3539 int retval; | |
3540 char_u *free_me = NULL; | |
3541 | |
634 | 3542 if (text_locked()) |
7 | 3543 return 1; |
819 | 3544 #ifdef FEAT_AUTOCMD |
3545 if (curbuf_locked()) | |
3546 return 1; | |
3547 #endif | |
7 | 3548 |
3549 if (fnum == 0) | |
3550 { | |
3551 /* make ffname full path, set sfname */ | |
3552 fname_expand(curbuf, &ffname, &sfname); | |
3553 other = otherfile(ffname); | |
3554 free_me = ffname; /* has been allocated, free() later */ | |
3555 } | |
3556 else | |
3557 other = (fnum != curbuf->b_fnum); | |
3558 | |
3559 if (other) | |
3560 ++no_wait_return; /* don't wait for autowrite message */ | |
3561 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf) | |
3562 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) | |
3563 { | |
3564 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3565 if (p_confirm && p_write) | |
3566 dialog_changed(curbuf, FALSE); | |
3567 if (curbufIsChanged()) | |
3568 #endif | |
3569 { | |
3570 if (other) | |
3571 --no_wait_return; | |
3572 EMSG(_(e_nowrtmsg)); | |
3573 retval = 2; /* file has been changed */ | |
3574 goto theend; | |
3575 } | |
3576 } | |
3577 if (other) | |
3578 --no_wait_return; | |
3579 if (setpm) | |
3580 setpcmark(); | |
3581 if (!other) | |
3582 { | |
3583 if (lnum != 0) | |
3584 curwin->w_cursor.lnum = lnum; | |
3585 check_cursor_lnum(); | |
3586 beginline(BL_SOL | BL_FIX); | |
3587 retval = 0; /* it's in the same file */ | |
3588 } | |
3589 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum, | |
1743 | 3590 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0), |
3591 curwin) == OK) | |
7 | 3592 retval = -1; /* opened another file */ |
3593 else | |
3594 retval = 1; /* error encountered */ | |
3595 | |
3596 theend: | |
3597 vim_free(free_me); | |
3598 return retval; | |
3599 } | |
3600 | |
3601 /* | |
3602 * start editing a new file | |
3603 * | |
3604 * fnum: file number; if zero use ffname/sfname | |
3605 * ffname: the file name | |
3606 * - full path if sfname used, | |
3607 * - any file name if sfname is NULL | |
3608 * - empty string to re-edit with the same file name (but may be | |
3609 * in a different directory) | |
3610 * - NULL to start an empty buffer | |
3611 * sfname: the short file name (or NULL) | |
3612 * eap: contains the command to be executed after loading the file and | |
3613 * forced 'ff' and 'fenc' | |
3614 * newlnum: if > 0: put cursor on this line number (if possible) | |
3615 * if ECMD_LASTL: use last position in loaded file | |
3616 * if ECMD_LAST: use last position in all files | |
3617 * if ECMD_ONE: use first line | |
3618 * flags: | |
3619 * ECMD_HIDE: if TRUE don't free the current buffer | |
3620 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file | |
3621 * ECMD_OLDBUF: use existing buffer if it exists | |
3622 * ECMD_FORCEIT: ! used for Ex command | |
3623 * ECMD_ADDBUF: don't edit, just add to buffer list | |
1743 | 3624 * 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
|
3625 * 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
|
3626 * of the previous buffer for "oldwin" is stored. |
7 | 3627 * |
3628 * return FAIL for failure, OK otherwise | |
3629 */ | |
3630 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3631 do_ecmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3632 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3633 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3634 char_u *sfname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3635 exarg_T *eap, /* can be NULL! */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3636 linenr_T newlnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3637 int flags, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3638 win_T *oldwin) |
7 | 3639 { |
3640 int other_file; /* TRUE if editing another file */ | |
3641 int oldbuf; /* TRUE if using existing buffer */ | |
3642 #ifdef FEAT_AUTOCMD | |
3643 int auto_buf = FALSE; /* TRUE if autocommands brought us | |
3644 into the buffer unexpectedly */ | |
3645 char_u *new_name = NULL; | |
716 | 3646 int did_set_swapcommand = FALSE; |
7 | 3647 #endif |
3648 buf_T *buf; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3649 bufref_T bufref; |
7 | 3650 #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
|
3651 bufref_T old_curbuf; |
7 | 3652 #endif |
3653 char_u *free_fname = NULL; | |
3654 #ifdef FEAT_BROWSE | |
3655 char_u *browse_file = NULL; | |
3656 #endif | |
3657 int retval = FAIL; | |
3658 long n; | |
6702 | 3659 pos_T orig_pos; |
7 | 3660 linenr_T topline = 0; |
3661 int newcol = -1; | |
3662 int solcol = -1; | |
3663 pos_T *pos; | |
3664 #ifdef FEAT_SUN_WORKSHOP | |
3665 char_u *cp; | |
3666 #endif | |
3667 char_u *command = NULL; | |
1185 | 3668 #ifdef FEAT_SPELL |
3669 int did_get_winopts = FALSE; | |
3670 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3671 int readfile_flags = 0; |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3672 int did_inc_redrawing_disabled = FALSE; |
7 | 3673 |
3674 if (eap != NULL) | |
3675 command = eap->do_ecmd_cmd; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3676 #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
|
3677 set_bufref(&old_curbuf, curbuf); |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3678 #endif |
7 | 3679 |
3680 if (fnum != 0) | |
3681 { | |
3682 if (fnum == curbuf->b_fnum) /* file is already being edited */ | |
3683 return OK; /* nothing to do */ | |
3684 other_file = TRUE; | |
3685 } | |
3686 else | |
3687 { | |
3688 #ifdef FEAT_BROWSE | |
3689 if (cmdmod.browse) | |
3690 { | |
1683 | 3691 # ifdef FEAT_AUTOCMD |
462 | 3692 if ( |
1683 | 3693 # ifdef FEAT_GUI |
462 | 3694 !gui.in_use && |
1683 | 3695 # endif |
462 | 3696 au_has_group((char_u *)"FileExplorer")) |
3697 { | |
3698 /* No browsing supported but we do have the file explorer: | |
3699 * Edit the directory. */ | |
3700 if (ffname == NULL || !mch_isdir(ffname)) | |
3701 ffname = (char_u *)"."; | |
3702 } | |
3703 else | |
1683 | 3704 # endif |
462 | 3705 { |
3706 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, | |
7 | 3707 NULL, NULL, NULL, curbuf); |
462 | 3708 if (browse_file == NULL) |
3709 goto theend; | |
3710 ffname = browse_file; | |
3711 } | |
7 | 3712 } |
3713 #endif | |
3714 /* if no short name given, use ffname for short name */ | |
3715 if (sfname == NULL) | |
3716 sfname = ffname; | |
3717 #ifdef USE_FNAME_CASE | |
3718 # ifdef USE_LONG_FNAME | |
3719 if (USE_LONG_FNAME) | |
3720 # endif | |
436 | 3721 if (sfname != NULL) |
3722 fname_case(sfname, 0); /* set correct case for sfname */ | |
7 | 3723 #endif |
3724 | |
3725 #ifdef FEAT_LISTCMDS | |
3726 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL)) | |
3727 goto theend; | |
3728 #endif | |
3729 | |
3730 if (ffname == NULL) | |
3731 other_file = TRUE; | |
3732 /* there is no file name */ | |
3733 else if (*ffname == NUL && curbuf->b_ffname == NULL) | |
3734 other_file = FALSE; | |
3735 else | |
3736 { | |
3737 if (*ffname == NUL) /* re-edit with same file name */ | |
3738 { | |
3739 ffname = curbuf->b_ffname; | |
3740 sfname = curbuf->b_fname; | |
3741 } | |
3742 free_fname = fix_fname(ffname); /* may expand to full path name */ | |
3743 if (free_fname != NULL) | |
3744 ffname = free_fname; | |
3745 other_file = otherfile(ffname); | |
3746 #ifdef FEAT_SUN_WORKSHOP | |
3747 if (usingSunWorkShop && p_acd | |
3748 && (cp = vim_strrchr(sfname, '/')) != NULL) | |
3749 sfname = ++cp; | |
3750 #endif | |
3751 } | |
3752 } | |
3753 | |
3754 /* | |
3755 * if the file was changed we may not be allowed to abandon it | |
3756 * - if we are going to re-edit the same file | |
3757 * - or if we are the only window on this file and if ECMD_HIDE is FALSE | |
3758 */ | |
3759 if ( ((!other_file && !(flags & ECMD_OLDBUF)) | |
3760 || (curbuf->b_nwindows == 1 | |
3761 && !(flags & (ECMD_HIDE | ECMD_ADDBUF)))) | |
5464 | 3762 && check_changed(curbuf, (p_awa ? CCGD_AW : 0) |
3763 | (other_file ? 0 : CCGD_MULTWIN) | |
3764 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0) | |
3765 | (eap == NULL ? 0 : CCGD_EXCMD))) | |
7 | 3766 { |
3767 if (fnum == 0 && other_file && ffname != NULL) | |
3768 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); | |
3769 goto theend; | |
3770 } | |
3771 | |
3772 /* | |
3773 * End Visual mode before switching to another buffer, so the text can be | |
3774 * copied into the GUI selection buffer. | |
3775 */ | |
3776 reset_VIsual(); | |
3777 | |
716 | 3778 #ifdef FEAT_AUTOCMD |
3779 if ((command != NULL || newlnum > (linenr_T)0) | |
3780 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) | |
3781 { | |
3782 int len; | |
3783 char_u *p; | |
3784 | |
3785 /* Set v:swapcommand for the SwapExists autocommands. */ | |
3786 if (command != NULL) | |
835 | 3787 len = (int)STRLEN(command) + 3; |
716 | 3788 else |
3789 len = 30; | |
3790 p = alloc((unsigned)len); | |
3791 if (p != NULL) | |
3792 { | |
3793 if (command != NULL) | |
3794 vim_snprintf((char *)p, len, ":%s\r", command); | |
3795 else | |
3796 vim_snprintf((char *)p, len, "%ldG", (long)newlnum); | |
3797 set_vim_var_string(VV_SWAPCOMMAND, p, -1); | |
3798 did_set_swapcommand = TRUE; | |
3799 vim_free(p); | |
3800 } | |
3801 } | |
3802 #endif | |
3803 | |
7 | 3804 /* |
3805 * If we are starting to edit another file, open a (new) buffer. | |
3806 * Otherwise we re-use the current buffer. | |
3807 */ | |
3808 if (other_file) | |
3809 { | |
3810 #ifdef FEAT_LISTCMDS | |
3811 if (!(flags & ECMD_ADDBUF)) | |
3812 #endif | |
3813 { | |
22 | 3814 if (!cmdmod.keepalt) |
3815 curwin->w_alt_fnum = curbuf->b_fnum; | |
1743 | 3816 if (oldwin != NULL) |
3817 buflist_altfpos(oldwin); | |
7 | 3818 } |
3819 | |
3820 if (fnum) | |
3821 buf = buflist_findnr(fnum); | |
3822 else | |
3823 { | |
3824 #ifdef FEAT_LISTCMDS | |
3825 if (flags & ECMD_ADDBUF) | |
3826 { | |
3827 linenr_T tlnum = 1L; | |
3828 | |
3829 if (command != NULL) | |
3830 { | |
3831 tlnum = atol((char *)command); | |
3832 if (tlnum <= 0) | |
3833 tlnum = 1L; | |
3834 } | |
3835 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED); | |
3836 goto theend; | |
3837 } | |
3838 #endif | |
3839 buf = buflist_new(ffname, sfname, 0L, | |
3840 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED)); | |
5816 | 3841 #ifdef FEAT_AUTOCMD |
3842 /* autocommands may change curwin and curbuf */ | |
3843 if (oldwin != NULL) | |
3844 oldwin = curwin; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3845 set_bufref(&old_curbuf, curbuf); |
5816 | 3846 #endif |
7 | 3847 } |
3848 if (buf == NULL) | |
3849 goto theend; | |
3850 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */ | |
3851 { | |
3852 oldbuf = FALSE; | |
3853 } | |
3854 else /* existing memfile */ | |
3855 { | |
3856 oldbuf = TRUE; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3857 set_bufref(&bufref, buf); |
7 | 3858 (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
|
3859 /* 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
|
3860 * current buffer. */ |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3861 if (!bufref_valid(&bufref) |
7 | 3862 #ifdef FEAT_AUTOCMD |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3863 || curbuf != old_curbuf.br_buf |
7 | 3864 #endif |
3865 ) | |
3866 goto theend; | |
3867 #ifdef FEAT_EVAL | |
3868 if (aborting()) /* autocmds may abort script processing */ | |
3869 goto theend; | |
3870 #endif | |
3871 } | |
3872 | |
3873 /* May jump to last used line number for a loaded buffer or when asked | |
3874 * for explicitly */ | |
3875 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) | |
3876 { | |
3877 pos = buflist_findfpos(buf); | |
3878 newlnum = pos->lnum; | |
3879 solcol = pos->col; | |
3880 } | |
3881 | |
3882 /* | |
3883 * Make the (new) buffer the one used by the current window. | |
3884 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. | |
3885 * If the current buffer was empty and has no file name, curbuf | |
6639 | 3886 * is returned by buflist_new(), nothing to do here. |
7 | 3887 */ |
3888 if (buf != curbuf) | |
3889 { | |
3890 #ifdef FEAT_AUTOCMD | |
3891 /* | |
3892 * Be careful: The autocommands may delete any buffer and change | |
3893 * the current buffer. | |
3894 * - If the buffer we are going to edit is deleted, give up. | |
3895 * - If the current buffer is deleted, prefer to load the new | |
3896 * buffer when loading a buffer is required. This avoids | |
3897 * loading another buffer which then must be closed again. | |
3898 * - If we ended up in the new buffer already, need to skip a few | |
3899 * things, set auto_buf. | |
3900 */ | |
3901 if (buf->b_fname != NULL) | |
3902 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
|
3903 set_bufref(&au_new_curbuf, buf); |
7 | 3904 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
|
3905 if (!bufref_valid(&au_new_curbuf)) |
7 | 3906 { |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3907 /* new buffer has been deleted */ |
7 | 3908 delbuf_msg(new_name); /* frees new_name */ |
3909 goto theend; | |
3910 } | |
3911 # ifdef FEAT_EVAL | |
3912 if (aborting()) /* autocmds may abort script processing */ | |
3913 { | |
3914 vim_free(new_name); | |
3915 goto theend; | |
3916 } | |
3917 # endif | |
3918 if (buf == curbuf) /* already in new buffer */ | |
3919 auto_buf = TRUE; | |
3920 else | |
3921 { | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3922 win_T *the_curwin = curwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3923 |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3924 /* 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
|
3925 * 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
|
3926 the_curwin->w_closing = TRUE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
3927 ++buf->b_locked; |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3928 |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
3929 if (curbuf == old_curbuf.br_buf) |
7 | 3930 #endif |
3931 buf_copy_options(buf, BCO_ENTER); | |
3932 | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3933 /* 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
|
3934 * oldwin->w_buffer to NULL. */ |
825 | 3935 u_sync(FALSE); |
1743 | 3936 close_buffer(oldwin, curbuf, |
3365 | 3937 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE); |
7 | 3938 |
3939 #ifdef FEAT_AUTOCMD | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3940 the_curwin->w_closing = FALSE; |
10106
58e6dd1d8be3
commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
3941 --buf->b_locked; |
3242 | 3942 |
7 | 3943 # ifdef FEAT_EVAL |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3944 /* autocmds may abort script processing */ |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3945 if (aborting() && curwin->w_buffer != NULL) |
7 | 3946 { |
3947 vim_free(new_name); | |
3948 goto theend; | |
3949 } | |
3950 # endif | |
3951 /* Be careful again, like above. */ | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3952 if (!bufref_valid(&au_new_curbuf)) |
7 | 3953 { |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3954 /* new buffer has been deleted */ |
7 | 3955 delbuf_msg(new_name); /* frees new_name */ |
3956 goto theend; | |
3957 } | |
3958 if (buf == curbuf) /* already in new buffer */ | |
3959 auto_buf = TRUE; | |
3960 else | |
3961 #endif | |
3962 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3963 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3964 /* |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3965 * <VN> We could instead free the synblock |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3966 * and re-attach to buffer, perhaps. |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3967 */ |
10482
712acb0ad6a8
commit https://github.com/vim/vim/commit/c4bfedabe057c05f09a455a5851089e177fa9c00
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
3968 if (curwin->w_buffer != NULL |
712acb0ad6a8
commit https://github.com/vim/vim/commit/c4bfedabe057c05f09a455a5851089e177fa9c00
Christian Brabandt <cb@256bit.org>
parents:
10357
diff
changeset
|
3969 && curwin->w_s == &(curwin->w_buffer->b_s)) |
3480 | 3970 curwin->w_s = &(buf->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3971 #endif |
7 | 3972 curwin->w_buffer = buf; |
3973 curbuf = buf; | |
3974 ++curbuf->b_nwindows; | |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3975 |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3976 /* Set 'fileformat', 'binary' and 'fenc' when forced. */ |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3977 if (!oldbuf && eap != NULL) |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3978 { |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3979 set_file_options(TRUE, eap); |
5242
f0361e297d9c
updated for version 7.4a.046
Bram Moolenaar <bram@vim.org>
parents:
5231
diff
changeset
|
3980 #ifdef FEAT_MBYTE |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3981 set_forced_fenc(eap); |
5242
f0361e297d9c
updated for version 7.4a.046
Bram Moolenaar <bram@vim.org>
parents:
5231
diff
changeset
|
3982 #endif |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3983 } |
7 | 3984 } |
3985 | |
3986 /* May get the window options from the last time this buffer | |
3987 * was in this window (or another window). If not used | |
3988 * before, reset the local window options to the global | |
3989 * values. Also restores old folding stuff. */ | |
1289 | 3990 get_winopts(curbuf); |
1185 | 3991 #ifdef FEAT_SPELL |
3992 did_get_winopts = TRUE; | |
3993 #endif | |
7 | 3994 |
3995 #ifdef FEAT_AUTOCMD | |
3996 } | |
3997 vim_free(new_name); | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
3998 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
|
3999 au_new_curbuf.br_buf_free_count = 0; |
7 | 4000 #endif |
4001 } | |
4002 | |
4003 curwin->w_pcmark.lnum = 1; | |
4004 curwin->w_pcmark.col = 0; | |
4005 } | |
4006 else /* !other_file */ | |
4007 { | |
4008 if ( | |
4009 #ifdef FEAT_LISTCMDS | |
4010 (flags & ECMD_ADDBUF) || | |
4011 #endif | |
4012 check_fname() == FAIL) | |
4013 goto theend; | |
6531 | 4014 |
7 | 4015 oldbuf = (flags & ECMD_OLDBUF); |
4016 } | |
4017 | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4018 /* 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
|
4019 * autocommands may cause ml_get errors. */ |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4020 ++RedrawingDisabled; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4021 did_inc_redrawing_disabled = TRUE; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4022 |
6365 | 4023 #ifdef FEAT_AUTOCMD |
4024 buf = curbuf; | |
4025 #endif | |
7 | 4026 if ((flags & ECMD_SET_HELP) || keep_help_flag) |
4027 { | |
6365 | 4028 prepare_help_buffer(); |
7 | 4029 } |
4030 else | |
4031 { | |
4032 /* Don't make a buffer listed if it's a help buffer. Useful when | |
4033 * using CTRL-O to go back to a help file. */ | |
4034 if (!curbuf->b_help) | |
4035 set_buflisted(TRUE); | |
4036 } | |
4037 | |
4038 #ifdef FEAT_AUTOCMD | |
4039 /* If autocommands change buffers under our fingers, forget about | |
4040 * editing the file. */ | |
4041 if (buf != curbuf) | |
4042 goto theend; | |
4043 # ifdef FEAT_EVAL | |
4044 if (aborting()) /* autocmds may abort script processing */ | |
4045 goto theend; | |
4046 # endif | |
4047 | |
4048 /* Since we are starting to edit a file, consider the filetype to be | |
4049 * unset. Helps for when an autocommand changes files and expects syntax | |
4050 * highlighting to work in the other file. */ | |
4051 did_filetype = FALSE; | |
4052 #endif | |
4053 | |
4054 /* | |
4055 * other_file oldbuf | |
4056 * FALSE FALSE re-edit same file, buffer is re-used | |
4057 * FALSE TRUE re-edit same file, nothing changes | |
4058 * TRUE FALSE start editing new file, new buffer | |
4059 * TRUE TRUE start editing in existing buffer (nothing to do) | |
4060 */ | |
4061 if (!other_file && !oldbuf) /* re-use the buffer */ | |
4062 { | |
4063 set_last_cursor(curwin); /* may set b_last_cursor */ | |
4064 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) | |
4065 { | |
4066 newlnum = curwin->w_cursor.lnum; | |
4067 solcol = curwin->w_cursor.col; | |
4068 } | |
4069 #ifdef FEAT_AUTOCMD | |
4070 buf = curbuf; | |
4071 if (buf->b_fname != NULL) | |
4072 new_name = vim_strsave(buf->b_fname); | |
4073 else | |
4074 new_name = NULL; | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
4075 set_bufref(&bufref, buf); |
7 | 4076 #endif |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4077 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
|
4078 { |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4079 /* 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
|
4080 * 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
|
4081 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
|
4082 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
|
4083 == FAIL) |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
4084 { |
9715
dc2237f19ce2
commit https://github.com/vim/vim/commit/fc1f2015e833e69b89b994faf4b2c4fc1e09220f
Christian Brabandt <cb@256bit.org>
parents:
9705
diff
changeset
|
4085 #ifdef FEAT_AUTOCMD |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
4086 vim_free(new_name); |
9715
dc2237f19ce2
commit https://github.com/vim/vim/commit/fc1f2015e833e69b89b994faf4b2c4fc1e09220f
Christian Brabandt <cb@256bit.org>
parents:
9705
diff
changeset
|
4087 #endif |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4088 goto theend; |
9705
8c0871098dc9
commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents:
9676
diff
changeset
|
4089 } |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4090 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
|
4091 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
|
4092 |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4093 /* 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
|
4094 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
|
4095 } |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4096 else |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4097 buf_freeall(curbuf, 0); /* free all things for buffer */ |
7 | 4098 #ifdef FEAT_AUTOCMD |
4099 /* If autocommands deleted the buffer we were going to re-edit, give | |
4100 * 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
|
4101 if (!bufref_valid(&bufref)) |
7 | 4102 { |
4103 delbuf_msg(new_name); /* frees new_name */ | |
4104 goto theend; | |
4105 } | |
4106 vim_free(new_name); | |
4107 | |
4108 /* If autocommands change buffers under our fingers, forget about | |
4109 * re-editing the file. Should do the buf_clear_file(), but perhaps | |
4110 * the autocommands changed the buffer... */ | |
4111 if (buf != curbuf) | |
4112 goto theend; | |
4113 # ifdef FEAT_EVAL | |
4114 if (aborting()) /* autocmds may abort script processing */ | |
4115 goto theend; | |
4116 # endif | |
4117 #endif | |
4118 buf_clear_file(curbuf); | |
4119 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */ | |
4120 curbuf->b_op_end.lnum = 0; | |
4121 } | |
4122 | |
4123 /* | |
4124 * If we get here we are sure to start editing | |
4125 */ | |
4126 /* Assume success now */ | |
4127 retval = OK; | |
4128 | |
4129 /* | |
4130 * Check if we are editing the w_arg_idx file in the argument list. | |
4131 */ | |
4132 check_arg_idx(curwin); | |
4133 | |
4134 #ifdef FEAT_AUTOCMD | |
4135 if (!auto_buf) | |
4136 #endif | |
4137 { | |
4138 /* | |
4139 * Set cursor and init window before reading the file and executing | |
4140 * autocommands. This allows for the autocommands to position the | |
4141 * cursor. | |
4142 */ | |
677 | 4143 curwin_init(); |
7 | 4144 |
4145 #ifdef FEAT_FOLDING | |
1370 | 4146 /* It's possible that all lines in the buffer changed. Need to update |
4147 * automatic folding for all windows where it's used. */ | |
4148 # ifdef FEAT_WINDOWS | |
4149 { | |
4150 win_T *win; | |
4151 tabpage_T *tp; | |
4152 | |
4153 FOR_ALL_TAB_WINDOWS(tp, win) | |
4154 if (win->w_buffer == curbuf) | |
4155 foldUpdateAll(win); | |
4156 } | |
4157 # else | |
7 | 4158 foldUpdateAll(curwin); |
1370 | 4159 # endif |
7 | 4160 #endif |
4161 | |
961 | 4162 /* Change directories when the 'acd' option is set. */ |
4163 DO_AUTOCHDIR | |
4164 | |
7 | 4165 /* |
4166 * Careful: open_buffer() and apply_autocmds() may change the current | |
4167 * buffer and window. | |
4168 */ | |
6702 | 4169 orig_pos = curwin->w_cursor; |
7 | 4170 topline = curwin->w_topline; |
4171 if (!oldbuf) /* need to read the file */ | |
4172 { | |
580 | 4173 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 4174 swap_exists_action = SEA_DIALOG; |
4175 #endif | |
4176 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */ | |
4177 | |
4178 /* | |
4179 * Open the buffer and read the file. | |
4180 */ | |
4181 #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
|
4182 if (should_abort(open_buffer(FALSE, eap, readfile_flags))) |
7 | 4183 retval = FAIL; |
4184 #else | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
4185 (void)open_buffer(FALSE, eap, readfile_flags); |
7 | 4186 #endif |
4187 | |
580 | 4188 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 4189 if (swap_exists_action == SEA_QUIT) |
4190 retval = FAIL; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9481
diff
changeset
|
4191 handle_swap_exists(&old_curbuf); |
7 | 4192 #endif |
4193 } | |
4194 #ifdef FEAT_AUTOCMD | |
4195 else | |
4196 { | |
23 | 4197 /* Read the modelines, but only to set window-local options. Any |
4198 * buffer-local options have already been set and may have been | |
4199 * changed by the user. */ | |
717 | 4200 do_modelines(OPT_WINONLY); |
23 | 4201 |
7 | 4202 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, |
4203 &retval); | |
4204 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, | |
4205 &retval); | |
4206 } | |
4207 check_arg_idx(curwin); | |
4208 #endif | |
4209 | |
6702 | 4210 /* If autocommands change the cursor position or topline, we should |
4211 * keep it. Also when it moves within a line. */ | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10970
diff
changeset
|
4212 if (!EQUAL_POS(curwin->w_cursor, orig_pos)) |
7 | 4213 { |
4214 newlnum = curwin->w_cursor.lnum; | |
4215 newcol = curwin->w_cursor.col; | |
4216 } | |
4217 if (curwin->w_topline == topline) | |
4218 topline = 0; | |
4219 | |
4220 /* Even when cursor didn't move we need to recompute topline. */ | |
4221 changed_line_abv_curs(); | |
4222 | |
4223 #ifdef FEAT_TITLE | |
4224 maketitle(); | |
4225 #endif | |
4226 } | |
4227 | |
4228 #ifdef FEAT_DIFF | |
4229 /* Tell the diff stuff that this buffer is new and/or needs updating. | |
4230 * Also needed when re-editing the same buffer, because unloading will | |
4231 * have removed it as a diff buffer. */ | |
673 | 4232 if (curwin->w_p_diff) |
4233 { | |
4234 diff_buf_add(curbuf); | |
4235 diff_invalidate(curbuf); | |
4236 } | |
7 | 4237 #endif |
4238 | |
1185 | 4239 #ifdef FEAT_SPELL |
4240 /* If the window options were changed may need to set the spell language. | |
4241 * 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
|
4242 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
|
4243 (void)did_set_spelllang(curwin); |
1185 | 4244 #endif |
4245 | |
7 | 4246 if (command == NULL) |
4247 { | |
4248 if (newcol >= 0) /* position set by autocommands */ | |
4249 { | |
4250 curwin->w_cursor.lnum = newlnum; | |
4251 curwin->w_cursor.col = newcol; | |
4252 check_cursor(); | |
4253 } | |
4254 else if (newlnum > 0) /* line number from caller or old position */ | |
4255 { | |
4256 curwin->w_cursor.lnum = newlnum; | |
4257 check_cursor_lnum(); | |
4258 if (solcol >= 0 && !p_sol) | |
4259 { | |
4260 /* 'sol' is off: Use last known column. */ | |
4261 curwin->w_cursor.col = solcol; | |
4262 check_cursor_col(); | |
4263 #ifdef FEAT_VIRTUALEDIT | |
4264 curwin->w_cursor.coladd = 0; | |
4265 #endif | |
4266 curwin->w_set_curswant = TRUE; | |
4267 } | |
4268 else | |
4269 beginline(BL_SOL | BL_FIX); | |
4270 } | |
4271 else /* no line number, go to last line in Ex mode */ | |
4272 { | |
4273 if (exmode_active) | |
4274 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4275 beginline(BL_WHITE | BL_FIX); | |
4276 } | |
4277 } | |
4278 | |
4279 #ifdef FEAT_WINDOWS | |
4280 /* Check if cursors in other windows on the same buffer are still valid */ | |
4281 check_lnums(FALSE); | |
4282 #endif | |
4283 | |
4284 /* | |
4285 * Did not read the file, need to show some info about the file. | |
4286 * Do this after setting the cursor. | |
4287 */ | |
4288 if (oldbuf | |
4289 #ifdef FEAT_AUTOCMD | |
4290 && !auto_buf | |
4291 #endif | |
4292 ) | |
4293 { | |
4294 int msg_scroll_save = msg_scroll; | |
4295 | |
4296 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file | |
4297 * message. */ | |
4298 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) | |
4299 msg_scroll = FALSE; | |
4300 if (!msg_scroll) /* wait a bit when overwriting an error msg */ | |
4301 check_for_delay(FALSE); | |
4302 msg_start(); | |
4303 msg_scroll = msg_scroll_save; | |
4304 msg_scrolled_ign = TRUE; | |
4305 | |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
4306 if (!shortmess(SHM_FILEINFO)) |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
4307 fileinfo(FALSE, TRUE, FALSE); |
7 | 4308 |
4309 msg_scrolled_ign = FALSE; | |
4310 } | |
4311 | |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4312 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4313 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4314 #endif |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9412
diff
changeset
|
4315 |
7 | 4316 if (command != NULL) |
4317 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); | |
4318 | |
4319 #ifdef FEAT_KEYMAP | |
4320 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 4321 (void)keymap_init(); |
7 | 4322 #endif |
4323 | |
4324 --RedrawingDisabled; | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4325 did_inc_redrawing_disabled = FALSE; |
7 | 4326 if (!skip_redraw) |
4327 { | |
4328 n = p_so; | |
4329 if (topline == 0 && command == NULL) | |
4330 p_so = 999; /* force cursor halfway the window */ | |
4331 update_topline(); | |
4332 #ifdef FEAT_SCROLLBIND | |
4333 curwin->w_scbind_pos = curwin->w_topline; | |
4334 #endif | |
4335 p_so = n; | |
4336 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */ | |
4337 } | |
4338 | |
4339 if (p_im) | |
4340 need_start_insertmode = TRUE; | |
4341 | |
961 | 4342 /* Change directories when the 'acd' option is set. */ |
4343 DO_AUTOCHDIR | |
821 | 4344 |
4345 #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
|
4346 if (curbuf->b_ffname != NULL) |
7 | 4347 { |
4348 # ifdef FEAT_SUN_WORKSHOP | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
4349 if (gui.in_use && usingSunWorkShop) |
7 | 4350 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro); |
4351 # endif | |
4352 # ifdef FEAT_NETBEANS_INTG | |
2210 | 4353 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP) |
34 | 4354 netbeans_file_opened(curbuf); |
7 | 4355 # endif |
4356 } | |
4357 #endif | |
4358 | |
4359 theend: | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4360 if (did_inc_redrawing_disabled) |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
4361 --RedrawingDisabled; |
716 | 4362 #ifdef FEAT_AUTOCMD |
4363 if (did_set_swapcommand) | |
4364 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); | |
4365 #endif | |
7 | 4366 #ifdef FEAT_BROWSE |
4367 vim_free(browse_file); | |
4368 #endif | |
4369 vim_free(free_fname); | |
4370 return retval; | |
4371 } | |
4372 | |
4373 #ifdef FEAT_AUTOCMD | |
4374 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4375 delbuf_msg(char_u *name) |
7 | 4376 { |
4377 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"), | |
4378 name == NULL ? (char_u *)"" : name); | |
4379 vim_free(name); | |
9481
7520696c14b0
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents:
9469
diff
changeset
|
4380 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
|
4381 au_new_curbuf.br_buf_free_count = 0; |
7 | 4382 } |
4383 #endif | |
4384 | |
169 | 4385 static int append_indent = 0; /* autoindent for first line */ |
4386 | |
7 | 4387 /* |
4388 * ":insert" and ":append", also used by ":change" | |
4389 */ | |
4390 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4391 ex_append(exarg_T *eap) |
7 | 4392 { |
4393 char_u *theline; | |
4394 int did_undo = FALSE; | |
4395 linenr_T lnum = eap->line2; | |
165 | 4396 int indent = 0; |
4397 char_u *p; | |
4398 int vcol; | |
4399 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); | |
7 | 4400 |
169 | 4401 /* the ! flag toggles autoindent */ |
4402 if (eap->forceit) | |
4403 curbuf->b_p_ai = !curbuf->b_p_ai; | |
4404 | |
4405 /* First autoindent comes from the line we start on */ | |
4406 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) | |
4407 append_indent = get_indent_lnum(lnum); | |
4408 | |
7 | 4409 if (eap->cmdidx != CMD_append) |
4410 --lnum; | |
4411 | |
9377
5ec4fbfe38c5
commit https://github.com/vim/vim/commit/70e136e1d86ea1d795774824c7b712245912946d
Christian Brabandt <cb@256bit.org>
parents:
9347
diff
changeset
|
4412 /* when the buffer is empty need to delete the dummy line */ |
165 | 4413 if (empty && lnum == 1) |
4414 lnum = 0; | |
4415 | |
7 | 4416 State = INSERT; /* behave like in Insert mode */ |
4417 if (curbuf->b_p_iminsert == B_IMODE_LMAP) | |
4418 State |= LANGMAP; | |
165 | 4419 |
408 | 4420 for (;;) |
7 | 4421 { |
4422 msg_scroll = TRUE; | |
4423 need_wait_return = FALSE; | |
169 | 4424 if (curbuf->b_p_ai) |
4425 { | |
4426 if (append_indent >= 0) | |
4427 { | |
4428 indent = append_indent; | |
4429 append_indent = -1; | |
4430 } | |
4431 else if (lnum > 0) | |
4432 indent = get_indent_lnum(lnum); | |
4433 } | |
4434 ex_keep_indent = FALSE; | |
7 | 4435 if (eap->getline == NULL) |
169 | 4436 { |
4437 /* No getline() function, use the lines that follow. This ends | |
4438 * when there is no more. */ | |
4439 if (eap->nextcmd == NULL || *eap->nextcmd == NUL) | |
4440 break; | |
4441 p = vim_strchr(eap->nextcmd, NL); | |
4442 if (p == NULL) | |
4443 p = eap->nextcmd + STRLEN(eap->nextcmd); | |
4444 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd)); | |
4445 if (*p != NUL) | |
4446 ++p; | |
4447 eap->nextcmd = p; | |
4448 } | |
7 | 4449 else |
6164 | 4450 { |
4451 int save_State = State; | |
4452 | |
4453 /* Set State to avoid the cursor shape to be set to INSERT mode | |
4454 * when getline() returns. */ | |
4455 State = CMDLINE; | |
7 | 4456 theline = eap->getline( |
4457 #ifdef FEAT_EVAL | |
76 | 4458 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 4459 #endif |
165 | 4460 NUL, eap->cookie, indent); |
6164 | 4461 State = save_State; |
4462 } | |
7 | 4463 lines_left = Rows - 1; |
165 | 4464 if (theline == NULL) |
4465 break; | |
4466 | |
169 | 4467 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */ |
4468 if (ex_keep_indent) | |
4469 append_indent = indent; | |
4470 | |
165 | 4471 /* Look for the "." after automatic indent. */ |
4472 vcol = 0; | |
4473 for (p = theline; indent > vcol; ++p) | |
4474 { | |
4475 if (*p == ' ') | |
4476 ++vcol; | |
4477 else if (*p == TAB) | |
4478 vcol += 8 - vcol % 8; | |
4479 else | |
4480 break; | |
4481 } | |
4482 if ((p[0] == '.' && p[1] == NUL) | |
321 | 4483 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
4484 == FAIL)) | |
7 | 4485 { |
4486 vim_free(theline); | |
4487 break; | |
4488 } | |
4489 | |
169 | 4490 /* don't use autoindent if nothing was typed. */ |
4491 if (p[0] == NUL) | |
4492 theline[0] = NUL; | |
4493 | |
7 | 4494 did_undo = TRUE; |
4495 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
|
4496 appended_lines_mark(lnum + (empty ? 1 : 0), 1L); |
7 | 4497 |
4498 vim_free(theline); | |
4499 ++lnum; | |
165 | 4500 |
4501 if (empty) | |
4502 { | |
4503 ml_delete(2L, FALSE); | |
4504 empty = FALSE; | |
4505 } | |
7 | 4506 } |
4507 State = NORMAL; | |
4508 | |
169 | 4509 if (eap->forceit) |
4510 curbuf->b_p_ai = !curbuf->b_p_ai; | |
4511 | |
7 | 4512 /* "start" is set to eap->line2+1 unless that position is invalid (when |
1227 | 4513 * eap->line2 pointed to the end of the buffer and nothing was appended) |
7 | 4514 * "end" is set to lnum when something has been appended, otherwise |
4515 * it is the same than "start" -- Acevedo */ | |
4516 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ? | |
4517 eap->line2 + 1 : curbuf->b_ml.ml_line_count; | |
4518 if (eap->cmdidx != CMD_append) | |
4519 --curbuf->b_op_start.lnum; | |
4520 curbuf->b_op_end.lnum = (eap->line2 < lnum) | |
4521 ? lnum : curbuf->b_op_start.lnum; | |
4522 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
4523 curwin->w_cursor.lnum = lnum; | |
4524 check_cursor_lnum(); | |
4525 beginline(BL_SOL | BL_FIX); | |
4526 | |
4527 need_wait_return = FALSE; /* don't use wait_return() now */ | |
4528 ex_no_reprint = TRUE; | |
4529 } | |
4530 | |
4531 /* | |
4532 * ":change" | |
4533 */ | |
4534 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4535 ex_change(exarg_T *eap) |
7 | 4536 { |
4537 linenr_T lnum; | |
4538 | |
4539 if (eap->line2 >= eap->line1 | |
4540 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) | |
4541 return; | |
4542 | |
169 | 4543 /* the ! flag toggles autoindent */ |
4544 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) | |
4545 append_indent = get_indent_lnum(eap->line1); | |
4546 | |
7 | 4547 for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
4548 { | |
4549 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ | |
4550 break; | |
4551 ml_delete(eap->line1, FALSE); | |
4552 } | |
1929 | 4553 |
4554 /* make sure the cursor is not beyond the end of the file now */ | |
4555 check_cursor_lnum(); | |
7 | 4556 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
4557 | |
4558 /* ":append" on the line above the deleted lines. */ | |
4559 eap->line2 = eap->line1; | |
4560 ex_append(eap); | |
4561 } | |
4562 | |
4563 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4564 ex_z(exarg_T *eap) |
7 | 4565 { |
4566 char_u *x; | |
11303
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
4567 long bigness; |
165 | 4568 char_u *kind; |
7 | 4569 int minus = 0; |
4570 linenr_T start, end, curs, i; | |
4571 int j; | |
4572 linenr_T lnum = eap->line2; | |
4573 | |
165 | 4574 /* Vi compatible: ":z!" uses display height, without a count uses |
4575 * 'scroll' */ | |
4576 if (eap->forceit) | |
4577 bigness = curwin->w_height; | |
5678 | 4578 #ifdef FEAT_WINDOWS |
10357
59d01e335858
commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents:
10299
diff
changeset
|
4579 else if (!ONE_WINDOW) |
5678 | 4580 bigness = curwin->w_height - 3; |
4581 #endif | |
4582 else | |
165 | 4583 bigness = curwin->w_p_scr * 2; |
7 | 4584 if (bigness < 1) |
4585 bigness = 1; | |
4586 | |
4587 x = eap->arg; | |
165 | 4588 kind = x; |
4589 if (*kind == '-' || *kind == '+' || *kind == '=' | |
4590 || *kind == '^' || *kind == '.') | |
4591 ++x; | |
4592 while (*x == '-' || *x == '+') | |
7 | 4593 ++x; |
4594 | |
4595 if (*x != 0) | |
4596 { | |
4597 if (!VIM_ISDIGIT(*x)) | |
4598 { | |
4599 EMSG(_("E144: non-numeric argument to :z")); | |
4600 return; | |
4601 } | |
4602 else | |
165 | 4603 { |
11303
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
4604 bigness = atol((char *)x); |
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
4605 |
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
4606 /* bigness could be < 0 if atol(x) overflows. */ |
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
4607 if (bigness > 2 * curbuf->b_ml.ml_line_count || bigness < 0) |
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
4608 bigness = 2 * curbuf->b_ml.ml_line_count; |
ef32a5c74515
patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents:
11254
diff
changeset
|
4609 |
165 | 4610 p_window = bigness; |
169 | 4611 if (*kind == '=') |
4612 bigness += 2; | |
165 | 4613 } |
7 | 4614 } |
4615 | |
165 | 4616 /* the number of '-' and '+' multiplies the distance */ |
4617 if (*kind == '-' || *kind == '+') | |
4618 for (x = kind + 1; *x == *kind; ++x) | |
4619 ; | |
4620 | |
4621 switch (*kind) | |
7 | 4622 { |
4623 case '-': | |
2881 | 4624 start = lnum - bigness * (linenr_T)(x - kind) + 1; |
4625 end = start + bigness - 1; | |
165 | 4626 curs = end; |
7 | 4627 break; |
4628 | |
4629 case '=': | |
159 | 4630 start = lnum - (bigness + 1) / 2 + 1; |
4631 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4632 curs = lnum; |
4633 minus = 1; | |
4634 break; | |
4635 | |
4636 case '^': | |
4637 start = lnum - bigness * 2; | |
4638 end = lnum - bigness; | |
4639 curs = lnum - bigness; | |
4640 break; | |
4641 | |
4642 case '.': | |
159 | 4643 start = lnum - (bigness + 1) / 2 + 1; |
4644 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4645 curs = end; |
4646 break; | |
4647 | |
4648 default: /* '+' */ | |
4649 start = lnum; | |
165 | 4650 if (*kind == '+') |
835 | 4651 start += bigness * (linenr_T)(x - kind - 1) + 1; |
169 | 4652 else if (eap->addr_count == 0) |
4653 ++start; | |
4654 end = start + bigness - 1; | |
7 | 4655 curs = end; |
4656 break; | |
4657 } | |
4658 | |
4659 if (start < 1) | |
4660 start = 1; | |
4661 | |
4662 if (end > curbuf->b_ml.ml_line_count) | |
4663 end = curbuf->b_ml.ml_line_count; | |
4664 | |
4665 if (curs > curbuf->b_ml.ml_line_count) | |
4666 curs = curbuf->b_ml.ml_line_count; | |
11372
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
4667 else if (curs < 1) |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
4668 curs = 1; |
7 | 4669 |
4670 for (i = start; i <= end; i++) | |
4671 { | |
4672 if (minus && i == lnum) | |
4673 { | |
4674 msg_putchar('\n'); | |
4675 | |
4676 for (j = 1; j < Columns; j++) | |
4677 msg_putchar('-'); | |
4678 } | |
4679 | |
169 | 4680 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
7 | 4681 |
4682 if (minus && i == lnum) | |
4683 { | |
4684 msg_putchar('\n'); | |
4685 | |
4686 for (j = 1; j < Columns; j++) | |
4687 msg_putchar('-'); | |
4688 } | |
4689 } | |
4690 | |
11372
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
4691 if (curwin->w_cursor.lnum != curs) |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
4692 { |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
4693 curwin->w_cursor.lnum = curs; |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
4694 curwin->w_cursor.col = 0; |
1074f58e1673
patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents:
11303
diff
changeset
|
4695 } |
7 | 4696 ex_no_reprint = TRUE; |
4697 } | |
4698 | |
4699 /* | |
4700 * Check if the restricted flag is set. | |
4701 * If so, give an error message and return TRUE. | |
4702 * Otherwise, return FALSE. | |
4703 */ | |
4704 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4705 check_restricted(void) |
7 | 4706 { |
4707 if (restricted) | |
4708 { | |
4709 EMSG(_("E145: Shell commands not allowed in rvim")); | |
4710 return TRUE; | |
4711 } | |
4712 return FALSE; | |
4713 } | |
4714 | |
4715 /* | |
4716 * Check if the secure flag is set (.exrc or .vimrc in current directory). | |
4717 * If so, give an error message and return TRUE. | |
4718 * Otherwise, return FALSE. | |
4719 */ | |
4720 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4721 check_secure(void) |
7 | 4722 { |
4723 if (secure) | |
4724 { | |
4725 secure = 2; | |
4726 EMSG(_(e_curdir)); | |
4727 return TRUE; | |
4728 } | |
4729 #ifdef HAVE_SANDBOX | |
4730 /* | |
4731 * In the sandbox more things are not allowed, including the things | |
4732 * disallowed in secure mode. | |
4733 */ | |
4734 if (sandbox != 0) | |
4735 { | |
4736 EMSG(_(e_sandbox)); | |
4737 return TRUE; | |
4738 } | |
4739 #endif | |
4740 return FALSE; | |
4741 } | |
4742 | |
4743 static char_u *old_sub = NULL; /* previous substitute pattern */ | |
4744 static int global_need_beginline; /* call beginline() after ":g" */ | |
4745 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4746 /* |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4747 * 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
|
4748 */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4749 typedef struct { |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4750 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
|
4751 int do_ask; /* ask for confirmation */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4752 int do_count; /* count only */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4753 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
|
4754 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
|
4755 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
|
4756 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
|
4757 int do_ic; /* ignore case flag */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4758 } subflags_T; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4759 |
7 | 4760 /* do_sub() |
4761 * | |
4762 * Perform a substitution from line eap->line1 to line eap->line2 using the | |
4763 * command pointed to by eap->arg which should be of the form: | |
4764 * | |
4765 * /pattern/substitution/{flags} | |
4766 * | |
4767 * The usual escapes are supported as described in the regexp docs. | |
4768 */ | |
4769 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4770 do_sub(exarg_T *eap) |
7 | 4771 { |
4772 linenr_T lnum; | |
4773 long i = 0; | |
4774 regmmatch_T regmatch; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4775 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
|
4776 FALSE, FALSE, 0}; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4777 #ifdef FEAT_EVAL |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4778 subflags_T subflags_save; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4779 #endif |
6789 | 4780 int save_do_all; /* remember user specified 'g' flag */ |
4781 int save_do_ask; /* remember user specified 'c' flag */ | |
7 | 4782 char_u *pat = NULL, *sub = NULL; /* init for GCC */ |
4783 int delimiter; | |
4784 int sublen; | |
4785 int got_quit = FALSE; | |
4786 int got_match = FALSE; | |
4787 int temp; | |
4788 int which_pat; | |
4789 char_u *cmd; | |
4790 int save_State; | |
165 | 4791 linenr_T first_line = 0; /* first changed line */ |
4792 linenr_T last_line= 0; /* below last changed line AFTER the | |
7 | 4793 * change */ |
4794 linenr_T old_line_count = curbuf->b_ml.ml_line_count; | |
4795 linenr_T line2; | |
165 | 4796 long nmatch; /* number of lines in match */ |
4797 char_u *sub_firstline; /* allocated copy of first sub line */ | |
4798 int endcolumn = FALSE; /* cursor in last column when done */ | |
170 | 4799 pos_T old_cursor = curwin->w_cursor; |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4800 int start_nsubs; |
3736 | 4801 #ifdef FEAT_EVAL |
5867 | 4802 int save_ma = 0; |
3736 | 4803 #endif |
7 | 4804 |
4805 cmd = eap->arg; | |
4806 if (!global_busy) | |
4807 { | |
4808 sub_nsubs = 0; | |
4809 sub_nlines = 0; | |
4810 } | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4811 start_nsubs = sub_nsubs; |
7 | 4812 |
4813 if (eap->cmdidx == CMD_tilde) | |
4814 which_pat = RE_LAST; /* use last used regexp */ | |
4815 else | |
4816 which_pat = RE_SUBST; /* use last substitute regexp */ | |
4817 | |
4818 /* new pattern and substitution */ | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4819 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd) |
7 | 4820 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) |
4821 { | |
4822 /* don't accept alphanumeric for separator */ | |
4823 if (isalpha(*cmd)) | |
4824 { | |
4825 EMSG(_("E146: Regular expressions can't be delimited by letters")); | |
4826 return; | |
4827 } | |
4828 /* | |
4829 * undocumented vi feature: | |
4830 * "\/sub/" and "\?sub?" use last used search pattern (almost like | |
4831 * //sub/r). "\&sub&" use last substitute pattern (like //sub/). | |
4832 */ | |
4833 if (*cmd == '\\') | |
4834 { | |
4835 ++cmd; | |
4836 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
4837 { | |
4838 EMSG(_(e_backslash)); | |
4839 return; | |
4840 } | |
4841 if (*cmd != '&') | |
4842 which_pat = RE_SEARCH; /* use last '/' pattern */ | |
4843 pat = (char_u *)""; /* empty search pattern */ | |
4844 delimiter = *cmd++; /* remember delimiter character */ | |
4845 } | |
4846 else /* find the end of the regexp */ | |
4847 { | |
1466 | 4848 #ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */ |
4849 if (p_altkeymap && curwin->w_p_rl) | |
4850 lrF_sub(cmd); | |
4851 #endif | |
7 | 4852 which_pat = RE_LAST; /* use last used regexp */ |
4853 delimiter = *cmd++; /* remember delimiter character */ | |
4854 pat = cmd; /* remember start of search pat */ | |
4855 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg); | |
4856 if (cmd[0] == delimiter) /* end delimiter found */ | |
4857 *cmd++ = NUL; /* replace it with a NUL */ | |
4858 } | |
4859 | |
4860 /* | |
4861 * Small incompatibility: vi sees '\n' as end of the command, but in | |
4862 * Vim we want to use '\n' to find/substitute a NUL. | |
4863 */ | |
4864 sub = cmd; /* remember the start of the substitution */ | |
4865 | |
4866 while (cmd[0]) | |
4867 { | |
4868 if (cmd[0] == delimiter) /* end delimiter found */ | |
4869 { | |
4870 *cmd++ = NUL; /* replace it with a NUL */ | |
4871 break; | |
4872 } | |
4873 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */ | |
4874 ++cmd; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11123
diff
changeset
|
4875 MB_PTR_ADV(cmd); |
7 | 4876 } |
4877 | |
4878 if (!eap->skip) | |
4879 { | |
169 | 4880 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */ |
4881 if (STRCMP(sub, "%") == 0 | |
4882 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) | |
4883 { | |
4884 if (old_sub == NULL) /* there is no previous command */ | |
4885 { | |
4886 EMSG(_(e_nopresub)); | |
4887 return; | |
4888 } | |
4889 sub = old_sub; | |
4890 } | |
4891 else | |
4892 { | |
4893 vim_free(old_sub); | |
4894 old_sub = vim_strsave(sub); | |
4895 } | |
7 | 4896 } |
4897 } | |
4898 else if (!eap->skip) /* use previous pattern and substitution */ | |
4899 { | |
4900 if (old_sub == NULL) /* there is no previous command */ | |
4901 { | |
4902 EMSG(_(e_nopresub)); | |
4903 return; | |
4904 } | |
4905 pat = NULL; /* search_regcomp() will use previous pattern */ | |
4906 sub = old_sub; | |
163 | 4907 |
4908 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the | |
4909 * last column after using "$". */ | |
4910 endcolumn = (curwin->w_curswant == MAXCOL); | |
7 | 4911 } |
4912 | |
5776 | 4913 /* Recognize ":%s/\n//" and turn it into a join command, which is much |
4914 * more efficient. | |
4915 * TODO: find a generic solution to make line-joining operations more | |
4916 * efficient, avoid allocating a string that grows in size. | |
4917 */ | |
5802 | 4918 if (pat != NULL && STRCMP(pat, "\\n") == 0 |
5776 | 4919 && *sub == NUL |
4920 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l' | |
4921 || *cmd == 'p' || *cmd == '#')))) | |
4922 { | |
6426 | 4923 linenr_T joined_lines_count; |
4924 | |
5776 | 4925 curwin->w_cursor.lnum = eap->line1; |
4926 if (*cmd == 'l') | |
4927 eap->flags = EXFLAG_LIST; | |
4928 else if (*cmd == '#') | |
4929 eap->flags = EXFLAG_NR; | |
4930 else if (*cmd == 'p') | |
4931 eap->flags = EXFLAG_PRINT; | |
4932 | |
6426 | 4933 /* The number of lines joined is the number of lines in the range plus |
4934 * one. One less when the last line is included. */ | |
4935 joined_lines_count = eap->line2 - eap->line1 + 1; | |
4936 if (eap->line2 < curbuf->b_ml.ml_line_count) | |
4937 ++joined_lines_count; | |
4938 if (joined_lines_count > 1) | |
4939 { | |
4940 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE); | |
4941 sub_nsubs = joined_lines_count - 1; | |
4942 sub_nlines = 1; | |
4943 (void)do_sub_msg(FALSE); | |
4944 ex_may_print(eap); | |
4945 } | |
4946 | |
4947 if (!cmdmod.keeppatterns) | |
4948 save_re_pat(RE_SUBST, pat, p_magic); | |
4949 #ifdef FEAT_CMDHIST | |
4950 /* put pattern in history */ | |
4951 add_to_history(HIST_SEARCH, pat, TRUE, NUL); | |
4952 #endif | |
4953 | |
5776 | 4954 return; |
4955 } | |
4956 | |
7 | 4957 /* |
4958 * Find trailing options. When '&' is used, keep old options. | |
4959 */ | |
4960 if (*cmd == '&') | |
4961 ++cmd; | |
4962 else | |
4963 { | |
4964 if (!p_ed) | |
4965 { | |
4966 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
|
4967 subflags.do_all = TRUE; |
7 | 4968 else |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4969 subflags.do_all = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4970 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4971 } |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4972 subflags.do_error = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4973 subflags.do_print = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4974 subflags.do_count = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4975 subflags.do_number = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4976 subflags.do_ic = 0; |
7 | 4977 } |
4978 while (*cmd) | |
4979 { | |
4980 /* | |
4981 * Note that 'g' and 'c' are always inverted, also when p_ed is off. | |
4982 * 'r' is never inverted. | |
4983 */ | |
4984 if (*cmd == 'g') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4985 subflags.do_all = !subflags.do_all; |
7 | 4986 else if (*cmd == 'c') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4987 subflags.do_ask = !subflags.do_ask; |
170 | 4988 else if (*cmd == 'n') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4989 subflags.do_count = TRUE; |
7 | 4990 else if (*cmd == 'e') |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4991 subflags.do_error = !subflags.do_error; |
7 | 4992 else if (*cmd == 'r') /* use last used regexp */ |
4993 which_pat = RE_LAST; | |
4994 else if (*cmd == 'p') | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4995 subflags.do_print = TRUE; |
169 | 4996 else if (*cmd == '#') |
4997 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4998 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
4999 subflags.do_number = TRUE; |
169 | 5000 } |
5001 else if (*cmd == 'l') | |
5002 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5003 subflags.do_print = TRUE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5004 subflags.do_list = TRUE; |
169 | 5005 } |
7 | 5006 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
|
5007 subflags.do_ic = 'i'; |
7 | 5008 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
|
5009 subflags.do_ic = 'I'; |
7 | 5010 else |
5011 break; | |
5012 ++cmd; | |
5013 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5014 if (subflags.do_count) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5015 subflags.do_ask = FALSE; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5016 |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5017 save_do_all = subflags.do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5018 save_do_ask = subflags.do_ask; |
6789 | 5019 |
7 | 5020 /* |
5021 * check for a trailing count | |
5022 */ | |
5023 cmd = skipwhite(cmd); | |
5024 if (VIM_ISDIGIT(*cmd)) | |
5025 { | |
5026 i = getdigits(&cmd); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5027 if (i <= 0 && !eap->skip && subflags.do_error) |
7 | 5028 { |
5029 EMSG(_(e_zerocount)); | |
5030 return; | |
5031 } | |
5032 eap->line1 = eap->line2; | |
5033 eap->line2 += i - 1; | |
5034 if (eap->line2 > curbuf->b_ml.ml_line_count) | |
5035 eap->line2 = curbuf->b_ml.ml_line_count; | |
5036 } | |
5037 | |
5038 /* | |
5039 * check for trailing command or garbage | |
5040 */ | |
5041 cmd = skipwhite(cmd); | |
5042 if (*cmd && *cmd != '"') /* if not end-of-line or comment */ | |
5043 { | |
5044 eap->nextcmd = check_nextcmd(cmd); | |
5045 if (eap->nextcmd == NULL) | |
5046 { | |
5047 EMSG(_(e_trailing)); | |
5048 return; | |
5049 } | |
5050 } | |
5051 | |
5052 if (eap->skip) /* not executing commands, only parsing */ | |
5053 return; | |
5054 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5055 if (!subflags.do_count && !curbuf->b_p_ma) |
823 | 5056 { |
825 | 5057 /* Substitution is not allowed in non-'modifiable' buffer */ |
823 | 5058 EMSG(_(e_modifiable)); |
5059 return; | |
5060 } | |
5061 | |
7 | 5062 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
5063 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5064 if (subflags.do_error) |
7 | 5065 EMSG(_(e_invcmd)); |
5066 return; | |
5067 } | |
5068 | |
5069 /* 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
|
5070 if (subflags.do_ic == 'i') |
7 | 5071 regmatch.rmm_ic = TRUE; |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5072 else if (subflags.do_ic == 'I') |
7 | 5073 regmatch.rmm_ic = FALSE; |
5074 | |
5075 sub_firstline = NULL; | |
5076 | |
5077 /* | |
5078 * ~ in the substitute pattern is replaced with the old pattern. | |
5079 * We do it here once to avoid it to be replaced over and over again. | |
5080 * But don't do it when it starts with "\=", then it's an expression. | |
5081 */ | |
5082 if (!(sub[0] == '\\' && sub[1] == '=')) | |
5083 sub = regtilde(sub, p_magic); | |
5084 | |
5085 /* | |
5086 * Check for a match on each line. | |
5087 */ | |
5088 line2 = eap->line2; | |
5089 for (lnum = eap->line1; lnum <= line2 && !(got_quit | |
5090 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) | |
5091 || aborting() | |
5092 #endif | |
5093 ); ++lnum) | |
5094 { | |
1521 | 5095 nmatch = vim_regexec_multi(®match, curwin, curbuf, lnum, |
5096 (colnr_T)0, NULL); | |
7 | 5097 if (nmatch) |
5098 { | |
5099 colnr_T copycol; | |
5100 colnr_T matchcol; | |
5101 colnr_T prev_matchcol = MAXCOL; | |
5102 char_u *new_end, *new_start = NULL; | |
5103 unsigned new_start_len = 0; | |
5104 char_u *p1; | |
5105 int did_sub = FALSE; | |
5106 int lastone; | |
1872 | 5107 int len, copy_len, needed_len; |
7 | 5108 long nmatch_tl = 0; /* nr of lines matched below lnum */ |
5109 int do_again; /* do it again after joining lines */ | |
15 | 5110 int skip_match = FALSE; |
1499 | 5111 linenr_T sub_firstlnum; /* nr of first sub line */ |
7 | 5112 |
5113 /* | |
5114 * The new text is build up step by step, to avoid too much | |
5115 * copying. There are these pieces: | |
1581 | 5116 * sub_firstline The old text, unmodified. |
7 | 5117 * copycol Column in the old text where we started |
5118 * looking for a match; from here old text still | |
5119 * needs to be copied to the new text. | |
5120 * matchcol Column number of the old text where to look | |
5121 * for the next match. It's just after the | |
5122 * previous match or one further. | |
5123 * prev_matchcol Column just after the previous match (if any). | |
5124 * Mostly equal to matchcol, except for the first | |
5125 * match and after skipping an empty match. | |
5126 * regmatch.*pos Where the pattern matched in the old text. | |
5127 * new_start The new text, all that has been produced so | |
5128 * far. | |
5129 * new_end The new text, where to append new text. | |
5130 * | |
1499 | 5131 * lnum The line number where we found the start of |
5132 * the match. Can be below the line we searched | |
5133 * when there is a \n before a \zs in the | |
5134 * pattern. | |
7 | 5135 * sub_firstlnum The line number in the buffer where to look |
5136 * for a match. Can be different from "lnum" | |
5137 * when the pattern or substitute string contains | |
5138 * line breaks. | |
5139 * | |
5140 * Special situations: | |
5141 * - When the substitute string contains a line break, the part up | |
5142 * to the line break is inserted in the text, but the copy of | |
5143 * the original line is kept. "sub_firstlnum" is adjusted for | |
5144 * the inserted lines. | |
5145 * - When the matched pattern contains a line break, the old line | |
5146 * is taken from the line at the end of the pattern. The lines | |
5147 * in the match are deleted later, "sub_firstlnum" is adjusted | |
5148 * accordingly. | |
5149 * | |
5150 * The new text is built up in new_start[]. It has some extra | |
5151 * room to avoid using alloc()/free() too often. new_start_len is | |
1389 | 5152 * the length of the allocated memory at new_start. |
7 | 5153 * |
5154 * Make a copy of the old line, so it won't be taken away when | |
5155 * updating the screen or handling a multi-line match. The "old_" | |
5156 * pointers point into this copy. | |
5157 */ | |
1499 | 5158 sub_firstlnum = lnum; |
7 | 5159 copycol = 0; |
5160 matchcol = 0; | |
5161 | |
5162 /* At first match, remember current cursor position. */ | |
5163 if (!got_match) | |
5164 { | |
5165 setpcmark(); | |
5166 got_match = TRUE; | |
5167 } | |
5168 | |
5169 /* | |
5170 * Loop until nothing more to replace in this line. | |
5171 * 1. Handle match with empty string. | |
5172 * 2. If do_ask is set, ask for confirmation. | |
5173 * 3. substitute the string. | |
5174 * 4. if do_all is set, find next match | |
5175 * 5. break if there isn't another match in this line | |
5176 */ | |
5177 for (;;) | |
5178 { | |
1499 | 5179 /* Advance "lnum" to the line where the match starts. The |
5180 * match does not start in the first line when there is a line | |
5181 * break before \zs. */ | |
5182 if (regmatch.startpos[0].lnum > 0) | |
5183 { | |
5184 lnum += regmatch.startpos[0].lnum; | |
5185 sub_firstlnum += regmatch.startpos[0].lnum; | |
5186 nmatch -= regmatch.startpos[0].lnum; | |
5187 vim_free(sub_firstline); | |
5188 sub_firstline = NULL; | |
5189 } | |
5190 | |
5191 if (sub_firstline == NULL) | |
5192 { | |
5193 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
5194 if (sub_firstline == NULL) | |
5195 { | |
5196 vim_free(new_start); | |
5197 goto outofmem; | |
5198 } | |
5199 } | |
5200 | |
7 | 5201 /* Save the line number of the last change for the final |
5202 * cursor position (just like Vi). */ | |
5203 curwin->w_cursor.lnum = lnum; | |
5204 do_again = FALSE; | |
5205 | |
5206 /* | |
5207 * 1. Match empty string does not count, except for first | |
5208 * match. This reproduces the strange vi behaviour. | |
5209 * This also catches endless loops. | |
5210 */ | |
5211 if (matchcol == prev_matchcol | |
5212 && regmatch.endpos[0].lnum == 0 | |
5213 && matchcol == regmatch.endpos[0].col) | |
5214 { | |
15 | 5215 if (sub_firstline[matchcol] == NUL) |
5216 /* We already were at the end of the line. Don't look | |
5217 * for a match in this line again. */ | |
5218 skip_match = TRUE; | |
5219 else | |
2837 | 5220 { |
5221 /* search for a match at next column */ | |
5222 #ifdef FEAT_MBYTE | |
5223 if (has_mbyte) | |
5224 matchcol += mb_ptr2len(sub_firstline + matchcol); | |
5225 else | |
5226 #endif | |
5227 ++matchcol; | |
5228 } | |
7 | 5229 goto skip; |
5230 } | |
5231 | |
5232 /* Normally we continue searching for a match just after the | |
5233 * previous match. */ | |
5234 matchcol = regmatch.endpos[0].col; | |
5235 prev_matchcol = matchcol; | |
5236 | |
5237 /* | |
170 | 5238 * 2. If do_count is set only increase the counter. |
5239 * If do_ask is set, ask for confirmation. | |
7 | 5240 */ |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5241 if (subflags.do_count) |
170 | 5242 { |
5243 /* For a multi-line match, put matchcol at the NUL at | |
5244 * the end of the line and set nmatch to one, so that | |
5245 * we continue looking for a match on the next line. | |
5246 * Avoids that ":s/\nB\@=//gc" get stuck. */ | |
5247 if (nmatch > 1) | |
5248 { | |
835 | 5249 matchcol = (colnr_T)STRLEN(sub_firstline); |
170 | 5250 nmatch = 1; |
1483 | 5251 skip_match = TRUE; |
170 | 5252 } |
5253 sub_nsubs++; | |
5254 did_sub = TRUE; | |
3736 | 5255 #ifdef FEAT_EVAL |
5256 /* Skip the substitution, unless an expression is used, | |
5257 * then it is evaluated in the sandbox. */ | |
5258 if (!(sub[0] == '\\' && sub[1] == '=')) | |
5259 #endif | |
5260 goto skip; | |
170 | 5261 } |
5262 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5263 if (subflags.do_ask) |
7 | 5264 { |
1874 | 5265 int typed = 0; |
1872 | 5266 |
7 | 5267 /* change State to CONFIRM, so that the mouse works |
5268 * properly */ | |
5269 save_State = State; | |
5270 State = CONFIRM; | |
5271 #ifdef FEAT_MOUSE | |
5272 setmouse(); /* disable mouse in xterm */ | |
5273 #endif | |
5274 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
|
5275 #ifdef FEAT_CURSORBIND |
21f983648487
patch 8.0.0209: cursor binding does not work with :substitute
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
5276 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
|
5277 do_check_cursorbind(); |
21f983648487
patch 8.0.0209: cursor binding does not work with :substitute
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
5278 #endif |
7 | 5279 |
5280 /* When 'cpoptions' contains "u" don't sync undo when | |
5281 * asking for confirmation. */ | |
5282 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
5283 ++no_u_sync; | |
5284 | |
5285 /* | |
5286 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. | |
5287 */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5288 while (subflags.do_ask) |
7 | 5289 { |
169 | 5290 if (exmode_active) |
5291 { | |
5292 char_u *resp; | |
5293 colnr_T sc, ec; | |
5294 | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5295 print_line_no_prefix(lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5296 subflags.do_number, subflags.do_list); |
169 | 5297 |
5298 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); | |
5299 curwin->w_cursor.col = regmatch.endpos[0].col - 1; | |
10970
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10853
diff
changeset
|
5300 if (curwin->w_cursor.col < 0) |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10853
diff
changeset
|
5301 curwin->w_cursor.col = 0; |
169 | 5302 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
|
5303 if (subflags.do_number || curwin->w_p_nu) |
5396 | 5304 { |
5305 int numw = number_width(curwin) + 1; | |
5306 sc += numw; | |
5307 ec += numw; | |
5308 } | |
169 | 5309 msg_start(); |
170 | 5310 for (i = 0; i < (long)sc; ++i) |
169 | 5311 msg_putchar(' '); |
170 | 5312 for ( ; i <= (long)ec; ++i) |
169 | 5313 msg_putchar('^'); |
5314 | |
5315 resp = getexmodeline('?', NULL, 0); | |
5316 if (resp != NULL) | |
5317 { | |
1872 | 5318 typed = *resp; |
169 | 5319 vim_free(resp); |
5320 } | |
5321 } | |
5322 else | |
5323 { | |
4076 | 5324 char_u *orig_line = NULL; |
5325 int len_change = 0; | |
7 | 5326 #ifdef FEAT_FOLDING |
169 | 5327 int save_p_fen = curwin->w_p_fen; |
5328 | |
5329 curwin->w_p_fen = FALSE; | |
5330 #endif | |
5331 /* Invert the matched string. | |
5332 * Remove the inversion afterwards. */ | |
5333 temp = RedrawingDisabled; | |
5334 RedrawingDisabled = 0; | |
5335 | |
4076 | 5336 if (new_start != NULL) |
5337 { | |
5338 /* There already was a substitution, we would | |
5339 * like to show this to the user. We cannot | |
5340 * really update the line, it would change | |
5341 * what matches. Temporarily replace the line | |
5342 * and change it back afterwards. */ | |
5343 orig_line = vim_strsave(ml_get(lnum)); | |
5344 if (orig_line != NULL) | |
5345 { | |
5346 char_u *new_line = concat_str(new_start, | |
5347 sub_firstline + copycol); | |
5348 | |
5349 if (new_line == NULL) | |
5350 { | |
5351 vim_free(orig_line); | |
5352 orig_line = NULL; | |
5353 } | |
5354 else | |
5355 { | |
5356 /* Position the cursor relative to the | |
5357 * end of the line, the previous | |
5358 * substitute may have inserted or | |
5359 * deleted characters before the | |
5360 * cursor. */ | |
4086 | 5361 len_change = (int)STRLEN(new_line) |
5362 - (int)STRLEN(orig_line); | |
4076 | 5363 curwin->w_cursor.col += len_change; |
5364 ml_replace(lnum, new_line, FALSE); | |
5365 } | |
5366 } | |
5367 } | |
5368 | |
1499 | 5369 search_match_lines = regmatch.endpos[0].lnum |
5370 - regmatch.startpos[0].lnum; | |
4076 | 5371 search_match_endcol = regmatch.endpos[0].col |
5372 + len_change; | |
169 | 5373 highlight_match = TRUE; |
5374 | |
5375 update_topline(); | |
5376 validate_cursor(); | |
748 | 5377 update_screen(SOME_VALID); |
169 | 5378 highlight_match = FALSE; |
748 | 5379 redraw_later(SOME_VALID); |
7 | 5380 |
5381 #ifdef FEAT_FOLDING | |
169 | 5382 curwin->w_p_fen = save_p_fen; |
5383 #endif | |
5384 if (msg_row == Rows - 1) | |
5385 msg_didout = FALSE; /* avoid a scroll-up */ | |
5386 msg_starthere(); | |
5387 i = msg_scroll; | |
5388 msg_scroll = 0; /* truncate msg when | |
5389 needed */ | |
5390 msg_no_more = TRUE; | |
5391 /* write message same highlighting as for | |
5392 * wait_return */ | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11144
diff
changeset
|
5393 smsg_attr(HL_ATTR(HLF_R), |
169 | 5394 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); |
5395 msg_no_more = FALSE; | |
5396 msg_scroll = i; | |
5397 showruler(TRUE); | |
5398 windgoto(msg_row, msg_col); | |
5399 RedrawingDisabled = temp; | |
7 | 5400 |
5401 #ifdef USE_ON_FLY_SCROLL | |
169 | 5402 dont_scroll = FALSE; /* allow scrolling here */ |
5403 #endif | |
5404 ++no_mapping; /* don't map this key */ | |
5405 ++allow_keys; /* allow special keys */ | |
1872 | 5406 typed = plain_vgetc(); |
169 | 5407 --allow_keys; |
5408 --no_mapping; | |
5409 | |
5410 /* clear the question */ | |
5411 msg_didout = FALSE; /* don't scroll up */ | |
5412 msg_col = 0; | |
5413 gotocmdline(TRUE); | |
4076 | 5414 |
5415 /* restore the line */ | |
5416 if (orig_line != NULL) | |
5417 ml_replace(lnum, orig_line, FALSE); | |
169 | 5418 } |
5419 | |
7 | 5420 need_wait_return = FALSE; /* no hit-return prompt */ |
1872 | 5421 if (typed == 'q' || typed == ESC || typed == Ctrl_C |
7 | 5422 #ifdef UNIX |
1872 | 5423 || typed == intr_char |
7 | 5424 #endif |
5425 ) | |
5426 { | |
5427 got_quit = TRUE; | |
5428 break; | |
5429 } | |
1872 | 5430 if (typed == 'n') |
7 | 5431 break; |
1872 | 5432 if (typed == 'y') |
7 | 5433 break; |
1872 | 5434 if (typed == 'l') |
7 | 5435 { |
5436 /* last: replace and then stop */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5437 subflags.do_all = FALSE; |
7 | 5438 line2 = lnum; |
5439 break; | |
5440 } | |
1872 | 5441 if (typed == 'a') |
7 | 5442 { |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5443 subflags.do_ask = FALSE; |
7 | 5444 break; |
5445 } | |
5446 #ifdef FEAT_INS_EXPAND | |
1872 | 5447 if (typed == Ctrl_E) |
7 | 5448 scrollup_clamp(); |
1872 | 5449 else if (typed == Ctrl_Y) |
7 | 5450 scrolldown_clamp(); |
5451 #endif | |
5452 } | |
5453 State = save_State; | |
5454 #ifdef FEAT_MOUSE | |
5455 setmouse(); | |
5456 #endif | |
5457 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
5458 --no_u_sync; | |
5459 | |
1872 | 5460 if (typed == 'n') |
7 | 5461 { |
5462 /* For a multi-line match, put matchcol at the NUL at | |
5463 * the end of the line and set nmatch to one, so that | |
5464 * we continue looking for a match on the next line. | |
1091 | 5465 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc" |
5466 * get stuck when pressing 'n'. */ | |
7 | 5467 if (nmatch > 1) |
5468 { | |
835 | 5469 matchcol = (colnr_T)STRLEN(sub_firstline); |
1091 | 5470 skip_match = TRUE; |
7 | 5471 } |
5472 goto skip; | |
5473 } | |
5474 if (got_quit) | |
4099 | 5475 goto skip; |
7 | 5476 } |
5477 | |
5478 /* Move the cursor to the start of the match, so that we can | |
5479 * use "\=col("."). */ | |
5480 curwin->w_cursor.col = regmatch.startpos[0].col; | |
5481 | |
5482 /* | |
5483 * 3. substitute the string. | |
5484 */ | |
3736 | 5485 #ifdef FEAT_EVAL |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5486 if (subflags.do_count) |
3736 | 5487 { |
3786 | 5488 /* prevent accidentally changing the buffer by a function */ |
3736 | 5489 save_ma = curbuf->b_p_ma; |
5490 curbuf->b_p_ma = FALSE; | |
5491 sandbox++; | |
5492 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5493 /* 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
|
5494 * :s/^/\=execute("s#^##gn") */ |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5495 subflags_save = subflags; |
3736 | 5496 #endif |
7 | 5497 /* get length of substitution part */ |
1499 | 5498 sublen = vim_regsub_multi(®match, |
5499 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 5500 sub, sub_firstline, FALSE, p_magic, TRUE); |
3736 | 5501 #ifdef FEAT_EVAL |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5502 /* 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
|
5503 subflags = subflags_save; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5504 if (subflags.do_count) |
3736 | 5505 { |
5506 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
|
5507 if (sandbox > 0) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5508 sandbox--; |
3736 | 5509 goto skip; |
5510 } | |
5511 #endif | |
7 | 5512 |
533 | 5513 /* When the match included the "$" of the last line it may |
819 | 5514 * go beyond the last line of the buffer. */ |
533 | 5515 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
5516 { | |
5517 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; | |
5518 skip_match = TRUE; | |
5519 } | |
5520 | |
7 | 5521 /* Need room for: |
5522 * - result so far in new_start (not for first sub in line) | |
5523 * - original text up to match | |
5524 * - length of substituted part | |
5525 * - original text after match | |
5526 */ | |
5527 if (nmatch == 1) | |
5528 p1 = sub_firstline; | |
5529 else | |
5530 { | |
5531 p1 = ml_get(sub_firstlnum + nmatch - 1); | |
5532 nmatch_tl += nmatch - 1; | |
5533 } | |
1872 | 5534 copy_len = regmatch.startpos[0].col - copycol; |
5535 needed_len = copy_len + ((unsigned)STRLEN(p1) | |
5536 - regmatch.endpos[0].col) + sublen + 1; | |
7 | 5537 if (new_start == NULL) |
5538 { | |
5539 /* | |
5540 * Get some space for a temporary buffer to do the | |
5541 * substitution into (and some extra space to avoid | |
5542 * too many calls to alloc()/free()). | |
5543 */ | |
5544 new_start_len = needed_len + 50; | |
5545 if ((new_start = alloc_check(new_start_len)) == NULL) | |
5546 goto outofmem; | |
5547 *new_start = NUL; | |
5548 new_end = new_start; | |
5549 } | |
5550 else | |
5551 { | |
5552 /* | |
5553 * Check if the temporary buffer is long enough to do the | |
5554 * substitution into. If not, make it larger (with a bit | |
5555 * extra to avoid too many calls to alloc()/free()). | |
5556 */ | |
5557 len = (unsigned)STRLEN(new_start); | |
5558 needed_len += len; | |
1872 | 5559 if (needed_len > (int)new_start_len) |
7 | 5560 { |
5561 new_start_len = needed_len + 50; | |
5562 if ((p1 = alloc_check(new_start_len)) == NULL) | |
5563 { | |
5564 vim_free(new_start); | |
5565 goto outofmem; | |
5566 } | |
5567 mch_memmove(p1, new_start, (size_t)(len + 1)); | |
5568 vim_free(new_start); | |
5569 new_start = p1; | |
5570 } | |
5571 new_end = new_start + len; | |
5572 } | |
5573 | |
5574 /* | |
5575 * copy the text up to the part that matched | |
5576 */ | |
1872 | 5577 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); |
5578 new_end += copy_len; | |
7 | 5579 |
1499 | 5580 (void)vim_regsub_multi(®match, |
5581 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 5582 sub, new_end, TRUE, p_magic, TRUE); |
5583 sub_nsubs++; | |
5584 did_sub = TRUE; | |
5585 | |
5586 /* Move the cursor to the start of the line, to avoid that it | |
5587 * is beyond the end of the line after the substitution. */ | |
5588 curwin->w_cursor.col = 0; | |
5589 | |
5590 /* For a multi-line match, make a copy of the last matched | |
5591 * line and continue in that one. */ | |
5592 if (nmatch > 1) | |
5593 { | |
5594 sub_firstlnum += nmatch - 1; | |
5595 vim_free(sub_firstline); | |
5596 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
5597 /* When going beyond the last line, stop substituting. */ | |
5598 if (sub_firstlnum <= line2) | |
5599 do_again = TRUE; | |
5600 else | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5601 subflags.do_all = FALSE; |
7 | 5602 } |
5603 | |
5604 /* Remember next character to be copied. */ | |
5605 copycol = regmatch.endpos[0].col; | |
5606 | |
819 | 5607 if (skip_match) |
5608 { | |
5609 /* Already hit end of the buffer, sub_firstlnum is one | |
5610 * less than what it ought to be. */ | |
5611 vim_free(sub_firstline); | |
5612 sub_firstline = vim_strsave((char_u *)""); | |
5613 copycol = 0; | |
5614 } | |
5615 | |
7 | 5616 /* |
5617 * Now the trick is to replace CTRL-M chars with a real line | |
5618 * break. This would make it impossible to insert a CTRL-M in | |
5619 * the text. The line break can be avoided by preceding the | |
5620 * CTRL-M with a backslash. To be able to insert a backslash, | |
5621 * they must be doubled in the string and are halved here. | |
5622 * That is Vi compatible. | |
5623 */ | |
5624 for (p1 = new_end; *p1; ++p1) | |
5625 { | |
5626 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */ | |
1624 | 5627 STRMOVE(p1, p1 + 1); |
7 | 5628 else if (*p1 == CAR) |
5629 { | |
5630 if (u_inssub(lnum) == OK) /* prepare for undo */ | |
5631 { | |
5632 *p1 = NUL; /* truncate up to the CR */ | |
5633 ml_append(lnum - 1, new_start, | |
5634 (colnr_T)(p1 - new_start + 1), FALSE); | |
5635 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
|
5636 if (subflags.do_ask) |
7 | 5637 appended_lines(lnum - 1, 1L); |
5638 else | |
5639 { | |
5640 if (first_line == 0) | |
5641 first_line = lnum; | |
5642 last_line = lnum + 1; | |
5643 } | |
5644 /* All line numbers increase. */ | |
5645 ++sub_firstlnum; | |
5646 ++lnum; | |
5647 ++line2; | |
5648 /* move the cursor to the new line, like Vi */ | |
5649 ++curwin->w_cursor.lnum; | |
1444 | 5650 /* copy the rest */ |
1624 | 5651 STRMOVE(new_start, p1 + 1); |
7 | 5652 p1 = new_start - 1; |
5653 } | |
5654 } | |
5655 #ifdef FEAT_MBYTE | |
5656 else if (has_mbyte) | |
474 | 5657 p1 += (*mb_ptr2len)(p1) - 1; |
7 | 5658 #endif |
5659 } | |
5660 | |
5661 /* | |
5662 * 4. If do_all is set, find next match. | |
5663 * Prevent endless loop with patterns that match empty | |
5664 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. | |
5665 * But ":s/\n/#/" is OK. | |
5666 */ | |
5667 skip: | |
5668 /* We already know that we did the last subst when we are at | |
5669 * the end of the line, except that a pattern like | |
1499 | 5670 * "bar\|\nfoo" may match at the NUL. "lnum" can be below |
5671 * "line2" when there is a \zs in the pattern after a line | |
5672 * break. */ | |
15 | 5673 lastone = (skip_match |
5674 || got_int | |
5675 || got_quit | |
1499 | 5676 || lnum > line2 |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5677 || !(subflags.do_all || do_again) |
15 | 5678 || (sub_firstline[matchcol] == NUL && nmatch <= 1 |
5679 && !re_multiline(regmatch.regprog))); | |
7 | 5680 nmatch = -1; |
5681 | |
5682 /* | |
5683 * Replace the line in the buffer when needed. This is | |
5684 * skipped when there are more matches. | |
5685 * The check for nmatch_tl is needed for when multi-line | |
5686 * matching must replace the lines before trying to do another | |
5687 * match, otherwise "\@<=" won't work. | |
1499 | 5688 * When the match starts below where we start searching also |
5689 * need to replace the line first (using \zs after \n). | |
7 | 5690 */ |
5691 if (lastone | |
5692 || nmatch_tl > 0 | |
5693 || (nmatch = vim_regexec_multi(®match, curwin, | |
1521 | 5694 curbuf, sub_firstlnum, |
5695 matchcol, NULL)) == 0 | |
1499 | 5696 || regmatch.startpos[0].lnum > 0) |
7 | 5697 { |
5698 if (new_start != NULL) | |
5699 { | |
5700 /* | |
5701 * Copy the rest of the line, that didn't match. | |
5702 * "matchcol" has to be adjusted, we use the end of | |
5703 * the line as reference, because the substitute may | |
5704 * have changed the number of characters. Same for | |
5705 * "prev_matchcol". | |
5706 */ | |
5707 STRCAT(new_start, sub_firstline + copycol); | |
5708 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5709 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5710 - prev_matchcol; | |
5711 | |
5712 if (u_savesub(lnum) != OK) | |
5713 break; | |
5714 ml_replace(lnum, new_start, TRUE); | |
5715 | |
5716 if (nmatch_tl > 0) | |
5717 { | |
5718 /* | |
5719 * Matched lines have now been substituted and are | |
5720 * useless, delete them. The part after the match | |
5721 * has been appended to new_start, we don't need | |
5722 * it in the buffer. | |
5723 */ | |
5724 ++lnum; | |
5725 if (u_savedel(lnum, nmatch_tl) != OK) | |
5726 break; | |
5727 for (i = 0; i < nmatch_tl; ++i) | |
5728 ml_delete(lnum, (int)FALSE); | |
5729 mark_adjust(lnum, lnum + nmatch_tl - 1, | |
5730 (long)MAXLNUM, -nmatch_tl); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5731 if (subflags.do_ask) |
7 | 5732 deleted_lines(lnum, nmatch_tl); |
5733 --lnum; | |
5734 line2 -= nmatch_tl; /* nr of lines decreases */ | |
5735 nmatch_tl = 0; | |
5736 } | |
5737 | |
5738 /* When asking, undo is saved each time, must also set | |
5739 * changed flag each time. */ | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5740 if (subflags.do_ask) |
7 | 5741 changed_bytes(lnum, 0); |
5742 else | |
5743 { | |
5744 if (first_line == 0) | |
5745 first_line = lnum; | |
5746 last_line = lnum + 1; | |
5747 } | |
5748 | |
5749 sub_firstlnum = lnum; | |
5750 vim_free(sub_firstline); /* free the temp buffer */ | |
5751 sub_firstline = new_start; | |
5752 new_start = NULL; | |
5753 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5754 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5755 - prev_matchcol; | |
5756 copycol = 0; | |
5757 } | |
5758 if (nmatch == -1 && !lastone) | |
5759 nmatch = vim_regexec_multi(®match, curwin, curbuf, | |
1521 | 5760 sub_firstlnum, matchcol, NULL); |
7 | 5761 |
5762 /* | |
5763 * 5. break if there isn't another match in this line | |
5764 */ | |
5765 if (nmatch <= 0) | |
1499 | 5766 { |
5767 /* If the match found didn't start where we were | |
5768 * searching, do the next search in the line where we | |
5769 * found the match. */ | |
5770 if (nmatch == -1) | |
5771 lnum -= regmatch.startpos[0].lnum; | |
7 | 5772 break; |
1499 | 5773 } |
7 | 5774 } |
5775 | |
5776 line_breakcheck(); | |
5777 } | |
5778 | |
5779 if (did_sub) | |
5780 ++sub_nlines; | |
1720 | 5781 vim_free(new_start); /* for when substitute was cancelled */ |
7 | 5782 vim_free(sub_firstline); /* free the copy of the original line */ |
5783 sub_firstline = NULL; | |
5784 } | |
5785 | |
5786 line_breakcheck(); | |
5787 } | |
5788 | |
5789 if (first_line != 0) | |
5790 { | |
5791 /* Need to subtract the number of added lines from "last_line" to get | |
5792 * the line number before the change (same as adding the number of | |
5793 * deleted lines). */ | |
5794 i = curbuf->b_ml.ml_line_count - old_line_count; | |
5795 changed_lines(first_line, 0, last_line - i, i); | |
5796 } | |
5797 | |
5798 outofmem: | |
5799 vim_free(sub_firstline); /* may have to free allocated copy of the line */ | |
170 | 5800 |
5801 /* ":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
|
5802 if (subflags.do_count) |
170 | 5803 curwin->w_cursor = old_cursor; |
5804 | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
5805 if (sub_nsubs > start_nsubs) |
7 | 5806 { |
5807 /* Set the '[ and '] marks. */ | |
5808 curbuf->b_op_start.lnum = eap->line1; | |
5809 curbuf->b_op_end.lnum = line2; | |
5810 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
5811 | |
5812 if (!global_busy) | |
5813 { | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5814 /* 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
|
5815 if (!subflags.do_ask) |
3394 | 5816 { |
5817 if (endcolumn) | |
5818 coladvance((colnr_T)MAXCOL); | |
5819 else | |
5820 beginline(BL_WHITE | BL_FIX); | |
5821 } | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5822 if (!do_sub_msg(subflags.do_count) && subflags.do_ask) |
7 | 5823 MSG(""); |
5824 } | |
5825 else | |
5826 global_need_beginline = TRUE; | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5827 if (subflags.do_print) |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5828 print_line(curwin->w_cursor.lnum, |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5829 subflags.do_number, subflags.do_list); |
7 | 5830 } |
5831 else if (!global_busy) | |
5832 { | |
5833 if (got_int) /* interrupted */ | |
5834 EMSG(_(e_interr)); | |
5835 else if (got_match) /* did find something but nothing substituted */ | |
5836 MSG(""); | |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5837 else if (subflags.do_error) /* nothing found */ |
7 | 5838 EMSG2(_(e_patnotf2), get_search_pat()); |
5839 } | |
5840 | |
4035 | 5841 #ifdef FEAT_FOLDING |
9890
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5842 if (subflags.do_ask && hasAnyFolding(curwin)) |
4035 | 5843 /* Cursor position may require updating */ |
5844 changed_window_setting(); | |
5845 #endif | |
5846 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
5847 vim_regfree(regmatch.regprog); |
6789 | 5848 |
5849 /* 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
|
5850 subflags.do_all = save_do_all; |
064effd222a3
commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents:
9715
diff
changeset
|
5851 subflags.do_ask = save_do_ask; |
7 | 5852 } |
5853 | |
5854 /* | |
5855 * Give message for number of substitutions. | |
5856 * Can also be used after a ":global" command. | |
5857 * Return TRUE if a message was given. | |
5858 */ | |
484 | 5859 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5860 do_sub_msg( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5861 int count_only) /* used 'n' flag for ":s" */ |
7 | 5862 { |
5863 /* | |
5864 * Only report substitutions when: | |
5865 * - more than 'report' substitutions | |
5866 * - command was typed by user, or number of changed lines > 'report' | |
5867 * - giving messages is not disabled by 'lazyredraw' | |
5868 */ | |
170 | 5869 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
5870 || count_only) | |
7 | 5871 && messaging()) |
5872 { | |
5873 if (got_int) | |
5874 STRCPY(msg_buf, _("(Interrupted) ")); | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5875 else |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5876 *msg_buf = NUL; |
7 | 5877 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
|
5878 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5879 "%s", count_only ? _("1 match") : _("1 substitution")); |
7 | 5880 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5881 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
170 | 5882 count_only ? _("%ld matches") : _("%ld substitutions"), |
7 | 5883 sub_nsubs); |
5884 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
|
5885 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5886 "%s", _(" on 1 line")); |
7 | 5887 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5888 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5889 _(" on %ld lines"), (long)sub_nlines); |
7 | 5890 if (msg(msg_buf)) |
5891 /* save message to display it after redraw */ | |
680 | 5892 set_keep_msg(msg_buf, 0); |
7 | 5893 return TRUE; |
5894 } | |
5895 if (got_int) | |
5896 { | |
5897 EMSG(_(e_interr)); | |
5898 return TRUE; | |
5899 } | |
5900 return FALSE; | |
5901 } | |
5902 | |
5903 /* | |
5904 * Execute a global command of the form: | |
5905 * | |
5906 * g/pattern/X : execute X on all lines where pattern matches | |
5907 * v/pattern/X : execute X on all lines where pattern does not match | |
5908 * | |
5909 * where 'X' is an EX command | |
5910 * | |
5911 * The command character (as well as the trailing slash) is optional, and | |
5912 * is assumed to be 'p' if missing. | |
5913 * | |
5914 * This is implemented in two passes: first we scan the file for the pattern and | |
3786 | 5915 * set a mark for each line that (not) matches. Secondly we execute the command |
7 | 5916 * for each line that has a mark. This is required because after deleting |
5917 * lines we do not know where to search for the next match. | |
5918 */ | |
5919 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5920 ex_global(exarg_T *eap) |
7 | 5921 { |
5922 linenr_T lnum; /* line number according to old situation */ | |
170 | 5923 int ndone = 0; |
7 | 5924 int type; /* first char of cmd: 'v' or 'g' */ |
5925 char_u *cmd; /* command argument */ | |
5926 | |
5927 char_u delim; /* delimiter, normally '/' */ | |
5928 char_u *pat; | |
5929 regmmatch_T regmatch; | |
5930 int match; | |
5931 int which_pat; | |
5932 | |
5933 if (global_busy) | |
5934 { | |
5935 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */ | |
5936 return; | |
5937 } | |
5938 | |
5939 if (eap->forceit) /* ":global!" is like ":vglobal" */ | |
5940 type = 'v'; | |
5941 else | |
5942 type = *eap->cmd; | |
5943 cmd = eap->arg; | |
5944 which_pat = RE_LAST; /* default: use last used regexp */ | |
5945 | |
5946 /* | |
5947 * undocumented vi feature: | |
5948 * "\/" and "\?": use previous search pattern. | |
5949 * "\&": use previous substitute pattern. | |
5950 */ | |
5951 if (*cmd == '\\') | |
5952 { | |
5953 ++cmd; | |
5954 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
5955 { | |
5956 EMSG(_(e_backslash)); | |
5957 return; | |
5958 } | |
5959 if (*cmd == '&') | |
5960 which_pat = RE_SUBST; /* use previous substitute pattern */ | |
5961 else | |
5962 which_pat = RE_SEARCH; /* use previous search pattern */ | |
5963 ++cmd; | |
5964 pat = (char_u *)""; | |
5965 } | |
5966 else if (*cmd == NUL) | |
5967 { | |
5968 EMSG(_("E148: Regular expression missing from global")); | |
5969 return; | |
5970 } | |
5971 else | |
5972 { | |
5973 delim = *cmd; /* get the delimiter */ | |
5974 if (delim) | |
5975 ++cmd; /* skip delimiter if there is one */ | |
5976 pat = cmd; /* remember start of pattern */ | |
5977 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg); | |
5978 if (cmd[0] == delim) /* end delimiter found */ | |
5979 *cmd++ = NUL; /* replace it with a NUL */ | |
5980 } | |
5981 | |
5982 #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */ | |
5983 if (p_altkeymap && curwin->w_p_rl) | |
5984 lrFswap(pat,0); | |
5985 #endif | |
5986 | |
5987 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) | |
5988 { | |
5989 EMSG(_(e_invcmd)); | |
5990 return; | |
5991 } | |
5992 | |
5993 /* | |
5994 * pass 1: set marks for each (not) matching line | |
5995 */ | |
5996 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum) | |
5997 { | |
5998 /* a match on this line? */ | |
1521 | 5999 match = vim_regexec_multi(®match, curwin, curbuf, lnum, |
6000 (colnr_T)0, NULL); | |
7 | 6001 if ((type == 'g' && match) || (type == 'v' && !match)) |
6002 { | |
6003 ml_setmarked(lnum); | |
6004 ndone++; | |
6005 } | |
6006 line_breakcheck(); | |
6007 } | |
6008 | |
6009 /* | |
6010 * pass 2: execute the command for each line that has been marked | |
6011 */ | |
6012 if (got_int) | |
6013 MSG(_(e_interr)); | |
6014 else if (ndone == 0) | |
6015 { | |
6016 if (type == 'v') | |
274 | 6017 smsg((char_u *)_("Pattern found in every line: %s"), pat); |
7 | 6018 else |
4195 | 6019 smsg((char_u *)_("Pattern not found: %s"), pat); |
7 | 6020 } |
6021 else | |
6116 | 6022 { |
6023 #ifdef FEAT_CLIPBOARD | |
6024 start_global_changes(); | |
6025 #endif | |
7 | 6026 global_exe(cmd); |
6116 | 6027 #ifdef FEAT_CLIPBOARD |
6028 end_global_changes(); | |
6029 #endif | |
6030 } | |
7 | 6031 |
6032 ml_clearmarked(); /* clear rest of the marks */ | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
6033 vim_regfree(regmatch.regprog); |
7 | 6034 } |
6035 | |
6036 /* | |
6037 * Execute "cmd" on lines marked with ml_setmarked(). | |
6038 */ | |
6039 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6040 global_exe(char_u *cmd) |
7 | 6041 { |
2819 | 6042 linenr_T old_lcount; /* b_ml.ml_line_count before the command */ |
6043 buf_T *old_buf = curbuf; /* remember what buffer we started in */ | |
6044 linenr_T lnum; /* line number according to old situation */ | |
7 | 6045 |
6046 /* | |
6047 * Set current position only once for a global command. | |
6048 * If global_busy is set, setpcmark() will not do anything. | |
6049 * If there is an error, global_busy will be incremented. | |
6050 */ | |
6051 setpcmark(); | |
6052 | |
6053 /* When the command writes a message, don't overwrite the command. */ | |
6054 msg_didout = TRUE; | |
6055 | |
2127
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
6056 sub_nsubs = 0; |
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
6057 sub_nlines = 0; |
7 | 6058 global_need_beginline = FALSE; |
6059 global_busy = 1; | |
6060 old_lcount = curbuf->b_ml.ml_line_count; | |
6061 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) | |
6062 { | |
6063 curwin->w_cursor.lnum = lnum; | |
6064 curwin->w_cursor.col = 0; | |
6065 if (*cmd == NUL || *cmd == '\n') | |
6066 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT); | |
6067 else | |
6068 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT); | |
6069 ui_breakcheck(); | |
6070 } | |
6071 | |
6072 global_busy = 0; | |
6073 if (global_need_beginline) | |
6074 beginline(BL_WHITE | BL_FIX); | |
6075 else | |
6076 check_cursor(); /* cursor may be beyond the end of the line */ | |
6077 | |
39 | 6078 /* the cursor may not have moved in the text but a change in a previous |
6079 * line may move it on the screen */ | |
6080 changed_line_abv_curs(); | |
6081 | |
7 | 6082 /* If it looks like no message was written, allow overwriting the |
6083 * command with the report for number of changes. */ | |
6084 if (msg_col == 0 && msg_scrolled == 0) | |
6085 msg_didout = FALSE; | |
6086 | |
1227 | 6087 /* If substitutes done, report number of substitutes, otherwise report |
2819 | 6088 * number of extra or deleted lines. |
6089 * Don't report extra or deleted lines in the edge case where the buffer | |
6090 * we are in after execution is different from the buffer we started in. */ | |
6091 if (!do_sub_msg(FALSE) && curbuf == old_buf) | |
7 | 6092 msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
6093 } | |
6094 | |
6095 #ifdef FEAT_VIMINFO | |
6096 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6097 read_viminfo_sub_string(vir_T *virp, int force) |
7 | 6098 { |
2690 | 6099 if (force) |
7 | 6100 vim_free(old_sub); |
6101 if (force || old_sub == NULL) | |
6102 old_sub = viminfo_readstring(virp, 1, TRUE); | |
6103 return viminfo_readline(virp); | |
6104 } | |
6105 | |
6106 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6107 write_viminfo_sub_string(FILE *fp) |
7 | 6108 { |
6109 if (get_viminfo_parameter('/') != 0 && old_sub != NULL) | |
6110 { | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
6111 fputs(_("\n# Last Substitute String:\n$"), fp); |
7 | 6112 viminfo_writestring(fp, old_sub); |
6113 } | |
6114 } | |
6115 #endif /* FEAT_VIMINFO */ | |
6116 | |
359 | 6117 #if defined(EXITFREE) || defined(PROTO) |
6118 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6119 free_old_sub(void) |
359 | 6120 { |
6121 vim_free(old_sub); | |
6122 } | |
6123 #endif | |
6124 | |
7 | 6125 #if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO) |
6126 /* | |
6127 * Set up for a tagpreview. | |
735 | 6128 * Return TRUE when it was created. |
7 | 6129 */ |
735 | 6130 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6131 prepare_tagpreview( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6132 int undo_sync) /* sync undo when leaving the window */ |
7 | 6133 { |
6134 win_T *wp; | |
6135 | |
6136 # ifdef FEAT_GUI | |
6137 need_mouse_correct = TRUE; | |
6138 # endif | |
6139 | |
6140 /* | |
6141 * If there is already a preview window open, use that one. | |
6142 */ | |
6143 if (!curwin->w_p_pvw) | |
6144 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
6145 FOR_ALL_WINDOWS(wp) |
7 | 6146 if (wp->w_p_pvw) |
6147 break; | |
6148 if (wp != NULL) | |
816 | 6149 win_enter(wp, undo_sync); |
7 | 6150 else |
6151 { | |
6152 /* | |
6153 * There is no preview window open yet. Create one. | |
6154 */ | |
6155 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) | |
6156 == FAIL) | |
735 | 6157 return FALSE; |
7 | 6158 curwin->w_p_pvw = TRUE; |
6159 curwin->w_p_wfh = TRUE; | |
2583 | 6160 RESET_BINDING(curwin); /* don't take over 'scrollbind' |
6161 and 'cursorbind' */ | |
7 | 6162 # ifdef FEAT_DIFF |
6163 curwin->w_p_diff = FALSE; /* no 'diff' */ | |
6164 # endif | |
6165 # ifdef FEAT_FOLDING | |
6166 curwin->w_p_fdc = 0; /* no 'foldcolumn' */ | |
6167 # endif | |
735 | 6168 return TRUE; |
7 | 6169 } |
6170 } | |
735 | 6171 return FALSE; |
7 | 6172 } |
6173 | |
6174 #endif | |
6175 | |
6176 | |
6177 /* | |
6178 * ":help": open a read-only window on a help file | |
6179 */ | |
6180 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6181 ex_help(exarg_T *eap) |
7 | 6182 { |
6183 char_u *arg; | |
6184 char_u *tag; | |
6185 FILE *helpfd; /* file descriptor of help file */ | |
6186 int n; | |
6187 int i; | |
6188 #ifdef FEAT_WINDOWS | |
6189 win_T *wp; | |
6190 #endif | |
6191 int num_matches; | |
6192 char_u **matches; | |
6193 char_u *p; | |
6194 int empty_fnum = 0; | |
6195 int alt_fnum = 0; | |
6196 buf_T *buf; | |
6197 #ifdef FEAT_MULTI_LANG | |
6198 int len; | |
9 | 6199 char_u *lang; |
7 | 6200 #endif |
3112 | 6201 #ifdef FEAT_FOLDING |
6202 int old_KeyTyped = KeyTyped; | |
6203 #endif | |
7 | 6204 |
6205 if (eap != NULL) | |
6206 { | |
6207 /* | |
6208 * A ":help" command ends at the first LF, or at a '|' that is | |
6209 * followed by some text. Set nextcmd to the following command. | |
6210 */ | |
6211 for (arg = eap->arg; *arg; ++arg) | |
6212 { | |
6213 if (*arg == '\n' || *arg == '\r' | |
6214 || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) | |
6215 { | |
6216 *arg++ = NUL; | |
6217 eap->nextcmd = arg; | |
6218 break; | |
6219 } | |
6220 } | |
6221 arg = eap->arg; | |
6222 | |
3446 | 6223 if (eap->forceit && *arg == NUL && !curbuf->b_help) |
7 | 6224 { |
6225 EMSG(_("E478: Don't panic!")); | |
6226 return; | |
6227 } | |
6228 | |
6229 if (eap->skip) /* not executing commands */ | |
6230 return; | |
6231 } | |
6232 else | |
6233 arg = (char_u *)""; | |
6234 | |
6235 /* remove trailing blanks */ | |
6236 p = arg + STRLEN(arg) - 1; | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
6237 while (p > arg && VIM_ISWHITE(*p) && p[-1] != '\\') |
7 | 6238 *p-- = NUL; |
6239 | |
6240 #ifdef FEAT_MULTI_LANG | |
6241 /* Check for a specified language */ | |
9 | 6242 lang = check_help_lang(arg); |
7 | 6243 #endif |
6244 | |
6245 /* When no argument given go to the index. */ | |
6246 if (*arg == NUL) | |
6247 arg = (char_u *)"help.txt"; | |
6248 | |
6249 /* | |
6250 * Check if there is a match for the argument. | |
6251 */ | |
6252 n = find_help_tags(arg, &num_matches, &matches, | |
6253 eap != NULL && eap->forceit); | |
6254 | |
6255 i = 0; | |
6256 #ifdef FEAT_MULTI_LANG | |
6257 if (n != FAIL && lang != NULL) | |
6258 /* Find first item with the requested language. */ | |
6259 for (i = 0; i < num_matches; ++i) | |
6260 { | |
835 | 6261 len = (int)STRLEN(matches[i]); |
7 | 6262 if (len > 3 && matches[i][len - 3] == '@' |
6263 && STRICMP(matches[i] + len - 2, lang) == 0) | |
6264 break; | |
6265 } | |
6266 #endif | |
6267 if (i >= num_matches || n == FAIL) | |
6268 { | |
6269 #ifdef FEAT_MULTI_LANG | |
6270 if (lang != NULL) | |
6271 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg); | |
6272 else | |
6273 #endif | |
6274 EMSG2(_("E149: Sorry, no help for %s"), arg); | |
6275 if (n != FAIL) | |
6276 FreeWild(num_matches, matches); | |
6277 return; | |
6278 } | |
6279 | |
6280 /* The first match (in the requested language) is the best match. */ | |
6281 tag = vim_strsave(matches[i]); | |
6282 FreeWild(num_matches, matches); | |
6283 | |
6284 #ifdef FEAT_GUI | |
6285 need_mouse_correct = TRUE; | |
6286 #endif | |
6287 | |
6288 /* | |
6289 * Re-use an existing help window or open a new one. | |
684 | 6290 * Always open a new one for ":tab help". |
7 | 6291 */ |
684 | 6292 if (!curwin->w_buffer->b_help |
6293 #ifdef FEAT_WINDOWS | |
6294 || cmdmod.tab != 0 | |
6295 #endif | |
6296 ) | |
7 | 6297 { |
6298 #ifdef FEAT_WINDOWS | |
684 | 6299 if (cmdmod.tab != 0) |
6300 wp = NULL; | |
6301 else | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
6302 FOR_ALL_WINDOWS(wp) |
684 | 6303 if (wp->w_buffer != NULL && wp->w_buffer->b_help) |
6304 break; | |
7 | 6305 if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
6306 win_enter(wp, TRUE); | |
6307 else | |
6308 #endif | |
6309 { | |
6310 /* | |
6311 * There is no help window yet. | |
6312 * Try to open the file specified by the "helpfile" option. | |
6313 */ | |
6314 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL) | |
6315 { | |
274 | 6316 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf); |
7 | 6317 goto erret; |
6318 } | |
6319 fclose(helpfd); | |
6320 | |
6321 #ifdef FEAT_WINDOWS | |
6322 /* Split off help window; put it at far top if no position | |
684 | 6323 * specified, the current window is vertically split and |
6324 * narrow. */ | |
7 | 6325 n = WSP_HELP; |
6326 if (cmdmod.split == 0 && curwin->w_width != Columns | |
684 | 6327 && curwin->w_width < 80) |
7 | 6328 n |= WSP_TOP; |
6329 if (win_split(0, n) == FAIL) | |
684 | 6330 goto erret; |
7 | 6331 #else |
6332 /* use current window */ | |
6333 if (!can_abandon(curbuf, FALSE)) | |
6334 goto erret; | |
684 | 6335 #endif |
7 | 6336 |
6337 #ifdef FEAT_WINDOWS | |
6338 if (curwin->w_height < p_hh) | |
6339 win_setheight((int)p_hh); | |
6340 #endif | |
6341 | |
6342 /* | |
6343 * Open help file (do_ecmd() will set b_help flag, readfile() will | |
6344 * set b_p_ro flag). | |
6345 * Set the alternate file to the previously edited file. | |
6346 */ | |
6347 alt_fnum = curbuf->b_fnum; | |
6348 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL, | |
1743 | 6349 ECMD_HIDE + ECMD_SET_HELP, |
6350 #ifdef FEAT_WINDOWS | |
6351 NULL /* buffer is still open, don't store info */ | |
6352 #else | |
6353 curwin | |
6354 #endif | |
6355 ); | |
22 | 6356 if (!cmdmod.keepalt) |
6357 curwin->w_alt_fnum = alt_fnum; | |
7 | 6358 empty_fnum = curbuf->b_fnum; |
6359 } | |
6360 } | |
6361 | |
6362 if (!p_im) | |
6363 restart_edit = 0; /* don't want insert mode in help file */ | |
6364 | |
3112 | 6365 #ifdef FEAT_FOLDING |
6366 /* Restore KeyTyped, setting 'filetype=help' may reset it. | |
6367 * It is needed for do_tag top open folds under the cursor. */ | |
6368 KeyTyped = old_KeyTyped; | |
6369 #endif | |
6370 | |
7 | 6371 if (tag != NULL) |
6372 do_tag(tag, DT_HELP, 1, FALSE, TRUE); | |
6373 | |
819 | 6374 /* Delete the empty buffer if we're not using it. Careful: autocommands |
6375 * may have jumped to another window, check that the buffer is not in a | |
6376 * window. */ | |
7 | 6377 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum) |
6378 { | |
6379 buf = buflist_findnr(empty_fnum); | |
819 | 6380 if (buf != NULL && buf->b_nwindows == 0) |
7 | 6381 wipe_buffer(buf, TRUE); |
6382 } | |
6383 | |
6384 /* keep the previous alternate file */ | |
22 | 6385 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt) |
7 | 6386 curwin->w_alt_fnum = alt_fnum; |
6387 | |
6388 erret: | |
6389 vim_free(tag); | |
6390 } | |
6391 | |
6228 | 6392 /* |
6234 | 6393 * ":helpclose": Close one help window |
6228 | 6394 */ |
6395 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6396 ex_helpclose(exarg_T *eap UNUSED) |
6228 | 6397 { |
6236 | 6398 #if defined(FEAT_WINDOWS) |
6228 | 6399 win_T *win; |
6400 | |
6401 FOR_ALL_WINDOWS(win) | |
6402 { | |
6403 if (win->w_buffer->b_help) | |
6404 { | |
6405 win_close(win, FALSE); | |
6234 | 6406 return; |
6228 | 6407 } |
6408 } | |
6236 | 6409 #endif |
6228 | 6410 } |
7 | 6411 |
9 | 6412 #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
6413 /* | |
6414 * In an argument search for a language specifiers in the form "@xx". | |
6415 * Changes the "@" to NUL if found, and returns a pointer to "xx". | |
6416 * Returns NULL if not found. | |
6417 */ | |
6418 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6419 check_help_lang(char_u *arg) |
9 | 6420 { |
835 | 6421 int len = (int)STRLEN(arg); |
9 | 6422 |
6423 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2]) | |
6424 && ASCII_ISALPHA(arg[len - 1])) | |
6425 { | |
6426 arg[len - 3] = NUL; /* remove the '@' */ | |
6427 return arg + len - 2; | |
6428 } | |
6429 return NULL; | |
6430 } | |
6431 #endif | |
6432 | |
7 | 6433 /* |
6434 * Return a heuristic indicating how well the given string matches. The | |
6435 * smaller the number, the better the match. This is the order of priorities, | |
6436 * from best match to worst match: | |
6437 * - Match with least alpha-numeric characters is better. | |
6438 * - Match with least total characters is better. | |
6439 * - Match towards the start is better. | |
6440 * - Match starting with "+" is worse (feature instead of command) | |
6441 * Assumption is made that the matched_string passed has already been found to | |
6442 * match some string for which help is requested. webb. | |
6443 */ | |
6444 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6445 help_heuristic( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6446 char_u *matched_string, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6447 int offset, /* offset for match */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6448 int wrong_case) /* no matching case */ |
7 | 6449 { |
6450 int num_letters; | |
6451 char_u *p; | |
6452 | |
6453 num_letters = 0; | |
6454 for (p = matched_string; *p; p++) | |
6455 if (ASCII_ISALNUM(*p)) | |
6456 num_letters++; | |
6457 | |
6458 /* | |
6459 * Multiply the number of letters by 100 to give it a much bigger | |
6460 * weighting than the number of characters. | |
6461 * If there only is a match while ignoring case, add 5000. | |
6462 * If the match starts in the middle of a word, add 10000 to put it | |
6463 * somewhere in the last half. | |
6464 * If the match is more than 2 chars from the start, multiply by 200 to | |
6465 * put it after matches at the start. | |
6466 */ | |
6467 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 | |
6468 && ASCII_ISALNUM(matched_string[offset - 1])) | |
6469 offset += 10000; | |
6470 else if (offset > 2) | |
6471 offset *= 200; | |
6472 if (wrong_case) | |
6473 offset += 5000; | |
6474 /* Features are less interesting than the subjects themselves, but "+" | |
6475 * alone is not a feature. */ | |
6476 if (matched_string[0] == '+' && matched_string[1] != NUL) | |
6477 offset += 100; | |
6478 return (int)(100 * num_letters + STRLEN(matched_string) + offset); | |
6479 } | |
6480 | |
6481 /* | |
6482 * Compare functions for qsort() below, that checks the help heuristics number | |
6483 * that has been put after the tagname by find_tags(). | |
6484 */ | |
6485 static int | |
6486 #ifdef __BORLANDC__ | |
6487 _RTLENTRYF | |
6488 #endif | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6489 help_compare(const void *s1, const void *s2) |
7 | 6490 { |
6491 char *p1; | |
6492 char *p2; | |
6493 | |
6494 p1 = *(char **)s1 + strlen(*(char **)s1) + 1; | |
6495 p2 = *(char **)s2 + strlen(*(char **)s2) + 1; | |
6496 return strcmp(p1, p2); | |
6497 } | |
6498 | |
6499 /* | |
6500 * Find all help tags matching "arg", sort them and return in matches[], with | |
6501 * the number of matches in num_matches. | |
6502 * The matches will be sorted with a "best" match algorithm. | |
6503 * When "keep_lang" is TRUE try keeping the language of the current buffer. | |
6504 */ | |
6505 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6506 find_help_tags( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6507 char_u *arg, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6508 int *num_matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6509 char_u ***matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6510 int keep_lang) |
7 | 6511 { |
6512 char_u *s, *d; | |
6513 int i; | |
6514 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", | |
445 | 6515 "/*", "/\\*", "\"*", "**", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
6516 "cpo-*", "/\\(\\)", "/\\%(\\)", |
10853
b760fa91f8b3
patch 8.0.0316: :help z? does not work
Christian Brabandt <cb@256bit.org>
parents:
10851
diff
changeset
|
6517 "?", ":?", "?<CR>", "g?", "g?g?", "g??", |
279 | 6518 "/\\?", "/\\z(\\)", "\\=", ":s\\=", |
10851
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
6519 "[count]", "[quotex]", |
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
6520 "[range]", ":[range]", |
5647 | 6521 "[pattern]", "\\|", "\\%$", |
6522 "s/\\~", "s/\\U", "s/\\L", | |
6523 "s/\\1", "s/\\2", "s/\\3", "s/\\9"}; | |
7 | 6524 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", |
445 | 6525 "/star", "/\\\\star", "quotestar", "starstar", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
6526 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)", |
10853
b760fa91f8b3
patch 8.0.0316: :help z? does not work
Christian Brabandt <cb@256bit.org>
parents:
10851
diff
changeset
|
6527 "?", ":?", "?<CR>", "g?", "g?g?", "g??", |
279 | 6528 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", |
10851
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
6529 "\\[count]", "\\[quotex]", |
256b1b96c2ad
patch 8.0.0315: :help :[range] does not work
Christian Brabandt <cb@256bit.org>
parents:
10638
diff
changeset
|
6530 "\\[range]", ":\\[range]", |
5647 | 6531 "\\[pattern]", "\\\\bar", "/\\\\%\\$", |
5867 | 6532 "s/\\\\\\~", "s/\\\\U", "s/\\\\L", |
5647 | 6533 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"}; |
7 | 6534 int flags; |
6535 | |
6536 d = IObuff; /* assume IObuff is long enough! */ | |
6537 | |
6538 /* | |
6539 * Recognize a few exceptions to the rule. Some strings that contain '*' | |
6540 * with "star". Otherwise '*' is recognized as a wildcard. | |
6541 */ | |
1872 | 6542 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; ) |
7 | 6543 if (STRCMP(arg, mtable[i]) == 0) |
6544 { | |
6545 STRCPY(d, rtable[i]); | |
6546 break; | |
6547 } | |
6548 | |
6549 if (i < 0) /* no match in table */ | |
6550 { | |
6551 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched. | |
6552 * Also replace "\%^" and "\%(", they match every tag too. | |
6553 * Also "\zs", "\z1", etc. | |
6554 * Also "\@<", "\@=", "\@<=", etc. | |
6555 * And also "\_$" and "\_^". */ | |
6556 if (arg[0] == '\\' | |
6557 && ((arg[1] != NUL && arg[2] == NUL) | |
6558 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL | |
6559 && arg[2] != NUL))) | |
6560 { | |
6561 STRCPY(d, "/\\\\"); | |
6562 STRCPY(d + 3, arg + 1); | |
6563 /* Check for "/\\_$", should be "/\\_\$" */ | |
6564 if (d[3] == '_' && d[4] == '$') | |
6565 STRCPY(d + 4, "\\$"); | |
6566 } | |
6567 else | |
6568 { | |
3786 | 6569 /* Replace: |
6570 * "[:...:]" with "\[:...:]" | |
6571 * "[++...]" with "\[++...]" | |
5867 | 6572 * "\{" with "\\{" -- matching "} \}" |
3786 | 6573 */ |
6574 if ((arg[0] == '[' && (arg[1] == ':' | |
6575 || (arg[1] == '+' && arg[2] == '+'))) | |
6576 || (arg[0] == '\\' && arg[1] == '{')) | |
7 | 6577 *d++ = '\\'; |
6578 | |
8556
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6579 /* |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6580 * 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
|
6581 */ |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6582 if (*arg == '(' && arg[1] == '\'') |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
6583 arg++; |
7 | 6584 for (s = arg; *s; ++s) |
6585 { | |
6586 /* | |
6587 * Replace "|" with "bar" and '"' with "quote" to match the name of | |
6588 * the tags for these commands. | |
6589 * Replace "*" with ".*" and "?" with "." to match command line | |
6590 * completion. | |
6591 * Insert a backslash before '~', '$' and '.' to avoid their | |
6592 * special meaning. | |
6593 */ | |
6594 if (d - IObuff > IOSIZE - 10) /* getting too long!? */ | |
6595 break; | |
6596 switch (*s) | |
6597 { | |
6598 case '|': STRCPY(d, "bar"); | |
6599 d += 3; | |
6600 continue; | |
6601 case '"': STRCPY(d, "quote"); | |
6602 d += 5; | |
6603 continue; | |
6604 case '*': *d++ = '.'; | |
6605 break; | |
6606 case '?': *d++ = '.'; | |
6607 continue; | |
6608 case '$': | |
6609 case '.': | |
6610 case '~': *d++ = '\\'; | |
6611 break; | |
6612 } | |
6613 | |
6614 /* | |
6615 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make | |
6616 * ":help i_^_CTRL-D" work. | |
6617 * Insert '-' before and after "CTRL-X" when applicable. | |
6618 */ | |
6619 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1]) | |
6620 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL))) | |
6621 { | |
5282
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
6622 if (d > IObuff && d[-1] != '_' && d[-1] != '\\') |
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
6623 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */ |
7 | 6624 STRCPY(d, "CTRL-"); |
6625 d += 5; | |
6626 if (*s < ' ') | |
6627 { | |
6628 #ifdef EBCDIC | |
6629 *d++ = CtrlChar(*s); | |
6630 #else | |
6631 *d++ = *s + '@'; | |
6632 #endif | |
6633 if (d[-1] == '\\') | |
6634 *d++ = '\\'; /* double a backslash */ | |
6635 } | |
6636 else | |
6637 *d++ = *++s; | |
6638 if (s[1] != NUL && s[1] != '_') | |
6639 *d++ = '_'; /* append a '_' */ | |
6640 continue; | |
6641 } | |
6642 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */ | |
6643 *d++ = '\\'; | |
6644 | |
6645 /* | |
6646 * Insert a backslash before a backslash after a slash, for search | |
6647 * pattern tags: "/\|" --> "/\\|". | |
6648 */ | |
6649 else if (s[0] == '\\' && s[1] != '\\' | |
6650 && *arg == '/' && s == arg + 1) | |
6651 *d++ = '\\'; | |
6652 | |
6653 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in | |
6654 * "CTRL-\_CTRL-N" */ | |
6655 if (STRNICMP(s, "CTRL-\\_", 7) == 0) | |
6656 { | |
6657 STRCPY(d, "CTRL-\\\\"); | |
6658 d += 7; | |
6659 s += 6; | |
6660 } | |
6661 | |
6662 *d++ = *s; | |
6663 | |
6664 /* | |
8883
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6665 * 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
|
6666 * 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
|
6667 */ |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6668 if (*s == '(' && (s[1] == '{' || s[1] =='[')) |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6669 break; |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6670 |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
6671 /* |
7 | 6672 * If tag starts with ', toss everything after a second '. Fixes |
6673 * CTRL-] on 'option'. (would include the trailing '.'). | |
6674 */ | |
6675 if (*s == '\'' && s > arg && *arg == '\'') | |
6676 break; | |
9234
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
6677 /* Also '{' and '}'. */ |
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
6678 if (*s == '}' && s > arg && *arg == '{') |
6e80397a592c
commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
6679 break; |
7 | 6680 } |
6681 *d = NUL; | |
3480 | 6682 |
6683 if (*IObuff == '`') | |
6684 { | |
6685 if (d > IObuff + 2 && d[-1] == '`') | |
6686 { | |
6687 /* remove the backticks from `command` */ | |
6688 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6689 d[-2] = NUL; | |
6690 } | |
6691 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',') | |
6692 { | |
6693 /* remove the backticks and comma from `command`, */ | |
6694 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6695 d[-3] = NUL; | |
6696 } | |
6697 else if (d > IObuff + 4 && d[-3] == '`' | |
6698 && d[-2] == '\\' && d[-1] == '.') | |
6699 { | |
6700 /* remove the backticks and dot from `command`\. */ | |
6701 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6702 d[-4] = NUL; | |
6703 } | |
6704 } | |
7 | 6705 } |
6706 } | |
6707 | |
6708 *matches = (char_u **)""; | |
6709 *num_matches = 0; | |
6710 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; | |
6711 if (keep_lang) | |
6712 flags |= TAG_KEEP_LANG; | |
1696 | 6713 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK |
7 | 6714 && *num_matches > 0) |
1696 | 6715 { |
7 | 6716 /* Sort the matches found on the heuristic number that is after the |
6717 * tag name. */ | |
6718 qsort((void *)*matches, (size_t)*num_matches, | |
6719 sizeof(char_u *), help_compare); | |
1696 | 6720 /* Delete more than TAG_MANY to reduce the size of the listing. */ |
6721 while (*num_matches > TAG_MANY) | |
6722 vim_free((*matches)[--*num_matches]); | |
6723 } | |
7 | 6724 return OK; |
6725 } | |
6726 | |
6727 /* | |
6365 | 6728 * Called when starting to edit a buffer for a help file. |
6729 */ | |
6730 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6731 prepare_help_buffer(void) |
6365 | 6732 { |
6733 char_u *p; | |
6734 | |
6735 curbuf->b_help = TRUE; | |
6736 #ifdef FEAT_QUICKFIX | |
6737 set_string_option_direct((char_u *)"buftype", -1, | |
6738 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0); | |
6739 #endif | |
6740 | |
6741 /* | |
6742 * Always set these options after jumping to a help tag, because the | |
6743 * user may have an autocommand that gets in the way. | |
6744 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and | |
6745 * latin1 word characters (for translated help files). | |
6746 * Only set it when needed, buf_init_chartab() is some work. | |
6747 */ | |
6748 p = | |
6749 #ifdef EBCDIC | |
6750 (char_u *)"65-255,^*,^|,^\""; | |
6751 #else | |
6752 (char_u *)"!-~,^*,^|,^\",192-255"; | |
6753 #endif | |
6754 if (STRCMP(curbuf->b_p_isk, p) != 0) | |
6755 { | |
6756 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0); | |
6757 check_buf_options(curbuf); | |
6758 (void)buf_init_chartab(curbuf, FALSE); | |
6759 } | |
6760 | |
6415 | 6761 #ifdef FEAT_FOLDING |
6365 | 6762 /* Don't use the global foldmethod.*/ |
6763 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual", | |
6764 OPT_FREE|OPT_LOCAL, 0); | |
6415 | 6765 #endif |
6365 | 6766 |
6767 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */ | |
6768 curwin->w_p_list = FALSE; /* no list mode */ | |
6769 | |
6770 curbuf->b_p_ma = FALSE; /* not modifiable */ | |
6771 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */ | |
6772 curwin->w_p_nu = 0; /* no line numbers */ | |
6773 curwin->w_p_rnu = 0; /* no relative line numbers */ | |
6774 RESET_BINDING(curwin); /* no scroll or cursor binding */ | |
6775 #ifdef FEAT_ARABIC | |
6776 curwin->w_p_arab = FALSE; /* no arabic mode */ | |
6777 #endif | |
6778 #ifdef FEAT_RIGHTLEFT | |
6779 curwin->w_p_rl = FALSE; /* help window is left-to-right */ | |
6780 #endif | |
6781 #ifdef FEAT_FOLDING | |
6782 curwin->w_p_fen = FALSE; /* No folding in the help window */ | |
6783 #endif | |
6784 #ifdef FEAT_DIFF | |
6785 curwin->w_p_diff = FALSE; /* No 'diff' */ | |
6786 #endif | |
6787 #ifdef FEAT_SPELL | |
6788 curwin->w_p_spell = FALSE; /* No spell checking */ | |
6789 #endif | |
6790 | |
6791 set_buflisted(FALSE); | |
6792 } | |
6793 | |
6794 /* | |
7 | 6795 * After reading a help file: May cleanup a help buffer when syntax |
6796 * highlighting is not used. | |
6797 */ | |
6798 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6799 fix_help_buffer(void) |
7 | 6800 { |
6801 linenr_T lnum; | |
6802 char_u *line; | |
6803 int in_example = FALSE; | |
6804 int len; | |
3141 | 6805 char_u *fname; |
7 | 6806 char_u *p; |
6807 char_u *rt; | |
6808 int mustfree; | |
6809 | |
6810 /* set filetype to "help". */ | |
6811 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL); | |
6812 | |
6813 #ifdef FEAT_SYN_HL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6814 if (!syntax_present(curwin)) |
7 | 6815 #endif |
6816 { | |
6817 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
6818 { | |
6819 line = ml_get_buf(curbuf, lnum, FALSE); | |
6820 len = (int)STRLEN(line); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
6821 if (in_example && len > 0 && !VIM_ISWHITE(line[0])) |
7 | 6822 { |
6823 /* End of example: non-white or '<' in first column. */ | |
6824 if (line[0] == '<') | |
6825 { | |
6826 /* blank-out a '<' in the first column */ | |
6827 line = ml_get_buf(curbuf, lnum, TRUE); | |
6828 line[0] = ' '; | |
6829 } | |
6830 in_example = FALSE; | |
6831 } | |
6832 if (!in_example && len > 0) | |
6833 { | |
6834 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' ')) | |
6835 { | |
6836 /* blank-out a '>' in the last column (start of example) */ | |
6837 line = ml_get_buf(curbuf, lnum, TRUE); | |
6838 line[len - 1] = ' '; | |
6839 in_example = TRUE; | |
6840 } | |
6841 else if (line[len - 1] == '~') | |
6842 { | |
6843 /* blank-out a '~' at the end of line (header marker) */ | |
6844 line = ml_get_buf(curbuf, lnum, TRUE); | |
6845 line[len - 1] = ' '; | |
6846 } | |
6847 } | |
6848 } | |
6849 } | |
6850 | |
6851 /* | |
3141 | 6852 * In the "help.txt" and "help.abx" file, add the locally added help |
6853 * files. This uses the very first line in the help file. | |
7 | 6854 */ |
3141 | 6855 fname = gettail(curbuf->b_fname); |
6856 if (fnamecmp(fname, "help.txt") == 0 | |
6857 #ifdef FEAT_MULTI_LANG | |
6858 || (fnamencmp(fname, "help.", 5) == 0 | |
6859 && ASCII_ISALPHA(fname[5]) | |
6860 && ASCII_ISALPHA(fname[6]) | |
6861 && TOLOWER_ASC(fname[7]) == 'x' | |
6862 && fname[8] == NUL) | |
6863 #endif | |
6864 ) | |
7 | 6865 { |
6866 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) | |
6867 { | |
6868 line = ml_get_buf(curbuf, lnum, FALSE); | |
3141 | 6869 if (strstr((char *)line, "*local-additions*") == NULL) |
6870 continue; | |
6871 | |
6872 /* Go through all directories in 'runtimepath', skipping | |
6873 * $VIMRUNTIME. */ | |
6874 p = p_rtp; | |
6875 while (*p != NUL) | |
7 | 6876 { |
3141 | 6877 copy_option_part(&p, NameBuff, MAXPATHL, ","); |
6878 mustfree = FALSE; | |
6879 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); | |
6880 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME) | |
7 | 6881 { |
3141 | 6882 int fcount; |
6883 char_u **fnames; | |
6884 FILE *fd; | |
6885 char_u *s; | |
6886 int fi; | |
7 | 6887 #ifdef FEAT_MBYTE |
3141 | 6888 vimconv_T vc; |
6889 char_u *cp; | |
6890 #endif | |
6891 | |
6892 /* Find all "doc/ *.txt" files in this directory. */ | |
6893 add_pathsep(NameBuff); | |
6894 #ifdef FEAT_MULTI_LANG | |
6895 STRCAT(NameBuff, "doc/*.??[tx]"); | |
7 | 6896 #else |
3141 | 6897 STRCAT(NameBuff, "doc/*.txt"); |
6898 #endif | |
6899 if (gen_expand_wildcards(1, &NameBuff, &fcount, | |
6900 &fnames, EW_FILE|EW_SILENT) == OK | |
6901 && fcount > 0) | |
6902 { | |
6903 #ifdef FEAT_MULTI_LANG | |
6904 int i1; | |
6905 int i2; | |
6906 char_u *f1; | |
6907 char_u *f2; | |
6908 char_u *t1; | |
6909 char_u *e1; | |
6910 char_u *e2; | |
6911 | |
6912 /* If foo.abx is found use it instead of foo.txt in | |
6913 * the same directory. */ | |
6914 for (i1 = 0; i1 < fcount; ++i1) | |
6915 { | |
6916 for (i2 = 0; i2 < fcount; ++i2) | |
6917 { | |
6918 if (i1 == i2) | |
6919 continue; | |
6920 if (fnames[i1] == NULL || fnames[i2] == NULL) | |
6921 continue; | |
6922 f1 = fnames[i1]; | |
6923 f2 = fnames[i2]; | |
6924 t1 = gettail(f1); | |
6925 if (fnamencmp(f1, f2, t1 - f1) != 0) | |
6926 continue; | |
6927 e1 = vim_strrchr(t1, '.'); | |
6928 e2 = vim_strrchr(gettail(f2), '.'); | |
10299
7b2f95633e28
commit https://github.com/vim/vim/commit/7756e7465d627ff9cd01e59625484a8c302ef853
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
6929 if (e1 == NULL || e2 == NULL) |
3141 | 6930 continue; |
6931 if (fnamecmp(e1, ".txt") != 0 | |
6932 && fnamecmp(e1, fname + 4) != 0) | |
6933 { | |
6934 /* Not .txt and not .abx, remove it. */ | |
6935 vim_free(fnames[i1]); | |
6936 fnames[i1] = NULL; | |
6937 continue; | |
6938 } | |
6939 if (fnamencmp(f1, f2, e1 - f1) != 0) | |
6940 continue; | |
6941 if (fnamecmp(e1, ".txt") == 0 | |
6942 && fnamecmp(e2, fname + 4) == 0) | |
6943 { | |
6944 /* use .abx instead of .txt */ | |
6945 vim_free(fnames[i1]); | |
6946 fnames[i1] = NULL; | |
7 | 6947 } |
6948 } | |
6949 } | |
3141 | 6950 #endif |
6951 for (fi = 0; fi < fcount; ++fi) | |
6952 { | |
6953 if (fnames[fi] == NULL) | |
6954 continue; | |
6955 fd = mch_fopen((char *)fnames[fi], "r"); | |
6956 if (fd != NULL) | |
6957 { | |
6958 vim_fgets(IObuff, IOSIZE, fd); | |
6959 if (IObuff[0] == '*' | |
6960 && (s = vim_strchr(IObuff + 1, '*')) | |
6961 != NULL) | |
6962 { | |
6963 #ifdef FEAT_MBYTE | |
6964 int this_utf = MAYBE; | |
6965 #endif | |
6966 /* Change tag definition to a | |
6967 * reference and remove <CR>/<NL>. */ | |
6968 IObuff[0] = '|'; | |
6969 *s = '|'; | |
6970 while (*s != NUL) | |
6971 { | |
6972 if (*s == '\r' || *s == '\n') | |
6973 *s = NUL; | |
6974 #ifdef FEAT_MBYTE | |
6975 /* The text is utf-8 when a byte | |
6976 * above 127 is found and no | |
6977 * illegal byte sequence is found. | |
6978 */ | |
6979 if (*s >= 0x80 && this_utf != FALSE) | |
6980 { | |
6981 int l; | |
6982 | |
6983 this_utf = TRUE; | |
6984 l = utf_ptr2len(s); | |
6985 if (l == 1) | |
6986 this_utf = FALSE; | |
6987 s += l - 1; | |
6988 } | |
6989 #endif | |
6990 ++s; | |
6991 } | |
6992 #ifdef FEAT_MBYTE | |
6993 /* The help file is latin1 or utf-8; | |
6994 * conversion to the current | |
6995 * 'encoding' may be required. */ | |
6996 vc.vc_type = CONV_NONE; | |
6997 convert_setup(&vc, (char_u *)( | |
6998 this_utf == TRUE ? "utf-8" | |
6999 : "latin1"), p_enc); | |
7000 if (vc.vc_type == CONV_NONE) | |
7001 /* No conversion needed. */ | |
7002 cp = IObuff; | |
7003 else | |
7004 { | |
7005 /* Do the conversion. If it fails | |
7006 * use the unconverted text. */ | |
7007 cp = string_convert(&vc, IObuff, | |
7008 NULL); | |
7009 if (cp == NULL) | |
7010 cp = IObuff; | |
7011 } | |
7012 convert_setup(&vc, NULL, NULL); | |
7013 | |
7014 ml_append(lnum, cp, (colnr_T)0, FALSE); | |
7015 if (cp != IObuff) | |
7016 vim_free(cp); | |
7017 #else | |
7018 ml_append(lnum, IObuff, (colnr_T)0, | |
7019 FALSE); | |
7020 #endif | |
7021 ++lnum; | |
7022 } | |
7023 fclose(fd); | |
7024 } | |
7025 } | |
7026 FreeWild(fcount, fnames); | |
7 | 7027 } |
7028 } | |
3141 | 7029 if (mustfree) |
7030 vim_free(rt); | |
7 | 7031 } |
3141 | 7032 break; |
7 | 7033 } |
7034 } | |
7035 } | |
7036 | |
40 | 7037 /* |
7038 * ":exusage" | |
7039 */ | |
7040 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7041 ex_exusage(exarg_T *eap UNUSED) |
40 | 7042 { |
7043 do_cmdline_cmd((char_u *)"help ex-cmd-index"); | |
7044 } | |
7045 | |
7046 /* | |
7047 * ":viusage" | |
7048 */ | |
7049 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7050 ex_viusage(exarg_T *eap UNUSED) |
40 | 7051 { |
7052 do_cmdline_cmd((char_u *)"help normal-index"); | |
7053 } | |
7054 | |
7 | 7055 /* |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7056 * Generate tags in one help directory. |
7 | 7057 */ |
7058 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7059 helptags_one( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7060 char_u *dir, /* doc directory */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7061 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
|
7062 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
|
7063 int add_help_tags) /* add "help-tags" tag */ |
7 | 7064 { |
7065 FILE *fd_tags; | |
7066 FILE *fd; | |
7067 garray_T ga; | |
7068 int filecount; | |
7069 char_u **files; | |
7070 char_u *p1, *p2; | |
7071 int fi; | |
7072 char_u *s; | |
7073 int i; | |
7074 char_u *fname; | |
3957 | 7075 int dirlen; |
7 | 7076 # ifdef FEAT_MBYTE |
7077 int utf8 = MAYBE; | |
7078 int this_utf8; | |
7079 int firstline; | |
7080 int mix = FALSE; /* detected mixed encodings */ | |
7081 # endif | |
7082 | |
7083 /* | |
7084 * Find all *.txt files. | |
7085 */ | |
3978 | 7086 dirlen = (int)STRLEN(dir); |
7 | 7087 STRCPY(NameBuff, dir); |
3957 | 7088 STRCAT(NameBuff, "/**/*"); |
7 | 7089 STRCAT(NameBuff, ext); |
7090 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, | |
7091 EW_FILE|EW_SILENT) == FAIL | |
7092 || filecount == 0) | |
7093 { | |
7094 if (!got_int) | |
9953
9560a2eb7968
commit https://github.com/vim/vim/commit/5b30291785e6b9be1a607504c14bd03c601b59a6
Christian Brabandt <cb@256bit.org>
parents:
9947
diff
changeset
|
7095 EMSG2(_("E151: No match: %s"), NameBuff); |
7 | 7096 return; |
7097 } | |
7098 | |
7099 /* | |
7100 * Open the tags file for writing. | |
7101 * Do this before scanning through all the files. | |
7102 */ | |
7103 STRCPY(NameBuff, dir); | |
7104 add_pathsep(NameBuff); | |
7105 STRCAT(NameBuff, tagfname); | |
531 | 7106 fd_tags = mch_fopen((char *)NameBuff, "w"); |
7 | 7107 if (fd_tags == NULL) |
7108 { | |
7109 EMSG2(_("E152: Cannot open %s for writing"), NameBuff); | |
7110 FreeWild(filecount, files); | |
7111 return; | |
7112 } | |
7113 | |
7114 /* | |
1502 | 7115 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc" |
7116 * add the "help-tags" tag. | |
7 | 7117 */ |
7118 ga_init2(&ga, (int)sizeof(char_u *), 100); | |
1502 | 7119 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc", |
7120 dir, FALSE) == FPC_SAME) | |
7 | 7121 { |
7122 if (ga_grow(&ga, 1) == FAIL) | |
7123 got_int = TRUE; | |
7124 else | |
7125 { | |
835 | 7126 s = alloc(18 + (unsigned)STRLEN(tagfname)); |
7 | 7127 if (s == NULL) |
7128 got_int = TRUE; | |
7129 else | |
7130 { | |
7131 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname); | |
7132 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
7133 ++ga.ga_len; | |
7134 } | |
7135 } | |
7136 } | |
7137 | |
7138 /* | |
7139 * Go over all the files and extract the tags. | |
7140 */ | |
7141 for (fi = 0; fi < filecount && !got_int; ++fi) | |
7142 { | |
531 | 7143 fd = mch_fopen((char *)files[fi], "r"); |
7 | 7144 if (fd == NULL) |
7145 { | |
7146 EMSG2(_("E153: Unable to open %s for reading"), files[fi]); | |
7147 continue; | |
7148 } | |
3957 | 7149 fname = files[fi] + dirlen + 1; |
7 | 7150 |
7151 # ifdef FEAT_MBYTE | |
7152 firstline = TRUE; | |
7153 # endif | |
7154 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) | |
7155 { | |
7156 # ifdef FEAT_MBYTE | |
7157 if (firstline) | |
7158 { | |
7159 /* Detect utf-8 file by a non-ASCII char in the first line. */ | |
7160 this_utf8 = MAYBE; | |
7161 for (s = IObuff; *s != NUL; ++s) | |
7162 if (*s >= 0x80) | |
7163 { | |
7164 int l; | |
7165 | |
7166 this_utf8 = TRUE; | |
474 | 7167 l = utf_ptr2len(s); |
7 | 7168 if (l == 1) |
7169 { | |
7170 /* Illegal UTF-8 byte sequence. */ | |
7171 this_utf8 = FALSE; | |
7172 break; | |
7173 } | |
7174 s += l - 1; | |
7175 } | |
7176 if (this_utf8 == MAYBE) /* only ASCII characters found */ | |
7177 this_utf8 = FALSE; | |
7178 if (utf8 == MAYBE) /* first file */ | |
7179 utf8 = this_utf8; | |
7180 else if (utf8 != this_utf8) | |
7181 { | |
7182 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]); | |
7183 mix = !got_int; | |
7184 got_int = TRUE; | |
7185 } | |
7186 firstline = FALSE; | |
7187 } | |
7188 # endif | |
7189 p1 = vim_strchr(IObuff, '*'); /* find first '*' */ | |
7190 while (p1 != NULL) | |
7191 { | |
3514 | 7192 /* Use vim_strbyte() instead of vim_strchr() so that when |
7193 * 'encoding' is dbcs it still works, don't find '*' in the | |
7194 * second byte. */ | |
7195 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */ | |
7 | 7196 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */ |
7197 { | |
7198 for (s = p1 + 1; s < p2; ++s) | |
7199 if (*s == ' ' || *s == '\t' || *s == '|') | |
7200 break; | |
7201 | |
7202 /* | |
7203 * Only accept a *tag* when it consists of valid | |
7204 * characters, there is white space before it and is | |
7205 * followed by a white character or end-of-line. | |
7206 */ | |
7207 if (s == p2 | |
7208 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') | |
7209 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL | |
7210 || s[1] == '\0')) | |
7211 { | |
7212 *p2 = '\0'; | |
7213 ++p1; | |
7214 if (ga_grow(&ga, 1) == FAIL) | |
7215 { | |
7216 got_int = TRUE; | |
7217 break; | |
7218 } | |
7219 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2)); | |
7220 if (s == NULL) | |
7221 { | |
7222 got_int = TRUE; | |
7223 break; | |
7224 } | |
7225 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
7226 ++ga.ga_len; | |
7227 sprintf((char *)s, "%s\t%s", p1, fname); | |
7228 | |
7229 /* find next '*' */ | |
7230 p2 = vim_strchr(p2 + 1, '*'); | |
7231 } | |
7232 } | |
7233 p1 = p2; | |
7234 } | |
7235 line_breakcheck(); | |
7236 } | |
7237 | |
7238 fclose(fd); | |
7239 } | |
7240 | |
7241 FreeWild(filecount, files); | |
7242 | |
7243 if (!got_int) | |
7244 { | |
7245 /* | |
7246 * Sort the tags. | |
7247 */ | |
7009 | 7248 if (ga.ga_data != NULL) |
7249 sort_strings((char_u **)ga.ga_data, ga.ga_len); | |
7 | 7250 |
7251 /* | |
7252 * Check for duplicates. | |
7253 */ | |
7254 for (i = 1; i < ga.ga_len; ++i) | |
7255 { | |
7256 p1 = ((char_u **)ga.ga_data)[i - 1]; | |
7257 p2 = ((char_u **)ga.ga_data)[i]; | |
7258 while (*p1 == *p2) | |
7259 { | |
7260 if (*p2 == '\t') | |
7261 { | |
7262 *p2 = NUL; | |
274 | 7263 vim_snprintf((char *)NameBuff, MAXPATHL, |
7 | 7264 _("E154: Duplicate tag \"%s\" in file %s/%s"), |
7265 ((char_u **)ga.ga_data)[i], dir, p2 + 1); | |
7266 EMSG(NameBuff); | |
7267 *p2 = '\t'; | |
7268 break; | |
7269 } | |
7270 ++p1; | |
7271 ++p2; | |
7272 } | |
7273 } | |
7274 | |
7275 # ifdef FEAT_MBYTE | |
7276 if (utf8 == TRUE) | |
7277 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n"); | |
7278 # endif | |
7279 | |
7280 /* | |
7281 * Write the tags into the file. | |
7282 */ | |
7283 for (i = 0; i < ga.ga_len; ++i) | |
7284 { | |
7285 s = ((char_u **)ga.ga_data)[i]; | |
1325 | 7286 if (STRNCMP(s, "help-tags\t", 10) == 0) |
7 | 7287 /* help-tags entry was added in formatted form */ |
1325 | 7288 fputs((char *)s, fd_tags); |
7 | 7289 else |
7290 { | |
7291 fprintf(fd_tags, "%s\t/*", s); | |
7292 for (p1 = s; *p1 != '\t'; ++p1) | |
7293 { | |
7294 /* insert backslash before '\\' and '/' */ | |
7295 if (*p1 == '\\' || *p1 == '/') | |
7296 putc('\\', fd_tags); | |
7297 putc(*p1, fd_tags); | |
7298 } | |
7299 fprintf(fd_tags, "*\n"); | |
7300 } | |
7301 } | |
7302 } | |
7303 #ifdef FEAT_MBYTE | |
7304 if (mix) | |
7305 got_int = FALSE; /* continue with other languages */ | |
7306 #endif | |
7307 | |
7308 for (i = 0; i < ga.ga_len; ++i) | |
7309 vim_free(((char_u **)ga.ga_data)[i]); | |
7310 ga_clear(&ga); | |
7311 fclose(fd_tags); /* there is no check for an error... */ | |
7312 } | |
7313 | |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7314 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7315 * 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
|
7316 */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7317 static void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7318 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
|
7319 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7320 #ifdef FEAT_MULTI_LANG |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7321 int len; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7322 int i, j; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7323 garray_T ga; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7324 char_u lang[2]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7325 char_u ext[5]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7326 char_u fname[8]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7327 int filecount; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7328 char_u **files; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7329 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7330 /* 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
|
7331 STRCPY(NameBuff, dirname); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7332 add_pathsep(NameBuff); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7333 STRCAT(NameBuff, "**"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7334 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
|
7335 EW_FILE|EW_SILENT) == FAIL |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7336 || filecount == 0) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7337 { |
9953
9560a2eb7968
commit https://github.com/vim/vim/commit/5b30291785e6b9be1a607504c14bd03c601b59a6
Christian Brabandt <cb@256bit.org>
parents:
9947
diff
changeset
|
7338 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
|
7339 return; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7340 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7341 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7342 /* 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
|
7343 * present. */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7344 ga_init2(&ga, 1, 10); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7345 for (i = 0; i < filecount; ++i) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7346 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7347 len = (int)STRLEN(files[i]); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7348 if (len > 4) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7349 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7350 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
|
7351 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7352 /* ".txt" -> language "en" */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7353 lang[0] = 'e'; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7354 lang[1] = 'n'; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7355 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7356 else if (files[i][len - 4] == '.' |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7357 && ASCII_ISALPHA(files[i][len - 3]) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7358 && ASCII_ISALPHA(files[i][len - 2]) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7359 && 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
|
7360 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7361 /* ".abx" -> language "ab" */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7362 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
|
7363 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
|
7364 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7365 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7366 continue; |
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 /* Did we find this language already? */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7369 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
|
7370 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
|
7371 break; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7372 if (j == ga.ga_len) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7373 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7374 /* New language, add it. */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7375 if (ga_grow(&ga, 2) == FAIL) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7376 break; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7377 ((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
|
7378 ((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
|
7379 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7380 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7381 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7382 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7383 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7384 * 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
|
7385 */ |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7386 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
|
7387 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7388 STRCPY(fname, "tags-xx"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7389 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
|
7390 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
|
7391 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
|
7392 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7393 /* 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
|
7394 fname[4] = NUL; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7395 STRCPY(ext, ".txt"); |
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 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7399 /* 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
|
7400 STRCPY(ext, ".xxx"); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7401 ext[1] = fname[5]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7402 ext[2] = fname[6]; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7403 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7404 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
|
7405 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7406 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7407 ga_clear(&ga); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7408 FreeWild(filecount, files); |
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 #else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7411 /* 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
|
7412 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
|
7413 #endif |
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 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7416 static void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7417 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
|
7418 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7419 do_helptags(fname, *(int *)cookie); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7420 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7421 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7422 /* |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7423 * ":helptags" |
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 void |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7426 ex_helptags(exarg_T *eap) |
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 expand_T xpc; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7429 char_u *dirname; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7430 int add_help_tags = FALSE; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7431 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7432 /* Check for ":helptags ++t {dir}". */ |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
7433 if (STRNCMP(eap->arg, "++t", 3) == 0 && VIM_ISWHITE(eap->arg[3])) |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7434 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7435 add_help_tags = TRUE; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7436 eap->arg = skipwhite(eap->arg + 3); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7437 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7438 |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7439 if (STRCMP(eap->arg, "ALL") == 0) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7440 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7441 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
|
7442 helptags_cb, &add_help_tags); |
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 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7445 { |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7446 ExpandInit(&xpc); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7447 xpc.xp_context = EXPAND_DIRECTORIES; |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7448 dirname = ExpandOne(&xpc, eap->arg, NULL, |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7449 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
|
7450 if (dirname == NULL || !mch_isdir(dirname)) |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7451 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
|
7452 else |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7453 do_helptags(dirname, add_help_tags); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7454 vim_free(dirname); |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7455 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7456 } |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
7457 |
7 | 7458 #if defined(FEAT_SIGNS) || defined(PROTO) |
7459 | |
7460 /* | |
7461 * Struct to hold the sign properties. | |
7462 */ | |
7463 typedef struct sign sign_T; | |
7464 | |
7465 struct sign | |
7466 { | |
7467 sign_T *sn_next; /* next sign in list */ | |
2606 | 7468 int sn_typenr; /* type number of sign */ |
7 | 7469 char_u *sn_name; /* name of sign */ |
7470 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
|
7471 # ifdef FEAT_SIGN_ICONS |
7 | 7472 void *sn_image; /* icon image */ |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7473 # endif |
7 | 7474 char_u *sn_text; /* text used instead of pixmap */ |
7475 int sn_line_hl; /* highlight ID for line */ | |
7476 int sn_text_hl; /* highlight ID for text */ | |
7477 }; | |
7478 | |
7479 static sign_T *first_sign = NULL; | |
2605 | 7480 static int next_sign_typenr = 1; |
7 | 7481 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
7482 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
|
7483 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
|
7484 static void sign_undefine(sign_T *sp, sign_T *sp_prev); |
7 | 7485 |
1868 | 7486 static char *cmds[] = { |
7487 "define", | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7488 # define SIGNCMD_DEFINE 0 |
1868 | 7489 "undefine", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7490 # define SIGNCMD_UNDEFINE 1 |
1868 | 7491 "list", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7492 # define SIGNCMD_LIST 2 |
1868 | 7493 "place", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7494 # define SIGNCMD_PLACE 3 |
1868 | 7495 "unplace", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7496 # define SIGNCMD_UNPLACE 4 |
1868 | 7497 "jump", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7498 # define SIGNCMD_JUMP 5 |
1868 | 7499 NULL |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7500 # define SIGNCMD_LAST 6 |
1868 | 7501 }; |
7502 | |
7503 /* | |
7504 * Find index of a ":sign" subcmd from its name. | |
7505 * "*end_cmd" must be writable. | |
7506 */ | |
7507 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7508 sign_cmd_idx( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7509 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
|
7510 char_u *end_cmd) /* just after sign subcmd */ |
1868 | 7511 { |
7512 int idx; | |
7513 char save = *end_cmd; | |
7514 | |
7515 *end_cmd = NUL; | |
7516 for (idx = 0; ; ++idx) | |
7517 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0) | |
7518 break; | |
7519 *end_cmd = save; | |
7520 return idx; | |
7521 } | |
7522 | |
7 | 7523 /* |
7524 * ":sign" command | |
7525 */ | |
7526 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7527 ex_sign(exarg_T *eap) |
7 | 7528 { |
7529 char_u *arg = eap->arg; | |
7530 char_u *p; | |
7531 int idx; | |
7532 sign_T *sp; | |
7533 sign_T *sp_prev; | |
7534 buf_T *buf; | |
7535 | |
7536 /* Parse the subcommand. */ | |
7537 p = skiptowhite(arg); | |
1868 | 7538 idx = sign_cmd_idx(arg, p); |
7539 if (idx == SIGNCMD_LAST) | |
7540 { | |
7541 EMSG2(_("E160: Unknown sign command: %s"), arg); | |
7542 return; | |
7 | 7543 } |
7544 arg = skipwhite(p); | |
7545 | |
7546 if (idx <= SIGNCMD_LIST) | |
7547 { | |
7548 /* | |
7549 * Define, undefine or list signs. | |
7550 */ | |
7551 if (idx == SIGNCMD_LIST && *arg == NUL) | |
7552 { | |
7553 /* ":sign list": list all defined signs */ | |
3411 | 7554 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next) |
7 | 7555 sign_list_defined(sp); |
7556 } | |
7557 else if (*arg == NUL) | |
7558 EMSG(_("E156: Missing sign name")); | |
7559 else | |
7560 { | |
2605 | 7561 /* Isolate the sign name. If it's a number skip leading zeroes, |
7562 * so that "099" and "99" are the same sign. But keep "0". */ | |
7 | 7563 p = skiptowhite(arg); |
7564 if (*p != NUL) | |
7565 *p++ = NUL; | |
2605 | 7566 while (arg[0] == '0' && arg[1] != NUL) |
7567 ++arg; | |
7568 | |
7 | 7569 sp_prev = NULL; |
7570 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7571 { | |
7572 if (STRCMP(sp->sn_name, arg) == 0) | |
7573 break; | |
7574 sp_prev = sp; | |
7575 } | |
7576 if (idx == SIGNCMD_DEFINE) | |
7577 { | |
7578 /* ":sign define {name} ...": define a sign */ | |
7579 if (sp == NULL) | |
7580 { | |
2605 | 7581 sign_T *lp; |
7582 int start = next_sign_typenr; | |
7583 | |
7 | 7584 /* Allocate a new sign. */ |
7585 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T)); | |
7586 if (sp == NULL) | |
7587 return; | |
7588 | |
2605 | 7589 /* Check that next_sign_typenr is not already being used. |
7590 * This only happens after wrapping around. Hopefully | |
7591 * another one got deleted and we can use its number. */ | |
7592 for (lp = first_sign; lp != NULL; ) | |
7 | 7593 { |
2605 | 7594 if (lp->sn_typenr == next_sign_typenr) |
7 | 7595 { |
2605 | 7596 ++next_sign_typenr; |
7597 if (next_sign_typenr == MAX_TYPENR) | |
7598 next_sign_typenr = 1; | |
7599 if (next_sign_typenr == start) | |
7 | 7600 { |
2605 | 7601 vim_free(sp); |
7602 EMSG(_("E612: Too many signs defined")); | |
7603 return; | |
7 | 7604 } |
2605 | 7605 lp = first_sign; /* start all over */ |
7606 continue; | |
7 | 7607 } |
2605 | 7608 lp = lp->sn_next; |
7609 } | |
7610 | |
7611 sp->sn_typenr = next_sign_typenr; | |
7612 if (++next_sign_typenr == MAX_TYPENR) | |
7613 next_sign_typenr = 1; /* wrap around */ | |
7614 | |
7615 sp->sn_name = vim_strsave(arg); | |
7616 if (sp->sn_name == NULL) /* out of memory */ | |
7617 { | |
7618 vim_free(sp); | |
7619 return; | |
7 | 7620 } |
2601 | 7621 |
7622 /* add the new sign to the list of signs */ | |
7623 if (sp_prev == NULL) | |
7624 first_sign = sp; | |
7625 else | |
7626 sp_prev->sn_next = sp; | |
7 | 7627 } |
7628 | |
7629 /* set values for a defined sign. */ | |
7630 for (;;) | |
7631 { | |
7632 arg = skipwhite(p); | |
7633 if (*arg == NUL) | |
7634 break; | |
7635 p = skiptowhite_esc(arg); | |
7636 if (STRNCMP(arg, "icon=", 5) == 0) | |
7637 { | |
7638 arg += 5; | |
7639 vim_free(sp->sn_icon); | |
7640 sp->sn_icon = vim_strnsave(arg, (int)(p - arg)); | |
7641 backslash_halve(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7642 # ifdef FEAT_SIGN_ICONS |
7 | 7643 if (gui.in_use) |
7644 { | |
7645 out_flush(); | |
7646 if (sp->sn_image != NULL) | |
7647 gui_mch_destroy_sign(sp->sn_image); | |
7648 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7649 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7650 # endif |
7 | 7651 } |
7652 else if (STRNCMP(arg, "text=", 5) == 0) | |
7653 { | |
7654 char_u *s; | |
7655 int cells; | |
7656 int len; | |
7657 | |
7658 arg += 5; | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7659 # ifdef FEAT_MBYTE |
7 | 7660 /* Count cells and check for non-printable chars */ |
7661 if (has_mbyte) | |
7662 { | |
7663 cells = 0; | |
474 | 7664 for (s = arg; s < p; s += (*mb_ptr2len)(s)) |
7 | 7665 { |
7666 if (!vim_isprintc((*mb_ptr2char)(s))) | |
7667 break; | |
7668 cells += (*mb_ptr2cells)(s); | |
7669 } | |
7670 } | |
7671 else | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7672 # endif |
7 | 7673 { |
7674 for (s = arg; s < p; ++s) | |
7675 if (!vim_isprintc(*s)) | |
7676 break; | |
835 | 7677 cells = (int)(s - arg); |
7 | 7678 } |
7679 /* Currently must be one or two display cells */ | |
7680 if (s != p || cells < 1 || cells > 2) | |
7681 { | |
7682 *p = NUL; | |
7683 EMSG2(_("E239: Invalid sign text: %s"), arg); | |
7684 return; | |
7685 } | |
7686 | |
7687 vim_free(sp->sn_text); | |
7688 /* Allocate one byte more if we need to pad up | |
7689 * with a space. */ | |
835 | 7690 len = (int)(p - arg + ((cells == 1) ? 1 : 0)); |
7 | 7691 sp->sn_text = vim_strnsave(arg, len); |
7692 | |
7693 if (sp->sn_text != NULL && cells == 1) | |
7694 STRCPY(sp->sn_text + len - 1, " "); | |
7695 } | |
7696 else if (STRNCMP(arg, "linehl=", 7) == 0) | |
7697 { | |
7698 arg += 7; | |
7699 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg)); | |
7700 } | |
7701 else if (STRNCMP(arg, "texthl=", 7) == 0) | |
7702 { | |
7703 arg += 7; | |
7704 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg)); | |
7705 } | |
7706 else | |
7707 { | |
7708 EMSG2(_(e_invarg2), arg); | |
7709 return; | |
7710 } | |
7711 } | |
7712 } | |
7713 else if (sp == NULL) | |
7714 EMSG2(_("E155: Unknown sign: %s"), arg); | |
7715 else if (idx == SIGNCMD_LIST) | |
7716 /* ":sign list {name}" */ | |
7717 sign_list_defined(sp); | |
7718 else | |
7719 /* ":sign undefine {name}" */ | |
1828 | 7720 sign_undefine(sp, sp_prev); |
7 | 7721 } |
7722 } | |
7723 else | |
7724 { | |
7725 int id = -1; | |
7726 linenr_T lnum = -1; | |
7727 char_u *sign_name = NULL; | |
7728 char_u *arg1; | |
7729 | |
7730 if (*arg == NUL) | |
7731 { | |
7732 if (idx == SIGNCMD_PLACE) | |
7733 { | |
7734 /* ":sign place": list placed signs in all buffers */ | |
7735 sign_list_placed(NULL); | |
7736 } | |
7737 else if (idx == SIGNCMD_UNPLACE) | |
7738 { | |
7739 /* ":sign unplace": remove placed sign at cursor */ | |
7740 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum); | |
7741 if (id > 0) | |
7742 { | |
7743 buf_delsign(curwin->w_buffer, id); | |
7744 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum); | |
7745 } | |
7746 else | |
7747 EMSG(_("E159: Missing sign number")); | |
7748 } | |
7749 else | |
7750 EMSG(_(e_argreq)); | |
7751 return; | |
7752 } | |
7753 | |
7754 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL) | |
7755 { | |
7756 /* ":sign unplace *": remove all placed signs */ | |
7757 buf_delete_all_signs(); | |
7758 return; | |
7759 } | |
7760 | |
7761 /* first arg could be placed sign id */ | |
7762 arg1 = arg; | |
7763 if (VIM_ISDIGIT(*arg)) | |
7764 { | |
7765 id = getdigits(&arg); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
7766 if (!VIM_ISWHITE(*arg) && *arg != NUL) |
7 | 7767 { |
7768 id = -1; | |
7769 arg = arg1; | |
7770 } | |
7771 else | |
7772 { | |
7773 arg = skipwhite(arg); | |
7774 if (idx == SIGNCMD_UNPLACE && *arg == NUL) | |
7775 { | |
7776 /* ":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
|
7777 FOR_ALL_BUFFERS(buf) |
7 | 7778 if ((lnum = buf_delsign(buf, id)) != 0) |
7779 update_debug_sign(buf, lnum); | |
7780 return; | |
7781 } | |
7782 } | |
7783 } | |
7784 | |
7785 /* | |
7786 * Check for line={lnum} name={name} and file={fname} or buffer={nr}. | |
7787 * Leave "arg" pointing to {fname}. | |
7788 */ | |
7789 for (;;) | |
7790 { | |
7791 if (STRNCMP(arg, "line=", 5) == 0) | |
7792 { | |
7793 arg += 5; | |
7794 lnum = atoi((char *)arg); | |
7795 arg = skiptowhite(arg); | |
7796 } | |
3672 | 7797 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE) |
7798 { | |
7799 if (id != -1) | |
7800 { | |
7801 EMSG(_(e_invarg)); | |
7802 return; | |
7803 } | |
7804 id = -2; | |
7805 arg = skiptowhite(arg + 1); | |
7806 } | |
7 | 7807 else if (STRNCMP(arg, "name=", 5) == 0) |
7808 { | |
7809 arg += 5; | |
7810 sign_name = arg; | |
7811 arg = skiptowhite(arg); | |
7812 if (*arg != NUL) | |
7813 *arg++ = NUL; | |
2605 | 7814 while (sign_name[0] == '0' && sign_name[1] != NUL) |
7815 ++sign_name; | |
7 | 7816 } |
7817 else if (STRNCMP(arg, "file=", 5) == 0) | |
7818 { | |
7819 arg += 5; | |
7820 buf = buflist_findname(arg); | |
7821 break; | |
7822 } | |
7823 else if (STRNCMP(arg, "buffer=", 7) == 0) | |
7824 { | |
7825 arg += 7; | |
7826 buf = buflist_findnr((int)getdigits(&arg)); | |
7827 if (*skipwhite(arg) != NUL) | |
7828 EMSG(_(e_trailing)); | |
7829 break; | |
7830 } | |
7831 else | |
7832 { | |
7833 EMSG(_(e_invarg)); | |
7834 return; | |
7835 } | |
7836 arg = skipwhite(arg); | |
7837 } | |
7838 | |
7839 if (buf == NULL) | |
7840 { | |
7841 EMSG2(_("E158: Invalid buffer name: %s"), arg); | |
7842 } | |
3672 | 7843 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2)) |
7 | 7844 { |
7845 if (lnum >= 0 || sign_name != NULL) | |
7846 EMSG(_(e_invarg)); | |
7847 else | |
7848 /* ":sign place file={fname}": list placed signs in one file */ | |
7849 sign_list_placed(buf); | |
7850 } | |
7851 else if (idx == SIGNCMD_JUMP) | |
7852 { | |
7853 /* ":sign jump {id} file={fname}" */ | |
7854 if (lnum >= 0 || sign_name != NULL) | |
7855 EMSG(_(e_invarg)); | |
7856 else if ((lnum = buf_findsign(buf, id)) > 0) | |
7857 { /* goto a sign ... */ | |
7858 if (buf_jump_open_win(buf) != NULL) | |
7859 { /* ... in a current window */ | |
7860 curwin->w_cursor.lnum = lnum; | |
7861 check_cursor_lnum(); | |
7862 beginline(BL_WHITE); | |
7863 } | |
7864 else | |
7865 { /* ... not currently in a window */ | |
7866 char_u *cmd; | |
7867 | |
9902
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7868 if (buf->b_fname == NULL) |
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7869 { |
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7870 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
|
7871 return; |
5a667a3a3743
commit https://github.com/vim/vim/commit/bfd096d02087a10e8e2f4bdfb74e0435506fa8bb
Christian Brabandt <cb@256bit.org>
parents:
9890
diff
changeset
|
7872 } |
7 | 7873 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25); |
7874 if (cmd == NULL) | |
7875 return; | |
7876 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname); | |
7877 do_cmdline_cmd(cmd); | |
7878 vim_free(cmd); | |
7879 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7880 # ifdef FEAT_FOLDING |
7 | 7881 foldOpenCursor(); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7882 # endif |
7 | 7883 } |
7884 else | |
7885 EMSGN(_("E157: Invalid sign ID: %ld"), id); | |
7886 } | |
7887 else if (idx == SIGNCMD_UNPLACE) | |
7888 { | |
7889 if (lnum >= 0 || sign_name != NULL) | |
7890 EMSG(_(e_invarg)); | |
3672 | 7891 else if (id == -2) |
7892 { | |
7893 /* ":sign unplace * file={fname}" */ | |
7894 redraw_buf_later(buf, NOT_VALID); | |
7895 buf_delete_signs(buf); | |
7896 } | |
7 | 7897 else |
7898 { | |
3672 | 7899 /* ":sign unplace {id} file={fname}" */ |
7 | 7900 lnum = buf_delsign(buf, id); |
7901 update_debug_sign(buf, lnum); | |
7902 } | |
7903 } | |
7904 /* idx == SIGNCMD_PLACE */ | |
7905 else if (sign_name != NULL) | |
7906 { | |
7907 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7908 if (STRCMP(sp->sn_name, sign_name) == 0) | |
7909 break; | |
7910 if (sp == NULL) | |
7911 { | |
7912 EMSG2(_("E155: Unknown sign: %s"), sign_name); | |
7913 return; | |
7914 } | |
7915 if (lnum > 0) | |
7916 /* ":sign place {id} line={lnum} name={name} file={fname}": | |
7917 * place a sign */ | |
7918 buf_addsign(buf, id, lnum, sp->sn_typenr); | |
7919 else | |
7920 /* ":sign place {id} file={fname}": change sign type */ | |
7921 lnum = buf_change_sign_type(buf, id, sp->sn_typenr); | |
5865 | 7922 if (lnum > 0) |
7923 update_debug_sign(buf, lnum); | |
7924 else | |
7925 EMSG2(_("E885: Not possible to change sign %s"), sign_name); | |
7 | 7926 } |
7927 else | |
7928 EMSG(_(e_invarg)); | |
7929 } | |
7930 } | |
7931 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7932 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
7 | 7933 /* |
7934 * Allocate the icons. Called when the GUI has started. Allows defining | |
7935 * signs before it starts. | |
7936 */ | |
7937 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7938 sign_gui_started(void) |
7 | 7939 { |
7940 sign_T *sp; | |
7941 | |
7942 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7943 if (sp->sn_icon != NULL) | |
7944 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7945 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7946 # endif |
7 | 7947 |
7948 /* | |
7949 * List one sign. | |
7950 */ | |
7951 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7952 sign_list_defined(sign_T *sp) |
7 | 7953 { |
7954 char_u *p; | |
7955 | |
274 | 7956 smsg((char_u *)"sign %s", sp->sn_name); |
7 | 7957 if (sp->sn_icon != NULL) |
7958 { | |
7959 MSG_PUTS(" icon="); | |
7960 msg_outtrans(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7961 # ifdef FEAT_SIGN_ICONS |
7 | 7962 if (sp->sn_image == NULL) |
7963 MSG_PUTS(_(" (NOT FOUND)")); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7964 # else |
7 | 7965 MSG_PUTS(_(" (not supported)")); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7966 # endif |
7 | 7967 } |
7968 if (sp->sn_text != NULL) | |
7969 { | |
7970 MSG_PUTS(" text="); | |
7971 msg_outtrans(sp->sn_text); | |
7972 } | |
7973 if (sp->sn_line_hl > 0) | |
7974 { | |
7975 MSG_PUTS(" linehl="); | |
11254
918942a3b0ef
patch 8.0.0513: getting name of cleared highlight group is wrong
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
7976 p = get_highlight_name_ext(NULL, sp->sn_line_hl - 1, FALSE); |
7 | 7977 if (p == NULL) |
7978 MSG_PUTS("NONE"); | |
7979 else | |
7980 msg_puts(p); | |
7981 } | |
7982 if (sp->sn_text_hl > 0) | |
7983 { | |
7984 MSG_PUTS(" texthl="); | |
11254
918942a3b0ef
patch 8.0.0513: getting name of cleared highlight group is wrong
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
7985 p = get_highlight_name_ext(NULL, sp->sn_text_hl - 1, FALSE); |
7 | 7986 if (p == NULL) |
7987 MSG_PUTS("NONE"); | |
7988 else | |
7989 msg_puts(p); | |
7990 } | |
7991 } | |
7992 | |
7993 /* | |
1828 | 7994 * Undefine a sign and free its memory. |
7995 */ | |
7996 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7997 sign_undefine(sign_T *sp, sign_T *sp_prev) |
1828 | 7998 { |
7999 vim_free(sp->sn_name); | |
8000 vim_free(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8001 # ifdef FEAT_SIGN_ICONS |
1828 | 8002 if (sp->sn_image != NULL) |
8003 { | |
8004 out_flush(); | |
8005 gui_mch_destroy_sign(sp->sn_image); | |
8006 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8007 # endif |
1828 | 8008 vim_free(sp->sn_text); |
8009 if (sp_prev == NULL) | |
8010 first_sign = sp->sn_next; | |
8011 else | |
8012 sp_prev->sn_next = sp->sn_next; | |
8013 vim_free(sp); | |
8014 } | |
8015 | |
8016 /* | |
7 | 8017 * Get highlighting attribute for sign "typenr". |
8018 * If "line" is TRUE: line highl, if FALSE: text highl. | |
8019 */ | |
8020 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8021 sign_get_attr(int typenr, int line) |
7 | 8022 { |
8023 sign_T *sp; | |
8024 | |
8025 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8026 if (sp->sn_typenr == typenr) | |
8027 { | |
8028 if (line) | |
8029 { | |
8030 if (sp->sn_line_hl > 0) | |
8031 return syn_id2attr(sp->sn_line_hl); | |
8032 } | |
8033 else | |
8034 { | |
8035 if (sp->sn_text_hl > 0) | |
8036 return syn_id2attr(sp->sn_text_hl); | |
8037 } | |
8038 break; | |
8039 } | |
8040 return 0; | |
8041 } | |
8042 | |
8043 /* | |
8044 * Get text mark for sign "typenr". | |
8045 * Returns NULL if there isn't one. | |
8046 */ | |
8047 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8048 sign_get_text(int typenr) |
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_text; | |
8055 return NULL; | |
8056 } | |
8057 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8058 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
7 | 8059 void * |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8060 sign_get_image( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8061 int typenr) /* the attribute which may have a sign */ |
7 | 8062 { |
8063 sign_T *sp; | |
8064 | |
8065 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8066 if (sp->sn_typenr == typenr) | |
8067 return sp->sn_image; | |
8068 return NULL; | |
8069 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8070 # endif |
7 | 8071 |
8072 /* | |
8073 * Get the name of a sign by its typenr. | |
8074 */ | |
8075 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8076 sign_typenr2name(int typenr) |
7 | 8077 { |
8078 sign_T *sp; | |
8079 | |
8080 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8081 if (sp->sn_typenr == typenr) | |
8082 return sp->sn_name; | |
8083 return (char_u *)_("[Deleted]"); | |
8084 } | |
8085 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8086 # if defined(EXITFREE) || defined(PROTO) |
1828 | 8087 /* |
8088 * Undefine/free all signs. | |
8089 */ | |
8090 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8091 free_signs(void) |
1828 | 8092 { |
8093 while (first_sign != NULL) | |
8094 sign_undefine(first_sign, NULL); | |
8095 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8096 # endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8097 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8098 # if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
1868 | 8099 static enum |
8100 { | |
8101 EXP_SUBCMD, /* expand :sign sub-commands */ | |
8102 EXP_DEFINE, /* expand :sign define {name} args */ | |
8103 EXP_PLACE, /* expand :sign place {id} args */ | |
8104 EXP_UNPLACE, /* expand :sign unplace" */ | |
8105 EXP_SIGN_NAMES /* expand with name of placed signs */ | |
8106 } expand_what; | |
8107 | |
8108 /* | |
8109 * Function given to ExpandGeneric() to obtain the sign command | |
8110 * expansion. | |
8111 */ | |
8112 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8113 get_sign_name(expand_T *xp UNUSED, int idx) |
1868 | 8114 { |
8115 sign_T *sp; | |
8116 int current_idx; | |
8117 | |
8118 switch (expand_what) | |
8119 { | |
8120 case EXP_SUBCMD: | |
8121 return (char_u *)cmds[idx]; | |
8122 case EXP_DEFINE: | |
8123 { | |
8124 char *define_arg[] = | |
8125 { | |
8126 "icon=", "linehl=", "text=", "texthl=", NULL | |
8127 }; | |
8128 return (char_u *)define_arg[idx]; | |
8129 } | |
8130 case EXP_PLACE: | |
8131 { | |
8132 char *place_arg[] = | |
8133 { | |
8134 "line=", "name=", "file=", "buffer=", NULL | |
8135 }; | |
8136 return (char_u *)place_arg[idx]; | |
8137 } | |
8138 case EXP_UNPLACE: | |
8139 { | |
8140 char *unplace_arg[] = { "file=", "buffer=", NULL }; | |
8141 return (char_u *)unplace_arg[idx]; | |
8142 } | |
8143 case EXP_SIGN_NAMES: | |
8144 /* Complete with name of signs already defined */ | |
8145 current_idx = 0; | |
8146 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
8147 if (current_idx++ == idx) | |
8148 return sp->sn_name; | |
8149 return NULL; | |
8150 default: | |
8151 return NULL; | |
8152 } | |
8153 } | |
8154 | |
8155 /* | |
8156 * Handle command line completion for :sign command. | |
8157 */ | |
8158 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8159 set_context_in_sign_cmd(expand_T *xp, char_u *arg) |
1868 | 8160 { |
8161 char_u *p; | |
8162 char_u *end_subcmd; | |
8163 char_u *last; | |
8164 int cmd_idx; | |
8165 char_u *begin_subcmd_args; | |
8166 | |
8167 /* Default: expand subcommands. */ | |
8168 xp->xp_context = EXPAND_SIGN; | |
8169 expand_what = EXP_SUBCMD; | |
8170 xp->xp_pattern = arg; | |
8171 | |
8172 end_subcmd = skiptowhite(arg); | |
8173 if (*end_subcmd == NUL) | |
8174 /* expand subcmd name | |
8175 * :sign {subcmd}<CTRL-D>*/ | |
8176 return; | |
8177 | |
8178 cmd_idx = sign_cmd_idx(arg, end_subcmd); | |
8179 | |
8180 /* :sign {subcmd} {subcmd_args} | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8181 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8182 * begin_subcmd_args */ |
1868 | 8183 begin_subcmd_args = skipwhite(end_subcmd); |
8184 p = skiptowhite(begin_subcmd_args); | |
8185 if (*p == NUL) | |
8186 { | |
8187 /* | |
8188 * Expand first argument of subcmd when possible. | |
8189 * For ":jump {id}" and ":unplace {id}", we could | |
8190 * possibly expand the ids of all signs already placed. | |
8191 */ | |
8192 xp->xp_pattern = begin_subcmd_args; | |
8193 switch (cmd_idx) | |
8194 { | |
8195 case SIGNCMD_LIST: | |
8196 case SIGNCMD_UNDEFINE: | |
8197 /* :sign list <CTRL-D> | |
8198 * :sign undefine <CTRL-D> */ | |
8199 expand_what = EXP_SIGN_NAMES; | |
8200 break; | |
8201 default: | |
8202 xp->xp_context = EXPAND_NOTHING; | |
8203 } | |
8204 return; | |
8205 } | |
8206 | |
8207 /* expand last argument of subcmd */ | |
8208 | |
8209 /* :sign define {name} {args}... | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8210 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8211 * p */ |
1868 | 8212 |
8213 /* Loop until reaching last argument. */ | |
8214 do | |
8215 { | |
8216 p = skipwhite(p); | |
8217 last = p; | |
8218 p = skiptowhite(p); | |
8219 } while (*p != NUL); | |
8220 | |
8221 p = vim_strchr(last, '='); | |
8222 | |
8223 /* :sign define {name} {args}... {last}= | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8224 * | | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
8225 * last p */ |
10299
7b2f95633e28
commit https://github.com/vim/vim/commit/7756e7465d627ff9cd01e59625484a8c302ef853
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
8226 if (p == NULL) |
1868 | 8227 { |
8228 /* Expand last argument name (before equal sign). */ | |
8229 xp->xp_pattern = last; | |
8230 switch (cmd_idx) | |
8231 { | |
8232 case SIGNCMD_DEFINE: | |
8233 expand_what = EXP_DEFINE; | |
8234 break; | |
8235 case SIGNCMD_PLACE: | |
8236 expand_what = EXP_PLACE; | |
8237 break; | |
8238 case SIGNCMD_JUMP: | |
8239 case SIGNCMD_UNPLACE: | |
8240 expand_what = EXP_UNPLACE; | |
8241 break; | |
8242 default: | |
8243 xp->xp_context = EXPAND_NOTHING; | |
8244 } | |
8245 } | |
8246 else | |
8247 { | |
8248 /* Expand last argument value (after equal sign). */ | |
8249 xp->xp_pattern = p + 1; | |
8250 switch (cmd_idx) | |
8251 { | |
8252 case SIGNCMD_DEFINE: | |
8253 if (STRNCMP(last, "texthl", p - last) == 0 || | |
8254 STRNCMP(last, "linehl", p - last) == 0) | |
8255 xp->xp_context = EXPAND_HIGHLIGHT; | |
8256 else if (STRNCMP(last, "icon", p - last) == 0) | |
8257 xp->xp_context = EXPAND_FILES; | |
8258 else | |
8259 xp->xp_context = EXPAND_NOTHING; | |
8260 break; | |
8261 case SIGNCMD_PLACE: | |
8262 if (STRNCMP(last, "name", p - last) == 0) | |
8263 expand_what = EXP_SIGN_NAMES; | |
8264 else | |
8265 xp->xp_context = EXPAND_NOTHING; | |
8266 break; | |
8267 default: | |
8268 xp->xp_context = EXPAND_NOTHING; | |
8269 } | |
8270 } | |
8271 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8272 # endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8273 #endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8274 |
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 * Make the user happy. |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8277 */ |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8278 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8279 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
|
8280 { |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8281 static char *code[] = { |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8282 "\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
|
8283 "\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
|
8284 }; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8285 char *p; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8286 int n; |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8287 int i; |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8288 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8289 msg_start(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8290 msg_putchar('\n'); |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8291 for (i = 0; i < 2; ++i) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8292 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
|
8293 if (*p == 'x') |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8294 msg_putchar('\n'); |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8295 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8296 for (n = *p++; n > 0; --n) |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8297 if (*p == 'o' || *p == '$') |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11144
diff
changeset
|
8298 msg_putchar_attr(*p, HL_ATTR(HLF_L)); |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8299 else |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
8300 msg_putchar(*p); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8301 msg_clr_eos(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
8302 } |
7 | 8303 |
8304 #if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO) | |
8305 /* | |
8306 * ":drop" | |
8307 * Opens the first argument in a window. When there are two or more arguments | |
8308 * the argument list is redefined. | |
8309 */ | |
8310 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
8311 ex_drop(exarg_T *eap) |
7 | 8312 { |
8313 int split = FALSE; | |
8314 win_T *wp; | |
8315 buf_T *buf; | |
735 | 8316 # ifdef FEAT_WINDOWS |
8317 tabpage_T *tp; | |
8318 # endif | |
7 | 8319 |
8320 /* | |
8321 * Check if the first argument is already being edited in a window. If | |
8322 * so, jump to that window. | |
8323 * We would actually need to check all arguments, but that's complicated | |
8324 * and mostly only one file is dropped. | |
8325 * This also ignores wildcards, since it is very unlikely the user is | |
8326 * editing a file name with a wildcard character. | |
8327 */ | |
735 | 8328 set_arglist(eap->arg); |
8329 | |
1067 | 8330 /* |
8331 * Expanding wildcards may result in an empty argument list. E.g. when | |
8332 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we | |
8333 * already did an error message for this. | |
8334 */ | |
8335 if (ARGCOUNT == 0) | |
8336 return; | |
8337 | |
7 | 8338 # ifdef FEAT_WINDOWS |
735 | 8339 if (cmdmod.tab) |
8340 { | |
8341 /* ":tab drop file ...": open a tab for each argument that isn't | |
8342 * edited in a window yet. It's like ":tab all" but without closing | |
8343 * windows or tabs. */ | |
8344 ex_all(eap); | |
8345 } | |
8346 else | |
7 | 8347 # endif |
735 | 8348 { |
8349 /* ":drop file ...": Edit the first argument. Jump to an existing | |
8350 * window if possible, edit in current window if the current buffer | |
8351 * can be abandoned, otherwise open a new window. */ | |
8352 buf = buflist_findnr(ARGLIST[0].ae_fnum); | |
8353 | |
8354 FOR_ALL_TAB_WINDOWS(tp, wp) | |
8355 { | |
8356 if (wp->w_buffer == buf) | |
7 | 8357 { |
735 | 8358 # ifdef FEAT_WINDOWS |
825 | 8359 goto_tabpage_win(tp, wp); |
735 | 8360 # endif |
7 | 8361 curwin->w_arg_idx = 0; |
8362 return; | |
8363 } | |
8364 } | |
735 | 8365 |
8366 /* | |
8367 * Check whether the current buffer is changed. If so, we will need | |
8368 * to split the current window or data could be lost. | |
8369 * Skip the check if the 'hidden' option is set, as in this case the | |
8370 * buffer won't be lost. | |
8371 */ | |
8372 if (!P_HID(curbuf)) | |
8373 { | |
7 | 8374 # ifdef FEAT_WINDOWS |
735 | 8375 ++emsg_off; |
7 | 8376 # endif |
5464 | 8377 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD); |
7 | 8378 # ifdef FEAT_WINDOWS |
735 | 8379 --emsg_off; |
7 | 8380 # else |
735 | 8381 if (split) |
8382 return; | |
7 | 8383 # endif |
735 | 8384 } |
8385 | |
8386 /* Fake a ":sfirst" or ":first" command edit the first argument. */ | |
8387 if (split) | |
8388 { | |
8389 eap->cmdidx = CMD_sfirst; | |
8390 eap->cmd[0] = 's'; | |
8391 } | |
8392 else | |
8393 eap->cmdidx = CMD_first; | |
8394 ex_rewind(eap); | |
8395 } | |
7 | 8396 } |
8397 #endif | |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8398 |
9931
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 * 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
|
8401 * 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
|
8402 * 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
|
8403 * 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
|
8404 * 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
|
8405 */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8406 char_u * |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8407 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
|
8408 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8409 int c; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8410 |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8411 if (vim_isIDc(*p)) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8412 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8413 /* ":vimgrep pattern fname" */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8414 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8415 *s = p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8416 p = skiptowhite(p); |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8417 if (s != NULL && *p != NUL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8418 *p++ = NUL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8419 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8420 else |
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 /* ":vimgrep /pattern/[g][j] fname" */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8423 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8424 *s = p + 1; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8425 c = *p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8426 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
|
8427 if (*p != c) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8428 return NULL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8429 |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8430 /* Truncate the pattern. */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8431 if (s != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8432 *p = NUL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8433 ++p; |
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 /* Find the flags */ |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8436 while (*p == 'g' || *p == 'j') |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8437 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8438 if (flags != NULL) |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8439 { |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8440 if (*p == 'g') |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8441 *flags |= VGR_GLOBAL; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8442 else |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8443 *flags |= VGR_NOJUMP; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8444 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8445 ++p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8446 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8447 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8448 return p; |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8449 } |
05bfc3d37efb
commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents:
9915
diff
changeset
|
8450 |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8451 #if defined(FEAT_EVAL) || defined(PROTO) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8452 /* |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8453 * 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
|
8454 */ |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8455 void |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8456 ex_oldfiles(exarg_T *eap UNUSED) |
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 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
|
8459 listitem_T *li; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8460 int nr = 0; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8461 char_u *fname; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8462 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8463 if (l == NULL) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8464 msg((char_u *)_("No old files")); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8465 else |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8466 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8467 msg_start(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8468 msg_scroll = TRUE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8469 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
|
8470 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8471 ++nr; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8472 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
|
8473 if (!message_filtered(fname)) |
9915
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 msg_outnum((long)nr); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8476 MSG_PUTS(": "); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8477 msg_outtrans(fname); |
10021
5fc4bec66c33
commit https://github.com/vim/vim/commit/885c00eabe6d1fd757d4f0eb531ad3a15a35ec04
Christian Brabandt <cb@256bit.org>
parents:
9980
diff
changeset
|
8478 msg_clr_eos(); |
9915
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8479 msg_putchar('\n'); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8480 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
|
8481 ui_breakcheck(); |
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 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8484 |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8485 /* 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
|
8486 got_int = FALSE; |
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 # ifdef FEAT_BROWSE_CMD |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8489 if (cmdmod.browse) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8490 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8491 quit_more = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8492 nr = prompt_for_number(FALSE); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8493 msg_starthere(); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8494 if (nr > 0) |
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 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
|
8497 (long)nr); |
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 if (p != NULL) |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8500 { |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8501 p = expand_env_save(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8502 eap->arg = p; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8503 eap->cmdidx = CMD_edit; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8504 cmdmod.browse = FALSE; |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8505 do_exedit(eap, NULL); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8506 vim_free(p); |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8507 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8508 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8509 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8510 # endif |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8511 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8512 } |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8513 #endif |
4da1a3879100
commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents:
9902
diff
changeset
|
8514 |