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