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