Mercurial > vim
annotate src/ex_cmds.c @ 4307:166b3df562ea v7.3.903
updated for version 7.3.903
Problem: Crash on exit writing viminfo. (Ron Aaron)
Solution: Check for the history to be empty.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 15 Apr 2013 16:14:22 +0200 |
parents | 6c2e8074ea25 |
children | fa39483a1363 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
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 | |
17 #ifdef FEAT_EX_EXTRA | |
18 static int linelen __ARGS((int *has_tab)); | |
19 #endif | |
20 static void do_filter __ARGS((linenr_T line1, linenr_T line2, exarg_T *eap, char_u *cmd, int do_in, int do_out)); | |
21 #ifdef FEAT_VIMINFO | |
22 static char_u *viminfo_filename __ARGS((char_u *)); | |
1733 | 23 static void do_viminfo __ARGS((FILE *fp_in, FILE *fp_out, int flags)); |
7 | 24 static int viminfo_encoding __ARGS((vir_T *virp)); |
25 static int read_viminfo_up_to_marks __ARGS((vir_T *virp, int forceit, int writing)); | |
26 #endif | |
27 | |
28 static int check_readonly __ARGS((int *forceit, buf_T *buf)); | |
29 #ifdef FEAT_AUTOCMD | |
30 static void delbuf_msg __ARGS((char_u *name)); | |
31 #endif | |
32 static int | |
33 #ifdef __BORLANDC__ | |
34 _RTLENTRYF | |
35 #endif | |
36 help_compare __ARGS((const void *s1, const void *s2)); | |
37 | |
38 /* | |
39 * ":ascii" and "ga". | |
40 */ | |
41 void | |
42 do_ascii(eap) | |
1876 | 43 exarg_T *eap UNUSED; |
7 | 44 { |
45 int c; | |
1784 | 46 int cval; |
7 | 47 char buf1[20]; |
48 char buf2[20]; | |
49 char_u buf3[7]; | |
50 #ifdef FEAT_MBYTE | |
714 | 51 int cc[MAX_MCO]; |
52 int ci = 0; | |
7 | 53 int len; |
54 | |
55 if (enc_utf8) | |
714 | 56 c = utfc_ptr2char(ml_get_cursor(), cc); |
7 | 57 else |
58 #endif | |
59 c = gchar_cursor(); | |
60 if (c == NUL) | |
61 { | |
62 MSG("NUL"); | |
63 return; | |
64 } | |
65 | |
66 #ifdef FEAT_MBYTE | |
67 IObuff[0] = NUL; | |
68 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80) | |
69 #endif | |
70 { | |
71 if (c == NL) /* NUL is stored as NL */ | |
72 c = NUL; | |
1784 | 73 if (c == CAR && get_fileformat(curbuf) == EOL_MAC) |
74 cval = NL; /* NL is stored as CR */ | |
75 else | |
76 cval = c; | |
7 | 77 if (vim_isprintc_strict(c) && (c < ' ' |
78 #ifndef EBCDIC | |
79 || c > '~' | |
80 #endif | |
81 )) | |
82 { | |
83 transchar_nonprint(buf3, c); | |
1872 | 84 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3); |
7 | 85 } |
86 else | |
87 buf1[0] = NUL; | |
88 #ifndef EBCDIC | |
89 if (c >= 0x80) | |
1872 | 90 vim_snprintf(buf2, sizeof(buf2), " <M-%s>", |
91 (char *)transchar(c & 0x7f)); | |
7 | 92 else |
93 #endif | |
94 buf2[0] = NUL; | |
274 | 95 vim_snprintf((char *)IObuff, IOSIZE, |
96 _("<%s>%s%s %d, Hex %02x, Octal %03o"), | |
1784 | 97 transchar(c), buf1, buf2, cval, cval, cval); |
7 | 98 #ifdef FEAT_MBYTE |
963 | 99 if (enc_utf8) |
100 c = cc[ci++]; | |
101 else | |
102 c = 0; | |
7 | 103 #endif |
104 } | |
105 | |
106 #ifdef FEAT_MBYTE | |
107 /* Repeat for combining characters. */ | |
108 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80))) | |
109 { | |
110 len = (int)STRLEN(IObuff); | |
111 /* This assumes every multi-byte char is printable... */ | |
112 if (len > 0) | |
113 IObuff[len++] = ' '; | |
114 IObuff[len++] = '<'; | |
963 | 115 if (enc_utf8 && utf_iscomposing(c) |
625 | 116 # ifdef USE_GUI |
7 | 117 && !gui.in_use |
625 | 118 # endif |
7 | 119 ) |
120 IObuff[len++] = ' '; /* draw composing char on top of a space */ | |
274 | 121 len += (*mb_char2bytes)(c, IObuff + len); |
122 vim_snprintf((char *)IObuff + len, IOSIZE - len, | |
7 | 123 c < 0x10000 ? _("> %d, Hex %04x, Octal %o") |
124 : _("> %d, Hex %08x, Octal %o"), c, c, c); | |
714 | 125 if (ci == MAX_MCO) |
126 break; | |
963 | 127 if (enc_utf8) |
128 c = cc[ci++]; | |
129 else | |
130 c = 0; | |
7 | 131 } |
132 #endif | |
133 | |
134 msg(IObuff); | |
135 } | |
136 | |
137 #if defined(FEAT_EX_EXTRA) || defined(PROTO) | |
138 /* | |
139 * ":left", ":center" and ":right": align text. | |
140 */ | |
141 void | |
142 ex_align(eap) | |
143 exarg_T *eap; | |
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 | |
245 linelen(has_tab) | |
246 int *has_tab; | |
247 { | |
248 char_u *line; | |
249 char_u *first; | |
250 char_u *last; | |
251 int save; | |
252 int len; | |
253 | |
254 /* find the first non-blank character */ | |
255 line = ml_get_curline(); | |
256 first = skipwhite(line); | |
257 | |
258 /* find the character after the last non-blank character */ | |
259 for (last = first + STRLEN(first); | |
260 last > first && vim_iswhite(last[-1]); --last) | |
261 ; | |
262 save = *last; | |
263 *last = NUL; | |
264 len = linetabsize(line); /* get line length */ | |
265 if (has_tab != NULL) /* check for embedded TAB */ | |
266 *has_tab = (vim_strrchr(first, TAB) != NULL); | |
267 *last = save; | |
268 | |
269 return len; | |
270 } | |
271 | |
826 | 272 /* Buffer for two lines used during sorting. They are allocated to |
273 * contain the longest line being sorted. */ | |
274 static char_u *sortbuf1; | |
275 static char_u *sortbuf2; | |
284 | 276 |
277 static int sort_ic; /* ignore case */ | |
294 | 278 static int sort_nr; /* sort on number */ |
826 | 279 static int sort_rx; /* sort on regex instead of skipping it */ |
280 | |
281 static int sort_abort; /* flag to indicate if sorting has been interrupted */ | |
294 | 282 |
283 /* Struct to store info to be sorted. */ | |
284 typedef struct | |
285 { | |
286 linenr_T lnum; /* line number */ | |
826 | 287 long start_col_nr; /* starting column number or number */ |
288 long end_col_nr; /* ending column number */ | |
294 | 289 } sorti_T; |
284 | 290 |
291 static int | |
292 #ifdef __BORLANDC__ | |
293 _RTLENTRYF | |
294 #endif | |
295 sort_compare __ARGS((const void *s1, const void *s2)); | |
296 | |
297 static int | |
298 #ifdef __BORLANDC__ | |
299 _RTLENTRYF | |
300 #endif | |
301 sort_compare(s1, s2) | |
302 const void *s1; | |
303 const void *s2; | |
304 { | |
294 | 305 sorti_T l1 = *(sorti_T *)s1; |
306 sorti_T l2 = *(sorti_T *)s2; | |
826 | 307 int result = 0; |
308 | |
309 /* If the user interrupts, there's no way to stop qsort() immediately, but | |
834 | 310 * if we return 0 every time, qsort will assume it's done sorting and |
311 * exit. */ | |
826 | 312 if (sort_abort) |
313 return 0; | |
314 fast_breakcheck(); | |
315 if (got_int) | |
316 sort_abort = TRUE; | |
317 | |
834 | 318 /* When sorting numbers "start_col_nr" is the number, not the column |
319 * number. */ | |
294 | 320 if (sort_nr) |
2606 | 321 result = l1.start_col_nr == l2.start_col_nr ? 0 |
322 : l1.start_col_nr > l2.start_col_nr ? 1 : -1; | |
826 | 323 else |
324 { | |
834 | 325 /* We need to copy one line into "sortbuf1", because there is no |
326 * guarantee that the first pointer becomes invalid when obtaining the | |
327 * second one. */ | |
328 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.start_col_nr, | |
329 l1.end_col_nr - l1.start_col_nr + 1); | |
826 | 330 sortbuf1[l1.end_col_nr - l1.start_col_nr] = 0; |
834 | 331 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.start_col_nr, |
332 l2.end_col_nr - l2.start_col_nr + 1); | |
826 | 333 sortbuf2[l2.end_col_nr - l2.start_col_nr] = 0; |
334 | |
834 | 335 result = sort_ic ? STRICMP(sortbuf1, sortbuf2) |
336 : STRCMP(sortbuf1, sortbuf2); | |
337 } | |
338 | |
339 /* If two lines have the same value, preserve the original line order. */ | |
826 | 340 if (result == 0) |
834 | 341 return (int)(l1.lnum - l2.lnum); |
342 return result; | |
284 | 343 } |
344 | |
345 /* | |
346 * ":sort". | |
347 */ | |
348 void | |
349 ex_sort(eap) | |
350 exarg_T *eap; | |
351 { | |
352 regmatch_T regmatch; | |
353 int len; | |
354 linenr_T lnum; | |
355 long maxlen = 0; | |
294 | 356 sorti_T *nrs; |
1872 | 357 size_t count = (size_t)(eap->line2 - eap->line1 + 1); |
294 | 358 size_t i; |
284 | 359 char_u *p; |
360 char_u *s; | |
826 | 361 char_u *s2; |
362 char_u c; /* temporary character storage */ | |
284 | 363 int unique = FALSE; |
364 long deleted; | |
826 | 365 colnr_T start_col; |
366 colnr_T end_col; | |
294 | 367 int sort_oct; /* sort on octal number */ |
368 int sort_hex; /* sort on hex number */ | |
284 | 369 |
1538 | 370 /* Sorting one line is really quick! */ |
371 if (count <= 1) | |
372 return; | |
373 | |
284 | 374 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
375 return; | |
826 | 376 sortbuf1 = NULL; |
377 sortbuf2 = NULL; | |
284 | 378 regmatch.regprog = NULL; |
294 | 379 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE); |
284 | 380 if (nrs == NULL) |
826 | 381 goto sortend; |
382 | |
383 sort_abort = sort_ic = sort_rx = sort_nr = sort_oct = sort_hex = 0; | |
294 | 384 |
284 | 385 for (p = eap->arg; *p != NUL; ++p) |
386 { | |
387 if (vim_iswhite(*p)) | |
388 ; | |
389 else if (*p == 'i') | |
390 sort_ic = TRUE; | |
826 | 391 else if (*p == 'r') |
392 sort_rx = TRUE; | |
294 | 393 else if (*p == 'n') |
394 sort_nr = 2; | |
395 else if (*p == 'o') | |
396 sort_oct = 2; | |
397 else if (*p == 'x') | |
398 sort_hex = 2; | |
284 | 399 else if (*p == 'u') |
400 unique = TRUE; | |
289 | 401 else if (*p == '"') /* comment start */ |
402 break; | |
403 else if (check_nextcmd(p) != NULL) | |
404 { | |
405 eap->nextcmd = check_nextcmd(p); | |
406 break; | |
407 } | |
408 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL) | |
284 | 409 { |
410 s = skip_regexp(p + 1, *p, TRUE, NULL); | |
411 if (*s != *p) | |
412 { | |
413 EMSG(_(e_invalpat)); | |
826 | 414 goto sortend; |
284 | 415 } |
416 *s = NUL; | |
1314 | 417 /* Use last search pattern if sort pattern is empty. */ |
4199 | 418 if (s == p + 1) |
419 { | |
420 if (last_search_pat() == NULL) | |
421 { | |
422 EMSG(_(e_noprevre)); | |
423 goto sortend; | |
424 } | |
1314 | 425 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC); |
4199 | 426 } |
1314 | 427 else |
428 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC); | |
284 | 429 if (regmatch.regprog == NULL) |
826 | 430 goto sortend; |
289 | 431 p = s; /* continue after the regexp */ |
284 | 432 regmatch.rm_ic = p_ic; |
433 } | |
434 else | |
435 { | |
436 EMSG2(_(e_invarg2), p); | |
826 | 437 goto sortend; |
284 | 438 } |
439 } | |
440 | |
294 | 441 /* Can only have one of 'n', 'o' and 'x'. */ |
442 if (sort_nr + sort_oct + sort_hex > 2) | |
443 { | |
444 EMSG(_(e_invarg)); | |
826 | 445 goto sortend; |
294 | 446 } |
447 | |
448 /* From here on "sort_nr" is used as a flag for any number sorting. */ | |
449 sort_nr += sort_oct + sort_hex; | |
450 | |
284 | 451 /* |
294 | 452 * Make an array with all line numbers. This avoids having to copy all |
284 | 453 * the lines into allocated memory. |
826 | 454 * When sorting on strings "start_col_nr" is the offset in the line, for |
455 * numbers sorting it's the number to sort on. This means the pattern | |
456 * matching and number conversion only has to be done once per line. | |
294 | 457 * Also get the longest line length for allocating "sortbuf". |
284 | 458 */ |
459 for (lnum = eap->line1; lnum <= eap->line2; ++lnum) | |
460 { | |
461 s = ml_get(lnum); | |
835 | 462 len = (int)STRLEN(s); |
284 | 463 if (maxlen < len) |
464 maxlen = len; | |
294 | 465 |
826 | 466 start_col = 0; |
467 end_col = len; | |
294 | 468 if (regmatch.regprog != NULL && vim_regexec(®match, s, 0)) |
826 | 469 { |
470 if (sort_rx) | |
471 { | |
835 | 472 start_col = (colnr_T)(regmatch.startp[0] - s); |
473 end_col = (colnr_T)(regmatch.endp[0] - s); | |
826 | 474 } |
475 else | |
835 | 476 start_col = (colnr_T)(regmatch.endp[0] - s); |
826 | 477 } |
294 | 478 else |
826 | 479 if (regmatch.regprog != NULL) |
480 end_col = 0; | |
294 | 481 |
482 if (sort_nr) | |
483 { | |
826 | 484 /* Make sure vim_str2nr doesn't read any digits past the end |
485 * of the match, by temporarily terminating the string there */ | |
486 s2 = s + end_col; | |
487 c = *s2; | |
2606 | 488 *s2 = NUL; |
294 | 489 /* Sorting on number: Store the number itself. */ |
1687 | 490 p = s + start_col; |
294 | 491 if (sort_hex) |
1687 | 492 s = skiptohex(p); |
294 | 493 else |
1687 | 494 s = skiptodigit(p); |
495 if (s > p && s[-1] == '-') | |
496 --s; /* include preceding negative sign */ | |
2606 | 497 if (*s == NUL) |
498 /* empty line should sort before any number */ | |
499 nrs[lnum - eap->line1].start_col_nr = -MAXLNUM; | |
500 else | |
501 vim_str2nr(s, NULL, NULL, sort_oct, sort_hex, | |
502 &nrs[lnum - eap->line1].start_col_nr, NULL); | |
503 *s2 = c; | |
294 | 504 } |
505 else | |
826 | 506 { |
294 | 507 /* Store the column to sort at. */ |
826 | 508 nrs[lnum - eap->line1].start_col_nr = start_col; |
509 nrs[lnum - eap->line1].end_col_nr = end_col; | |
510 } | |
294 | 511 |
512 nrs[lnum - eap->line1].lnum = lnum; | |
481 | 513 |
514 if (regmatch.regprog != NULL) | |
515 fast_breakcheck(); | |
516 if (got_int) | |
826 | 517 goto sortend; |
284 | 518 } |
519 | |
294 | 520 /* Allocate a buffer that can hold the longest line. */ |
826 | 521 sortbuf1 = alloc((unsigned)maxlen + 1); |
522 if (sortbuf1 == NULL) | |
523 goto sortend; | |
524 sortbuf2 = alloc((unsigned)maxlen + 1); | |
525 if (sortbuf2 == NULL) | |
526 goto sortend; | |
284 | 527 |
481 | 528 /* Sort the array of line numbers. Note: can't be interrupted! */ |
294 | 529 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare); |
284 | 530 |
826 | 531 if (sort_abort) |
532 goto sortend; | |
533 | |
284 | 534 /* Insert the lines in the sorted order below the last one. */ |
535 lnum = eap->line2; | |
536 for (i = 0; i < count; ++i) | |
537 { | |
538 s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum); | |
539 if (!unique || i == 0 | |
826 | 540 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0) |
284 | 541 { |
542 if (ml_append(lnum++, s, (colnr_T)0, FALSE) == FAIL) | |
543 break; | |
294 | 544 if (unique) |
826 | 545 STRCPY(sortbuf1, s); |
284 | 546 } |
481 | 547 fast_breakcheck(); |
548 if (got_int) | |
826 | 549 goto sortend; |
284 | 550 } |
551 | |
552 /* delete the original lines if appending worked */ | |
553 if (i == count) | |
554 for (i = 0; i < count; ++i) | |
555 ml_delete(eap->line1, FALSE); | |
556 else | |
557 count = 0; | |
558 | |
294 | 559 /* Adjust marks for deleted (or added) lines and prepare for displaying. */ |
835 | 560 deleted = (long)(count - (lnum - eap->line2)); |
284 | 561 if (deleted > 0) |
562 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted); | |
563 else if (deleted < 0) | |
564 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L); | |
565 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted); | |
294 | 566 |
284 | 567 curwin->w_cursor.lnum = eap->line1; |
568 beginline(BL_WHITE | BL_FIX); | |
569 | |
826 | 570 sortend: |
284 | 571 vim_free(nrs); |
826 | 572 vim_free(sortbuf1); |
573 vim_free(sortbuf2); | |
284 | 574 vim_free(regmatch.regprog); |
481 | 575 if (got_int) |
576 EMSG(_(e_interr)); | |
284 | 577 } |
578 | |
7 | 579 /* |
580 * ":retab". | |
581 */ | |
582 void | |
583 ex_retab(eap) | |
584 exarg_T *eap; | |
585 { | |
586 linenr_T lnum; | |
587 int got_tab = FALSE; | |
588 long num_spaces = 0; | |
589 long num_tabs; | |
590 long len; | |
591 long col; | |
592 long vcol; | |
593 long start_col = 0; /* For start of white-space string */ | |
594 long start_vcol = 0; /* For start of white-space string */ | |
595 int temp; | |
596 long old_len; | |
597 char_u *ptr; | |
598 char_u *new_line = (char_u *)1; /* init to non-NULL */ | |
599 int did_undo; /* called u_save for current line */ | |
600 int new_ts; | |
601 int save_list; | |
602 linenr_T first_line = 0; /* first changed line */ | |
603 linenr_T last_line = 0; /* last changed line */ | |
604 | |
605 save_list = curwin->w_p_list; | |
606 curwin->w_p_list = 0; /* don't want list mode here */ | |
607 | |
608 new_ts = getdigits(&(eap->arg)); | |
609 if (new_ts < 0) | |
610 { | |
611 EMSG(_(e_positive)); | |
612 return; | |
613 } | |
614 if (new_ts == 0) | |
615 new_ts = curbuf->b_p_ts; | |
616 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum) | |
617 { | |
618 ptr = ml_get(lnum); | |
619 col = 0; | |
620 vcol = 0; | |
621 did_undo = FALSE; | |
622 for (;;) | |
623 { | |
624 if (vim_iswhite(ptr[col])) | |
625 { | |
626 if (!got_tab && num_spaces == 0) | |
627 { | |
628 /* First consecutive white-space */ | |
629 start_vcol = vcol; | |
630 start_col = col; | |
631 } | |
632 if (ptr[col] == ' ') | |
633 num_spaces++; | |
634 else | |
635 got_tab = TRUE; | |
636 } | |
637 else | |
638 { | |
639 if (got_tab || (eap->forceit && num_spaces > 1)) | |
640 { | |
641 /* Retabulate this string of white-space */ | |
642 | |
643 /* len is virtual length of white string */ | |
644 len = num_spaces = vcol - start_vcol; | |
645 num_tabs = 0; | |
646 if (!curbuf->b_p_et) | |
647 { | |
648 temp = new_ts - (start_vcol % new_ts); | |
649 if (num_spaces >= temp) | |
650 { | |
651 num_spaces -= temp; | |
652 num_tabs++; | |
653 } | |
654 num_tabs += num_spaces / new_ts; | |
655 num_spaces -= (num_spaces / new_ts) * new_ts; | |
656 } | |
657 if (curbuf->b_p_et || got_tab || | |
658 (num_spaces + num_tabs < len)) | |
659 { | |
660 if (did_undo == FALSE) | |
661 { | |
662 did_undo = TRUE; | |
663 if (u_save((linenr_T)(lnum - 1), | |
664 (linenr_T)(lnum + 1)) == FAIL) | |
665 { | |
666 new_line = NULL; /* flag out-of-memory */ | |
667 break; | |
668 } | |
669 } | |
670 | |
671 /* len is actual number of white characters used */ | |
672 len = num_spaces + num_tabs; | |
673 old_len = (long)STRLEN(ptr); | |
674 new_line = lalloc(old_len - col + start_col + len + 1, | |
675 TRUE); | |
676 if (new_line == NULL) | |
677 break; | |
678 if (start_col > 0) | |
679 mch_memmove(new_line, ptr, (size_t)start_col); | |
680 mch_memmove(new_line + start_col + len, | |
681 ptr + col, (size_t)(old_len - col + 1)); | |
682 ptr = new_line + start_col; | |
683 for (col = 0; col < len; col++) | |
684 ptr[col] = (col < num_tabs) ? '\t' : ' '; | |
685 ml_replace(lnum, new_line, FALSE); | |
686 if (first_line == 0) | |
687 first_line = lnum; | |
688 last_line = lnum; | |
689 ptr = new_line; | |
690 col = start_col + len; | |
691 } | |
692 } | |
693 got_tab = FALSE; | |
694 num_spaces = 0; | |
695 } | |
696 if (ptr[col] == NUL) | |
697 break; | |
698 vcol += chartabsize(ptr + col, (colnr_T)vcol); | |
699 #ifdef FEAT_MBYTE | |
700 if (has_mbyte) | |
474 | 701 col += (*mb_ptr2len)(ptr + col); |
7 | 702 else |
703 #endif | |
704 ++col; | |
705 } | |
706 if (new_line == NULL) /* out of memory */ | |
707 break; | |
708 line_breakcheck(); | |
709 } | |
710 if (got_int) | |
711 EMSG(_(e_interr)); | |
712 | |
713 if (curbuf->b_p_ts != new_ts) | |
714 redraw_curbuf_later(NOT_VALID); | |
715 if (first_line != 0) | |
716 changed_lines(first_line, 0, last_line + 1, 0L); | |
717 | |
718 curwin->w_p_list = save_list; /* restore 'list' */ | |
719 | |
720 curbuf->b_p_ts = new_ts; | |
721 coladvance(curwin->w_curswant); | |
722 | |
723 u_clearline(); | |
724 } | |
725 #endif | |
726 | |
727 /* | |
728 * :move command - move lines line1-line2 to line dest | |
729 * | |
730 * return FAIL for failure, OK otherwise | |
731 */ | |
732 int | |
733 do_move(line1, line2, dest) | |
734 linenr_T line1; | |
735 linenr_T line2; | |
736 linenr_T dest; | |
737 { | |
738 char_u *str; | |
739 linenr_T l; | |
740 linenr_T extra; /* Num lines added before line1 */ | |
741 linenr_T num_lines; /* Num lines moved */ | |
742 linenr_T last_line; /* Last line in file after adding new text */ | |
743 | |
744 if (dest >= line1 && dest < line2) | |
745 { | |
746 EMSG(_("E134: Move lines into themselves")); | |
747 return FAIL; | |
748 } | |
749 | |
750 num_lines = line2 - line1 + 1; | |
751 | |
752 /* | |
753 * First we copy the old text to its new location -- webb | |
754 * Also copy the flag that ":global" command uses. | |
755 */ | |
756 if (u_save(dest, dest + 1) == FAIL) | |
757 return FAIL; | |
758 for (extra = 0, l = line1; l <= line2; l++) | |
759 { | |
760 str = vim_strsave(ml_get(l + extra)); | |
761 if (str != NULL) | |
762 { | |
763 ml_append(dest + l - line1, str, (colnr_T)0, FALSE); | |
764 vim_free(str); | |
765 if (dest < line1) | |
766 extra++; | |
767 } | |
768 } | |
769 | |
770 /* | |
771 * Now we must be careful adjusting our marks so that we don't overlap our | |
772 * mark_adjust() calls. | |
773 * | |
774 * We adjust the marks within the old text so that they refer to the | |
775 * last lines of the file (temporarily), because we know no other marks | |
776 * will be set there since these line numbers did not exist until we added | |
777 * our new lines. | |
778 * | |
779 * Then we adjust the marks on lines between the old and new text positions | |
780 * (either forwards or backwards). | |
781 * | |
782 * And Finally we adjust the marks we put at the end of the file back to | |
783 * their final destination at the new text position -- webb | |
784 */ | |
785 last_line = curbuf->b_ml.ml_line_count; | |
786 mark_adjust(line1, line2, last_line - line2, 0L); | |
787 if (dest >= line2) | |
788 { | |
789 mark_adjust(line2 + 1, dest, -num_lines, 0L); | |
790 curbuf->b_op_start.lnum = dest - num_lines + 1; | |
791 curbuf->b_op_end.lnum = dest; | |
792 } | |
793 else | |
794 { | |
795 mark_adjust(dest + 1, line1 - 1, num_lines, 0L); | |
796 curbuf->b_op_start.lnum = dest + 1; | |
797 curbuf->b_op_end.lnum = dest + num_lines; | |
798 } | |
799 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
800 mark_adjust(last_line - num_lines + 1, last_line, | |
801 -(last_line - dest - extra), 0L); | |
802 | |
803 /* | |
804 * Now we delete the original text -- webb | |
805 */ | |
806 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL) | |
807 return FAIL; | |
808 | |
809 for (l = line1; l <= line2; l++) | |
810 ml_delete(line1 + extra, TRUE); | |
811 | |
812 if (!global_busy && num_lines > p_report) | |
813 { | |
814 if (num_lines == 1) | |
815 MSG(_("1 line moved")); | |
816 else | |
817 smsg((char_u *)_("%ld lines moved"), num_lines); | |
818 } | |
819 | |
820 /* | |
821 * Leave the cursor on the last of the moved lines. | |
822 */ | |
823 if (dest >= line1) | |
824 curwin->w_cursor.lnum = dest; | |
825 else | |
826 curwin->w_cursor.lnum = dest + (line2 - line1) + 1; | |
827 | |
828 if (line1 < dest) | |
3184 | 829 { |
830 dest += num_lines + 1; | |
831 last_line = curbuf->b_ml.ml_line_count; | |
832 if (dest > last_line + 1) | |
833 dest = last_line + 1; | |
834 changed_lines(line1, 0, dest, 0L); | |
835 } | |
7 | 836 else |
837 changed_lines(dest + 1, 0, line1 + num_lines, 0L); | |
838 | |
839 return OK; | |
840 } | |
841 | |
842 /* | |
843 * ":copy" | |
844 */ | |
845 void | |
846 ex_copy(line1, line2, n) | |
847 linenr_T line1; | |
848 linenr_T line2; | |
849 linenr_T n; | |
850 { | |
851 linenr_T count; | |
852 char_u *p; | |
853 | |
854 count = line2 - line1 + 1; | |
855 curbuf->b_op_start.lnum = n + 1; | |
856 curbuf->b_op_end.lnum = n + count; | |
857 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
858 | |
859 /* | |
860 * there are three situations: | |
861 * 1. destination is above line1 | |
862 * 2. destination is between line1 and line2 | |
863 * 3. destination is below line2 | |
864 * | |
865 * n = destination (when starting) | |
866 * curwin->w_cursor.lnum = destination (while copying) | |
867 * line1 = start of source (while copying) | |
868 * line2 = end of source (while copying) | |
869 */ | |
870 if (u_save(n, n + 1) == FAIL) | |
871 return; | |
872 | |
873 curwin->w_cursor.lnum = n; | |
874 while (line1 <= line2) | |
875 { | |
876 /* need to use vim_strsave() because the line will be unlocked within | |
877 * ml_append() */ | |
878 p = vim_strsave(ml_get(line1)); | |
879 if (p != NULL) | |
880 { | |
881 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE); | |
882 vim_free(p); | |
883 } | |
884 /* situation 2: skip already copied lines */ | |
885 if (line1 == n) | |
886 line1 = curwin->w_cursor.lnum; | |
887 ++line1; | |
888 if (curwin->w_cursor.lnum < line1) | |
889 ++line1; | |
890 if (curwin->w_cursor.lnum < line2) | |
891 ++line2; | |
892 ++curwin->w_cursor.lnum; | |
893 } | |
894 | |
895 appended_lines_mark(n, count); | |
896 | |
897 msgmore((long)count); | |
898 } | |
899 | |
359 | 900 static char_u *prevcmd = NULL; /* the previous command */ |
901 | |
902 #if defined(EXITFREE) || defined(PROTO) | |
903 void | |
904 free_prev_shellcmd() | |
905 { | |
906 vim_free(prevcmd); | |
907 } | |
908 #endif | |
909 | |
7 | 910 /* |
911 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd" | |
912 * Bangs in the argument are replaced with the previously entered command. | |
913 * Remember the argument. | |
914 */ | |
915 void | |
916 do_bang(addr_count, eap, forceit, do_in, do_out) | |
917 int addr_count; | |
918 exarg_T *eap; | |
919 int forceit; | |
920 int do_in, do_out; | |
921 { | |
922 char_u *arg = eap->arg; /* command */ | |
923 linenr_T line1 = eap->line1; /* start of range */ | |
924 linenr_T line2 = eap->line2; /* end of range */ | |
925 char_u *newcmd = NULL; /* the new command */ | |
926 int free_newcmd = FALSE; /* need to free() newcmd */ | |
927 int ins_prevcmd; | |
928 char_u *t; | |
929 char_u *p; | |
930 char_u *trailarg; | |
931 int len; | |
932 int scroll_save = msg_scroll; | |
933 | |
934 /* | |
935 * Disallow shell commands for "rvim". | |
936 * Disallow shell commands from .exrc and .vimrc in current directory for | |
937 * security reasons. | |
938 */ | |
939 if (check_restricted() || check_secure()) | |
940 return; | |
941 | |
942 if (addr_count == 0) /* :! */ | |
943 { | |
944 msg_scroll = FALSE; /* don't scroll here */ | |
945 autowrite_all(); | |
946 msg_scroll = scroll_save; | |
947 } | |
948 | |
949 /* | |
950 * Try to find an embedded bang, like in :!<cmd> ! [args] | |
951 * (:!! is indicated by the 'forceit' variable) | |
952 */ | |
953 ins_prevcmd = forceit; | |
954 trailarg = arg; | |
955 do | |
956 { | |
957 len = (int)STRLEN(trailarg) + 1; | |
958 if (newcmd != NULL) | |
959 len += (int)STRLEN(newcmd); | |
960 if (ins_prevcmd) | |
961 { | |
962 if (prevcmd == NULL) | |
963 { | |
964 EMSG(_(e_noprev)); | |
965 vim_free(newcmd); | |
966 return; | |
967 } | |
968 len += (int)STRLEN(prevcmd); | |
969 } | |
1872 | 970 if ((t = alloc((unsigned)len)) == NULL) |
7 | 971 { |
972 vim_free(newcmd); | |
973 return; | |
974 } | |
975 *t = NUL; | |
976 if (newcmd != NULL) | |
977 STRCAT(t, newcmd); | |
978 if (ins_prevcmd) | |
979 STRCAT(t, prevcmd); | |
980 p = t + STRLEN(t); | |
981 STRCAT(t, trailarg); | |
982 vim_free(newcmd); | |
983 newcmd = t; | |
984 | |
985 /* | |
986 * Scan the rest of the argument for '!', which is replaced by the | |
987 * previous command. "\!" is replaced by "!" (this is vi compatible). | |
988 */ | |
989 trailarg = NULL; | |
990 while (*p) | |
991 { | |
2823 | 992 if (*p == '!') |
7 | 993 { |
994 if (p > newcmd && p[-1] == '\\') | |
1624 | 995 STRMOVE(p - 1, p); |
7 | 996 else |
997 { | |
998 trailarg = p; | |
999 *trailarg++ = NUL; | |
1000 ins_prevcmd = TRUE; | |
1001 break; | |
1002 } | |
1003 } | |
1004 ++p; | |
1005 } | |
1006 } while (trailarg != NULL); | |
1007 | |
1008 vim_free(prevcmd); | |
1009 prevcmd = newcmd; | |
1010 | |
1011 if (bangredo) /* put cmd in redo buffer for ! command */ | |
1012 { | |
620 | 1013 AppendToRedobuffLit(prevcmd, -1); |
7 | 1014 AppendToRedobuff((char_u *)"\n"); |
1015 bangredo = FALSE; | |
1016 } | |
1017 /* | |
1018 * Add quotes around the command, for shells that need them. | |
1019 */ | |
1020 if (*p_shq != NUL) | |
1021 { | |
1022 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1)); | |
1023 if (newcmd == NULL) | |
1024 return; | |
1025 STRCPY(newcmd, p_shq); | |
1026 STRCAT(newcmd, prevcmd); | |
1027 STRCAT(newcmd, p_shq); | |
1028 free_newcmd = TRUE; | |
1029 } | |
1030 if (addr_count == 0) /* :! */ | |
1031 { | |
1032 /* echo the command */ | |
1033 msg_start(); | |
1034 msg_putchar(':'); | |
1035 msg_putchar('!'); | |
1036 msg_outtrans(newcmd); | |
1037 msg_clr_eos(); | |
1038 windgoto(msg_row, msg_col); | |
1039 | |
1040 do_shell(newcmd, 0); | |
1041 } | |
1042 else /* :range! */ | |
725 | 1043 { |
7 | 1044 /* Careful: This may recursively call do_bang() again! (because of |
1045 * autocommands) */ | |
1046 do_filter(line1, line2, eap, newcmd, do_in, do_out); | |
725 | 1047 #ifdef FEAT_AUTOCMD |
1048 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf); | |
1049 #endif | |
1050 } | |
7 | 1051 if (free_newcmd) |
1052 vim_free(newcmd); | |
1053 } | |
1054 | |
1055 /* | |
1056 * do_filter: filter lines through a command given by the user | |
1057 * | |
169 | 1058 * We mostly use temp files and the call_shell() routine here. This would |
1059 * normally be done using pipes on a UNIX machine, but this is more portable | |
1060 * to non-unix machines. The call_shell() routine needs to be able | |
7 | 1061 * to deal with redirection somehow, and should handle things like looking |
1062 * at the PATH env. variable, and adding reasonable extensions to the | |
1063 * command name given by the user. All reasonable versions of call_shell() | |
1064 * do this. | |
169 | 1065 * Alternatively, if on Unix and redirecting input or output, but not both, |
1066 * and the 'shelltemp' option isn't set, use pipes. | |
7 | 1067 * We use input redirection if do_in is TRUE. |
1068 * We use output redirection if do_out is TRUE. | |
1069 */ | |
1070 static void | |
1071 do_filter(line1, line2, eap, cmd, do_in, do_out) | |
1072 linenr_T line1, line2; | |
1073 exarg_T *eap; /* for forced 'ff' and 'fenc' */ | |
1074 char_u *cmd; | |
1075 int do_in, do_out; | |
1076 { | |
1077 char_u *itmp = NULL; | |
1078 char_u *otmp = NULL; | |
1079 linenr_T linecount; | |
1080 linenr_T read_linecount; | |
1081 pos_T cursor_save; | |
1082 char_u *cmd_buf; | |
1083 #ifdef FEAT_AUTOCMD | |
1084 buf_T *old_curbuf = curbuf; | |
1085 #endif | |
169 | 1086 int shell_flags = 0; |
7 | 1087 |
1088 if (*cmd == NUL) /* no filter command */ | |
1089 return; | |
1090 | |
1091 #ifdef WIN3264 | |
1092 /* | |
1093 * Check if external commands are allowed now. | |
1094 */ | |
1095 if (can_end_termcap_mode(TRUE) == FALSE) | |
1096 return; | |
1097 #endif | |
1098 | |
1099 cursor_save = curwin->w_cursor; | |
1100 linecount = line2 - line1 + 1; | |
1101 curwin->w_cursor.lnum = line1; | |
1102 curwin->w_cursor.col = 0; | |
1103 changed_line_abv_curs(); | |
1104 invalidate_botline(); | |
1105 | |
1106 /* | |
169 | 1107 * When using temp files: |
1108 * 1. * Form temp file names | |
1109 * 2. * Write the lines to a temp file | |
1110 * 3. Run the filter command on the temp file | |
1111 * 4. * Read the output of the command into the buffer | |
1112 * 5. * Delete the original lines to be filtered | |
1113 * 6. * Remove the temp files | |
1114 * | |
1115 * When writing the input with a pipe or when catching the output with a | |
1116 * pipe only need to do 3. | |
7 | 1117 */ |
1118 | |
169 | 1119 if (do_out) |
1120 shell_flags |= SHELL_DOOUT; | |
1121 | |
3482 | 1122 #ifdef FEAT_FILTERPIPE |
169 | 1123 if (!do_in && do_out && !p_stmp) |
1124 { | |
1125 /* Use a pipe to fetch stdout of the command, do not use a temp file. */ | |
1126 shell_flags |= SHELL_READ; | |
1127 curwin->w_cursor.lnum = line2; | |
1128 } | |
1129 else if (do_in && !do_out && !p_stmp) | |
7 | 1130 { |
169 | 1131 /* Use a pipe to write stdin of the command, do not use a temp file. */ |
1132 shell_flags |= SHELL_WRITE; | |
1133 curbuf->b_op_start.lnum = line1; | |
1134 curbuf->b_op_end.lnum = line2; | |
7 | 1135 } |
169 | 1136 else if (do_in && do_out && !p_stmp) |
1137 { | |
1138 /* Use a pipe to write stdin and fetch stdout of the command, do not | |
1139 * use a temp file. */ | |
1140 shell_flags |= SHELL_READ|SHELL_WRITE; | |
1141 curbuf->b_op_start.lnum = line1; | |
1142 curbuf->b_op_end.lnum = line2; | |
1143 curwin->w_cursor.lnum = line2; | |
1144 } | |
1145 else | |
1146 #endif | |
1147 if ((do_in && (itmp = vim_tempname('i')) == NULL) | |
1148 || (do_out && (otmp = vim_tempname('o')) == NULL)) | |
1149 { | |
1150 EMSG(_(e_notmp)); | |
1151 goto filterend; | |
1152 } | |
7 | 1153 |
1154 /* | |
1155 * The writing and reading of temp files will not be shown. | |
1156 * Vi also doesn't do this and the messages are not very informative. | |
1157 */ | |
1158 ++no_wait_return; /* don't call wait_return() while busy */ | |
169 | 1159 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap, |
7 | 1160 FALSE, FALSE, FALSE, TRUE) == FAIL) |
1161 { | |
1162 msg_putchar('\n'); /* keep message from buf_write() */ | |
1163 --no_wait_return; | |
1164 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
1165 if (!aborting()) | |
1166 #endif | |
1167 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */ | |
1168 goto filterend; | |
1169 } | |
1170 #ifdef FEAT_AUTOCMD | |
1171 if (curbuf != old_curbuf) | |
1172 goto filterend; | |
1173 #endif | |
1174 | |
1175 if (!do_out) | |
1176 msg_putchar('\n'); | |
1177 | |
1581 | 1178 /* Create the shell command in allocated memory. */ |
7 | 1179 cmd_buf = make_filter_cmd(cmd, itmp, otmp); |
1180 if (cmd_buf == NULL) | |
1181 goto filterend; | |
1182 | |
1183 windgoto((int)Rows - 1, 0); | |
1184 cursor_on(); | |
1185 | |
1186 /* | |
1187 * When not redirecting the output the command can write anything to the | |
1188 * screen. If 'shellredir' is equal to ">", screen may be messed up by | |
1189 * stderr output of external command. Clear the screen later. | |
1190 * If do_in is FALSE, this could be something like ":r !cat", which may | |
1191 * also mess up the screen, clear it later. | |
1192 */ | |
1193 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in) | |
1194 redraw_later_clear(); | |
1195 | |
169 | 1196 if (do_out) |
1197 { | |
1198 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL) | |
1581 | 1199 { |
1200 vim_free(cmd_buf); | |
169 | 1201 goto error; |
1581 | 1202 } |
169 | 1203 redraw_curbuf_later(VALID); |
1204 } | |
1205 read_linecount = curbuf->b_ml.ml_line_count; | |
1206 | |
7 | 1207 /* |
1208 * When call_shell() fails wait_return() is called to give the user a | |
1209 * chance to read the error messages. Otherwise errors are ignored, so you | |
1210 * can see the error messages from the command that appear on stdout; use | |
1211 * 'u' to fix the text | |
1212 * Switch to cooked mode when not redirecting stdin, avoids that something | |
1213 * like ":r !cat" hangs. | |
1214 * Pass on the SHELL_DOOUT flag when the output is being redirected. | |
1215 */ | |
169 | 1216 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags)) |
7 | 1217 { |
1218 redraw_later_clear(); | |
1219 wait_return(FALSE); | |
1220 } | |
1221 vim_free(cmd_buf); | |
1222 | |
1223 did_check_timestamps = FALSE; | |
1224 need_check_timestamps = TRUE; | |
1225 | |
1226 /* When interrupting the shell command, it may still have produced some | |
1227 * useful output. Reset got_int here, so that readfile() won't cancel | |
1228 * reading. */ | |
1229 ui_breakcheck(); | |
1230 got_int = FALSE; | |
1231 | |
1232 if (do_out) | |
1233 { | |
169 | 1234 if (otmp != NULL) |
7 | 1235 { |
169 | 1236 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM, |
1237 eap, READ_FILTER) == FAIL) | |
1238 { | |
7 | 1239 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
169 | 1240 if (!aborting()) |
1241 #endif | |
1242 { | |
1243 msg_putchar('\n'); | |
1244 EMSG2(_(e_notread), otmp); | |
1245 } | |
1246 goto error; | |
7 | 1247 } |
169 | 1248 #ifdef FEAT_AUTOCMD |
1249 if (curbuf != old_curbuf) | |
1250 goto filterend; | |
1251 #endif | |
7 | 1252 } |
169 | 1253 |
1254 read_linecount = curbuf->b_ml.ml_line_count - read_linecount; | |
1255 | |
1256 if (shell_flags & SHELL_READ) | |
1257 { | |
1258 curbuf->b_op_start.lnum = line2 + 1; | |
1259 curbuf->b_op_end.lnum = curwin->w_cursor.lnum; | |
1260 appended_lines_mark(line2, read_linecount); | |
1261 } | |
7 | 1262 |
1263 if (do_in) | |
1264 { | |
1265 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL) | |
1266 { | |
1267 if (read_linecount >= linecount) | |
1268 /* move all marks from old lines to new lines */ | |
1269 mark_adjust(line1, line2, linecount, 0L); | |
1270 else | |
1271 { | |
1272 /* move marks from old lines to new lines, delete marks | |
1273 * that are in deleted lines */ | |
1274 mark_adjust(line1, line1 + read_linecount - 1, | |
1275 linecount, 0L); | |
1276 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); | |
1277 } | |
1278 } | |
1279 | |
1280 /* | |
1281 * Put cursor on first filtered line for ":range!cmd". | |
1282 * Adjust '[ and '] (set by buf_write()). | |
1283 */ | |
1284 curwin->w_cursor.lnum = line1; | |
1285 del_lines(linecount, TRUE); | |
1286 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */ | |
1287 curbuf->b_op_end.lnum -= linecount; /* adjust '] */ | |
1288 write_lnum_adjust(-linecount); /* adjust last line | |
1289 for next write */ | |
100 | 1290 #ifdef FEAT_FOLDING |
1291 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum); | |
1292 #endif | |
7 | 1293 } |
1294 else | |
1295 { | |
1296 /* | |
1297 * Put cursor on last new line for ":r !cmd". | |
1298 */ | |
169 | 1299 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1; |
7 | 1300 curwin->w_cursor.lnum = curbuf->b_op_end.lnum; |
1301 } | |
100 | 1302 |
7 | 1303 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */ |
1304 --no_wait_return; | |
1305 | |
1306 if (linecount > p_report) | |
1307 { | |
1308 if (do_in) | |
1309 { | |
274 | 1310 vim_snprintf((char *)msg_buf, sizeof(msg_buf), |
1311 _("%ld lines filtered"), (long)linecount); | |
7 | 1312 if (msg(msg_buf) && !msg_scroll) |
1313 /* save message to display it after redraw */ | |
680 | 1314 set_keep_msg(msg_buf, 0); |
7 | 1315 } |
1316 else | |
1317 msgmore((long)linecount); | |
1318 } | |
1319 } | |
1320 else | |
1321 { | |
1322 error: | |
1323 /* put cursor back in same position for ":w !cmd" */ | |
1324 curwin->w_cursor = cursor_save; | |
1325 --no_wait_return; | |
1326 wait_return(FALSE); | |
1327 } | |
1328 | |
1329 filterend: | |
1330 | |
1331 #ifdef FEAT_AUTOCMD | |
1332 if (curbuf != old_curbuf) | |
1333 { | |
1334 --no_wait_return; | |
1335 EMSG(_("E135: *Filter* Autocommands must not change current buffer")); | |
1336 } | |
1337 #endif | |
1338 if (itmp != NULL) | |
1339 mch_remove(itmp); | |
1340 if (otmp != NULL) | |
1341 mch_remove(otmp); | |
1342 vim_free(itmp); | |
1343 vim_free(otmp); | |
1344 } | |
1345 | |
1346 /* | |
1347 * Call a shell to execute a command. | |
1348 * When "cmd" is NULL start an interactive shell. | |
1349 */ | |
1350 void | |
1351 do_shell(cmd, flags) | |
1352 char_u *cmd; | |
1353 int flags; /* may be SHELL_DOOUT when output is redirected */ | |
1354 { | |
1355 buf_T *buf; | |
1356 #ifndef FEAT_GUI_MSWIN | |
1357 int save_nwr; | |
1358 #endif | |
1359 #ifdef MSWIN | |
1360 int winstart = FALSE; | |
1361 #endif | |
1362 | |
1363 /* | |
1364 * Disallow shell commands for "rvim". | |
1365 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1366 * security reasons. | |
1367 */ | |
1368 if (check_restricted() || check_secure()) | |
1369 { | |
1370 msg_end(); | |
1371 return; | |
1372 } | |
1373 | |
1374 #ifdef MSWIN | |
1375 /* | |
1376 * Check if external commands are allowed now. | |
1377 */ | |
1378 if (can_end_termcap_mode(TRUE) == FALSE) | |
1379 return; | |
1380 | |
1381 /* | |
1382 * Check if ":!start" is used. | |
1383 */ | |
1384 if (cmd != NULL) | |
1385 winstart = (STRNICMP(cmd, "start ", 6) == 0); | |
1386 #endif | |
1387 | |
1388 /* | |
1389 * For autocommands we want to get the output on the current screen, to | |
1390 * avoid having to type return below. | |
1391 */ | |
1392 msg_putchar('\r'); /* put cursor at start of line */ | |
1393 #ifdef FEAT_AUTOCMD | |
1394 if (!autocmd_busy) | |
1395 #endif | |
1396 { | |
1397 #ifdef MSWIN | |
1398 if (!winstart) | |
1399 #endif | |
1400 stoptermcap(); | |
1401 } | |
1402 #ifdef MSWIN | |
1403 if (!winstart) | |
1404 #endif | |
1405 msg_putchar('\n'); /* may shift screen one line up */ | |
1406 | |
1407 /* warning message before calling the shell */ | |
1408 if (p_warn | |
1409 #ifdef FEAT_AUTOCMD | |
1410 && !autocmd_busy | |
1411 #endif | |
1412 && msg_silent == 0) | |
1413 for (buf = firstbuf; buf; buf = buf->b_next) | |
1414 if (bufIsChanged(buf)) | |
1415 { | |
1416 #ifdef FEAT_GUI_MSWIN | |
1417 if (!winstart) | |
1418 starttermcap(); /* don't want a message box here */ | |
1419 #endif | |
1420 MSG_PUTS(_("[No write since last change]\n")); | |
1421 #ifdef FEAT_GUI_MSWIN | |
1422 if (!winstart) | |
1423 stoptermcap(); | |
1424 #endif | |
1425 break; | |
1426 } | |
1427 | |
1428 /* This windgoto is required for when the '\n' resulted in a "delete line | |
1429 * 1" command to the terminal. */ | |
1430 if (!swapping_screen()) | |
1431 windgoto(msg_row, msg_col); | |
1432 cursor_on(); | |
1433 (void)call_shell(cmd, SHELL_COOKED | flags); | |
1434 did_check_timestamps = FALSE; | |
1435 need_check_timestamps = TRUE; | |
1436 | |
1437 /* | |
1438 * put the message cursor at the end of the screen, avoids wait_return() | |
1439 * to overwrite the text that the external command showed | |
1440 */ | |
1441 if (!swapping_screen()) | |
1442 { | |
1443 msg_row = Rows - 1; | |
1444 msg_col = 0; | |
1445 } | |
1446 | |
1447 #ifdef FEAT_AUTOCMD | |
1448 if (autocmd_busy) | |
1449 { | |
1450 if (msg_silent == 0) | |
1451 redraw_later_clear(); | |
1452 } | |
1453 else | |
1454 #endif | |
1455 { | |
1456 /* | |
1457 * For ":sh" there is no need to call wait_return(), just redraw. | |
1458 * Also for the Win32 GUI (the output is in a console window). | |
1459 * Otherwise there is probably text on the screen that the user wants | |
1460 * to read before redrawing, so call wait_return(). | |
1461 */ | |
1462 #ifndef FEAT_GUI_MSWIN | |
1463 if (cmd == NULL | |
1464 # ifdef WIN3264 | |
1465 || (winstart && !need_wait_return) | |
1466 # endif | |
1467 ) | |
1468 { | |
1469 if (msg_silent == 0) | |
1470 redraw_later_clear(); | |
1471 need_wait_return = FALSE; | |
1472 } | |
1473 else | |
1474 { | |
1475 /* | |
1476 * If we switch screens when starttermcap() is called, we really | |
1477 * want to wait for "hit return to continue". | |
1478 */ | |
1479 save_nwr = no_wait_return; | |
1480 if (swapping_screen()) | |
1481 no_wait_return = FALSE; | |
1482 # ifdef AMIGA | |
1483 wait_return(term_console ? -1 : msg_silent == 0); /* see below */ | |
1484 # else | |
1485 wait_return(msg_silent == 0); | |
1486 # endif | |
1487 no_wait_return = save_nwr; | |
1488 } | |
1489 #endif /* FEAT_GUI_W32 */ | |
1490 | |
1491 #ifdef MSWIN | |
1492 if (!winstart) /* if winstart==TRUE, never stopped termcap! */ | |
1493 #endif | |
1494 starttermcap(); /* start termcap if not done by wait_return() */ | |
1495 | |
1496 /* | |
1497 * In an Amiga window redrawing is caused by asking the window size. | |
1498 * If we got an interrupt this will not work. The chance that the | |
1499 * window size is wrong is very small, but we need to redraw the | |
1500 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY | |
1501 * but it saves an extra redraw. | |
1502 */ | |
1503 #ifdef AMIGA | |
1504 if (skip_redraw) /* ':' hit in wait_return() */ | |
1505 { | |
1506 if (msg_silent == 0) | |
1507 redraw_later_clear(); | |
1508 } | |
1509 else if (term_console) | |
1510 { | |
1511 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */ | |
1512 if (got_int && msg_silent == 0) | |
1513 redraw_later_clear(); /* if got_int is TRUE, redraw needed */ | |
1514 else | |
1515 must_redraw = 0; /* no extra redraw needed */ | |
1516 } | |
1517 #endif | |
1518 } | |
1519 | |
1520 /* display any error messages now */ | |
1521 display_errors(); | |
725 | 1522 |
1523 #ifdef FEAT_AUTOCMD | |
1524 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf); | |
1525 #endif | |
7 | 1526 } |
1527 | |
1528 /* | |
1529 * Create a shell command from a command string, input redirection file and | |
1530 * output redirection file. | |
1531 * Returns an allocated string with the shell command, or NULL for failure. | |
1532 */ | |
1533 char_u * | |
1534 make_filter_cmd(cmd, itmp, otmp) | |
1535 char_u *cmd; /* command */ | |
1536 char_u *itmp; /* NULL or name of input file */ | |
1537 char_u *otmp; /* NULL or name of output file */ | |
1538 { | |
1539 char_u *buf; | |
1540 long_u len; | |
1541 | |
1542 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */ | |
1543 if (itmp != NULL) | |
1544 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */ | |
1545 if (otmp != NULL) | |
1546 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */ | |
1547 buf = lalloc(len, TRUE); | |
1548 if (buf == NULL) | |
1549 return NULL; | |
1550 | |
1551 #if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2) | |
1552 /* | |
169 | 1553 * Put braces around the command (for concatenated commands) when |
1554 * redirecting input and/or output. | |
7 | 1555 */ |
169 | 1556 if (itmp != NULL || otmp != NULL) |
1872 | 1557 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); |
169 | 1558 else |
1559 STRCPY(buf, cmd); | |
7 | 1560 if (itmp != NULL) |
1561 { | |
1562 STRCAT(buf, " < "); | |
1563 STRCAT(buf, itmp); | |
1564 } | |
1565 #else | |
1566 /* | |
1567 * for shells that don't understand braces around commands, at least allow | |
1568 * the use of commands in a pipe. | |
1569 */ | |
1570 STRCPY(buf, cmd); | |
1571 if (itmp != NULL) | |
1572 { | |
1573 char_u *p; | |
1574 | |
1575 /* | |
1576 * If there is a pipe, we have to put the '<' in front of it. | |
1577 * Don't do this when 'shellquote' is not empty, otherwise the | |
1578 * redirection would be inside the quotes. | |
1579 */ | |
1580 if (*p_shq == NUL) | |
1581 { | |
1582 p = vim_strchr(buf, '|'); | |
1583 if (p != NULL) | |
1584 *p = NUL; | |
1585 } | |
1586 STRCAT(buf, " <"); /* " < " causes problems on Amiga */ | |
1587 STRCAT(buf, itmp); | |
1588 if (*p_shq == NUL) | |
1589 { | |
1590 p = vim_strchr(cmd, '|'); | |
1591 if (p != NULL) | |
1592 { | |
1593 STRCAT(buf, " "); /* insert a space before the '|' for DOS */ | |
1594 STRCAT(buf, p); | |
1595 } | |
1596 } | |
1597 } | |
1598 #endif | |
1599 if (otmp != NULL) | |
1872 | 1600 append_redir(buf, (int)len, p_srr, otmp); |
7 | 1601 |
1602 return buf; | |
1603 } | |
1604 | |
1605 /* | |
1872 | 1606 * Append output redirection for file "fname" to the end of string buffer |
1607 * "buf[buflen]" | |
7 | 1608 * Works with the 'shellredir' and 'shellpipe' options. |
1609 * The caller should make sure that there is enough room: | |
1610 * STRLEN(opt) + STRLEN(fname) + 3 | |
1611 */ | |
1612 void | |
1872 | 1613 append_redir(buf, buflen, opt, fname) |
7 | 1614 char_u *buf; |
1872 | 1615 int buflen; |
7 | 1616 char_u *opt; |
1617 char_u *fname; | |
1618 { | |
1619 char_u *p; | |
1872 | 1620 char_u *end; |
1621 | |
1622 end = buf + STRLEN(buf); | |
7 | 1623 /* find "%s", skipping "%%" */ |
1624 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p) | |
1625 if (p[1] == 's') | |
1626 break; | |
1627 if (p != NULL) | |
1628 { | |
1872 | 1629 *end = ' '; /* not really needed? Not with sh, ksh or bash */ |
1630 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)), | |
1631 (char *)opt, (char *)fname); | |
7 | 1632 } |
1633 else | |
1872 | 1634 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
7 | 1635 #ifdef FEAT_QUICKFIX |
1636 " %s %s", | |
1637 #else | |
1638 " %s%s", /* " > %s" causes problems on Amiga */ | |
1639 #endif | |
1640 (char *)opt, (char *)fname); | |
1641 } | |
1642 | |
1643 #ifdef FEAT_VIMINFO | |
1644 | |
1645 static int no_viminfo __ARGS((void)); | |
1646 static int viminfo_errcnt; | |
1647 | |
1648 static int | |
1649 no_viminfo() | |
1650 { | |
1651 /* "vim -i NONE" does not read or write a viminfo file */ | |
1652 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0); | |
1653 } | |
1654 | |
1655 /* | |
1656 * Report an error for reading a viminfo file. | |
1657 * Count the number of errors. When there are more than 10, return TRUE. | |
1658 */ | |
1659 int | |
1660 viminfo_error(errnum, message, line) | |
1661 char *errnum; | |
1662 char *message; | |
1663 char_u *line; | |
1664 { | |
274 | 1665 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "), |
1666 errnum, message); | |
1459 | 1667 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1); |
156 | 1668 if (IObuff[STRLEN(IObuff) - 1] == '\n') |
1669 IObuff[STRLEN(IObuff) - 1] = NUL; | |
7 | 1670 emsg(IObuff); |
1671 if (++viminfo_errcnt >= 10) | |
1672 { | |
1673 EMSG(_("E136: viminfo: Too many errors, skipping rest of file")); | |
1674 return TRUE; | |
1675 } | |
1676 return FALSE; | |
1677 } | |
1678 | |
1679 /* | |
1680 * read_viminfo() -- Read the viminfo file. Registers etc. which are already | |
1733 | 1681 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb |
7 | 1682 */ |
1683 int | |
1733 | 1684 read_viminfo(file, flags) |
1685 char_u *file; /* file name or NULL to use default name */ | |
1686 int flags; /* VIF_WANT_INFO et al. */ | |
7 | 1687 { |
1688 FILE *fp; | |
1689 char_u *fname; | |
1690 | |
1691 if (no_viminfo()) | |
1692 return FAIL; | |
1693 | |
1733 | 1694 fname = viminfo_filename(file); /* get file name in allocated buffer */ |
7 | 1695 if (fname == NULL) |
1696 return FAIL; | |
1697 fp = mch_fopen((char *)fname, READBIN); | |
1698 | |
1699 if (p_verbose > 0) | |
294 | 1700 { |
1701 verbose_enter(); | |
274 | 1702 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"), |
1703 fname, | |
1733 | 1704 (flags & VIF_WANT_INFO) ? _(" info") : "", |
1705 (flags & VIF_WANT_MARKS) ? _(" marks") : "", | |
1706 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "", | |
274 | 1707 fp == NULL ? _(" FAILED") : ""); |
294 | 1708 verbose_leave(); |
1709 } | |
7 | 1710 |
1711 vim_free(fname); | |
1712 if (fp == NULL) | |
1713 return FAIL; | |
1714 | |
1715 viminfo_errcnt = 0; | |
1733 | 1716 do_viminfo(fp, NULL, flags); |
7 | 1717 |
1718 fclose(fp); | |
1719 return OK; | |
1720 } | |
1721 | |
1722 /* | |
1723 * write_viminfo() -- Write the viminfo file. The old one is read in first so | |
1724 * that effectively a merge of current info and old info is done. This allows | |
1725 * multiple vims to run simultaneously, without losing any marks etc. If | |
1726 * forceit is TRUE, then the old file is not read in, and only internal info is | |
1727 * written to the file. -- webb | |
1728 */ | |
1729 void | |
1730 write_viminfo(file, forceit) | |
1731 char_u *file; | |
1732 int forceit; | |
1733 { | |
1734 char_u *fname; | |
1735 FILE *fp_in = NULL; /* input viminfo file, if any */ | |
1736 FILE *fp_out = NULL; /* output viminfo file */ | |
1737 char_u *tempname = NULL; /* name of temp viminfo file */ | |
1738 struct stat st_new; /* mch_stat() of potential new file */ | |
1739 char_u *wp; | |
1740 #if defined(UNIX) || defined(VMS) | |
1741 mode_t umask_save; | |
1742 #endif | |
1743 #ifdef UNIX | |
1744 int shortname = FALSE; /* use 8.3 file name */ | |
1745 struct stat st_old; /* mch_stat() of existing viminfo file */ | |
1746 #endif | |
601 | 1747 #ifdef WIN3264 |
1748 long perm = -1; | |
1749 #endif | |
7 | 1750 |
1751 if (no_viminfo()) | |
1752 return; | |
1753 | |
1754 fname = viminfo_filename(file); /* may set to default if NULL */ | |
1755 if (fname == NULL) | |
1756 return; | |
1757 | |
1758 fp_in = mch_fopen((char *)fname, READBIN); | |
1759 if (fp_in == NULL) | |
1760 { | |
1761 /* if it does exist, but we can't read it, don't try writing */ | |
1762 if (mch_stat((char *)fname, &st_new) == 0) | |
1763 goto end; | |
1764 #if defined(UNIX) || defined(VMS) | |
1765 /* | |
1766 * For Unix we create the .viminfo non-accessible for others, | |
1767 * because it may contain text from non-accessible documents. | |
1768 */ | |
1769 umask_save = umask(077); | |
1770 #endif | |
1771 fp_out = mch_fopen((char *)fname, WRITEBIN); | |
1772 #if defined(UNIX) || defined(VMS) | |
1773 (void)umask(umask_save); | |
1774 #endif | |
1775 } | |
1776 else | |
1777 { | |
1778 /* | |
1779 * There is an existing viminfo file. Create a temporary file to | |
1780 * write the new viminfo into, in the same directory as the | |
1781 * existing viminfo file, which will be renamed later. | |
1782 */ | |
1783 #ifdef UNIX | |
1784 /* | |
1785 * For Unix we check the owner of the file. It's not very nice to | |
1786 * overwrite a user's viminfo file after a "su root", with a | |
1787 * viminfo file that the user can't read. | |
1788 */ | |
1869 | 1789 st_old.st_dev = (dev_t)0; |
1438 | 1790 st_old.st_ino = 0; |
7 | 1791 st_old.st_mode = 0600; |
1076 | 1792 if (mch_stat((char *)fname, &st_old) == 0 |
1793 && getuid() != ROOT_UID | |
560 | 1794 && !(st_old.st_uid == getuid() |
7 | 1795 ? (st_old.st_mode & 0200) |
1796 : (st_old.st_gid == getgid() | |
1797 ? (st_old.st_mode & 0020) | |
1798 : (st_old.st_mode & 0002)))) | |
1799 { | |
944 | 1800 int tt = msg_didany; |
7 | 1801 |
1802 /* avoid a wait_return for this message, it's annoying */ | |
1803 EMSG2(_("E137: Viminfo file is not writable: %s"), fname); | |
1804 msg_didany = tt; | |
840 | 1805 fclose(fp_in); |
7 | 1806 goto end; |
1807 } | |
1808 #endif | |
601 | 1809 #ifdef WIN3264 |
1810 /* Get the file attributes of the existing viminfo file. */ | |
1811 perm = mch_getperm(fname); | |
1812 #endif | |
7 | 1813 |
1814 /* | |
1815 * Make tempname. | |
1816 * May try twice: Once normal and once with shortname set, just in | |
1817 * case somebody puts his viminfo file in an 8.3 filesystem. | |
1818 */ | |
1819 for (;;) | |
1820 { | |
1821 tempname = buf_modname( | |
1822 #ifdef UNIX | |
1823 shortname, | |
1824 #else | |
1825 # ifdef SHORT_FNAME | |
1826 TRUE, | |
1827 # else | |
1828 # ifdef FEAT_GUI_W32 | |
1829 gui_is_win32s(), | |
1830 # else | |
1831 FALSE, | |
1832 # endif | |
1833 # endif | |
1834 #endif | |
1835 fname, | |
1836 #ifdef VMS | |
1837 (char_u *)"-tmp", | |
1838 #else | |
1839 (char_u *)".tmp", | |
1840 #endif | |
1841 FALSE); | |
1842 if (tempname == NULL) /* out of memory */ | |
1843 break; | |
1844 | |
1845 /* | |
1846 * Check if tempfile already exists. Never overwrite an | |
1847 * existing file! | |
1848 */ | |
1849 if (mch_stat((char *)tempname, &st_new) == 0) | |
1850 { | |
1851 #ifdef UNIX | |
1852 /* | |
1853 * Check if tempfile is same as original file. May happen | |
1854 * when modname() gave the same file back. E.g. silly | |
1855 * link, or file name-length reached. Try again with | |
1856 * shortname set. | |
1857 */ | |
560 | 1858 if (!shortname && st_new.st_dev == st_old.st_dev |
1859 && st_new.st_ino == st_old.st_ino) | |
7 | 1860 { |
1861 vim_free(tempname); | |
1862 tempname = NULL; | |
1863 shortname = TRUE; | |
1864 continue; | |
1865 } | |
1866 #endif | |
1867 /* | |
1868 * Try another name. Change one character, just before | |
1869 * the extension. This should also work for an 8.3 | |
1870 * file name, when after adding the extension it still is | |
1871 * the same file as the original. | |
1872 */ | |
1873 wp = tempname + STRLEN(tempname) - 5; | |
1874 if (wp < gettail(tempname)) /* empty file name? */ | |
1875 wp = gettail(tempname); | |
1876 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0; | |
1877 --*wp) | |
1878 { | |
1879 /* | |
1880 * They all exist? Must be something wrong! Don't | |
1881 * write the viminfo file then. | |
1882 */ | |
1883 if (*wp == 'a') | |
1884 { | |
1885 vim_free(tempname); | |
1886 tempname = NULL; | |
1887 break; | |
1888 } | |
1889 } | |
1890 } | |
1891 break; | |
1892 } | |
1893 | |
1894 if (tempname != NULL) | |
1895 { | |
762 | 1896 #ifdef VMS |
1897 /* fdopen() fails for some reason */ | |
770 | 1898 umask_save = umask(077); |
1899 fp_out = mch_fopen((char *)tempname, WRITEBIN); | |
1900 (void)umask(umask_save); | |
762 | 1901 #else |
557 | 1902 int fd; |
1903 | |
1904 /* Use mch_open() to be able to use O_NOFOLLOW and set file | |
601 | 1905 * protection: |
673 | 1906 * Unix: same as original file, but strip s-bit. Reset umask to |
1907 * avoid it getting in the way. | |
601 | 1908 * Others: r&w for user only. */ |
762 | 1909 # ifdef UNIX |
673 | 1910 umask_save = umask(0); |
557 | 1911 fd = mch_open((char *)tempname, |
1912 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, | |
569 | 1913 (int)((st_old.st_mode & 0777) | 0600)); |
673 | 1914 (void)umask(umask_save); |
762 | 1915 # else |
569 | 1916 fd = mch_open((char *)tempname, |
673 | 1917 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600); |
762 | 1918 # endif |
557 | 1919 if (fd < 0) |
1920 fp_out = NULL; | |
1921 else | |
1922 fp_out = fdopen(fd, WRITEBIN); | |
762 | 1923 #endif /* VMS */ |
7 | 1924 |
1925 /* | |
1926 * If we can't create in the same directory, try creating a | |
1927 * "normal" temp file. | |
1928 */ | |
1929 if (fp_out == NULL) | |
1930 { | |
1931 vim_free(tempname); | |
1932 if ((tempname = vim_tempname('o')) != NULL) | |
1933 fp_out = mch_fopen((char *)tempname, WRITEBIN); | |
1934 } | |
557 | 1935 |
1936 #if defined(UNIX) && defined(HAVE_FCHOWN) | |
7 | 1937 /* |
557 | 1938 * Make sure the owner can read/write it. This only works for |
1939 * root. | |
7 | 1940 */ |
1941 if (fp_out != NULL) | |
1757 | 1942 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid); |
7 | 1943 #endif |
1944 } | |
1945 } | |
1946 | |
1947 /* | |
1948 * Check if the new viminfo file can be written to. | |
1949 */ | |
1950 if (fp_out == NULL) | |
1951 { | |
1952 EMSG2(_("E138: Can't write viminfo file %s!"), | |
301 | 1953 (fp_in == NULL || tempname == NULL) ? fname : tempname); |
7 | 1954 if (fp_in != NULL) |
1955 fclose(fp_in); | |
1956 goto end; | |
1957 } | |
1958 | |
1959 if (p_verbose > 0) | |
294 | 1960 { |
1961 verbose_enter(); | |
274 | 1962 smsg((char_u *)_("Writing viminfo file \"%s\""), fname); |
294 | 1963 verbose_leave(); |
1964 } | |
7 | 1965 |
1966 viminfo_errcnt = 0; | |
1733 | 1967 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS)); |
7 | 1968 |
1969 fclose(fp_out); /* errors are ignored !? */ | |
1970 if (fp_in != NULL) | |
1971 { | |
1972 fclose(fp_in); | |
601 | 1973 |
7 | 1974 /* |
601 | 1975 * In case of an error keep the original viminfo file. |
1976 * Otherwise rename the newly written file. | |
7 | 1977 */ |
1978 if (viminfo_errcnt || vim_rename(tempname, fname) == -1) | |
1979 mch_remove(tempname); | |
601 | 1980 |
1981 #ifdef WIN3264 | |
1982 /* If the viminfo file was hidden then also hide the new file. */ | |
1983 if (perm > 0 && (perm & FILE_ATTRIBUTE_HIDDEN)) | |
1984 mch_hide(fname); | |
1985 #endif | |
1986 } | |
1987 | |
7 | 1988 end: |
1989 vim_free(fname); | |
1990 vim_free(tempname); | |
1991 } | |
1992 | |
1993 /* | |
1994 * Get the viminfo file name to use. | |
1995 * If "file" is given and not empty, use it (has already been expanded by | |
1996 * cmdline functions). | |
1997 * Otherwise use "-i file_name", value from 'viminfo' or the default, and | |
1998 * expand environment variables. | |
1999 * Returns an allocated string. NULL when out of memory. | |
2000 */ | |
2001 static char_u * | |
2002 viminfo_filename(file) | |
2003 char_u *file; | |
2004 { | |
2005 if (file == NULL || *file == NUL) | |
2006 { | |
2007 if (use_viminfo != NULL) | |
2008 file = use_viminfo; | |
2009 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL) | |
2010 { | |
2011 #ifdef VIMINFO_FILE2 | |
2012 /* don't use $HOME when not defined (turned into "c:/"!). */ | |
2013 # ifdef VMS | |
2014 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL) | |
2015 # else | |
2016 if (mch_getenv((char_u *)"HOME") == NULL) | |
2017 # endif | |
2018 { | |
2019 /* don't use $VIM when not available. */ | |
2020 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL); | |
2021 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */ | |
2022 file = (char_u *)VIMINFO_FILE2; | |
2023 else | |
2024 file = (char_u *)VIMINFO_FILE; | |
2025 } | |
2026 else | |
2027 #endif | |
2028 file = (char_u *)VIMINFO_FILE; | |
2029 } | |
2030 expand_env(file, NameBuff, MAXPATHL); | |
2031 file = NameBuff; | |
2032 } | |
2033 return vim_strsave(file); | |
2034 } | |
2035 | |
2036 /* | |
2037 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo(). | |
2038 */ | |
2039 static void | |
1733 | 2040 do_viminfo(fp_in, fp_out, flags) |
7 | 2041 FILE *fp_in; |
2042 FILE *fp_out; | |
1733 | 2043 int flags; |
7 | 2044 { |
2045 int count = 0; | |
2046 int eof = FALSE; | |
2047 vir_T vir; | |
2048 | |
2049 if ((vir.vir_line = alloc(LSIZE)) == NULL) | |
2050 return; | |
2051 vir.vir_fd = fp_in; | |
2052 #ifdef FEAT_MBYTE | |
2053 vir.vir_conv.vc_type = CONV_NONE; | |
2054 #endif | |
2055 | |
2056 if (fp_in != NULL) | |
2057 { | |
1733 | 2058 if (flags & VIF_WANT_INFO) |
2059 eof = read_viminfo_up_to_marks(&vir, | |
2060 flags & VIF_FORCEIT, fp_out != NULL); | |
7 | 2061 else |
2062 /* Skip info, find start of marks */ | |
2063 while (!(eof = viminfo_readline(&vir)) | |
2064 && vir.vir_line[0] != '>') | |
2065 ; | |
2066 } | |
2067 if (fp_out != NULL) | |
2068 { | |
2069 /* Write the info: */ | |
2070 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"), | |
2071 VIM_VERSION_MEDIUM); | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2072 fputs(_("# You may edit it if you're careful!\n\n"), fp_out); |
7 | 2073 #ifdef FEAT_MBYTE |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2074 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out); |
7 | 2075 fprintf(fp_out, "*encoding=%s\n\n", p_enc); |
2076 #endif | |
2077 write_viminfo_search_pattern(fp_out); | |
2078 write_viminfo_sub_string(fp_out); | |
2079 #ifdef FEAT_CMDHIST | |
2080 write_viminfo_history(fp_out); | |
2081 #endif | |
2082 write_viminfo_registers(fp_out); | |
2083 #ifdef FEAT_EVAL | |
2084 write_viminfo_varlist(fp_out); | |
2085 #endif | |
2086 write_viminfo_filemarks(fp_out); | |
2087 write_viminfo_bufferlist(fp_out); | |
2088 count = write_viminfo_marks(fp_out); | |
2089 } | |
1733 | 2090 if (fp_in != NULL |
2091 && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT))) | |
2092 copy_viminfo_marks(&vir, fp_out, count, eof, flags); | |
7 | 2093 |
2094 vim_free(vir.vir_line); | |
2095 #ifdef FEAT_MBYTE | |
2096 if (vir.vir_conv.vc_type != CONV_NONE) | |
2097 convert_setup(&vir.vir_conv, NULL, NULL); | |
2098 #endif | |
2099 } | |
2100 | |
2101 /* | |
2102 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the | |
2103 * first part of the viminfo file which contains everything but the marks that | |
2104 * are local to a file. Returns TRUE when end-of-file is reached. -- webb | |
2105 */ | |
2106 static int | |
2107 read_viminfo_up_to_marks(virp, forceit, writing) | |
2108 vir_T *virp; | |
2109 int forceit; | |
2110 int writing; | |
2111 { | |
2112 int eof; | |
2113 buf_T *buf; | |
2114 | |
2115 #ifdef FEAT_CMDHIST | |
4285 | 2116 prepare_viminfo_history(forceit ? 9999 : 0, writing); |
7 | 2117 #endif |
2118 eof = viminfo_readline(virp); | |
2119 while (!eof && virp->vir_line[0] != '>') | |
2120 { | |
2121 switch (virp->vir_line[0]) | |
2122 { | |
2123 /* Characters reserved for future expansion, ignored now */ | |
2124 case '+': /* "+40 /path/dir file", for running vim without args */ | |
2125 case '|': /* to be defined */ | |
2126 case '^': /* to be defined */ | |
2127 case '<': /* long line - ignored */ | |
2128 /* A comment or empty line. */ | |
2129 case NUL: | |
2130 case '\r': | |
2131 case '\n': | |
2132 case '#': | |
2133 eof = viminfo_readline(virp); | |
2134 break; | |
2135 case '*': /* "*encoding=value" */ | |
2136 eof = viminfo_encoding(virp); | |
2137 break; | |
2138 case '!': /* global variable */ | |
2139 #ifdef FEAT_EVAL | |
2140 eof = read_viminfo_varlist(virp, writing); | |
2141 #else | |
2142 eof = viminfo_readline(virp); | |
2143 #endif | |
2144 break; | |
2145 case '%': /* entry for buffer list */ | |
2146 eof = read_viminfo_bufferlist(virp, writing); | |
2147 break; | |
2148 case '"': | |
2149 eof = read_viminfo_register(virp, forceit); | |
2150 break; | |
2151 case '/': /* Search string */ | |
2152 case '&': /* Substitute search string */ | |
2153 case '~': /* Last search string, followed by '/' or '&' */ | |
2154 eof = read_viminfo_search_pattern(virp, forceit); | |
2155 break; | |
2156 case '$': | |
2157 eof = read_viminfo_sub_string(virp, forceit); | |
2158 break; | |
2159 case ':': | |
2160 case '?': | |
2161 case '=': | |
2162 case '@': | |
2163 #ifdef FEAT_CMDHIST | |
4285 | 2164 eof = read_viminfo_history(virp, writing); |
7 | 2165 #else |
2166 eof = viminfo_readline(virp); | |
2167 #endif | |
2168 break; | |
2169 case '-': | |
2170 case '\'': | |
2171 eof = read_viminfo_filemark(virp, forceit); | |
2172 break; | |
2173 default: | |
2174 if (viminfo_error("E575: ", _("Illegal starting char"), | |
2175 virp->vir_line)) | |
2176 eof = TRUE; | |
2177 else | |
2178 eof = viminfo_readline(virp); | |
2179 break; | |
2180 } | |
2181 } | |
2182 | |
2183 #ifdef FEAT_CMDHIST | |
2184 /* Finish reading history items. */ | |
4285 | 2185 if (!writing) |
2186 finish_viminfo_history(); | |
7 | 2187 #endif |
2188 | |
2189 /* Change file names to buffer numbers for fmarks. */ | |
2190 for (buf = firstbuf; buf != NULL; buf = buf->b_next) | |
2191 fmarks_check_names(buf); | |
2192 | |
2193 return eof; | |
2194 } | |
2195 | |
2196 /* | |
2197 * Compare the 'encoding' value in the viminfo file with the current value of | |
2198 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for | |
2199 * conversion of text with iconv() in viminfo_readstring(). | |
2200 */ | |
2201 static int | |
2202 viminfo_encoding(virp) | |
2203 vir_T *virp; | |
2204 { | |
2205 #ifdef FEAT_MBYTE | |
2206 char_u *p; | |
2207 int i; | |
2208 | |
2209 if (get_viminfo_parameter('c') != 0) | |
2210 { | |
2211 p = vim_strchr(virp->vir_line, '='); | |
2212 if (p != NULL) | |
2213 { | |
2214 /* remove trailing newline */ | |
2215 ++p; | |
2216 for (i = 0; vim_isprintc(p[i]); ++i) | |
2217 ; | |
2218 p[i] = NUL; | |
2219 | |
2220 convert_setup(&virp->vir_conv, p, p_enc); | |
2221 } | |
2222 } | |
2223 #endif | |
2224 return viminfo_readline(virp); | |
2225 } | |
2226 | |
2227 /* | |
2228 * Read a line from the viminfo file. | |
2229 * Returns TRUE for end-of-file; | |
2230 */ | |
2231 int | |
2232 viminfo_readline(virp) | |
2233 vir_T *virp; | |
2234 { | |
2235 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); | |
2236 } | |
2237 | |
2238 /* | |
2239 * check string read from viminfo file | |
2240 * remove '\n' at the end of the line | |
2241 * - replace CTRL-V CTRL-V with CTRL-V | |
2242 * - replace CTRL-V 'n' with '\n' | |
2243 * | |
2244 * Check for a long line as written by viminfo_writestring(). | |
2245 * | |
2246 * Return the string in allocated memory (NULL when out of memory). | |
2247 */ | |
2248 char_u * | |
2249 viminfo_readstring(virp, off, convert) | |
2250 vir_T *virp; | |
2251 int off; /* offset for virp->vir_line */ | |
1883 | 2252 int convert UNUSED; /* convert the string */ |
7 | 2253 { |
2254 char_u *retval; | |
2255 char_u *s, *d; | |
2256 long len; | |
2257 | |
2258 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1])) | |
2259 { | |
2260 len = atol((char *)virp->vir_line + off + 1); | |
2261 retval = lalloc(len, TRUE); | |
2262 if (retval == NULL) | |
2263 { | |
2264 /* Line too long? File messed up? Skip next line. */ | |
2265 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd); | |
2266 return NULL; | |
2267 } | |
2268 (void)vim_fgets(retval, (int)len, virp->vir_fd); | |
2269 s = retval + 1; /* Skip the leading '<' */ | |
2270 } | |
2271 else | |
2272 { | |
2273 retval = vim_strsave(virp->vir_line + off); | |
2274 if (retval == NULL) | |
2275 return NULL; | |
2276 s = retval; | |
2277 } | |
2278 | |
2279 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */ | |
2280 d = retval; | |
2281 while (*s != NUL && *s != '\n') | |
2282 { | |
2283 if (s[0] == Ctrl_V && s[1] != NUL) | |
2284 { | |
2285 if (s[1] == 'n') | |
2286 *d++ = '\n'; | |
2287 else | |
2288 *d++ = Ctrl_V; | |
2289 s += 2; | |
2290 } | |
2291 else | |
2292 *d++ = *s++; | |
2293 } | |
2294 *d = NUL; | |
2295 | |
2296 #ifdef FEAT_MBYTE | |
2297 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL) | |
2298 { | |
2299 d = string_convert(&virp->vir_conv, retval, NULL); | |
2300 if (d != NULL) | |
2301 { | |
2302 vim_free(retval); | |
2303 retval = d; | |
2304 } | |
2305 } | |
2306 #endif | |
2307 | |
2308 return retval; | |
2309 } | |
2310 | |
2311 /* | |
2312 * write string to viminfo file | |
2313 * - replace CTRL-V with CTRL-V CTRL-V | |
2314 * - replace '\n' with CTRL-V 'n' | |
2315 * - add a '\n' at the end | |
2316 * | |
2317 * For a long line: | |
2318 * - write " CTRL-V <length> \n " in first line | |
2319 * - write " < <string> \n " in second line | |
2320 */ | |
2321 void | |
2322 viminfo_writestring(fd, p) | |
2323 FILE *fd; | |
2324 char_u *p; | |
2325 { | |
2326 int c; | |
2327 char_u *s; | |
2328 int len = 0; | |
2329 | |
2330 for (s = p; *s != NUL; ++s) | |
2331 { | |
2332 if (*s == Ctrl_V || *s == '\n') | |
2333 ++len; | |
2334 ++len; | |
2335 } | |
2336 | |
2337 /* If the string will be too long, write its length and put it in the next | |
2338 * line. Take into account that some room is needed for what comes before | |
2339 * the string (e.g., variable name). Add something to the length for the | |
2340 * '<', NL and trailing NUL. */ | |
2341 if (len > LSIZE / 2) | |
2342 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3); | |
2343 | |
2344 while ((c = *p++) != NUL) | |
2345 { | |
2346 if (c == Ctrl_V || c == '\n') | |
2347 { | |
2348 putc(Ctrl_V, fd); | |
2349 if (c == '\n') | |
2350 c = 'n'; | |
2351 } | |
2352 putc(c, fd); | |
2353 } | |
2354 putc('\n', fd); | |
2355 } | |
2356 #endif /* FEAT_VIMINFO */ | |
2357 | |
2358 /* | |
2359 * Implementation of ":fixdel", also used by get_stty(). | |
2360 * <BS> resulting <Del> | |
2361 * ^? ^H | |
2362 * not ^? ^? | |
2363 */ | |
2364 void | |
2365 do_fixdel(eap) | |
1876 | 2366 exarg_T *eap UNUSED; |
7 | 2367 { |
2368 char_u *p; | |
2369 | |
2370 p = find_termcode((char_u *)"kb"); | |
2371 add_termcode((char_u *)"kD", p != NULL | |
2372 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); | |
2373 } | |
2374 | |
2375 void | |
169 | 2376 print_line_no_prefix(lnum, use_number, list) |
7 | 2377 linenr_T lnum; |
2378 int use_number; | |
169 | 2379 int list; |
7 | 2380 { |
13 | 2381 char_u numbuf[30]; |
7 | 2382 |
2383 if (curwin->w_p_nu || use_number) | |
2384 { | |
1872 | 2385 vim_snprintf((char *)numbuf, sizeof(numbuf), |
2386 "%*ld ", number_width(curwin), (long)lnum); | |
7 | 2387 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */ |
2388 } | |
169 | 2389 msg_prt_line(ml_get(lnum), list); |
7 | 2390 } |
2391 | |
2392 /* | |
2393 * Print a text line. Also in silent mode ("ex -s"). | |
2394 */ | |
2395 void | |
169 | 2396 print_line(lnum, use_number, list) |
7 | 2397 linenr_T lnum; |
2398 int use_number; | |
169 | 2399 int list; |
7 | 2400 { |
2401 int save_silent = silent_mode; | |
2402 | |
169 | 2403 msg_start(); |
7 | 2404 silent_mode = FALSE; |
169 | 2405 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */ |
2406 print_line_no_prefix(lnum, use_number, list); | |
7 | 2407 if (save_silent) |
2408 { | |
2409 msg_putchar('\n'); | |
2410 cursor_on(); /* msg_start() switches it off */ | |
2411 out_flush(); | |
2412 silent_mode = save_silent; | |
1798 | 2413 } |
2414 info_message = FALSE; | |
7 | 2415 } |
2416 | |
2417 /* | |
2418 * ":file[!] [fname]". | |
2419 */ | |
2420 void | |
2421 ex_file(eap) | |
2422 exarg_T *eap; | |
2423 { | |
2424 char_u *fname, *sfname, *xfname; | |
2425 buf_T *buf; | |
2426 | |
14 | 2427 /* ":0file" removes the file name. Check for illegal uses ":3file", |
2428 * "0file name", etc. */ | |
2429 if (eap->addr_count > 0 | |
2430 && (*eap->arg != NUL | |
2431 || eap->line2 > 0 | |
2432 || eap->addr_count > 1)) | |
2433 { | |
2434 EMSG(_(e_invarg)); | |
2435 return; | |
2436 } | |
2437 | |
2438 if (*eap->arg != NUL || eap->addr_count == 1) | |
7 | 2439 { |
2440 #ifdef FEAT_AUTOCMD | |
2441 buf = curbuf; | |
2442 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); | |
2443 /* buffer changed, don't change name now */ | |
2444 if (buf != curbuf) | |
2445 return; | |
2446 # ifdef FEAT_EVAL | |
2447 if (aborting()) /* autocmds may abort script processing */ | |
2448 return; | |
2449 # endif | |
2450 #endif | |
2451 /* | |
2452 * The name of the current buffer will be changed. | |
2453 * A new (unlisted) buffer entry needs to be made to hold the old file | |
2454 * name, which will become the alternate file name. | |
29 | 2455 * But don't set the alternate file name if the buffer didn't have a |
2456 * name. | |
7 | 2457 */ |
2458 fname = curbuf->b_ffname; | |
2459 sfname = curbuf->b_sfname; | |
2460 xfname = curbuf->b_fname; | |
2461 curbuf->b_ffname = NULL; | |
2462 curbuf->b_sfname = NULL; | |
2463 if (setfname(curbuf, eap->arg, NULL, TRUE) == FAIL) | |
2464 { | |
2465 curbuf->b_ffname = fname; | |
2466 curbuf->b_sfname = sfname; | |
2467 return; | |
2468 } | |
2469 curbuf->b_flags |= BF_NOTEDITED; | |
29 | 2470 if (xfname != NULL && *xfname != NUL) |
2471 { | |
2472 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0); | |
2473 if (buf != NULL && !cmdmod.keepalt) | |
2474 curwin->w_alt_fnum = buf->b_fnum; | |
2475 } | |
7 | 2476 vim_free(fname); |
2477 vim_free(sfname); | |
2478 #ifdef FEAT_AUTOCMD | |
2479 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); | |
2480 #endif | |
961 | 2481 /* Change directories when the 'acd' option is set. */ |
2482 DO_AUTOCHDIR | |
7 | 2483 } |
2484 /* print full file name if :cd used */ | |
2485 fileinfo(FALSE, FALSE, eap->forceit); | |
2486 } | |
2487 | |
2488 /* | |
2489 * ":update". | |
2490 */ | |
2491 void | |
2492 ex_update(eap) | |
2493 exarg_T *eap; | |
2494 { | |
2495 if (curbufIsChanged()) | |
2496 (void)do_write(eap); | |
2497 } | |
2498 | |
2499 /* | |
2500 * ":write" and ":saveas". | |
2501 */ | |
2502 void | |
2503 ex_write(eap) | |
2504 exarg_T *eap; | |
2505 { | |
2506 if (eap->usefilter) /* input lines to shell command */ | |
2507 do_bang(1, eap, FALSE, TRUE, FALSE); | |
2508 else | |
2509 (void)do_write(eap); | |
2510 } | |
2511 | |
2512 /* | |
2513 * write current buffer to file 'eap->arg' | |
2514 * if 'eap->append' is TRUE, append to the file | |
2515 * | |
2516 * if *eap->arg == NUL write to current file | |
2517 * | |
2518 * return FAIL for failure, OK otherwise | |
2519 */ | |
2520 int | |
2521 do_write(eap) | |
2522 exarg_T *eap; | |
2523 { | |
2524 int other; | |
2525 char_u *fname = NULL; /* init to shut up gcc */ | |
2526 char_u *ffname; | |
2527 int retval = FAIL; | |
2528 char_u *free_fname = NULL; | |
2529 #ifdef FEAT_BROWSE | |
2530 char_u *browse_file = NULL; | |
2531 #endif | |
2532 buf_T *alt_buf = NULL; | |
2533 | |
2534 if (not_writing()) /* check 'write' option */ | |
2535 return FAIL; | |
2536 | |
2537 ffname = eap->arg; | |
2538 #ifdef FEAT_BROWSE | |
2539 if (cmdmod.browse) | |
2540 { | |
29 | 2541 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
7 | 2542 NULL, NULL, NULL, curbuf); |
2543 if (browse_file == NULL) | |
2544 goto theend; | |
2545 ffname = browse_file; | |
2546 } | |
2547 #endif | |
2548 if (*ffname == NUL) | |
2549 { | |
2550 if (eap->cmdidx == CMD_saveas) | |
2551 { | |
2552 EMSG(_(e_argreq)); | |
2553 goto theend; | |
2554 } | |
2555 other = FALSE; | |
2556 } | |
2557 else | |
2558 { | |
2559 fname = ffname; | |
2560 free_fname = fix_fname(ffname); | |
2561 /* | |
2562 * When out-of-memory, keep unexpanded file name, because we MUST be | |
2563 * able to write the file in this situation. | |
2564 */ | |
2565 if (free_fname != NULL) | |
2566 ffname = free_fname; | |
2567 other = otherfile(ffname); | |
2568 } | |
2569 | |
2570 /* | |
2571 * If we have a new file, put its name in the list of alternate file names. | |
2572 */ | |
2573 if (other) | |
2574 { | |
2575 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL | |
2576 || eap->cmdidx == CMD_saveas) | |
2577 alt_buf = setaltfname(ffname, fname, (linenr_T)1); | |
2578 else | |
2579 alt_buf = buflist_findname(ffname); | |
2580 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) | |
2581 { | |
2582 /* Overwriting a file that is loaded in another buffer is not a | |
2583 * good idea. */ | |
315 | 2584 EMSG(_(e_bufloaded)); |
7 | 2585 goto theend; |
2586 } | |
2587 } | |
2588 | |
2589 /* | |
2590 * Writing to the current file is not allowed in readonly mode | |
2591 * and a file name is required. | |
2592 * "nofile" and "nowrite" buffers cannot be written implicitly either. | |
2593 */ | |
2594 if (!other && ( | |
2595 #ifdef FEAT_QUICKFIX | |
2596 bt_dontwrite_msg(curbuf) || | |
2597 #endif | |
2598 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf))) | |
2599 goto theend; | |
2600 | |
2601 if (!other) | |
2602 { | |
2603 ffname = curbuf->b_ffname; | |
2604 fname = curbuf->b_fname; | |
2605 /* | |
2606 * Not writing the whole file is only allowed with '!'. | |
2607 */ | |
2608 if ( (eap->line1 != 1 | |
2609 || eap->line2 != curbuf->b_ml.ml_line_count) | |
2610 && !eap->forceit | |
2611 && !eap->append | |
2612 && !p_wa) | |
2613 { | |
2614 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2615 if (p_confirm || cmdmod.confirm) | |
2616 { | |
2617 if (vim_dialog_yesno(VIM_QUESTION, NULL, | |
2618 (char_u *)_("Write partial file?"), 2) != VIM_YES) | |
2619 goto theend; | |
2620 eap->forceit = TRUE; | |
2621 } | |
2622 else | |
2623 #endif | |
2624 { | |
2625 EMSG(_("E140: Use ! to write partial buffer")); | |
2626 goto theend; | |
2627 } | |
2628 } | |
2629 } | |
2630 | |
2631 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) | |
2632 { | |
2633 if (eap->cmdidx == CMD_saveas && alt_buf != NULL) | |
2634 { | |
2635 #ifdef FEAT_AUTOCMD | |
2636 buf_T *was_curbuf = curbuf; | |
2637 | |
2638 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); | |
21 | 2639 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf); |
7 | 2640 # ifdef FEAT_EVAL |
2641 if (curbuf != was_curbuf || aborting()) | |
2642 # else | |
2643 if (curbuf != was_curbuf) | |
2644 # endif | |
2645 { | |
2646 /* buffer changed, don't change name now */ | |
2647 retval = FAIL; | |
2648 goto theend; | |
2649 } | |
2650 #endif | |
2651 /* Exchange the file names for the current and the alternate | |
2652 * buffer. This makes it look like we are now editing the buffer | |
2653 * under the new name. Must be done before buf_write(), because | |
2654 * if there is no file name and 'cpo' contains 'F', it will set | |
2655 * the file name. */ | |
2656 fname = alt_buf->b_fname; | |
2657 alt_buf->b_fname = curbuf->b_fname; | |
2658 curbuf->b_fname = fname; | |
2659 fname = alt_buf->b_ffname; | |
2660 alt_buf->b_ffname = curbuf->b_ffname; | |
2661 curbuf->b_ffname = fname; | |
2662 fname = alt_buf->b_sfname; | |
2663 alt_buf->b_sfname = curbuf->b_sfname; | |
2664 curbuf->b_sfname = fname; | |
2665 buf_name_changed(curbuf); | |
2666 #ifdef FEAT_AUTOCMD | |
2667 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); | |
21 | 2668 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
7 | 2669 if (!alt_buf->b_p_bl) |
2670 { | |
2671 alt_buf->b_p_bl = TRUE; | |
2672 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); | |
2673 } | |
2674 # ifdef FEAT_EVAL | |
2675 if (curbuf != was_curbuf || aborting()) | |
2676 # else | |
2677 if (curbuf != was_curbuf) | |
2678 # endif | |
2679 { | |
2680 /* buffer changed, don't write the file */ | |
2681 retval = FAIL; | |
2682 goto theend; | |
2683 } | |
634 | 2684 |
2685 /* If 'filetype' was empty try detecting it now. */ | |
2686 if (*curbuf->b_p_ft == NUL) | |
2687 { | |
819 | 2688 if (au_has_group((char_u *)"filetypedetect")) |
2689 (void)do_doautocmd((char_u *)"filetypedetect BufRead", | |
2690 TRUE); | |
717 | 2691 do_modelines(0); |
634 | 2692 } |
2648 | 2693 |
2694 /* Autocommands may have changed buffer names, esp. when | |
2695 * 'autochdir' is set. */ | |
2696 fname = curbuf->b_sfname; | |
7 | 2697 #endif |
2698 } | |
2699 | |
2700 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, | |
2701 eap, eap->append, eap->forceit, TRUE, FALSE); | |
634 | 2702 |
819 | 2703 /* After ":saveas fname" reset 'readonly'. */ |
961 | 2704 if (eap->cmdidx == CMD_saveas) |
2705 { | |
2706 if (retval == OK) | |
1806 | 2707 { |
961 | 2708 curbuf->b_p_ro = FALSE; |
1806 | 2709 #ifdef FEAT_WINDOWS |
2710 redraw_tabline = TRUE; | |
2711 #endif | |
2712 } | |
961 | 2713 /* Change directories when the 'acd' option is set. */ |
2714 DO_AUTOCHDIR | |
2715 } | |
7 | 2716 } |
2717 | |
2718 theend: | |
2719 #ifdef FEAT_BROWSE | |
2720 vim_free(browse_file); | |
2721 #endif | |
2722 vim_free(free_fname); | |
2723 return retval; | |
2724 } | |
2725 | |
2726 /* | |
2727 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, | |
2728 * BF_NEW or BF_READERR, check for overwriting current file. | |
2729 * May set eap->forceit if a dialog says it's OK to overwrite. | |
2730 * Return OK if it's OK, FAIL if it is not. | |
2731 */ | |
3486 | 2732 int |
7 | 2733 check_overwrite(eap, buf, fname, ffname, other) |
2734 exarg_T *eap; | |
2735 buf_T *buf; | |
2736 char_u *fname; /* file name to be used (can differ from | |
2737 buf->ffname) */ | |
2738 char_u *ffname; /* full path version of fname */ | |
2739 int other; /* writing under other name */ | |
2740 { | |
2741 /* | |
2742 * write to other file or b_flags set or not writing the whole file: | |
2743 * overwriting only allowed with '!' | |
2744 */ | |
2745 if ( (other | |
2746 || (buf->b_flags & BF_NOTEDITED) | |
2747 || ((buf->b_flags & BF_NEW) | |
2748 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) | |
2749 || (buf->b_flags & BF_READERR)) | |
2750 && !p_wa | |
1457 | 2751 #ifdef FEAT_QUICKFIX |
2752 && !bt_nofile(buf) | |
2753 #endif | |
7 | 2754 && vim_fexists(ffname)) |
2755 { | |
460 | 2756 if (!eap->forceit && !eap->append) |
7 | 2757 { |
460 | 2758 #ifdef UNIX |
637 | 2759 /* with UNIX it is possible to open a directory */ |
460 | 2760 if (mch_isdir(ffname)) |
2761 { | |
2762 EMSG2(_(e_isadir2), ffname); | |
2763 return FAIL; | |
2764 } | |
7 | 2765 #endif |
2766 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
460 | 2767 if (p_confirm || cmdmod.confirm) |
2768 { | |
2770 | 2769 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2770 |
2771 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); | |
2772 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) | |
2773 return FAIL; | |
2774 eap->forceit = TRUE; | |
2775 } | |
2776 else | |
2777 #endif | |
2778 { | |
2779 EMSG(_(e_exists)); | |
7 | 2780 return FAIL; |
460 | 2781 } |
7 | 2782 } |
460 | 2783 |
2784 /* For ":w! filename" check that no swap file exists for "filename". */ | |
2785 if (other && !emsg_silent) | |
7 | 2786 { |
2770 | 2787 char_u *dir; |
460 | 2788 char_u *p; |
2789 int r; | |
2790 char_u *swapname; | |
2791 | |
2792 /* We only try the first entry in 'directory', without checking if | |
2793 * it's writable. If the "." directory is not writable the write | |
2794 * will probably fail anyway. | |
2795 * Use 'shortname' of the current buffer, since there is no buffer | |
2796 * for the written file. */ | |
2797 if (*p_dir == NUL) | |
2770 | 2798 { |
2799 dir = alloc(5); | |
2800 if (dir == NULL) | |
2801 return FAIL; | |
460 | 2802 STRCPY(dir, "."); |
2770 | 2803 } |
460 | 2804 else |
2805 { | |
2770 | 2806 dir = alloc(MAXPATHL); |
2807 if (dir == NULL) | |
2808 return FAIL; | |
460 | 2809 p = p_dir; |
2810 copy_option_part(&p, dir, MAXPATHL, ","); | |
2811 } | |
2812 swapname = makeswapname(fname, ffname, curbuf, dir); | |
2770 | 2813 vim_free(dir); |
460 | 2814 r = vim_fexists(swapname); |
2815 if (r) | |
2816 { | |
2817 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2818 if (p_confirm || cmdmod.confirm) | |
2819 { | |
2770 | 2820 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2821 |
2822 dialog_msg(buff, | |
2823 _("Swap file \"%s\" exists, overwrite anyway?"), | |
2824 swapname); | |
2825 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) | |
2826 != VIM_YES) | |
819 | 2827 { |
2828 vim_free(swapname); | |
460 | 2829 return FAIL; |
819 | 2830 } |
460 | 2831 eap->forceit = TRUE; |
2832 } | |
2833 else | |
2834 #endif | |
2835 { | |
2836 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"), | |
2837 swapname); | |
819 | 2838 vim_free(swapname); |
460 | 2839 return FAIL; |
2840 } | |
2841 } | |
819 | 2842 vim_free(swapname); |
7 | 2843 } |
2844 } | |
2845 return OK; | |
2846 } | |
2847 | |
2848 /* | |
2849 * Handle ":wnext", ":wNext" and ":wprevious" commands. | |
2850 */ | |
2851 void | |
2852 ex_wnext(eap) | |
2853 exarg_T *eap; | |
2854 { | |
2855 int i; | |
2856 | |
2857 if (eap->cmd[1] == 'n') | |
2858 i = curwin->w_arg_idx + (int)eap->line2; | |
2859 else | |
2860 i = curwin->w_arg_idx - (int)eap->line2; | |
2861 eap->line1 = 1; | |
2862 eap->line2 = curbuf->b_ml.ml_line_count; | |
2863 if (do_write(eap) != FAIL) | |
2864 do_argfile(eap, i); | |
2865 } | |
2866 | |
2867 /* | |
2868 * ":wall", ":wqall" and ":xall": Write all changed files (and exit). | |
2869 */ | |
2870 void | |
2871 do_wqall(eap) | |
2872 exarg_T *eap; | |
2873 { | |
2874 buf_T *buf; | |
2875 int error = 0; | |
2876 int save_forceit = eap->forceit; | |
2877 | |
2878 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) | |
2879 exiting = TRUE; | |
2880 | |
2881 for (buf = firstbuf; buf != NULL; buf = buf->b_next) | |
2882 { | |
2883 if (bufIsChanged(buf)) | |
2884 { | |
2885 /* | |
2886 * Check if there is a reason the buffer cannot be written: | |
2887 * 1. if the 'write' option is set | |
2888 * 2. if there is no file name (even after browsing) | |
2889 * 3. if the 'readonly' is set (even after a dialog) | |
2890 * 4. if overwriting is allowed (even after a dialog) | |
2891 */ | |
2892 if (not_writing()) | |
2893 { | |
2894 ++error; | |
2895 break; | |
2896 } | |
2897 #ifdef FEAT_BROWSE | |
2898 /* ":browse wall": ask for file name if there isn't one */ | |
2899 if (buf->b_ffname == NULL && cmdmod.browse) | |
2900 browse_save_fname(buf); | |
2901 #endif | |
2902 if (buf->b_ffname == NULL) | |
2903 { | |
2904 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum); | |
2905 ++error; | |
2906 } | |
2907 else if (check_readonly(&eap->forceit, buf) | |
2908 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, | |
2909 FALSE) == FAIL) | |
2910 { | |
2911 ++error; | |
2912 } | |
2913 else | |
2914 { | |
2915 if (buf_write_all(buf, eap->forceit) == FAIL) | |
2916 ++error; | |
2917 #ifdef FEAT_AUTOCMD | |
2918 /* an autocommand may have deleted the buffer */ | |
2919 if (!buf_valid(buf)) | |
2920 buf = firstbuf; | |
2921 #endif | |
2922 } | |
2923 eap->forceit = save_forceit; /* check_overwrite() may set it */ | |
2924 } | |
2925 } | |
2926 if (exiting) | |
2927 { | |
2928 if (!error) | |
2929 getout(0); /* exit Vim */ | |
2930 not_exiting(); | |
2931 } | |
2932 } | |
2933 | |
2934 /* | |
2935 * Check the 'write' option. | |
2936 * Return TRUE and give a message when it's not st. | |
2937 */ | |
2938 int | |
2939 not_writing() | |
2940 { | |
2941 if (p_write) | |
2942 return FALSE; | |
2943 EMSG(_("E142: File not written: Writing is disabled by 'write' option")); | |
2944 return TRUE; | |
2945 } | |
2946 | |
2947 /* | |
1303 | 2948 * Check if a buffer is read-only (either 'readonly' option is set or file is |
2949 * read-only). Ask for overruling in a dialog. Return TRUE and give an error | |
2950 * message when the buffer is readonly. | |
7 | 2951 */ |
2952 static int | |
2953 check_readonly(forceit, buf) | |
2954 int *forceit; | |
2955 buf_T *buf; | |
2956 { | |
1303 | 2957 struct stat st; |
2958 | |
2959 /* Handle a file being readonly when the 'readonly' option is set or when | |
2960 * the file exists and permissions are read-only. | |
2961 * We will send 0777 to check_file_readonly(), as the "perm" variable is | |
2962 * important for device checks but not here. */ | |
2963 if (!*forceit && (buf->b_p_ro | |
2964 || (mch_stat((char *)buf->b_ffname, &st) >= 0 | |
2965 && check_file_readonly(buf->b_ffname, 0777)))) | |
7 | 2966 { |
2967 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2968 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL) | |
2969 { | |
2770 | 2970 char_u buff[DIALOG_MSG_SIZE]; |
7 | 2971 |
1303 | 2972 if (buf->b_p_ro) |
2973 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), | |
2974 buf->b_fname); | |
2975 else | |
2976 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"), | |
7 | 2977 buf->b_fname); |
2978 | |
2979 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) | |
2980 { | |
2981 /* Set forceit, to force the writing of a readonly file */ | |
2982 *forceit = TRUE; | |
2983 return FALSE; | |
2984 } | |
2985 else | |
2986 return TRUE; | |
2987 } | |
2988 else | |
2989 #endif | |
1303 | 2990 if (buf->b_p_ro) |
7 | 2991 EMSG(_(e_readonly)); |
1303 | 2992 else |
2993 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"), | |
2994 buf->b_fname); | |
7 | 2995 return TRUE; |
2996 } | |
1303 | 2997 |
7 | 2998 return FALSE; |
2999 } | |
3000 | |
3001 /* | |
632 | 3002 * Try to abandon current file and edit a new or existing file. |
3003 * 'fnum' is the number of the file, if zero use ffname/sfname. | |
7 | 3004 * |
632 | 3005 * Return 1 for "normal" error, 2 for "not written" error, 0 for success |
1370 | 3006 * -1 for successfully opening another file. |
7 | 3007 * 'lnum' is the line number for the cursor in the new file (if non-zero). |
3008 */ | |
3009 int | |
3010 getfile(fnum, ffname, sfname, setpm, lnum, forceit) | |
3011 int fnum; | |
3012 char_u *ffname; | |
3013 char_u *sfname; | |
3014 int setpm; | |
3015 linenr_T lnum; | |
3016 int forceit; | |
3017 { | |
3018 int other; | |
3019 int retval; | |
3020 char_u *free_me = NULL; | |
3021 | |
634 | 3022 if (text_locked()) |
7 | 3023 return 1; |
819 | 3024 #ifdef FEAT_AUTOCMD |
3025 if (curbuf_locked()) | |
3026 return 1; | |
3027 #endif | |
7 | 3028 |
3029 if (fnum == 0) | |
3030 { | |
3031 /* make ffname full path, set sfname */ | |
3032 fname_expand(curbuf, &ffname, &sfname); | |
3033 other = otherfile(ffname); | |
3034 free_me = ffname; /* has been allocated, free() later */ | |
3035 } | |
3036 else | |
3037 other = (fnum != curbuf->b_fnum); | |
3038 | |
3039 if (other) | |
3040 ++no_wait_return; /* don't wait for autowrite message */ | |
3041 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf) | |
3042 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) | |
3043 { | |
3044 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3045 if (p_confirm && p_write) | |
3046 dialog_changed(curbuf, FALSE); | |
3047 if (curbufIsChanged()) | |
3048 #endif | |
3049 { | |
3050 if (other) | |
3051 --no_wait_return; | |
3052 EMSG(_(e_nowrtmsg)); | |
3053 retval = 2; /* file has been changed */ | |
3054 goto theend; | |
3055 } | |
3056 } | |
3057 if (other) | |
3058 --no_wait_return; | |
3059 if (setpm) | |
3060 setpcmark(); | |
3061 if (!other) | |
3062 { | |
3063 if (lnum != 0) | |
3064 curwin->w_cursor.lnum = lnum; | |
3065 check_cursor_lnum(); | |
3066 beginline(BL_SOL | BL_FIX); | |
3067 retval = 0; /* it's in the same file */ | |
3068 } | |
3069 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum, | |
1743 | 3070 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0), |
3071 curwin) == OK) | |
7 | 3072 retval = -1; /* opened another file */ |
3073 else | |
3074 retval = 1; /* error encountered */ | |
3075 | |
3076 theend: | |
3077 vim_free(free_me); | |
3078 return retval; | |
3079 } | |
3080 | |
3081 /* | |
3082 * start editing a new file | |
3083 * | |
3084 * fnum: file number; if zero use ffname/sfname | |
3085 * ffname: the file name | |
3086 * - full path if sfname used, | |
3087 * - any file name if sfname is NULL | |
3088 * - empty string to re-edit with the same file name (but may be | |
3089 * in a different directory) | |
3090 * - NULL to start an empty buffer | |
3091 * sfname: the short file name (or NULL) | |
3092 * eap: contains the command to be executed after loading the file and | |
3093 * forced 'ff' and 'fenc' | |
3094 * newlnum: if > 0: put cursor on this line number (if possible) | |
3095 * if ECMD_LASTL: use last position in loaded file | |
3096 * if ECMD_LAST: use last position in all files | |
3097 * if ECMD_ONE: use first line | |
3098 * flags: | |
3099 * ECMD_HIDE: if TRUE don't free the current buffer | |
3100 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file | |
3101 * ECMD_OLDBUF: use existing buffer if it exists | |
3102 * ECMD_FORCEIT: ! used for Ex command | |
3103 * ECMD_ADDBUF: don't edit, just add to buffer list | |
1743 | 3104 * 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
|
3105 * 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
|
3106 * of the previous buffer for "oldwin" is stored. |
7 | 3107 * |
3108 * return FAIL for failure, OK otherwise | |
3109 */ | |
3110 int | |
1743 | 3111 do_ecmd(fnum, ffname, sfname, eap, newlnum, flags, oldwin) |
7 | 3112 int fnum; |
3113 char_u *ffname; | |
3114 char_u *sfname; | |
3115 exarg_T *eap; /* can be NULL! */ | |
3116 linenr_T newlnum; | |
3117 int flags; | |
1743 | 3118 win_T *oldwin; |
7 | 3119 { |
3120 int other_file; /* TRUE if editing another file */ | |
3121 int oldbuf; /* TRUE if using existing buffer */ | |
3122 #ifdef FEAT_AUTOCMD | |
3123 int auto_buf = FALSE; /* TRUE if autocommands brought us | |
3124 into the buffer unexpectedly */ | |
3125 char_u *new_name = NULL; | |
716 | 3126 int did_set_swapcommand = FALSE; |
7 | 3127 #endif |
3128 buf_T *buf; | |
3129 #if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3130 buf_T *old_curbuf = curbuf; | |
3131 #endif | |
3132 char_u *free_fname = NULL; | |
3133 #ifdef FEAT_BROWSE | |
3134 char_u *browse_file = NULL; | |
3135 #endif | |
3136 int retval = FAIL; | |
3137 long n; | |
3138 linenr_T lnum; | |
3139 linenr_T topline = 0; | |
3140 int newcol = -1; | |
3141 int solcol = -1; | |
3142 pos_T *pos; | |
3143 #ifdef FEAT_SUN_WORKSHOP | |
3144 char_u *cp; | |
3145 #endif | |
3146 char_u *command = NULL; | |
1185 | 3147 #ifdef FEAT_SPELL |
3148 int did_get_winopts = FALSE; | |
3149 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3150 int readfile_flags = 0; |
7 | 3151 |
3152 if (eap != NULL) | |
3153 command = eap->do_ecmd_cmd; | |
3154 | |
3155 if (fnum != 0) | |
3156 { | |
3157 if (fnum == curbuf->b_fnum) /* file is already being edited */ | |
3158 return OK; /* nothing to do */ | |
3159 other_file = TRUE; | |
3160 } | |
3161 else | |
3162 { | |
3163 #ifdef FEAT_BROWSE | |
3164 if (cmdmod.browse) | |
3165 { | |
1683 | 3166 # ifdef FEAT_AUTOCMD |
462 | 3167 if ( |
1683 | 3168 # ifdef FEAT_GUI |
462 | 3169 !gui.in_use && |
1683 | 3170 # endif |
462 | 3171 au_has_group((char_u *)"FileExplorer")) |
3172 { | |
3173 /* No browsing supported but we do have the file explorer: | |
3174 * Edit the directory. */ | |
3175 if (ffname == NULL || !mch_isdir(ffname)) | |
3176 ffname = (char_u *)"."; | |
3177 } | |
3178 else | |
1683 | 3179 # endif |
462 | 3180 { |
3181 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, | |
7 | 3182 NULL, NULL, NULL, curbuf); |
462 | 3183 if (browse_file == NULL) |
3184 goto theend; | |
3185 ffname = browse_file; | |
3186 } | |
7 | 3187 } |
3188 #endif | |
3189 /* if no short name given, use ffname for short name */ | |
3190 if (sfname == NULL) | |
3191 sfname = ffname; | |
3192 #ifdef USE_FNAME_CASE | |
3193 # ifdef USE_LONG_FNAME | |
3194 if (USE_LONG_FNAME) | |
3195 # endif | |
436 | 3196 if (sfname != NULL) |
3197 fname_case(sfname, 0); /* set correct case for sfname */ | |
7 | 3198 #endif |
3199 | |
3200 #ifdef FEAT_LISTCMDS | |
3201 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL)) | |
3202 goto theend; | |
3203 #endif | |
3204 | |
3205 if (ffname == NULL) | |
3206 other_file = TRUE; | |
3207 /* there is no file name */ | |
3208 else if (*ffname == NUL && curbuf->b_ffname == NULL) | |
3209 other_file = FALSE; | |
3210 else | |
3211 { | |
3212 if (*ffname == NUL) /* re-edit with same file name */ | |
3213 { | |
3214 ffname = curbuf->b_ffname; | |
3215 sfname = curbuf->b_fname; | |
3216 } | |
3217 free_fname = fix_fname(ffname); /* may expand to full path name */ | |
3218 if (free_fname != NULL) | |
3219 ffname = free_fname; | |
3220 other_file = otherfile(ffname); | |
3221 #ifdef FEAT_SUN_WORKSHOP | |
3222 if (usingSunWorkShop && p_acd | |
3223 && (cp = vim_strrchr(sfname, '/')) != NULL) | |
3224 sfname = ++cp; | |
3225 #endif | |
3226 } | |
3227 } | |
3228 | |
3229 /* | |
3230 * if the file was changed we may not be allowed to abandon it | |
3231 * - if we are going to re-edit the same file | |
3232 * - or if we are the only window on this file and if ECMD_HIDE is FALSE | |
3233 */ | |
3234 if ( ((!other_file && !(flags & ECMD_OLDBUF)) | |
3235 || (curbuf->b_nwindows == 1 | |
3236 && !(flags & (ECMD_HIDE | ECMD_ADDBUF)))) | |
3237 && check_changed(curbuf, p_awa, !other_file, | |
3238 (flags & ECMD_FORCEIT), FALSE)) | |
3239 { | |
3240 if (fnum == 0 && other_file && ffname != NULL) | |
3241 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); | |
3242 goto theend; | |
3243 } | |
3244 | |
3245 #ifdef FEAT_VISUAL | |
3246 /* | |
3247 * End Visual mode before switching to another buffer, so the text can be | |
3248 * copied into the GUI selection buffer. | |
3249 */ | |
3250 reset_VIsual(); | |
3251 #endif | |
3252 | |
716 | 3253 #ifdef FEAT_AUTOCMD |
3254 if ((command != NULL || newlnum > (linenr_T)0) | |
3255 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) | |
3256 { | |
3257 int len; | |
3258 char_u *p; | |
3259 | |
3260 /* Set v:swapcommand for the SwapExists autocommands. */ | |
3261 if (command != NULL) | |
835 | 3262 len = (int)STRLEN(command) + 3; |
716 | 3263 else |
3264 len = 30; | |
3265 p = alloc((unsigned)len); | |
3266 if (p != NULL) | |
3267 { | |
3268 if (command != NULL) | |
3269 vim_snprintf((char *)p, len, ":%s\r", command); | |
3270 else | |
3271 vim_snprintf((char *)p, len, "%ldG", (long)newlnum); | |
3272 set_vim_var_string(VV_SWAPCOMMAND, p, -1); | |
3273 did_set_swapcommand = TRUE; | |
3274 vim_free(p); | |
3275 } | |
3276 } | |
3277 #endif | |
3278 | |
7 | 3279 /* |
3280 * If we are starting to edit another file, open a (new) buffer. | |
3281 * Otherwise we re-use the current buffer. | |
3282 */ | |
3283 if (other_file) | |
3284 { | |
3285 #ifdef FEAT_LISTCMDS | |
3286 if (!(flags & ECMD_ADDBUF)) | |
3287 #endif | |
3288 { | |
22 | 3289 if (!cmdmod.keepalt) |
3290 curwin->w_alt_fnum = curbuf->b_fnum; | |
1743 | 3291 if (oldwin != NULL) |
3292 buflist_altfpos(oldwin); | |
7 | 3293 } |
3294 | |
3295 if (fnum) | |
3296 buf = buflist_findnr(fnum); | |
3297 else | |
3298 { | |
3299 #ifdef FEAT_LISTCMDS | |
3300 if (flags & ECMD_ADDBUF) | |
3301 { | |
3302 linenr_T tlnum = 1L; | |
3303 | |
3304 if (command != NULL) | |
3305 { | |
3306 tlnum = atol((char *)command); | |
3307 if (tlnum <= 0) | |
3308 tlnum = 1L; | |
3309 } | |
3310 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED); | |
3311 goto theend; | |
3312 } | |
3313 #endif | |
3314 buf = buflist_new(ffname, sfname, 0L, | |
3315 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED)); | |
3316 } | |
3317 if (buf == NULL) | |
3318 goto theend; | |
3319 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */ | |
3320 { | |
3321 oldbuf = FALSE; | |
3322 buf->b_nwindows = 0; | |
3323 } | |
3324 else /* existing memfile */ | |
3325 { | |
3326 oldbuf = TRUE; | |
3327 (void)buf_check_timestamp(buf, FALSE); | |
3328 /* Check if autocommands made buffer invalid or changed the current | |
3329 * buffer. */ | |
3330 if (!buf_valid(buf) | |
3331 #ifdef FEAT_AUTOCMD | |
3332 || curbuf != old_curbuf | |
3333 #endif | |
3334 ) | |
3335 goto theend; | |
3336 #ifdef FEAT_EVAL | |
3337 if (aborting()) /* autocmds may abort script processing */ | |
3338 goto theend; | |
3339 #endif | |
3340 } | |
3341 | |
3342 /* May jump to last used line number for a loaded buffer or when asked | |
3343 * for explicitly */ | |
3344 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) | |
3345 { | |
3346 pos = buflist_findfpos(buf); | |
3347 newlnum = pos->lnum; | |
3348 solcol = pos->col; | |
3349 } | |
3350 | |
3351 /* | |
3352 * Make the (new) buffer the one used by the current window. | |
3353 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. | |
3354 * If the current buffer was empty and has no file name, curbuf | |
3355 * is returned by buflist_new(). | |
3356 */ | |
3357 if (buf != curbuf) | |
3358 { | |
3359 #ifdef FEAT_AUTOCMD | |
3360 /* | |
3361 * Be careful: The autocommands may delete any buffer and change | |
3362 * the current buffer. | |
3363 * - If the buffer we are going to edit is deleted, give up. | |
3364 * - If the current buffer is deleted, prefer to load the new | |
3365 * buffer when loading a buffer is required. This avoids | |
3366 * loading another buffer which then must be closed again. | |
3367 * - If we ended up in the new buffer already, need to skip a few | |
3368 * things, set auto_buf. | |
3369 */ | |
3370 if (buf->b_fname != NULL) | |
3371 new_name = vim_strsave(buf->b_fname); | |
3372 au_new_curbuf = buf; | |
3373 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
3374 if (!buf_valid(buf)) /* new buffer has been deleted */ | |
3375 { | |
3376 delbuf_msg(new_name); /* frees new_name */ | |
3377 goto theend; | |
3378 } | |
3379 # ifdef FEAT_EVAL | |
3380 if (aborting()) /* autocmds may abort script processing */ | |
3381 { | |
3382 vim_free(new_name); | |
3383 goto theend; | |
3384 } | |
3385 # endif | |
3386 if (buf == curbuf) /* already in new buffer */ | |
3387 auto_buf = TRUE; | |
3388 else | |
3389 { | |
3390 if (curbuf == old_curbuf) | |
3391 #endif | |
3392 buf_copy_options(buf, BCO_ENTER); | |
3393 | |
3394 /* close the link to the current buffer */ | |
825 | 3395 u_sync(FALSE); |
1743 | 3396 close_buffer(oldwin, curbuf, |
3365 | 3397 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE); |
7 | 3398 |
3399 #ifdef FEAT_AUTOCMD | |
3242 | 3400 /* Autocommands may open a new window and leave oldwin open |
3401 * which leads to crashes since the above call sets | |
3402 * oldwin->w_buffer to NULL. */ | |
3403 if (curwin != oldwin && oldwin != aucmd_win | |
3404 && win_valid(oldwin) && oldwin->w_buffer == NULL) | |
3405 win_close(oldwin, FALSE); | |
3406 | |
7 | 3407 # ifdef FEAT_EVAL |
3408 if (aborting()) /* autocmds may abort script processing */ | |
3409 { | |
3410 vim_free(new_name); | |
3411 goto theend; | |
3412 } | |
3413 # endif | |
3414 /* Be careful again, like above. */ | |
3415 if (!buf_valid(buf)) /* new buffer has been deleted */ | |
3416 { | |
3417 delbuf_msg(new_name); /* frees new_name */ | |
3418 goto theend; | |
3419 } | |
3420 if (buf == curbuf) /* already in new buffer */ | |
3421 auto_buf = TRUE; | |
3422 else | |
3423 #endif | |
3424 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3425 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3426 /* |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3427 * <VN> We could instead free the synblock |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3428 * and re-attach to buffer, perhaps. |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3429 */ |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3430 if (curwin->w_s == &(curwin->w_buffer->b_s)) |
3480 | 3431 curwin->w_s = &(buf->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3432 #endif |
7 | 3433 curwin->w_buffer = buf; |
3434 curbuf = buf; | |
3435 ++curbuf->b_nwindows; | |
3436 /* set 'fileformat' */ | |
3437 if (*p_ffs && !oldbuf) | |
3438 set_fileformat(default_fileformat(), OPT_LOCAL); | |
3439 } | |
3440 | |
3441 /* May get the window options from the last time this buffer | |
3442 * was in this window (or another window). If not used | |
3443 * before, reset the local window options to the global | |
3444 * values. Also restores old folding stuff. */ | |
1289 | 3445 get_winopts(curbuf); |
1185 | 3446 #ifdef FEAT_SPELL |
3447 did_get_winopts = TRUE; | |
3448 #endif | |
7 | 3449 |
3450 #ifdef FEAT_AUTOCMD | |
3451 } | |
3452 vim_free(new_name); | |
3453 au_new_curbuf = NULL; | |
3454 #endif | |
3455 } | |
3456 else | |
3457 ++curbuf->b_nwindows; | |
3458 | |
3459 curwin->w_pcmark.lnum = 1; | |
3460 curwin->w_pcmark.col = 0; | |
3461 } | |
3462 else /* !other_file */ | |
3463 { | |
3464 if ( | |
3465 #ifdef FEAT_LISTCMDS | |
3466 (flags & ECMD_ADDBUF) || | |
3467 #endif | |
3468 check_fname() == FAIL) | |
3469 goto theend; | |
3470 oldbuf = (flags & ECMD_OLDBUF); | |
3471 } | |
3472 | |
3473 if ((flags & ECMD_SET_HELP) || keep_help_flag) | |
3474 { | |
3475 char_u *p; | |
3476 | |
3477 curbuf->b_help = TRUE; | |
3478 #ifdef FEAT_QUICKFIX | |
3479 set_string_option_direct((char_u *)"buftype", -1, | |
694 | 3480 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0); |
7 | 3481 #endif |
3482 | |
3483 /* | |
3484 * Always set these options after jumping to a help tag, because the | |
3485 * user may have an autocommand that gets in the way. | |
3486 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and | |
3487 * latin1 word characters (for translated help files). | |
3488 * Only set it when needed, buf_init_chartab() is some work. | |
3489 */ | |
3490 p = | |
3491 #ifdef EBCDIC | |
3492 (char_u *)"65-255,^*,^|,^\""; | |
3493 #else | |
3494 (char_u *)"!-~,^*,^|,^\",192-255"; | |
3495 #endif | |
3496 if (STRCMP(curbuf->b_p_isk, p) != 0) | |
3497 { | |
3498 set_string_option_direct((char_u *)"isk", -1, p, | |
694 | 3499 OPT_FREE|OPT_LOCAL, 0); |
7 | 3500 check_buf_options(curbuf); |
3501 (void)buf_init_chartab(curbuf, FALSE); | |
3502 } | |
3503 | |
3504 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */ | |
3505 curwin->w_p_list = FALSE; /* no list mode */ | |
3506 | |
3507 curbuf->b_p_ma = FALSE; /* not modifiable */ | |
3508 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */ | |
3509 curwin->w_p_nu = 0; /* no line numbers */ | |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2127
diff
changeset
|
3510 curwin->w_p_rnu = 0; /* no relative line numbers */ |
2583 | 3511 RESET_BINDING(curwin); /* no scroll or cursor binding */ |
7 | 3512 #ifdef FEAT_ARABIC |
3513 curwin->w_p_arab = FALSE; /* no arabic mode */ | |
3514 #endif | |
3515 #ifdef FEAT_RIGHTLEFT | |
3516 curwin->w_p_rl = FALSE; /* help window is left-to-right */ | |
3517 #endif | |
3518 #ifdef FEAT_FOLDING | |
3519 curwin->w_p_fen = FALSE; /* No folding in the help window */ | |
3520 #endif | |
3521 #ifdef FEAT_DIFF | |
3522 curwin->w_p_diff = FALSE; /* No 'diff' */ | |
3523 #endif | |
748 | 3524 #ifdef FEAT_SPELL |
371 | 3525 curwin->w_p_spell = FALSE; /* No spell checking */ |
3526 #endif | |
7 | 3527 |
3528 #ifdef FEAT_AUTOCMD | |
3529 buf = curbuf; | |
3530 #endif | |
3531 set_buflisted(FALSE); | |
3532 } | |
3533 else | |
3534 { | |
3535 #ifdef FEAT_AUTOCMD | |
3536 buf = curbuf; | |
3537 #endif | |
3538 /* Don't make a buffer listed if it's a help buffer. Useful when | |
3539 * using CTRL-O to go back to a help file. */ | |
3540 if (!curbuf->b_help) | |
3541 set_buflisted(TRUE); | |
3542 } | |
3543 | |
3544 #ifdef FEAT_AUTOCMD | |
3545 /* If autocommands change buffers under our fingers, forget about | |
3546 * editing the file. */ | |
3547 if (buf != curbuf) | |
3548 goto theend; | |
3549 # ifdef FEAT_EVAL | |
3550 if (aborting()) /* autocmds may abort script processing */ | |
3551 goto theend; | |
3552 # endif | |
3553 | |
3554 /* Since we are starting to edit a file, consider the filetype to be | |
3555 * unset. Helps for when an autocommand changes files and expects syntax | |
3556 * highlighting to work in the other file. */ | |
3557 did_filetype = FALSE; | |
3558 #endif | |
3559 | |
3560 /* | |
3561 * other_file oldbuf | |
3562 * FALSE FALSE re-edit same file, buffer is re-used | |
3563 * FALSE TRUE re-edit same file, nothing changes | |
3564 * TRUE FALSE start editing new file, new buffer | |
3565 * TRUE TRUE start editing in existing buffer (nothing to do) | |
3566 */ | |
3567 if (!other_file && !oldbuf) /* re-use the buffer */ | |
3568 { | |
3569 set_last_cursor(curwin); /* may set b_last_cursor */ | |
3570 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) | |
3571 { | |
3572 newlnum = curwin->w_cursor.lnum; | |
3573 solcol = curwin->w_cursor.col; | |
3574 } | |
3575 #ifdef FEAT_AUTOCMD | |
3576 buf = curbuf; | |
3577 if (buf->b_fname != NULL) | |
3578 new_name = vim_strsave(buf->b_fname); | |
3579 else | |
3580 new_name = NULL; | |
3581 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3582 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
|
3583 { |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3584 /* 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
|
3585 * 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
|
3586 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
|
3587 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
|
3588 == FAIL) |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3589 goto theend; |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3590 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
|
3591 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
|
3592 |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3593 /* 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
|
3594 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
|
3595 } |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3596 else |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3597 buf_freeall(curbuf, 0); /* free all things for buffer */ |
7 | 3598 #ifdef FEAT_AUTOCMD |
3599 /* If autocommands deleted the buffer we were going to re-edit, give | |
3600 * up and jump to the end. */ | |
3601 if (!buf_valid(buf)) | |
3602 { | |
3603 delbuf_msg(new_name); /* frees new_name */ | |
3604 goto theend; | |
3605 } | |
3606 vim_free(new_name); | |
3607 | |
3608 /* If autocommands change buffers under our fingers, forget about | |
3609 * re-editing the file. Should do the buf_clear_file(), but perhaps | |
3610 * the autocommands changed the buffer... */ | |
3611 if (buf != curbuf) | |
3612 goto theend; | |
3613 # ifdef FEAT_EVAL | |
3614 if (aborting()) /* autocmds may abort script processing */ | |
3615 goto theend; | |
3616 # endif | |
3617 #endif | |
3618 buf_clear_file(curbuf); | |
3619 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */ | |
3620 curbuf->b_op_end.lnum = 0; | |
3621 } | |
3622 | |
3623 /* | |
3624 * If we get here we are sure to start editing | |
3625 */ | |
3626 /* don't redraw until the cursor is in the right line */ | |
3627 ++RedrawingDisabled; | |
3628 | |
3629 /* Assume success now */ | |
3630 retval = OK; | |
3631 | |
3632 /* | |
3633 * Reset cursor position, could be used by autocommands. | |
3634 */ | |
3635 check_cursor(); | |
3636 | |
3637 /* | |
3638 * Check if we are editing the w_arg_idx file in the argument list. | |
3639 */ | |
3640 check_arg_idx(curwin); | |
3641 | |
3642 #ifdef FEAT_AUTOCMD | |
3643 if (!auto_buf) | |
3644 #endif | |
3645 { | |
3646 /* | |
3647 * Set cursor and init window before reading the file and executing | |
3648 * autocommands. This allows for the autocommands to position the | |
3649 * cursor. | |
3650 */ | |
677 | 3651 curwin_init(); |
7 | 3652 |
3653 #ifdef FEAT_FOLDING | |
1370 | 3654 /* It's possible that all lines in the buffer changed. Need to update |
3655 * automatic folding for all windows where it's used. */ | |
3656 # ifdef FEAT_WINDOWS | |
3657 { | |
3658 win_T *win; | |
3659 tabpage_T *tp; | |
3660 | |
3661 FOR_ALL_TAB_WINDOWS(tp, win) | |
3662 if (win->w_buffer == curbuf) | |
3663 foldUpdateAll(win); | |
3664 } | |
3665 # else | |
7 | 3666 foldUpdateAll(curwin); |
1370 | 3667 # endif |
7 | 3668 #endif |
3669 | |
961 | 3670 /* Change directories when the 'acd' option is set. */ |
3671 DO_AUTOCHDIR | |
3672 | |
7 | 3673 /* |
3674 * Careful: open_buffer() and apply_autocmds() may change the current | |
3675 * buffer and window. | |
3676 */ | |
3677 lnum = curwin->w_cursor.lnum; | |
3678 topline = curwin->w_topline; | |
3679 if (!oldbuf) /* need to read the file */ | |
3680 { | |
580 | 3681 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 3682 swap_exists_action = SEA_DIALOG; |
3683 #endif | |
3684 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */ | |
3685 | |
3686 /* | |
3687 * Open the buffer and read the file. | |
3688 */ | |
3689 #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
|
3690 if (should_abort(open_buffer(FALSE, eap, readfile_flags))) |
7 | 3691 retval = FAIL; |
3692 #else | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3693 (void)open_buffer(FALSE, eap, readfile_flags); |
7 | 3694 #endif |
3695 | |
580 | 3696 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 3697 if (swap_exists_action == SEA_QUIT) |
3698 retval = FAIL; | |
3699 handle_swap_exists(old_curbuf); | |
3700 #endif | |
3701 } | |
3702 #ifdef FEAT_AUTOCMD | |
3703 else | |
3704 { | |
23 | 3705 /* Read the modelines, but only to set window-local options. Any |
3706 * buffer-local options have already been set and may have been | |
3707 * changed by the user. */ | |
717 | 3708 do_modelines(OPT_WINONLY); |
23 | 3709 |
7 | 3710 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, |
3711 &retval); | |
3712 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, | |
3713 &retval); | |
3714 } | |
3715 check_arg_idx(curwin); | |
3716 #endif | |
3717 | |
3718 /* | |
3719 * If autocommands change the cursor position or topline, we should | |
3720 * keep it. | |
3721 */ | |
3722 if (curwin->w_cursor.lnum != lnum) | |
3723 { | |
3724 newlnum = curwin->w_cursor.lnum; | |
3725 newcol = curwin->w_cursor.col; | |
3726 } | |
3727 if (curwin->w_topline == topline) | |
3728 topline = 0; | |
3729 | |
3730 /* Even when cursor didn't move we need to recompute topline. */ | |
3731 changed_line_abv_curs(); | |
3732 | |
3733 #ifdef FEAT_TITLE | |
3734 maketitle(); | |
3735 #endif | |
3736 } | |
3737 | |
3738 #ifdef FEAT_DIFF | |
3739 /* Tell the diff stuff that this buffer is new and/or needs updating. | |
3740 * Also needed when re-editing the same buffer, because unloading will | |
3741 * have removed it as a diff buffer. */ | |
673 | 3742 if (curwin->w_p_diff) |
3743 { | |
3744 diff_buf_add(curbuf); | |
3745 diff_invalidate(curbuf); | |
3746 } | |
7 | 3747 #endif |
3748 | |
1185 | 3749 #ifdef FEAT_SPELL |
3750 /* If the window options were changed may need to set the spell language. | |
3751 * 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
|
3752 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
|
3753 (void)did_set_spelllang(curwin); |
1185 | 3754 #endif |
3755 | |
7 | 3756 if (command == NULL) |
3757 { | |
3758 if (newcol >= 0) /* position set by autocommands */ | |
3759 { | |
3760 curwin->w_cursor.lnum = newlnum; | |
3761 curwin->w_cursor.col = newcol; | |
3762 check_cursor(); | |
3763 } | |
3764 else if (newlnum > 0) /* line number from caller or old position */ | |
3765 { | |
3766 curwin->w_cursor.lnum = newlnum; | |
3767 check_cursor_lnum(); | |
3768 if (solcol >= 0 && !p_sol) | |
3769 { | |
3770 /* 'sol' is off: Use last known column. */ | |
3771 curwin->w_cursor.col = solcol; | |
3772 check_cursor_col(); | |
3773 #ifdef FEAT_VIRTUALEDIT | |
3774 curwin->w_cursor.coladd = 0; | |
3775 #endif | |
3776 curwin->w_set_curswant = TRUE; | |
3777 } | |
3778 else | |
3779 beginline(BL_SOL | BL_FIX); | |
3780 } | |
3781 else /* no line number, go to last line in Ex mode */ | |
3782 { | |
3783 if (exmode_active) | |
3784 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
3785 beginline(BL_WHITE | BL_FIX); | |
3786 } | |
3787 } | |
3788 | |
3789 #ifdef FEAT_WINDOWS | |
3790 /* Check if cursors in other windows on the same buffer are still valid */ | |
3791 check_lnums(FALSE); | |
3792 #endif | |
3793 | |
3794 /* | |
3795 * Did not read the file, need to show some info about the file. | |
3796 * Do this after setting the cursor. | |
3797 */ | |
3798 if (oldbuf | |
3799 #ifdef FEAT_AUTOCMD | |
3800 && !auto_buf | |
3801 #endif | |
3802 ) | |
3803 { | |
3804 int msg_scroll_save = msg_scroll; | |
3805 | |
3806 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file | |
3807 * message. */ | |
3808 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) | |
3809 msg_scroll = FALSE; | |
3810 if (!msg_scroll) /* wait a bit when overwriting an error msg */ | |
3811 check_for_delay(FALSE); | |
3812 msg_start(); | |
3813 msg_scroll = msg_scroll_save; | |
3814 msg_scrolled_ign = TRUE; | |
3815 | |
3816 fileinfo(FALSE, TRUE, FALSE); | |
3817 | |
3818 msg_scrolled_ign = FALSE; | |
3819 } | |
3820 | |
3821 if (command != NULL) | |
3822 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); | |
3823 | |
3824 #ifdef FEAT_KEYMAP | |
3825 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 3826 (void)keymap_init(); |
7 | 3827 #endif |
3828 | |
3829 --RedrawingDisabled; | |
3830 if (!skip_redraw) | |
3831 { | |
3832 n = p_so; | |
3833 if (topline == 0 && command == NULL) | |
3834 p_so = 999; /* force cursor halfway the window */ | |
3835 update_topline(); | |
3836 #ifdef FEAT_SCROLLBIND | |
3837 curwin->w_scbind_pos = curwin->w_topline; | |
3838 #endif | |
3839 p_so = n; | |
3840 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */ | |
3841 } | |
3842 | |
3843 if (p_im) | |
3844 need_start_insertmode = TRUE; | |
3845 | |
961 | 3846 /* Change directories when the 'acd' option is set. */ |
3847 DO_AUTOCHDIR | |
821 | 3848 |
3849 #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
|
3850 if (curbuf->b_ffname != NULL) |
7 | 3851 { |
3852 # ifdef FEAT_SUN_WORKSHOP | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
3853 if (gui.in_use && usingSunWorkShop) |
7 | 3854 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro); |
3855 # endif | |
3856 # ifdef FEAT_NETBEANS_INTG | |
2210 | 3857 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP) |
34 | 3858 netbeans_file_opened(curbuf); |
7 | 3859 # endif |
3860 } | |
3861 #endif | |
3862 | |
3863 theend: | |
716 | 3864 #ifdef FEAT_AUTOCMD |
3865 if (did_set_swapcommand) | |
3866 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); | |
3867 #endif | |
7 | 3868 #ifdef FEAT_BROWSE |
3869 vim_free(browse_file); | |
3870 #endif | |
3871 vim_free(free_fname); | |
3872 return retval; | |
3873 } | |
3874 | |
3875 #ifdef FEAT_AUTOCMD | |
3876 static void | |
3877 delbuf_msg(name) | |
3878 char_u *name; | |
3879 { | |
3880 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"), | |
3881 name == NULL ? (char_u *)"" : name); | |
3882 vim_free(name); | |
3883 au_new_curbuf = NULL; | |
3884 } | |
3885 #endif | |
3886 | |
169 | 3887 static int append_indent = 0; /* autoindent for first line */ |
3888 | |
7 | 3889 /* |
3890 * ":insert" and ":append", also used by ":change" | |
3891 */ | |
3892 void | |
3893 ex_append(eap) | |
3894 exarg_T *eap; | |
3895 { | |
3896 char_u *theline; | |
3897 int did_undo = FALSE; | |
3898 linenr_T lnum = eap->line2; | |
165 | 3899 int indent = 0; |
3900 char_u *p; | |
3901 int vcol; | |
3902 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); | |
7 | 3903 |
169 | 3904 /* the ! flag toggles autoindent */ |
3905 if (eap->forceit) | |
3906 curbuf->b_p_ai = !curbuf->b_p_ai; | |
3907 | |
3908 /* First autoindent comes from the line we start on */ | |
3909 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) | |
3910 append_indent = get_indent_lnum(lnum); | |
3911 | |
7 | 3912 if (eap->cmdidx != CMD_append) |
3913 --lnum; | |
3914 | |
165 | 3915 /* when the buffer is empty append to line 0 and delete the dummy line */ |
3916 if (empty && lnum == 1) | |
3917 lnum = 0; | |
3918 | |
7 | 3919 State = INSERT; /* behave like in Insert mode */ |
3920 if (curbuf->b_p_iminsert == B_IMODE_LMAP) | |
3921 State |= LANGMAP; | |
165 | 3922 |
408 | 3923 for (;;) |
7 | 3924 { |
3925 msg_scroll = TRUE; | |
3926 need_wait_return = FALSE; | |
169 | 3927 if (curbuf->b_p_ai) |
3928 { | |
3929 if (append_indent >= 0) | |
3930 { | |
3931 indent = append_indent; | |
3932 append_indent = -1; | |
3933 } | |
3934 else if (lnum > 0) | |
3935 indent = get_indent_lnum(lnum); | |
3936 } | |
3937 ex_keep_indent = FALSE; | |
7 | 3938 if (eap->getline == NULL) |
169 | 3939 { |
3940 /* No getline() function, use the lines that follow. This ends | |
3941 * when there is no more. */ | |
3942 if (eap->nextcmd == NULL || *eap->nextcmd == NUL) | |
3943 break; | |
3944 p = vim_strchr(eap->nextcmd, NL); | |
3945 if (p == NULL) | |
3946 p = eap->nextcmd + STRLEN(eap->nextcmd); | |
3947 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd)); | |
3948 if (*p != NUL) | |
3949 ++p; | |
3950 eap->nextcmd = p; | |
3951 } | |
7 | 3952 else |
3953 theline = eap->getline( | |
3954 #ifdef FEAT_EVAL | |
76 | 3955 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 3956 #endif |
165 | 3957 NUL, eap->cookie, indent); |
7 | 3958 lines_left = Rows - 1; |
165 | 3959 if (theline == NULL) |
3960 break; | |
3961 | |
169 | 3962 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */ |
3963 if (ex_keep_indent) | |
3964 append_indent = indent; | |
3965 | |
165 | 3966 /* Look for the "." after automatic indent. */ |
3967 vcol = 0; | |
3968 for (p = theline; indent > vcol; ++p) | |
3969 { | |
3970 if (*p == ' ') | |
3971 ++vcol; | |
3972 else if (*p == TAB) | |
3973 vcol += 8 - vcol % 8; | |
3974 else | |
3975 break; | |
3976 } | |
3977 if ((p[0] == '.' && p[1] == NUL) | |
321 | 3978 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
3979 == FAIL)) | |
7 | 3980 { |
3981 vim_free(theline); | |
3982 break; | |
3983 } | |
3984 | |
169 | 3985 /* don't use autoindent if nothing was typed. */ |
3986 if (p[0] == NUL) | |
3987 theline[0] = NUL; | |
3988 | |
7 | 3989 did_undo = TRUE; |
3990 ml_append(lnum, theline, (colnr_T)0, FALSE); | |
3991 appended_lines_mark(lnum, 1L); | |
3992 | |
3993 vim_free(theline); | |
3994 ++lnum; | |
165 | 3995 |
3996 if (empty) | |
3997 { | |
3998 ml_delete(2L, FALSE); | |
3999 empty = FALSE; | |
4000 } | |
7 | 4001 } |
4002 State = NORMAL; | |
4003 | |
169 | 4004 if (eap->forceit) |
4005 curbuf->b_p_ai = !curbuf->b_p_ai; | |
4006 | |
7 | 4007 /* "start" is set to eap->line2+1 unless that position is invalid (when |
1227 | 4008 * eap->line2 pointed to the end of the buffer and nothing was appended) |
7 | 4009 * "end" is set to lnum when something has been appended, otherwise |
4010 * it is the same than "start" -- Acevedo */ | |
4011 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ? | |
4012 eap->line2 + 1 : curbuf->b_ml.ml_line_count; | |
4013 if (eap->cmdidx != CMD_append) | |
4014 --curbuf->b_op_start.lnum; | |
4015 curbuf->b_op_end.lnum = (eap->line2 < lnum) | |
4016 ? lnum : curbuf->b_op_start.lnum; | |
4017 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
4018 curwin->w_cursor.lnum = lnum; | |
4019 check_cursor_lnum(); | |
4020 beginline(BL_SOL | BL_FIX); | |
4021 | |
4022 need_wait_return = FALSE; /* don't use wait_return() now */ | |
4023 ex_no_reprint = TRUE; | |
4024 } | |
4025 | |
4026 /* | |
4027 * ":change" | |
4028 */ | |
4029 void | |
4030 ex_change(eap) | |
4031 exarg_T *eap; | |
4032 { | |
4033 linenr_T lnum; | |
4034 | |
4035 if (eap->line2 >= eap->line1 | |
4036 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) | |
4037 return; | |
4038 | |
169 | 4039 /* the ! flag toggles autoindent */ |
4040 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) | |
4041 append_indent = get_indent_lnum(eap->line1); | |
4042 | |
7 | 4043 for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
4044 { | |
4045 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ | |
4046 break; | |
4047 ml_delete(eap->line1, FALSE); | |
4048 } | |
1929 | 4049 |
4050 /* make sure the cursor is not beyond the end of the file now */ | |
4051 check_cursor_lnum(); | |
7 | 4052 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
4053 | |
4054 /* ":append" on the line above the deleted lines. */ | |
4055 eap->line2 = eap->line1; | |
4056 ex_append(eap); | |
4057 } | |
4058 | |
4059 void | |
4060 ex_z(eap) | |
4061 exarg_T *eap; | |
4062 { | |
4063 char_u *x; | |
165 | 4064 int bigness; |
4065 char_u *kind; | |
7 | 4066 int minus = 0; |
4067 linenr_T start, end, curs, i; | |
4068 int j; | |
4069 linenr_T lnum = eap->line2; | |
4070 | |
165 | 4071 /* Vi compatible: ":z!" uses display height, without a count uses |
4072 * 'scroll' */ | |
4073 if (eap->forceit) | |
4074 bigness = curwin->w_height; | |
4075 else if (firstwin == lastwin) | |
4076 bigness = curwin->w_p_scr * 2; | |
1877 | 4077 #ifdef FEAT_WINDOWS |
165 | 4078 else |
4079 bigness = curwin->w_height - 3; | |
1877 | 4080 #endif |
7 | 4081 if (bigness < 1) |
4082 bigness = 1; | |
4083 | |
4084 x = eap->arg; | |
165 | 4085 kind = x; |
4086 if (*kind == '-' || *kind == '+' || *kind == '=' | |
4087 || *kind == '^' || *kind == '.') | |
4088 ++x; | |
4089 while (*x == '-' || *x == '+') | |
7 | 4090 ++x; |
4091 | |
4092 if (*x != 0) | |
4093 { | |
4094 if (!VIM_ISDIGIT(*x)) | |
4095 { | |
4096 EMSG(_("E144: non-numeric argument to :z")); | |
4097 return; | |
4098 } | |
4099 else | |
165 | 4100 { |
7 | 4101 bigness = atoi((char *)x); |
165 | 4102 p_window = bigness; |
169 | 4103 if (*kind == '=') |
4104 bigness += 2; | |
165 | 4105 } |
7 | 4106 } |
4107 | |
165 | 4108 /* the number of '-' and '+' multiplies the distance */ |
4109 if (*kind == '-' || *kind == '+') | |
4110 for (x = kind + 1; *x == *kind; ++x) | |
4111 ; | |
4112 | |
4113 switch (*kind) | |
7 | 4114 { |
4115 case '-': | |
2881 | 4116 start = lnum - bigness * (linenr_T)(x - kind) + 1; |
4117 end = start + bigness - 1; | |
165 | 4118 curs = end; |
7 | 4119 break; |
4120 | |
4121 case '=': | |
159 | 4122 start = lnum - (bigness + 1) / 2 + 1; |
4123 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4124 curs = lnum; |
4125 minus = 1; | |
4126 break; | |
4127 | |
4128 case '^': | |
4129 start = lnum - bigness * 2; | |
4130 end = lnum - bigness; | |
4131 curs = lnum - bigness; | |
4132 break; | |
4133 | |
4134 case '.': | |
159 | 4135 start = lnum - (bigness + 1) / 2 + 1; |
4136 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4137 curs = end; |
4138 break; | |
4139 | |
4140 default: /* '+' */ | |
4141 start = lnum; | |
165 | 4142 if (*kind == '+') |
835 | 4143 start += bigness * (linenr_T)(x - kind - 1) + 1; |
169 | 4144 else if (eap->addr_count == 0) |
4145 ++start; | |
4146 end = start + bigness - 1; | |
7 | 4147 curs = end; |
4148 break; | |
4149 } | |
4150 | |
4151 if (start < 1) | |
4152 start = 1; | |
4153 | |
4154 if (end > curbuf->b_ml.ml_line_count) | |
4155 end = curbuf->b_ml.ml_line_count; | |
4156 | |
4157 if (curs > curbuf->b_ml.ml_line_count) | |
4158 curs = curbuf->b_ml.ml_line_count; | |
4159 | |
4160 for (i = start; i <= end; i++) | |
4161 { | |
4162 if (minus && i == lnum) | |
4163 { | |
4164 msg_putchar('\n'); | |
4165 | |
4166 for (j = 1; j < Columns; j++) | |
4167 msg_putchar('-'); | |
4168 } | |
4169 | |
169 | 4170 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
7 | 4171 |
4172 if (minus && i == lnum) | |
4173 { | |
4174 msg_putchar('\n'); | |
4175 | |
4176 for (j = 1; j < Columns; j++) | |
4177 msg_putchar('-'); | |
4178 } | |
4179 } | |
4180 | |
4181 curwin->w_cursor.lnum = curs; | |
4182 ex_no_reprint = TRUE; | |
4183 } | |
4184 | |
4185 /* | |
4186 * Check if the restricted flag is set. | |
4187 * If so, give an error message and return TRUE. | |
4188 * Otherwise, return FALSE. | |
4189 */ | |
4190 int | |
4191 check_restricted() | |
4192 { | |
4193 if (restricted) | |
4194 { | |
4195 EMSG(_("E145: Shell commands not allowed in rvim")); | |
4196 return TRUE; | |
4197 } | |
4198 return FALSE; | |
4199 } | |
4200 | |
4201 /* | |
4202 * Check if the secure flag is set (.exrc or .vimrc in current directory). | |
4203 * If so, give an error message and return TRUE. | |
4204 * Otherwise, return FALSE. | |
4205 */ | |
4206 int | |
4207 check_secure() | |
4208 { | |
4209 if (secure) | |
4210 { | |
4211 secure = 2; | |
4212 EMSG(_(e_curdir)); | |
4213 return TRUE; | |
4214 } | |
4215 #ifdef HAVE_SANDBOX | |
4216 /* | |
4217 * In the sandbox more things are not allowed, including the things | |
4218 * disallowed in secure mode. | |
4219 */ | |
4220 if (sandbox != 0) | |
4221 { | |
4222 EMSG(_(e_sandbox)); | |
4223 return TRUE; | |
4224 } | |
4225 #endif | |
4226 return FALSE; | |
4227 } | |
4228 | |
4229 static char_u *old_sub = NULL; /* previous substitute pattern */ | |
4230 static int global_need_beginline; /* call beginline() after ":g" */ | |
4231 | |
4232 /* do_sub() | |
4233 * | |
4234 * Perform a substitution from line eap->line1 to line eap->line2 using the | |
4235 * command pointed to by eap->arg which should be of the form: | |
4236 * | |
4237 * /pattern/substitution/{flags} | |
4238 * | |
4239 * The usual escapes are supported as described in the regexp docs. | |
4240 */ | |
4241 void | |
4242 do_sub(eap) | |
4243 exarg_T *eap; | |
4244 { | |
4245 linenr_T lnum; | |
4246 long i = 0; | |
4247 regmmatch_T regmatch; | |
4248 static int do_all = FALSE; /* do multiple substitutions per line */ | |
4249 static int do_ask = FALSE; /* ask for confirmation */ | |
170 | 4250 static int do_count = FALSE; /* count only */ |
7 | 4251 static int do_error = TRUE; /* if false, ignore errors */ |
4252 static int do_print = FALSE; /* print last line with subs. */ | |
169 | 4253 static int do_list = FALSE; /* list last line with subs. */ |
4254 static int do_number = FALSE; /* list last line with line nr*/ | |
7 | 4255 static int do_ic = 0; /* ignore case flag */ |
4256 char_u *pat = NULL, *sub = NULL; /* init for GCC */ | |
4257 int delimiter; | |
4258 int sublen; | |
4259 int got_quit = FALSE; | |
4260 int got_match = FALSE; | |
4261 int temp; | |
4262 int which_pat; | |
4263 char_u *cmd; | |
4264 int save_State; | |
165 | 4265 linenr_T first_line = 0; /* first changed line */ |
4266 linenr_T last_line= 0; /* below last changed line AFTER the | |
7 | 4267 * change */ |
4268 linenr_T old_line_count = curbuf->b_ml.ml_line_count; | |
4269 linenr_T line2; | |
165 | 4270 long nmatch; /* number of lines in match */ |
4271 char_u *sub_firstline; /* allocated copy of first sub line */ | |
4272 int endcolumn = FALSE; /* cursor in last column when done */ | |
170 | 4273 pos_T old_cursor = curwin->w_cursor; |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4274 int start_nsubs; |
3736 | 4275 #ifdef FEAT_EVAL |
4276 int save_ma = 0; | |
4277 #endif | |
7 | 4278 |
4279 cmd = eap->arg; | |
4280 if (!global_busy) | |
4281 { | |
4282 sub_nsubs = 0; | |
4283 sub_nlines = 0; | |
4284 } | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4285 start_nsubs = sub_nsubs; |
7 | 4286 |
4287 if (eap->cmdidx == CMD_tilde) | |
4288 which_pat = RE_LAST; /* use last used regexp */ | |
4289 else | |
4290 which_pat = RE_SUBST; /* use last substitute regexp */ | |
4291 | |
4292 /* new pattern and substitution */ | |
4293 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd) | |
4294 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) | |
4295 { | |
4296 /* don't accept alphanumeric for separator */ | |
4297 if (isalpha(*cmd)) | |
4298 { | |
4299 EMSG(_("E146: Regular expressions can't be delimited by letters")); | |
4300 return; | |
4301 } | |
4302 /* | |
4303 * undocumented vi feature: | |
4304 * "\/sub/" and "\?sub?" use last used search pattern (almost like | |
4305 * //sub/r). "\&sub&" use last substitute pattern (like //sub/). | |
4306 */ | |
4307 if (*cmd == '\\') | |
4308 { | |
4309 ++cmd; | |
4310 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
4311 { | |
4312 EMSG(_(e_backslash)); | |
4313 return; | |
4314 } | |
4315 if (*cmd != '&') | |
4316 which_pat = RE_SEARCH; /* use last '/' pattern */ | |
4317 pat = (char_u *)""; /* empty search pattern */ | |
4318 delimiter = *cmd++; /* remember delimiter character */ | |
4319 } | |
4320 else /* find the end of the regexp */ | |
4321 { | |
1466 | 4322 #ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */ |
4323 if (p_altkeymap && curwin->w_p_rl) | |
4324 lrF_sub(cmd); | |
4325 #endif | |
7 | 4326 which_pat = RE_LAST; /* use last used regexp */ |
4327 delimiter = *cmd++; /* remember delimiter character */ | |
4328 pat = cmd; /* remember start of search pat */ | |
4329 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg); | |
4330 if (cmd[0] == delimiter) /* end delimiter found */ | |
4331 *cmd++ = NUL; /* replace it with a NUL */ | |
4332 } | |
4333 | |
4334 /* | |
4335 * Small incompatibility: vi sees '\n' as end of the command, but in | |
4336 * Vim we want to use '\n' to find/substitute a NUL. | |
4337 */ | |
4338 sub = cmd; /* remember the start of the substitution */ | |
4339 | |
4340 while (cmd[0]) | |
4341 { | |
4342 if (cmd[0] == delimiter) /* end delimiter found */ | |
4343 { | |
4344 *cmd++ = NUL; /* replace it with a NUL */ | |
4345 break; | |
4346 } | |
4347 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */ | |
4348 ++cmd; | |
39 | 4349 mb_ptr_adv(cmd); |
7 | 4350 } |
4351 | |
4352 if (!eap->skip) | |
4353 { | |
169 | 4354 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */ |
4355 if (STRCMP(sub, "%") == 0 | |
4356 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) | |
4357 { | |
4358 if (old_sub == NULL) /* there is no previous command */ | |
4359 { | |
4360 EMSG(_(e_nopresub)); | |
4361 return; | |
4362 } | |
4363 sub = old_sub; | |
4364 } | |
4365 else | |
4366 { | |
4367 vim_free(old_sub); | |
4368 old_sub = vim_strsave(sub); | |
4369 } | |
7 | 4370 } |
4371 } | |
4372 else if (!eap->skip) /* use previous pattern and substitution */ | |
4373 { | |
4374 if (old_sub == NULL) /* there is no previous command */ | |
4375 { | |
4376 EMSG(_(e_nopresub)); | |
4377 return; | |
4378 } | |
4379 pat = NULL; /* search_regcomp() will use previous pattern */ | |
4380 sub = old_sub; | |
163 | 4381 |
4382 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the | |
4383 * last column after using "$". */ | |
4384 endcolumn = (curwin->w_curswant == MAXCOL); | |
7 | 4385 } |
4386 | |
4387 /* | |
4388 * Find trailing options. When '&' is used, keep old options. | |
4389 */ | |
4390 if (*cmd == '&') | |
4391 ++cmd; | |
4392 else | |
4393 { | |
4394 if (!p_ed) | |
4395 { | |
4396 if (p_gd) /* default is global on */ | |
4397 do_all = TRUE; | |
4398 else | |
4399 do_all = FALSE; | |
4400 do_ask = FALSE; | |
4401 } | |
4402 do_error = TRUE; | |
4403 do_print = FALSE; | |
587 | 4404 do_count = FALSE; |
1321 | 4405 do_number = FALSE; |
7 | 4406 do_ic = 0; |
4407 } | |
4408 while (*cmd) | |
4409 { | |
4410 /* | |
4411 * Note that 'g' and 'c' are always inverted, also when p_ed is off. | |
4412 * 'r' is never inverted. | |
4413 */ | |
4414 if (*cmd == 'g') | |
4415 do_all = !do_all; | |
4416 else if (*cmd == 'c') | |
4417 do_ask = !do_ask; | |
170 | 4418 else if (*cmd == 'n') |
4419 do_count = TRUE; | |
7 | 4420 else if (*cmd == 'e') |
4421 do_error = !do_error; | |
4422 else if (*cmd == 'r') /* use last used regexp */ | |
4423 which_pat = RE_LAST; | |
4424 else if (*cmd == 'p') | |
4425 do_print = TRUE; | |
169 | 4426 else if (*cmd == '#') |
4427 { | |
4428 do_print = TRUE; | |
4429 do_number = TRUE; | |
4430 } | |
4431 else if (*cmd == 'l') | |
4432 { | |
4433 do_print = TRUE; | |
4434 do_list = TRUE; | |
4435 } | |
7 | 4436 else if (*cmd == 'i') /* ignore case */ |
4437 do_ic = 'i'; | |
4438 else if (*cmd == 'I') /* don't ignore case */ | |
4439 do_ic = 'I'; | |
4440 else | |
4441 break; | |
4442 ++cmd; | |
4443 } | |
170 | 4444 if (do_count) |
4445 do_ask = FALSE; | |
7 | 4446 |
4447 /* | |
4448 * check for a trailing count | |
4449 */ | |
4450 cmd = skipwhite(cmd); | |
4451 if (VIM_ISDIGIT(*cmd)) | |
4452 { | |
4453 i = getdigits(&cmd); | |
4454 if (i <= 0 && !eap->skip && do_error) | |
4455 { | |
4456 EMSG(_(e_zerocount)); | |
4457 return; | |
4458 } | |
4459 eap->line1 = eap->line2; | |
4460 eap->line2 += i - 1; | |
4461 if (eap->line2 > curbuf->b_ml.ml_line_count) | |
4462 eap->line2 = curbuf->b_ml.ml_line_count; | |
4463 } | |
4464 | |
4465 /* | |
4466 * check for trailing command or garbage | |
4467 */ | |
4468 cmd = skipwhite(cmd); | |
4469 if (*cmd && *cmd != '"') /* if not end-of-line or comment */ | |
4470 { | |
4471 eap->nextcmd = check_nextcmd(cmd); | |
4472 if (eap->nextcmd == NULL) | |
4473 { | |
4474 EMSG(_(e_trailing)); | |
4475 return; | |
4476 } | |
4477 } | |
4478 | |
4479 if (eap->skip) /* not executing commands, only parsing */ | |
4480 return; | |
4481 | |
823 | 4482 if (!do_count && !curbuf->b_p_ma) |
4483 { | |
825 | 4484 /* Substitution is not allowed in non-'modifiable' buffer */ |
823 | 4485 EMSG(_(e_modifiable)); |
4486 return; | |
4487 } | |
4488 | |
7 | 4489 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
4490 { | |
4491 if (do_error) | |
4492 EMSG(_(e_invcmd)); | |
4493 return; | |
4494 } | |
4495 | |
4496 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */ | |
4497 if (do_ic == 'i') | |
4498 regmatch.rmm_ic = TRUE; | |
4499 else if (do_ic == 'I') | |
4500 regmatch.rmm_ic = FALSE; | |
4501 | |
4502 sub_firstline = NULL; | |
4503 | |
4504 /* | |
4505 * ~ in the substitute pattern is replaced with the old pattern. | |
4506 * We do it here once to avoid it to be replaced over and over again. | |
4507 * But don't do it when it starts with "\=", then it's an expression. | |
4508 */ | |
4509 if (!(sub[0] == '\\' && sub[1] == '=')) | |
4510 sub = regtilde(sub, p_magic); | |
4511 | |
4512 /* | |
4513 * Check for a match on each line. | |
4514 */ | |
4515 line2 = eap->line2; | |
4516 for (lnum = eap->line1; lnum <= line2 && !(got_quit | |
4517 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) | |
4518 || aborting() | |
4519 #endif | |
4520 ); ++lnum) | |
4521 { | |
1521 | 4522 nmatch = vim_regexec_multi(®match, curwin, curbuf, lnum, |
4523 (colnr_T)0, NULL); | |
7 | 4524 if (nmatch) |
4525 { | |
4526 colnr_T copycol; | |
4527 colnr_T matchcol; | |
4528 colnr_T prev_matchcol = MAXCOL; | |
4529 char_u *new_end, *new_start = NULL; | |
4530 unsigned new_start_len = 0; | |
4531 char_u *p1; | |
4532 int did_sub = FALSE; | |
4533 int lastone; | |
1872 | 4534 int len, copy_len, needed_len; |
7 | 4535 long nmatch_tl = 0; /* nr of lines matched below lnum */ |
4536 int do_again; /* do it again after joining lines */ | |
15 | 4537 int skip_match = FALSE; |
1499 | 4538 linenr_T sub_firstlnum; /* nr of first sub line */ |
7 | 4539 |
4540 /* | |
4541 * The new text is build up step by step, to avoid too much | |
4542 * copying. There are these pieces: | |
1581 | 4543 * sub_firstline The old text, unmodified. |
7 | 4544 * copycol Column in the old text where we started |
4545 * looking for a match; from here old text still | |
4546 * needs to be copied to the new text. | |
4547 * matchcol Column number of the old text where to look | |
4548 * for the next match. It's just after the | |
4549 * previous match or one further. | |
4550 * prev_matchcol Column just after the previous match (if any). | |
4551 * Mostly equal to matchcol, except for the first | |
4552 * match and after skipping an empty match. | |
4553 * regmatch.*pos Where the pattern matched in the old text. | |
4554 * new_start The new text, all that has been produced so | |
4555 * far. | |
4556 * new_end The new text, where to append new text. | |
4557 * | |
1499 | 4558 * lnum The line number where we found the start of |
4559 * the match. Can be below the line we searched | |
4560 * when there is a \n before a \zs in the | |
4561 * pattern. | |
7 | 4562 * sub_firstlnum The line number in the buffer where to look |
4563 * for a match. Can be different from "lnum" | |
4564 * when the pattern or substitute string contains | |
4565 * line breaks. | |
4566 * | |
4567 * Special situations: | |
4568 * - When the substitute string contains a line break, the part up | |
4569 * to the line break is inserted in the text, but the copy of | |
4570 * the original line is kept. "sub_firstlnum" is adjusted for | |
4571 * the inserted lines. | |
4572 * - When the matched pattern contains a line break, the old line | |
4573 * is taken from the line at the end of the pattern. The lines | |
4574 * in the match are deleted later, "sub_firstlnum" is adjusted | |
4575 * accordingly. | |
4576 * | |
4577 * The new text is built up in new_start[]. It has some extra | |
4578 * room to avoid using alloc()/free() too often. new_start_len is | |
1389 | 4579 * the length of the allocated memory at new_start. |
7 | 4580 * |
4581 * Make a copy of the old line, so it won't be taken away when | |
4582 * updating the screen or handling a multi-line match. The "old_" | |
4583 * pointers point into this copy. | |
4584 */ | |
1499 | 4585 sub_firstlnum = lnum; |
7 | 4586 copycol = 0; |
4587 matchcol = 0; | |
4588 | |
4589 /* At first match, remember current cursor position. */ | |
4590 if (!got_match) | |
4591 { | |
4592 setpcmark(); | |
4593 got_match = TRUE; | |
4594 } | |
4595 | |
4596 /* | |
4597 * Loop until nothing more to replace in this line. | |
4598 * 1. Handle match with empty string. | |
4599 * 2. If do_ask is set, ask for confirmation. | |
4600 * 3. substitute the string. | |
4601 * 4. if do_all is set, find next match | |
4602 * 5. break if there isn't another match in this line | |
4603 */ | |
4604 for (;;) | |
4605 { | |
1499 | 4606 /* Advance "lnum" to the line where the match starts. The |
4607 * match does not start in the first line when there is a line | |
4608 * break before \zs. */ | |
4609 if (regmatch.startpos[0].lnum > 0) | |
4610 { | |
4611 lnum += regmatch.startpos[0].lnum; | |
4612 sub_firstlnum += regmatch.startpos[0].lnum; | |
4613 nmatch -= regmatch.startpos[0].lnum; | |
4614 vim_free(sub_firstline); | |
4615 sub_firstline = NULL; | |
4616 } | |
4617 | |
4618 if (sub_firstline == NULL) | |
4619 { | |
4620 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
4621 if (sub_firstline == NULL) | |
4622 { | |
4623 vim_free(new_start); | |
4624 goto outofmem; | |
4625 } | |
4626 } | |
4627 | |
7 | 4628 /* Save the line number of the last change for the final |
4629 * cursor position (just like Vi). */ | |
4630 curwin->w_cursor.lnum = lnum; | |
4631 do_again = FALSE; | |
4632 | |
4633 /* | |
4634 * 1. Match empty string does not count, except for first | |
4635 * match. This reproduces the strange vi behaviour. | |
4636 * This also catches endless loops. | |
4637 */ | |
4638 if (matchcol == prev_matchcol | |
4639 && regmatch.endpos[0].lnum == 0 | |
4640 && matchcol == regmatch.endpos[0].col) | |
4641 { | |
15 | 4642 if (sub_firstline[matchcol] == NUL) |
4643 /* We already were at the end of the line. Don't look | |
4644 * for a match in this line again. */ | |
4645 skip_match = TRUE; | |
4646 else | |
2837 | 4647 { |
4648 /* search for a match at next column */ | |
4649 #ifdef FEAT_MBYTE | |
4650 if (has_mbyte) | |
4651 matchcol += mb_ptr2len(sub_firstline + matchcol); | |
4652 else | |
4653 #endif | |
4654 ++matchcol; | |
4655 } | |
7 | 4656 goto skip; |
4657 } | |
4658 | |
4659 /* Normally we continue searching for a match just after the | |
4660 * previous match. */ | |
4661 matchcol = regmatch.endpos[0].col; | |
4662 prev_matchcol = matchcol; | |
4663 | |
4664 /* | |
170 | 4665 * 2. If do_count is set only increase the counter. |
4666 * If do_ask is set, ask for confirmation. | |
7 | 4667 */ |
170 | 4668 if (do_count) |
4669 { | |
4670 /* For a multi-line match, put matchcol at the NUL at | |
4671 * the end of the line and set nmatch to one, so that | |
4672 * we continue looking for a match on the next line. | |
4673 * Avoids that ":s/\nB\@=//gc" get stuck. */ | |
4674 if (nmatch > 1) | |
4675 { | |
835 | 4676 matchcol = (colnr_T)STRLEN(sub_firstline); |
170 | 4677 nmatch = 1; |
1483 | 4678 skip_match = TRUE; |
170 | 4679 } |
4680 sub_nsubs++; | |
4681 did_sub = TRUE; | |
3736 | 4682 #ifdef FEAT_EVAL |
4683 /* Skip the substitution, unless an expression is used, | |
4684 * then it is evaluated in the sandbox. */ | |
4685 if (!(sub[0] == '\\' && sub[1] == '=')) | |
4686 #endif | |
4687 goto skip; | |
170 | 4688 } |
4689 | |
7 | 4690 if (do_ask) |
4691 { | |
1874 | 4692 int typed = 0; |
1872 | 4693 |
7 | 4694 /* change State to CONFIRM, so that the mouse works |
4695 * properly */ | |
4696 save_State = State; | |
4697 State = CONFIRM; | |
4698 #ifdef FEAT_MOUSE | |
4699 setmouse(); /* disable mouse in xterm */ | |
4700 #endif | |
4701 curwin->w_cursor.col = regmatch.startpos[0].col; | |
4702 | |
4703 /* When 'cpoptions' contains "u" don't sync undo when | |
4704 * asking for confirmation. */ | |
4705 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
4706 ++no_u_sync; | |
4707 | |
4708 /* | |
4709 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. | |
4710 */ | |
4711 while (do_ask) | |
4712 { | |
169 | 4713 if (exmode_active) |
4714 { | |
4715 char_u *resp; | |
4716 colnr_T sc, ec; | |
4717 | |
4718 print_line_no_prefix(lnum, FALSE, FALSE); | |
4719 | |
4720 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); | |
4721 curwin->w_cursor.col = regmatch.endpos[0].col - 1; | |
4722 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec); | |
4723 msg_start(); | |
170 | 4724 for (i = 0; i < (long)sc; ++i) |
169 | 4725 msg_putchar(' '); |
170 | 4726 for ( ; i <= (long)ec; ++i) |
169 | 4727 msg_putchar('^'); |
4728 | |
4729 resp = getexmodeline('?', NULL, 0); | |
4730 if (resp != NULL) | |
4731 { | |
1872 | 4732 typed = *resp; |
169 | 4733 vim_free(resp); |
4734 } | |
4735 } | |
4736 else | |
4737 { | |
4076 | 4738 char_u *orig_line = NULL; |
4739 int len_change = 0; | |
7 | 4740 #ifdef FEAT_FOLDING |
169 | 4741 int save_p_fen = curwin->w_p_fen; |
4742 | |
4743 curwin->w_p_fen = FALSE; | |
4744 #endif | |
4745 /* Invert the matched string. | |
4746 * Remove the inversion afterwards. */ | |
4747 temp = RedrawingDisabled; | |
4748 RedrawingDisabled = 0; | |
4749 | |
4076 | 4750 if (new_start != NULL) |
4751 { | |
4752 /* There already was a substitution, we would | |
4753 * like to show this to the user. We cannot | |
4754 * really update the line, it would change | |
4755 * what matches. Temporarily replace the line | |
4756 * and change it back afterwards. */ | |
4757 orig_line = vim_strsave(ml_get(lnum)); | |
4758 if (orig_line != NULL) | |
4759 { | |
4760 char_u *new_line = concat_str(new_start, | |
4761 sub_firstline + copycol); | |
4762 | |
4763 if (new_line == NULL) | |
4764 { | |
4765 vim_free(orig_line); | |
4766 orig_line = NULL; | |
4767 } | |
4768 else | |
4769 { | |
4770 /* Position the cursor relative to the | |
4771 * end of the line, the previous | |
4772 * substitute may have inserted or | |
4773 * deleted characters before the | |
4774 * cursor. */ | |
4086 | 4775 len_change = (int)STRLEN(new_line) |
4776 - (int)STRLEN(orig_line); | |
4076 | 4777 curwin->w_cursor.col += len_change; |
4778 ml_replace(lnum, new_line, FALSE); | |
4779 } | |
4780 } | |
4781 } | |
4782 | |
1499 | 4783 search_match_lines = regmatch.endpos[0].lnum |
4784 - regmatch.startpos[0].lnum; | |
4076 | 4785 search_match_endcol = regmatch.endpos[0].col |
4786 + len_change; | |
169 | 4787 highlight_match = TRUE; |
4788 | |
4789 update_topline(); | |
4790 validate_cursor(); | |
748 | 4791 update_screen(SOME_VALID); |
169 | 4792 highlight_match = FALSE; |
748 | 4793 redraw_later(SOME_VALID); |
7 | 4794 |
4795 #ifdef FEAT_FOLDING | |
169 | 4796 curwin->w_p_fen = save_p_fen; |
4797 #endif | |
4798 if (msg_row == Rows - 1) | |
4799 msg_didout = FALSE; /* avoid a scroll-up */ | |
4800 msg_starthere(); | |
4801 i = msg_scroll; | |
4802 msg_scroll = 0; /* truncate msg when | |
4803 needed */ | |
4804 msg_no_more = TRUE; | |
4805 /* write message same highlighting as for | |
4806 * wait_return */ | |
4807 smsg_attr(hl_attr(HLF_R), | |
4808 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); | |
4809 msg_no_more = FALSE; | |
4810 msg_scroll = i; | |
4811 showruler(TRUE); | |
4812 windgoto(msg_row, msg_col); | |
4813 RedrawingDisabled = temp; | |
7 | 4814 |
4815 #ifdef USE_ON_FLY_SCROLL | |
169 | 4816 dont_scroll = FALSE; /* allow scrolling here */ |
4817 #endif | |
4818 ++no_mapping; /* don't map this key */ | |
4819 ++allow_keys; /* allow special keys */ | |
1872 | 4820 typed = plain_vgetc(); |
169 | 4821 --allow_keys; |
4822 --no_mapping; | |
4823 | |
4824 /* clear the question */ | |
4825 msg_didout = FALSE; /* don't scroll up */ | |
4826 msg_col = 0; | |
4827 gotocmdline(TRUE); | |
4076 | 4828 |
4829 /* restore the line */ | |
4830 if (orig_line != NULL) | |
4831 ml_replace(lnum, orig_line, FALSE); | |
169 | 4832 } |
4833 | |
7 | 4834 need_wait_return = FALSE; /* no hit-return prompt */ |
1872 | 4835 if (typed == 'q' || typed == ESC || typed == Ctrl_C |
7 | 4836 #ifdef UNIX |
1872 | 4837 || typed == intr_char |
7 | 4838 #endif |
4839 ) | |
4840 { | |
4841 got_quit = TRUE; | |
4842 break; | |
4843 } | |
1872 | 4844 if (typed == 'n') |
7 | 4845 break; |
1872 | 4846 if (typed == 'y') |
7 | 4847 break; |
1872 | 4848 if (typed == 'l') |
7 | 4849 { |
4850 /* last: replace and then stop */ | |
4851 do_all = FALSE; | |
4852 line2 = lnum; | |
4853 break; | |
4854 } | |
1872 | 4855 if (typed == 'a') |
7 | 4856 { |
4857 do_ask = FALSE; | |
4858 break; | |
4859 } | |
4860 #ifdef FEAT_INS_EXPAND | |
1872 | 4861 if (typed == Ctrl_E) |
7 | 4862 scrollup_clamp(); |
1872 | 4863 else if (typed == Ctrl_Y) |
7 | 4864 scrolldown_clamp(); |
4865 #endif | |
4866 } | |
4867 State = save_State; | |
4868 #ifdef FEAT_MOUSE | |
4869 setmouse(); | |
4870 #endif | |
4871 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
4872 --no_u_sync; | |
4873 | |
1872 | 4874 if (typed == 'n') |
7 | 4875 { |
4876 /* For a multi-line match, put matchcol at the NUL at | |
4877 * the end of the line and set nmatch to one, so that | |
4878 * we continue looking for a match on the next line. | |
1091 | 4879 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc" |
4880 * get stuck when pressing 'n'. */ | |
7 | 4881 if (nmatch > 1) |
4882 { | |
835 | 4883 matchcol = (colnr_T)STRLEN(sub_firstline); |
1091 | 4884 skip_match = TRUE; |
7 | 4885 } |
4886 goto skip; | |
4887 } | |
4888 if (got_quit) | |
4099 | 4889 goto skip; |
7 | 4890 } |
4891 | |
4892 /* Move the cursor to the start of the match, so that we can | |
4893 * use "\=col("."). */ | |
4894 curwin->w_cursor.col = regmatch.startpos[0].col; | |
4895 | |
4896 /* | |
4897 * 3. substitute the string. | |
4898 */ | |
3736 | 4899 #ifdef FEAT_EVAL |
4900 if (do_count) | |
4901 { | |
3786 | 4902 /* prevent accidentally changing the buffer by a function */ |
3736 | 4903 save_ma = curbuf->b_p_ma; |
4904 curbuf->b_p_ma = FALSE; | |
4905 sandbox++; | |
4906 } | |
4907 #endif | |
7 | 4908 /* get length of substitution part */ |
1499 | 4909 sublen = vim_regsub_multi(®match, |
4910 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 4911 sub, sub_firstline, FALSE, p_magic, TRUE); |
3736 | 4912 #ifdef FEAT_EVAL |
4913 if (do_count) | |
4914 { | |
4915 curbuf->b_p_ma = save_ma; | |
4916 sandbox--; | |
4917 goto skip; | |
4918 } | |
4919 #endif | |
7 | 4920 |
533 | 4921 /* When the match included the "$" of the last line it may |
819 | 4922 * go beyond the last line of the buffer. */ |
533 | 4923 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
4924 { | |
4925 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; | |
4926 skip_match = TRUE; | |
4927 } | |
4928 | |
7 | 4929 /* Need room for: |
4930 * - result so far in new_start (not for first sub in line) | |
4931 * - original text up to match | |
4932 * - length of substituted part | |
4933 * - original text after match | |
4934 */ | |
4935 if (nmatch == 1) | |
4936 p1 = sub_firstline; | |
4937 else | |
4938 { | |
4939 p1 = ml_get(sub_firstlnum + nmatch - 1); | |
4940 nmatch_tl += nmatch - 1; | |
4941 } | |
1872 | 4942 copy_len = regmatch.startpos[0].col - copycol; |
4943 needed_len = copy_len + ((unsigned)STRLEN(p1) | |
4944 - regmatch.endpos[0].col) + sublen + 1; | |
7 | 4945 if (new_start == NULL) |
4946 { | |
4947 /* | |
4948 * Get some space for a temporary buffer to do the | |
4949 * substitution into (and some extra space to avoid | |
4950 * too many calls to alloc()/free()). | |
4951 */ | |
4952 new_start_len = needed_len + 50; | |
4953 if ((new_start = alloc_check(new_start_len)) == NULL) | |
4954 goto outofmem; | |
4955 *new_start = NUL; | |
4956 new_end = new_start; | |
4957 } | |
4958 else | |
4959 { | |
4960 /* | |
4961 * Check if the temporary buffer is long enough to do the | |
4962 * substitution into. If not, make it larger (with a bit | |
4963 * extra to avoid too many calls to alloc()/free()). | |
4964 */ | |
4965 len = (unsigned)STRLEN(new_start); | |
4966 needed_len += len; | |
1872 | 4967 if (needed_len > (int)new_start_len) |
7 | 4968 { |
4969 new_start_len = needed_len + 50; | |
4970 if ((p1 = alloc_check(new_start_len)) == NULL) | |
4971 { | |
4972 vim_free(new_start); | |
4973 goto outofmem; | |
4974 } | |
4975 mch_memmove(p1, new_start, (size_t)(len + 1)); | |
4976 vim_free(new_start); | |
4977 new_start = p1; | |
4978 } | |
4979 new_end = new_start + len; | |
4980 } | |
4981 | |
4982 /* | |
4983 * copy the text up to the part that matched | |
4984 */ | |
1872 | 4985 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); |
4986 new_end += copy_len; | |
7 | 4987 |
1499 | 4988 (void)vim_regsub_multi(®match, |
4989 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 4990 sub, new_end, TRUE, p_magic, TRUE); |
4991 sub_nsubs++; | |
4992 did_sub = TRUE; | |
4993 | |
4994 /* Move the cursor to the start of the line, to avoid that it | |
4995 * is beyond the end of the line after the substitution. */ | |
4996 curwin->w_cursor.col = 0; | |
4997 | |
4998 /* For a multi-line match, make a copy of the last matched | |
4999 * line and continue in that one. */ | |
5000 if (nmatch > 1) | |
5001 { | |
5002 sub_firstlnum += nmatch - 1; | |
5003 vim_free(sub_firstline); | |
5004 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
5005 /* When going beyond the last line, stop substituting. */ | |
5006 if (sub_firstlnum <= line2) | |
5007 do_again = TRUE; | |
5008 else | |
5009 do_all = FALSE; | |
5010 } | |
5011 | |
5012 /* Remember next character to be copied. */ | |
5013 copycol = regmatch.endpos[0].col; | |
5014 | |
819 | 5015 if (skip_match) |
5016 { | |
5017 /* Already hit end of the buffer, sub_firstlnum is one | |
5018 * less than what it ought to be. */ | |
5019 vim_free(sub_firstline); | |
5020 sub_firstline = vim_strsave((char_u *)""); | |
5021 copycol = 0; | |
5022 } | |
5023 | |
7 | 5024 /* |
5025 * Now the trick is to replace CTRL-M chars with a real line | |
5026 * break. This would make it impossible to insert a CTRL-M in | |
5027 * the text. The line break can be avoided by preceding the | |
5028 * CTRL-M with a backslash. To be able to insert a backslash, | |
5029 * they must be doubled in the string and are halved here. | |
5030 * That is Vi compatible. | |
5031 */ | |
5032 for (p1 = new_end; *p1; ++p1) | |
5033 { | |
5034 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */ | |
1624 | 5035 STRMOVE(p1, p1 + 1); |
7 | 5036 else if (*p1 == CAR) |
5037 { | |
5038 if (u_inssub(lnum) == OK) /* prepare for undo */ | |
5039 { | |
5040 *p1 = NUL; /* truncate up to the CR */ | |
5041 ml_append(lnum - 1, new_start, | |
5042 (colnr_T)(p1 - new_start + 1), FALSE); | |
5043 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); | |
5044 if (do_ask) | |
5045 appended_lines(lnum - 1, 1L); | |
5046 else | |
5047 { | |
5048 if (first_line == 0) | |
5049 first_line = lnum; | |
5050 last_line = lnum + 1; | |
5051 } | |
5052 /* All line numbers increase. */ | |
5053 ++sub_firstlnum; | |
5054 ++lnum; | |
5055 ++line2; | |
5056 /* move the cursor to the new line, like Vi */ | |
5057 ++curwin->w_cursor.lnum; | |
1444 | 5058 /* copy the rest */ |
1624 | 5059 STRMOVE(new_start, p1 + 1); |
7 | 5060 p1 = new_start - 1; |
5061 } | |
5062 } | |
5063 #ifdef FEAT_MBYTE | |
5064 else if (has_mbyte) | |
474 | 5065 p1 += (*mb_ptr2len)(p1) - 1; |
7 | 5066 #endif |
5067 } | |
5068 | |
5069 /* | |
5070 * 4. If do_all is set, find next match. | |
5071 * Prevent endless loop with patterns that match empty | |
5072 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. | |
5073 * But ":s/\n/#/" is OK. | |
5074 */ | |
5075 skip: | |
5076 /* We already know that we did the last subst when we are at | |
5077 * the end of the line, except that a pattern like | |
1499 | 5078 * "bar\|\nfoo" may match at the NUL. "lnum" can be below |
5079 * "line2" when there is a \zs in the pattern after a line | |
5080 * break. */ | |
15 | 5081 lastone = (skip_match |
5082 || got_int | |
5083 || got_quit | |
1499 | 5084 || lnum > line2 |
15 | 5085 || !(do_all || do_again) |
5086 || (sub_firstline[matchcol] == NUL && nmatch <= 1 | |
5087 && !re_multiline(regmatch.regprog))); | |
7 | 5088 nmatch = -1; |
5089 | |
5090 /* | |
5091 * Replace the line in the buffer when needed. This is | |
5092 * skipped when there are more matches. | |
5093 * The check for nmatch_tl is needed for when multi-line | |
5094 * matching must replace the lines before trying to do another | |
5095 * match, otherwise "\@<=" won't work. | |
1499 | 5096 * When the match starts below where we start searching also |
5097 * need to replace the line first (using \zs after \n). | |
7 | 5098 */ |
5099 if (lastone | |
5100 || nmatch_tl > 0 | |
5101 || (nmatch = vim_regexec_multi(®match, curwin, | |
1521 | 5102 curbuf, sub_firstlnum, |
5103 matchcol, NULL)) == 0 | |
1499 | 5104 || regmatch.startpos[0].lnum > 0) |
7 | 5105 { |
5106 if (new_start != NULL) | |
5107 { | |
5108 /* | |
5109 * Copy the rest of the line, that didn't match. | |
5110 * "matchcol" has to be adjusted, we use the end of | |
5111 * the line as reference, because the substitute may | |
5112 * have changed the number of characters. Same for | |
5113 * "prev_matchcol". | |
5114 */ | |
5115 STRCAT(new_start, sub_firstline + copycol); | |
5116 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5117 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5118 - prev_matchcol; | |
5119 | |
5120 if (u_savesub(lnum) != OK) | |
5121 break; | |
5122 ml_replace(lnum, new_start, TRUE); | |
5123 | |
5124 if (nmatch_tl > 0) | |
5125 { | |
5126 /* | |
5127 * Matched lines have now been substituted and are | |
5128 * useless, delete them. The part after the match | |
5129 * has been appended to new_start, we don't need | |
5130 * it in the buffer. | |
5131 */ | |
5132 ++lnum; | |
5133 if (u_savedel(lnum, nmatch_tl) != OK) | |
5134 break; | |
5135 for (i = 0; i < nmatch_tl; ++i) | |
5136 ml_delete(lnum, (int)FALSE); | |
5137 mark_adjust(lnum, lnum + nmatch_tl - 1, | |
5138 (long)MAXLNUM, -nmatch_tl); | |
5139 if (do_ask) | |
5140 deleted_lines(lnum, nmatch_tl); | |
5141 --lnum; | |
5142 line2 -= nmatch_tl; /* nr of lines decreases */ | |
5143 nmatch_tl = 0; | |
5144 } | |
5145 | |
5146 /* When asking, undo is saved each time, must also set | |
5147 * changed flag each time. */ | |
5148 if (do_ask) | |
5149 changed_bytes(lnum, 0); | |
5150 else | |
5151 { | |
5152 if (first_line == 0) | |
5153 first_line = lnum; | |
5154 last_line = lnum + 1; | |
5155 } | |
5156 | |
5157 sub_firstlnum = lnum; | |
5158 vim_free(sub_firstline); /* free the temp buffer */ | |
5159 sub_firstline = new_start; | |
5160 new_start = NULL; | |
5161 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5162 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5163 - prev_matchcol; | |
5164 copycol = 0; | |
5165 } | |
5166 if (nmatch == -1 && !lastone) | |
5167 nmatch = vim_regexec_multi(®match, curwin, curbuf, | |
1521 | 5168 sub_firstlnum, matchcol, NULL); |
7 | 5169 |
5170 /* | |
5171 * 5. break if there isn't another match in this line | |
5172 */ | |
5173 if (nmatch <= 0) | |
1499 | 5174 { |
5175 /* If the match found didn't start where we were | |
5176 * searching, do the next search in the line where we | |
5177 * found the match. */ | |
5178 if (nmatch == -1) | |
5179 lnum -= regmatch.startpos[0].lnum; | |
7 | 5180 break; |
1499 | 5181 } |
7 | 5182 } |
5183 | |
5184 line_breakcheck(); | |
5185 } | |
5186 | |
5187 if (did_sub) | |
5188 ++sub_nlines; | |
1720 | 5189 vim_free(new_start); /* for when substitute was cancelled */ |
7 | 5190 vim_free(sub_firstline); /* free the copy of the original line */ |
5191 sub_firstline = NULL; | |
5192 } | |
5193 | |
5194 line_breakcheck(); | |
5195 } | |
5196 | |
5197 if (first_line != 0) | |
5198 { | |
5199 /* Need to subtract the number of added lines from "last_line" to get | |
5200 * the line number before the change (same as adding the number of | |
5201 * deleted lines). */ | |
5202 i = curbuf->b_ml.ml_line_count - old_line_count; | |
5203 changed_lines(first_line, 0, last_line - i, i); | |
5204 } | |
5205 | |
5206 outofmem: | |
5207 vim_free(sub_firstline); /* may have to free allocated copy of the line */ | |
170 | 5208 |
5209 /* ":s/pat//n" doesn't move the cursor */ | |
5210 if (do_count) | |
5211 curwin->w_cursor = old_cursor; | |
5212 | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
5213 if (sub_nsubs > start_nsubs) |
7 | 5214 { |
5215 /* Set the '[ and '] marks. */ | |
5216 curbuf->b_op_start.lnum = eap->line1; | |
5217 curbuf->b_op_end.lnum = line2; | |
5218 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
5219 | |
5220 if (!global_busy) | |
5221 { | |
3394 | 5222 if (!do_ask) /* when interactive leave cursor on the match */ |
5223 { | |
5224 if (endcolumn) | |
5225 coladvance((colnr_T)MAXCOL); | |
5226 else | |
5227 beginline(BL_WHITE | BL_FIX); | |
5228 } | |
170 | 5229 if (!do_sub_msg(do_count) && do_ask) |
7 | 5230 MSG(""); |
5231 } | |
5232 else | |
5233 global_need_beginline = TRUE; | |
5234 if (do_print) | |
169 | 5235 print_line(curwin->w_cursor.lnum, do_number, do_list); |
7 | 5236 } |
5237 else if (!global_busy) | |
5238 { | |
5239 if (got_int) /* interrupted */ | |
5240 EMSG(_(e_interr)); | |
5241 else if (got_match) /* did find something but nothing substituted */ | |
5242 MSG(""); | |
5243 else if (do_error) /* nothing found */ | |
5244 EMSG2(_(e_patnotf2), get_search_pat()); | |
5245 } | |
5246 | |
4035 | 5247 #ifdef FEAT_FOLDING |
5248 if (do_ask && hasAnyFolding(curwin)) | |
5249 /* Cursor position may require updating */ | |
5250 changed_window_setting(); | |
5251 #endif | |
5252 | |
7 | 5253 vim_free(regmatch.regprog); |
5254 } | |
5255 | |
5256 /* | |
5257 * Give message for number of substitutions. | |
5258 * Can also be used after a ":global" command. | |
5259 * Return TRUE if a message was given. | |
5260 */ | |
484 | 5261 int |
170 | 5262 do_sub_msg(count_only) |
5263 int count_only; /* used 'n' flag for ":s" */ | |
7 | 5264 { |
5265 /* | |
5266 * Only report substitutions when: | |
5267 * - more than 'report' substitutions | |
5268 * - command was typed by user, or number of changed lines > 'report' | |
5269 * - giving messages is not disabled by 'lazyredraw' | |
5270 */ | |
170 | 5271 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
5272 || count_only) | |
7 | 5273 && messaging()) |
5274 { | |
5275 if (got_int) | |
5276 STRCPY(msg_buf, _("(Interrupted) ")); | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5277 else |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5278 *msg_buf = NUL; |
7 | 5279 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
|
5280 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5281 "%s", count_only ? _("1 match") : _("1 substitution")); |
7 | 5282 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5283 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
170 | 5284 count_only ? _("%ld matches") : _("%ld substitutions"), |
7 | 5285 sub_nsubs); |
5286 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
|
5287 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5288 "%s", _(" on 1 line")); |
7 | 5289 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5290 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5291 _(" on %ld lines"), (long)sub_nlines); |
7 | 5292 if (msg(msg_buf)) |
5293 /* save message to display it after redraw */ | |
680 | 5294 set_keep_msg(msg_buf, 0); |
7 | 5295 return TRUE; |
5296 } | |
5297 if (got_int) | |
5298 { | |
5299 EMSG(_(e_interr)); | |
5300 return TRUE; | |
5301 } | |
5302 return FALSE; | |
5303 } | |
5304 | |
5305 /* | |
5306 * Execute a global command of the form: | |
5307 * | |
5308 * g/pattern/X : execute X on all lines where pattern matches | |
5309 * v/pattern/X : execute X on all lines where pattern does not match | |
5310 * | |
5311 * where 'X' is an EX command | |
5312 * | |
5313 * The command character (as well as the trailing slash) is optional, and | |
5314 * is assumed to be 'p' if missing. | |
5315 * | |
5316 * This is implemented in two passes: first we scan the file for the pattern and | |
3786 | 5317 * set a mark for each line that (not) matches. Secondly we execute the command |
7 | 5318 * for each line that has a mark. This is required because after deleting |
5319 * lines we do not know where to search for the next match. | |
5320 */ | |
5321 void | |
5322 ex_global(eap) | |
5323 exarg_T *eap; | |
5324 { | |
5325 linenr_T lnum; /* line number according to old situation */ | |
170 | 5326 int ndone = 0; |
7 | 5327 int type; /* first char of cmd: 'v' or 'g' */ |
5328 char_u *cmd; /* command argument */ | |
5329 | |
5330 char_u delim; /* delimiter, normally '/' */ | |
5331 char_u *pat; | |
5332 regmmatch_T regmatch; | |
5333 int match; | |
5334 int which_pat; | |
5335 | |
5336 if (global_busy) | |
5337 { | |
5338 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */ | |
5339 return; | |
5340 } | |
5341 | |
5342 if (eap->forceit) /* ":global!" is like ":vglobal" */ | |
5343 type = 'v'; | |
5344 else | |
5345 type = *eap->cmd; | |
5346 cmd = eap->arg; | |
5347 which_pat = RE_LAST; /* default: use last used regexp */ | |
5348 | |
5349 /* | |
5350 * undocumented vi feature: | |
5351 * "\/" and "\?": use previous search pattern. | |
5352 * "\&": use previous substitute pattern. | |
5353 */ | |
5354 if (*cmd == '\\') | |
5355 { | |
5356 ++cmd; | |
5357 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
5358 { | |
5359 EMSG(_(e_backslash)); | |
5360 return; | |
5361 } | |
5362 if (*cmd == '&') | |
5363 which_pat = RE_SUBST; /* use previous substitute pattern */ | |
5364 else | |
5365 which_pat = RE_SEARCH; /* use previous search pattern */ | |
5366 ++cmd; | |
5367 pat = (char_u *)""; | |
5368 } | |
5369 else if (*cmd == NUL) | |
5370 { | |
5371 EMSG(_("E148: Regular expression missing from global")); | |
5372 return; | |
5373 } | |
5374 else | |
5375 { | |
5376 delim = *cmd; /* get the delimiter */ | |
5377 if (delim) | |
5378 ++cmd; /* skip delimiter if there is one */ | |
5379 pat = cmd; /* remember start of pattern */ | |
5380 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg); | |
5381 if (cmd[0] == delim) /* end delimiter found */ | |
5382 *cmd++ = NUL; /* replace it with a NUL */ | |
5383 } | |
5384 | |
5385 #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */ | |
5386 if (p_altkeymap && curwin->w_p_rl) | |
5387 lrFswap(pat,0); | |
5388 #endif | |
5389 | |
5390 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) | |
5391 { | |
5392 EMSG(_(e_invcmd)); | |
5393 return; | |
5394 } | |
5395 | |
5396 /* | |
5397 * pass 1: set marks for each (not) matching line | |
5398 */ | |
5399 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum) | |
5400 { | |
5401 /* a match on this line? */ | |
1521 | 5402 match = vim_regexec_multi(®match, curwin, curbuf, lnum, |
5403 (colnr_T)0, NULL); | |
7 | 5404 if ((type == 'g' && match) || (type == 'v' && !match)) |
5405 { | |
5406 ml_setmarked(lnum); | |
5407 ndone++; | |
5408 } | |
5409 line_breakcheck(); | |
5410 } | |
5411 | |
5412 /* | |
5413 * pass 2: execute the command for each line that has been marked | |
5414 */ | |
5415 if (got_int) | |
5416 MSG(_(e_interr)); | |
5417 else if (ndone == 0) | |
5418 { | |
5419 if (type == 'v') | |
274 | 5420 smsg((char_u *)_("Pattern found in every line: %s"), pat); |
7 | 5421 else |
4195 | 5422 smsg((char_u *)_("Pattern not found: %s"), pat); |
7 | 5423 } |
5424 else | |
5425 global_exe(cmd); | |
5426 | |
5427 ml_clearmarked(); /* clear rest of the marks */ | |
5428 vim_free(regmatch.regprog); | |
5429 } | |
5430 | |
5431 /* | |
5432 * Execute "cmd" on lines marked with ml_setmarked(). | |
5433 */ | |
5434 void | |
5435 global_exe(cmd) | |
5436 char_u *cmd; | |
5437 { | |
2819 | 5438 linenr_T old_lcount; /* b_ml.ml_line_count before the command */ |
5439 buf_T *old_buf = curbuf; /* remember what buffer we started in */ | |
5440 linenr_T lnum; /* line number according to old situation */ | |
7 | 5441 |
5442 /* | |
5443 * Set current position only once for a global command. | |
5444 * If global_busy is set, setpcmark() will not do anything. | |
5445 * If there is an error, global_busy will be incremented. | |
5446 */ | |
5447 setpcmark(); | |
5448 | |
5449 /* When the command writes a message, don't overwrite the command. */ | |
5450 msg_didout = TRUE; | |
5451 | |
2127
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
5452 sub_nsubs = 0; |
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
5453 sub_nlines = 0; |
7 | 5454 global_need_beginline = FALSE; |
5455 global_busy = 1; | |
5456 old_lcount = curbuf->b_ml.ml_line_count; | |
5457 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) | |
5458 { | |
5459 curwin->w_cursor.lnum = lnum; | |
5460 curwin->w_cursor.col = 0; | |
5461 if (*cmd == NUL || *cmd == '\n') | |
5462 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT); | |
5463 else | |
5464 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT); | |
5465 ui_breakcheck(); | |
5466 } | |
5467 | |
5468 global_busy = 0; | |
5469 if (global_need_beginline) | |
5470 beginline(BL_WHITE | BL_FIX); | |
5471 else | |
5472 check_cursor(); /* cursor may be beyond the end of the line */ | |
5473 | |
39 | 5474 /* the cursor may not have moved in the text but a change in a previous |
5475 * line may move it on the screen */ | |
5476 changed_line_abv_curs(); | |
5477 | |
7 | 5478 /* If it looks like no message was written, allow overwriting the |
5479 * command with the report for number of changes. */ | |
5480 if (msg_col == 0 && msg_scrolled == 0) | |
5481 msg_didout = FALSE; | |
5482 | |
1227 | 5483 /* If substitutes done, report number of substitutes, otherwise report |
2819 | 5484 * number of extra or deleted lines. |
5485 * Don't report extra or deleted lines in the edge case where the buffer | |
5486 * we are in after execution is different from the buffer we started in. */ | |
5487 if (!do_sub_msg(FALSE) && curbuf == old_buf) | |
7 | 5488 msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
5489 } | |
5490 | |
5491 #ifdef FEAT_VIMINFO | |
5492 int | |
5493 read_viminfo_sub_string(virp, force) | |
5494 vir_T *virp; | |
5495 int force; | |
5496 { | |
2690 | 5497 if (force) |
7 | 5498 vim_free(old_sub); |
5499 if (force || old_sub == NULL) | |
5500 old_sub = viminfo_readstring(virp, 1, TRUE); | |
5501 return viminfo_readline(virp); | |
5502 } | |
5503 | |
5504 void | |
5505 write_viminfo_sub_string(fp) | |
5506 FILE *fp; | |
5507 { | |
5508 if (get_viminfo_parameter('/') != 0 && old_sub != NULL) | |
5509 { | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
5510 fputs(_("\n# Last Substitute String:\n$"), fp); |
7 | 5511 viminfo_writestring(fp, old_sub); |
5512 } | |
5513 } | |
5514 #endif /* FEAT_VIMINFO */ | |
5515 | |
359 | 5516 #if defined(EXITFREE) || defined(PROTO) |
5517 void | |
5518 free_old_sub() | |
5519 { | |
5520 vim_free(old_sub); | |
5521 } | |
5522 #endif | |
5523 | |
7 | 5524 #if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO) |
5525 /* | |
5526 * Set up for a tagpreview. | |
735 | 5527 * Return TRUE when it was created. |
7 | 5528 */ |
735 | 5529 int |
816 | 5530 prepare_tagpreview(undo_sync) |
5531 int undo_sync; /* sync undo when leaving the window */ | |
7 | 5532 { |
5533 win_T *wp; | |
5534 | |
5535 # ifdef FEAT_GUI | |
5536 need_mouse_correct = TRUE; | |
5537 # endif | |
5538 | |
5539 /* | |
5540 * If there is already a preview window open, use that one. | |
5541 */ | |
5542 if (!curwin->w_p_pvw) | |
5543 { | |
5544 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
5545 if (wp->w_p_pvw) | |
5546 break; | |
5547 if (wp != NULL) | |
816 | 5548 win_enter(wp, undo_sync); |
7 | 5549 else |
5550 { | |
5551 /* | |
5552 * There is no preview window open yet. Create one. | |
5553 */ | |
5554 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) | |
5555 == FAIL) | |
735 | 5556 return FALSE; |
7 | 5557 curwin->w_p_pvw = TRUE; |
5558 curwin->w_p_wfh = TRUE; | |
2583 | 5559 RESET_BINDING(curwin); /* don't take over 'scrollbind' |
5560 and 'cursorbind' */ | |
7 | 5561 # ifdef FEAT_DIFF |
5562 curwin->w_p_diff = FALSE; /* no 'diff' */ | |
5563 # endif | |
5564 # ifdef FEAT_FOLDING | |
5565 curwin->w_p_fdc = 0; /* no 'foldcolumn' */ | |
5566 # endif | |
735 | 5567 return TRUE; |
7 | 5568 } |
5569 } | |
735 | 5570 return FALSE; |
7 | 5571 } |
5572 | |
5573 #endif | |
5574 | |
5575 | |
5576 /* | |
5577 * ":help": open a read-only window on a help file | |
5578 */ | |
5579 void | |
5580 ex_help(eap) | |
5581 exarg_T *eap; | |
5582 { | |
5583 char_u *arg; | |
5584 char_u *tag; | |
5585 FILE *helpfd; /* file descriptor of help file */ | |
5586 int n; | |
5587 int i; | |
5588 #ifdef FEAT_WINDOWS | |
5589 win_T *wp; | |
5590 #endif | |
5591 int num_matches; | |
5592 char_u **matches; | |
5593 char_u *p; | |
5594 int empty_fnum = 0; | |
5595 int alt_fnum = 0; | |
5596 buf_T *buf; | |
5597 #ifdef FEAT_MULTI_LANG | |
5598 int len; | |
9 | 5599 char_u *lang; |
7 | 5600 #endif |
3112 | 5601 #ifdef FEAT_FOLDING |
5602 int old_KeyTyped = KeyTyped; | |
5603 #endif | |
7 | 5604 |
5605 if (eap != NULL) | |
5606 { | |
5607 /* | |
5608 * A ":help" command ends at the first LF, or at a '|' that is | |
5609 * followed by some text. Set nextcmd to the following command. | |
5610 */ | |
5611 for (arg = eap->arg; *arg; ++arg) | |
5612 { | |
5613 if (*arg == '\n' || *arg == '\r' | |
5614 || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) | |
5615 { | |
5616 *arg++ = NUL; | |
5617 eap->nextcmd = arg; | |
5618 break; | |
5619 } | |
5620 } | |
5621 arg = eap->arg; | |
5622 | |
3446 | 5623 if (eap->forceit && *arg == NUL && !curbuf->b_help) |
7 | 5624 { |
5625 EMSG(_("E478: Don't panic!")); | |
5626 return; | |
5627 } | |
5628 | |
5629 if (eap->skip) /* not executing commands */ | |
5630 return; | |
5631 } | |
5632 else | |
5633 arg = (char_u *)""; | |
5634 | |
5635 /* remove trailing blanks */ | |
5636 p = arg + STRLEN(arg) - 1; | |
5637 while (p > arg && vim_iswhite(*p) && p[-1] != '\\') | |
5638 *p-- = NUL; | |
5639 | |
5640 #ifdef FEAT_MULTI_LANG | |
5641 /* Check for a specified language */ | |
9 | 5642 lang = check_help_lang(arg); |
7 | 5643 #endif |
5644 | |
5645 /* When no argument given go to the index. */ | |
5646 if (*arg == NUL) | |
5647 arg = (char_u *)"help.txt"; | |
5648 | |
5649 /* | |
5650 * Check if there is a match for the argument. | |
5651 */ | |
5652 n = find_help_tags(arg, &num_matches, &matches, | |
5653 eap != NULL && eap->forceit); | |
5654 | |
5655 i = 0; | |
5656 #ifdef FEAT_MULTI_LANG | |
5657 if (n != FAIL && lang != NULL) | |
5658 /* Find first item with the requested language. */ | |
5659 for (i = 0; i < num_matches; ++i) | |
5660 { | |
835 | 5661 len = (int)STRLEN(matches[i]); |
7 | 5662 if (len > 3 && matches[i][len - 3] == '@' |
5663 && STRICMP(matches[i] + len - 2, lang) == 0) | |
5664 break; | |
5665 } | |
5666 #endif | |
5667 if (i >= num_matches || n == FAIL) | |
5668 { | |
5669 #ifdef FEAT_MULTI_LANG | |
5670 if (lang != NULL) | |
5671 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg); | |
5672 else | |
5673 #endif | |
5674 EMSG2(_("E149: Sorry, no help for %s"), arg); | |
5675 if (n != FAIL) | |
5676 FreeWild(num_matches, matches); | |
5677 return; | |
5678 } | |
5679 | |
5680 /* The first match (in the requested language) is the best match. */ | |
5681 tag = vim_strsave(matches[i]); | |
5682 FreeWild(num_matches, matches); | |
5683 | |
5684 #ifdef FEAT_GUI | |
5685 need_mouse_correct = TRUE; | |
5686 #endif | |
5687 | |
5688 /* | |
5689 * Re-use an existing help window or open a new one. | |
684 | 5690 * Always open a new one for ":tab help". |
7 | 5691 */ |
684 | 5692 if (!curwin->w_buffer->b_help |
5693 #ifdef FEAT_WINDOWS | |
5694 || cmdmod.tab != 0 | |
5695 #endif | |
5696 ) | |
7 | 5697 { |
5698 #ifdef FEAT_WINDOWS | |
684 | 5699 if (cmdmod.tab != 0) |
5700 wp = NULL; | |
5701 else | |
5702 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
5703 if (wp->w_buffer != NULL && wp->w_buffer->b_help) | |
5704 break; | |
7 | 5705 if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
5706 win_enter(wp, TRUE); | |
5707 else | |
5708 #endif | |
5709 { | |
5710 /* | |
5711 * There is no help window yet. | |
5712 * Try to open the file specified by the "helpfile" option. | |
5713 */ | |
5714 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL) | |
5715 { | |
274 | 5716 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf); |
7 | 5717 goto erret; |
5718 } | |
5719 fclose(helpfd); | |
5720 | |
5721 #ifdef FEAT_WINDOWS | |
5722 /* Split off help window; put it at far top if no position | |
684 | 5723 * specified, the current window is vertically split and |
5724 * narrow. */ | |
7 | 5725 n = WSP_HELP; |
5726 # ifdef FEAT_VERTSPLIT | |
5727 if (cmdmod.split == 0 && curwin->w_width != Columns | |
684 | 5728 && curwin->w_width < 80) |
7 | 5729 n |= WSP_TOP; |
5730 # endif | |
5731 if (win_split(0, n) == FAIL) | |
684 | 5732 goto erret; |
7 | 5733 #else |
5734 /* use current window */ | |
5735 if (!can_abandon(curbuf, FALSE)) | |
5736 goto erret; | |
684 | 5737 #endif |
7 | 5738 |
5739 #ifdef FEAT_WINDOWS | |
5740 if (curwin->w_height < p_hh) | |
5741 win_setheight((int)p_hh); | |
5742 #endif | |
5743 | |
5744 /* | |
5745 * Open help file (do_ecmd() will set b_help flag, readfile() will | |
5746 * set b_p_ro flag). | |
5747 * Set the alternate file to the previously edited file. | |
5748 */ | |
5749 alt_fnum = curbuf->b_fnum; | |
5750 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL, | |
1743 | 5751 ECMD_HIDE + ECMD_SET_HELP, |
5752 #ifdef FEAT_WINDOWS | |
5753 NULL /* buffer is still open, don't store info */ | |
5754 #else | |
5755 curwin | |
5756 #endif | |
5757 ); | |
22 | 5758 if (!cmdmod.keepalt) |
5759 curwin->w_alt_fnum = alt_fnum; | |
7 | 5760 empty_fnum = curbuf->b_fnum; |
5761 } | |
5762 } | |
5763 | |
5764 if (!p_im) | |
5765 restart_edit = 0; /* don't want insert mode in help file */ | |
5766 | |
3112 | 5767 #ifdef FEAT_FOLDING |
5768 /* Restore KeyTyped, setting 'filetype=help' may reset it. | |
5769 * It is needed for do_tag top open folds under the cursor. */ | |
5770 KeyTyped = old_KeyTyped; | |
5771 #endif | |
5772 | |
7 | 5773 if (tag != NULL) |
5774 do_tag(tag, DT_HELP, 1, FALSE, TRUE); | |
5775 | |
819 | 5776 /* Delete the empty buffer if we're not using it. Careful: autocommands |
5777 * may have jumped to another window, check that the buffer is not in a | |
5778 * window. */ | |
7 | 5779 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum) |
5780 { | |
5781 buf = buflist_findnr(empty_fnum); | |
819 | 5782 if (buf != NULL && buf->b_nwindows == 0) |
7 | 5783 wipe_buffer(buf, TRUE); |
5784 } | |
5785 | |
5786 /* keep the previous alternate file */ | |
22 | 5787 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt) |
7 | 5788 curwin->w_alt_fnum = alt_fnum; |
5789 | |
5790 erret: | |
5791 vim_free(tag); | |
5792 } | |
5793 | |
5794 | |
9 | 5795 #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
5796 /* | |
5797 * In an argument search for a language specifiers in the form "@xx". | |
5798 * Changes the "@" to NUL if found, and returns a pointer to "xx". | |
5799 * Returns NULL if not found. | |
5800 */ | |
5801 char_u * | |
5802 check_help_lang(arg) | |
5803 char_u *arg; | |
5804 { | |
835 | 5805 int len = (int)STRLEN(arg); |
9 | 5806 |
5807 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2]) | |
5808 && ASCII_ISALPHA(arg[len - 1])) | |
5809 { | |
5810 arg[len - 3] = NUL; /* remove the '@' */ | |
5811 return arg + len - 2; | |
5812 } | |
5813 return NULL; | |
5814 } | |
5815 #endif | |
5816 | |
7 | 5817 /* |
5818 * Return a heuristic indicating how well the given string matches. The | |
5819 * smaller the number, the better the match. This is the order of priorities, | |
5820 * from best match to worst match: | |
5821 * - Match with least alpha-numeric characters is better. | |
5822 * - Match with least total characters is better. | |
5823 * - Match towards the start is better. | |
5824 * - Match starting with "+" is worse (feature instead of command) | |
5825 * Assumption is made that the matched_string passed has already been found to | |
5826 * match some string for which help is requested. webb. | |
5827 */ | |
5828 int | |
5829 help_heuristic(matched_string, offset, wrong_case) | |
5830 char_u *matched_string; | |
5831 int offset; /* offset for match */ | |
5832 int wrong_case; /* no matching case */ | |
5833 { | |
5834 int num_letters; | |
5835 char_u *p; | |
5836 | |
5837 num_letters = 0; | |
5838 for (p = matched_string; *p; p++) | |
5839 if (ASCII_ISALNUM(*p)) | |
5840 num_letters++; | |
5841 | |
5842 /* | |
5843 * Multiply the number of letters by 100 to give it a much bigger | |
5844 * weighting than the number of characters. | |
5845 * If there only is a match while ignoring case, add 5000. | |
5846 * If the match starts in the middle of a word, add 10000 to put it | |
5847 * somewhere in the last half. | |
5848 * If the match is more than 2 chars from the start, multiply by 200 to | |
5849 * put it after matches at the start. | |
5850 */ | |
5851 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 | |
5852 && ASCII_ISALNUM(matched_string[offset - 1])) | |
5853 offset += 10000; | |
5854 else if (offset > 2) | |
5855 offset *= 200; | |
5856 if (wrong_case) | |
5857 offset += 5000; | |
5858 /* Features are less interesting than the subjects themselves, but "+" | |
5859 * alone is not a feature. */ | |
5860 if (matched_string[0] == '+' && matched_string[1] != NUL) | |
5861 offset += 100; | |
5862 return (int)(100 * num_letters + STRLEN(matched_string) + offset); | |
5863 } | |
5864 | |
5865 /* | |
5866 * Compare functions for qsort() below, that checks the help heuristics number | |
5867 * that has been put after the tagname by find_tags(). | |
5868 */ | |
5869 static int | |
5870 #ifdef __BORLANDC__ | |
5871 _RTLENTRYF | |
5872 #endif | |
5873 help_compare(s1, s2) | |
5874 const void *s1; | |
5875 const void *s2; | |
5876 { | |
5877 char *p1; | |
5878 char *p2; | |
5879 | |
5880 p1 = *(char **)s1 + strlen(*(char **)s1) + 1; | |
5881 p2 = *(char **)s2 + strlen(*(char **)s2) + 1; | |
5882 return strcmp(p1, p2); | |
5883 } | |
5884 | |
5885 /* | |
5886 * Find all help tags matching "arg", sort them and return in matches[], with | |
5887 * the number of matches in num_matches. | |
5888 * The matches will be sorted with a "best" match algorithm. | |
5889 * When "keep_lang" is TRUE try keeping the language of the current buffer. | |
5890 */ | |
5891 int | |
5892 find_help_tags(arg, num_matches, matches, keep_lang) | |
5893 char_u *arg; | |
5894 int *num_matches; | |
5895 char_u ***matches; | |
5896 int keep_lang; | |
5897 { | |
5898 char_u *s, *d; | |
5899 int i; | |
5900 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", | |
445 | 5901 "/*", "/\\*", "\"*", "**", |
4023 | 5902 "cpo-*", "/\\(\\)", |
323 | 5903 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
279 | 5904 "/\\?", "/\\z(\\)", "\\=", ":s\\=", |
7 | 5905 "[count]", "[quotex]", "[range]", |
5906 "[pattern]", "\\|", "\\%$"}; | |
5907 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", | |
445 | 5908 "/star", "/\\\\star", "quotestar", "starstar", |
4023 | 5909 "cpo-star", "/\\\\(\\\\)", |
323 | 5910 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
279 | 5911 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", |
7 | 5912 "\\[count]", "\\[quotex]", "\\[range]", |
5913 "\\[pattern]", "\\\\bar", "/\\\\%\\$"}; | |
5914 int flags; | |
5915 | |
5916 d = IObuff; /* assume IObuff is long enough! */ | |
5917 | |
5918 /* | |
5919 * Recognize a few exceptions to the rule. Some strings that contain '*' | |
5920 * with "star". Otherwise '*' is recognized as a wildcard. | |
5921 */ | |
1872 | 5922 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; ) |
7 | 5923 if (STRCMP(arg, mtable[i]) == 0) |
5924 { | |
5925 STRCPY(d, rtable[i]); | |
5926 break; | |
5927 } | |
5928 | |
5929 if (i < 0) /* no match in table */ | |
5930 { | |
5931 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched. | |
5932 * Also replace "\%^" and "\%(", they match every tag too. | |
5933 * Also "\zs", "\z1", etc. | |
5934 * Also "\@<", "\@=", "\@<=", etc. | |
5935 * And also "\_$" and "\_^". */ | |
5936 if (arg[0] == '\\' | |
5937 && ((arg[1] != NUL && arg[2] == NUL) | |
5938 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL | |
5939 && arg[2] != NUL))) | |
5940 { | |
5941 STRCPY(d, "/\\\\"); | |
5942 STRCPY(d + 3, arg + 1); | |
5943 /* Check for "/\\_$", should be "/\\_\$" */ | |
5944 if (d[3] == '_' && d[4] == '$') | |
5945 STRCPY(d + 4, "\\$"); | |
5946 } | |
5947 else | |
5948 { | |
3786 | 5949 /* Replace: |
5950 * "[:...:]" with "\[:...:]" | |
5951 * "[++...]" with "\[++...]" | |
5952 * "\{" with "\\{" | |
5953 */ | |
5954 if ((arg[0] == '[' && (arg[1] == ':' | |
5955 || (arg[1] == '+' && arg[2] == '+'))) | |
5956 || (arg[0] == '\\' && arg[1] == '{')) | |
7 | 5957 *d++ = '\\'; |
5958 | |
5959 for (s = arg; *s; ++s) | |
5960 { | |
5961 /* | |
5962 * Replace "|" with "bar" and '"' with "quote" to match the name of | |
5963 * the tags for these commands. | |
5964 * Replace "*" with ".*" and "?" with "." to match command line | |
5965 * completion. | |
5966 * Insert a backslash before '~', '$' and '.' to avoid their | |
5967 * special meaning. | |
5968 */ | |
5969 if (d - IObuff > IOSIZE - 10) /* getting too long!? */ | |
5970 break; | |
5971 switch (*s) | |
5972 { | |
5973 case '|': STRCPY(d, "bar"); | |
5974 d += 3; | |
5975 continue; | |
5976 case '"': STRCPY(d, "quote"); | |
5977 d += 5; | |
5978 continue; | |
5979 case '*': *d++ = '.'; | |
5980 break; | |
5981 case '?': *d++ = '.'; | |
5982 continue; | |
5983 case '$': | |
5984 case '.': | |
5985 case '~': *d++ = '\\'; | |
5986 break; | |
5987 } | |
5988 | |
5989 /* | |
5990 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make | |
5991 * ":help i_^_CTRL-D" work. | |
5992 * Insert '-' before and after "CTRL-X" when applicable. | |
5993 */ | |
5994 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1]) | |
5995 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL))) | |
5996 { | |
5997 if (d > IObuff && d[-1] != '_') | |
5998 *d++ = '_'; /* prepend a '_' */ | |
5999 STRCPY(d, "CTRL-"); | |
6000 d += 5; | |
6001 if (*s < ' ') | |
6002 { | |
6003 #ifdef EBCDIC | |
6004 *d++ = CtrlChar(*s); | |
6005 #else | |
6006 *d++ = *s + '@'; | |
6007 #endif | |
6008 if (d[-1] == '\\') | |
6009 *d++ = '\\'; /* double a backslash */ | |
6010 } | |
6011 else | |
6012 *d++ = *++s; | |
6013 if (s[1] != NUL && s[1] != '_') | |
6014 *d++ = '_'; /* append a '_' */ | |
6015 continue; | |
6016 } | |
6017 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */ | |
6018 *d++ = '\\'; | |
6019 | |
6020 /* | |
6021 * Insert a backslash before a backslash after a slash, for search | |
6022 * pattern tags: "/\|" --> "/\\|". | |
6023 */ | |
6024 else if (s[0] == '\\' && s[1] != '\\' | |
6025 && *arg == '/' && s == arg + 1) | |
6026 *d++ = '\\'; | |
6027 | |
6028 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in | |
6029 * "CTRL-\_CTRL-N" */ | |
6030 if (STRNICMP(s, "CTRL-\\_", 7) == 0) | |
6031 { | |
6032 STRCPY(d, "CTRL-\\\\"); | |
6033 d += 7; | |
6034 s += 6; | |
6035 } | |
6036 | |
6037 *d++ = *s; | |
6038 | |
6039 /* | |
6040 * If tag starts with ', toss everything after a second '. Fixes | |
6041 * CTRL-] on 'option'. (would include the trailing '.'). | |
6042 */ | |
6043 if (*s == '\'' && s > arg && *arg == '\'') | |
6044 break; | |
6045 } | |
6046 *d = NUL; | |
3480 | 6047 |
6048 if (*IObuff == '`') | |
6049 { | |
6050 if (d > IObuff + 2 && d[-1] == '`') | |
6051 { | |
6052 /* remove the backticks from `command` */ | |
6053 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6054 d[-2] = NUL; | |
6055 } | |
6056 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',') | |
6057 { | |
6058 /* remove the backticks and comma from `command`, */ | |
6059 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6060 d[-3] = NUL; | |
6061 } | |
6062 else if (d > IObuff + 4 && d[-3] == '`' | |
6063 && d[-2] == '\\' && d[-1] == '.') | |
6064 { | |
6065 /* remove the backticks and dot from `command`\. */ | |
6066 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6067 d[-4] = NUL; | |
6068 } | |
6069 } | |
7 | 6070 } |
6071 } | |
6072 | |
6073 *matches = (char_u **)""; | |
6074 *num_matches = 0; | |
6075 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; | |
6076 if (keep_lang) | |
6077 flags |= TAG_KEEP_LANG; | |
1696 | 6078 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK |
7 | 6079 && *num_matches > 0) |
1696 | 6080 { |
7 | 6081 /* Sort the matches found on the heuristic number that is after the |
6082 * tag name. */ | |
6083 qsort((void *)*matches, (size_t)*num_matches, | |
6084 sizeof(char_u *), help_compare); | |
1696 | 6085 /* Delete more than TAG_MANY to reduce the size of the listing. */ |
6086 while (*num_matches > TAG_MANY) | |
6087 vim_free((*matches)[--*num_matches]); | |
6088 } | |
7 | 6089 return OK; |
6090 } | |
6091 | |
6092 /* | |
6093 * After reading a help file: May cleanup a help buffer when syntax | |
6094 * highlighting is not used. | |
6095 */ | |
6096 void | |
6097 fix_help_buffer() | |
6098 { | |
6099 linenr_T lnum; | |
6100 char_u *line; | |
6101 int in_example = FALSE; | |
6102 int len; | |
3141 | 6103 char_u *fname; |
7 | 6104 char_u *p; |
6105 char_u *rt; | |
6106 int mustfree; | |
6107 | |
6108 /* set filetype to "help". */ | |
6109 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL); | |
6110 | |
6111 #ifdef FEAT_SYN_HL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6112 if (!syntax_present(curwin)) |
7 | 6113 #endif |
6114 { | |
6115 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
6116 { | |
6117 line = ml_get_buf(curbuf, lnum, FALSE); | |
6118 len = (int)STRLEN(line); | |
6119 if (in_example && len > 0 && !vim_iswhite(line[0])) | |
6120 { | |
6121 /* End of example: non-white or '<' in first column. */ | |
6122 if (line[0] == '<') | |
6123 { | |
6124 /* blank-out a '<' in the first column */ | |
6125 line = ml_get_buf(curbuf, lnum, TRUE); | |
6126 line[0] = ' '; | |
6127 } | |
6128 in_example = FALSE; | |
6129 } | |
6130 if (!in_example && len > 0) | |
6131 { | |
6132 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' ')) | |
6133 { | |
6134 /* blank-out a '>' in the last column (start of example) */ | |
6135 line = ml_get_buf(curbuf, lnum, TRUE); | |
6136 line[len - 1] = ' '; | |
6137 in_example = TRUE; | |
6138 } | |
6139 else if (line[len - 1] == '~') | |
6140 { | |
6141 /* blank-out a '~' at the end of line (header marker) */ | |
6142 line = ml_get_buf(curbuf, lnum, TRUE); | |
6143 line[len - 1] = ' '; | |
6144 } | |
6145 } | |
6146 } | |
6147 } | |
6148 | |
6149 /* | |
3141 | 6150 * In the "help.txt" and "help.abx" file, add the locally added help |
6151 * files. This uses the very first line in the help file. | |
7 | 6152 */ |
3141 | 6153 fname = gettail(curbuf->b_fname); |
6154 if (fnamecmp(fname, "help.txt") == 0 | |
6155 #ifdef FEAT_MULTI_LANG | |
6156 || (fnamencmp(fname, "help.", 5) == 0 | |
6157 && ASCII_ISALPHA(fname[5]) | |
6158 && ASCII_ISALPHA(fname[6]) | |
6159 && TOLOWER_ASC(fname[7]) == 'x' | |
6160 && fname[8] == NUL) | |
6161 #endif | |
6162 ) | |
7 | 6163 { |
6164 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) | |
6165 { | |
6166 line = ml_get_buf(curbuf, lnum, FALSE); | |
3141 | 6167 if (strstr((char *)line, "*local-additions*") == NULL) |
6168 continue; | |
6169 | |
6170 /* Go through all directories in 'runtimepath', skipping | |
6171 * $VIMRUNTIME. */ | |
6172 p = p_rtp; | |
6173 while (*p != NUL) | |
7 | 6174 { |
3141 | 6175 copy_option_part(&p, NameBuff, MAXPATHL, ","); |
6176 mustfree = FALSE; | |
6177 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); | |
6178 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME) | |
7 | 6179 { |
3141 | 6180 int fcount; |
6181 char_u **fnames; | |
6182 FILE *fd; | |
6183 char_u *s; | |
6184 int fi; | |
7 | 6185 #ifdef FEAT_MBYTE |
3141 | 6186 vimconv_T vc; |
6187 char_u *cp; | |
6188 #endif | |
6189 | |
6190 /* Find all "doc/ *.txt" files in this directory. */ | |
6191 add_pathsep(NameBuff); | |
6192 #ifdef FEAT_MULTI_LANG | |
6193 STRCAT(NameBuff, "doc/*.??[tx]"); | |
7 | 6194 #else |
3141 | 6195 STRCAT(NameBuff, "doc/*.txt"); |
6196 #endif | |
6197 if (gen_expand_wildcards(1, &NameBuff, &fcount, | |
6198 &fnames, EW_FILE|EW_SILENT) == OK | |
6199 && fcount > 0) | |
6200 { | |
6201 #ifdef FEAT_MULTI_LANG | |
6202 int i1; | |
6203 int i2; | |
6204 char_u *f1; | |
6205 char_u *f2; | |
6206 char_u *t1; | |
6207 char_u *e1; | |
6208 char_u *e2; | |
6209 | |
6210 /* If foo.abx is found use it instead of foo.txt in | |
6211 * the same directory. */ | |
6212 for (i1 = 0; i1 < fcount; ++i1) | |
6213 { | |
6214 for (i2 = 0; i2 < fcount; ++i2) | |
6215 { | |
6216 if (i1 == i2) | |
6217 continue; | |
6218 if (fnames[i1] == NULL || fnames[i2] == NULL) | |
6219 continue; | |
6220 f1 = fnames[i1]; | |
6221 f2 = fnames[i2]; | |
6222 t1 = gettail(f1); | |
6223 if (fnamencmp(f1, f2, t1 - f1) != 0) | |
6224 continue; | |
6225 e1 = vim_strrchr(t1, '.'); | |
6226 e2 = vim_strrchr(gettail(f2), '.'); | |
6227 if (e1 == NUL || e2 == NUL) | |
6228 continue; | |
6229 if (fnamecmp(e1, ".txt") != 0 | |
6230 && fnamecmp(e1, fname + 4) != 0) | |
6231 { | |
6232 /* Not .txt and not .abx, remove it. */ | |
6233 vim_free(fnames[i1]); | |
6234 fnames[i1] = NULL; | |
6235 continue; | |
6236 } | |
6237 if (fnamencmp(f1, f2, e1 - f1) != 0) | |
6238 continue; | |
6239 if (fnamecmp(e1, ".txt") == 0 | |
6240 && fnamecmp(e2, fname + 4) == 0) | |
6241 { | |
6242 /* use .abx instead of .txt */ | |
6243 vim_free(fnames[i1]); | |
6244 fnames[i1] = NULL; | |
7 | 6245 } |
6246 } | |
6247 } | |
3141 | 6248 #endif |
6249 for (fi = 0; fi < fcount; ++fi) | |
6250 { | |
6251 if (fnames[fi] == NULL) | |
6252 continue; | |
6253 fd = mch_fopen((char *)fnames[fi], "r"); | |
6254 if (fd != NULL) | |
6255 { | |
6256 vim_fgets(IObuff, IOSIZE, fd); | |
6257 if (IObuff[0] == '*' | |
6258 && (s = vim_strchr(IObuff + 1, '*')) | |
6259 != NULL) | |
6260 { | |
6261 #ifdef FEAT_MBYTE | |
6262 int this_utf = MAYBE; | |
6263 #endif | |
6264 /* Change tag definition to a | |
6265 * reference and remove <CR>/<NL>. */ | |
6266 IObuff[0] = '|'; | |
6267 *s = '|'; | |
6268 while (*s != NUL) | |
6269 { | |
6270 if (*s == '\r' || *s == '\n') | |
6271 *s = NUL; | |
6272 #ifdef FEAT_MBYTE | |
6273 /* The text is utf-8 when a byte | |
6274 * above 127 is found and no | |
6275 * illegal byte sequence is found. | |
6276 */ | |
6277 if (*s >= 0x80 && this_utf != FALSE) | |
6278 { | |
6279 int l; | |
6280 | |
6281 this_utf = TRUE; | |
6282 l = utf_ptr2len(s); | |
6283 if (l == 1) | |
6284 this_utf = FALSE; | |
6285 s += l - 1; | |
6286 } | |
6287 #endif | |
6288 ++s; | |
6289 } | |
6290 #ifdef FEAT_MBYTE | |
6291 /* The help file is latin1 or utf-8; | |
6292 * conversion to the current | |
6293 * 'encoding' may be required. */ | |
6294 vc.vc_type = CONV_NONE; | |
6295 convert_setup(&vc, (char_u *)( | |
6296 this_utf == TRUE ? "utf-8" | |
6297 : "latin1"), p_enc); | |
6298 if (vc.vc_type == CONV_NONE) | |
6299 /* No conversion needed. */ | |
6300 cp = IObuff; | |
6301 else | |
6302 { | |
6303 /* Do the conversion. If it fails | |
6304 * use the unconverted text. */ | |
6305 cp = string_convert(&vc, IObuff, | |
6306 NULL); | |
6307 if (cp == NULL) | |
6308 cp = IObuff; | |
6309 } | |
6310 convert_setup(&vc, NULL, NULL); | |
6311 | |
6312 ml_append(lnum, cp, (colnr_T)0, FALSE); | |
6313 if (cp != IObuff) | |
6314 vim_free(cp); | |
6315 #else | |
6316 ml_append(lnum, IObuff, (colnr_T)0, | |
6317 FALSE); | |
6318 #endif | |
6319 ++lnum; | |
6320 } | |
6321 fclose(fd); | |
6322 } | |
6323 } | |
6324 FreeWild(fcount, fnames); | |
7 | 6325 } |
6326 } | |
3141 | 6327 if (mustfree) |
6328 vim_free(rt); | |
7 | 6329 } |
3141 | 6330 break; |
7 | 6331 } |
6332 } | |
6333 } | |
6334 | |
40 | 6335 /* |
6336 * ":exusage" | |
6337 */ | |
6338 void | |
6339 ex_exusage(eap) | |
1876 | 6340 exarg_T *eap UNUSED; |
40 | 6341 { |
6342 do_cmdline_cmd((char_u *)"help ex-cmd-index"); | |
6343 } | |
6344 | |
6345 /* | |
6346 * ":viusage" | |
6347 */ | |
6348 void | |
6349 ex_viusage(eap) | |
1876 | 6350 exarg_T *eap UNUSED; |
40 | 6351 { |
6352 do_cmdline_cmd((char_u *)"help normal-index"); | |
6353 } | |
6354 | |
7 | 6355 #if defined(FEAT_EX_EXTRA) || defined(PROTO) |
1502 | 6356 static void helptags_one __ARGS((char_u *dir, char_u *ext, char_u *lang, int add_help_tags)); |
7 | 6357 |
6358 /* | |
6359 * ":helptags" | |
6360 */ | |
6361 void | |
6362 ex_helptags(eap) | |
6363 exarg_T *eap; | |
6364 { | |
6365 garray_T ga; | |
6366 int i, j; | |
6367 int len; | |
9 | 6368 #ifdef FEAT_MULTI_LANG |
7 | 6369 char_u lang[2]; |
9 | 6370 #endif |
1507 | 6371 expand_T xpc; |
6372 char_u *dirname; | |
7 | 6373 char_u ext[5]; |
6374 char_u fname[8]; | |
6375 int filecount; | |
6376 char_u **files; | |
1502 | 6377 int add_help_tags = FALSE; |
6378 | |
6379 /* Check for ":helptags ++t {dir}". */ | |
6380 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3])) | |
6381 { | |
6382 add_help_tags = TRUE; | |
6383 eap->arg = skipwhite(eap->arg + 3); | |
6384 } | |
7 | 6385 |
1507 | 6386 ExpandInit(&xpc); |
6387 xpc.xp_context = EXPAND_DIRECTORIES; | |
6388 dirname = ExpandOne(&xpc, eap->arg, NULL, | |
6389 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE); | |
6390 if (dirname == NULL || !mch_isdir(dirname)) | |
7 | 6391 { |
6392 EMSG2(_("E150: Not a directory: %s"), eap->arg); | |
6393 return; | |
6394 } | |
6395 | |
6396 #ifdef FEAT_MULTI_LANG | |
3957 | 6397 /* Get a list of all files in the help directory and in subdirectories. */ |
1507 | 6398 STRCPY(NameBuff, dirname); |
7 | 6399 add_pathsep(NameBuff); |
3957 | 6400 STRCAT(NameBuff, "**"); |
7 | 6401 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, |
6402 EW_FILE|EW_SILENT) == FAIL | |
6403 || filecount == 0) | |
6404 { | |
6405 EMSG2("E151: No match: %s", NameBuff); | |
1507 | 6406 vim_free(dirname); |
7 | 6407 return; |
6408 } | |
6409 | |
6410 /* Go over all files in the directory to find out what languages are | |
6411 * present. */ | |
6412 ga_init2(&ga, 1, 10); | |
6413 for (i = 0; i < filecount; ++i) | |
6414 { | |
835 | 6415 len = (int)STRLEN(files[i]); |
7 | 6416 if (len > 4) |
6417 { | |
6418 if (STRICMP(files[i] + len - 4, ".txt") == 0) | |
6419 { | |
6420 /* ".txt" -> language "en" */ | |
6421 lang[0] = 'e'; | |
6422 lang[1] = 'n'; | |
6423 } | |
6424 else if (files[i][len - 4] == '.' | |
6425 && ASCII_ISALPHA(files[i][len - 3]) | |
6426 && ASCII_ISALPHA(files[i][len - 2]) | |
6427 && TOLOWER_ASC(files[i][len - 1]) == 'x') | |
6428 { | |
6429 /* ".abx" -> language "ab" */ | |
6430 lang[0] = TOLOWER_ASC(files[i][len - 3]); | |
6431 lang[1] = TOLOWER_ASC(files[i][len - 2]); | |
6432 } | |
6433 else | |
6434 continue; | |
6435 | |
6436 /* Did we find this language already? */ | |
6437 for (j = 0; j < ga.ga_len; j += 2) | |
6438 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0) | |
6439 break; | |
6440 if (j == ga.ga_len) | |
6441 { | |
6442 /* New language, add it. */ | |
6443 if (ga_grow(&ga, 2) == FAIL) | |
6444 break; | |
6445 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0]; | |
6446 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1]; | |
6447 } | |
6448 } | |
6449 } | |
6450 | |
6451 /* | |
6452 * Loop over the found languages to generate a tags file for each one. | |
6453 */ | |
6454 for (j = 0; j < ga.ga_len; j += 2) | |
6455 { | |
6456 STRCPY(fname, "tags-xx"); | |
6457 fname[5] = ((char_u *)ga.ga_data)[j]; | |
6458 fname[6] = ((char_u *)ga.ga_data)[j + 1]; | |
6459 if (fname[5] == 'e' && fname[6] == 'n') | |
6460 { | |
6461 /* English is an exception: use ".txt" and "tags". */ | |
6462 fname[4] = NUL; | |
6463 STRCPY(ext, ".txt"); | |
6464 } | |
6465 else | |
6466 { | |
6467 /* Language "ab" uses ".abx" and "tags-ab". */ | |
6468 STRCPY(ext, ".xxx"); | |
6469 ext[1] = fname[5]; | |
6470 ext[2] = fname[6]; | |
6471 } | |
1507 | 6472 helptags_one(dirname, ext, fname, add_help_tags); |
7 | 6473 } |
6474 | |
6475 ga_clear(&ga); | |
6476 FreeWild(filecount, files); | |
6477 | |
6478 #else | |
6479 /* No language support, just use "*.txt" and "tags". */ | |
1507 | 6480 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags); |
6481 #endif | |
6482 vim_free(dirname); | |
7 | 6483 } |
6484 | |
6485 static void | |
1502 | 6486 helptags_one(dir, ext, tagfname, add_help_tags) |
6487 char_u *dir; /* doc directory */ | |
6488 char_u *ext; /* suffix, ".txt", ".itx", ".frx", etc. */ | |
3957 | 6489 char_u *tagfname; /* "tags" for English, "tags-fr" for French. */ |
6490 int add_help_tags; /* add "help-tags" tag */ | |
7 | 6491 { |
6492 FILE *fd_tags; | |
6493 FILE *fd; | |
6494 garray_T ga; | |
6495 int filecount; | |
6496 char_u **files; | |
6497 char_u *p1, *p2; | |
6498 int fi; | |
6499 char_u *s; | |
6500 int i; | |
6501 char_u *fname; | |
3957 | 6502 int dirlen; |
7 | 6503 # ifdef FEAT_MBYTE |
6504 int utf8 = MAYBE; | |
6505 int this_utf8; | |
6506 int firstline; | |
6507 int mix = FALSE; /* detected mixed encodings */ | |
6508 # endif | |
6509 | |
6510 /* | |
6511 * Find all *.txt files. | |
6512 */ | |
3978 | 6513 dirlen = (int)STRLEN(dir); |
7 | 6514 STRCPY(NameBuff, dir); |
3957 | 6515 STRCAT(NameBuff, "/**/*"); |
7 | 6516 STRCAT(NameBuff, ext); |
6517 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, | |
6518 EW_FILE|EW_SILENT) == FAIL | |
6519 || filecount == 0) | |
6520 { | |
6521 if (!got_int) | |
6522 EMSG2("E151: No match: %s", NameBuff); | |
6523 return; | |
6524 } | |
6525 | |
6526 /* | |
6527 * Open the tags file for writing. | |
6528 * Do this before scanning through all the files. | |
6529 */ | |
6530 STRCPY(NameBuff, dir); | |
6531 add_pathsep(NameBuff); | |
6532 STRCAT(NameBuff, tagfname); | |
531 | 6533 fd_tags = mch_fopen((char *)NameBuff, "w"); |
7 | 6534 if (fd_tags == NULL) |
6535 { | |
6536 EMSG2(_("E152: Cannot open %s for writing"), NameBuff); | |
6537 FreeWild(filecount, files); | |
6538 return; | |
6539 } | |
6540 | |
6541 /* | |
1502 | 6542 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc" |
6543 * add the "help-tags" tag. | |
7 | 6544 */ |
6545 ga_init2(&ga, (int)sizeof(char_u *), 100); | |
1502 | 6546 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc", |
6547 dir, FALSE) == FPC_SAME) | |
7 | 6548 { |
6549 if (ga_grow(&ga, 1) == FAIL) | |
6550 got_int = TRUE; | |
6551 else | |
6552 { | |
835 | 6553 s = alloc(18 + (unsigned)STRLEN(tagfname)); |
7 | 6554 if (s == NULL) |
6555 got_int = TRUE; | |
6556 else | |
6557 { | |
6558 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname); | |
6559 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
6560 ++ga.ga_len; | |
6561 } | |
6562 } | |
6563 } | |
6564 | |
6565 /* | |
6566 * Go over all the files and extract the tags. | |
6567 */ | |
6568 for (fi = 0; fi < filecount && !got_int; ++fi) | |
6569 { | |
531 | 6570 fd = mch_fopen((char *)files[fi], "r"); |
7 | 6571 if (fd == NULL) |
6572 { | |
6573 EMSG2(_("E153: Unable to open %s for reading"), files[fi]); | |
6574 continue; | |
6575 } | |
3957 | 6576 fname = files[fi] + dirlen + 1; |
7 | 6577 |
6578 # ifdef FEAT_MBYTE | |
6579 firstline = TRUE; | |
6580 # endif | |
6581 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) | |
6582 { | |
6583 # ifdef FEAT_MBYTE | |
6584 if (firstline) | |
6585 { | |
6586 /* Detect utf-8 file by a non-ASCII char in the first line. */ | |
6587 this_utf8 = MAYBE; | |
6588 for (s = IObuff; *s != NUL; ++s) | |
6589 if (*s >= 0x80) | |
6590 { | |
6591 int l; | |
6592 | |
6593 this_utf8 = TRUE; | |
474 | 6594 l = utf_ptr2len(s); |
7 | 6595 if (l == 1) |
6596 { | |
6597 /* Illegal UTF-8 byte sequence. */ | |
6598 this_utf8 = FALSE; | |
6599 break; | |
6600 } | |
6601 s += l - 1; | |
6602 } | |
6603 if (this_utf8 == MAYBE) /* only ASCII characters found */ | |
6604 this_utf8 = FALSE; | |
6605 if (utf8 == MAYBE) /* first file */ | |
6606 utf8 = this_utf8; | |
6607 else if (utf8 != this_utf8) | |
6608 { | |
6609 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]); | |
6610 mix = !got_int; | |
6611 got_int = TRUE; | |
6612 } | |
6613 firstline = FALSE; | |
6614 } | |
6615 # endif | |
6616 p1 = vim_strchr(IObuff, '*'); /* find first '*' */ | |
6617 while (p1 != NULL) | |
6618 { | |
3514 | 6619 /* Use vim_strbyte() instead of vim_strchr() so that when |
6620 * 'encoding' is dbcs it still works, don't find '*' in the | |
6621 * second byte. */ | |
6622 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */ | |
7 | 6623 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */ |
6624 { | |
6625 for (s = p1 + 1; s < p2; ++s) | |
6626 if (*s == ' ' || *s == '\t' || *s == '|') | |
6627 break; | |
6628 | |
6629 /* | |
6630 * Only accept a *tag* when it consists of valid | |
6631 * characters, there is white space before it and is | |
6632 * followed by a white character or end-of-line. | |
6633 */ | |
6634 if (s == p2 | |
6635 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') | |
6636 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL | |
6637 || s[1] == '\0')) | |
6638 { | |
6639 *p2 = '\0'; | |
6640 ++p1; | |
6641 if (ga_grow(&ga, 1) == FAIL) | |
6642 { | |
6643 got_int = TRUE; | |
6644 break; | |
6645 } | |
6646 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2)); | |
6647 if (s == NULL) | |
6648 { | |
6649 got_int = TRUE; | |
6650 break; | |
6651 } | |
6652 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
6653 ++ga.ga_len; | |
6654 sprintf((char *)s, "%s\t%s", p1, fname); | |
6655 | |
6656 /* find next '*' */ | |
6657 p2 = vim_strchr(p2 + 1, '*'); | |
6658 } | |
6659 } | |
6660 p1 = p2; | |
6661 } | |
6662 line_breakcheck(); | |
6663 } | |
6664 | |
6665 fclose(fd); | |
6666 } | |
6667 | |
6668 FreeWild(filecount, files); | |
6669 | |
6670 if (!got_int) | |
6671 { | |
6672 /* | |
6673 * Sort the tags. | |
6674 */ | |
6675 sort_strings((char_u **)ga.ga_data, ga.ga_len); | |
6676 | |
6677 /* | |
6678 * Check for duplicates. | |
6679 */ | |
6680 for (i = 1; i < ga.ga_len; ++i) | |
6681 { | |
6682 p1 = ((char_u **)ga.ga_data)[i - 1]; | |
6683 p2 = ((char_u **)ga.ga_data)[i]; | |
6684 while (*p1 == *p2) | |
6685 { | |
6686 if (*p2 == '\t') | |
6687 { | |
6688 *p2 = NUL; | |
274 | 6689 vim_snprintf((char *)NameBuff, MAXPATHL, |
7 | 6690 _("E154: Duplicate tag \"%s\" in file %s/%s"), |
6691 ((char_u **)ga.ga_data)[i], dir, p2 + 1); | |
6692 EMSG(NameBuff); | |
6693 *p2 = '\t'; | |
6694 break; | |
6695 } | |
6696 ++p1; | |
6697 ++p2; | |
6698 } | |
6699 } | |
6700 | |
6701 # ifdef FEAT_MBYTE | |
6702 if (utf8 == TRUE) | |
6703 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n"); | |
6704 # endif | |
6705 | |
6706 /* | |
6707 * Write the tags into the file. | |
6708 */ | |
6709 for (i = 0; i < ga.ga_len; ++i) | |
6710 { | |
6711 s = ((char_u **)ga.ga_data)[i]; | |
1325 | 6712 if (STRNCMP(s, "help-tags\t", 10) == 0) |
7 | 6713 /* help-tags entry was added in formatted form */ |
1325 | 6714 fputs((char *)s, fd_tags); |
7 | 6715 else |
6716 { | |
6717 fprintf(fd_tags, "%s\t/*", s); | |
6718 for (p1 = s; *p1 != '\t'; ++p1) | |
6719 { | |
6720 /* insert backslash before '\\' and '/' */ | |
6721 if (*p1 == '\\' || *p1 == '/') | |
6722 putc('\\', fd_tags); | |
6723 putc(*p1, fd_tags); | |
6724 } | |
6725 fprintf(fd_tags, "*\n"); | |
6726 } | |
6727 } | |
6728 } | |
6729 #ifdef FEAT_MBYTE | |
6730 if (mix) | |
6731 got_int = FALSE; /* continue with other languages */ | |
6732 #endif | |
6733 | |
6734 for (i = 0; i < ga.ga_len; ++i) | |
6735 vim_free(((char_u **)ga.ga_data)[i]); | |
6736 ga_clear(&ga); | |
6737 fclose(fd_tags); /* there is no check for an error... */ | |
6738 } | |
6739 #endif | |
6740 | |
6741 #if defined(FEAT_SIGNS) || defined(PROTO) | |
6742 | |
6743 /* | |
6744 * Struct to hold the sign properties. | |
6745 */ | |
6746 typedef struct sign sign_T; | |
6747 | |
6748 struct sign | |
6749 { | |
6750 sign_T *sn_next; /* next sign in list */ | |
2606 | 6751 int sn_typenr; /* type number of sign */ |
7 | 6752 char_u *sn_name; /* name of sign */ |
6753 char_u *sn_icon; /* name of pixmap */ | |
6754 #ifdef FEAT_SIGN_ICONS | |
6755 void *sn_image; /* icon image */ | |
6756 #endif | |
6757 char_u *sn_text; /* text used instead of pixmap */ | |
6758 int sn_line_hl; /* highlight ID for line */ | |
6759 int sn_text_hl; /* highlight ID for text */ | |
6760 }; | |
6761 | |
6762 static sign_T *first_sign = NULL; | |
2605 | 6763 static int next_sign_typenr = 1; |
7 | 6764 |
1874 | 6765 static int sign_cmd_idx __ARGS((char_u *begin_cmd, char_u *end_cmd)); |
7 | 6766 static void sign_list_defined __ARGS((sign_T *sp)); |
1828 | 6767 static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev)); |
7 | 6768 |
1868 | 6769 static char *cmds[] = { |
6770 "define", | |
6771 #define SIGNCMD_DEFINE 0 | |
6772 "undefine", | |
6773 #define SIGNCMD_UNDEFINE 1 | |
6774 "list", | |
6775 #define SIGNCMD_LIST 2 | |
6776 "place", | |
6777 #define SIGNCMD_PLACE 3 | |
6778 "unplace", | |
6779 #define SIGNCMD_UNPLACE 4 | |
6780 "jump", | |
6781 #define SIGNCMD_JUMP 5 | |
6782 NULL | |
6783 #define SIGNCMD_LAST 6 | |
6784 }; | |
6785 | |
6786 /* | |
6787 * Find index of a ":sign" subcmd from its name. | |
6788 * "*end_cmd" must be writable. | |
6789 */ | |
6790 static int | |
6791 sign_cmd_idx(begin_cmd, end_cmd) | |
1874 | 6792 char_u *begin_cmd; /* begin of sign subcmd */ |
6793 char_u *end_cmd; /* just after sign subcmd */ | |
1868 | 6794 { |
6795 int idx; | |
6796 char save = *end_cmd; | |
6797 | |
6798 *end_cmd = NUL; | |
6799 for (idx = 0; ; ++idx) | |
6800 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0) | |
6801 break; | |
6802 *end_cmd = save; | |
6803 return idx; | |
6804 } | |
6805 | |
7 | 6806 /* |
6807 * ":sign" command | |
6808 */ | |
6809 void | |
6810 ex_sign(eap) | |
6811 exarg_T *eap; | |
6812 { | |
6813 char_u *arg = eap->arg; | |
6814 char_u *p; | |
6815 int idx; | |
6816 sign_T *sp; | |
6817 sign_T *sp_prev; | |
6818 buf_T *buf; | |
6819 | |
6820 /* Parse the subcommand. */ | |
6821 p = skiptowhite(arg); | |
1868 | 6822 idx = sign_cmd_idx(arg, p); |
6823 if (idx == SIGNCMD_LAST) | |
6824 { | |
6825 EMSG2(_("E160: Unknown sign command: %s"), arg); | |
6826 return; | |
7 | 6827 } |
6828 arg = skipwhite(p); | |
6829 | |
6830 if (idx <= SIGNCMD_LIST) | |
6831 { | |
6832 /* | |
6833 * Define, undefine or list signs. | |
6834 */ | |
6835 if (idx == SIGNCMD_LIST && *arg == NUL) | |
6836 { | |
6837 /* ":sign list": list all defined signs */ | |
3411 | 6838 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next) |
7 | 6839 sign_list_defined(sp); |
6840 } | |
6841 else if (*arg == NUL) | |
6842 EMSG(_("E156: Missing sign name")); | |
6843 else | |
6844 { | |
2605 | 6845 /* Isolate the sign name. If it's a number skip leading zeroes, |
6846 * so that "099" and "99" are the same sign. But keep "0". */ | |
7 | 6847 p = skiptowhite(arg); |
6848 if (*p != NUL) | |
6849 *p++ = NUL; | |
2605 | 6850 while (arg[0] == '0' && arg[1] != NUL) |
6851 ++arg; | |
6852 | |
7 | 6853 sp_prev = NULL; |
6854 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
6855 { | |
6856 if (STRCMP(sp->sn_name, arg) == 0) | |
6857 break; | |
6858 sp_prev = sp; | |
6859 } | |
6860 if (idx == SIGNCMD_DEFINE) | |
6861 { | |
6862 /* ":sign define {name} ...": define a sign */ | |
6863 if (sp == NULL) | |
6864 { | |
2605 | 6865 sign_T *lp; |
6866 int start = next_sign_typenr; | |
6867 | |
7 | 6868 /* Allocate a new sign. */ |
6869 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T)); | |
6870 if (sp == NULL) | |
6871 return; | |
6872 | |
2605 | 6873 /* Check that next_sign_typenr is not already being used. |
6874 * This only happens after wrapping around. Hopefully | |
6875 * another one got deleted and we can use its number. */ | |
6876 for (lp = first_sign; lp != NULL; ) | |
7 | 6877 { |
2605 | 6878 if (lp->sn_typenr == next_sign_typenr) |
7 | 6879 { |
2605 | 6880 ++next_sign_typenr; |
6881 if (next_sign_typenr == MAX_TYPENR) | |
6882 next_sign_typenr = 1; | |
6883 if (next_sign_typenr == start) | |
7 | 6884 { |
2605 | 6885 vim_free(sp); |
6886 EMSG(_("E612: Too many signs defined")); | |
6887 return; | |
7 | 6888 } |
2605 | 6889 lp = first_sign; /* start all over */ |
6890 continue; | |
7 | 6891 } |
2605 | 6892 lp = lp->sn_next; |
6893 } | |
6894 | |
6895 sp->sn_typenr = next_sign_typenr; | |
6896 if (++next_sign_typenr == MAX_TYPENR) | |
6897 next_sign_typenr = 1; /* wrap around */ | |
6898 | |
6899 sp->sn_name = vim_strsave(arg); | |
6900 if (sp->sn_name == NULL) /* out of memory */ | |
6901 { | |
6902 vim_free(sp); | |
6903 return; | |
7 | 6904 } |
2601 | 6905 |
6906 /* add the new sign to the list of signs */ | |
6907 if (sp_prev == NULL) | |
6908 first_sign = sp; | |
6909 else | |
6910 sp_prev->sn_next = sp; | |
7 | 6911 } |
6912 | |
6913 /* set values for a defined sign. */ | |
6914 for (;;) | |
6915 { | |
6916 arg = skipwhite(p); | |
6917 if (*arg == NUL) | |
6918 break; | |
6919 p = skiptowhite_esc(arg); | |
6920 if (STRNCMP(arg, "icon=", 5) == 0) | |
6921 { | |
6922 arg += 5; | |
6923 vim_free(sp->sn_icon); | |
6924 sp->sn_icon = vim_strnsave(arg, (int)(p - arg)); | |
6925 backslash_halve(sp->sn_icon); | |
6926 #ifdef FEAT_SIGN_ICONS | |
6927 if (gui.in_use) | |
6928 { | |
6929 out_flush(); | |
6930 if (sp->sn_image != NULL) | |
6931 gui_mch_destroy_sign(sp->sn_image); | |
6932 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
6933 } | |
6934 #endif | |
6935 } | |
6936 else if (STRNCMP(arg, "text=", 5) == 0) | |
6937 { | |
6938 char_u *s; | |
6939 int cells; | |
6940 int len; | |
6941 | |
6942 arg += 5; | |
6943 #ifdef FEAT_MBYTE | |
6944 /* Count cells and check for non-printable chars */ | |
6945 if (has_mbyte) | |
6946 { | |
6947 cells = 0; | |
474 | 6948 for (s = arg; s < p; s += (*mb_ptr2len)(s)) |
7 | 6949 { |
6950 if (!vim_isprintc((*mb_ptr2char)(s))) | |
6951 break; | |
6952 cells += (*mb_ptr2cells)(s); | |
6953 } | |
6954 } | |
6955 else | |
6956 #endif | |
6957 { | |
6958 for (s = arg; s < p; ++s) | |
6959 if (!vim_isprintc(*s)) | |
6960 break; | |
835 | 6961 cells = (int)(s - arg); |
7 | 6962 } |
6963 /* Currently must be one or two display cells */ | |
6964 if (s != p || cells < 1 || cells > 2) | |
6965 { | |
6966 *p = NUL; | |
6967 EMSG2(_("E239: Invalid sign text: %s"), arg); | |
6968 return; | |
6969 } | |
6970 | |
6971 vim_free(sp->sn_text); | |
6972 /* Allocate one byte more if we need to pad up | |
6973 * with a space. */ | |
835 | 6974 len = (int)(p - arg + ((cells == 1) ? 1 : 0)); |
7 | 6975 sp->sn_text = vim_strnsave(arg, len); |
6976 | |
6977 if (sp->sn_text != NULL && cells == 1) | |
6978 STRCPY(sp->sn_text + len - 1, " "); | |
6979 } | |
6980 else if (STRNCMP(arg, "linehl=", 7) == 0) | |
6981 { | |
6982 arg += 7; | |
6983 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg)); | |
6984 } | |
6985 else if (STRNCMP(arg, "texthl=", 7) == 0) | |
6986 { | |
6987 arg += 7; | |
6988 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg)); | |
6989 } | |
6990 else | |
6991 { | |
6992 EMSG2(_(e_invarg2), arg); | |
6993 return; | |
6994 } | |
6995 } | |
6996 } | |
6997 else if (sp == NULL) | |
6998 EMSG2(_("E155: Unknown sign: %s"), arg); | |
6999 else if (idx == SIGNCMD_LIST) | |
7000 /* ":sign list {name}" */ | |
7001 sign_list_defined(sp); | |
7002 else | |
7003 /* ":sign undefine {name}" */ | |
1828 | 7004 sign_undefine(sp, sp_prev); |
7 | 7005 } |
7006 } | |
7007 else | |
7008 { | |
7009 int id = -1; | |
7010 linenr_T lnum = -1; | |
7011 char_u *sign_name = NULL; | |
7012 char_u *arg1; | |
7013 | |
7014 if (*arg == NUL) | |
7015 { | |
7016 if (idx == SIGNCMD_PLACE) | |
7017 { | |
7018 /* ":sign place": list placed signs in all buffers */ | |
7019 sign_list_placed(NULL); | |
7020 } | |
7021 else if (idx == SIGNCMD_UNPLACE) | |
7022 { | |
7023 /* ":sign unplace": remove placed sign at cursor */ | |
7024 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum); | |
7025 if (id > 0) | |
7026 { | |
7027 buf_delsign(curwin->w_buffer, id); | |
7028 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum); | |
7029 } | |
7030 else | |
7031 EMSG(_("E159: Missing sign number")); | |
7032 } | |
7033 else | |
7034 EMSG(_(e_argreq)); | |
7035 return; | |
7036 } | |
7037 | |
7038 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL) | |
7039 { | |
7040 /* ":sign unplace *": remove all placed signs */ | |
7041 buf_delete_all_signs(); | |
7042 return; | |
7043 } | |
7044 | |
7045 /* first arg could be placed sign id */ | |
7046 arg1 = arg; | |
7047 if (VIM_ISDIGIT(*arg)) | |
7048 { | |
7049 id = getdigits(&arg); | |
7050 if (!vim_iswhite(*arg) && *arg != NUL) | |
7051 { | |
7052 id = -1; | |
7053 arg = arg1; | |
7054 } | |
7055 else | |
7056 { | |
7057 arg = skipwhite(arg); | |
7058 if (idx == SIGNCMD_UNPLACE && *arg == NUL) | |
7059 { | |
7060 /* ":sign unplace {id}": remove placed sign by number */ | |
7061 for (buf = firstbuf; buf != NULL; buf = buf->b_next) | |
7062 if ((lnum = buf_delsign(buf, id)) != 0) | |
7063 update_debug_sign(buf, lnum); | |
7064 return; | |
7065 } | |
7066 } | |
7067 } | |
7068 | |
7069 /* | |
7070 * Check for line={lnum} name={name} and file={fname} or buffer={nr}. | |
7071 * Leave "arg" pointing to {fname}. | |
7072 */ | |
7073 for (;;) | |
7074 { | |
7075 if (STRNCMP(arg, "line=", 5) == 0) | |
7076 { | |
7077 arg += 5; | |
7078 lnum = atoi((char *)arg); | |
7079 arg = skiptowhite(arg); | |
7080 } | |
3672 | 7081 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE) |
7082 { | |
7083 if (id != -1) | |
7084 { | |
7085 EMSG(_(e_invarg)); | |
7086 return; | |
7087 } | |
7088 id = -2; | |
7089 arg = skiptowhite(arg + 1); | |
7090 } | |
7 | 7091 else if (STRNCMP(arg, "name=", 5) == 0) |
7092 { | |
7093 arg += 5; | |
7094 sign_name = arg; | |
7095 arg = skiptowhite(arg); | |
7096 if (*arg != NUL) | |
7097 *arg++ = NUL; | |
2605 | 7098 while (sign_name[0] == '0' && sign_name[1] != NUL) |
7099 ++sign_name; | |
7 | 7100 } |
7101 else if (STRNCMP(arg, "file=", 5) == 0) | |
7102 { | |
7103 arg += 5; | |
7104 buf = buflist_findname(arg); | |
7105 break; | |
7106 } | |
7107 else if (STRNCMP(arg, "buffer=", 7) == 0) | |
7108 { | |
7109 arg += 7; | |
7110 buf = buflist_findnr((int)getdigits(&arg)); | |
7111 if (*skipwhite(arg) != NUL) | |
7112 EMSG(_(e_trailing)); | |
7113 break; | |
7114 } | |
7115 else | |
7116 { | |
7117 EMSG(_(e_invarg)); | |
7118 return; | |
7119 } | |
7120 arg = skipwhite(arg); | |
7121 } | |
7122 | |
7123 if (buf == NULL) | |
7124 { | |
7125 EMSG2(_("E158: Invalid buffer name: %s"), arg); | |
7126 } | |
3672 | 7127 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2)) |
7 | 7128 { |
7129 if (lnum >= 0 || sign_name != NULL) | |
7130 EMSG(_(e_invarg)); | |
7131 else | |
7132 /* ":sign place file={fname}": list placed signs in one file */ | |
7133 sign_list_placed(buf); | |
7134 } | |
7135 else if (idx == SIGNCMD_JUMP) | |
7136 { | |
7137 /* ":sign jump {id} file={fname}" */ | |
7138 if (lnum >= 0 || sign_name != NULL) | |
7139 EMSG(_(e_invarg)); | |
7140 else if ((lnum = buf_findsign(buf, id)) > 0) | |
7141 { /* goto a sign ... */ | |
7142 if (buf_jump_open_win(buf) != NULL) | |
7143 { /* ... in a current window */ | |
7144 curwin->w_cursor.lnum = lnum; | |
7145 check_cursor_lnum(); | |
7146 beginline(BL_WHITE); | |
7147 } | |
7148 else | |
7149 { /* ... not currently in a window */ | |
7150 char_u *cmd; | |
7151 | |
7152 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25); | |
7153 if (cmd == NULL) | |
7154 return; | |
7155 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname); | |
7156 do_cmdline_cmd(cmd); | |
7157 vim_free(cmd); | |
7158 } | |
7159 #ifdef FEAT_FOLDING | |
7160 foldOpenCursor(); | |
7161 #endif | |
7162 } | |
7163 else | |
7164 EMSGN(_("E157: Invalid sign ID: %ld"), id); | |
7165 } | |
7166 else if (idx == SIGNCMD_UNPLACE) | |
7167 { | |
7168 if (lnum >= 0 || sign_name != NULL) | |
7169 EMSG(_(e_invarg)); | |
3672 | 7170 else if (id == -2) |
7171 { | |
7172 /* ":sign unplace * file={fname}" */ | |
7173 redraw_buf_later(buf, NOT_VALID); | |
7174 buf_delete_signs(buf); | |
7175 } | |
7 | 7176 else |
7177 { | |
3672 | 7178 /* ":sign unplace {id} file={fname}" */ |
7 | 7179 lnum = buf_delsign(buf, id); |
7180 update_debug_sign(buf, lnum); | |
7181 } | |
7182 } | |
7183 /* idx == SIGNCMD_PLACE */ | |
7184 else if (sign_name != NULL) | |
7185 { | |
7186 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7187 if (STRCMP(sp->sn_name, sign_name) == 0) | |
7188 break; | |
7189 if (sp == NULL) | |
7190 { | |
7191 EMSG2(_("E155: Unknown sign: %s"), sign_name); | |
7192 return; | |
7193 } | |
7194 if (lnum > 0) | |
7195 /* ":sign place {id} line={lnum} name={name} file={fname}": | |
7196 * place a sign */ | |
7197 buf_addsign(buf, id, lnum, sp->sn_typenr); | |
7198 else | |
7199 /* ":sign place {id} file={fname}": change sign type */ | |
7200 lnum = buf_change_sign_type(buf, id, sp->sn_typenr); | |
7201 update_debug_sign(buf, lnum); | |
7202 } | |
7203 else | |
7204 EMSG(_(e_invarg)); | |
7205 } | |
7206 } | |
7207 | |
7208 #if defined(FEAT_SIGN_ICONS) || defined(PROTO) | |
7209 /* | |
7210 * Allocate the icons. Called when the GUI has started. Allows defining | |
7211 * signs before it starts. | |
7212 */ | |
7213 void | |
7214 sign_gui_started() | |
7215 { | |
7216 sign_T *sp; | |
7217 | |
7218 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7219 if (sp->sn_icon != NULL) | |
7220 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7221 } | |
7222 #endif | |
7223 | |
7224 /* | |
7225 * List one sign. | |
7226 */ | |
7227 static void | |
7228 sign_list_defined(sp) | |
7229 sign_T *sp; | |
7230 { | |
7231 char_u *p; | |
7232 | |
274 | 7233 smsg((char_u *)"sign %s", sp->sn_name); |
7 | 7234 if (sp->sn_icon != NULL) |
7235 { | |
7236 MSG_PUTS(" icon="); | |
7237 msg_outtrans(sp->sn_icon); | |
7238 #ifdef FEAT_SIGN_ICONS | |
7239 if (sp->sn_image == NULL) | |
7240 MSG_PUTS(_(" (NOT FOUND)")); | |
7241 #else | |
7242 MSG_PUTS(_(" (not supported)")); | |
7243 #endif | |
7244 } | |
7245 if (sp->sn_text != NULL) | |
7246 { | |
7247 MSG_PUTS(" text="); | |
7248 msg_outtrans(sp->sn_text); | |
7249 } | |
7250 if (sp->sn_line_hl > 0) | |
7251 { | |
7252 MSG_PUTS(" linehl="); | |
7253 p = get_highlight_name(NULL, sp->sn_line_hl - 1); | |
7254 if (p == NULL) | |
7255 MSG_PUTS("NONE"); | |
7256 else | |
7257 msg_puts(p); | |
7258 } | |
7259 if (sp->sn_text_hl > 0) | |
7260 { | |
7261 MSG_PUTS(" texthl="); | |
7262 p = get_highlight_name(NULL, sp->sn_text_hl - 1); | |
7263 if (p == NULL) | |
7264 MSG_PUTS("NONE"); | |
7265 else | |
7266 msg_puts(p); | |
7267 } | |
7268 } | |
7269 | |
7270 /* | |
1828 | 7271 * Undefine a sign and free its memory. |
7272 */ | |
7273 static void | |
7274 sign_undefine(sp, sp_prev) | |
7275 sign_T *sp; | |
7276 sign_T *sp_prev; | |
7277 { | |
7278 vim_free(sp->sn_name); | |
7279 vim_free(sp->sn_icon); | |
7280 #ifdef FEAT_SIGN_ICONS | |
7281 if (sp->sn_image != NULL) | |
7282 { | |
7283 out_flush(); | |
7284 gui_mch_destroy_sign(sp->sn_image); | |
7285 } | |
7286 #endif | |
7287 vim_free(sp->sn_text); | |
7288 if (sp_prev == NULL) | |
7289 first_sign = sp->sn_next; | |
7290 else | |
7291 sp_prev->sn_next = sp->sn_next; | |
7292 vim_free(sp); | |
7293 } | |
7294 | |
7295 /* | |
7 | 7296 * Get highlighting attribute for sign "typenr". |
7297 * If "line" is TRUE: line highl, if FALSE: text highl. | |
7298 */ | |
7299 int | |
7300 sign_get_attr(typenr, line) | |
7301 int typenr; | |
7302 int line; | |
7303 { | |
7304 sign_T *sp; | |
7305 | |
7306 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7307 if (sp->sn_typenr == typenr) | |
7308 { | |
7309 if (line) | |
7310 { | |
7311 if (sp->sn_line_hl > 0) | |
7312 return syn_id2attr(sp->sn_line_hl); | |
7313 } | |
7314 else | |
7315 { | |
7316 if (sp->sn_text_hl > 0) | |
7317 return syn_id2attr(sp->sn_text_hl); | |
7318 } | |
7319 break; | |
7320 } | |
7321 return 0; | |
7322 } | |
7323 | |
7324 /* | |
7325 * Get text mark for sign "typenr". | |
7326 * Returns NULL if there isn't one. | |
7327 */ | |
7328 char_u * | |
7329 sign_get_text(typenr) | |
7330 int typenr; | |
7331 { | |
7332 sign_T *sp; | |
7333 | |
7334 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7335 if (sp->sn_typenr == typenr) | |
7336 return sp->sn_text; | |
7337 return NULL; | |
7338 } | |
7339 | |
7340 #if defined(FEAT_SIGN_ICONS) || defined(PROTO) | |
7341 void * | |
7342 sign_get_image(typenr) | |
7343 int typenr; /* the attribute which may have a sign */ | |
7344 { | |
7345 sign_T *sp; | |
7346 | |
7347 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7348 if (sp->sn_typenr == typenr) | |
7349 return sp->sn_image; | |
7350 return NULL; | |
7351 } | |
7352 #endif | |
7353 | |
7354 /* | |
7355 * Get the name of a sign by its typenr. | |
7356 */ | |
7357 char_u * | |
7358 sign_typenr2name(typenr) | |
7359 int typenr; | |
7360 { | |
7361 sign_T *sp; | |
7362 | |
7363 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7364 if (sp->sn_typenr == typenr) | |
7365 return sp->sn_name; | |
7366 return (char_u *)_("[Deleted]"); | |
7367 } | |
7368 | |
1828 | 7369 #if defined(EXITFREE) || defined(PROTO) |
7370 /* | |
7371 * Undefine/free all signs. | |
7372 */ | |
7373 void | |
7374 free_signs() | |
7375 { | |
7376 while (first_sign != NULL) | |
7377 sign_undefine(first_sign, NULL); | |
7378 } | |
7379 #endif | |
7380 | |
1868 | 7381 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
7382 static enum | |
7383 { | |
7384 EXP_SUBCMD, /* expand :sign sub-commands */ | |
7385 EXP_DEFINE, /* expand :sign define {name} args */ | |
7386 EXP_PLACE, /* expand :sign place {id} args */ | |
7387 EXP_UNPLACE, /* expand :sign unplace" */ | |
7388 EXP_SIGN_NAMES /* expand with name of placed signs */ | |
7389 } expand_what; | |
7390 | |
7391 /* | |
7392 * Function given to ExpandGeneric() to obtain the sign command | |
7393 * expansion. | |
7394 */ | |
7395 char_u * | |
7396 get_sign_name(xp, idx) | |
1876 | 7397 expand_T *xp UNUSED; |
1868 | 7398 int idx; |
7399 { | |
7400 sign_T *sp; | |
7401 int current_idx; | |
7402 | |
7403 switch (expand_what) | |
7404 { | |
7405 case EXP_SUBCMD: | |
7406 return (char_u *)cmds[idx]; | |
7407 case EXP_DEFINE: | |
7408 { | |
7409 char *define_arg[] = | |
7410 { | |
7411 "icon=", "linehl=", "text=", "texthl=", NULL | |
7412 }; | |
7413 return (char_u *)define_arg[idx]; | |
7414 } | |
7415 case EXP_PLACE: | |
7416 { | |
7417 char *place_arg[] = | |
7418 { | |
7419 "line=", "name=", "file=", "buffer=", NULL | |
7420 }; | |
7421 return (char_u *)place_arg[idx]; | |
7422 } | |
7423 case EXP_UNPLACE: | |
7424 { | |
7425 char *unplace_arg[] = { "file=", "buffer=", NULL }; | |
7426 return (char_u *)unplace_arg[idx]; | |
7427 } | |
7428 case EXP_SIGN_NAMES: | |
7429 /* Complete with name of signs already defined */ | |
7430 current_idx = 0; | |
7431 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7432 if (current_idx++ == idx) | |
7433 return sp->sn_name; | |
7434 return NULL; | |
7435 default: | |
7436 return NULL; | |
7437 } | |
7438 } | |
7439 | |
7440 /* | |
7441 * Handle command line completion for :sign command. | |
7442 */ | |
7443 void | |
7444 set_context_in_sign_cmd(xp, arg) | |
7445 expand_T *xp; | |
7446 char_u *arg; | |
7447 { | |
7448 char_u *p; | |
7449 char_u *end_subcmd; | |
7450 char_u *last; | |
7451 int cmd_idx; | |
7452 char_u *begin_subcmd_args; | |
7453 | |
7454 /* Default: expand subcommands. */ | |
7455 xp->xp_context = EXPAND_SIGN; | |
7456 expand_what = EXP_SUBCMD; | |
7457 xp->xp_pattern = arg; | |
7458 | |
7459 end_subcmd = skiptowhite(arg); | |
7460 if (*end_subcmd == NUL) | |
7461 /* expand subcmd name | |
7462 * :sign {subcmd}<CTRL-D>*/ | |
7463 return; | |
7464 | |
7465 cmd_idx = sign_cmd_idx(arg, end_subcmd); | |
7466 | |
7467 /* :sign {subcmd} {subcmd_args} | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7468 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7469 * begin_subcmd_args */ |
1868 | 7470 begin_subcmd_args = skipwhite(end_subcmd); |
7471 p = skiptowhite(begin_subcmd_args); | |
7472 if (*p == NUL) | |
7473 { | |
7474 /* | |
7475 * Expand first argument of subcmd when possible. | |
7476 * For ":jump {id}" and ":unplace {id}", we could | |
7477 * possibly expand the ids of all signs already placed. | |
7478 */ | |
7479 xp->xp_pattern = begin_subcmd_args; | |
7480 switch (cmd_idx) | |
7481 { | |
7482 case SIGNCMD_LIST: | |
7483 case SIGNCMD_UNDEFINE: | |
7484 /* :sign list <CTRL-D> | |
7485 * :sign undefine <CTRL-D> */ | |
7486 expand_what = EXP_SIGN_NAMES; | |
7487 break; | |
7488 default: | |
7489 xp->xp_context = EXPAND_NOTHING; | |
7490 } | |
7491 return; | |
7492 } | |
7493 | |
7494 /* expand last argument of subcmd */ | |
7495 | |
7496 /* :sign define {name} {args}... | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7497 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7498 * p */ |
1868 | 7499 |
7500 /* Loop until reaching last argument. */ | |
7501 do | |
7502 { | |
7503 p = skipwhite(p); | |
7504 last = p; | |
7505 p = skiptowhite(p); | |
7506 } while (*p != NUL); | |
7507 | |
7508 p = vim_strchr(last, '='); | |
7509 | |
7510 /* :sign define {name} {args}... {last}= | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7511 * | | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7512 * last p */ |
1868 | 7513 if (p == NUL) |
7514 { | |
7515 /* Expand last argument name (before equal sign). */ | |
7516 xp->xp_pattern = last; | |
7517 switch (cmd_idx) | |
7518 { | |
7519 case SIGNCMD_DEFINE: | |
7520 expand_what = EXP_DEFINE; | |
7521 break; | |
7522 case SIGNCMD_PLACE: | |
7523 expand_what = EXP_PLACE; | |
7524 break; | |
7525 case SIGNCMD_JUMP: | |
7526 case SIGNCMD_UNPLACE: | |
7527 expand_what = EXP_UNPLACE; | |
7528 break; | |
7529 default: | |
7530 xp->xp_context = EXPAND_NOTHING; | |
7531 } | |
7532 } | |
7533 else | |
7534 { | |
7535 /* Expand last argument value (after equal sign). */ | |
7536 xp->xp_pattern = p + 1; | |
7537 switch (cmd_idx) | |
7538 { | |
7539 case SIGNCMD_DEFINE: | |
7540 if (STRNCMP(last, "texthl", p - last) == 0 || | |
7541 STRNCMP(last, "linehl", p - last) == 0) | |
7542 xp->xp_context = EXPAND_HIGHLIGHT; | |
7543 else if (STRNCMP(last, "icon", p - last) == 0) | |
7544 xp->xp_context = EXPAND_FILES; | |
7545 else | |
7546 xp->xp_context = EXPAND_NOTHING; | |
7547 break; | |
7548 case SIGNCMD_PLACE: | |
7549 if (STRNCMP(last, "name", p - last) == 0) | |
7550 expand_what = EXP_SIGN_NAMES; | |
7551 else | |
7552 xp->xp_context = EXPAND_NOTHING; | |
7553 break; | |
7554 default: | |
7555 xp->xp_context = EXPAND_NOTHING; | |
7556 } | |
7557 } | |
7558 } | |
7559 #endif | |
7 | 7560 #endif |
7561 | |
7562 #if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO) | |
7563 /* | |
7564 * ":drop" | |
7565 * Opens the first argument in a window. When there are two or more arguments | |
7566 * the argument list is redefined. | |
7567 */ | |
7568 void | |
7569 ex_drop(eap) | |
7570 exarg_T *eap; | |
7571 { | |
7572 int split = FALSE; | |
7573 win_T *wp; | |
7574 buf_T *buf; | |
735 | 7575 # ifdef FEAT_WINDOWS |
7576 tabpage_T *tp; | |
7577 # endif | |
7 | 7578 |
7579 /* | |
7580 * Check if the first argument is already being edited in a window. If | |
7581 * so, jump to that window. | |
7582 * We would actually need to check all arguments, but that's complicated | |
7583 * and mostly only one file is dropped. | |
7584 * This also ignores wildcards, since it is very unlikely the user is | |
7585 * editing a file name with a wildcard character. | |
7586 */ | |
735 | 7587 set_arglist(eap->arg); |
7588 | |
1067 | 7589 /* |
7590 * Expanding wildcards may result in an empty argument list. E.g. when | |
7591 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we | |
7592 * already did an error message for this. | |
7593 */ | |
7594 if (ARGCOUNT == 0) | |
7595 return; | |
7596 | |
7 | 7597 # ifdef FEAT_WINDOWS |
735 | 7598 if (cmdmod.tab) |
7599 { | |
7600 /* ":tab drop file ...": open a tab for each argument that isn't | |
7601 * edited in a window yet. It's like ":tab all" but without closing | |
7602 * windows or tabs. */ | |
7603 ex_all(eap); | |
7604 } | |
7605 else | |
7 | 7606 # endif |
735 | 7607 { |
7608 /* ":drop file ...": Edit the first argument. Jump to an existing | |
7609 * window if possible, edit in current window if the current buffer | |
7610 * can be abandoned, otherwise open a new window. */ | |
7611 buf = buflist_findnr(ARGLIST[0].ae_fnum); | |
7612 | |
7613 FOR_ALL_TAB_WINDOWS(tp, wp) | |
7614 { | |
7615 if (wp->w_buffer == buf) | |
7 | 7616 { |
735 | 7617 # ifdef FEAT_WINDOWS |
825 | 7618 goto_tabpage_win(tp, wp); |
735 | 7619 # endif |
7 | 7620 curwin->w_arg_idx = 0; |
7621 return; | |
7622 } | |
7623 } | |
735 | 7624 |
7625 /* | |
7626 * Check whether the current buffer is changed. If so, we will need | |
7627 * to split the current window or data could be lost. | |
7628 * Skip the check if the 'hidden' option is set, as in this case the | |
7629 * buffer won't be lost. | |
7630 */ | |
7631 if (!P_HID(curbuf)) | |
7632 { | |
7 | 7633 # ifdef FEAT_WINDOWS |
735 | 7634 ++emsg_off; |
7 | 7635 # endif |
735 | 7636 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE); |
7 | 7637 # ifdef FEAT_WINDOWS |
735 | 7638 --emsg_off; |
7 | 7639 # else |
735 | 7640 if (split) |
7641 return; | |
7 | 7642 # endif |
735 | 7643 } |
7644 | |
7645 /* Fake a ":sfirst" or ":first" command edit the first argument. */ | |
7646 if (split) | |
7647 { | |
7648 eap->cmdidx = CMD_sfirst; | |
7649 eap->cmd[0] = 's'; | |
7650 } | |
7651 else | |
7652 eap->cmdidx = CMD_first; | |
7653 ex_rewind(eap); | |
7654 } | |
7 | 7655 } |
7656 #endif |