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