blob: 6461c3c08f70afad53238228cc76f87e1ec32f08 [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
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014#include "vim.h"
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#include "version.h"
16
Bram Moolenaar17576a12016-01-20 20:05:44 +010017#ifdef FEAT_FLOAT
18# include <float.h>
19#endif
20
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010021static int linelen(int *has_tab);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010022static void do_filter(linenr_T line1, linenr_T line2, exarg_T *eap, char_u *cmd, int do_in, int do_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +000023#ifdef FEAT_VIMINFO
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010024static char_u *viminfo_filename(char_u *);
25static void do_viminfo(FILE *fp_in, FILE *fp_out, int flags);
26static int viminfo_encoding(vir_T *virp);
27static int read_viminfo_up_to_marks(vir_T *virp, int forceit, int writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#endif
29
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010030static int check_readonly(int *forceit, buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000031#ifdef FEAT_AUTOCMD
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010032static void delbuf_msg(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000034static int
35#ifdef __BORLANDC__
36 _RTLENTRYF
37#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038 help_compare(const void *s1, const void *s2);
39static void prepare_help_buffer(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040
41/*
42 * ":ascii" and "ga".
43 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000044 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010045do_ascii(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +000046{
47 int c;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000048 int cval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000049 char buf1[20];
50 char buf2[20];
51 char_u buf3[7];
52#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +000053 int cc[MAX_MCO];
54 int ci = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000055 int len;
56
57 if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000058 c = utfc_ptr2char(ml_get_cursor(), cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000059 else
60#endif
61 c = gchar_cursor();
62 if (c == NUL)
63 {
64 MSG("NUL");
65 return;
66 }
67
68#ifdef FEAT_MBYTE
69 IObuff[0] = NUL;
70 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80)
71#endif
72 {
73 if (c == NL) /* NUL is stored as NL */
74 c = NUL;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000075 if (c == CAR && get_fileformat(curbuf) == EOL_MAC)
76 cval = NL; /* NL is stored as CR */
77 else
78 cval = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 if (vim_isprintc_strict(c) && (c < ' '
80#ifndef EBCDIC
81 || c > '~'
82#endif
83 ))
84 {
85 transchar_nonprint(buf3, c);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000086 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000087 }
88 else
89 buf1[0] = NUL;
90#ifndef EBCDIC
91 if (c >= 0x80)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000092 vim_snprintf(buf2, sizeof(buf2), " <M-%s>",
93 (char *)transchar(c & 0x7f));
Bram Moolenaar071d4272004-06-13 20:20:40 +000094 else
95#endif
96 buf2[0] = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +000097 vim_snprintf((char *)IObuff, IOSIZE,
98 _("<%s>%s%s %d, Hex %02x, Octal %03o"),
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000099 transchar(c), buf1, buf2, cval, cval, cval);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#ifdef FEAT_MBYTE
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000101 if (enc_utf8)
102 c = cc[ci++];
103 else
104 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105#endif
106 }
107
108#ifdef FEAT_MBYTE
109 /* Repeat for combining characters. */
110 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80)))
111 {
112 len = (int)STRLEN(IObuff);
113 /* This assumes every multi-byte char is printable... */
114 if (len > 0)
115 IObuff[len++] = ' ';
116 IObuff[len++] = '<';
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000117 if (enc_utf8 && utf_iscomposing(c)
Bram Moolenaar4770d092006-01-12 23:22:24 +0000118# ifdef USE_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119 && !gui.in_use
Bram Moolenaar4770d092006-01-12 23:22:24 +0000120# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 )
122 IObuff[len++] = ' '; /* draw composing char on top of a space */
Bram Moolenaar555b2802005-05-19 21:08:39 +0000123 len += (*mb_char2bytes)(c, IObuff + len);
124 vim_snprintf((char *)IObuff + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125 c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
126 : _("> %d, Hex %08x, Octal %o"), c, c, c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000127 if (ci == MAX_MCO)
128 break;
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000129 if (enc_utf8)
130 c = cc[ci++];
131 else
132 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 }
134#endif
135
136 msg(IObuff);
137}
138
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139/*
140 * ":left", ":center" and ":right": align text.
141 */
142 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100143ex_align(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144{
145 pos_T save_curpos;
146 int len;
147 int indent = 0;
148 int new_indent;
149 int has_tab;
150 int width;
151
152#ifdef FEAT_RIGHTLEFT
153 if (curwin->w_p_rl)
154 {
155 /* switch left and right aligning */
156 if (eap->cmdidx == CMD_right)
157 eap->cmdidx = CMD_left;
158 else if (eap->cmdidx == CMD_left)
159 eap->cmdidx = CMD_right;
160 }
161#endif
162
163 width = atoi((char *)eap->arg);
164 save_curpos = curwin->w_cursor;
165 if (eap->cmdidx == CMD_left) /* width is used for new indent */
166 {
167 if (width >= 0)
168 indent = width;
169 }
170 else
171 {
172 /*
173 * if 'textwidth' set, use it
174 * else if 'wrapmargin' set, use it
175 * if invalid value, use 80
176 */
177 if (width <= 0)
178 width = curbuf->b_p_tw;
179 if (width == 0 && curbuf->b_p_wm > 0)
180 width = W_WIDTH(curwin) - curbuf->b_p_wm;
181 if (width <= 0)
182 width = 80;
183 }
184
185 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
186 return;
187
188 for (curwin->w_cursor.lnum = eap->line1;
189 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum)
190 {
191 if (eap->cmdidx == CMD_left) /* left align */
192 new_indent = indent;
193 else
194 {
Bram Moolenaar89d40322006-08-29 15:30:07 +0000195 has_tab = FALSE; /* avoid uninit warnings */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 len = linelen(eap->cmdidx == CMD_right ? &has_tab
197 : NULL) - get_indent();
198
199 if (len <= 0) /* skip blank lines */
200 continue;
201
202 if (eap->cmdidx == CMD_center)
203 new_indent = (width - len) / 2;
204 else
205 {
206 new_indent = width - len; /* right align */
207
208 /*
209 * Make sure that embedded TABs don't make the text go too far
210 * to the right.
211 */
212 if (has_tab)
213 while (new_indent > 0)
214 {
215 (void)set_indent(new_indent, 0);
216 if (linelen(NULL) <= width)
217 {
218 /*
219 * Now try to move the line as much as possible to
220 * the right. Stop when it moves too far.
221 */
222 do
223 (void)set_indent(++new_indent, 0);
224 while (linelen(NULL) <= width);
225 --new_indent;
226 break;
227 }
228 --new_indent;
229 }
230 }
231 }
232 if (new_indent < 0)
233 new_indent = 0;
234 (void)set_indent(new_indent, 0); /* set indent */
235 }
236 changed_lines(eap->line1, 0, eap->line2 + 1, 0L);
237 curwin->w_cursor = save_curpos;
238 beginline(BL_WHITE | BL_FIX);
239}
240
241/*
242 * Get the length of the current line, excluding trailing white space.
243 */
244 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100245linelen(int *has_tab)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246{
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
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100276static int sort_ic; /* ignore case */
277static int sort_nr; /* sort on number */
278static int sort_rx; /* sort on regex instead of skipping it */
279#ifdef FEAT_FLOAT
280static int sort_flt; /* sort on floating number */
281#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000282
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100283static int sort_abort; /* flag to indicate if sorting has been interrupted */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000284
285/* Struct to store info to be sorted. */
286typedef struct
287{
288 linenr_T lnum; /* line number */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100289 union {
290 struct
291 {
292 long start_col_nr; /* starting column number */
293 long end_col_nr; /* ending column number */
294 } line;
295 long value; /* value if sorting by integer */
296#ifdef FEAT_FLOAT
297 float_T value_flt; /* value if sorting by float */
298#endif
299 } st_u;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000300} sorti_T;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000301
302static int
303#ifdef __BORLANDC__
304_RTLENTRYF
305#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100306sort_compare(const void *s1, const void *s2);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000307
308 static int
309#ifdef __BORLANDC__
310_RTLENTRYF
311#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100312sort_compare(const void *s1, const void *s2)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000313{
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000314 sorti_T l1 = *(sorti_T *)s1;
315 sorti_T l2 = *(sorti_T *)s2;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000316 int result = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000317
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000318 /* If the user interrupts, there's no way to stop qsort() immediately, but
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000319 * if we return 0 every time, qsort will assume it's done sorting and
320 * exit. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000321 if (sort_abort)
322 return 0;
323 fast_breakcheck();
324 if (got_int)
325 sort_abort = TRUE;
326
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000327 /* When sorting numbers "start_col_nr" is the number, not the column
328 * number. */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000329 if (sort_nr)
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100330 result = l1.st_u.value == l2.st_u.value ? 0
331 : l1.st_u.value > l2.st_u.value ? 1 : -1;
332#ifdef FEAT_FLOAT
333 else if (sort_flt)
334 result = l1.st_u.value_flt == l2.st_u.value_flt ? 0
335 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1;
336#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000337 else
338 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000339 /* We need to copy one line into "sortbuf1", because there is no
340 * guarantee that the first pointer becomes invalid when obtaining the
341 * second one. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100342 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.st_u.line.start_col_nr,
343 l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr + 1);
344 sortbuf1[l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr] = 0;
345 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.st_u.line.start_col_nr,
346 l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr + 1);
347 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000348
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000349 result = sort_ic ? STRICMP(sortbuf1, sortbuf2)
350 : STRCMP(sortbuf1, sortbuf2);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000351 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000352
353 /* If two lines have the same value, preserve the original line order. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000354 if (result == 0)
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000355 return (int)(l1.lnum - l2.lnum);
356 return result;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000357}
358
359/*
360 * ":sort".
361 */
362 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100363ex_sort(exarg_T *eap)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000364{
365 regmatch_T regmatch;
366 int len;
367 linenr_T lnum;
368 long maxlen = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000369 sorti_T *nrs;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000370 size_t count = (size_t)(eap->line2 - eap->line1 + 1);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000371 size_t i;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000372 char_u *p;
373 char_u *s;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000374 char_u *s2;
375 char_u c; /* temporary character storage */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000376 int unique = FALSE;
377 long deleted;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000378 colnr_T start_col;
379 colnr_T end_col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100380 int sort_what = 0;
381 int format_found = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000382
Bram Moolenaar48c99162008-02-18 18:42:52 +0000383 /* Sorting one line is really quick! */
384 if (count <= 1)
385 return;
386
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000387 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
388 return;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000389 sortbuf1 = NULL;
390 sortbuf2 = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000391 regmatch.regprog = NULL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000392 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000393 if (nrs == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000394 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000395
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100396 sort_abort = sort_ic = sort_rx = sort_nr = 0;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100397#ifdef FEAT_FLOAT
398 sort_flt = 0;
399#endif
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000400
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000401 for (p = eap->arg; *p != NUL; ++p)
402 {
403 if (vim_iswhite(*p))
404 ;
405 else if (*p == 'i')
406 sort_ic = TRUE;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000407 else if (*p == 'r')
408 sort_rx = TRUE;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000409 else if (*p == 'n')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100410 {
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100411 sort_nr = 1;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100412 ++format_found;
413 }
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100414#ifdef FEAT_FLOAT
415 else if (*p == 'f')
416 {
417 sort_flt = 1;
418 ++format_found;
419 }
420#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100421 else if (*p == 'b')
422 {
423 sort_what = STR2NR_BIN + STR2NR_FORCE;
424 ++format_found;
425 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000426 else if (*p == 'o')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100427 {
428 sort_what = STR2NR_OCT + STR2NR_FORCE;
429 ++format_found;
430 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000431 else if (*p == 'x')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100432 {
433 sort_what = STR2NR_HEX + STR2NR_FORCE;
434 ++format_found;
435 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000436 else if (*p == 'u')
437 unique = TRUE;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000438 else if (*p == '"') /* comment start */
439 break;
440 else if (check_nextcmd(p) != NULL)
441 {
442 eap->nextcmd = check_nextcmd(p);
443 break;
444 }
445 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000446 {
447 s = skip_regexp(p + 1, *p, TRUE, NULL);
448 if (*s != *p)
449 {
450 EMSG(_(e_invalpat));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000451 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000452 }
453 *s = NUL;
Bram Moolenaar1256e722007-07-10 15:26:20 +0000454 /* Use last search pattern if sort pattern is empty. */
Bram Moolenaar210f3702013-03-07 16:41:30 +0100455 if (s == p + 1)
456 {
457 if (last_search_pat() == NULL)
458 {
459 EMSG(_(e_noprevre));
460 goto sortend;
461 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000462 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
Bram Moolenaar210f3702013-03-07 16:41:30 +0100463 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000464 else
465 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000466 if (regmatch.regprog == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000467 goto sortend;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000468 p = s; /* continue after the regexp */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000469 regmatch.rm_ic = p_ic;
470 }
471 else
472 {
473 EMSG2(_(e_invarg2), p);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000474 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000475 }
476 }
477
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100478 /* Can only have one of 'n', 'b', 'o' and 'x'. */
479 if (format_found > 1)
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000480 {
481 EMSG(_(e_invarg));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000482 goto sortend;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000483 }
484
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100485 /* From here on "sort_nr" is used as a flag for any integer number
486 * sorting. */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100487 sort_nr += sort_what;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000488
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000489 /*
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000490 * Make an array with all line numbers. This avoids having to copy all
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000491 * the lines into allocated memory.
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000492 * When sorting on strings "start_col_nr" is the offset in the line, for
493 * numbers sorting it's the number to sort on. This means the pattern
494 * matching and number conversion only has to be done once per line.
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000495 * Also get the longest line length for allocating "sortbuf".
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000496 */
497 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
498 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000499 s = ml_get(lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000500 len = (int)STRLEN(s);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000501 if (maxlen < len)
502 maxlen = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000503
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000504 start_col = 0;
505 end_col = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000506 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0))
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000507 {
508 if (sort_rx)
509 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000510 start_col = (colnr_T)(regmatch.startp[0] - s);
511 end_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000512 }
513 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000514 start_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000515 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000516 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000517 if (regmatch.regprog != NULL)
518 end_col = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000519
Bram Moolenaar937204a2016-01-30 23:37:38 +0100520 if (sort_nr
521#ifdef FEAT_FLOAT
522 || sort_flt
523#endif
524 )
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000525 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000526 /* Make sure vim_str2nr doesn't read any digits past the end
527 * of the match, by temporarily terminating the string there */
528 s2 = s + end_col;
529 c = *s2;
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200530 *s2 = NUL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000531 /* Sorting on number: Store the number itself. */
Bram Moolenaar1387a602008-07-24 19:31:11 +0000532 p = s + start_col;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100533 if (sort_nr)
534 {
535 if (sort_what & STR2NR_HEX)
536 s = skiptohex(p);
537 else if (sort_what & STR2NR_BIN)
538 s = skiptobin(p);
539 else
540 s = skiptodigit(p);
541 if (s > p && s[-1] == '-')
542 --s; /* include preceding negative sign */
543 if (*s == NUL)
544 /* empty line should sort before any number */
545 nrs[lnum - eap->line1].st_u.value = -MAXLNUM;
546 else
547 vim_str2nr(s, NULL, NULL, sort_what,
548 &nrs[lnum - eap->line1].st_u.value, NULL, 0);
549 }
550#ifdef FEAT_FLOAT
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000551 else
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100552 {
553 s = skipwhite(p);
554 if (*s == '+')
555 s = skipwhite(s + 1);
556
557 if (*s == NUL)
558 /* empty line should sort before any number */
559 nrs[lnum - eap->line1].st_u.value_flt = -DBL_MAX;
560 else
561 nrs[lnum - eap->line1].st_u.value_flt =
562 strtod((char *)s, NULL);
563 }
564#endif
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200565 *s2 = c;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000566 }
567 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000568 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000569 /* Store the column to sort at. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100570 nrs[lnum - eap->line1].st_u.line.start_col_nr = start_col;
571 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000572 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000573
574 nrs[lnum - eap->line1].lnum = lnum;
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000575
576 if (regmatch.regprog != NULL)
577 fast_breakcheck();
578 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000579 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000580 }
581
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000582 /* Allocate a buffer that can hold the longest line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000583 sortbuf1 = alloc((unsigned)maxlen + 1);
584 if (sortbuf1 == NULL)
585 goto sortend;
586 sortbuf2 = alloc((unsigned)maxlen + 1);
587 if (sortbuf2 == NULL)
588 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000589
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000590 /* Sort the array of line numbers. Note: can't be interrupted! */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000591 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000592
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000593 if (sort_abort)
594 goto sortend;
595
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000596 /* Insert the lines in the sorted order below the last one. */
597 lnum = eap->line2;
598 for (i = 0; i < count; ++i)
599 {
600 s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum);
601 if (!unique || i == 0
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000602 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000603 {
Bram Moolenaar75e3ad02015-12-17 15:07:32 +0100604 /* Copy the line into a buffer, it may become invalid in
605 * ml_append(). And it's needed for "unique". */
606 STRCPY(sortbuf1, s);
607 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000608 break;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000609 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000610 fast_breakcheck();
611 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000612 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000613 }
614
615 /* delete the original lines if appending worked */
616 if (i == count)
617 for (i = 0; i < count; ++i)
618 ml_delete(eap->line1, FALSE);
619 else
620 count = 0;
621
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000622 /* Adjust marks for deleted (or added) lines and prepare for displaying. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000623 deleted = (long)(count - (lnum - eap->line2));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000624 if (deleted > 0)
625 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
626 else if (deleted < 0)
627 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
628 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000629
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000630 curwin->w_cursor.lnum = eap->line1;
631 beginline(BL_WHITE | BL_FIX);
632
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000633sortend:
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000634 vim_free(nrs);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000635 vim_free(sortbuf1);
636 vim_free(sortbuf2);
Bram Moolenaar473de612013-06-08 18:19:48 +0200637 vim_regfree(regmatch.regprog);
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000638 if (got_int)
639 EMSG(_(e_interr));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000640}
641
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642/*
643 * ":retab".
644 */
645 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100646ex_retab(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647{
648 linenr_T lnum;
649 int got_tab = FALSE;
650 long num_spaces = 0;
651 long num_tabs;
652 long len;
653 long col;
654 long vcol;
655 long start_col = 0; /* For start of white-space string */
656 long start_vcol = 0; /* For start of white-space string */
657 int temp;
658 long old_len;
659 char_u *ptr;
660 char_u *new_line = (char_u *)1; /* init to non-NULL */
661 int did_undo; /* called u_save for current line */
662 int new_ts;
663 int save_list;
664 linenr_T first_line = 0; /* first changed line */
665 linenr_T last_line = 0; /* last changed line */
666
667 save_list = curwin->w_p_list;
668 curwin->w_p_list = 0; /* don't want list mode here */
669
670 new_ts = getdigits(&(eap->arg));
671 if (new_ts < 0)
672 {
673 EMSG(_(e_positive));
674 return;
675 }
676 if (new_ts == 0)
677 new_ts = curbuf->b_p_ts;
678 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
679 {
680 ptr = ml_get(lnum);
681 col = 0;
682 vcol = 0;
683 did_undo = FALSE;
684 for (;;)
685 {
686 if (vim_iswhite(ptr[col]))
687 {
688 if (!got_tab && num_spaces == 0)
689 {
690 /* First consecutive white-space */
691 start_vcol = vcol;
692 start_col = col;
693 }
694 if (ptr[col] == ' ')
695 num_spaces++;
696 else
697 got_tab = TRUE;
698 }
699 else
700 {
701 if (got_tab || (eap->forceit && num_spaces > 1))
702 {
703 /* Retabulate this string of white-space */
704
705 /* len is virtual length of white string */
706 len = num_spaces = vcol - start_vcol;
707 num_tabs = 0;
708 if (!curbuf->b_p_et)
709 {
710 temp = new_ts - (start_vcol % new_ts);
711 if (num_spaces >= temp)
712 {
713 num_spaces -= temp;
714 num_tabs++;
715 }
716 num_tabs += num_spaces / new_ts;
717 num_spaces -= (num_spaces / new_ts) * new_ts;
718 }
719 if (curbuf->b_p_et || got_tab ||
720 (num_spaces + num_tabs < len))
721 {
722 if (did_undo == FALSE)
723 {
724 did_undo = TRUE;
725 if (u_save((linenr_T)(lnum - 1),
726 (linenr_T)(lnum + 1)) == FAIL)
727 {
728 new_line = NULL; /* flag out-of-memory */
729 break;
730 }
731 }
732
733 /* len is actual number of white characters used */
734 len = num_spaces + num_tabs;
735 old_len = (long)STRLEN(ptr);
736 new_line = lalloc(old_len - col + start_col + len + 1,
737 TRUE);
738 if (new_line == NULL)
739 break;
740 if (start_col > 0)
741 mch_memmove(new_line, ptr, (size_t)start_col);
742 mch_memmove(new_line + start_col + len,
743 ptr + col, (size_t)(old_len - col + 1));
744 ptr = new_line + start_col;
745 for (col = 0; col < len; col++)
746 ptr[col] = (col < num_tabs) ? '\t' : ' ';
747 ml_replace(lnum, new_line, FALSE);
748 if (first_line == 0)
749 first_line = lnum;
750 last_line = lnum;
751 ptr = new_line;
752 col = start_col + len;
753 }
754 }
755 got_tab = FALSE;
756 num_spaces = 0;
757 }
758 if (ptr[col] == NUL)
759 break;
760 vcol += chartabsize(ptr + col, (colnr_T)vcol);
761#ifdef FEAT_MBYTE
762 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000763 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 else
765#endif
766 ++col;
767 }
768 if (new_line == NULL) /* out of memory */
769 break;
770 line_breakcheck();
771 }
772 if (got_int)
773 EMSG(_(e_interr));
774
775 if (curbuf->b_p_ts != new_ts)
776 redraw_curbuf_later(NOT_VALID);
777 if (first_line != 0)
778 changed_lines(first_line, 0, last_line + 1, 0L);
779
780 curwin->w_p_list = save_list; /* restore 'list' */
781
782 curbuf->b_p_ts = new_ts;
783 coladvance(curwin->w_curswant);
784
785 u_clearline();
786}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787
788/*
789 * :move command - move lines line1-line2 to line dest
790 *
791 * return FAIL for failure, OK otherwise
792 */
793 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100794do_move(linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795{
796 char_u *str;
797 linenr_T l;
798 linenr_T extra; /* Num lines added before line1 */
799 linenr_T num_lines; /* Num lines moved */
800 linenr_T last_line; /* Last line in file after adding new text */
Bram Moolenaard5f69332015-04-15 12:43:50 +0200801#ifdef FEAT_FOLDING
802 int isFolded;
803
804 /* Moving lines seems to corrupt the folds, delete folding info now
805 * and recreate it when finished. Don't do this for manual folding, it
806 * would delete all folds. */
807 isFolded = hasAnyFolding(curwin) && !foldmethodIsManual(curwin);
808 if (isFolded)
809 deleteFoldRecurse(&curwin->w_folds);
810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
812 if (dest >= line1 && dest < line2)
813 {
814 EMSG(_("E134: Move lines into themselves"));
815 return FAIL;
816 }
817
818 num_lines = line2 - line1 + 1;
819
820 /*
821 * First we copy the old text to its new location -- webb
822 * Also copy the flag that ":global" command uses.
823 */
824 if (u_save(dest, dest + 1) == FAIL)
825 return FAIL;
826 for (extra = 0, l = line1; l <= line2; l++)
827 {
828 str = vim_strsave(ml_get(l + extra));
829 if (str != NULL)
830 {
831 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
832 vim_free(str);
833 if (dest < line1)
834 extra++;
835 }
836 }
837
838 /*
839 * Now we must be careful adjusting our marks so that we don't overlap our
840 * mark_adjust() calls.
841 *
842 * We adjust the marks within the old text so that they refer to the
843 * last lines of the file (temporarily), because we know no other marks
844 * will be set there since these line numbers did not exist until we added
845 * our new lines.
846 *
847 * Then we adjust the marks on lines between the old and new text positions
848 * (either forwards or backwards).
849 *
850 * And Finally we adjust the marks we put at the end of the file back to
851 * their final destination at the new text position -- webb
852 */
853 last_line = curbuf->b_ml.ml_line_count;
854 mark_adjust(line1, line2, last_line - line2, 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200855 changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 if (dest >= line2)
857 {
858 mark_adjust(line2 + 1, dest, -num_lines, 0L);
859 curbuf->b_op_start.lnum = dest - num_lines + 1;
860 curbuf->b_op_end.lnum = dest;
861 }
862 else
863 {
864 mark_adjust(dest + 1, line1 - 1, num_lines, 0L);
865 curbuf->b_op_start.lnum = dest + 1;
866 curbuf->b_op_end.lnum = dest + num_lines;
867 }
868 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
869 mark_adjust(last_line - num_lines + 1, last_line,
870 -(last_line - dest - extra), 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200871 changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872
873 /*
874 * Now we delete the original text -- webb
875 */
876 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
877 return FAIL;
878
879 for (l = line1; l <= line2; l++)
880 ml_delete(line1 + extra, TRUE);
881
882 if (!global_busy && num_lines > p_report)
883 {
884 if (num_lines == 1)
885 MSG(_("1 line moved"));
886 else
887 smsg((char_u *)_("%ld lines moved"), num_lines);
888 }
889
890 /*
891 * Leave the cursor on the last of the moved lines.
892 */
893 if (dest >= line1)
894 curwin->w_cursor.lnum = dest;
895 else
896 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
897
898 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +0100899 {
900 dest += num_lines + 1;
901 last_line = curbuf->b_ml.ml_line_count;
902 if (dest > last_line + 1)
903 dest = last_line + 1;
904 changed_lines(line1, 0, dest, 0L);
905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 else
907 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
908
Bram Moolenaard5f69332015-04-15 12:43:50 +0200909#ifdef FEAT_FOLDING
910 /* recreate folds */
911 if (isFolded)
912 foldUpdateAll(curwin);
913#endif
914
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 return OK;
916}
917
918/*
919 * ":copy"
920 */
921 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100922ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923{
924 linenr_T count;
925 char_u *p;
926
927 count = line2 - line1 + 1;
928 curbuf->b_op_start.lnum = n + 1;
929 curbuf->b_op_end.lnum = n + count;
930 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
931
932 /*
933 * there are three situations:
934 * 1. destination is above line1
935 * 2. destination is between line1 and line2
936 * 3. destination is below line2
937 *
938 * n = destination (when starting)
939 * curwin->w_cursor.lnum = destination (while copying)
940 * line1 = start of source (while copying)
941 * line2 = end of source (while copying)
942 */
943 if (u_save(n, n + 1) == FAIL)
944 return;
945
946 curwin->w_cursor.lnum = n;
947 while (line1 <= line2)
948 {
949 /* need to use vim_strsave() because the line will be unlocked within
950 * ml_append() */
951 p = vim_strsave(ml_get(line1));
952 if (p != NULL)
953 {
954 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
955 vim_free(p);
956 }
957 /* situation 2: skip already copied lines */
958 if (line1 == n)
959 line1 = curwin->w_cursor.lnum;
960 ++line1;
961 if (curwin->w_cursor.lnum < line1)
962 ++line1;
963 if (curwin->w_cursor.lnum < line2)
964 ++line2;
965 ++curwin->w_cursor.lnum;
966 }
967
968 appended_lines_mark(n, count);
969
970 msgmore((long)count);
971}
972
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000973static char_u *prevcmd = NULL; /* the previous command */
974
975#if defined(EXITFREE) || defined(PROTO)
976 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100977free_prev_shellcmd(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000978{
979 vim_free(prevcmd);
980}
981#endif
982
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983/*
984 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
985 * Bangs in the argument are replaced with the previously entered command.
986 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 */
988 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100989do_bang(
990 int addr_count,
991 exarg_T *eap,
992 int forceit,
993 int do_in,
994 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995{
996 char_u *arg = eap->arg; /* command */
997 linenr_T line1 = eap->line1; /* start of range */
998 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 char_u *newcmd = NULL; /* the new command */
1000 int free_newcmd = FALSE; /* need to free() newcmd */
1001 int ins_prevcmd;
1002 char_u *t;
1003 char_u *p;
1004 char_u *trailarg;
1005 int len;
1006 int scroll_save = msg_scroll;
1007
1008 /*
1009 * Disallow shell commands for "rvim".
1010 * Disallow shell commands from .exrc and .vimrc in current directory for
1011 * security reasons.
1012 */
1013 if (check_restricted() || check_secure())
1014 return;
1015
1016 if (addr_count == 0) /* :! */
1017 {
1018 msg_scroll = FALSE; /* don't scroll here */
1019 autowrite_all();
1020 msg_scroll = scroll_save;
1021 }
1022
1023 /*
1024 * Try to find an embedded bang, like in :!<cmd> ! [args]
1025 * (:!! is indicated by the 'forceit' variable)
1026 */
1027 ins_prevcmd = forceit;
1028 trailarg = arg;
1029 do
1030 {
1031 len = (int)STRLEN(trailarg) + 1;
1032 if (newcmd != NULL)
1033 len += (int)STRLEN(newcmd);
1034 if (ins_prevcmd)
1035 {
1036 if (prevcmd == NULL)
1037 {
1038 EMSG(_(e_noprev));
1039 vim_free(newcmd);
1040 return;
1041 }
1042 len += (int)STRLEN(prevcmd);
1043 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001044 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 {
1046 vim_free(newcmd);
1047 return;
1048 }
1049 *t = NUL;
1050 if (newcmd != NULL)
1051 STRCAT(t, newcmd);
1052 if (ins_prevcmd)
1053 STRCAT(t, prevcmd);
1054 p = t + STRLEN(t);
1055 STRCAT(t, trailarg);
1056 vim_free(newcmd);
1057 newcmd = t;
1058
1059 /*
1060 * Scan the rest of the argument for '!', which is replaced by the
1061 * previous command. "\!" is replaced by "!" (this is vi compatible).
1062 */
1063 trailarg = NULL;
1064 while (*p)
1065 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001066 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 {
1068 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001069 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 else
1071 {
1072 trailarg = p;
1073 *trailarg++ = NUL;
1074 ins_prevcmd = TRUE;
1075 break;
1076 }
1077 }
1078 ++p;
1079 }
1080 } while (trailarg != NULL);
1081
1082 vim_free(prevcmd);
1083 prevcmd = newcmd;
1084
1085 if (bangredo) /* put cmd in redo buffer for ! command */
1086 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001087 /* If % or # appears in the command, it must have been escaped.
1088 * Reescape them, so that redoing them does not substitute them by the
1089 * buffername. */
1090 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1091
1092 if (cmd != NULL)
1093 {
1094 AppendToRedobuffLit(cmd, -1);
1095 vim_free(cmd);
1096 }
1097 else
1098 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 AppendToRedobuff((char_u *)"\n");
1100 bangredo = FALSE;
1101 }
1102 /*
1103 * Add quotes around the command, for shells that need them.
1104 */
1105 if (*p_shq != NUL)
1106 {
1107 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1108 if (newcmd == NULL)
1109 return;
1110 STRCPY(newcmd, p_shq);
1111 STRCAT(newcmd, prevcmd);
1112 STRCAT(newcmd, p_shq);
1113 free_newcmd = TRUE;
1114 }
1115 if (addr_count == 0) /* :! */
1116 {
1117 /* echo the command */
1118 msg_start();
1119 msg_putchar(':');
1120 msg_putchar('!');
1121 msg_outtrans(newcmd);
1122 msg_clr_eos();
1123 windgoto(msg_row, msg_col);
1124
1125 do_shell(newcmd, 0);
1126 }
1127 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001128 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 /* Careful: This may recursively call do_bang() again! (because of
1130 * autocommands) */
1131 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001132#ifdef FEAT_AUTOCMD
1133 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
1134#endif
1135 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 if (free_newcmd)
1137 vim_free(newcmd);
1138}
1139
1140/*
1141 * do_filter: filter lines through a command given by the user
1142 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001143 * We mostly use temp files and the call_shell() routine here. This would
1144 * normally be done using pipes on a UNIX machine, but this is more portable
1145 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 * to deal with redirection somehow, and should handle things like looking
1147 * at the PATH env. variable, and adding reasonable extensions to the
1148 * command name given by the user. All reasonable versions of call_shell()
1149 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001150 * Alternatively, if on Unix and redirecting input or output, but not both,
1151 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 * We use input redirection if do_in is TRUE.
1153 * We use output redirection if do_out is TRUE.
1154 */
1155 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001156do_filter(
1157 linenr_T line1,
1158 linenr_T line2,
1159 exarg_T *eap, /* for forced 'ff' and 'fenc' */
1160 char_u *cmd,
1161 int do_in,
1162 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163{
1164 char_u *itmp = NULL;
1165 char_u *otmp = NULL;
1166 linenr_T linecount;
1167 linenr_T read_linecount;
1168 pos_T cursor_save;
1169 char_u *cmd_buf;
1170#ifdef FEAT_AUTOCMD
1171 buf_T *old_curbuf = curbuf;
1172#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001173 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174
1175 if (*cmd == NUL) /* no filter command */
1176 return;
1177
1178#ifdef WIN3264
1179 /*
1180 * Check if external commands are allowed now.
1181 */
1182 if (can_end_termcap_mode(TRUE) == FALSE)
1183 return;
1184#endif
1185
1186 cursor_save = curwin->w_cursor;
1187 linecount = line2 - line1 + 1;
1188 curwin->w_cursor.lnum = line1;
1189 curwin->w_cursor.col = 0;
1190 changed_line_abv_curs();
1191 invalidate_botline();
1192
1193 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001194 * When using temp files:
1195 * 1. * Form temp file names
1196 * 2. * Write the lines to a temp file
1197 * 3. Run the filter command on the temp file
1198 * 4. * Read the output of the command into the buffer
1199 * 5. * Delete the original lines to be filtered
1200 * 6. * Remove the temp files
1201 *
1202 * When writing the input with a pipe or when catching the output with a
1203 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 */
1205
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001206 if (do_out)
1207 shell_flags |= SHELL_DOOUT;
1208
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001209#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001210 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001212 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1213 shell_flags |= SHELL_READ;
1214 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001216 else if (do_in && !do_out && !p_stmp)
1217 {
1218 /* Use a pipe to write stdin of the command, do not use a temp file. */
1219 shell_flags |= SHELL_WRITE;
1220 curbuf->b_op_start.lnum = line1;
1221 curbuf->b_op_end.lnum = line2;
1222 }
1223 else if (do_in && do_out && !p_stmp)
1224 {
1225 /* Use a pipe to write stdin and fetch stdout of the command, do not
1226 * use a temp file. */
1227 shell_flags |= SHELL_READ|SHELL_WRITE;
1228 curbuf->b_op_start.lnum = line1;
1229 curbuf->b_op_end.lnum = line2;
1230 curwin->w_cursor.lnum = line2;
1231 }
1232 else
1233#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001234 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1235 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001236 {
1237 EMSG(_(e_notmp));
1238 goto filterend;
1239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240
1241/*
1242 * The writing and reading of temp files will not be shown.
1243 * Vi also doesn't do this and the messages are not very informative.
1244 */
1245 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001246 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 FALSE, FALSE, FALSE, TRUE) == FAIL)
1248 {
1249 msg_putchar('\n'); /* keep message from buf_write() */
1250 --no_wait_return;
1251#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1252 if (!aborting())
1253#endif
1254 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1255 goto filterend;
1256 }
1257#ifdef FEAT_AUTOCMD
1258 if (curbuf != old_curbuf)
1259 goto filterend;
1260#endif
1261
1262 if (!do_out)
1263 msg_putchar('\n');
1264
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001265 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1267 if (cmd_buf == NULL)
1268 goto filterend;
1269
1270 windgoto((int)Rows - 1, 0);
1271 cursor_on();
1272
1273 /*
1274 * When not redirecting the output the command can write anything to the
1275 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1276 * stderr output of external command. Clear the screen later.
1277 * If do_in is FALSE, this could be something like ":r !cat", which may
1278 * also mess up the screen, clear it later.
1279 */
1280 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1281 redraw_later_clear();
1282
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001283 if (do_out)
1284 {
1285 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001286 {
1287 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001288 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001289 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001290 redraw_curbuf_later(VALID);
1291 }
1292 read_linecount = curbuf->b_ml.ml_line_count;
1293
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 /*
1295 * When call_shell() fails wait_return() is called to give the user a
1296 * chance to read the error messages. Otherwise errors are ignored, so you
1297 * can see the error messages from the command that appear on stdout; use
1298 * 'u' to fix the text
1299 * Switch to cooked mode when not redirecting stdin, avoids that something
1300 * like ":r !cat" hangs.
1301 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1302 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001303 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 {
1305 redraw_later_clear();
1306 wait_return(FALSE);
1307 }
1308 vim_free(cmd_buf);
1309
1310 did_check_timestamps = FALSE;
1311 need_check_timestamps = TRUE;
1312
1313 /* When interrupting the shell command, it may still have produced some
1314 * useful output. Reset got_int here, so that readfile() won't cancel
1315 * reading. */
1316 ui_breakcheck();
1317 got_int = FALSE;
1318
1319 if (do_out)
1320 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001321 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001323 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
1324 eap, READ_FILTER) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001326#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1327 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001329 {
1330 msg_putchar('\n');
1331 EMSG2(_(e_notread), otmp);
1332 }
1333 goto error;
1334 }
1335#ifdef FEAT_AUTOCMD
1336 if (curbuf != old_curbuf)
1337 goto filterend;
1338#endif
1339 }
1340
1341 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1342
1343 if (shell_flags & SHELL_READ)
1344 {
1345 curbuf->b_op_start.lnum = line2 + 1;
1346 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1347 appended_lines_mark(line2, read_linecount);
1348 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349
1350 if (do_in)
1351 {
1352 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1353 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 if (read_linecount >= linecount)
1355 /* move all marks from old lines to new lines */
1356 mark_adjust(line1, line2, linecount, 0L);
1357 else
1358 {
1359 /* move marks from old lines to new lines, delete marks
1360 * that are in deleted lines */
1361 mark_adjust(line1, line1 + read_linecount - 1,
1362 linecount, 0L);
1363 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1364 }
1365 }
1366
1367 /*
1368 * Put cursor on first filtered line for ":range!cmd".
1369 * Adjust '[ and '] (set by buf_write()).
1370 */
1371 curwin->w_cursor.lnum = line1;
1372 del_lines(linecount, TRUE);
1373 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1374 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1375 write_lnum_adjust(-linecount); /* adjust last line
1376 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001377#ifdef FEAT_FOLDING
1378 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1379#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 }
1381 else
1382 {
1383 /*
1384 * Put cursor on last new line for ":r !cmd".
1385 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001387 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001389
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1391 --no_wait_return;
1392
1393 if (linecount > p_report)
1394 {
1395 if (do_in)
1396 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001397 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1398 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001401 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 }
1403 else
1404 msgmore((long)linecount);
1405 }
1406 }
1407 else
1408 {
1409error:
1410 /* put cursor back in same position for ":w !cmd" */
1411 curwin->w_cursor = cursor_save;
1412 --no_wait_return;
1413 wait_return(FALSE);
1414 }
1415
1416filterend:
1417
1418#ifdef FEAT_AUTOCMD
1419 if (curbuf != old_curbuf)
1420 {
1421 --no_wait_return;
1422 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1423 }
1424#endif
1425 if (itmp != NULL)
1426 mch_remove(itmp);
1427 if (otmp != NULL)
1428 mch_remove(otmp);
1429 vim_free(itmp);
1430 vim_free(otmp);
1431}
1432
1433/*
1434 * Call a shell to execute a command.
1435 * When "cmd" is NULL start an interactive shell.
1436 */
1437 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001438do_shell(
1439 char_u *cmd,
1440 int flags) /* may be SHELL_DOOUT when output is redirected */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441{
1442 buf_T *buf;
1443#ifndef FEAT_GUI_MSWIN
1444 int save_nwr;
1445#endif
1446#ifdef MSWIN
1447 int winstart = FALSE;
1448#endif
1449
1450 /*
1451 * Disallow shell commands for "rvim".
1452 * Disallow shell commands from .exrc and .vimrc in current directory for
1453 * security reasons.
1454 */
1455 if (check_restricted() || check_secure())
1456 {
1457 msg_end();
1458 return;
1459 }
1460
1461#ifdef MSWIN
1462 /*
1463 * Check if external commands are allowed now.
1464 */
1465 if (can_end_termcap_mode(TRUE) == FALSE)
1466 return;
1467
1468 /*
1469 * Check if ":!start" is used.
1470 */
1471 if (cmd != NULL)
1472 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1473#endif
1474
1475 /*
1476 * For autocommands we want to get the output on the current screen, to
1477 * avoid having to type return below.
1478 */
1479 msg_putchar('\r'); /* put cursor at start of line */
1480#ifdef FEAT_AUTOCMD
1481 if (!autocmd_busy)
1482#endif
1483 {
1484#ifdef MSWIN
1485 if (!winstart)
1486#endif
1487 stoptermcap();
1488 }
1489#ifdef MSWIN
1490 if (!winstart)
1491#endif
1492 msg_putchar('\n'); /* may shift screen one line up */
1493
1494 /* warning message before calling the shell */
1495 if (p_warn
1496#ifdef FEAT_AUTOCMD
1497 && !autocmd_busy
1498#endif
1499 && msg_silent == 0)
1500 for (buf = firstbuf; buf; buf = buf->b_next)
1501 if (bufIsChanged(buf))
1502 {
1503#ifdef FEAT_GUI_MSWIN
1504 if (!winstart)
1505 starttermcap(); /* don't want a message box here */
1506#endif
1507 MSG_PUTS(_("[No write since last change]\n"));
1508#ifdef FEAT_GUI_MSWIN
1509 if (!winstart)
1510 stoptermcap();
1511#endif
1512 break;
1513 }
1514
1515 /* This windgoto is required for when the '\n' resulted in a "delete line
1516 * 1" command to the terminal. */
1517 if (!swapping_screen())
1518 windgoto(msg_row, msg_col);
1519 cursor_on();
1520 (void)call_shell(cmd, SHELL_COOKED | flags);
1521 did_check_timestamps = FALSE;
1522 need_check_timestamps = TRUE;
1523
1524 /*
1525 * put the message cursor at the end of the screen, avoids wait_return()
1526 * to overwrite the text that the external command showed
1527 */
1528 if (!swapping_screen())
1529 {
1530 msg_row = Rows - 1;
1531 msg_col = 0;
1532 }
1533
1534#ifdef FEAT_AUTOCMD
1535 if (autocmd_busy)
1536 {
1537 if (msg_silent == 0)
1538 redraw_later_clear();
1539 }
1540 else
1541#endif
1542 {
1543 /*
1544 * For ":sh" there is no need to call wait_return(), just redraw.
1545 * Also for the Win32 GUI (the output is in a console window).
1546 * Otherwise there is probably text on the screen that the user wants
1547 * to read before redrawing, so call wait_return().
1548 */
1549#ifndef FEAT_GUI_MSWIN
1550 if (cmd == NULL
1551# ifdef WIN3264
1552 || (winstart && !need_wait_return)
1553# endif
1554 )
1555 {
1556 if (msg_silent == 0)
1557 redraw_later_clear();
1558 need_wait_return = FALSE;
1559 }
1560 else
1561 {
1562 /*
1563 * If we switch screens when starttermcap() is called, we really
1564 * want to wait for "hit return to continue".
1565 */
1566 save_nwr = no_wait_return;
1567 if (swapping_screen())
1568 no_wait_return = FALSE;
1569# ifdef AMIGA
1570 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1571# else
1572 wait_return(msg_silent == 0);
1573# endif
1574 no_wait_return = save_nwr;
1575 }
1576#endif /* FEAT_GUI_W32 */
1577
1578#ifdef MSWIN
1579 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1580#endif
1581 starttermcap(); /* start termcap if not done by wait_return() */
1582
1583 /*
1584 * In an Amiga window redrawing is caused by asking the window size.
1585 * If we got an interrupt this will not work. The chance that the
1586 * window size is wrong is very small, but we need to redraw the
1587 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1588 * but it saves an extra redraw.
1589 */
1590#ifdef AMIGA
1591 if (skip_redraw) /* ':' hit in wait_return() */
1592 {
1593 if (msg_silent == 0)
1594 redraw_later_clear();
1595 }
1596 else if (term_console)
1597 {
1598 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1599 if (got_int && msg_silent == 0)
1600 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1601 else
1602 must_redraw = 0; /* no extra redraw needed */
1603 }
1604#endif
1605 }
1606
1607 /* display any error messages now */
1608 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001609
1610#ifdef FEAT_AUTOCMD
1611 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
1612#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613}
1614
1615/*
1616 * Create a shell command from a command string, input redirection file and
1617 * output redirection file.
1618 * Returns an allocated string with the shell command, or NULL for failure.
1619 */
1620 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001621make_filter_cmd(
1622 char_u *cmd, /* command */
1623 char_u *itmp, /* NULL or name of input file */
1624 char_u *otmp) /* NULL or name of output file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625{
1626 char_u *buf;
1627 long_u len;
1628
Bram Moolenaar53076832015-12-31 19:53:21 +01001629#if defined(UNIX)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001630 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001631 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001632
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001633 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001634 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1635 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001636 if (is_fish_shell)
1637 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1638 else
1639#endif
1640 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 if (itmp != NULL)
1642 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1643 if (otmp != NULL)
1644 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1645 buf = lalloc(len, TRUE);
1646 if (buf == NULL)
1647 return NULL;
1648
Bram Moolenaar53076832015-12-31 19:53:21 +01001649#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001651 * Put braces around the command (for concatenated commands) when
1652 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001654 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001655 {
1656 if (is_fish_shell)
1657 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1658 else
1659 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1660 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001661 else
1662 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 if (itmp != NULL)
1664 {
1665 STRCAT(buf, " < ");
1666 STRCAT(buf, itmp);
1667 }
1668#else
1669 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001670 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 * the use of commands in a pipe.
1672 */
1673 STRCPY(buf, cmd);
1674 if (itmp != NULL)
1675 {
1676 char_u *p;
1677
1678 /*
1679 * If there is a pipe, we have to put the '<' in front of it.
1680 * Don't do this when 'shellquote' is not empty, otherwise the
1681 * redirection would be inside the quotes.
1682 */
1683 if (*p_shq == NUL)
1684 {
1685 p = vim_strchr(buf, '|');
1686 if (p != NULL)
1687 *p = NUL;
1688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1690 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 if (*p_shq == NUL)
1692 {
1693 p = vim_strchr(cmd, '|');
1694 if (p != NULL)
1695 {
1696 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1697 STRCAT(buf, p);
1698 }
1699 }
1700 }
1701#endif
1702 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001703 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704
1705 return buf;
1706}
1707
1708/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001709 * Append output redirection for file "fname" to the end of string buffer
1710 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 * Works with the 'shellredir' and 'shellpipe' options.
1712 * The caller should make sure that there is enough room:
1713 * STRLEN(opt) + STRLEN(fname) + 3
1714 */
1715 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001716append_redir(
1717 char_u *buf,
1718 int buflen,
1719 char_u *opt,
1720 char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721{
1722 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001723 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001725 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001726 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001728 {
1729 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001731 if (p[1] == '%') /* skip %% */
1732 ++p;
1733 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 if (p != NULL)
1735 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001736 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1737 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1738 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 }
1740 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001741 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 " %s %s",
1744#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746#endif
1747 (char *)opt, (char *)fname);
1748}
1749
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001750#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001752static int no_viminfo(void);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001753static void write_viminfo_barlines(vir_T *virp, FILE *fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754static int viminfo_errcnt;
1755
1756 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001757no_viminfo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758{
1759 /* "vim -i NONE" does not read or write a viminfo file */
1760 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0);
1761}
1762
1763/*
1764 * Report an error for reading a viminfo file.
1765 * Count the number of errors. When there are more than 10, return TRUE.
1766 */
1767 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001768viminfo_error(char *errnum, char *message, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001770 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1771 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001772 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001773 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1774 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 emsg(IObuff);
1776 if (++viminfo_errcnt >= 10)
1777 {
1778 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1779 return TRUE;
1780 }
1781 return FALSE;
1782}
1783
1784/*
1785 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001786 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 */
1788 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001789read_viminfo(
1790 char_u *file, /* file name or NULL to use default name */
1791 int flags) /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792{
1793 FILE *fp;
1794 char_u *fname;
1795
1796 if (no_viminfo())
1797 return FAIL;
1798
Bram Moolenaard812df62008-11-09 12:46:09 +00001799 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 if (fname == NULL)
1801 return FAIL;
1802 fp = mch_fopen((char *)fname, READBIN);
1803
1804 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001805 {
1806 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001807 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1808 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001809 (flags & VIF_WANT_INFO) ? _(" info") : "",
1810 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1811 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001812 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001813 verbose_leave();
1814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815
1816 vim_free(fname);
1817 if (fp == NULL)
1818 return FAIL;
1819
1820 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001821 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822
1823 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 return OK;
1825}
1826
1827/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001828 * Write the viminfo file. The old one is read in first so that effectively a
1829 * merge of current info and old info is done. This allows multiple vims to
1830 * run simultaneously, without losing any marks etc.
1831 * If "forceit" is TRUE, then the old file is not read in, and only internal
1832 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 */
1834 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001835write_viminfo(char_u *file, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836{
1837 char_u *fname;
1838 FILE *fp_in = NULL; /* input viminfo file, if any */
1839 FILE *fp_out = NULL; /* output viminfo file */
1840 char_u *tempname = NULL; /* name of temp viminfo file */
1841 struct stat st_new; /* mch_stat() of potential new file */
1842 char_u *wp;
1843#if defined(UNIX) || defined(VMS)
1844 mode_t umask_save;
1845#endif
1846#ifdef UNIX
1847 int shortname = FALSE; /* use 8.3 file name */
1848 struct stat st_old; /* mch_stat() of existing viminfo file */
1849#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001850#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001851 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001852#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853
1854 if (no_viminfo())
1855 return;
1856
1857 fname = viminfo_filename(file); /* may set to default if NULL */
1858 if (fname == NULL)
1859 return;
1860
1861 fp_in = mch_fopen((char *)fname, READBIN);
1862 if (fp_in == NULL)
1863 {
1864 /* if it does exist, but we can't read it, don't try writing */
1865 if (mch_stat((char *)fname, &st_new) == 0)
1866 goto end;
1867#if defined(UNIX) || defined(VMS)
1868 /*
1869 * For Unix we create the .viminfo non-accessible for others,
1870 * because it may contain text from non-accessible documents.
1871 */
1872 umask_save = umask(077);
1873#endif
1874 fp_out = mch_fopen((char *)fname, WRITEBIN);
1875#if defined(UNIX) || defined(VMS)
1876 (void)umask(umask_save);
1877#endif
1878 }
1879 else
1880 {
1881 /*
1882 * There is an existing viminfo file. Create a temporary file to
1883 * write the new viminfo into, in the same directory as the
1884 * existing viminfo file, which will be renamed later.
1885 */
1886#ifdef UNIX
1887 /*
1888 * For Unix we check the owner of the file. It's not very nice to
1889 * overwrite a user's viminfo file after a "su root", with a
1890 * viminfo file that the user can't read.
1891 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001892 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001893 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001895 if (mch_stat((char *)fname, &st_old) == 0
1896 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001897 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 ? (st_old.st_mode & 0200)
1899 : (st_old.st_gid == getgid()
1900 ? (st_old.st_mode & 0020)
1901 : (st_old.st_mode & 0002))))
1902 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001903 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904
1905 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1907 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001908 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 goto end;
1910 }
1911#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001912#ifdef WIN3264
1913 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001914 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001915#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916
1917 /*
1918 * Make tempname.
1919 * May try twice: Once normal and once with shortname set, just in
1920 * case somebody puts his viminfo file in an 8.3 filesystem.
1921 */
1922 for (;;)
1923 {
1924 tempname = buf_modname(
1925#ifdef UNIX
1926 shortname,
1927#else
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001928# ifdef FEAT_GUI_W32
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 gui_is_win32s(),
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001930# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932# endif
1933#endif
1934 fname,
1935#ifdef VMS
1936 (char_u *)"-tmp",
1937#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939#endif
1940 FALSE);
1941 if (tempname == NULL) /* out of memory */
1942 break;
1943
1944 /*
1945 * Check if tempfile already exists. Never overwrite an
1946 * existing file!
1947 */
1948 if (mch_stat((char *)tempname, &st_new) == 0)
1949 {
1950#ifdef UNIX
1951 /*
1952 * Check if tempfile is same as original file. May happen
1953 * when modname() gave the same file back. E.g. silly
1954 * link, or file name-length reached. Try again with
1955 * shortname set.
1956 */
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001957 if (!shortname && st_new.st_dev == st_old.st_dev
1958 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 {
1960 vim_free(tempname);
1961 tempname = NULL;
1962 shortname = TRUE;
1963 continue;
1964 }
1965#endif
1966 /*
1967 * Try another name. Change one character, just before
1968 * the extension. This should also work for an 8.3
1969 * file name, when after adding the extension it still is
1970 * the same file as the original.
1971 */
1972 wp = tempname + STRLEN(tempname) - 5;
1973 if (wp < gettail(tempname)) /* empty file name? */
1974 wp = gettail(tempname);
1975 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0;
1976 --*wp)
1977 {
1978 /*
1979 * They all exist? Must be something wrong! Don't
1980 * write the viminfo file then.
1981 */
1982 if (*wp == 'a')
1983 {
1984 vim_free(tempname);
1985 tempname = NULL;
1986 break;
1987 }
1988 }
1989 }
1990 break;
1991 }
1992
1993 if (tempname != NULL)
1994 {
Bram Moolenaar114216c2006-03-14 23:08:30 +00001995#ifdef VMS
1996 /* fdopen() fails for some reason */
Bram Moolenaarcf034472006-03-15 23:07:59 +00001997 umask_save = umask(077);
1998 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1999 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002000#else
Bram Moolenaara5792f52005-11-23 21:25:05 +00002001 int fd;
2002
2003 /* Use mch_open() to be able to use O_NOFOLLOW and set file
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002004 * protection:
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002005 * Unix: same as original file, but strip s-bit. Reset umask to
2006 * avoid it getting in the way.
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002007 * Others: r&w for user only. */
Bram Moolenaar114216c2006-03-14 23:08:30 +00002008# ifdef UNIX
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002009 umask_save = umask(0);
Bram Moolenaara5792f52005-11-23 21:25:05 +00002010 fd = mch_open((char *)tempname,
2011 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
Bram Moolenaarbba577a2005-11-28 23:05:55 +00002012 (int)((st_old.st_mode & 0777) | 0600));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002013 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002014# else
Bram Moolenaarbba577a2005-11-28 23:05:55 +00002015 fd = mch_open((char *)tempname,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002016 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002017# endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00002018 if (fd < 0)
2019 fp_out = NULL;
2020 else
2021 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002022#endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023
2024 /*
2025 * If we can't create in the same directory, try creating a
2026 * "normal" temp file.
2027 */
2028 if (fp_out == NULL)
2029 {
2030 vim_free(tempname);
Bram Moolenaare5c421c2015-03-31 13:33:08 +02002031 if ((tempname = vim_tempname('o', TRUE)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2033 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00002034
2035#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 /*
Bram Moolenaara5792f52005-11-23 21:25:05 +00002037 * Make sure the owner can read/write it. This only works for
2038 * root.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 */
2040 if (fp_out != NULL)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002041 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042#endif
2043 }
2044 }
2045
2046 /*
2047 * Check if the new viminfo file can be written to.
2048 */
2049 if (fp_out == NULL)
2050 {
2051 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002052 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 if (fp_in != NULL)
2054 fclose(fp_in);
2055 goto end;
2056 }
2057
2058 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002059 {
2060 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00002061 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002062 verbose_leave();
2063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064
2065 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002066 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067
2068 fclose(fp_out); /* errors are ignored !? */
2069 if (fp_in != NULL)
2070 {
2071 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002072
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002073 /* In case of an error keep the original viminfo file. Otherwise
2074 * rename the newly written file. Give an error if that fails. */
2075 if (viminfo_errcnt == 0 && vim_rename(tempname, fname) == -1)
2076 {
2077 ++viminfo_errcnt;
2078 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2079 }
2080 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 mch_remove(tempname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002082
2083#ifdef WIN3264
2084 /* If the viminfo file was hidden then also hide the new file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01002085 if (hidden)
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002086 mch_hide(fname);
2087#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002089
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090end:
2091 vim_free(fname);
2092 vim_free(tempname);
2093}
2094
2095/*
2096 * Get the viminfo file name to use.
2097 * If "file" is given and not empty, use it (has already been expanded by
2098 * cmdline functions).
2099 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2100 * expand environment variables.
2101 * Returns an allocated string. NULL when out of memory.
2102 */
2103 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002104viminfo_filename(char_u *file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105{
2106 if (file == NULL || *file == NUL)
2107 {
2108 if (use_viminfo != NULL)
2109 file = use_viminfo;
2110 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2111 {
2112#ifdef VIMINFO_FILE2
2113 /* don't use $HOME when not defined (turned into "c:/"!). */
2114# ifdef VMS
2115 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2116# else
2117 if (mch_getenv((char_u *)"HOME") == NULL)
2118# endif
2119 {
2120 /* don't use $VIM when not available. */
2121 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2122 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2123 file = (char_u *)VIMINFO_FILE2;
2124 else
2125 file = (char_u *)VIMINFO_FILE;
2126 }
2127 else
2128#endif
2129 file = (char_u *)VIMINFO_FILE;
2130 }
2131 expand_env(file, NameBuff, MAXPATHL);
2132 file = NameBuff;
2133 }
2134 return vim_strsave(file);
2135}
2136
2137/*
2138 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2139 */
2140 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002141do_viminfo(FILE *fp_in, FILE *fp_out, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142{
2143 int count = 0;
2144 int eof = FALSE;
2145 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002146 int merge = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147
2148 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2149 return;
2150 vir.vir_fd = fp_in;
2151#ifdef FEAT_MBYTE
2152 vir.vir_conv.vc_type = CONV_NONE;
2153#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002154 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155
2156 if (fp_in != NULL)
2157 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002158 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002159 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002160 eof = read_viminfo_up_to_marks(&vir,
2161 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002162 merge = TRUE;
2163 }
2164 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 /* Skip info, find start of marks */
2166 while (!(eof = viminfo_readline(&vir))
2167 && vir.vir_line[0] != '>')
2168 ;
2169 }
2170 if (fp_out != NULL)
2171 {
2172 /* Write the info: */
2173 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2174 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002175 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002177 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2179#endif
2180 write_viminfo_search_pattern(fp_out);
2181 write_viminfo_sub_string(fp_out);
2182#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002183 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184#endif
2185 write_viminfo_registers(fp_out);
2186#ifdef FEAT_EVAL
2187 write_viminfo_varlist(fp_out);
2188#endif
2189 write_viminfo_filemarks(fp_out);
2190 write_viminfo_bufferlist(fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002191 write_viminfo_barlines(&vir, fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 count = write_viminfo_marks(fp_out);
2193 }
Bram Moolenaard812df62008-11-09 12:46:09 +00002194 if (fp_in != NULL
2195 && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT)))
2196 copy_viminfo_marks(&vir, fp_out, count, eof, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197
2198 vim_free(vir.vir_line);
2199#ifdef FEAT_MBYTE
2200 if (vir.vir_conv.vc_type != CONV_NONE)
2201 convert_setup(&vir.vir_conv, NULL, NULL);
2202#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002203 ga_clear_strings(&vir.vir_barlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204}
2205
2206/*
2207 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2208 * first part of the viminfo file which contains everything but the marks that
2209 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2210 */
2211 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002212read_viminfo_up_to_marks(
2213 vir_T *virp,
2214 int forceit,
2215 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216{
2217 int eof;
2218 buf_T *buf;
2219
2220#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002221 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222#endif
2223 eof = viminfo_readline(virp);
2224 while (!eof && virp->vir_line[0] != '>')
2225 {
2226 switch (virp->vir_line[0])
2227 {
2228 /* Characters reserved for future expansion, ignored now */
2229 case '+': /* "+40 /path/dir file", for running vim without args */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 case '^': /* to be defined */
2231 case '<': /* long line - ignored */
2232 /* A comment or empty line. */
2233 case NUL:
2234 case '\r':
2235 case '\n':
2236 case '#':
2237 eof = viminfo_readline(virp);
2238 break;
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002239 case '|': /* copy line (for future use) */
2240 if (writing)
2241 ga_add_string(&virp->vir_barlines, virp->vir_line);
2242 eof = viminfo_readline(virp);
2243 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 case '*': /* "*encoding=value" */
2245 eof = viminfo_encoding(virp);
2246 break;
2247 case '!': /* global variable */
2248#ifdef FEAT_EVAL
2249 eof = read_viminfo_varlist(virp, writing);
2250#else
2251 eof = viminfo_readline(virp);
2252#endif
2253 break;
2254 case '%': /* entry for buffer list */
2255 eof = read_viminfo_bufferlist(virp, writing);
2256 break;
2257 case '"':
2258 eof = read_viminfo_register(virp, forceit);
2259 break;
2260 case '/': /* Search string */
2261 case '&': /* Substitute search string */
2262 case '~': /* Last search string, followed by '/' or '&' */
2263 eof = read_viminfo_search_pattern(virp, forceit);
2264 break;
2265 case '$':
2266 eof = read_viminfo_sub_string(virp, forceit);
2267 break;
2268 case ':':
2269 case '?':
2270 case '=':
2271 case '@':
2272#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002273 eof = read_viminfo_history(virp, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274#else
2275 eof = viminfo_readline(virp);
2276#endif
2277 break;
2278 case '-':
2279 case '\'':
2280 eof = read_viminfo_filemark(virp, forceit);
2281 break;
2282 default:
2283 if (viminfo_error("E575: ", _("Illegal starting char"),
2284 virp->vir_line))
2285 eof = TRUE;
2286 else
2287 eof = viminfo_readline(virp);
2288 break;
2289 }
2290 }
2291
2292#ifdef FEAT_CMDHIST
2293 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002294 if (!writing)
2295 finish_viminfo_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296#endif
2297
2298 /* Change file names to buffer numbers for fmarks. */
2299 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2300 fmarks_check_names(buf);
2301
2302 return eof;
2303}
2304
2305/*
2306 * Compare the 'encoding' value in the viminfo file with the current value of
2307 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2308 * conversion of text with iconv() in viminfo_readstring().
2309 */
2310 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002311viminfo_encoding(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312{
2313#ifdef FEAT_MBYTE
2314 char_u *p;
2315 int i;
2316
2317 if (get_viminfo_parameter('c') != 0)
2318 {
2319 p = vim_strchr(virp->vir_line, '=');
2320 if (p != NULL)
2321 {
2322 /* remove trailing newline */
2323 ++p;
2324 for (i = 0; vim_isprintc(p[i]); ++i)
2325 ;
2326 p[i] = NUL;
2327
2328 convert_setup(&virp->vir_conv, p, p_enc);
2329 }
2330 }
2331#endif
2332 return viminfo_readline(virp);
2333}
2334
2335/*
2336 * Read a line from the viminfo file.
2337 * Returns TRUE for end-of-file;
2338 */
2339 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002340viminfo_readline(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341{
2342 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2343}
2344
2345/*
2346 * check string read from viminfo file
2347 * remove '\n' at the end of the line
2348 * - replace CTRL-V CTRL-V with CTRL-V
2349 * - replace CTRL-V 'n' with '\n'
2350 *
2351 * Check for a long line as written by viminfo_writestring().
2352 *
2353 * Return the string in allocated memory (NULL when out of memory).
2354 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002356viminfo_readstring(
2357 vir_T *virp,
2358 int off, /* offset for virp->vir_line */
2359 int convert UNUSED) /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360{
2361 char_u *retval;
2362 char_u *s, *d;
2363 long len;
2364
2365 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2366 {
2367 len = atol((char *)virp->vir_line + off + 1);
2368 retval = lalloc(len, TRUE);
2369 if (retval == NULL)
2370 {
2371 /* Line too long? File messed up? Skip next line. */
2372 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2373 return NULL;
2374 }
2375 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2376 s = retval + 1; /* Skip the leading '<' */
2377 }
2378 else
2379 {
2380 retval = vim_strsave(virp->vir_line + off);
2381 if (retval == NULL)
2382 return NULL;
2383 s = retval;
2384 }
2385
2386 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2387 d = retval;
2388 while (*s != NUL && *s != '\n')
2389 {
2390 if (s[0] == Ctrl_V && s[1] != NUL)
2391 {
2392 if (s[1] == 'n')
2393 *d++ = '\n';
2394 else
2395 *d++ = Ctrl_V;
2396 s += 2;
2397 }
2398 else
2399 *d++ = *s++;
2400 }
2401 *d = NUL;
2402
2403#ifdef FEAT_MBYTE
2404 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2405 {
2406 d = string_convert(&virp->vir_conv, retval, NULL);
2407 if (d != NULL)
2408 {
2409 vim_free(retval);
2410 retval = d;
2411 }
2412 }
2413#endif
2414
2415 return retval;
2416}
2417
2418/*
2419 * write string to viminfo file
2420 * - replace CTRL-V with CTRL-V CTRL-V
2421 * - replace '\n' with CTRL-V 'n'
2422 * - add a '\n' at the end
2423 *
2424 * For a long line:
2425 * - write " CTRL-V <length> \n " in first line
2426 * - write " < <string> \n " in second line
2427 */
2428 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002429viminfo_writestring(FILE *fd, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430{
2431 int c;
2432 char_u *s;
2433 int len = 0;
2434
2435 for (s = p; *s != NUL; ++s)
2436 {
2437 if (*s == Ctrl_V || *s == '\n')
2438 ++len;
2439 ++len;
2440 }
2441
2442 /* If the string will be too long, write its length and put it in the next
2443 * line. Take into account that some room is needed for what comes before
2444 * the string (e.g., variable name). Add something to the length for the
2445 * '<', NL and trailing NUL. */
2446 if (len > LSIZE / 2)
2447 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2448
2449 while ((c = *p++) != NUL)
2450 {
2451 if (c == Ctrl_V || c == '\n')
2452 {
2453 putc(Ctrl_V, fd);
2454 if (c == '\n')
2455 c = 'n';
2456 }
2457 putc(c, fd);
2458 }
2459 putc('\n', fd);
2460}
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002461
2462 static void
2463write_viminfo_barlines(vir_T *virp, FILE *fp_out)
2464{
2465 int i;
2466 garray_T *gap = &virp->vir_barlines;
2467
2468 if (gap->ga_len > 0)
2469 {
2470 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out);
2471
2472 for (i = 0; i < gap->ga_len; ++i)
2473 fputs(((char **)(gap->ga_data))[i], fp_out);
2474 }
2475}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476#endif /* FEAT_VIMINFO */
2477
2478/*
2479 * Implementation of ":fixdel", also used by get_stty().
2480 * <BS> resulting <Del>
2481 * ^? ^H
2482 * not ^? ^?
2483 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002485do_fixdel(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486{
2487 char_u *p;
2488
2489 p = find_termcode((char_u *)"kb");
2490 add_termcode((char_u *)"kD", p != NULL
2491 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2492}
2493
2494 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002495print_line_no_prefix(
2496 linenr_T lnum,
2497 int use_number,
2498 int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002500 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501
2502 if (curwin->w_p_nu || use_number)
2503 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002504 vim_snprintf((char *)numbuf, sizeof(numbuf),
2505 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */
2507 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002508 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509}
2510
2511/*
2512 * Print a text line. Also in silent mode ("ex -s").
2513 */
2514 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002515print_line(linenr_T lnum, int use_number, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516{
2517 int save_silent = silent_mode;
2518
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002520 silent_mode = FALSE;
2521 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
2522 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 if (save_silent)
2524 {
2525 msg_putchar('\n');
2526 cursor_on(); /* msg_start() switches it off */
2527 out_flush();
2528 silent_mode = save_silent;
2529 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00002530 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531}
2532
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002533 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002534rename_buffer(char_u *new_fname)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002535{
2536 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02002537 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002538
Bram Moolenaar7e283842013-05-30 11:43:15 +02002539#ifdef FEAT_AUTOCMD
2540 buf = curbuf;
2541 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002542 /* buffer changed, don't change name now */
2543 if (buf != curbuf)
2544 return FAIL;
2545# ifdef FEAT_EVAL
2546 if (aborting()) /* autocmds may abort script processing */
2547 return FAIL;
2548# endif
2549#endif
2550 /*
2551 * The name of the current buffer will be changed.
2552 * A new (unlisted) buffer entry needs to be made to hold the old file
2553 * name, which will become the alternate file name.
2554 * But don't set the alternate file name if the buffer didn't have a
2555 * name.
2556 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02002557 fname = curbuf->b_ffname;
2558 sfname = curbuf->b_sfname;
2559 xfname = curbuf->b_fname;
2560 curbuf->b_ffname = NULL;
2561 curbuf->b_sfname = NULL;
2562 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002563 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02002564 curbuf->b_ffname = fname;
2565 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002566 return FAIL;
2567 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02002568 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002569 if (xfname != NULL && *xfname != NUL)
2570 {
2571 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
2572 if (buf != NULL && !cmdmod.keepalt)
2573 curwin->w_alt_fnum = buf->b_fnum;
2574 }
2575 vim_free(fname);
2576 vim_free(sfname);
2577#ifdef FEAT_AUTOCMD
Bram Moolenaar7e283842013-05-30 11:43:15 +02002578 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002579#endif
2580 /* Change directories when the 'acd' option is set. */
2581 DO_AUTOCHDIR
2582 return OK;
2583}
2584
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585/*
2586 * ":file[!] [fname]".
2587 */
2588 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002589ex_file(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002591 /* ":0file" removes the file name. Check for illegal uses ":3file",
2592 * "0file name", etc. */
2593 if (eap->addr_count > 0
2594 && (*eap->arg != NUL
2595 || eap->line2 > 0
2596 || eap->addr_count > 1))
2597 {
2598 EMSG(_(e_invarg));
2599 return;
2600 }
2601
2602 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002604 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 }
2607 /* print full file name if :cd used */
2608 fileinfo(FALSE, FALSE, eap->forceit);
2609}
2610
2611/*
2612 * ":update".
2613 */
2614 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002615ex_update(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616{
2617 if (curbufIsChanged())
2618 (void)do_write(eap);
2619}
2620
2621/*
2622 * ":write" and ":saveas".
2623 */
2624 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002625ex_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626{
2627 if (eap->usefilter) /* input lines to shell command */
2628 do_bang(1, eap, FALSE, TRUE, FALSE);
2629 else
2630 (void)do_write(eap);
2631}
2632
2633/*
2634 * write current buffer to file 'eap->arg'
2635 * if 'eap->append' is TRUE, append to the file
2636 *
2637 * if *eap->arg == NUL write to current file
2638 *
2639 * return FAIL for failure, OK otherwise
2640 */
2641 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002642do_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643{
2644 int other;
2645 char_u *fname = NULL; /* init to shut up gcc */
2646 char_u *ffname;
2647 int retval = FAIL;
2648 char_u *free_fname = NULL;
2649#ifdef FEAT_BROWSE
2650 char_u *browse_file = NULL;
2651#endif
2652 buf_T *alt_buf = NULL;
2653
2654 if (not_writing()) /* check 'write' option */
2655 return FAIL;
2656
2657 ffname = eap->arg;
2658#ifdef FEAT_BROWSE
2659 if (cmdmod.browse)
2660 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002661 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 NULL, NULL, NULL, curbuf);
2663 if (browse_file == NULL)
2664 goto theend;
2665 ffname = browse_file;
2666 }
2667#endif
2668 if (*ffname == NUL)
2669 {
2670 if (eap->cmdidx == CMD_saveas)
2671 {
2672 EMSG(_(e_argreq));
2673 goto theend;
2674 }
2675 other = FALSE;
2676 }
2677 else
2678 {
2679 fname = ffname;
2680 free_fname = fix_fname(ffname);
2681 /*
2682 * When out-of-memory, keep unexpanded file name, because we MUST be
2683 * able to write the file in this situation.
2684 */
2685 if (free_fname != NULL)
2686 ffname = free_fname;
2687 other = otherfile(ffname);
2688 }
2689
2690 /*
2691 * If we have a new file, put its name in the list of alternate file names.
2692 */
2693 if (other)
2694 {
2695 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
2696 || eap->cmdidx == CMD_saveas)
2697 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
2698 else
2699 alt_buf = buflist_findname(ffname);
2700 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
2701 {
2702 /* Overwriting a file that is loaded in another buffer is not a
2703 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00002704 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 goto theend;
2706 }
2707 }
2708
2709 /*
2710 * Writing to the current file is not allowed in readonly mode
2711 * and a file name is required.
2712 * "nofile" and "nowrite" buffers cannot be written implicitly either.
2713 */
2714 if (!other && (
2715#ifdef FEAT_QUICKFIX
2716 bt_dontwrite_msg(curbuf) ||
2717#endif
2718 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
2719 goto theend;
2720
2721 if (!other)
2722 {
2723 ffname = curbuf->b_ffname;
2724 fname = curbuf->b_fname;
2725 /*
2726 * Not writing the whole file is only allowed with '!'.
2727 */
2728 if ( (eap->line1 != 1
2729 || eap->line2 != curbuf->b_ml.ml_line_count)
2730 && !eap->forceit
2731 && !eap->append
2732 && !p_wa)
2733 {
2734#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2735 if (p_confirm || cmdmod.confirm)
2736 {
2737 if (vim_dialog_yesno(VIM_QUESTION, NULL,
2738 (char_u *)_("Write partial file?"), 2) != VIM_YES)
2739 goto theend;
2740 eap->forceit = TRUE;
2741 }
2742 else
2743#endif
2744 {
2745 EMSG(_("E140: Use ! to write partial buffer"));
2746 goto theend;
2747 }
2748 }
2749 }
2750
2751 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
2752 {
2753 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
2754 {
2755#ifdef FEAT_AUTOCMD
2756 buf_T *was_curbuf = curbuf;
2757
2758 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002759 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760# ifdef FEAT_EVAL
2761 if (curbuf != was_curbuf || aborting())
2762# else
2763 if (curbuf != was_curbuf)
2764# endif
2765 {
2766 /* buffer changed, don't change name now */
2767 retval = FAIL;
2768 goto theend;
2769 }
2770#endif
2771 /* Exchange the file names for the current and the alternate
2772 * buffer. This makes it look like we are now editing the buffer
2773 * under the new name. Must be done before buf_write(), because
2774 * if there is no file name and 'cpo' contains 'F', it will set
2775 * the file name. */
2776 fname = alt_buf->b_fname;
2777 alt_buf->b_fname = curbuf->b_fname;
2778 curbuf->b_fname = fname;
2779 fname = alt_buf->b_ffname;
2780 alt_buf->b_ffname = curbuf->b_ffname;
2781 curbuf->b_ffname = fname;
2782 fname = alt_buf->b_sfname;
2783 alt_buf->b_sfname = curbuf->b_sfname;
2784 curbuf->b_sfname = fname;
2785 buf_name_changed(curbuf);
2786#ifdef FEAT_AUTOCMD
2787 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002788 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 if (!alt_buf->b_p_bl)
2790 {
2791 alt_buf->b_p_bl = TRUE;
2792 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
2793 }
2794# ifdef FEAT_EVAL
2795 if (curbuf != was_curbuf || aborting())
2796# else
2797 if (curbuf != was_curbuf)
2798# endif
2799 {
2800 /* buffer changed, don't write the file */
2801 retval = FAIL;
2802 goto theend;
2803 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002804
2805 /* If 'filetype' was empty try detecting it now. */
2806 if (*curbuf->b_p_ft == NUL)
2807 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002808 if (au_has_group((char_u *)"filetypedetect"))
2809 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
2810 TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002811 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002812 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01002813
2814 /* Autocommands may have changed buffer names, esp. when
2815 * 'autochdir' is set. */
2816 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817#endif
2818 }
2819
2820 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
2821 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002822
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002823 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002824 if (eap->cmdidx == CMD_saveas)
2825 {
2826 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00002827 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002828 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00002829#ifdef FEAT_WINDOWS
2830 redraw_tabline = TRUE;
2831#endif
2832 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002833 /* Change directories when the 'acd' option is set. */
2834 DO_AUTOCHDIR
2835 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 }
2837
2838theend:
2839#ifdef FEAT_BROWSE
2840 vim_free(browse_file);
2841#endif
2842 vim_free(free_fname);
2843 return retval;
2844}
2845
2846/*
2847 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
2848 * BF_NEW or BF_READERR, check for overwriting current file.
2849 * May set eap->forceit if a dialog says it's OK to overwrite.
2850 * Return OK if it's OK, FAIL if it is not.
2851 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02002852 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002853check_overwrite(
2854 exarg_T *eap,
2855 buf_T *buf,
2856 char_u *fname, /* file name to be used (can differ from
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 buf->ffname) */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002858 char_u *ffname, /* full path version of fname */
2859 int other) /* writing under other name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860{
2861 /*
2862 * write to other file or b_flags set or not writing the whole file:
2863 * overwriting only allowed with '!'
2864 */
2865 if ( (other
2866 || (buf->b_flags & BF_NOTEDITED)
2867 || ((buf->b_flags & BF_NEW)
2868 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
2869 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00002871#ifdef FEAT_QUICKFIX
2872 && !bt_nofile(buf)
2873#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 && vim_fexists(ffname))
2875 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002876 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002878#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00002879 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002880 if (mch_isdir(ffname))
2881 {
2882 EMSG2(_(e_isadir2), ffname);
2883 return FAIL;
2884 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885#endif
2886#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002887 if (p_confirm || cmdmod.confirm)
2888 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002889 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002891 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
2892 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
2893 return FAIL;
2894 eap->forceit = TRUE;
2895 }
2896 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002898 {
2899 EMSG(_(e_exists));
2900 return FAIL;
2901 }
2902 }
2903
2904 /* For ":w! filename" check that no swap file exists for "filename". */
2905 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002907 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002908 char_u *p;
2909 int r;
2910 char_u *swapname;
2911
2912 /* We only try the first entry in 'directory', without checking if
2913 * it's writable. If the "." directory is not writable the write
2914 * will probably fail anyway.
2915 * Use 'shortname' of the current buffer, since there is no buffer
2916 * for the written file. */
2917 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02002918 {
2919 dir = alloc(5);
2920 if (dir == NULL)
2921 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002922 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02002923 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002924 else
2925 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002926 dir = alloc(MAXPATHL);
2927 if (dir == NULL)
2928 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002929 p = p_dir;
2930 copy_option_part(&p, dir, MAXPATHL, ",");
2931 }
2932 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02002933 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002934 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002935 if (r)
2936 {
2937#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2938 if (p_confirm || cmdmod.confirm)
2939 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002940 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002941
2942 dialog_msg(buff,
2943 _("Swap file \"%s\" exists, overwrite anyway?"),
2944 swapname);
2945 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
2946 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002947 {
2948 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002949 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002950 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002951 eap->forceit = TRUE;
2952 }
2953 else
2954#endif
2955 {
2956 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
2957 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002958 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002959 return FAIL;
2960 }
2961 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002962 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 }
2964 }
2965 return OK;
2966}
2967
2968/*
2969 * Handle ":wnext", ":wNext" and ":wprevious" commands.
2970 */
2971 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002972ex_wnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973{
2974 int i;
2975
2976 if (eap->cmd[1] == 'n')
2977 i = curwin->w_arg_idx + (int)eap->line2;
2978 else
2979 i = curwin->w_arg_idx - (int)eap->line2;
2980 eap->line1 = 1;
2981 eap->line2 = curbuf->b_ml.ml_line_count;
2982 if (do_write(eap) != FAIL)
2983 do_argfile(eap, i);
2984}
2985
2986/*
2987 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
2988 */
2989 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002990do_wqall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991{
2992 buf_T *buf;
2993 int error = 0;
2994 int save_forceit = eap->forceit;
2995
2996 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
2997 exiting = TRUE;
2998
2999 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
3000 {
3001 if (bufIsChanged(buf))
3002 {
3003 /*
3004 * Check if there is a reason the buffer cannot be written:
3005 * 1. if the 'write' option is set
3006 * 2. if there is no file name (even after browsing)
3007 * 3. if the 'readonly' is set (even after a dialog)
3008 * 4. if overwriting is allowed (even after a dialog)
3009 */
3010 if (not_writing())
3011 {
3012 ++error;
3013 break;
3014 }
3015#ifdef FEAT_BROWSE
3016 /* ":browse wall": ask for file name if there isn't one */
3017 if (buf->b_ffname == NULL && cmdmod.browse)
3018 browse_save_fname(buf);
3019#endif
3020 if (buf->b_ffname == NULL)
3021 {
3022 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
3023 ++error;
3024 }
3025 else if (check_readonly(&eap->forceit, buf)
3026 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3027 FALSE) == FAIL)
3028 {
3029 ++error;
3030 }
3031 else
3032 {
3033 if (buf_write_all(buf, eap->forceit) == FAIL)
3034 ++error;
3035#ifdef FEAT_AUTOCMD
3036 /* an autocommand may have deleted the buffer */
3037 if (!buf_valid(buf))
3038 buf = firstbuf;
3039#endif
3040 }
3041 eap->forceit = save_forceit; /* check_overwrite() may set it */
3042 }
3043 }
3044 if (exiting)
3045 {
3046 if (!error)
3047 getout(0); /* exit Vim */
3048 not_exiting();
3049 }
3050}
3051
3052/*
3053 * Check the 'write' option.
3054 * Return TRUE and give a message when it's not st.
3055 */
3056 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003057not_writing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058{
3059 if (p_write)
3060 return FALSE;
3061 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
3062 return TRUE;
3063}
3064
3065/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003066 * Check if a buffer is read-only (either 'readonly' option is set or file is
3067 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3068 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 */
3070 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003071check_readonly(int *forceit, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072{
Bram Moolenaar5386a122007-06-28 20:02:32 +00003073 struct stat st;
3074
3075 /* Handle a file being readonly when the 'readonly' option is set or when
3076 * the file exists and permissions are read-only.
3077 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3078 * important for device checks but not here. */
3079 if (!*forceit && (buf->b_p_ro
3080 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3081 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 {
3083#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3084 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3085 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003086 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087
Bram Moolenaar5386a122007-06-28 20:02:32 +00003088 if (buf->b_p_ro)
3089 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3090 buf->b_fname);
3091 else
3092 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 buf->b_fname);
3094
3095 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3096 {
3097 /* Set forceit, to force the writing of a readonly file */
3098 *forceit = TRUE;
3099 return FALSE;
3100 }
3101 else
3102 return TRUE;
3103 }
3104 else
3105#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003106 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003108 else
3109 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3110 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 return TRUE;
3112 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003113
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 return FALSE;
3115}
3116
3117/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003118 * Try to abandon current file and edit a new or existing file.
3119 * 'fnum' is the number of the file, if zero use ffname/sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 *
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003121 * Return 1 for "normal" error, 2 for "not written" error, 0 for success
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003122 * -1 for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 * 'lnum' is the line number for the cursor in the new file (if non-zero).
3124 */
3125 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003126getfile(
3127 int fnum,
3128 char_u *ffname,
3129 char_u *sfname,
3130 int setpm,
3131 linenr_T lnum,
3132 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133{
3134 int other;
3135 int retval;
3136 char_u *free_me = NULL;
3137
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003138 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 return 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003140#ifdef FEAT_AUTOCMD
3141 if (curbuf_locked())
3142 return 1;
3143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144
3145 if (fnum == 0)
3146 {
3147 /* make ffname full path, set sfname */
3148 fname_expand(curbuf, &ffname, &sfname);
3149 other = otherfile(ffname);
3150 free_me = ffname; /* has been allocated, free() later */
3151 }
3152 else
3153 other = (fnum != curbuf->b_fnum);
3154
3155 if (other)
3156 ++no_wait_return; /* don't wait for autowrite message */
3157 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf)
3158 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3159 {
3160#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3161 if (p_confirm && p_write)
3162 dialog_changed(curbuf, FALSE);
3163 if (curbufIsChanged())
3164#endif
3165 {
3166 if (other)
3167 --no_wait_return;
3168 EMSG(_(e_nowrtmsg));
3169 retval = 2; /* file has been changed */
3170 goto theend;
3171 }
3172 }
3173 if (other)
3174 --no_wait_return;
3175 if (setpm)
3176 setpcmark();
3177 if (!other)
3178 {
3179 if (lnum != 0)
3180 curwin->w_cursor.lnum = lnum;
3181 check_cursor_lnum();
3182 beginline(BL_SOL | BL_FIX);
3183 retval = 0; /* it's in the same file */
3184 }
3185 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003186 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
3187 curwin) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 retval = -1; /* opened another file */
3189 else
3190 retval = 1; /* error encountered */
3191
3192theend:
3193 vim_free(free_me);
3194 return retval;
3195}
3196
3197/*
3198 * start editing a new file
3199 *
3200 * fnum: file number; if zero use ffname/sfname
3201 * ffname: the file name
3202 * - full path if sfname used,
3203 * - any file name if sfname is NULL
3204 * - empty string to re-edit with the same file name (but may be
3205 * in a different directory)
3206 * - NULL to start an empty buffer
3207 * sfname: the short file name (or NULL)
3208 * eap: contains the command to be executed after loading the file and
3209 * forced 'ff' and 'fenc'
3210 * newlnum: if > 0: put cursor on this line number (if possible)
3211 * if ECMD_LASTL: use last position in loaded file
3212 * if ECMD_LAST: use last position in all files
3213 * if ECMD_ONE: use first line
3214 * flags:
3215 * ECMD_HIDE: if TRUE don't free the current buffer
3216 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3217 * ECMD_OLDBUF: use existing buffer if it exists
3218 * ECMD_FORCEIT: ! used for Ex command
3219 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003220 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003221 * window, NULL when splitting the window first. When not NULL info
3222 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 *
3224 * return FAIL for failure, OK otherwise
3225 */
3226 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003227do_ecmd(
3228 int fnum,
3229 char_u *ffname,
3230 char_u *sfname,
3231 exarg_T *eap, /* can be NULL! */
3232 linenr_T newlnum,
3233 int flags,
3234 win_T *oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235{
3236 int other_file; /* TRUE if editing another file */
3237 int oldbuf; /* TRUE if using existing buffer */
3238#ifdef FEAT_AUTOCMD
3239 int auto_buf = FALSE; /* TRUE if autocommands brought us
3240 into the buffer unexpectedly */
3241 char_u *new_name = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003242 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243#endif
3244 buf_T *buf;
3245#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3246 buf_T *old_curbuf = curbuf;
3247#endif
3248 char_u *free_fname = NULL;
3249#ifdef FEAT_BROWSE
3250 char_u *browse_file = NULL;
3251#endif
3252 int retval = FAIL;
3253 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003254 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 linenr_T topline = 0;
3256 int newcol = -1;
3257 int solcol = -1;
3258 pos_T *pos;
3259#ifdef FEAT_SUN_WORKSHOP
3260 char_u *cp;
3261#endif
3262 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003263#ifdef FEAT_SPELL
3264 int did_get_winopts = FALSE;
3265#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003266 int readfile_flags = 0;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003267 int did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268
3269 if (eap != NULL)
3270 command = eap->do_ecmd_cmd;
3271
3272 if (fnum != 0)
3273 {
3274 if (fnum == curbuf->b_fnum) /* file is already being edited */
3275 return OK; /* nothing to do */
3276 other_file = TRUE;
3277 }
3278 else
3279 {
3280#ifdef FEAT_BROWSE
3281 if (cmdmod.browse)
3282 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003283# ifdef FEAT_AUTOCMD
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003284 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003285# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003286 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003287# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003288 au_has_group((char_u *)"FileExplorer"))
3289 {
3290 /* No browsing supported but we do have the file explorer:
3291 * Edit the directory. */
3292 if (ffname == NULL || !mch_isdir(ffname))
3293 ffname = (char_u *)".";
3294 }
3295 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003296# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003297 {
3298 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003300 if (browse_file == NULL)
3301 goto theend;
3302 ffname = browse_file;
3303 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 }
3305#endif
3306 /* if no short name given, use ffname for short name */
3307 if (sfname == NULL)
3308 sfname = ffname;
3309#ifdef USE_FNAME_CASE
3310# ifdef USE_LONG_FNAME
3311 if (USE_LONG_FNAME)
3312# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003313 if (sfname != NULL)
3314 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315#endif
3316
3317#ifdef FEAT_LISTCMDS
3318 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3319 goto theend;
3320#endif
3321
3322 if (ffname == NULL)
3323 other_file = TRUE;
3324 /* there is no file name */
3325 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3326 other_file = FALSE;
3327 else
3328 {
3329 if (*ffname == NUL) /* re-edit with same file name */
3330 {
3331 ffname = curbuf->b_ffname;
3332 sfname = curbuf->b_fname;
3333 }
3334 free_fname = fix_fname(ffname); /* may expand to full path name */
3335 if (free_fname != NULL)
3336 ffname = free_fname;
3337 other_file = otherfile(ffname);
3338#ifdef FEAT_SUN_WORKSHOP
3339 if (usingSunWorkShop && p_acd
3340 && (cp = vim_strrchr(sfname, '/')) != NULL)
3341 sfname = ++cp;
3342#endif
3343 }
3344 }
3345
3346 /*
3347 * if the file was changed we may not be allowed to abandon it
3348 * - if we are going to re-edit the same file
3349 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3350 */
3351 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3352 || (curbuf->b_nwindows == 1
3353 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003354 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3355 | (other_file ? 0 : CCGD_MULTWIN)
3356 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3357 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 {
3359 if (fnum == 0 && other_file && ffname != NULL)
3360 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3361 goto theend;
3362 }
3363
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 /*
3365 * End Visual mode before switching to another buffer, so the text can be
3366 * copied into the GUI selection buffer.
3367 */
3368 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003370#ifdef FEAT_AUTOCMD
3371 if ((command != NULL || newlnum > (linenr_T)0)
3372 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3373 {
3374 int len;
3375 char_u *p;
3376
3377 /* Set v:swapcommand for the SwapExists autocommands. */
3378 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003379 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003380 else
3381 len = 30;
3382 p = alloc((unsigned)len);
3383 if (p != NULL)
3384 {
3385 if (command != NULL)
3386 vim_snprintf((char *)p, len, ":%s\r", command);
3387 else
3388 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3389 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3390 did_set_swapcommand = TRUE;
3391 vim_free(p);
3392 }
3393 }
3394#endif
3395
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 /*
3397 * If we are starting to edit another file, open a (new) buffer.
3398 * Otherwise we re-use the current buffer.
3399 */
3400 if (other_file)
3401 {
3402#ifdef FEAT_LISTCMDS
3403 if (!(flags & ECMD_ADDBUF))
3404#endif
3405 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003406 if (!cmdmod.keepalt)
3407 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003408 if (oldwin != NULL)
3409 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 }
3411
3412 if (fnum)
3413 buf = buflist_findnr(fnum);
3414 else
3415 {
3416#ifdef FEAT_LISTCMDS
3417 if (flags & ECMD_ADDBUF)
3418 {
3419 linenr_T tlnum = 1L;
3420
3421 if (command != NULL)
3422 {
3423 tlnum = atol((char *)command);
3424 if (tlnum <= 0)
3425 tlnum = 1L;
3426 }
3427 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3428 goto theend;
3429 }
3430#endif
3431 buf = buflist_new(ffname, sfname, 0L,
3432 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003433#ifdef FEAT_AUTOCMD
3434 /* autocommands may change curwin and curbuf */
3435 if (oldwin != NULL)
3436 oldwin = curwin;
3437 old_curbuf = curbuf;
3438#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 }
3440 if (buf == NULL)
3441 goto theend;
3442 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3443 {
3444 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 }
3446 else /* existing memfile */
3447 {
3448 oldbuf = TRUE;
3449 (void)buf_check_timestamp(buf, FALSE);
3450 /* Check if autocommands made buffer invalid or changed the current
3451 * buffer. */
3452 if (!buf_valid(buf)
3453#ifdef FEAT_AUTOCMD
3454 || curbuf != old_curbuf
3455#endif
3456 )
3457 goto theend;
3458#ifdef FEAT_EVAL
3459 if (aborting()) /* autocmds may abort script processing */
3460 goto theend;
3461#endif
3462 }
3463
3464 /* May jump to last used line number for a loaded buffer or when asked
3465 * for explicitly */
3466 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3467 {
3468 pos = buflist_findfpos(buf);
3469 newlnum = pos->lnum;
3470 solcol = pos->col;
3471 }
3472
3473 /*
3474 * Make the (new) buffer the one used by the current window.
3475 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3476 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003477 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 */
3479 if (buf != curbuf)
3480 {
3481#ifdef FEAT_AUTOCMD
3482 /*
3483 * Be careful: The autocommands may delete any buffer and change
3484 * the current buffer.
3485 * - If the buffer we are going to edit is deleted, give up.
3486 * - If the current buffer is deleted, prefer to load the new
3487 * buffer when loading a buffer is required. This avoids
3488 * loading another buffer which then must be closed again.
3489 * - If we ended up in the new buffer already, need to skip a few
3490 * things, set auto_buf.
3491 */
3492 if (buf->b_fname != NULL)
3493 new_name = vim_strsave(buf->b_fname);
3494 au_new_curbuf = buf;
3495 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3496 if (!buf_valid(buf)) /* new buffer has been deleted */
3497 {
3498 delbuf_msg(new_name); /* frees new_name */
3499 goto theend;
3500 }
3501# ifdef FEAT_EVAL
3502 if (aborting()) /* autocmds may abort script processing */
3503 {
3504 vim_free(new_name);
3505 goto theend;
3506 }
3507# endif
3508 if (buf == curbuf) /* already in new buffer */
3509 auto_buf = TRUE;
3510 else
3511 {
3512 if (curbuf == old_curbuf)
3513#endif
3514 buf_copy_options(buf, BCO_ENTER);
3515
3516 /* close the link to the current buffer */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003517 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003518 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003519 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520
3521#ifdef FEAT_AUTOCMD
Bram Moolenaarfc573802011-12-30 15:01:59 +01003522 /* Autocommands may open a new window and leave oldwin open
3523 * which leads to crashes since the above call sets
3524 * oldwin->w_buffer to NULL. */
3525 if (curwin != oldwin && oldwin != aucmd_win
3526 && win_valid(oldwin) && oldwin->w_buffer == NULL)
3527 win_close(oldwin, FALSE);
3528
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529# ifdef FEAT_EVAL
3530 if (aborting()) /* autocmds may abort script processing */
3531 {
3532 vim_free(new_name);
3533 goto theend;
3534 }
3535# endif
3536 /* Be careful again, like above. */
3537 if (!buf_valid(buf)) /* new buffer has been deleted */
3538 {
3539 delbuf_msg(new_name); /* frees new_name */
3540 goto theend;
3541 }
3542 if (buf == curbuf) /* already in new buffer */
3543 auto_buf = TRUE;
3544 else
3545#endif
3546 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02003547#ifdef FEAT_SYN_HL
3548 /*
3549 * <VN> We could instead free the synblock
3550 * and re-attach to buffer, perhaps.
3551 */
3552 if (curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02003553 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003554#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 curwin->w_buffer = buf;
3556 curbuf = buf;
3557 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003558
3559 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
3560 if (!oldbuf && eap != NULL)
3561 {
3562 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003563#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003564 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003565#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003566 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 }
3568
3569 /* May get the window options from the last time this buffer
3570 * was in this window (or another window). If not used
3571 * before, reset the local window options to the global
3572 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00003573 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003574#ifdef FEAT_SPELL
3575 did_get_winopts = TRUE;
3576#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577
3578#ifdef FEAT_AUTOCMD
3579 }
3580 vim_free(new_name);
3581 au_new_curbuf = NULL;
3582#endif
3583 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584
3585 curwin->w_pcmark.lnum = 1;
3586 curwin->w_pcmark.col = 0;
3587 }
3588 else /* !other_file */
3589 {
3590 if (
3591#ifdef FEAT_LISTCMDS
3592 (flags & ECMD_ADDBUF) ||
3593#endif
3594 check_fname() == FAIL)
3595 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01003596
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 oldbuf = (flags & ECMD_OLDBUF);
3598 }
3599
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003600 /* Don't redraw until the cursor is in the right line, otherwise
3601 * autocommands may cause ml_get errors. */
3602 ++RedrawingDisabled;
3603 did_inc_redrawing_disabled = TRUE;
3604
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003605#ifdef FEAT_AUTOCMD
3606 buf = curbuf;
3607#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 if ((flags & ECMD_SET_HELP) || keep_help_flag)
3609 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003610 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611 }
3612 else
3613 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 /* Don't make a buffer listed if it's a help buffer. Useful when
3615 * using CTRL-O to go back to a help file. */
3616 if (!curbuf->b_help)
3617 set_buflisted(TRUE);
3618 }
3619
3620#ifdef FEAT_AUTOCMD
3621 /* If autocommands change buffers under our fingers, forget about
3622 * editing the file. */
3623 if (buf != curbuf)
3624 goto theend;
3625# ifdef FEAT_EVAL
3626 if (aborting()) /* autocmds may abort script processing */
3627 goto theend;
3628# endif
3629
3630 /* Since we are starting to edit a file, consider the filetype to be
3631 * unset. Helps for when an autocommand changes files and expects syntax
3632 * highlighting to work in the other file. */
3633 did_filetype = FALSE;
3634#endif
3635
3636/*
3637 * other_file oldbuf
3638 * FALSE FALSE re-edit same file, buffer is re-used
3639 * FALSE TRUE re-edit same file, nothing changes
3640 * TRUE FALSE start editing new file, new buffer
3641 * TRUE TRUE start editing in existing buffer (nothing to do)
3642 */
3643 if (!other_file && !oldbuf) /* re-use the buffer */
3644 {
3645 set_last_cursor(curwin); /* may set b_last_cursor */
3646 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
3647 {
3648 newlnum = curwin->w_cursor.lnum;
3649 solcol = curwin->w_cursor.col;
3650 }
3651#ifdef FEAT_AUTOCMD
3652 buf = curbuf;
3653 if (buf->b_fname != NULL)
3654 new_name = vim_strsave(buf->b_fname);
3655 else
3656 new_name = NULL;
3657#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003658 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
3659 {
3660 /* Save all the text, so that the reload can be undone.
3661 * Sync first so that this is a separate undo-able action. */
3662 u_sync(FALSE);
3663 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
3664 == FAIL)
3665 goto theend;
3666 u_unchanged(curbuf);
3667 buf_freeall(curbuf, BFA_KEEP_UNDO);
3668
3669 /* tell readfile() not to clear or reload undo info */
3670 readfile_flags = READ_KEEP_UNDO;
3671 }
3672 else
3673 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674#ifdef FEAT_AUTOCMD
3675 /* If autocommands deleted the buffer we were going to re-edit, give
3676 * up and jump to the end. */
3677 if (!buf_valid(buf))
3678 {
3679 delbuf_msg(new_name); /* frees new_name */
3680 goto theend;
3681 }
3682 vim_free(new_name);
3683
3684 /* If autocommands change buffers under our fingers, forget about
3685 * re-editing the file. Should do the buf_clear_file(), but perhaps
3686 * the autocommands changed the buffer... */
3687 if (buf != curbuf)
3688 goto theend;
3689# ifdef FEAT_EVAL
3690 if (aborting()) /* autocmds may abort script processing */
3691 goto theend;
3692# endif
3693#endif
3694 buf_clear_file(curbuf);
3695 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
3696 curbuf->b_op_end.lnum = 0;
3697 }
3698
3699/*
3700 * If we get here we are sure to start editing
3701 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 /* Assume success now */
3703 retval = OK;
3704
3705 /*
3706 * Reset cursor position, could be used by autocommands.
3707 */
3708 check_cursor();
3709
3710 /*
3711 * Check if we are editing the w_arg_idx file in the argument list.
3712 */
3713 check_arg_idx(curwin);
3714
3715#ifdef FEAT_AUTOCMD
3716 if (!auto_buf)
3717#endif
3718 {
3719 /*
3720 * Set cursor and init window before reading the file and executing
3721 * autocommands. This allows for the autocommands to position the
3722 * cursor.
3723 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003724 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725
3726#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003727 /* It's possible that all lines in the buffer changed. Need to update
3728 * automatic folding for all windows where it's used. */
3729# ifdef FEAT_WINDOWS
3730 {
3731 win_T *win;
3732 tabpage_T *tp;
3733
3734 FOR_ALL_TAB_WINDOWS(tp, win)
3735 if (win->w_buffer == curbuf)
3736 foldUpdateAll(win);
3737 }
3738# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 foldUpdateAll(curwin);
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003740# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741#endif
3742
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003743 /* Change directories when the 'acd' option is set. */
3744 DO_AUTOCHDIR
3745
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 /*
3747 * Careful: open_buffer() and apply_autocmds() may change the current
3748 * buffer and window.
3749 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01003750 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 topline = curwin->w_topline;
3752 if (!oldbuf) /* need to read the file */
3753 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003754#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 swap_exists_action = SEA_DIALOG;
3756#endif
3757 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
3758
3759 /*
3760 * Open the buffer and read the file.
3761 */
3762#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003763 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 retval = FAIL;
3765#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003766 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767#endif
3768
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003769#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 if (swap_exists_action == SEA_QUIT)
3771 retval = FAIL;
3772 handle_swap_exists(old_curbuf);
3773#endif
3774 }
3775#ifdef FEAT_AUTOCMD
3776 else
3777 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003778 /* Read the modelines, but only to set window-local options. Any
3779 * buffer-local options have already been set and may have been
3780 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00003781 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003782
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
3784 &retval);
3785 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
3786 &retval);
3787 }
3788 check_arg_idx(curwin);
3789#endif
3790
Bram Moolenaareab316b2015-03-24 11:46:30 +01003791 /* If autocommands change the cursor position or topline, we should
3792 * keep it. Also when it moves within a line. */
3793 if (!equalpos(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 {
3795 newlnum = curwin->w_cursor.lnum;
3796 newcol = curwin->w_cursor.col;
3797 }
3798 if (curwin->w_topline == topline)
3799 topline = 0;
3800
3801 /* Even when cursor didn't move we need to recompute topline. */
3802 changed_line_abv_curs();
3803
3804#ifdef FEAT_TITLE
3805 maketitle();
3806#endif
3807 }
3808
3809#ifdef FEAT_DIFF
3810 /* Tell the diff stuff that this buffer is new and/or needs updating.
3811 * Also needed when re-editing the same buffer, because unloading will
3812 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003813 if (curwin->w_p_diff)
3814 {
3815 diff_buf_add(curbuf);
3816 diff_invalidate(curbuf);
3817 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818#endif
3819
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003820#ifdef FEAT_SPELL
3821 /* If the window options were changed may need to set the spell language.
3822 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003823 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
3824 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003825#endif
3826
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 if (command == NULL)
3828 {
3829 if (newcol >= 0) /* position set by autocommands */
3830 {
3831 curwin->w_cursor.lnum = newlnum;
3832 curwin->w_cursor.col = newcol;
3833 check_cursor();
3834 }
3835 else if (newlnum > 0) /* line number from caller or old position */
3836 {
3837 curwin->w_cursor.lnum = newlnum;
3838 check_cursor_lnum();
3839 if (solcol >= 0 && !p_sol)
3840 {
3841 /* 'sol' is off: Use last known column. */
3842 curwin->w_cursor.col = solcol;
3843 check_cursor_col();
3844#ifdef FEAT_VIRTUALEDIT
3845 curwin->w_cursor.coladd = 0;
3846#endif
3847 curwin->w_set_curswant = TRUE;
3848 }
3849 else
3850 beginline(BL_SOL | BL_FIX);
3851 }
3852 else /* no line number, go to last line in Ex mode */
3853 {
3854 if (exmode_active)
3855 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3856 beginline(BL_WHITE | BL_FIX);
3857 }
3858 }
3859
3860#ifdef FEAT_WINDOWS
3861 /* Check if cursors in other windows on the same buffer are still valid */
3862 check_lnums(FALSE);
3863#endif
3864
3865 /*
3866 * Did not read the file, need to show some info about the file.
3867 * Do this after setting the cursor.
3868 */
3869 if (oldbuf
3870#ifdef FEAT_AUTOCMD
3871 && !auto_buf
3872#endif
3873 )
3874 {
3875 int msg_scroll_save = msg_scroll;
3876
3877 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
3878 * message. */
3879 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
3880 msg_scroll = FALSE;
3881 if (!msg_scroll) /* wait a bit when overwriting an error msg */
3882 check_for_delay(FALSE);
3883 msg_start();
3884 msg_scroll = msg_scroll_save;
3885 msg_scrolled_ign = TRUE;
3886
3887 fileinfo(FALSE, TRUE, FALSE);
3888
3889 msg_scrolled_ign = FALSE;
3890 }
3891
3892 if (command != NULL)
3893 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
3894
3895#ifdef FEAT_KEYMAP
3896 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003897 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898#endif
3899
3900 --RedrawingDisabled;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003901 did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 if (!skip_redraw)
3903 {
3904 n = p_so;
3905 if (topline == 0 && command == NULL)
3906 p_so = 999; /* force cursor halfway the window */
3907 update_topline();
3908#ifdef FEAT_SCROLLBIND
3909 curwin->w_scbind_pos = curwin->w_topline;
3910#endif
3911 p_so = n;
3912 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
3913 }
3914
3915 if (p_im)
3916 need_start_insertmode = TRUE;
3917
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003918 /* Change directories when the 'acd' option is set. */
3919 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00003921#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02003922 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923 {
3924# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02003925 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
3927# endif
3928# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003929 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003930 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931# endif
3932 }
3933#endif
3934
3935theend:
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003936 if (did_inc_redrawing_disabled)
3937 --RedrawingDisabled;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003938#ifdef FEAT_AUTOCMD
3939 if (did_set_swapcommand)
3940 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
3941#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942#ifdef FEAT_BROWSE
3943 vim_free(browse_file);
3944#endif
3945 vim_free(free_fname);
3946 return retval;
3947}
3948
3949#ifdef FEAT_AUTOCMD
3950 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003951delbuf_msg(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952{
3953 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
3954 name == NULL ? (char_u *)"" : name);
3955 vim_free(name);
3956 au_new_curbuf = NULL;
3957}
3958#endif
3959
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003960static int append_indent = 0; /* autoindent for first line */
3961
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962/*
3963 * ":insert" and ":append", also used by ":change"
3964 */
3965 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003966ex_append(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967{
3968 char_u *theline;
3969 int did_undo = FALSE;
3970 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003971 int indent = 0;
3972 char_u *p;
3973 int vcol;
3974 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003976 /* the ! flag toggles autoindent */
3977 if (eap->forceit)
3978 curbuf->b_p_ai = !curbuf->b_p_ai;
3979
3980 /* First autoindent comes from the line we start on */
3981 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
3982 append_indent = get_indent_lnum(lnum);
3983
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 if (eap->cmdidx != CMD_append)
3985 --lnum;
3986
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003987 /* when the buffer is empty append to line 0 and delete the dummy line */
3988 if (empty && lnum == 1)
3989 lnum = 0;
3990
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 State = INSERT; /* behave like in Insert mode */
3992 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
3993 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003994
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00003995 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 {
3997 msg_scroll = TRUE;
3998 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003999 if (curbuf->b_p_ai)
4000 {
4001 if (append_indent >= 0)
4002 {
4003 indent = append_indent;
4004 append_indent = -1;
4005 }
4006 else if (lnum > 0)
4007 indent = get_indent_lnum(lnum);
4008 }
4009 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004011 {
4012 /* No getline() function, use the lines that follow. This ends
4013 * when there is no more. */
4014 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
4015 break;
4016 p = vim_strchr(eap->nextcmd, NL);
4017 if (p == NULL)
4018 p = eap->nextcmd + STRLEN(eap->nextcmd);
4019 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4020 if (*p != NUL)
4021 ++p;
4022 eap->nextcmd = p;
4023 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004025 {
4026 int save_State = State;
4027
4028 /* Set State to avoid the cursor shape to be set to INSERT mode
4029 * when getline() returns. */
4030 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 theline = eap->getline(
4032#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004033 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004035 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004036 State = save_State;
4037 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004039 if (theline == NULL)
4040 break;
4041
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004042 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4043 if (ex_keep_indent)
4044 append_indent = indent;
4045
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004046 /* Look for the "." after automatic indent. */
4047 vcol = 0;
4048 for (p = theline; indent > vcol; ++p)
4049 {
4050 if (*p == ' ')
4051 ++vcol;
4052 else if (*p == TAB)
4053 vcol += 8 - vcol % 8;
4054 else
4055 break;
4056 }
4057 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004058 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4059 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 {
4061 vim_free(theline);
4062 break;
4063 }
4064
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004065 /* don't use autoindent if nothing was typed. */
4066 if (p[0] == NUL)
4067 theline[0] = NUL;
4068
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 did_undo = TRUE;
4070 ml_append(lnum, theline, (colnr_T)0, FALSE);
4071 appended_lines_mark(lnum, 1L);
4072
4073 vim_free(theline);
4074 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004075
4076 if (empty)
4077 {
4078 ml_delete(2L, FALSE);
4079 empty = FALSE;
4080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 }
4082 State = NORMAL;
4083
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004084 if (eap->forceit)
4085 curbuf->b_p_ai = !curbuf->b_p_ai;
4086
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004088 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 * "end" is set to lnum when something has been appended, otherwise
4090 * it is the same than "start" -- Acevedo */
4091 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4092 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4093 if (eap->cmdidx != CMD_append)
4094 --curbuf->b_op_start.lnum;
4095 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4096 ? lnum : curbuf->b_op_start.lnum;
4097 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4098 curwin->w_cursor.lnum = lnum;
4099 check_cursor_lnum();
4100 beginline(BL_SOL | BL_FIX);
4101
4102 need_wait_return = FALSE; /* don't use wait_return() now */
4103 ex_no_reprint = TRUE;
4104}
4105
4106/*
4107 * ":change"
4108 */
4109 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004110ex_change(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111{
4112 linenr_T lnum;
4113
4114 if (eap->line2 >= eap->line1
4115 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4116 return;
4117
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004118 /* the ! flag toggles autoindent */
4119 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4120 append_indent = get_indent_lnum(eap->line1);
4121
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4123 {
4124 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4125 break;
4126 ml_delete(eap->line1, FALSE);
4127 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004128
4129 /* make sure the cursor is not beyond the end of the file now */
4130 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4132
4133 /* ":append" on the line above the deleted lines. */
4134 eap->line2 = eap->line1;
4135 ex_append(eap);
4136}
4137
4138 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004139ex_z(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140{
4141 char_u *x;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004142 int bigness;
4143 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 int minus = 0;
4145 linenr_T start, end, curs, i;
4146 int j;
4147 linenr_T lnum = eap->line2;
4148
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004149 /* Vi compatible: ":z!" uses display height, without a count uses
4150 * 'scroll' */
4151 if (eap->forceit)
4152 bigness = curwin->w_height;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004153#ifdef FEAT_WINDOWS
Bram Moolenaar631abc32014-02-22 22:27:47 +01004154 else if (firstwin != lastwin)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004155 bigness = curwin->w_height - 3;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004156#endif
Bram Moolenaar631abc32014-02-22 22:27:47 +01004157 else
4158 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 if (bigness < 1)
4160 bigness = 1;
4161
4162 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004163 kind = x;
4164 if (*kind == '-' || *kind == '+' || *kind == '='
4165 || *kind == '^' || *kind == '.')
4166 ++x;
4167 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 ++x;
4169
4170 if (*x != 0)
4171 {
4172 if (!VIM_ISDIGIT(*x))
4173 {
4174 EMSG(_("E144: non-numeric argument to :z"));
4175 return;
4176 }
4177 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004178 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 bigness = atoi((char *)x);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004180 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004181 if (*kind == '=')
4182 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004183 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 }
4185
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004186 /* the number of '-' and '+' multiplies the distance */
4187 if (*kind == '-' || *kind == '+')
4188 for (x = kind + 1; *x == *kind; ++x)
4189 ;
4190
4191 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 {
4193 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004194 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4195 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004196 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 break;
4198
4199 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004200 start = lnum - (bigness + 1) / 2 + 1;
4201 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 curs = lnum;
4203 minus = 1;
4204 break;
4205
4206 case '^':
4207 start = lnum - bigness * 2;
4208 end = lnum - bigness;
4209 curs = lnum - bigness;
4210 break;
4211
4212 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004213 start = lnum - (bigness + 1) / 2 + 1;
4214 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 curs = end;
4216 break;
4217
4218 default: /* '+' */
4219 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004220 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004221 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004222 else if (eap->addr_count == 0)
4223 ++start;
4224 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225 curs = end;
4226 break;
4227 }
4228
4229 if (start < 1)
4230 start = 1;
4231
4232 if (end > curbuf->b_ml.ml_line_count)
4233 end = curbuf->b_ml.ml_line_count;
4234
4235 if (curs > curbuf->b_ml.ml_line_count)
4236 curs = curbuf->b_ml.ml_line_count;
4237
4238 for (i = start; i <= end; i++)
4239 {
4240 if (minus && i == lnum)
4241 {
4242 msg_putchar('\n');
4243
4244 for (j = 1; j < Columns; j++)
4245 msg_putchar('-');
4246 }
4247
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004248 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249
4250 if (minus && i == lnum)
4251 {
4252 msg_putchar('\n');
4253
4254 for (j = 1; j < Columns; j++)
4255 msg_putchar('-');
4256 }
4257 }
4258
4259 curwin->w_cursor.lnum = curs;
4260 ex_no_reprint = TRUE;
4261}
4262
4263/*
4264 * Check if the restricted flag is set.
4265 * If so, give an error message and return TRUE.
4266 * Otherwise, return FALSE.
4267 */
4268 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004269check_restricted(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270{
4271 if (restricted)
4272 {
4273 EMSG(_("E145: Shell commands not allowed in rvim"));
4274 return TRUE;
4275 }
4276 return FALSE;
4277}
4278
4279/*
4280 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4281 * If so, give an error message and return TRUE.
4282 * Otherwise, return FALSE.
4283 */
4284 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004285check_secure(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286{
4287 if (secure)
4288 {
4289 secure = 2;
4290 EMSG(_(e_curdir));
4291 return TRUE;
4292 }
4293#ifdef HAVE_SANDBOX
4294 /*
4295 * In the sandbox more things are not allowed, including the things
4296 * disallowed in secure mode.
4297 */
4298 if (sandbox != 0)
4299 {
4300 EMSG(_(e_sandbox));
4301 return TRUE;
4302 }
4303#endif
4304 return FALSE;
4305}
4306
4307static char_u *old_sub = NULL; /* previous substitute pattern */
4308static int global_need_beginline; /* call beginline() after ":g" */
4309
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310/* do_sub()
4311 *
4312 * Perform a substitution from line eap->line1 to line eap->line2 using the
4313 * command pointed to by eap->arg which should be of the form:
4314 *
4315 * /pattern/substitution/{flags}
4316 *
4317 * The usual escapes are supported as described in the regexp docs.
4318 */
4319 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004320do_sub(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321{
4322 linenr_T lnum;
4323 long i = 0;
4324 regmmatch_T regmatch;
4325 static int do_all = FALSE; /* do multiple substitutions per line */
4326 static int do_ask = FALSE; /* ask for confirmation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004327 static int do_count = FALSE; /* count only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328 static int do_error = TRUE; /* if false, ignore errors */
4329 static int do_print = FALSE; /* print last line with subs. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004330 static int do_list = FALSE; /* list last line with subs. */
4331 static int do_number = FALSE; /* list last line with line nr*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 static int do_ic = 0; /* ignore case flag */
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004333 int save_do_all; /* remember user specified 'g' flag */
4334 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4336 int delimiter;
4337 int sublen;
4338 int got_quit = FALSE;
4339 int got_match = FALSE;
4340 int temp;
4341 int which_pat;
4342 char_u *cmd;
4343 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004344 linenr_T first_line = 0; /* first changed line */
4345 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 * change */
4347 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4348 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004349 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004350 char_u *sub_firstline; /* allocated copy of first sub line */
4351 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004352 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004353 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004354#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004355 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004356#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357
4358 cmd = eap->arg;
4359 if (!global_busy)
4360 {
4361 sub_nsubs = 0;
4362 sub_nlines = 0;
4363 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004364 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 if (eap->cmdidx == CMD_tilde)
4367 which_pat = RE_LAST; /* use last used regexp */
4368 else
4369 which_pat = RE_SUBST; /* use last substitute regexp */
4370
4371 /* new pattern and substitution */
4372 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd)
4373 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4374 {
4375 /* don't accept alphanumeric for separator */
4376 if (isalpha(*cmd))
4377 {
4378 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4379 return;
4380 }
4381 /*
4382 * undocumented vi feature:
4383 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4384 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4385 */
4386 if (*cmd == '\\')
4387 {
4388 ++cmd;
4389 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4390 {
4391 EMSG(_(e_backslash));
4392 return;
4393 }
4394 if (*cmd != '&')
4395 which_pat = RE_SEARCH; /* use last '/' pattern */
4396 pat = (char_u *)""; /* empty search pattern */
4397 delimiter = *cmd++; /* remember delimiter character */
4398 }
4399 else /* find the end of the regexp */
4400 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004401#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4402 if (p_altkeymap && curwin->w_p_rl)
4403 lrF_sub(cmd);
4404#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 which_pat = RE_LAST; /* use last used regexp */
4406 delimiter = *cmd++; /* remember delimiter character */
4407 pat = cmd; /* remember start of search pat */
4408 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4409 if (cmd[0] == delimiter) /* end delimiter found */
4410 *cmd++ = NUL; /* replace it with a NUL */
4411 }
4412
4413 /*
4414 * Small incompatibility: vi sees '\n' as end of the command, but in
4415 * Vim we want to use '\n' to find/substitute a NUL.
4416 */
4417 sub = cmd; /* remember the start of the substitution */
4418
4419 while (cmd[0])
4420 {
4421 if (cmd[0] == delimiter) /* end delimiter found */
4422 {
4423 *cmd++ = NUL; /* replace it with a NUL */
4424 break;
4425 }
4426 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4427 ++cmd;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004428 mb_ptr_adv(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 }
4430
4431 if (!eap->skip)
4432 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004433 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4434 if (STRCMP(sub, "%") == 0
4435 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4436 {
4437 if (old_sub == NULL) /* there is no previous command */
4438 {
4439 EMSG(_(e_nopresub));
4440 return;
4441 }
4442 sub = old_sub;
4443 }
4444 else
4445 {
4446 vim_free(old_sub);
4447 old_sub = vim_strsave(sub);
4448 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 }
4450 }
4451 else if (!eap->skip) /* use previous pattern and substitution */
4452 {
4453 if (old_sub == NULL) /* there is no previous command */
4454 {
4455 EMSG(_(e_nopresub));
4456 return;
4457 }
4458 pat = NULL; /* search_regcomp() will use previous pattern */
4459 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004460
4461 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4462 * last column after using "$". */
4463 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 }
4465
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004466 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4467 * more efficient.
4468 * TODO: find a generic solution to make line-joining operations more
4469 * efficient, avoid allocating a string that grows in size.
4470 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004471 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004472 && *sub == NUL
4473 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4474 || *cmd == 'p' || *cmd == '#'))))
4475 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004476 linenr_T joined_lines_count;
4477
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004478 curwin->w_cursor.lnum = eap->line1;
4479 if (*cmd == 'l')
4480 eap->flags = EXFLAG_LIST;
4481 else if (*cmd == '#')
4482 eap->flags = EXFLAG_NR;
4483 else if (*cmd == 'p')
4484 eap->flags = EXFLAG_PRINT;
4485
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004486 /* The number of lines joined is the number of lines in the range plus
4487 * one. One less when the last line is included. */
4488 joined_lines_count = eap->line2 - eap->line1 + 1;
4489 if (eap->line2 < curbuf->b_ml.ml_line_count)
4490 ++joined_lines_count;
4491 if (joined_lines_count > 1)
4492 {
4493 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
4494 sub_nsubs = joined_lines_count - 1;
4495 sub_nlines = 1;
4496 (void)do_sub_msg(FALSE);
4497 ex_may_print(eap);
4498 }
4499
4500 if (!cmdmod.keeppatterns)
4501 save_re_pat(RE_SUBST, pat, p_magic);
4502#ifdef FEAT_CMDHIST
4503 /* put pattern in history */
4504 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
4505#endif
4506
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004507 return;
4508 }
4509
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 /*
4511 * Find trailing options. When '&' is used, keep old options.
4512 */
4513 if (*cmd == '&')
4514 ++cmd;
4515 else
4516 {
4517 if (!p_ed)
4518 {
4519 if (p_gd) /* default is global on */
4520 do_all = TRUE;
4521 else
4522 do_all = FALSE;
4523 do_ask = FALSE;
4524 }
4525 do_error = TRUE;
4526 do_print = FALSE;
Bram Moolenaarcc016f52005-12-10 20:23:46 +00004527 do_count = FALSE;
Bram Moolenaarfe40d1a2007-07-24 09:16:38 +00004528 do_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 do_ic = 0;
4530 }
4531 while (*cmd)
4532 {
4533 /*
4534 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
4535 * 'r' is never inverted.
4536 */
4537 if (*cmd == 'g')
4538 do_all = !do_all;
4539 else if (*cmd == 'c')
4540 do_ask = !do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004541 else if (*cmd == 'n')
4542 do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 else if (*cmd == 'e')
4544 do_error = !do_error;
4545 else if (*cmd == 'r') /* use last used regexp */
4546 which_pat = RE_LAST;
4547 else if (*cmd == 'p')
4548 do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004549 else if (*cmd == '#')
4550 {
4551 do_print = TRUE;
4552 do_number = TRUE;
4553 }
4554 else if (*cmd == 'l')
4555 {
4556 do_print = TRUE;
4557 do_list = TRUE;
4558 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 else if (*cmd == 'i') /* ignore case */
4560 do_ic = 'i';
4561 else if (*cmd == 'I') /* don't ignore case */
4562 do_ic = 'I';
4563 else
4564 break;
4565 ++cmd;
4566 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004567 if (do_count)
4568 do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004570 save_do_all = do_all;
4571 save_do_ask = do_ask;
4572
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 /*
4574 * check for a trailing count
4575 */
4576 cmd = skipwhite(cmd);
4577 if (VIM_ISDIGIT(*cmd))
4578 {
4579 i = getdigits(&cmd);
4580 if (i <= 0 && !eap->skip && do_error)
4581 {
4582 EMSG(_(e_zerocount));
4583 return;
4584 }
4585 eap->line1 = eap->line2;
4586 eap->line2 += i - 1;
4587 if (eap->line2 > curbuf->b_ml.ml_line_count)
4588 eap->line2 = curbuf->b_ml.ml_line_count;
4589 }
4590
4591 /*
4592 * check for trailing command or garbage
4593 */
4594 cmd = skipwhite(cmd);
4595 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
4596 {
4597 eap->nextcmd = check_nextcmd(cmd);
4598 if (eap->nextcmd == NULL)
4599 {
4600 EMSG(_(e_trailing));
4601 return;
4602 }
4603 }
4604
4605 if (eap->skip) /* not executing commands, only parsing */
4606 return;
4607
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004608 if (!do_count && !curbuf->b_p_ma)
4609 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004610 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004611 EMSG(_(e_modifiable));
4612 return;
4613 }
4614
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
4616 {
4617 if (do_error)
4618 EMSG(_(e_invcmd));
4619 return;
4620 }
4621
4622 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
4623 if (do_ic == 'i')
4624 regmatch.rmm_ic = TRUE;
4625 else if (do_ic == 'I')
4626 regmatch.rmm_ic = FALSE;
4627
4628 sub_firstline = NULL;
4629
4630 /*
4631 * ~ in the substitute pattern is replaced with the old pattern.
4632 * We do it here once to avoid it to be replaced over and over again.
4633 * But don't do it when it starts with "\=", then it's an expression.
4634 */
4635 if (!(sub[0] == '\\' && sub[1] == '='))
4636 sub = regtilde(sub, p_magic);
4637
4638 /*
4639 * Check for a match on each line.
4640 */
4641 line2 = eap->line2;
4642 for (lnum = eap->line1; lnum <= line2 && !(got_quit
4643#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD)
4644 || aborting()
4645#endif
4646 ); ++lnum)
4647 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00004648 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
4649 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 if (nmatch)
4651 {
4652 colnr_T copycol;
4653 colnr_T matchcol;
4654 colnr_T prev_matchcol = MAXCOL;
4655 char_u *new_end, *new_start = NULL;
4656 unsigned new_start_len = 0;
4657 char_u *p1;
4658 int did_sub = FALSE;
4659 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004660 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 long nmatch_tl = 0; /* nr of lines matched below lnum */
4662 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00004663 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004664 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665
4666 /*
4667 * The new text is build up step by step, to avoid too much
4668 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00004669 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 * copycol Column in the old text where we started
4671 * looking for a match; from here old text still
4672 * needs to be copied to the new text.
4673 * matchcol Column number of the old text where to look
4674 * for the next match. It's just after the
4675 * previous match or one further.
4676 * prev_matchcol Column just after the previous match (if any).
4677 * Mostly equal to matchcol, except for the first
4678 * match and after skipping an empty match.
4679 * regmatch.*pos Where the pattern matched in the old text.
4680 * new_start The new text, all that has been produced so
4681 * far.
4682 * new_end The new text, where to append new text.
4683 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004684 * lnum The line number where we found the start of
4685 * the match. Can be below the line we searched
4686 * when there is a \n before a \zs in the
4687 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 * sub_firstlnum The line number in the buffer where to look
4689 * for a match. Can be different from "lnum"
4690 * when the pattern or substitute string contains
4691 * line breaks.
4692 *
4693 * Special situations:
4694 * - When the substitute string contains a line break, the part up
4695 * to the line break is inserted in the text, but the copy of
4696 * the original line is kept. "sub_firstlnum" is adjusted for
4697 * the inserted lines.
4698 * - When the matched pattern contains a line break, the old line
4699 * is taken from the line at the end of the pattern. The lines
4700 * in the match are deleted later, "sub_firstlnum" is adjusted
4701 * accordingly.
4702 *
4703 * The new text is built up in new_start[]. It has some extra
4704 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00004705 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 *
4707 * Make a copy of the old line, so it won't be taken away when
4708 * updating the screen or handling a multi-line match. The "old_"
4709 * pointers point into this copy.
4710 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004711 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712 copycol = 0;
4713 matchcol = 0;
4714
4715 /* At first match, remember current cursor position. */
4716 if (!got_match)
4717 {
4718 setpcmark();
4719 got_match = TRUE;
4720 }
4721
4722 /*
4723 * Loop until nothing more to replace in this line.
4724 * 1. Handle match with empty string.
4725 * 2. If do_ask is set, ask for confirmation.
4726 * 3. substitute the string.
4727 * 4. if do_all is set, find next match
4728 * 5. break if there isn't another match in this line
4729 */
4730 for (;;)
4731 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004732 /* Advance "lnum" to the line where the match starts. The
4733 * match does not start in the first line when there is a line
4734 * break before \zs. */
4735 if (regmatch.startpos[0].lnum > 0)
4736 {
4737 lnum += regmatch.startpos[0].lnum;
4738 sub_firstlnum += regmatch.startpos[0].lnum;
4739 nmatch -= regmatch.startpos[0].lnum;
4740 vim_free(sub_firstline);
4741 sub_firstline = NULL;
4742 }
4743
4744 if (sub_firstline == NULL)
4745 {
4746 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
4747 if (sub_firstline == NULL)
4748 {
4749 vim_free(new_start);
4750 goto outofmem;
4751 }
4752 }
4753
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 /* Save the line number of the last change for the final
4755 * cursor position (just like Vi). */
4756 curwin->w_cursor.lnum = lnum;
4757 do_again = FALSE;
4758
4759 /*
4760 * 1. Match empty string does not count, except for first
4761 * match. This reproduces the strange vi behaviour.
4762 * This also catches endless loops.
4763 */
4764 if (matchcol == prev_matchcol
4765 && regmatch.endpos[0].lnum == 0
4766 && matchcol == regmatch.endpos[0].col)
4767 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00004768 if (sub_firstline[matchcol] == NUL)
4769 /* We already were at the end of the line. Don't look
4770 * for a match in this line again. */
4771 skip_match = TRUE;
4772 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02004773 {
4774 /* search for a match at next column */
4775#ifdef FEAT_MBYTE
4776 if (has_mbyte)
4777 matchcol += mb_ptr2len(sub_firstline + matchcol);
4778 else
4779#endif
4780 ++matchcol;
4781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 goto skip;
4783 }
4784
4785 /* Normally we continue searching for a match just after the
4786 * previous match. */
4787 matchcol = regmatch.endpos[0].col;
4788 prev_matchcol = matchcol;
4789
4790 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00004791 * 2. If do_count is set only increase the counter.
4792 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004794 if (do_count)
4795 {
4796 /* For a multi-line match, put matchcol at the NUL at
4797 * the end of the line and set nmatch to one, so that
4798 * we continue looking for a match on the next line.
4799 * Avoids that ":s/\nB\@=//gc" get stuck. */
4800 if (nmatch > 1)
4801 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004802 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004803 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00004804 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004805 }
4806 sub_nsubs++;
4807 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004808#ifdef FEAT_EVAL
4809 /* Skip the substitution, unless an expression is used,
4810 * then it is evaluated in the sandbox. */
4811 if (!(sub[0] == '\\' && sub[1] == '='))
4812#endif
4813 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004814 }
4815
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 if (do_ask)
4817 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00004818 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004819
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 /* change State to CONFIRM, so that the mouse works
4821 * properly */
4822 save_State = State;
4823 State = CONFIRM;
4824#ifdef FEAT_MOUSE
4825 setmouse(); /* disable mouse in xterm */
4826#endif
4827 curwin->w_cursor.col = regmatch.startpos[0].col;
4828
4829 /* When 'cpoptions' contains "u" don't sync undo when
4830 * asking for confirmation. */
4831 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
4832 ++no_u_sync;
4833
4834 /*
4835 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
4836 */
4837 while (do_ask)
4838 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004839 if (exmode_active)
4840 {
4841 char_u *resp;
4842 colnr_T sc, ec;
4843
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004844 print_line_no_prefix(lnum, do_number, do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004845
4846 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
4847 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
4848 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004849 if (do_number || curwin->w_p_nu)
4850 {
4851 int numw = number_width(curwin) + 1;
4852 sc += numw;
4853 ec += numw;
4854 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004855 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004856 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004857 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00004858 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004859 msg_putchar('^');
4860
4861 resp = getexmodeline('?', NULL, 0);
4862 if (resp != NULL)
4863 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004864 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004865 vim_free(resp);
4866 }
4867 }
4868 else
4869 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004870 char_u *orig_line = NULL;
4871 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004873 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004875 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004877 /* Invert the matched string.
4878 * Remove the inversion afterwards. */
4879 temp = RedrawingDisabled;
4880 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004882 if (new_start != NULL)
4883 {
4884 /* There already was a substitution, we would
4885 * like to show this to the user. We cannot
4886 * really update the line, it would change
4887 * what matches. Temporarily replace the line
4888 * and change it back afterwards. */
4889 orig_line = vim_strsave(ml_get(lnum));
4890 if (orig_line != NULL)
4891 {
4892 char_u *new_line = concat_str(new_start,
4893 sub_firstline + copycol);
4894
4895 if (new_line == NULL)
4896 {
4897 vim_free(orig_line);
4898 orig_line = NULL;
4899 }
4900 else
4901 {
4902 /* Position the cursor relative to the
4903 * end of the line, the previous
4904 * substitute may have inserted or
4905 * deleted characters before the
4906 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01004907 len_change = (int)STRLEN(new_line)
4908 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004909 curwin->w_cursor.col += len_change;
4910 ml_replace(lnum, new_line, FALSE);
4911 }
4912 }
4913 }
4914
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004915 search_match_lines = regmatch.endpos[0].lnum
4916 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004917 search_match_endcol = regmatch.endpos[0].col
4918 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004919 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004921 update_topline();
4922 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00004923 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004924 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00004925 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926
4927#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004928 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004930 if (msg_row == Rows - 1)
4931 msg_didout = FALSE; /* avoid a scroll-up */
4932 msg_starthere();
4933 i = msg_scroll;
4934 msg_scroll = 0; /* truncate msg when
4935 needed */
4936 msg_no_more = TRUE;
4937 /* write message same highlighting as for
4938 * wait_return */
4939 smsg_attr(hl_attr(HLF_R),
4940 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
4941 msg_no_more = FALSE;
4942 msg_scroll = i;
4943 showruler(TRUE);
4944 windgoto(msg_row, msg_col);
4945 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946
4947#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004948 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004950 ++no_mapping; /* don't map this key */
4951 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004952 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004953 --allow_keys;
4954 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004956 /* clear the question */
4957 msg_didout = FALSE; /* don't scroll up */
4958 msg_col = 0;
4959 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004960
4961 /* restore the line */
4962 if (orig_line != NULL)
4963 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004964 }
4965
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004967 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004969 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970#endif
4971 )
4972 {
4973 got_quit = TRUE;
4974 break;
4975 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004976 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004978 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004980 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 {
4982 /* last: replace and then stop */
4983 do_all = FALSE;
4984 line2 = lnum;
4985 break;
4986 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004987 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 {
4989 do_ask = FALSE;
4990 break;
4991 }
4992#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004993 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004995 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 scrolldown_clamp();
4997#endif
4998 }
4999 State = save_State;
5000#ifdef FEAT_MOUSE
5001 setmouse();
5002#endif
5003 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5004 --no_u_sync;
5005
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005006 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 {
5008 /* For a multi-line match, put matchcol at the NUL at
5009 * the end of the line and set nmatch to one, so that
5010 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00005011 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
5012 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 if (nmatch > 1)
5014 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005015 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00005016 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 }
5018 goto skip;
5019 }
5020 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01005021 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 }
5023
5024 /* Move the cursor to the start of the match, so that we can
5025 * use "\=col("."). */
5026 curwin->w_cursor.col = regmatch.startpos[0].col;
5027
5028 /*
5029 * 3. substitute the string.
5030 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005031#ifdef FEAT_EVAL
5032 if (do_count)
5033 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005034 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005035 save_ma = curbuf->b_p_ma;
5036 curbuf->b_p_ma = FALSE;
5037 sandbox++;
5038 }
5039#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005041 sublen = vim_regsub_multi(&regmatch,
5042 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005044#ifdef FEAT_EVAL
5045 if (do_count)
5046 {
5047 curbuf->b_p_ma = save_ma;
5048 sandbox--;
5049 goto skip;
5050 }
5051#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052
Bram Moolenaar4463f292005-09-25 22:20:24 +00005053 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005054 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005055 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5056 {
5057 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5058 skip_match = TRUE;
5059 }
5060
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 /* Need room for:
5062 * - result so far in new_start (not for first sub in line)
5063 * - original text up to match
5064 * - length of substituted part
5065 * - original text after match
5066 */
5067 if (nmatch == 1)
5068 p1 = sub_firstline;
5069 else
5070 {
5071 p1 = ml_get(sub_firstlnum + nmatch - 1);
5072 nmatch_tl += nmatch - 1;
5073 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005074 copy_len = regmatch.startpos[0].col - copycol;
5075 needed_len = copy_len + ((unsigned)STRLEN(p1)
5076 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 if (new_start == NULL)
5078 {
5079 /*
5080 * Get some space for a temporary buffer to do the
5081 * substitution into (and some extra space to avoid
5082 * too many calls to alloc()/free()).
5083 */
5084 new_start_len = needed_len + 50;
5085 if ((new_start = alloc_check(new_start_len)) == NULL)
5086 goto outofmem;
5087 *new_start = NUL;
5088 new_end = new_start;
5089 }
5090 else
5091 {
5092 /*
5093 * Check if the temporary buffer is long enough to do the
5094 * substitution into. If not, make it larger (with a bit
5095 * extra to avoid too many calls to alloc()/free()).
5096 */
5097 len = (unsigned)STRLEN(new_start);
5098 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005099 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 {
5101 new_start_len = needed_len + 50;
5102 if ((p1 = alloc_check(new_start_len)) == NULL)
5103 {
5104 vim_free(new_start);
5105 goto outofmem;
5106 }
5107 mch_memmove(p1, new_start, (size_t)(len + 1));
5108 vim_free(new_start);
5109 new_start = p1;
5110 }
5111 new_end = new_start + len;
5112 }
5113
5114 /*
5115 * copy the text up to the part that matched
5116 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005117 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5118 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005120 (void)vim_regsub_multi(&regmatch,
5121 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 sub, new_end, TRUE, p_magic, TRUE);
5123 sub_nsubs++;
5124 did_sub = TRUE;
5125
5126 /* Move the cursor to the start of the line, to avoid that it
5127 * is beyond the end of the line after the substitution. */
5128 curwin->w_cursor.col = 0;
5129
5130 /* For a multi-line match, make a copy of the last matched
5131 * line and continue in that one. */
5132 if (nmatch > 1)
5133 {
5134 sub_firstlnum += nmatch - 1;
5135 vim_free(sub_firstline);
5136 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5137 /* When going beyond the last line, stop substituting. */
5138 if (sub_firstlnum <= line2)
5139 do_again = TRUE;
5140 else
5141 do_all = FALSE;
5142 }
5143
5144 /* Remember next character to be copied. */
5145 copycol = regmatch.endpos[0].col;
5146
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005147 if (skip_match)
5148 {
5149 /* Already hit end of the buffer, sub_firstlnum is one
5150 * less than what it ought to be. */
5151 vim_free(sub_firstline);
5152 sub_firstline = vim_strsave((char_u *)"");
5153 copycol = 0;
5154 }
5155
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 /*
5157 * Now the trick is to replace CTRL-M chars with a real line
5158 * break. This would make it impossible to insert a CTRL-M in
5159 * the text. The line break can be avoided by preceding the
5160 * CTRL-M with a backslash. To be able to insert a backslash,
5161 * they must be doubled in the string and are halved here.
5162 * That is Vi compatible.
5163 */
5164 for (p1 = new_end; *p1; ++p1)
5165 {
5166 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005167 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 else if (*p1 == CAR)
5169 {
5170 if (u_inssub(lnum) == OK) /* prepare for undo */
5171 {
5172 *p1 = NUL; /* truncate up to the CR */
5173 ml_append(lnum - 1, new_start,
5174 (colnr_T)(p1 - new_start + 1), FALSE);
5175 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
5176 if (do_ask)
5177 appended_lines(lnum - 1, 1L);
5178 else
5179 {
5180 if (first_line == 0)
5181 first_line = lnum;
5182 last_line = lnum + 1;
5183 }
5184 /* All line numbers increase. */
5185 ++sub_firstlnum;
5186 ++lnum;
5187 ++line2;
5188 /* move the cursor to the new line, like Vi */
5189 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005190 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005191 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 p1 = new_start - 1;
5193 }
5194 }
5195#ifdef FEAT_MBYTE
5196 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005197 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198#endif
5199 }
5200
5201 /*
5202 * 4. If do_all is set, find next match.
5203 * Prevent endless loop with patterns that match empty
5204 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5205 * But ":s/\n/#/" is OK.
5206 */
5207skip:
5208 /* We already know that we did the last subst when we are at
5209 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005210 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5211 * "line2" when there is a \zs in the pattern after a line
5212 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005213 lastone = (skip_match
5214 || got_int
5215 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005216 || lnum > line2
Bram Moolenaar8299df92004-07-10 09:47:34 +00005217 || !(do_all || do_again)
5218 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5219 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 nmatch = -1;
5221
5222 /*
5223 * Replace the line in the buffer when needed. This is
5224 * skipped when there are more matches.
5225 * The check for nmatch_tl is needed for when multi-line
5226 * matching must replace the lines before trying to do another
5227 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005228 * When the match starts below where we start searching also
5229 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 */
5231 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 || nmatch_tl > 0
5233 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005234 curbuf, sub_firstlnum,
5235 matchcol, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005236 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 {
5238 if (new_start != NULL)
5239 {
5240 /*
5241 * Copy the rest of the line, that didn't match.
5242 * "matchcol" has to be adjusted, we use the end of
5243 * the line as reference, because the substitute may
5244 * have changed the number of characters. Same for
5245 * "prev_matchcol".
5246 */
5247 STRCAT(new_start, sub_firstline + copycol);
5248 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5249 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5250 - prev_matchcol;
5251
5252 if (u_savesub(lnum) != OK)
5253 break;
5254 ml_replace(lnum, new_start, TRUE);
5255
5256 if (nmatch_tl > 0)
5257 {
5258 /*
5259 * Matched lines have now been substituted and are
5260 * useless, delete them. The part after the match
5261 * has been appended to new_start, we don't need
5262 * it in the buffer.
5263 */
5264 ++lnum;
5265 if (u_savedel(lnum, nmatch_tl) != OK)
5266 break;
5267 for (i = 0; i < nmatch_tl; ++i)
5268 ml_delete(lnum, (int)FALSE);
5269 mark_adjust(lnum, lnum + nmatch_tl - 1,
5270 (long)MAXLNUM, -nmatch_tl);
5271 if (do_ask)
5272 deleted_lines(lnum, nmatch_tl);
5273 --lnum;
5274 line2 -= nmatch_tl; /* nr of lines decreases */
5275 nmatch_tl = 0;
5276 }
5277
5278 /* When asking, undo is saved each time, must also set
5279 * changed flag each time. */
5280 if (do_ask)
5281 changed_bytes(lnum, 0);
5282 else
5283 {
5284 if (first_line == 0)
5285 first_line = lnum;
5286 last_line = lnum + 1;
5287 }
5288
5289 sub_firstlnum = lnum;
5290 vim_free(sub_firstline); /* free the temp buffer */
5291 sub_firstline = new_start;
5292 new_start = NULL;
5293 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5294 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5295 - prev_matchcol;
5296 copycol = 0;
5297 }
5298 if (nmatch == -1 && !lastone)
5299 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005300 sub_firstlnum, matchcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301
5302 /*
5303 * 5. break if there isn't another match in this line
5304 */
5305 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005306 {
5307 /* If the match found didn't start where we were
5308 * searching, do the next search in the line where we
5309 * found the match. */
5310 if (nmatch == -1)
5311 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 }
5315
5316 line_breakcheck();
5317 }
5318
5319 if (did_sub)
5320 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005321 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 vim_free(sub_firstline); /* free the copy of the original line */
5323 sub_firstline = NULL;
5324 }
5325
5326 line_breakcheck();
5327 }
5328
5329 if (first_line != 0)
5330 {
5331 /* Need to subtract the number of added lines from "last_line" to get
5332 * the line number before the change (same as adding the number of
5333 * deleted lines). */
5334 i = curbuf->b_ml.ml_line_count - old_line_count;
5335 changed_lines(first_line, 0, last_line - i, i);
5336 }
5337
5338outofmem:
5339 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005340
5341 /* ":s/pat//n" doesn't move the cursor */
5342 if (do_count)
5343 curwin->w_cursor = old_cursor;
5344
Bram Moolenaar46475522010-03-23 17:36:29 +01005345 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 {
5347 /* Set the '[ and '] marks. */
5348 curbuf->b_op_start.lnum = eap->line1;
5349 curbuf->b_op_end.lnum = line2;
5350 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5351
5352 if (!global_busy)
5353 {
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005354 if (!do_ask) /* when interactive leave cursor on the match */
5355 {
5356 if (endcolumn)
5357 coladvance((colnr_T)MAXCOL);
5358 else
5359 beginline(BL_WHITE | BL_FIX);
5360 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00005361 if (!do_sub_msg(do_count) && do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 MSG("");
5363 }
5364 else
5365 global_need_beginline = TRUE;
5366 if (do_print)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005367 print_line(curwin->w_cursor.lnum, do_number, do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 }
5369 else if (!global_busy)
5370 {
5371 if (got_int) /* interrupted */
5372 EMSG(_(e_interr));
5373 else if (got_match) /* did find something but nothing substituted */
5374 MSG("");
5375 else if (do_error) /* nothing found */
5376 EMSG2(_(e_patnotf2), get_search_pat());
5377 }
5378
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005379#ifdef FEAT_FOLDING
5380 if (do_ask && hasAnyFolding(curwin))
5381 /* Cursor position may require updating */
5382 changed_window_setting();
5383#endif
5384
Bram Moolenaar473de612013-06-08 18:19:48 +02005385 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005386
5387 /* Restore the flag values, they can be used for ":&&". */
5388 do_all = save_do_all;
5389 do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390}
5391
5392/*
5393 * Give message for number of substitutions.
5394 * Can also be used after a ":global" command.
5395 * Return TRUE if a message was given.
5396 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005397 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005398do_sub_msg(
5399 int count_only) /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400{
5401 /*
5402 * Only report substitutions when:
5403 * - more than 'report' substitutions
5404 * - command was typed by user, or number of changed lines > 'report'
5405 * - giving messages is not disabled by 'lazyredraw'
5406 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005407 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5408 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 && messaging())
5410 {
5411 if (got_int)
5412 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005413 else
5414 *msg_buf = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 if (sub_nsubs == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005416 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005417 "%s", count_only ? _("1 match") : _("1 substitution"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005419 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar05159a02005-02-26 23:04:13 +00005420 count_only ? _("%ld matches") : _("%ld substitutions"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 sub_nsubs);
5422 if (sub_nlines == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005423 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005424 "%s", _(" on 1 line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005426 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005427 _(" on %ld lines"), (long)sub_nlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005430 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005431 return TRUE;
5432 }
5433 if (got_int)
5434 {
5435 EMSG(_(e_interr));
5436 return TRUE;
5437 }
5438 return FALSE;
5439}
5440
5441/*
5442 * Execute a global command of the form:
5443 *
5444 * g/pattern/X : execute X on all lines where pattern matches
5445 * v/pattern/X : execute X on all lines where pattern does not match
5446 *
5447 * where 'X' is an EX command
5448 *
5449 * The command character (as well as the trailing slash) is optional, and
5450 * is assumed to be 'p' if missing.
5451 *
5452 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005453 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 * for each line that has a mark. This is required because after deleting
5455 * lines we do not know where to search for the next match.
5456 */
5457 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005458ex_global(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459{
5460 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005461 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 int type; /* first char of cmd: 'v' or 'g' */
5463 char_u *cmd; /* command argument */
5464
5465 char_u delim; /* delimiter, normally '/' */
5466 char_u *pat;
5467 regmmatch_T regmatch;
5468 int match;
5469 int which_pat;
5470
5471 if (global_busy)
5472 {
5473 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */
5474 return;
5475 }
5476
5477 if (eap->forceit) /* ":global!" is like ":vglobal" */
5478 type = 'v';
5479 else
5480 type = *eap->cmd;
5481 cmd = eap->arg;
5482 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483
5484 /*
5485 * undocumented vi feature:
5486 * "\/" and "\?": use previous search pattern.
5487 * "\&": use previous substitute pattern.
5488 */
5489 if (*cmd == '\\')
5490 {
5491 ++cmd;
5492 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
5493 {
5494 EMSG(_(e_backslash));
5495 return;
5496 }
5497 if (*cmd == '&')
5498 which_pat = RE_SUBST; /* use previous substitute pattern */
5499 else
5500 which_pat = RE_SEARCH; /* use previous search pattern */
5501 ++cmd;
5502 pat = (char_u *)"";
5503 }
5504 else if (*cmd == NUL)
5505 {
5506 EMSG(_("E148: Regular expression missing from global"));
5507 return;
5508 }
5509 else
5510 {
5511 delim = *cmd; /* get the delimiter */
5512 if (delim)
5513 ++cmd; /* skip delimiter if there is one */
5514 pat = cmd; /* remember start of pattern */
5515 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
5516 if (cmd[0] == delim) /* end delimiter found */
5517 *cmd++ = NUL; /* replace it with a NUL */
5518 }
5519
5520#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
5521 if (p_altkeymap && curwin->w_p_rl)
5522 lrFswap(pat,0);
5523#endif
5524
5525 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5526 {
5527 EMSG(_(e_invcmd));
5528 return;
5529 }
5530
5531 /*
5532 * pass 1: set marks for each (not) matching line
5533 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
5535 {
5536 /* a match on this line? */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005537 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
5538 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 if ((type == 'g' && match) || (type == 'v' && !match))
5540 {
5541 ml_setmarked(lnum);
5542 ndone++;
5543 }
5544 line_breakcheck();
5545 }
5546
5547 /*
5548 * pass 2: execute the command for each line that has been marked
5549 */
5550 if (got_int)
5551 MSG(_(e_interr));
5552 else if (ndone == 0)
5553 {
5554 if (type == 'v')
Bram Moolenaar555b2802005-05-19 21:08:39 +00005555 smsg((char_u *)_("Pattern found in every line: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556 else
Bram Moolenaarc389fd32013-03-07 16:08:35 +01005557 smsg((char_u *)_("Pattern not found: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 }
5559 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005560 {
5561#ifdef FEAT_CLIPBOARD
5562 start_global_changes();
5563#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005565#ifdef FEAT_CLIPBOARD
5566 end_global_changes();
5567#endif
5568 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569
5570 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar473de612013-06-08 18:19:48 +02005571 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572}
5573
5574/*
5575 * Execute "cmd" on lines marked with ml_setmarked().
5576 */
5577 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005578global_exe(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579{
Bram Moolenaarbb993222011-05-10 16:00:47 +02005580 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
5581 buf_T *old_buf = curbuf; /* remember what buffer we started in */
5582 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583
5584 /*
5585 * Set current position only once for a global command.
5586 * If global_busy is set, setpcmark() will not do anything.
5587 * If there is an error, global_busy will be incremented.
5588 */
5589 setpcmark();
5590
5591 /* When the command writes a message, don't overwrite the command. */
5592 msg_didout = TRUE;
5593
Bram Moolenaard25bc232010-03-23 17:49:24 +01005594 sub_nsubs = 0;
5595 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 global_need_beginline = FALSE;
5597 global_busy = 1;
5598 old_lcount = curbuf->b_ml.ml_line_count;
5599 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
5600 {
5601 curwin->w_cursor.lnum = lnum;
5602 curwin->w_cursor.col = 0;
5603 if (*cmd == NUL || *cmd == '\n')
5604 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5605 else
5606 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5607 ui_breakcheck();
5608 }
5609
5610 global_busy = 0;
5611 if (global_need_beginline)
5612 beginline(BL_WHITE | BL_FIX);
5613 else
5614 check_cursor(); /* cursor may be beyond the end of the line */
5615
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005616 /* the cursor may not have moved in the text but a change in a previous
5617 * line may move it on the screen */
5618 changed_line_abv_curs();
5619
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 /* If it looks like no message was written, allow overwriting the
5621 * command with the report for number of changes. */
5622 if (msg_col == 0 && msg_scrolled == 0)
5623 msg_didout = FALSE;
5624
Bram Moolenaar45667512007-05-10 19:24:43 +00005625 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02005626 * number of extra or deleted lines.
5627 * Don't report extra or deleted lines in the edge case where the buffer
5628 * we are in after execution is different from the buffer we started in. */
5629 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
5631}
5632
5633#ifdef FEAT_VIMINFO
5634 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005635read_viminfo_sub_string(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01005637 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638 vim_free(old_sub);
5639 if (force || old_sub == NULL)
5640 old_sub = viminfo_readstring(virp, 1, TRUE);
5641 return viminfo_readline(virp);
5642}
5643
5644 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005645write_viminfo_sub_string(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646{
5647 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
5648 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005649 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 viminfo_writestring(fp, old_sub);
5651 }
5652}
5653#endif /* FEAT_VIMINFO */
5654
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005655#if defined(EXITFREE) || defined(PROTO)
5656 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005657free_old_sub(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005658{
5659 vim_free(old_sub);
5660}
5661#endif
5662
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663#if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO)
5664/*
5665 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005666 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005668 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005669prepare_tagpreview(
5670 int undo_sync) /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671{
5672 win_T *wp;
5673
5674# ifdef FEAT_GUI
5675 need_mouse_correct = TRUE;
5676# endif
5677
5678 /*
5679 * If there is already a preview window open, use that one.
5680 */
5681 if (!curwin->w_p_pvw)
5682 {
5683 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5684 if (wp->w_p_pvw)
5685 break;
5686 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005687 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 else
5689 {
5690 /*
5691 * There is no preview window open yet. Create one.
5692 */
5693 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
5694 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005695 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696 curwin->w_p_pvw = TRUE;
5697 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005698 RESET_BINDING(curwin); /* don't take over 'scrollbind'
5699 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700# ifdef FEAT_DIFF
5701 curwin->w_p_diff = FALSE; /* no 'diff' */
5702# endif
5703# ifdef FEAT_FOLDING
5704 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
5705# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005706 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 }
5708 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005709 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005710}
5711
5712#endif
5713
5714
5715/*
5716 * ":help": open a read-only window on a help file
5717 */
5718 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005719ex_help(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720{
5721 char_u *arg;
5722 char_u *tag;
5723 FILE *helpfd; /* file descriptor of help file */
5724 int n;
5725 int i;
5726#ifdef FEAT_WINDOWS
5727 win_T *wp;
5728#endif
5729 int num_matches;
5730 char_u **matches;
5731 char_u *p;
5732 int empty_fnum = 0;
5733 int alt_fnum = 0;
5734 buf_T *buf;
5735#ifdef FEAT_MULTI_LANG
5736 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005737 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02005739#ifdef FEAT_FOLDING
5740 int old_KeyTyped = KeyTyped;
5741#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742
5743 if (eap != NULL)
5744 {
5745 /*
5746 * A ":help" command ends at the first LF, or at a '|' that is
5747 * followed by some text. Set nextcmd to the following command.
5748 */
5749 for (arg = eap->arg; *arg; ++arg)
5750 {
5751 if (*arg == '\n' || *arg == '\r'
5752 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
5753 {
5754 *arg++ = NUL;
5755 eap->nextcmd = arg;
5756 break;
5757 }
5758 }
5759 arg = eap->arg;
5760
Bram Moolenaar3dbde622012-04-05 16:05:05 +02005761 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 {
5763 EMSG(_("E478: Don't panic!"));
5764 return;
5765 }
5766
5767 if (eap->skip) /* not executing commands */
5768 return;
5769 }
5770 else
5771 arg = (char_u *)"";
5772
5773 /* remove trailing blanks */
5774 p = arg + STRLEN(arg) - 1;
5775 while (p > arg && vim_iswhite(*p) && p[-1] != '\\')
5776 *p-- = NUL;
5777
5778#ifdef FEAT_MULTI_LANG
5779 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005780 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781#endif
5782
5783 /* When no argument given go to the index. */
5784 if (*arg == NUL)
5785 arg = (char_u *)"help.txt";
5786
5787 /*
5788 * Check if there is a match for the argument.
5789 */
5790 n = find_help_tags(arg, &num_matches, &matches,
5791 eap != NULL && eap->forceit);
5792
5793 i = 0;
5794#ifdef FEAT_MULTI_LANG
5795 if (n != FAIL && lang != NULL)
5796 /* Find first item with the requested language. */
5797 for (i = 0; i < num_matches; ++i)
5798 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005799 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005800 if (len > 3 && matches[i][len - 3] == '@'
5801 && STRICMP(matches[i] + len - 2, lang) == 0)
5802 break;
5803 }
5804#endif
5805 if (i >= num_matches || n == FAIL)
5806 {
5807#ifdef FEAT_MULTI_LANG
5808 if (lang != NULL)
5809 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
5810 else
5811#endif
5812 EMSG2(_("E149: Sorry, no help for %s"), arg);
5813 if (n != FAIL)
5814 FreeWild(num_matches, matches);
5815 return;
5816 }
5817
5818 /* The first match (in the requested language) is the best match. */
5819 tag = vim_strsave(matches[i]);
5820 FreeWild(num_matches, matches);
5821
5822#ifdef FEAT_GUI
5823 need_mouse_correct = TRUE;
5824#endif
5825
5826 /*
5827 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005828 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 */
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005830 if (!curwin->w_buffer->b_help
5831#ifdef FEAT_WINDOWS
5832 || cmdmod.tab != 0
5833#endif
5834 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835 {
5836#ifdef FEAT_WINDOWS
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005837 if (cmdmod.tab != 0)
5838 wp = NULL;
5839 else
5840 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5841 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
5842 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
5844 win_enter(wp, TRUE);
5845 else
5846#endif
5847 {
5848 /*
5849 * There is no help window yet.
5850 * Try to open the file specified by the "helpfile" option.
5851 */
5852 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
5853 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00005854 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 goto erret;
5856 }
5857 fclose(helpfd);
5858
5859#ifdef FEAT_WINDOWS
5860 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005861 * specified, the current window is vertically split and
5862 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863 n = WSP_HELP;
5864# ifdef FEAT_VERTSPLIT
5865 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005866 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 n |= WSP_TOP;
5868# endif
5869 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005870 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871#else
5872 /* use current window */
5873 if (!can_abandon(curbuf, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 goto erret;
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005875#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876
5877#ifdef FEAT_WINDOWS
5878 if (curwin->w_height < p_hh)
5879 win_setheight((int)p_hh);
5880#endif
5881
5882 /*
5883 * Open help file (do_ecmd() will set b_help flag, readfile() will
5884 * set b_p_ro flag).
5885 * Set the alternate file to the previously edited file.
5886 */
5887 alt_fnum = curbuf->b_fnum;
5888 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005889 ECMD_HIDE + ECMD_SET_HELP,
5890#ifdef FEAT_WINDOWS
5891 NULL /* buffer is still open, don't store info */
5892#else
5893 curwin
5894#endif
5895 );
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005896 if (!cmdmod.keepalt)
5897 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 empty_fnum = curbuf->b_fnum;
5899 }
5900 }
5901
5902 if (!p_im)
5903 restart_edit = 0; /* don't want insert mode in help file */
5904
Bram Moolenaar8f535582011-09-30 17:30:31 +02005905#ifdef FEAT_FOLDING
5906 /* Restore KeyTyped, setting 'filetype=help' may reset it.
5907 * It is needed for do_tag top open folds under the cursor. */
5908 KeyTyped = old_KeyTyped;
5909#endif
5910
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911 if (tag != NULL)
5912 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
5913
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005914 /* Delete the empty buffer if we're not using it. Careful: autocommands
5915 * may have jumped to another window, check that the buffer is not in a
5916 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
5918 {
5919 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005920 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921 wipe_buffer(buf, TRUE);
5922 }
5923
5924 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005925 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926 curwin->w_alt_fnum = alt_fnum;
5927
5928erret:
5929 vim_free(tag);
5930}
5931
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005932/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02005933 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005934 */
5935 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005936ex_helpclose(exarg_T *eap UNUSED)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005937{
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02005938#if defined(FEAT_WINDOWS)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005939 win_T *win;
5940
5941 FOR_ALL_WINDOWS(win)
5942 {
5943 if (win->w_buffer->b_help)
5944 {
5945 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02005946 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005947 }
5948 }
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02005949#endif
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005950}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005952#if defined(FEAT_MULTI_LANG) || defined(PROTO)
5953/*
5954 * In an argument search for a language specifiers in the form "@xx".
5955 * Changes the "@" to NUL if found, and returns a pointer to "xx".
5956 * Returns NULL if not found.
5957 */
5958 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005959check_help_lang(char_u *arg)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005960{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005961 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005962
5963 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
5964 && ASCII_ISALPHA(arg[len - 1]))
5965 {
5966 arg[len - 3] = NUL; /* remove the '@' */
5967 return arg + len - 2;
5968 }
5969 return NULL;
5970}
5971#endif
5972
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973/*
5974 * Return a heuristic indicating how well the given string matches. The
5975 * smaller the number, the better the match. This is the order of priorities,
5976 * from best match to worst match:
5977 * - Match with least alpha-numeric characters is better.
5978 * - Match with least total characters is better.
5979 * - Match towards the start is better.
5980 * - Match starting with "+" is worse (feature instead of command)
5981 * Assumption is made that the matched_string passed has already been found to
5982 * match some string for which help is requested. webb.
5983 */
5984 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005985help_heuristic(
5986 char_u *matched_string,
5987 int offset, /* offset for match */
5988 int wrong_case) /* no matching case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989{
5990 int num_letters;
5991 char_u *p;
5992
5993 num_letters = 0;
5994 for (p = matched_string; *p; p++)
5995 if (ASCII_ISALNUM(*p))
5996 num_letters++;
5997
5998 /*
5999 * Multiply the number of letters by 100 to give it a much bigger
6000 * weighting than the number of characters.
6001 * If there only is a match while ignoring case, add 5000.
6002 * If the match starts in the middle of a word, add 10000 to put it
6003 * somewhere in the last half.
6004 * If the match is more than 2 chars from the start, multiply by 200 to
6005 * put it after matches at the start.
6006 */
6007 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
6008 && ASCII_ISALNUM(matched_string[offset - 1]))
6009 offset += 10000;
6010 else if (offset > 2)
6011 offset *= 200;
6012 if (wrong_case)
6013 offset += 5000;
6014 /* Features are less interesting than the subjects themselves, but "+"
6015 * alone is not a feature. */
6016 if (matched_string[0] == '+' && matched_string[1] != NUL)
6017 offset += 100;
6018 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
6019}
6020
6021/*
6022 * Compare functions for qsort() below, that checks the help heuristics number
6023 * that has been put after the tagname by find_tags().
6024 */
6025 static int
6026#ifdef __BORLANDC__
6027_RTLENTRYF
6028#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006029help_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030{
6031 char *p1;
6032 char *p2;
6033
6034 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
6035 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
6036 return strcmp(p1, p2);
6037}
6038
6039/*
6040 * Find all help tags matching "arg", sort them and return in matches[], with
6041 * the number of matches in num_matches.
6042 * The matches will be sorted with a "best" match algorithm.
6043 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6044 */
6045 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006046find_help_tags(
6047 char_u *arg,
6048 int *num_matches,
6049 char_u ***matches,
6050 int keep_lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051{
6052 char_u *s, *d;
6053 int i;
6054 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006055 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006056 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006057 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006058 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059 "[count]", "[quotex]", "[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006060 "[pattern]", "\\|", "\\%$",
6061 "s/\\~", "s/\\U", "s/\\L",
6062 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006064 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006065 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006066 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006067 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 "\\[count]", "\\[quotex]", "\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006069 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006070 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006071 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 int flags;
6073
6074 d = IObuff; /* assume IObuff is long enough! */
6075
6076 /*
6077 * Recognize a few exceptions to the rule. Some strings that contain '*'
6078 * with "star". Otherwise '*' is recognized as a wildcard.
6079 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006080 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 if (STRCMP(arg, mtable[i]) == 0)
6082 {
6083 STRCPY(d, rtable[i]);
6084 break;
6085 }
6086
6087 if (i < 0) /* no match in table */
6088 {
6089 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6090 * Also replace "\%^" and "\%(", they match every tag too.
6091 * Also "\zs", "\z1", etc.
6092 * Also "\@<", "\@=", "\@<=", etc.
6093 * And also "\_$" and "\_^". */
6094 if (arg[0] == '\\'
6095 && ((arg[1] != NUL && arg[2] == NUL)
6096 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6097 && arg[2] != NUL)))
6098 {
6099 STRCPY(d, "/\\\\");
6100 STRCPY(d + 3, arg + 1);
6101 /* Check for "/\\_$", should be "/\\_\$" */
6102 if (d[3] == '_' && d[4] == '$')
6103 STRCPY(d + 4, "\\$");
6104 }
6105 else
6106 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006107 /* Replace:
6108 * "[:...:]" with "\[:...:]"
6109 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006110 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006111 */
6112 if ((arg[0] == '[' && (arg[1] == ':'
6113 || (arg[1] == '+' && arg[2] == '+')))
6114 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115 *d++ = '\\';
6116
Bram Moolenaar00f9e0d2016-03-15 13:44:12 +01006117 /*
6118 * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'.
6119 */
6120 if (*arg == '(' && arg[1] == '\'')
6121 arg++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122 for (s = arg; *s; ++s)
6123 {
6124 /*
6125 * Replace "|" with "bar" and '"' with "quote" to match the name of
6126 * the tags for these commands.
6127 * Replace "*" with ".*" and "?" with "." to match command line
6128 * completion.
6129 * Insert a backslash before '~', '$' and '.' to avoid their
6130 * special meaning.
6131 */
6132 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6133 break;
6134 switch (*s)
6135 {
6136 case '|': STRCPY(d, "bar");
6137 d += 3;
6138 continue;
6139 case '"': STRCPY(d, "quote");
6140 d += 5;
6141 continue;
6142 case '*': *d++ = '.';
6143 break;
6144 case '?': *d++ = '.';
6145 continue;
6146 case '$':
6147 case '.':
6148 case '~': *d++ = '\\';
6149 break;
6150 }
6151
6152 /*
6153 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6154 * ":help i_^_CTRL-D" work.
6155 * Insert '-' before and after "CTRL-X" when applicable.
6156 */
6157 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6158 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6159 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006160 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6161 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 STRCPY(d, "CTRL-");
6163 d += 5;
6164 if (*s < ' ')
6165 {
6166#ifdef EBCDIC
6167 *d++ = CtrlChar(*s);
6168#else
6169 *d++ = *s + '@';
6170#endif
6171 if (d[-1] == '\\')
6172 *d++ = '\\'; /* double a backslash */
6173 }
6174 else
6175 *d++ = *++s;
6176 if (s[1] != NUL && s[1] != '_')
6177 *d++ = '_'; /* append a '_' */
6178 continue;
6179 }
6180 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6181 *d++ = '\\';
6182
6183 /*
6184 * Insert a backslash before a backslash after a slash, for search
6185 * pattern tags: "/\|" --> "/\\|".
6186 */
6187 else if (s[0] == '\\' && s[1] != '\\'
6188 && *arg == '/' && s == arg + 1)
6189 *d++ = '\\';
6190
6191 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6192 * "CTRL-\_CTRL-N" */
6193 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6194 {
6195 STRCPY(d, "CTRL-\\\\");
6196 d += 7;
6197 s += 6;
6198 }
6199
6200 *d++ = *s;
6201
6202 /*
6203 * If tag starts with ', toss everything after a second '. Fixes
6204 * CTRL-] on 'option'. (would include the trailing '.').
6205 */
6206 if (*s == '\'' && s > arg && *arg == '\'')
6207 break;
6208 }
6209 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006210
6211 if (*IObuff == '`')
6212 {
6213 if (d > IObuff + 2 && d[-1] == '`')
6214 {
6215 /* remove the backticks from `command` */
6216 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6217 d[-2] = NUL;
6218 }
6219 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6220 {
6221 /* remove the backticks and comma from `command`, */
6222 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6223 d[-3] = NUL;
6224 }
6225 else if (d > IObuff + 4 && d[-3] == '`'
6226 && d[-2] == '\\' && d[-1] == '.')
6227 {
6228 /* remove the backticks and dot from `command`\. */
6229 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6230 d[-4] = NUL;
6231 }
6232 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 }
6234 }
6235
6236 *matches = (char_u **)"";
6237 *num_matches = 0;
6238 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6239 if (keep_lang)
6240 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006241 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006243 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244 /* Sort the matches found on the heuristic number that is after the
6245 * tag name. */
6246 qsort((void *)*matches, (size_t)*num_matches,
6247 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006248 /* Delete more than TAG_MANY to reduce the size of the listing. */
6249 while (*num_matches > TAG_MANY)
6250 vim_free((*matches)[--*num_matches]);
6251 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252 return OK;
6253}
6254
6255/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006256 * Called when starting to edit a buffer for a help file.
6257 */
6258 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006259prepare_help_buffer(void)
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006260{
6261 char_u *p;
6262
6263 curbuf->b_help = TRUE;
6264#ifdef FEAT_QUICKFIX
6265 set_string_option_direct((char_u *)"buftype", -1,
6266 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6267#endif
6268
6269 /*
6270 * Always set these options after jumping to a help tag, because the
6271 * user may have an autocommand that gets in the way.
6272 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6273 * latin1 word characters (for translated help files).
6274 * Only set it when needed, buf_init_chartab() is some work.
6275 */
6276 p =
6277#ifdef EBCDIC
6278 (char_u *)"65-255,^*,^|,^\"";
6279#else
6280 (char_u *)"!-~,^*,^|,^\",192-255";
6281#endif
6282 if (STRCMP(curbuf->b_p_isk, p) != 0)
6283 {
6284 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6285 check_buf_options(curbuf);
6286 (void)buf_init_chartab(curbuf, FALSE);
6287 }
6288
Bram Moolenaar0b105412014-11-30 13:34:23 +01006289#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006290 /* Don't use the global foldmethod.*/
6291 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6292 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006293#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006294
6295 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6296 curwin->w_p_list = FALSE; /* no list mode */
6297
6298 curbuf->b_p_ma = FALSE; /* not modifiable */
6299 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6300 curwin->w_p_nu = 0; /* no line numbers */
6301 curwin->w_p_rnu = 0; /* no relative line numbers */
6302 RESET_BINDING(curwin); /* no scroll or cursor binding */
6303#ifdef FEAT_ARABIC
6304 curwin->w_p_arab = FALSE; /* no arabic mode */
6305#endif
6306#ifdef FEAT_RIGHTLEFT
6307 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6308#endif
6309#ifdef FEAT_FOLDING
6310 curwin->w_p_fen = FALSE; /* No folding in the help window */
6311#endif
6312#ifdef FEAT_DIFF
6313 curwin->w_p_diff = FALSE; /* No 'diff' */
6314#endif
6315#ifdef FEAT_SPELL
6316 curwin->w_p_spell = FALSE; /* No spell checking */
6317#endif
6318
6319 set_buflisted(FALSE);
6320}
6321
6322/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323 * After reading a help file: May cleanup a help buffer when syntax
6324 * highlighting is not used.
6325 */
6326 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006327fix_help_buffer(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006328{
6329 linenr_T lnum;
6330 char_u *line;
6331 int in_example = FALSE;
6332 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006333 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334 char_u *p;
6335 char_u *rt;
6336 int mustfree;
6337
6338 /* set filetype to "help". */
6339 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
6340
6341#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006342 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343#endif
6344 {
6345 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6346 {
6347 line = ml_get_buf(curbuf, lnum, FALSE);
6348 len = (int)STRLEN(line);
6349 if (in_example && len > 0 && !vim_iswhite(line[0]))
6350 {
6351 /* End of example: non-white or '<' in first column. */
6352 if (line[0] == '<')
6353 {
6354 /* blank-out a '<' in the first column */
6355 line = ml_get_buf(curbuf, lnum, TRUE);
6356 line[0] = ' ';
6357 }
6358 in_example = FALSE;
6359 }
6360 if (!in_example && len > 0)
6361 {
6362 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6363 {
6364 /* blank-out a '>' in the last column (start of example) */
6365 line = ml_get_buf(curbuf, lnum, TRUE);
6366 line[len - 1] = ' ';
6367 in_example = TRUE;
6368 }
6369 else if (line[len - 1] == '~')
6370 {
6371 /* blank-out a '~' at the end of line (header marker) */
6372 line = ml_get_buf(curbuf, lnum, TRUE);
6373 line[len - 1] = ' ';
6374 }
6375 }
6376 }
6377 }
6378
6379 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006380 * In the "help.txt" and "help.abx" file, add the locally added help
6381 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006383 fname = gettail(curbuf->b_fname);
6384 if (fnamecmp(fname, "help.txt") == 0
6385#ifdef FEAT_MULTI_LANG
6386 || (fnamencmp(fname, "help.", 5) == 0
6387 && ASCII_ISALPHA(fname[5])
6388 && ASCII_ISALPHA(fname[6])
6389 && TOLOWER_ASC(fname[7]) == 'x'
6390 && fname[8] == NUL)
6391#endif
6392 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006393 {
6394 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6395 {
6396 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006397 if (strstr((char *)line, "*local-additions*") == NULL)
6398 continue;
6399
6400 /* Go through all directories in 'runtimepath', skipping
6401 * $VIMRUNTIME. */
6402 p = p_rtp;
6403 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006405 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6406 mustfree = FALSE;
6407 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
6408 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006409 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006410 int fcount;
6411 char_u **fnames;
6412 FILE *fd;
6413 char_u *s;
6414 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006416 vimconv_T vc;
6417 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418#endif
6419
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006420 /* Find all "doc/ *.txt" files in this directory. */
6421 add_pathsep(NameBuff);
6422#ifdef FEAT_MULTI_LANG
6423 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006425 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006427 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6428 &fnames, EW_FILE|EW_SILENT) == OK
6429 && fcount > 0)
6430 {
6431#ifdef FEAT_MULTI_LANG
6432 int i1;
6433 int i2;
6434 char_u *f1;
6435 char_u *f2;
6436 char_u *t1;
6437 char_u *e1;
6438 char_u *e2;
6439
6440 /* If foo.abx is found use it instead of foo.txt in
6441 * the same directory. */
6442 for (i1 = 0; i1 < fcount; ++i1)
6443 {
6444 for (i2 = 0; i2 < fcount; ++i2)
6445 {
6446 if (i1 == i2)
6447 continue;
6448 if (fnames[i1] == NULL || fnames[i2] == NULL)
6449 continue;
6450 f1 = fnames[i1];
6451 f2 = fnames[i2];
6452 t1 = gettail(f1);
6453 if (fnamencmp(f1, f2, t1 - f1) != 0)
6454 continue;
6455 e1 = vim_strrchr(t1, '.');
6456 e2 = vim_strrchr(gettail(f2), '.');
6457 if (e1 == NUL || e2 == NUL)
6458 continue;
6459 if (fnamecmp(e1, ".txt") != 0
6460 && fnamecmp(e1, fname + 4) != 0)
6461 {
6462 /* Not .txt and not .abx, remove it. */
6463 vim_free(fnames[i1]);
6464 fnames[i1] = NULL;
6465 continue;
6466 }
6467 if (fnamencmp(f1, f2, e1 - f1) != 0)
6468 continue;
6469 if (fnamecmp(e1, ".txt") == 0
6470 && fnamecmp(e2, fname + 4) == 0)
6471 {
6472 /* use .abx instead of .txt */
6473 vim_free(fnames[i1]);
6474 fnames[i1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475 }
6476 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006478#endif
6479 for (fi = 0; fi < fcount; ++fi)
6480 {
6481 if (fnames[fi] == NULL)
6482 continue;
6483 fd = mch_fopen((char *)fnames[fi], "r");
6484 if (fd != NULL)
6485 {
6486 vim_fgets(IObuff, IOSIZE, fd);
6487 if (IObuff[0] == '*'
6488 && (s = vim_strchr(IObuff + 1, '*'))
6489 != NULL)
6490 {
6491#ifdef FEAT_MBYTE
6492 int this_utf = MAYBE;
6493#endif
6494 /* Change tag definition to a
6495 * reference and remove <CR>/<NL>. */
6496 IObuff[0] = '|';
6497 *s = '|';
6498 while (*s != NUL)
6499 {
6500 if (*s == '\r' || *s == '\n')
6501 *s = NUL;
6502#ifdef FEAT_MBYTE
6503 /* The text is utf-8 when a byte
6504 * above 127 is found and no
6505 * illegal byte sequence is found.
6506 */
6507 if (*s >= 0x80 && this_utf != FALSE)
6508 {
6509 int l;
6510
6511 this_utf = TRUE;
6512 l = utf_ptr2len(s);
6513 if (l == 1)
6514 this_utf = FALSE;
6515 s += l - 1;
6516 }
6517#endif
6518 ++s;
6519 }
6520#ifdef FEAT_MBYTE
6521 /* The help file is latin1 or utf-8;
6522 * conversion to the current
6523 * 'encoding' may be required. */
6524 vc.vc_type = CONV_NONE;
6525 convert_setup(&vc, (char_u *)(
6526 this_utf == TRUE ? "utf-8"
6527 : "latin1"), p_enc);
6528 if (vc.vc_type == CONV_NONE)
6529 /* No conversion needed. */
6530 cp = IObuff;
6531 else
6532 {
6533 /* Do the conversion. If it fails
6534 * use the unconverted text. */
6535 cp = string_convert(&vc, IObuff,
6536 NULL);
6537 if (cp == NULL)
6538 cp = IObuff;
6539 }
6540 convert_setup(&vc, NULL, NULL);
6541
6542 ml_append(lnum, cp, (colnr_T)0, FALSE);
6543 if (cp != IObuff)
6544 vim_free(cp);
6545#else
6546 ml_append(lnum, IObuff, (colnr_T)0,
6547 FALSE);
6548#endif
6549 ++lnum;
6550 }
6551 fclose(fd);
6552 }
6553 }
6554 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006557 if (mustfree)
6558 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006560 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006561 }
6562 }
6563}
6564
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006565/*
6566 * ":exusage"
6567 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006568 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006569ex_exusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006570{
6571 do_cmdline_cmd((char_u *)"help ex-cmd-index");
6572}
6573
6574/*
6575 * ":viusage"
6576 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006577 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006578ex_viusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006579{
6580 do_cmdline_cmd((char_u *)"help normal-index");
6581}
6582
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583/*
Bram Moolenaar6bef5302016-03-12 21:28:26 +01006584 * Generate tags in one help directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006585 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006587helptags_one(
6588 char_u *dir, /* doc directory */
6589 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */
6590 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */
6591 int add_help_tags) /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592{
6593 FILE *fd_tags;
6594 FILE *fd;
6595 garray_T ga;
6596 int filecount;
6597 char_u **files;
6598 char_u *p1, *p2;
6599 int fi;
6600 char_u *s;
6601 int i;
6602 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006603 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604# ifdef FEAT_MBYTE
6605 int utf8 = MAYBE;
6606 int this_utf8;
6607 int firstline;
6608 int mix = FALSE; /* detected mixed encodings */
6609# endif
6610
6611 /*
6612 * Find all *.txt files.
6613 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01006614 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006616 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 STRCAT(NameBuff, ext);
6618 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6619 EW_FILE|EW_SILENT) == FAIL
6620 || filecount == 0)
6621 {
6622 if (!got_int)
6623 EMSG2("E151: No match: %s", NameBuff);
6624 return;
6625 }
6626
6627 /*
6628 * Open the tags file for writing.
6629 * Do this before scanning through all the files.
6630 */
6631 STRCPY(NameBuff, dir);
6632 add_pathsep(NameBuff);
6633 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006634 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635 if (fd_tags == NULL)
6636 {
6637 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
6638 FreeWild(filecount, files);
6639 return;
6640 }
6641
6642 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006643 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
6644 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006645 */
6646 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006647 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
6648 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649 {
6650 if (ga_grow(&ga, 1) == FAIL)
6651 got_int = TRUE;
6652 else
6653 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006654 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655 if (s == NULL)
6656 got_int = TRUE;
6657 else
6658 {
6659 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
6660 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6661 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006662 }
6663 }
6664 }
6665
6666 /*
6667 * Go over all the files and extract the tags.
6668 */
6669 for (fi = 0; fi < filecount && !got_int; ++fi)
6670 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006671 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 if (fd == NULL)
6673 {
6674 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
6675 continue;
6676 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006677 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006678
6679# ifdef FEAT_MBYTE
6680 firstline = TRUE;
6681# endif
6682 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
6683 {
6684# ifdef FEAT_MBYTE
6685 if (firstline)
6686 {
6687 /* Detect utf-8 file by a non-ASCII char in the first line. */
6688 this_utf8 = MAYBE;
6689 for (s = IObuff; *s != NUL; ++s)
6690 if (*s >= 0x80)
6691 {
6692 int l;
6693
6694 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006695 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006696 if (l == 1)
6697 {
6698 /* Illegal UTF-8 byte sequence. */
6699 this_utf8 = FALSE;
6700 break;
6701 }
6702 s += l - 1;
6703 }
6704 if (this_utf8 == MAYBE) /* only ASCII characters found */
6705 this_utf8 = FALSE;
6706 if (utf8 == MAYBE) /* first file */
6707 utf8 = this_utf8;
6708 else if (utf8 != this_utf8)
6709 {
6710 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
6711 mix = !got_int;
6712 got_int = TRUE;
6713 }
6714 firstline = FALSE;
6715 }
6716# endif
6717 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
6718 while (p1 != NULL)
6719 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02006720 /* Use vim_strbyte() instead of vim_strchr() so that when
6721 * 'encoding' is dbcs it still works, don't find '*' in the
6722 * second byte. */
6723 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006724 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
6725 {
6726 for (s = p1 + 1; s < p2; ++s)
6727 if (*s == ' ' || *s == '\t' || *s == '|')
6728 break;
6729
6730 /*
6731 * Only accept a *tag* when it consists of valid
6732 * characters, there is white space before it and is
6733 * followed by a white character or end-of-line.
6734 */
6735 if (s == p2
6736 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
6737 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
6738 || s[1] == '\0'))
6739 {
6740 *p2 = '\0';
6741 ++p1;
6742 if (ga_grow(&ga, 1) == FAIL)
6743 {
6744 got_int = TRUE;
6745 break;
6746 }
6747 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
6748 if (s == NULL)
6749 {
6750 got_int = TRUE;
6751 break;
6752 }
6753 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6754 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006755 sprintf((char *)s, "%s\t%s", p1, fname);
6756
6757 /* find next '*' */
6758 p2 = vim_strchr(p2 + 1, '*');
6759 }
6760 }
6761 p1 = p2;
6762 }
6763 line_breakcheck();
6764 }
6765
6766 fclose(fd);
6767 }
6768
6769 FreeWild(filecount, files);
6770
6771 if (!got_int)
6772 {
6773 /*
6774 * Sort the tags.
6775 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02006776 if (ga.ga_data != NULL)
6777 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006778
6779 /*
6780 * Check for duplicates.
6781 */
6782 for (i = 1; i < ga.ga_len; ++i)
6783 {
6784 p1 = ((char_u **)ga.ga_data)[i - 1];
6785 p2 = ((char_u **)ga.ga_data)[i];
6786 while (*p1 == *p2)
6787 {
6788 if (*p2 == '\t')
6789 {
6790 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006791 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 _("E154: Duplicate tag \"%s\" in file %s/%s"),
6793 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
6794 EMSG(NameBuff);
6795 *p2 = '\t';
6796 break;
6797 }
6798 ++p1;
6799 ++p2;
6800 }
6801 }
6802
6803# ifdef FEAT_MBYTE
6804 if (utf8 == TRUE)
6805 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
6806# endif
6807
6808 /*
6809 * Write the tags into the file.
6810 */
6811 for (i = 0; i < ga.ga_len; ++i)
6812 {
6813 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00006814 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00006816 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817 else
6818 {
6819 fprintf(fd_tags, "%s\t/*", s);
6820 for (p1 = s; *p1 != '\t'; ++p1)
6821 {
6822 /* insert backslash before '\\' and '/' */
6823 if (*p1 == '\\' || *p1 == '/')
6824 putc('\\', fd_tags);
6825 putc(*p1, fd_tags);
6826 }
6827 fprintf(fd_tags, "*\n");
6828 }
6829 }
6830 }
6831#ifdef FEAT_MBYTE
6832 if (mix)
6833 got_int = FALSE; /* continue with other languages */
6834#endif
6835
6836 for (i = 0; i < ga.ga_len; ++i)
6837 vim_free(((char_u **)ga.ga_data)[i]);
6838 ga_clear(&ga);
6839 fclose(fd_tags); /* there is no check for an error... */
6840}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006841
Bram Moolenaar6bef5302016-03-12 21:28:26 +01006842/*
6843 * Generate tags in one help directory, taking care of translations.
6844 */
6845 static void
6846do_helptags(char_u *dirname, int add_help_tags)
6847{
6848#ifdef FEAT_MULTI_LANG
6849 int len;
6850 int i, j;
6851 garray_T ga;
6852 char_u lang[2];
6853 char_u ext[5];
6854 char_u fname[8];
6855 int filecount;
6856 char_u **files;
6857
6858 /* Get a list of all files in the help directory and in subdirectories. */
6859 STRCPY(NameBuff, dirname);
6860 add_pathsep(NameBuff);
6861 STRCAT(NameBuff, "**");
6862 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6863 EW_FILE|EW_SILENT) == FAIL
6864 || filecount == 0)
6865 {
6866 EMSG2("E151: No match: %s", NameBuff);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01006867 return;
6868 }
6869
6870 /* Go over all files in the directory to find out what languages are
6871 * present. */
6872 ga_init2(&ga, 1, 10);
6873 for (i = 0; i < filecount; ++i)
6874 {
6875 len = (int)STRLEN(files[i]);
6876 if (len > 4)
6877 {
6878 if (STRICMP(files[i] + len - 4, ".txt") == 0)
6879 {
6880 /* ".txt" -> language "en" */
6881 lang[0] = 'e';
6882 lang[1] = 'n';
6883 }
6884 else if (files[i][len - 4] == '.'
6885 && ASCII_ISALPHA(files[i][len - 3])
6886 && ASCII_ISALPHA(files[i][len - 2])
6887 && TOLOWER_ASC(files[i][len - 1]) == 'x')
6888 {
6889 /* ".abx" -> language "ab" */
6890 lang[0] = TOLOWER_ASC(files[i][len - 3]);
6891 lang[1] = TOLOWER_ASC(files[i][len - 2]);
6892 }
6893 else
6894 continue;
6895
6896 /* Did we find this language already? */
6897 for (j = 0; j < ga.ga_len; j += 2)
6898 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
6899 break;
6900 if (j == ga.ga_len)
6901 {
6902 /* New language, add it. */
6903 if (ga_grow(&ga, 2) == FAIL)
6904 break;
6905 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
6906 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
6907 }
6908 }
6909 }
6910
6911 /*
6912 * Loop over the found languages to generate a tags file for each one.
6913 */
6914 for (j = 0; j < ga.ga_len; j += 2)
6915 {
6916 STRCPY(fname, "tags-xx");
6917 fname[5] = ((char_u *)ga.ga_data)[j];
6918 fname[6] = ((char_u *)ga.ga_data)[j + 1];
6919 if (fname[5] == 'e' && fname[6] == 'n')
6920 {
6921 /* English is an exception: use ".txt" and "tags". */
6922 fname[4] = NUL;
6923 STRCPY(ext, ".txt");
6924 }
6925 else
6926 {
6927 /* Language "ab" uses ".abx" and "tags-ab". */
6928 STRCPY(ext, ".xxx");
6929 ext[1] = fname[5];
6930 ext[2] = fname[6];
6931 }
6932 helptags_one(dirname, ext, fname, add_help_tags);
6933 }
6934
6935 ga_clear(&ga);
6936 FreeWild(filecount, files);
6937
6938#else
6939 /* No language support, just use "*.txt" and "tags". */
6940 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
6941#endif
6942}
6943
6944 static void
6945helptags_cb(char_u *fname, void *cookie)
6946{
6947 do_helptags(fname, *(int *)cookie);
6948}
6949
6950/*
6951 * ":helptags"
6952 */
6953 void
6954ex_helptags(exarg_T *eap)
6955{
6956 expand_T xpc;
6957 char_u *dirname;
6958 int add_help_tags = FALSE;
6959
6960 /* Check for ":helptags ++t {dir}". */
6961 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3]))
6962 {
6963 add_help_tags = TRUE;
6964 eap->arg = skipwhite(eap->arg + 3);
6965 }
6966
6967 if (STRCMP(eap->arg, "ALL") == 0)
6968 {
6969 do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR,
6970 helptags_cb, &add_help_tags);
6971 }
6972 else
6973 {
6974 ExpandInit(&xpc);
6975 xpc.xp_context = EXPAND_DIRECTORIES;
6976 dirname = ExpandOne(&xpc, eap->arg, NULL,
6977 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
6978 if (dirname == NULL || !mch_isdir(dirname))
6979 EMSG2(_("E150: Not a directory: %s"), eap->arg);
6980 else
6981 do_helptags(dirname, add_help_tags);
6982 vim_free(dirname);
6983 }
6984}
6985
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986#if defined(FEAT_SIGNS) || defined(PROTO)
6987
6988/*
6989 * Struct to hold the sign properties.
6990 */
6991typedef struct sign sign_T;
6992
6993struct sign
6994{
6995 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02006996 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006997 char_u *sn_name; /* name of sign */
6998 char_u *sn_icon; /* name of pixmap */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01006999# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000 void *sn_image; /* icon image */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007001# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002 char_u *sn_text; /* text used instead of pixmap */
7003 int sn_line_hl; /* highlight ID for line */
7004 int sn_text_hl; /* highlight ID for text */
7005};
7006
Bram Moolenaar071d4272004-06-13 20:20:40 +00007007static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007008static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01007010static int sign_cmd_idx(char_u *begin_cmd, char_u *end_cmd);
7011static void sign_list_defined(sign_T *sp);
7012static void sign_undefine(sign_T *sp, sign_T *sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007014static char *cmds[] = {
7015 "define",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007016# define SIGNCMD_DEFINE 0
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007017 "undefine",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007018# define SIGNCMD_UNDEFINE 1
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007019 "list",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007020# define SIGNCMD_LIST 2
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007021 "place",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007022# define SIGNCMD_PLACE 3
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007023 "unplace",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007024# define SIGNCMD_UNPLACE 4
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007025 "jump",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007026# define SIGNCMD_JUMP 5
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007027 NULL
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007028# define SIGNCMD_LAST 6
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007029};
7030
7031/*
7032 * Find index of a ":sign" subcmd from its name.
7033 * "*end_cmd" must be writable.
7034 */
7035 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007036sign_cmd_idx(
7037 char_u *begin_cmd, /* begin of sign subcmd */
7038 char_u *end_cmd) /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007039{
7040 int idx;
7041 char save = *end_cmd;
7042
7043 *end_cmd = NUL;
7044 for (idx = 0; ; ++idx)
7045 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
7046 break;
7047 *end_cmd = save;
7048 return idx;
7049}
7050
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051/*
7052 * ":sign" command
7053 */
7054 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007055ex_sign(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056{
7057 char_u *arg = eap->arg;
7058 char_u *p;
7059 int idx;
7060 sign_T *sp;
7061 sign_T *sp_prev;
7062 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063
7064 /* Parse the subcommand. */
7065 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007066 idx = sign_cmd_idx(arg, p);
7067 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007069 EMSG2(_("E160: Unknown sign command: %s"), arg);
7070 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007071 }
7072 arg = skipwhite(p);
7073
7074 if (idx <= SIGNCMD_LIST)
7075 {
7076 /*
7077 * Define, undefine or list signs.
7078 */
7079 if (idx == SIGNCMD_LIST && *arg == NUL)
7080 {
7081 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007082 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007083 sign_list_defined(sp);
7084 }
7085 else if (*arg == NUL)
7086 EMSG(_("E156: Missing sign name"));
7087 else
7088 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007089 /* Isolate the sign name. If it's a number skip leading zeroes,
7090 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091 p = skiptowhite(arg);
7092 if (*p != NUL)
7093 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007094 while (arg[0] == '0' && arg[1] != NUL)
7095 ++arg;
7096
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097 sp_prev = NULL;
7098 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7099 {
7100 if (STRCMP(sp->sn_name, arg) == 0)
7101 break;
7102 sp_prev = sp;
7103 }
7104 if (idx == SIGNCMD_DEFINE)
7105 {
7106 /* ":sign define {name} ...": define a sign */
7107 if (sp == NULL)
7108 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007109 sign_T *lp;
7110 int start = next_sign_typenr;
7111
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112 /* Allocate a new sign. */
7113 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7114 if (sp == NULL)
7115 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007117 /* Check that next_sign_typenr is not already being used.
7118 * This only happens after wrapping around. Hopefully
7119 * another one got deleted and we can use its number. */
7120 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007121 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007122 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007123 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007124 ++next_sign_typenr;
7125 if (next_sign_typenr == MAX_TYPENR)
7126 next_sign_typenr = 1;
7127 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007128 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007129 vim_free(sp);
7130 EMSG(_("E612: Too many signs defined"));
7131 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007132 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007133 lp = first_sign; /* start all over */
7134 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007136 lp = lp->sn_next;
7137 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007139 sp->sn_typenr = next_sign_typenr;
7140 if (++next_sign_typenr == MAX_TYPENR)
7141 next_sign_typenr = 1; /* wrap around */
7142
7143 sp->sn_name = vim_strsave(arg);
7144 if (sp->sn_name == NULL) /* out of memory */
7145 {
7146 vim_free(sp);
7147 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007149
7150 /* add the new sign to the list of signs */
7151 if (sp_prev == NULL)
7152 first_sign = sp;
7153 else
7154 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155 }
7156
7157 /* set values for a defined sign. */
7158 for (;;)
7159 {
7160 arg = skipwhite(p);
7161 if (*arg == NUL)
7162 break;
7163 p = skiptowhite_esc(arg);
7164 if (STRNCMP(arg, "icon=", 5) == 0)
7165 {
7166 arg += 5;
7167 vim_free(sp->sn_icon);
7168 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7169 backslash_halve(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007170# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171 if (gui.in_use)
7172 {
7173 out_flush();
7174 if (sp->sn_image != NULL)
7175 gui_mch_destroy_sign(sp->sn_image);
7176 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7177 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007178# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179 }
7180 else if (STRNCMP(arg, "text=", 5) == 0)
7181 {
7182 char_u *s;
7183 int cells;
7184 int len;
7185
7186 arg += 5;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007187# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007188 /* Count cells and check for non-printable chars */
7189 if (has_mbyte)
7190 {
7191 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007192 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007193 {
7194 if (!vim_isprintc((*mb_ptr2char)(s)))
7195 break;
7196 cells += (*mb_ptr2cells)(s);
7197 }
7198 }
7199 else
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007200# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201 {
7202 for (s = arg; s < p; ++s)
7203 if (!vim_isprintc(*s))
7204 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007205 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007206 }
7207 /* Currently must be one or two display cells */
7208 if (s != p || cells < 1 || cells > 2)
7209 {
7210 *p = NUL;
7211 EMSG2(_("E239: Invalid sign text: %s"), arg);
7212 return;
7213 }
7214
7215 vim_free(sp->sn_text);
7216 /* Allocate one byte more if we need to pad up
7217 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007218 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007219 sp->sn_text = vim_strnsave(arg, len);
7220
7221 if (sp->sn_text != NULL && cells == 1)
7222 STRCPY(sp->sn_text + len - 1, " ");
7223 }
7224 else if (STRNCMP(arg, "linehl=", 7) == 0)
7225 {
7226 arg += 7;
7227 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7228 }
7229 else if (STRNCMP(arg, "texthl=", 7) == 0)
7230 {
7231 arg += 7;
7232 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7233 }
7234 else
7235 {
7236 EMSG2(_(e_invarg2), arg);
7237 return;
7238 }
7239 }
7240 }
7241 else if (sp == NULL)
7242 EMSG2(_("E155: Unknown sign: %s"), arg);
7243 else if (idx == SIGNCMD_LIST)
7244 /* ":sign list {name}" */
7245 sign_list_defined(sp);
7246 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007248 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007249 }
7250 }
7251 else
7252 {
7253 int id = -1;
7254 linenr_T lnum = -1;
7255 char_u *sign_name = NULL;
7256 char_u *arg1;
7257
7258 if (*arg == NUL)
7259 {
7260 if (idx == SIGNCMD_PLACE)
7261 {
7262 /* ":sign place": list placed signs in all buffers */
7263 sign_list_placed(NULL);
7264 }
7265 else if (idx == SIGNCMD_UNPLACE)
7266 {
7267 /* ":sign unplace": remove placed sign at cursor */
7268 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7269 if (id > 0)
7270 {
7271 buf_delsign(curwin->w_buffer, id);
7272 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7273 }
7274 else
7275 EMSG(_("E159: Missing sign number"));
7276 }
7277 else
7278 EMSG(_(e_argreq));
7279 return;
7280 }
7281
7282 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7283 {
7284 /* ":sign unplace *": remove all placed signs */
7285 buf_delete_all_signs();
7286 return;
7287 }
7288
7289 /* first arg could be placed sign id */
7290 arg1 = arg;
7291 if (VIM_ISDIGIT(*arg))
7292 {
7293 id = getdigits(&arg);
7294 if (!vim_iswhite(*arg) && *arg != NUL)
7295 {
7296 id = -1;
7297 arg = arg1;
7298 }
7299 else
7300 {
7301 arg = skipwhite(arg);
7302 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7303 {
7304 /* ":sign unplace {id}": remove placed sign by number */
7305 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
7306 if ((lnum = buf_delsign(buf, id)) != 0)
7307 update_debug_sign(buf, lnum);
7308 return;
7309 }
7310 }
7311 }
7312
7313 /*
7314 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7315 * Leave "arg" pointing to {fname}.
7316 */
7317 for (;;)
7318 {
7319 if (STRNCMP(arg, "line=", 5) == 0)
7320 {
7321 arg += 5;
7322 lnum = atoi((char *)arg);
7323 arg = skiptowhite(arg);
7324 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007325 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7326 {
7327 if (id != -1)
7328 {
7329 EMSG(_(e_invarg));
7330 return;
7331 }
7332 id = -2;
7333 arg = skiptowhite(arg + 1);
7334 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007335 else if (STRNCMP(arg, "name=", 5) == 0)
7336 {
7337 arg += 5;
7338 sign_name = arg;
7339 arg = skiptowhite(arg);
7340 if (*arg != NUL)
7341 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007342 while (sign_name[0] == '0' && sign_name[1] != NUL)
7343 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007344 }
7345 else if (STRNCMP(arg, "file=", 5) == 0)
7346 {
7347 arg += 5;
7348 buf = buflist_findname(arg);
7349 break;
7350 }
7351 else if (STRNCMP(arg, "buffer=", 7) == 0)
7352 {
7353 arg += 7;
7354 buf = buflist_findnr((int)getdigits(&arg));
7355 if (*skipwhite(arg) != NUL)
7356 EMSG(_(e_trailing));
7357 break;
7358 }
7359 else
7360 {
7361 EMSG(_(e_invarg));
7362 return;
7363 }
7364 arg = skipwhite(arg);
7365 }
7366
7367 if (buf == NULL)
7368 {
7369 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7370 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007371 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007372 {
7373 if (lnum >= 0 || sign_name != NULL)
7374 EMSG(_(e_invarg));
7375 else
7376 /* ":sign place file={fname}": list placed signs in one file */
7377 sign_list_placed(buf);
7378 }
7379 else if (idx == SIGNCMD_JUMP)
7380 {
7381 /* ":sign jump {id} file={fname}" */
7382 if (lnum >= 0 || sign_name != NULL)
7383 EMSG(_(e_invarg));
7384 else if ((lnum = buf_findsign(buf, id)) > 0)
7385 { /* goto a sign ... */
7386 if (buf_jump_open_win(buf) != NULL)
7387 { /* ... in a current window */
7388 curwin->w_cursor.lnum = lnum;
7389 check_cursor_lnum();
7390 beginline(BL_WHITE);
7391 }
7392 else
7393 { /* ... not currently in a window */
7394 char_u *cmd;
7395
7396 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7397 if (cmd == NULL)
7398 return;
7399 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7400 do_cmdline_cmd(cmd);
7401 vim_free(cmd);
7402 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007403# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00007404 foldOpenCursor();
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007405# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406 }
7407 else
7408 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7409 }
7410 else if (idx == SIGNCMD_UNPLACE)
7411 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007412 if (lnum >= 0 || sign_name != NULL)
7413 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007414 else if (id == -2)
7415 {
7416 /* ":sign unplace * file={fname}" */
7417 redraw_buf_later(buf, NOT_VALID);
7418 buf_delete_signs(buf);
7419 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007420 else
7421 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007422 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007423 lnum = buf_delsign(buf, id);
7424 update_debug_sign(buf, lnum);
7425 }
7426 }
7427 /* idx == SIGNCMD_PLACE */
7428 else if (sign_name != NULL)
7429 {
7430 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7431 if (STRCMP(sp->sn_name, sign_name) == 0)
7432 break;
7433 if (sp == NULL)
7434 {
7435 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7436 return;
7437 }
7438 if (lnum > 0)
7439 /* ":sign place {id} line={lnum} name={name} file={fname}":
7440 * place a sign */
7441 buf_addsign(buf, id, lnum, sp->sn_typenr);
7442 else
7443 /* ":sign place {id} file={fname}": change sign type */
7444 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02007445 if (lnum > 0)
7446 update_debug_sign(buf, lnum);
7447 else
7448 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007449 }
7450 else
7451 EMSG(_(e_invarg));
7452 }
7453}
7454
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007455# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007456/*
7457 * Allocate the icons. Called when the GUI has started. Allows defining
7458 * signs before it starts.
7459 */
7460 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007461sign_gui_started(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007462{
7463 sign_T *sp;
7464
7465 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7466 if (sp->sn_icon != NULL)
7467 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7468}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007469# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007470
7471/*
7472 * List one sign.
7473 */
7474 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007475sign_list_defined(sign_T *sp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007476{
7477 char_u *p;
7478
Bram Moolenaar555b2802005-05-19 21:08:39 +00007479 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007480 if (sp->sn_icon != NULL)
7481 {
7482 MSG_PUTS(" icon=");
7483 msg_outtrans(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007484# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485 if (sp->sn_image == NULL)
7486 MSG_PUTS(_(" (NOT FOUND)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007487# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007488 MSG_PUTS(_(" (not supported)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007489# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490 }
7491 if (sp->sn_text != NULL)
7492 {
7493 MSG_PUTS(" text=");
7494 msg_outtrans(sp->sn_text);
7495 }
7496 if (sp->sn_line_hl > 0)
7497 {
7498 MSG_PUTS(" linehl=");
7499 p = get_highlight_name(NULL, sp->sn_line_hl - 1);
7500 if (p == NULL)
7501 MSG_PUTS("NONE");
7502 else
7503 msg_puts(p);
7504 }
7505 if (sp->sn_text_hl > 0)
7506 {
7507 MSG_PUTS(" texthl=");
7508 p = get_highlight_name(NULL, sp->sn_text_hl - 1);
7509 if (p == NULL)
7510 MSG_PUTS("NONE");
7511 else
7512 msg_puts(p);
7513 }
7514}
7515
7516/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007517 * Undefine a sign and free its memory.
7518 */
7519 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007520sign_undefine(sign_T *sp, sign_T *sp_prev)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007521{
7522 vim_free(sp->sn_name);
7523 vim_free(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007524# ifdef FEAT_SIGN_ICONS
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007525 if (sp->sn_image != NULL)
7526 {
7527 out_flush();
7528 gui_mch_destroy_sign(sp->sn_image);
7529 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007530# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007531 vim_free(sp->sn_text);
7532 if (sp_prev == NULL)
7533 first_sign = sp->sn_next;
7534 else
7535 sp_prev->sn_next = sp->sn_next;
7536 vim_free(sp);
7537}
7538
7539/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007540 * Get highlighting attribute for sign "typenr".
7541 * If "line" is TRUE: line highl, if FALSE: text highl.
7542 */
7543 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007544sign_get_attr(int typenr, int line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007545{
7546 sign_T *sp;
7547
7548 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7549 if (sp->sn_typenr == typenr)
7550 {
7551 if (line)
7552 {
7553 if (sp->sn_line_hl > 0)
7554 return syn_id2attr(sp->sn_line_hl);
7555 }
7556 else
7557 {
7558 if (sp->sn_text_hl > 0)
7559 return syn_id2attr(sp->sn_text_hl);
7560 }
7561 break;
7562 }
7563 return 0;
7564}
7565
7566/*
7567 * Get text mark for sign "typenr".
7568 * Returns NULL if there isn't one.
7569 */
7570 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007571sign_get_text(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007572{
7573 sign_T *sp;
7574
7575 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7576 if (sp->sn_typenr == typenr)
7577 return sp->sn_text;
7578 return NULL;
7579}
7580
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007581# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007582 void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007583sign_get_image(
7584 int typenr) /* the attribute which may have a sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007585{
7586 sign_T *sp;
7587
7588 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7589 if (sp->sn_typenr == typenr)
7590 return sp->sn_image;
7591 return NULL;
7592}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007593# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007594
7595/*
7596 * Get the name of a sign by its typenr.
7597 */
7598 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007599sign_typenr2name(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007600{
7601 sign_T *sp;
7602
7603 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7604 if (sp->sn_typenr == typenr)
7605 return sp->sn_name;
7606 return (char_u *)_("[Deleted]");
7607}
7608
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007609# if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007610/*
7611 * Undefine/free all signs.
7612 */
7613 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007614free_signs(void)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007615{
7616 while (first_sign != NULL)
7617 sign_undefine(first_sign, NULL);
7618}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007619# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007620
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007621# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007622static enum
7623{
7624 EXP_SUBCMD, /* expand :sign sub-commands */
7625 EXP_DEFINE, /* expand :sign define {name} args */
7626 EXP_PLACE, /* expand :sign place {id} args */
7627 EXP_UNPLACE, /* expand :sign unplace" */
7628 EXP_SIGN_NAMES /* expand with name of placed signs */
7629} expand_what;
7630
7631/*
7632 * Function given to ExpandGeneric() to obtain the sign command
7633 * expansion.
7634 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007635 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007636get_sign_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007637{
7638 sign_T *sp;
7639 int current_idx;
7640
7641 switch (expand_what)
7642 {
7643 case EXP_SUBCMD:
7644 return (char_u *)cmds[idx];
7645 case EXP_DEFINE:
7646 {
7647 char *define_arg[] =
7648 {
7649 "icon=", "linehl=", "text=", "texthl=", NULL
7650 };
7651 return (char_u *)define_arg[idx];
7652 }
7653 case EXP_PLACE:
7654 {
7655 char *place_arg[] =
7656 {
7657 "line=", "name=", "file=", "buffer=", NULL
7658 };
7659 return (char_u *)place_arg[idx];
7660 }
7661 case EXP_UNPLACE:
7662 {
7663 char *unplace_arg[] = { "file=", "buffer=", NULL };
7664 return (char_u *)unplace_arg[idx];
7665 }
7666 case EXP_SIGN_NAMES:
7667 /* Complete with name of signs already defined */
7668 current_idx = 0;
7669 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7670 if (current_idx++ == idx)
7671 return sp->sn_name;
7672 return NULL;
7673 default:
7674 return NULL;
7675 }
7676}
7677
7678/*
7679 * Handle command line completion for :sign command.
7680 */
7681 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007682set_context_in_sign_cmd(expand_T *xp, char_u *arg)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007683{
7684 char_u *p;
7685 char_u *end_subcmd;
7686 char_u *last;
7687 int cmd_idx;
7688 char_u *begin_subcmd_args;
7689
7690 /* Default: expand subcommands. */
7691 xp->xp_context = EXPAND_SIGN;
7692 expand_what = EXP_SUBCMD;
7693 xp->xp_pattern = arg;
7694
7695 end_subcmd = skiptowhite(arg);
7696 if (*end_subcmd == NUL)
7697 /* expand subcmd name
7698 * :sign {subcmd}<CTRL-D>*/
7699 return;
7700
7701 cmd_idx = sign_cmd_idx(arg, end_subcmd);
7702
7703 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007704 * |
7705 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007706 begin_subcmd_args = skipwhite(end_subcmd);
7707 p = skiptowhite(begin_subcmd_args);
7708 if (*p == NUL)
7709 {
7710 /*
7711 * Expand first argument of subcmd when possible.
7712 * For ":jump {id}" and ":unplace {id}", we could
7713 * possibly expand the ids of all signs already placed.
7714 */
7715 xp->xp_pattern = begin_subcmd_args;
7716 switch (cmd_idx)
7717 {
7718 case SIGNCMD_LIST:
7719 case SIGNCMD_UNDEFINE:
7720 /* :sign list <CTRL-D>
7721 * :sign undefine <CTRL-D> */
7722 expand_what = EXP_SIGN_NAMES;
7723 break;
7724 default:
7725 xp->xp_context = EXPAND_NOTHING;
7726 }
7727 return;
7728 }
7729
7730 /* expand last argument of subcmd */
7731
7732 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007733 * |
7734 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007735
7736 /* Loop until reaching last argument. */
7737 do
7738 {
7739 p = skipwhite(p);
7740 last = p;
7741 p = skiptowhite(p);
7742 } while (*p != NUL);
7743
7744 p = vim_strchr(last, '=');
7745
7746 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007747 * | |
7748 * last p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007749 if (p == NUL)
7750 {
7751 /* Expand last argument name (before equal sign). */
7752 xp->xp_pattern = last;
7753 switch (cmd_idx)
7754 {
7755 case SIGNCMD_DEFINE:
7756 expand_what = EXP_DEFINE;
7757 break;
7758 case SIGNCMD_PLACE:
7759 expand_what = EXP_PLACE;
7760 break;
7761 case SIGNCMD_JUMP:
7762 case SIGNCMD_UNPLACE:
7763 expand_what = EXP_UNPLACE;
7764 break;
7765 default:
7766 xp->xp_context = EXPAND_NOTHING;
7767 }
7768 }
7769 else
7770 {
7771 /* Expand last argument value (after equal sign). */
7772 xp->xp_pattern = p + 1;
7773 switch (cmd_idx)
7774 {
7775 case SIGNCMD_DEFINE:
7776 if (STRNCMP(last, "texthl", p - last) == 0 ||
7777 STRNCMP(last, "linehl", p - last) == 0)
7778 xp->xp_context = EXPAND_HIGHLIGHT;
7779 else if (STRNCMP(last, "icon", p - last) == 0)
7780 xp->xp_context = EXPAND_FILES;
7781 else
7782 xp->xp_context = EXPAND_NOTHING;
7783 break;
7784 case SIGNCMD_PLACE:
7785 if (STRNCMP(last, "name", p - last) == 0)
7786 expand_what = EXP_SIGN_NAMES;
7787 else
7788 xp->xp_context = EXPAND_NOTHING;
7789 break;
7790 default:
7791 xp->xp_context = EXPAND_NOTHING;
7792 }
7793 }
7794}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007795# endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007796#endif
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007797
7798/*
7799 * Make the user happy.
7800 */
7801 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007802ex_smile(exarg_T *eap UNUSED)
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007803{
7804 static char *code = "\34 \4o\14$\4ox\30 \2o\30$\1ox\25 \2o\36$\1o\11 \1o\1$\3 \2$\1 \1o\1$x\5 \1o\1 \1$\1 \2o\10 \1o\44$\1o\7 \2$\1 \2$\1 \2$\1o\1$x\2 \2o\1 \1$\1 \1$\1 \1\"\1$\6 \1o\11$\4 \15$\4 \11$\1o\7 \3$\1o\2$\1o\1$x\2 \1\"\6$\1o\1$\5 \1o\11$\6 \13$\6 \12$\1o\4 \10$x\4 \7$\4 \13$\6 \13$\6 \27$x\4 \27$\4 \15$\4 \16$\2 \3\"\3$x\5 \1\"\3$\4\"\61$\5 \1\"\3$x\6 \3$\3 \1o\62$\5 \1\"\3$\1ox\5 \1o\2$\1\"\3 \63$\7 \3$\1ox\5 \3$\4 \55$\1\"\1 \1\"\6$\5o\4$\1ox\4 \1o\3$\4o\5$\2 \45$\3 \1o\21$x\4 \10$\1\"\4$\3 \42$\5 \4$\10\"x\3 \4\"\7 \4$\4 \1\"\34$\1\"\6 \1o\3$x\16 \1\"\3$\1o\5 \3\"\22$\1\"\2$\1\"\11 \3$x\20 \3$\1o\12 \1\"\2$\2\"\6$\4\"\13 \1o\3$x\21 \4$\1o\40 \1o\3$\1\"x\22 \1\"\4$\1o\6 \1o\6$\1o\1\"\4$\1o\10 \1o\4$x\24 \1\"\5$\2o\5 \2\"\4$\1o\5$\1o\3 \1o\4$\2\"x\27 \2\"\5$\4o\2 \1\"\3$\1o\11$\3\"x\32 \2\"\7$\2o\1 \12$x\42 \4\"\13$x\46 \14$x\47 \12$\1\"x\50 \1\"\3$\4\"x";
7805 char *p;
7806 int n;
7807
7808 msg_start();
7809 msg_putchar('\n');
7810 for (p = code; *p != NUL; ++p)
7811 if (*p == 'x')
7812 msg_putchar('\n');
7813 else
7814 for (n = *p++; n > 0; --n)
Bram Moolenaar2d820802015-12-31 20:46:39 +01007815 if (*p == 'o' || *p == '$')
7816 msg_putchar_attr(*p, hl_attr(HLF_L));
7817 else
7818 msg_putchar(*p);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007819 msg_clr_eos();
7820}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007821
7822#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO)
7823/*
7824 * ":drop"
7825 * Opens the first argument in a window. When there are two or more arguments
7826 * the argument list is redefined.
7827 */
7828 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007829ex_drop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007830{
7831 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007832 win_T *wp;
7833 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007834# ifdef FEAT_WINDOWS
7835 tabpage_T *tp;
7836# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007837
7838 /*
7839 * Check if the first argument is already being edited in a window. If
7840 * so, jump to that window.
7841 * We would actually need to check all arguments, but that's complicated
7842 * and mostly only one file is dropped.
7843 * This also ignores wildcards, since it is very unlikely the user is
7844 * editing a file name with a wildcard character.
7845 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007846 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007847
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00007848 /*
7849 * Expanding wildcards may result in an empty argument list. E.g. when
7850 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
7851 * already did an error message for this.
7852 */
7853 if (ARGCOUNT == 0)
7854 return;
7855
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007856# ifdef FEAT_WINDOWS
7857 if (cmdmod.tab)
7858 {
7859 /* ":tab drop file ...": open a tab for each argument that isn't
7860 * edited in a window yet. It's like ":tab all" but without closing
7861 * windows or tabs. */
7862 ex_all(eap);
7863 }
7864 else
7865# endif
7866 {
7867 /* ":drop file ...": Edit the first argument. Jump to an existing
7868 * window if possible, edit in current window if the current buffer
7869 * can be abandoned, otherwise open a new window. */
7870 buf = buflist_findnr(ARGLIST[0].ae_fnum);
7871
7872 FOR_ALL_TAB_WINDOWS(tp, wp)
7873 {
7874 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007875 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007876# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00007877 goto_tabpage_win(tp, wp);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007878# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007879 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007880 return;
7881 }
7882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007883
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007884 /*
7885 * Check whether the current buffer is changed. If so, we will need
7886 * to split the current window or data could be lost.
7887 * Skip the check if the 'hidden' option is set, as in this case the
7888 * buffer won't be lost.
7889 */
7890 if (!P_HID(curbuf))
7891 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007892# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007893 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007894# endif
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007895 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007896# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007897 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007898# else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007899 if (split)
7900 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007901# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007903
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007904 /* Fake a ":sfirst" or ":first" command edit the first argument. */
7905 if (split)
7906 {
7907 eap->cmdidx = CMD_sfirst;
7908 eap->cmd[0] = 's';
7909 }
7910 else
7911 eap->cmdidx = CMD_first;
7912 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007914}
7915#endif