blob: 1cb15f204735a1b734c37418432e20273c23b759 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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);
Bram Moolenaar1c465442017-03-12 20:10:05 +0100259 last > first && VIM_ISWHITE(last[-1]); --last)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 ;
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 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +0200292 varnumber_T start_col_nr; /* starting column number */
293 varnumber_T end_col_nr; /* ending column number */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100294 } line;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +0200295 varnumber_T value; /* value if sorting by integer */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100296#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 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100403 if (VIM_ISWHITE(*p))
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000404 ;
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 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100686 if (VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 {
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
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100802 win_T *win;
803 tabpage_T *tp;
Bram Moolenaard5f69332015-04-15 12:43:50 +0200804#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805
806 if (dest >= line1 && dest < line2)
807 {
808 EMSG(_("E134: Move lines into themselves"));
809 return FAIL;
810 }
811
812 num_lines = line2 - line1 + 1;
813
814 /*
815 * First we copy the old text to its new location -- webb
816 * Also copy the flag that ":global" command uses.
817 */
818 if (u_save(dest, dest + 1) == FAIL)
819 return FAIL;
820 for (extra = 0, l = line1; l <= line2; l++)
821 {
822 str = vim_strsave(ml_get(l + extra));
823 if (str != NULL)
824 {
825 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
826 vim_free(str);
827 if (dest < line1)
828 extra++;
829 }
830 }
831
832 /*
833 * Now we must be careful adjusting our marks so that we don't overlap our
834 * mark_adjust() calls.
835 *
836 * We adjust the marks within the old text so that they refer to the
837 * last lines of the file (temporarily), because we know no other marks
838 * will be set there since these line numbers did not exist until we added
839 * our new lines.
840 *
841 * Then we adjust the marks on lines between the old and new text positions
842 * (either forwards or backwards).
843 *
844 * And Finally we adjust the marks we put at the end of the file back to
845 * their final destination at the new text position -- webb
846 */
847 last_line = curbuf->b_ml.ml_line_count;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100848 mark_adjust_nofold(line1, line2, last_line - line2, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 if (dest >= line2)
850 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100851 mark_adjust_nofold(line2 + 1, dest, -num_lines, 0L);
852#ifdef FEAT_FOLDING
853 FOR_ALL_TAB_WINDOWS(tp, win) {
854 if (win->w_buffer == curbuf)
855 foldMoveRange(&win->w_folds, line1, line2, dest);
856 }
857#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 curbuf->b_op_start.lnum = dest - num_lines + 1;
859 curbuf->b_op_end.lnum = dest;
860 }
861 else
862 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100863 mark_adjust_nofold(dest + 1, line1 - 1, num_lines, 0L);
864#ifdef FEAT_FOLDING
865 FOR_ALL_TAB_WINDOWS(tp, win) {
866 if (win->w_buffer == curbuf)
867 foldMoveRange(&win->w_folds, dest + 1, line1 - 1, line2);
868 }
869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 curbuf->b_op_start.lnum = dest + 1;
871 curbuf->b_op_end.lnum = dest + num_lines;
872 }
873 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100874 mark_adjust_nofold(last_line - num_lines + 1, last_line,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 -(last_line - dest - extra), 0L);
876
877 /*
878 * Now we delete the original text -- webb
879 */
880 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
881 return FAIL;
882
883 for (l = line1; l <= line2; l++)
884 ml_delete(line1 + extra, TRUE);
885
886 if (!global_busy && num_lines > p_report)
887 {
888 if (num_lines == 1)
889 MSG(_("1 line moved"));
890 else
891 smsg((char_u *)_("%ld lines moved"), num_lines);
892 }
893
894 /*
895 * Leave the cursor on the last of the moved lines.
896 */
897 if (dest >= line1)
898 curwin->w_cursor.lnum = dest;
899 else
900 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
901
902 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +0100903 {
904 dest += num_lines + 1;
905 last_line = curbuf->b_ml.ml_line_count;
906 if (dest > last_line + 1)
907 dest = last_line + 1;
908 changed_lines(line1, 0, dest, 0L);
909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 else
911 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
912
913 return OK;
914}
915
916/*
917 * ":copy"
918 */
919 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100920ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921{
922 linenr_T count;
923 char_u *p;
924
925 count = line2 - line1 + 1;
926 curbuf->b_op_start.lnum = n + 1;
927 curbuf->b_op_end.lnum = n + count;
928 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
929
930 /*
931 * there are three situations:
932 * 1. destination is above line1
933 * 2. destination is between line1 and line2
934 * 3. destination is below line2
935 *
936 * n = destination (when starting)
937 * curwin->w_cursor.lnum = destination (while copying)
938 * line1 = start of source (while copying)
939 * line2 = end of source (while copying)
940 */
941 if (u_save(n, n + 1) == FAIL)
942 return;
943
944 curwin->w_cursor.lnum = n;
945 while (line1 <= line2)
946 {
947 /* need to use vim_strsave() because the line will be unlocked within
948 * ml_append() */
949 p = vim_strsave(ml_get(line1));
950 if (p != NULL)
951 {
952 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
953 vim_free(p);
954 }
955 /* situation 2: skip already copied lines */
956 if (line1 == n)
957 line1 = curwin->w_cursor.lnum;
958 ++line1;
959 if (curwin->w_cursor.lnum < line1)
960 ++line1;
961 if (curwin->w_cursor.lnum < line2)
962 ++line2;
963 ++curwin->w_cursor.lnum;
964 }
965
966 appended_lines_mark(n, count);
967
968 msgmore((long)count);
969}
970
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000971static char_u *prevcmd = NULL; /* the previous command */
972
973#if defined(EXITFREE) || defined(PROTO)
974 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100975free_prev_shellcmd(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000976{
977 vim_free(prevcmd);
978}
979#endif
980
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981/*
982 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
983 * Bangs in the argument are replaced with the previously entered command.
984 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 */
986 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100987do_bang(
988 int addr_count,
989 exarg_T *eap,
990 int forceit,
991 int do_in,
992 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993{
994 char_u *arg = eap->arg; /* command */
995 linenr_T line1 = eap->line1; /* start of range */
996 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 char_u *newcmd = NULL; /* the new command */
998 int free_newcmd = FALSE; /* need to free() newcmd */
999 int ins_prevcmd;
1000 char_u *t;
1001 char_u *p;
1002 char_u *trailarg;
1003 int len;
1004 int scroll_save = msg_scroll;
1005
1006 /*
1007 * Disallow shell commands for "rvim".
1008 * Disallow shell commands from .exrc and .vimrc in current directory for
1009 * security reasons.
1010 */
1011 if (check_restricted() || check_secure())
1012 return;
1013
1014 if (addr_count == 0) /* :! */
1015 {
1016 msg_scroll = FALSE; /* don't scroll here */
1017 autowrite_all();
1018 msg_scroll = scroll_save;
1019 }
1020
1021 /*
1022 * Try to find an embedded bang, like in :!<cmd> ! [args]
1023 * (:!! is indicated by the 'forceit' variable)
1024 */
1025 ins_prevcmd = forceit;
1026 trailarg = arg;
1027 do
1028 {
1029 len = (int)STRLEN(trailarg) + 1;
1030 if (newcmd != NULL)
1031 len += (int)STRLEN(newcmd);
1032 if (ins_prevcmd)
1033 {
1034 if (prevcmd == NULL)
1035 {
1036 EMSG(_(e_noprev));
1037 vim_free(newcmd);
1038 return;
1039 }
1040 len += (int)STRLEN(prevcmd);
1041 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001042 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 {
1044 vim_free(newcmd);
1045 return;
1046 }
1047 *t = NUL;
1048 if (newcmd != NULL)
1049 STRCAT(t, newcmd);
1050 if (ins_prevcmd)
1051 STRCAT(t, prevcmd);
1052 p = t + STRLEN(t);
1053 STRCAT(t, trailarg);
1054 vim_free(newcmd);
1055 newcmd = t;
1056
1057 /*
1058 * Scan the rest of the argument for '!', which is replaced by the
1059 * previous command. "\!" is replaced by "!" (this is vi compatible).
1060 */
1061 trailarg = NULL;
1062 while (*p)
1063 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001064 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 {
1066 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001067 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 else
1069 {
1070 trailarg = p;
1071 *trailarg++ = NUL;
1072 ins_prevcmd = TRUE;
1073 break;
1074 }
1075 }
1076 ++p;
1077 }
1078 } while (trailarg != NULL);
1079
1080 vim_free(prevcmd);
1081 prevcmd = newcmd;
1082
1083 if (bangredo) /* put cmd in redo buffer for ! command */
1084 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001085 /* If % or # appears in the command, it must have been escaped.
1086 * Reescape them, so that redoing them does not substitute them by the
1087 * buffername. */
1088 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1089
1090 if (cmd != NULL)
1091 {
1092 AppendToRedobuffLit(cmd, -1);
1093 vim_free(cmd);
1094 }
1095 else
1096 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 AppendToRedobuff((char_u *)"\n");
1098 bangredo = FALSE;
1099 }
1100 /*
1101 * Add quotes around the command, for shells that need them.
1102 */
1103 if (*p_shq != NUL)
1104 {
1105 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1106 if (newcmd == NULL)
1107 return;
1108 STRCPY(newcmd, p_shq);
1109 STRCAT(newcmd, prevcmd);
1110 STRCAT(newcmd, p_shq);
1111 free_newcmd = TRUE;
1112 }
1113 if (addr_count == 0) /* :! */
1114 {
1115 /* echo the command */
1116 msg_start();
1117 msg_putchar(':');
1118 msg_putchar('!');
1119 msg_outtrans(newcmd);
1120 msg_clr_eos();
1121 windgoto(msg_row, msg_col);
1122
1123 do_shell(newcmd, 0);
1124 }
1125 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001126 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 /* Careful: This may recursively call do_bang() again! (because of
1128 * autocommands) */
1129 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001130#ifdef FEAT_AUTOCMD
1131 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
1132#endif
1133 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 if (free_newcmd)
1135 vim_free(newcmd);
1136}
1137
1138/*
1139 * do_filter: filter lines through a command given by the user
1140 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001141 * We mostly use temp files and the call_shell() routine here. This would
1142 * normally be done using pipes on a UNIX machine, but this is more portable
1143 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 * to deal with redirection somehow, and should handle things like looking
1145 * at the PATH env. variable, and adding reasonable extensions to the
1146 * command name given by the user. All reasonable versions of call_shell()
1147 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001148 * Alternatively, if on Unix and redirecting input or output, but not both,
1149 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 * We use input redirection if do_in is TRUE.
1151 * We use output redirection if do_out is TRUE.
1152 */
1153 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001154do_filter(
1155 linenr_T line1,
1156 linenr_T line2,
1157 exarg_T *eap, /* for forced 'ff' and 'fenc' */
1158 char_u *cmd,
1159 int do_in,
1160 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161{
1162 char_u *itmp = NULL;
1163 char_u *otmp = NULL;
1164 linenr_T linecount;
1165 linenr_T read_linecount;
1166 pos_T cursor_save;
1167 char_u *cmd_buf;
1168#ifdef FEAT_AUTOCMD
1169 buf_T *old_curbuf = curbuf;
1170#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001171 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172
1173 if (*cmd == NUL) /* no filter command */
1174 return;
1175
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 cursor_save = curwin->w_cursor;
1177 linecount = line2 - line1 + 1;
1178 curwin->w_cursor.lnum = line1;
1179 curwin->w_cursor.col = 0;
1180 changed_line_abv_curs();
1181 invalidate_botline();
1182
1183 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001184 * When using temp files:
1185 * 1. * Form temp file names
1186 * 2. * Write the lines to a temp file
1187 * 3. Run the filter command on the temp file
1188 * 4. * Read the output of the command into the buffer
1189 * 5. * Delete the original lines to be filtered
1190 * 6. * Remove the temp files
1191 *
1192 * When writing the input with a pipe or when catching the output with a
1193 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 */
1195
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001196 if (do_out)
1197 shell_flags |= SHELL_DOOUT;
1198
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001199#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001200 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001202 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1203 shell_flags |= SHELL_READ;
1204 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001206 else if (do_in && !do_out && !p_stmp)
1207 {
1208 /* Use a pipe to write stdin of the command, do not use a temp file. */
1209 shell_flags |= SHELL_WRITE;
1210 curbuf->b_op_start.lnum = line1;
1211 curbuf->b_op_end.lnum = line2;
1212 }
1213 else if (do_in && do_out && !p_stmp)
1214 {
1215 /* Use a pipe to write stdin and fetch stdout of the command, do not
1216 * use a temp file. */
1217 shell_flags |= SHELL_READ|SHELL_WRITE;
1218 curbuf->b_op_start.lnum = line1;
1219 curbuf->b_op_end.lnum = line2;
1220 curwin->w_cursor.lnum = line2;
1221 }
1222 else
1223#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001224 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1225 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001226 {
1227 EMSG(_(e_notmp));
1228 goto filterend;
1229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230
1231/*
1232 * The writing and reading of temp files will not be shown.
1233 * Vi also doesn't do this and the messages are not very informative.
1234 */
1235 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001236 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 FALSE, FALSE, FALSE, TRUE) == FAIL)
1238 {
1239 msg_putchar('\n'); /* keep message from buf_write() */
1240 --no_wait_return;
1241#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1242 if (!aborting())
1243#endif
1244 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1245 goto filterend;
1246 }
1247#ifdef FEAT_AUTOCMD
1248 if (curbuf != old_curbuf)
1249 goto filterend;
1250#endif
1251
1252 if (!do_out)
1253 msg_putchar('\n');
1254
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001255 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1257 if (cmd_buf == NULL)
1258 goto filterend;
1259
1260 windgoto((int)Rows - 1, 0);
1261 cursor_on();
1262
1263 /*
1264 * When not redirecting the output the command can write anything to the
1265 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1266 * stderr output of external command. Clear the screen later.
1267 * If do_in is FALSE, this could be something like ":r !cat", which may
1268 * also mess up the screen, clear it later.
1269 */
1270 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1271 redraw_later_clear();
1272
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001273 if (do_out)
1274 {
1275 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001276 {
1277 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001278 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001279 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001280 redraw_curbuf_later(VALID);
1281 }
1282 read_linecount = curbuf->b_ml.ml_line_count;
1283
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 /*
1285 * When call_shell() fails wait_return() is called to give the user a
1286 * chance to read the error messages. Otherwise errors are ignored, so you
1287 * can see the error messages from the command that appear on stdout; use
1288 * 'u' to fix the text
1289 * Switch to cooked mode when not redirecting stdin, avoids that something
1290 * like ":r !cat" hangs.
1291 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1292 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001293 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 {
1295 redraw_later_clear();
1296 wait_return(FALSE);
1297 }
1298 vim_free(cmd_buf);
1299
1300 did_check_timestamps = FALSE;
1301 need_check_timestamps = TRUE;
1302
1303 /* When interrupting the shell command, it may still have produced some
1304 * useful output. Reset got_int here, so that readfile() won't cancel
1305 * reading. */
1306 ui_breakcheck();
1307 got_int = FALSE;
1308
1309 if (do_out)
1310 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001311 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001313 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001314 eap, READ_FILTER) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001316#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1317 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001319 {
1320 msg_putchar('\n');
1321 EMSG2(_(e_notread), otmp);
1322 }
1323 goto error;
1324 }
1325#ifdef FEAT_AUTOCMD
1326 if (curbuf != old_curbuf)
1327 goto filterend;
1328#endif
1329 }
1330
1331 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1332
1333 if (shell_flags & SHELL_READ)
1334 {
1335 curbuf->b_op_start.lnum = line2 + 1;
1336 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1337 appended_lines_mark(line2, read_linecount);
1338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339
1340 if (do_in)
1341 {
1342 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1343 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 if (read_linecount >= linecount)
1345 /* move all marks from old lines to new lines */
1346 mark_adjust(line1, line2, linecount, 0L);
1347 else
1348 {
1349 /* move marks from old lines to new lines, delete marks
1350 * that are in deleted lines */
1351 mark_adjust(line1, line1 + read_linecount - 1,
1352 linecount, 0L);
1353 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1354 }
1355 }
1356
1357 /*
1358 * Put cursor on first filtered line for ":range!cmd".
1359 * Adjust '[ and '] (set by buf_write()).
1360 */
1361 curwin->w_cursor.lnum = line1;
1362 del_lines(linecount, TRUE);
1363 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1364 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1365 write_lnum_adjust(-linecount); /* adjust last line
1366 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001367#ifdef FEAT_FOLDING
1368 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 }
1371 else
1372 {
1373 /*
1374 * Put cursor on last new line for ":r !cmd".
1375 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001377 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001379
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1381 --no_wait_return;
1382
1383 if (linecount > p_report)
1384 {
1385 if (do_in)
1386 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001387 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1388 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001391 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 }
1393 else
1394 msgmore((long)linecount);
1395 }
1396 }
1397 else
1398 {
1399error:
1400 /* put cursor back in same position for ":w !cmd" */
1401 curwin->w_cursor = cursor_save;
1402 --no_wait_return;
1403 wait_return(FALSE);
1404 }
1405
1406filterend:
1407
1408#ifdef FEAT_AUTOCMD
1409 if (curbuf != old_curbuf)
1410 {
1411 --no_wait_return;
1412 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1413 }
1414#endif
1415 if (itmp != NULL)
1416 mch_remove(itmp);
1417 if (otmp != NULL)
1418 mch_remove(otmp);
1419 vim_free(itmp);
1420 vim_free(otmp);
1421}
1422
1423/*
1424 * Call a shell to execute a command.
1425 * When "cmd" is NULL start an interactive shell.
1426 */
1427 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001428do_shell(
1429 char_u *cmd,
1430 int flags) /* may be SHELL_DOOUT when output is redirected */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431{
1432 buf_T *buf;
1433#ifndef FEAT_GUI_MSWIN
1434 int save_nwr;
1435#endif
1436#ifdef MSWIN
1437 int winstart = FALSE;
1438#endif
1439
1440 /*
1441 * Disallow shell commands for "rvim".
1442 * Disallow shell commands from .exrc and .vimrc in current directory for
1443 * security reasons.
1444 */
1445 if (check_restricted() || check_secure())
1446 {
1447 msg_end();
1448 return;
1449 }
1450
1451#ifdef MSWIN
1452 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453 * Check if ":!start" is used.
1454 */
1455 if (cmd != NULL)
1456 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1457#endif
1458
1459 /*
1460 * For autocommands we want to get the output on the current screen, to
1461 * avoid having to type return below.
1462 */
1463 msg_putchar('\r'); /* put cursor at start of line */
1464#ifdef FEAT_AUTOCMD
1465 if (!autocmd_busy)
1466#endif
1467 {
1468#ifdef MSWIN
1469 if (!winstart)
1470#endif
1471 stoptermcap();
1472 }
1473#ifdef MSWIN
1474 if (!winstart)
1475#endif
1476 msg_putchar('\n'); /* may shift screen one line up */
1477
1478 /* warning message before calling the shell */
1479 if (p_warn
1480#ifdef FEAT_AUTOCMD
1481 && !autocmd_busy
1482#endif
1483 && msg_silent == 0)
Bram Moolenaar29323592016-07-24 22:04:11 +02001484 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 if (bufIsChanged(buf))
1486 {
1487#ifdef FEAT_GUI_MSWIN
1488 if (!winstart)
1489 starttermcap(); /* don't want a message box here */
1490#endif
1491 MSG_PUTS(_("[No write since last change]\n"));
1492#ifdef FEAT_GUI_MSWIN
1493 if (!winstart)
1494 stoptermcap();
1495#endif
1496 break;
1497 }
1498
1499 /* This windgoto is required for when the '\n' resulted in a "delete line
1500 * 1" command to the terminal. */
1501 if (!swapping_screen())
1502 windgoto(msg_row, msg_col);
1503 cursor_on();
1504 (void)call_shell(cmd, SHELL_COOKED | flags);
1505 did_check_timestamps = FALSE;
1506 need_check_timestamps = TRUE;
1507
1508 /*
1509 * put the message cursor at the end of the screen, avoids wait_return()
1510 * to overwrite the text that the external command showed
1511 */
1512 if (!swapping_screen())
1513 {
1514 msg_row = Rows - 1;
1515 msg_col = 0;
1516 }
1517
1518#ifdef FEAT_AUTOCMD
1519 if (autocmd_busy)
1520 {
1521 if (msg_silent == 0)
1522 redraw_later_clear();
1523 }
1524 else
1525#endif
1526 {
1527 /*
1528 * For ":sh" there is no need to call wait_return(), just redraw.
1529 * Also for the Win32 GUI (the output is in a console window).
1530 * Otherwise there is probably text on the screen that the user wants
1531 * to read before redrawing, so call wait_return().
1532 */
1533#ifndef FEAT_GUI_MSWIN
1534 if (cmd == NULL
1535# ifdef WIN3264
1536 || (winstart && !need_wait_return)
1537# endif
1538 )
1539 {
1540 if (msg_silent == 0)
1541 redraw_later_clear();
1542 need_wait_return = FALSE;
1543 }
1544 else
1545 {
1546 /*
1547 * If we switch screens when starttermcap() is called, we really
1548 * want to wait for "hit return to continue".
1549 */
1550 save_nwr = no_wait_return;
1551 if (swapping_screen())
1552 no_wait_return = FALSE;
1553# ifdef AMIGA
1554 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1555# else
1556 wait_return(msg_silent == 0);
1557# endif
1558 no_wait_return = save_nwr;
1559 }
1560#endif /* FEAT_GUI_W32 */
1561
1562#ifdef MSWIN
1563 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1564#endif
1565 starttermcap(); /* start termcap if not done by wait_return() */
1566
1567 /*
1568 * In an Amiga window redrawing is caused by asking the window size.
1569 * If we got an interrupt this will not work. The chance that the
1570 * window size is wrong is very small, but we need to redraw the
1571 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1572 * but it saves an extra redraw.
1573 */
1574#ifdef AMIGA
1575 if (skip_redraw) /* ':' hit in wait_return() */
1576 {
1577 if (msg_silent == 0)
1578 redraw_later_clear();
1579 }
1580 else if (term_console)
1581 {
1582 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1583 if (got_int && msg_silent == 0)
1584 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1585 else
1586 must_redraw = 0; /* no extra redraw needed */
1587 }
1588#endif
1589 }
1590
1591 /* display any error messages now */
1592 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001593
1594#ifdef FEAT_AUTOCMD
1595 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
1596#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597}
1598
1599/*
1600 * Create a shell command from a command string, input redirection file and
1601 * output redirection file.
1602 * Returns an allocated string with the shell command, or NULL for failure.
1603 */
1604 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001605make_filter_cmd(
1606 char_u *cmd, /* command */
1607 char_u *itmp, /* NULL or name of input file */
1608 char_u *otmp) /* NULL or name of output file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609{
1610 char_u *buf;
1611 long_u len;
1612
Bram Moolenaar53076832015-12-31 19:53:21 +01001613#if defined(UNIX)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001614 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001615 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001616
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001617 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001618 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1619 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001620 if (is_fish_shell)
1621 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1622 else
1623#endif
1624 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 if (itmp != NULL)
1626 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1627 if (otmp != NULL)
1628 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1629 buf = lalloc(len, TRUE);
1630 if (buf == NULL)
1631 return NULL;
1632
Bram Moolenaar53076832015-12-31 19:53:21 +01001633#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001635 * Put braces around the command (for concatenated commands) when
1636 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001638 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001639 {
1640 if (is_fish_shell)
1641 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1642 else
1643 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1644 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001645 else
1646 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 if (itmp != NULL)
1648 {
1649 STRCAT(buf, " < ");
1650 STRCAT(buf, itmp);
1651 }
1652#else
1653 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001654 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 * the use of commands in a pipe.
1656 */
1657 STRCPY(buf, cmd);
1658 if (itmp != NULL)
1659 {
1660 char_u *p;
1661
1662 /*
1663 * If there is a pipe, we have to put the '<' in front of it.
1664 * Don't do this when 'shellquote' is not empty, otherwise the
1665 * redirection would be inside the quotes.
1666 */
1667 if (*p_shq == NUL)
1668 {
1669 p = vim_strchr(buf, '|');
1670 if (p != NULL)
1671 *p = NUL;
1672 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1674 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 if (*p_shq == NUL)
1676 {
1677 p = vim_strchr(cmd, '|');
1678 if (p != NULL)
1679 {
1680 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1681 STRCAT(buf, p);
1682 }
1683 }
1684 }
1685#endif
1686 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001687 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688
1689 return buf;
1690}
1691
1692/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001693 * Append output redirection for file "fname" to the end of string buffer
1694 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 * Works with the 'shellredir' and 'shellpipe' options.
1696 * The caller should make sure that there is enough room:
1697 * STRLEN(opt) + STRLEN(fname) + 3
1698 */
1699 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001700append_redir(
1701 char_u *buf,
1702 int buflen,
1703 char_u *opt,
1704 char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705{
1706 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001707 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001709 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001710 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001712 {
1713 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001715 if (p[1] == '%') /* skip %% */
1716 ++p;
1717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 if (p != NULL)
1719 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001720 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1721 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1722 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 }
1724 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001725 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 " %s %s",
1728#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730#endif
1731 (char *)opt, (char *)fname);
1732}
1733
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001734#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001736static int no_viminfo(void);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001737static int read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02001738static void write_viminfo_version(FILE *fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001739static void write_viminfo_barlines(vir_T *virp, FILE *fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740static int viminfo_errcnt;
1741
1742 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001743no_viminfo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744{
1745 /* "vim -i NONE" does not read or write a viminfo file */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001746 return STRCMP(p_viminfofile, "NONE") == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747}
1748
1749/*
1750 * Report an error for reading a viminfo file.
1751 * Count the number of errors. When there are more than 10, return TRUE.
1752 */
1753 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001754viminfo_error(char *errnum, char *message, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001756 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1757 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001758 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001759 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1760 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 emsg(IObuff);
1762 if (++viminfo_errcnt >= 10)
1763 {
1764 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1765 return TRUE;
1766 }
1767 return FALSE;
1768}
1769
1770/*
1771 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001772 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 */
1774 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001775read_viminfo(
1776 char_u *file, /* file name or NULL to use default name */
1777 int flags) /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778{
1779 FILE *fp;
1780 char_u *fname;
1781
1782 if (no_viminfo())
1783 return FAIL;
1784
Bram Moolenaard812df62008-11-09 12:46:09 +00001785 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 if (fname == NULL)
1787 return FAIL;
1788 fp = mch_fopen((char *)fname, READBIN);
1789
1790 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001791 {
1792 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001793 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1794 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001795 (flags & VIF_WANT_INFO) ? _(" info") : "",
1796 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1797 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001798 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001799 verbose_leave();
1800 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801
1802 vim_free(fname);
1803 if (fp == NULL)
1804 return FAIL;
1805
1806 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001807 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808
1809 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 return OK;
1811}
1812
1813/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001814 * Write the viminfo file. The old one is read in first so that effectively a
1815 * merge of current info and old info is done. This allows multiple vims to
1816 * run simultaneously, without losing any marks etc.
1817 * If "forceit" is TRUE, then the old file is not read in, and only internal
1818 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 */
1820 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001821write_viminfo(char_u *file, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822{
1823 char_u *fname;
1824 FILE *fp_in = NULL; /* input viminfo file, if any */
1825 FILE *fp_out = NULL; /* output viminfo file */
1826 char_u *tempname = NULL; /* name of temp viminfo file */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001827 stat_T st_new; /* mch_stat() of potential new file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 char_u *wp;
1829#if defined(UNIX) || defined(VMS)
1830 mode_t umask_save;
1831#endif
1832#ifdef UNIX
1833 int shortname = FALSE; /* use 8.3 file name */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001834 stat_T st_old; /* mch_stat() of existing viminfo file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001836#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001837 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001838#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839
1840 if (no_viminfo())
1841 return;
1842
1843 fname = viminfo_filename(file); /* may set to default if NULL */
1844 if (fname == NULL)
1845 return;
1846
1847 fp_in = mch_fopen((char *)fname, READBIN);
1848 if (fp_in == NULL)
1849 {
1850 /* if it does exist, but we can't read it, don't try writing */
1851 if (mch_stat((char *)fname, &st_new) == 0)
1852 goto end;
1853#if defined(UNIX) || defined(VMS)
1854 /*
1855 * For Unix we create the .viminfo non-accessible for others,
1856 * because it may contain text from non-accessible documents.
1857 */
1858 umask_save = umask(077);
1859#endif
1860 fp_out = mch_fopen((char *)fname, WRITEBIN);
1861#if defined(UNIX) || defined(VMS)
1862 (void)umask(umask_save);
1863#endif
1864 }
1865 else
1866 {
1867 /*
1868 * There is an existing viminfo file. Create a temporary file to
1869 * write the new viminfo into, in the same directory as the
1870 * existing viminfo file, which will be renamed later.
1871 */
1872#ifdef UNIX
1873 /*
1874 * For Unix we check the owner of the file. It's not very nice to
1875 * overwrite a user's viminfo file after a "su root", with a
1876 * viminfo file that the user can't read.
1877 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001878 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001879 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001881 if (mch_stat((char *)fname, &st_old) == 0
1882 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001883 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 ? (st_old.st_mode & 0200)
1885 : (st_old.st_gid == getgid()
1886 ? (st_old.st_mode & 0020)
1887 : (st_old.st_mode & 0002))))
1888 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001889 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890
1891 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1893 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001894 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 goto end;
1896 }
1897#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001898#ifdef WIN3264
1899 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001900 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001901#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902
1903 /*
1904 * Make tempname.
1905 * May try twice: Once normal and once with shortname set, just in
1906 * case somebody puts his viminfo file in an 8.3 filesystem.
1907 */
1908 for (;;)
1909 {
1910 tempname = buf_modname(
1911#ifdef UNIX
1912 shortname,
1913#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915#endif
1916 fname,
1917#ifdef VMS
1918 (char_u *)"-tmp",
1919#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921#endif
1922 FALSE);
1923 if (tempname == NULL) /* out of memory */
1924 break;
1925
1926 /*
1927 * Check if tempfile already exists. Never overwrite an
1928 * existing file!
1929 */
1930 if (mch_stat((char *)tempname, &st_new) == 0)
1931 {
1932#ifdef UNIX
1933 /*
1934 * Check if tempfile is same as original file. May happen
1935 * when modname() gave the same file back. E.g. silly
1936 * link, or file name-length reached. Try again with
1937 * shortname set.
1938 */
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001939 if (!shortname && st_new.st_dev == st_old.st_dev
1940 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 {
1942 vim_free(tempname);
1943 tempname = NULL;
1944 shortname = TRUE;
1945 continue;
1946 }
1947#endif
1948 /*
1949 * Try another name. Change one character, just before
1950 * the extension. This should also work for an 8.3
1951 * file name, when after adding the extension it still is
1952 * the same file as the original.
1953 */
1954 wp = tempname + STRLEN(tempname) - 5;
1955 if (wp < gettail(tempname)) /* empty file name? */
1956 wp = gettail(tempname);
1957 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0;
1958 --*wp)
1959 {
1960 /*
1961 * They all exist? Must be something wrong! Don't
1962 * write the viminfo file then.
1963 */
1964 if (*wp == 'a')
1965 {
Bram Moolenaar2d358992016-06-12 21:20:54 +02001966 EMSG2(_("E929: Too many viminfo temp files, like %s!"),
1967 tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 vim_free(tempname);
1969 tempname = NULL;
1970 break;
1971 }
1972 }
1973 }
1974 break;
1975 }
1976
1977 if (tempname != NULL)
1978 {
Bram Moolenaar114216c2006-03-14 23:08:30 +00001979#ifdef VMS
1980 /* fdopen() fails for some reason */
Bram Moolenaarcf034472006-03-15 23:07:59 +00001981 umask_save = umask(077);
1982 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1983 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001984#else
Bram Moolenaara5792f52005-11-23 21:25:05 +00001985 int fd;
1986
1987 /* Use mch_open() to be able to use O_NOFOLLOW and set file
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001988 * protection:
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001989 * Unix: same as original file, but strip s-bit. Reset umask to
1990 * avoid it getting in the way.
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001991 * Others: r&w for user only. */
Bram Moolenaar114216c2006-03-14 23:08:30 +00001992# ifdef UNIX
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001993 umask_save = umask(0);
Bram Moolenaara5792f52005-11-23 21:25:05 +00001994 fd = mch_open((char *)tempname,
1995 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
Bram Moolenaarbba577a2005-11-28 23:05:55 +00001996 (int)((st_old.st_mode & 0777) | 0600));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001997 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001998# else
Bram Moolenaarbba577a2005-11-28 23:05:55 +00001999 fd = mch_open((char *)tempname,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002000 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002001# endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00002002 if (fd < 0)
2003 fp_out = NULL;
2004 else
2005 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002006#endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007
2008 /*
2009 * If we can't create in the same directory, try creating a
2010 * "normal" temp file.
2011 */
2012 if (fp_out == NULL)
2013 {
2014 vim_free(tempname);
Bram Moolenaare5c421c2015-03-31 13:33:08 +02002015 if ((tempname = vim_tempname('o', TRUE)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2017 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00002018
2019#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 /*
Bram Moolenaara5792f52005-11-23 21:25:05 +00002021 * Make sure the owner can read/write it. This only works for
2022 * root.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 */
2024 if (fp_out != NULL)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002025 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026#endif
2027 }
2028 }
2029
2030 /*
2031 * Check if the new viminfo file can be written to.
2032 */
2033 if (fp_out == NULL)
2034 {
2035 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002036 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 if (fp_in != NULL)
2038 fclose(fp_in);
2039 goto end;
2040 }
2041
2042 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002043 {
2044 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00002045 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002046 verbose_leave();
2047 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048
2049 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002050 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051
Bram Moolenaar927030a2016-03-15 18:23:55 +01002052 if (fclose(fp_out) == EOF)
2053 ++viminfo_errcnt;
2054
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 if (fp_in != NULL)
2056 {
2057 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002058
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002059 /* In case of an error keep the original viminfo file. Otherwise
2060 * rename the newly written file. Give an error if that fails. */
Bram Moolenaar927030a2016-03-15 18:23:55 +01002061 if (viminfo_errcnt == 0)
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002062 {
Bram Moolenaar927030a2016-03-15 18:23:55 +01002063 if (vim_rename(tempname, fname) == -1)
2064 {
2065 ++viminfo_errcnt;
2066 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2067 }
2068# ifdef WIN3264
2069 /* If the viminfo file was hidden then also hide the new file. */
2070 else if (hidden)
2071 mch_hide(fname);
2072# endif
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002073 }
2074 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 mch_remove(tempname);
2076 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002077
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078end:
2079 vim_free(fname);
2080 vim_free(tempname);
2081}
2082
2083/*
2084 * Get the viminfo file name to use.
2085 * If "file" is given and not empty, use it (has already been expanded by
2086 * cmdline functions).
2087 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2088 * expand environment variables.
2089 * Returns an allocated string. NULL when out of memory.
2090 */
2091 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002092viminfo_filename(char_u *file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093{
2094 if (file == NULL || *file == NUL)
2095 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002096 if (*p_viminfofile != NUL)
2097 file = p_viminfofile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2099 {
2100#ifdef VIMINFO_FILE2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101# ifdef VMS
2102 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2103# else
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002104# ifdef MSWIN
2105 /* Use $VIM only if $HOME is the default "C:/". */
2106 if (STRCMP(vim_getenv((char_u *)"HOME", NULL), "C:/") == 0
2107 && mch_getenv((char_u *)"HOME") == NULL)
2108# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 if (mch_getenv((char_u *)"HOME") == NULL)
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002110# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111# endif
2112 {
2113 /* don't use $VIM when not available. */
2114 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2115 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2116 file = (char_u *)VIMINFO_FILE2;
2117 else
2118 file = (char_u *)VIMINFO_FILE;
2119 }
2120 else
2121#endif
2122 file = (char_u *)VIMINFO_FILE;
2123 }
2124 expand_env(file, NameBuff, MAXPATHL);
2125 file = NameBuff;
2126 }
2127 return vim_strsave(file);
2128}
2129
2130/*
2131 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2132 */
2133 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002134do_viminfo(FILE *fp_in, FILE *fp_out, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 int eof = FALSE;
2137 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002138 int merge = FALSE;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002139 int do_copy_marks = FALSE;
2140 garray_T buflist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141
2142 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2143 return;
2144 vir.vir_fd = fp_in;
2145#ifdef FEAT_MBYTE
2146 vir.vir_conv.vc_type = CONV_NONE;
2147#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002148 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002149 vir.vir_version = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150
2151 if (fp_in != NULL)
2152 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002153 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002154 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002155 if (fp_out != NULL)
Bram Moolenaar2d358992016-06-12 21:20:54 +02002156 {
2157 /* Registers and marks are read and kept separate from what
2158 * this Vim is using. They are merged when writing. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002159 prepare_viminfo_registers();
Bram Moolenaar2d358992016-06-12 21:20:54 +02002160 prepare_viminfo_marks();
2161 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002162
Bram Moolenaard812df62008-11-09 12:46:09 +00002163 eof = read_viminfo_up_to_marks(&vir,
2164 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002165 merge = TRUE;
2166 }
2167 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 /* Skip info, find start of marks */
2169 while (!(eof = viminfo_readline(&vir))
2170 && vir.vir_line[0] != '>')
2171 ;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002172
2173 do_copy_marks = (flags &
2174 (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002176
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 if (fp_out != NULL)
2178 {
2179 /* Write the info: */
2180 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2181 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002182 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002183 write_viminfo_version(fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002185 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2187#endif
2188 write_viminfo_search_pattern(fp_out);
2189 write_viminfo_sub_string(fp_out);
2190#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002191 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192#endif
2193 write_viminfo_registers(fp_out);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002194 finish_viminfo_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195#ifdef FEAT_EVAL
2196 write_viminfo_varlist(fp_out);
2197#endif
2198 write_viminfo_filemarks(fp_out);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002199 finish_viminfo_marks();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 write_viminfo_bufferlist(fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002201 write_viminfo_barlines(&vir, fp_out);
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002202
2203 if (do_copy_marks)
2204 ga_init2(&buflist, sizeof(buf_T *), 50);
2205 write_viminfo_marks(fp_out, do_copy_marks ? &buflist : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002207
2208 if (do_copy_marks)
2209 {
2210 copy_viminfo_marks(&vir, fp_out, &buflist, eof, flags);
2211 if (fp_out != NULL)
2212 ga_clear(&buflist);
2213 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214
2215 vim_free(vir.vir_line);
2216#ifdef FEAT_MBYTE
2217 if (vir.vir_conv.vc_type != CONV_NONE)
2218 convert_setup(&vir.vir_conv, NULL, NULL);
2219#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002220 ga_clear_strings(&vir.vir_barlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221}
2222
2223/*
2224 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2225 * first part of the viminfo file which contains everything but the marks that
2226 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2227 */
2228 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002229read_viminfo_up_to_marks(
2230 vir_T *virp,
2231 int forceit,
2232 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233{
2234 int eof;
2235 buf_T *buf;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002236 int got_encoding = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237
2238#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002239 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002241
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 eof = viminfo_readline(virp);
2243 while (!eof && virp->vir_line[0] != '>')
2244 {
2245 switch (virp->vir_line[0])
2246 {
2247 /* Characters reserved for future expansion, ignored now */
2248 case '+': /* "+40 /path/dir file", for running vim without args */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 case '^': /* to be defined */
2250 case '<': /* long line - ignored */
2251 /* A comment or empty line. */
2252 case NUL:
2253 case '\r':
2254 case '\n':
2255 case '#':
2256 eof = viminfo_readline(virp);
2257 break;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002258 case '|':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002259 eof = read_viminfo_barline(virp, got_encoding,
2260 forceit, writing);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002261 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 case '*': /* "*encoding=value" */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002263 got_encoding = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 eof = viminfo_encoding(virp);
2265 break;
2266 case '!': /* global variable */
2267#ifdef FEAT_EVAL
2268 eof = read_viminfo_varlist(virp, writing);
2269#else
2270 eof = viminfo_readline(virp);
2271#endif
2272 break;
2273 case '%': /* entry for buffer list */
2274 eof = read_viminfo_bufferlist(virp, writing);
2275 break;
2276 case '"':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002277 /* When registers are in bar lines skip the old style register
2278 * lines. */
2279 if (virp->vir_version < VIMINFO_VERSION_WITH_REGISTERS)
2280 eof = read_viminfo_register(virp, forceit);
2281 else
2282 do {
2283 eof = viminfo_readline(virp);
2284 } while (!eof && (virp->vir_line[0] == TAB
2285 || virp->vir_line[0] == '<'));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 break;
2287 case '/': /* Search string */
2288 case '&': /* Substitute search string */
2289 case '~': /* Last search string, followed by '/' or '&' */
2290 eof = read_viminfo_search_pattern(virp, forceit);
2291 break;
2292 case '$':
2293 eof = read_viminfo_sub_string(virp, forceit);
2294 break;
2295 case ':':
2296 case '?':
2297 case '=':
2298 case '@':
2299#ifdef FEAT_CMDHIST
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002300 /* When history is in bar lines skip the old style history
2301 * lines. */
2302 if (virp->vir_version < VIMINFO_VERSION_WITH_HISTORY)
2303 eof = read_viminfo_history(virp, writing);
2304 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002306 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 break;
2308 case '-':
2309 case '\'':
Bram Moolenaara641e1d2016-06-13 21:16:03 +02002310 /* When file marks are in bar lines skip the old style lines. */
2311 if (virp->vir_version < VIMINFO_VERSION_WITH_MARKS)
2312 eof = read_viminfo_filemark(virp, forceit);
2313 else
2314 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 break;
2316 default:
2317 if (viminfo_error("E575: ", _("Illegal starting char"),
2318 virp->vir_line))
2319 eof = TRUE;
2320 else
2321 eof = viminfo_readline(virp);
2322 break;
2323 }
2324 }
2325
2326#ifdef FEAT_CMDHIST
2327 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002328 if (!writing)
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02002329 finish_viminfo_history(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330#endif
2331
2332 /* Change file names to buffer numbers for fmarks. */
Bram Moolenaar29323592016-07-24 22:04:11 +02002333 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 fmarks_check_names(buf);
2335
2336 return eof;
2337}
2338
2339/*
2340 * Compare the 'encoding' value in the viminfo file with the current value of
2341 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2342 * conversion of text with iconv() in viminfo_readstring().
2343 */
2344 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002345viminfo_encoding(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346{
2347#ifdef FEAT_MBYTE
2348 char_u *p;
2349 int i;
2350
2351 if (get_viminfo_parameter('c') != 0)
2352 {
2353 p = vim_strchr(virp->vir_line, '=');
2354 if (p != NULL)
2355 {
2356 /* remove trailing newline */
2357 ++p;
2358 for (i = 0; vim_isprintc(p[i]); ++i)
2359 ;
2360 p[i] = NUL;
2361
2362 convert_setup(&virp->vir_conv, p, p_enc);
2363 }
2364 }
2365#endif
2366 return viminfo_readline(virp);
2367}
2368
2369/*
2370 * Read a line from the viminfo file.
2371 * Returns TRUE for end-of-file;
2372 */
2373 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002374viminfo_readline(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375{
2376 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2377}
2378
2379/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002380 * Check string read from viminfo file.
2381 * Remove '\n' at the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 * - replace CTRL-V CTRL-V with CTRL-V
2383 * - replace CTRL-V 'n' with '\n'
2384 *
2385 * Check for a long line as written by viminfo_writestring().
2386 *
2387 * Return the string in allocated memory (NULL when out of memory).
2388 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002390viminfo_readstring(
2391 vir_T *virp,
2392 int off, /* offset for virp->vir_line */
2393 int convert UNUSED) /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394{
2395 char_u *retval;
2396 char_u *s, *d;
2397 long len;
2398
2399 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2400 {
2401 len = atol((char *)virp->vir_line + off + 1);
2402 retval = lalloc(len, TRUE);
2403 if (retval == NULL)
2404 {
2405 /* Line too long? File messed up? Skip next line. */
2406 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2407 return NULL;
2408 }
2409 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2410 s = retval + 1; /* Skip the leading '<' */
2411 }
2412 else
2413 {
2414 retval = vim_strsave(virp->vir_line + off);
2415 if (retval == NULL)
2416 return NULL;
2417 s = retval;
2418 }
2419
2420 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2421 d = retval;
2422 while (*s != NUL && *s != '\n')
2423 {
2424 if (s[0] == Ctrl_V && s[1] != NUL)
2425 {
2426 if (s[1] == 'n')
2427 *d++ = '\n';
2428 else
2429 *d++ = Ctrl_V;
2430 s += 2;
2431 }
2432 else
2433 *d++ = *s++;
2434 }
2435 *d = NUL;
2436
2437#ifdef FEAT_MBYTE
2438 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2439 {
2440 d = string_convert(&virp->vir_conv, retval, NULL);
2441 if (d != NULL)
2442 {
2443 vim_free(retval);
2444 retval = d;
2445 }
2446 }
2447#endif
2448
2449 return retval;
2450}
2451
2452/*
2453 * write string to viminfo file
2454 * - replace CTRL-V with CTRL-V CTRL-V
2455 * - replace '\n' with CTRL-V 'n'
2456 * - add a '\n' at the end
2457 *
2458 * For a long line:
2459 * - write " CTRL-V <length> \n " in first line
2460 * - write " < <string> \n " in second line
2461 */
2462 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002463viminfo_writestring(FILE *fd, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464{
2465 int c;
2466 char_u *s;
2467 int len = 0;
2468
2469 for (s = p; *s != NUL; ++s)
2470 {
2471 if (*s == Ctrl_V || *s == '\n')
2472 ++len;
2473 ++len;
2474 }
2475
2476 /* If the string will be too long, write its length and put it in the next
2477 * line. Take into account that some room is needed for what comes before
2478 * the string (e.g., variable name). Add something to the length for the
2479 * '<', NL and trailing NUL. */
2480 if (len > LSIZE / 2)
2481 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2482
2483 while ((c = *p++) != NUL)
2484 {
2485 if (c == Ctrl_V || c == '\n')
2486 {
2487 putc(Ctrl_V, fd);
2488 if (c == '\n')
2489 c = 'n';
2490 }
2491 putc(c, fd);
2492 }
2493 putc('\n', fd);
2494}
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002495
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002496/*
2497 * Write a string in quotes that barline_parse() can read back.
2498 * Breaks the line in less than LSIZE pieces when needed.
2499 * Returns remaining characters in the line.
2500 */
2501 int
2502barline_writestring(FILE *fd, char_u *s, int remaining_start)
2503{
2504 char_u *p;
2505 int remaining = remaining_start;
2506 int len = 2;
2507
2508 /* Count the number of characters produced, including quotes. */
2509 for (p = s; *p != NUL; ++p)
2510 {
2511 if (*p == NL)
2512 len += 2;
2513 else if (*p == '"' || *p == '\\')
2514 len += 2;
2515 else
2516 ++len;
2517 }
Bram Moolenaar25709572016-08-26 20:41:16 +02002518 if (len > remaining - 2)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002519 {
2520 fprintf(fd, ">%d\n|<", len);
2521 remaining = LSIZE - 20;
2522 }
2523
2524 putc('"', fd);
2525 for (p = s; *p != NUL; ++p)
2526 {
2527 if (*p == NL)
2528 {
2529 putc('\\', fd);
2530 putc('n', fd);
2531 --remaining;
2532 }
2533 else if (*p == '"' || *p == '\\')
2534 {
2535 putc('\\', fd);
2536 putc(*p, fd);
2537 --remaining;
2538 }
2539 else
2540 putc(*p, fd);
2541 --remaining;
2542
2543 if (remaining < 3)
2544 {
2545 putc('\n', fd);
2546 putc('|', fd);
2547 putc('<', fd);
2548 /* Leave enough space for another continuation. */
2549 remaining = LSIZE - 20;
2550 }
2551 }
2552 putc('"', fd);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002553 return remaining - 2;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002554}
2555
2556/*
2557 * Parse a viminfo line starting with '|'.
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002558 * Add each decoded value to "values".
Bram Moolenaarecefe712016-06-20 12:50:17 +02002559 * Returns TRUE if the next line is to be read after using the parsed values.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002560 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002561 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002562barline_parse(vir_T *virp, char_u *text, garray_T *values)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002563{
2564 char_u *p = text;
2565 char_u *nextp = NULL;
Bram Moolenaarfdd82fe2016-06-06 21:38:44 +02002566 char_u *buf = NULL;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002567 bval_T *value;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002568 int i;
2569 int allocated = FALSE;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002570 int eof;
Bram Moolenaar01227092016-06-11 14:47:40 +02002571#ifdef FEAT_MBYTE
2572 char_u *sconv;
2573 int converted;
2574#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002575
2576 while (*p == ',')
2577 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002578 ++p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002579 if (ga_grow(values, 1) == FAIL)
2580 break;
2581 value = (bval_T *)(values->ga_data) + values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002582
2583 if (*p == '>')
2584 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002585 /* Need to read a continuation line. Put strings in allocated
2586 * memory, because virp->vir_line is overwritten. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002587 if (!allocated)
2588 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002589 for (i = 0; i < values->ga_len; ++i)
2590 {
2591 bval_T *vp = (bval_T *)(values->ga_data) + i;
2592
2593 if (vp->bv_type == BVAL_STRING && !vp->bv_allocated)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002594 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002595 vp->bv_string = vim_strnsave(vp->bv_string, vp->bv_len);
2596 vp->bv_allocated = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002597 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002598 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002599 allocated = TRUE;
2600 }
2601
2602 if (vim_isdigit(p[1]))
2603 {
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002604 size_t len;
2605 size_t todo;
2606 size_t n;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002607
2608 /* String value was split into lines that are each shorter
2609 * than LSIZE:
2610 * |{bartype},>{length of "{text}{text2}"}
2611 * |<"{text1}
2612 * |<{text2}",{value}
Bram Moolenaarecefe712016-06-20 12:50:17 +02002613 * Length includes the quotes.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002614 */
2615 ++p;
2616 len = getdigits(&p);
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002617 buf = alloc((int)(len + 1));
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002618 if (buf == NULL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002619 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002620 p = buf;
2621 for (todo = len; todo > 0; todo -= n)
2622 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002623 eof = viminfo_readline(virp);
2624 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002625 || virp->vir_line[1] != '<')
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002626 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002627 /* File was truncated or garbled. Read another line if
2628 * this one starts with '|'. */
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002629 vim_free(buf);
Bram Moolenaarecefe712016-06-20 12:50:17 +02002630 return eof || virp->vir_line[0] == '|';
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002631 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002632 /* Get length of text, excluding |< and NL chars. */
2633 n = STRLEN(virp->vir_line);
2634 while (n > 0 && (virp->vir_line[n - 1] == NL
2635 || virp->vir_line[n - 1] == CAR))
2636 --n;
2637 n -= 2;
2638 if (n > todo)
2639 {
2640 /* more values follow after the string */
2641 nextp = virp->vir_line + 2 + todo;
2642 n = todo;
2643 }
2644 mch_memmove(p, virp->vir_line + 2, n);
2645 p += n;
2646 }
2647 *p = NUL;
2648 p = buf;
2649 }
2650 else
2651 {
2652 /* Line ending in ">" continues in the next line:
2653 * |{bartype},{lots of values},>
2654 * |<{value},{value}
2655 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002656 eof = viminfo_readline(virp);
2657 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002658 || virp->vir_line[1] != '<')
Bram Moolenaarecefe712016-06-20 12:50:17 +02002659 /* File was truncated or garbled. Read another line if
2660 * this one starts with '|'. */
2661 return eof || virp->vir_line[0] == '|';
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002662 p = virp->vir_line + 2;
2663 }
2664 }
2665
2666 if (isdigit(*p))
2667 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002668 value->bv_type = BVAL_NR;
2669 value->bv_nr = getdigits(&p);
2670 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002671 }
2672 else if (*p == '"')
2673 {
2674 int len = 0;
2675 char_u *s = p;
2676
2677 /* Unescape special characters in-place. */
2678 ++p;
2679 while (*p != '"')
2680 {
2681 if (*p == NL || *p == NUL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002682 return TRUE; /* syntax error, drop the value */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002683 if (*p == '\\')
2684 {
2685 ++p;
2686 if (*p == 'n')
2687 s[len++] = '\n';
2688 else
2689 s[len++] = *p;
2690 ++p;
2691 }
2692 else
2693 s[len++] = *p++;
2694 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002695 ++p;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002696 s[len] = NUL;
2697
Bram Moolenaar01227092016-06-11 14:47:40 +02002698#ifdef FEAT_MBYTE
2699 converted = FALSE;
2700 if (virp->vir_conv.vc_type != CONV_NONE && *s != NUL)
2701 {
2702 sconv = string_convert(&virp->vir_conv, s, NULL);
2703 if (sconv != NULL)
2704 {
2705 if (s == buf)
2706 vim_free(s);
2707 s = sconv;
2708 buf = s;
2709 converted = TRUE;
2710 }
2711 }
2712#endif
2713 /* Need to copy in allocated memory if the string wasn't allocated
2714 * above and we did allocate before, thus vir_line may change. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002715 if (s != buf && allocated)
2716 s = vim_strsave(s);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002717 value->bv_string = s;
2718 value->bv_type = BVAL_STRING;
2719 value->bv_len = len;
2720 value->bv_allocated = allocated
Bram Moolenaar01227092016-06-11 14:47:40 +02002721#ifdef FEAT_MBYTE
2722 || converted
2723#endif
2724 ;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002725 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002726 if (nextp != NULL)
2727 {
2728 /* values following a long string */
2729 p = nextp;
2730 nextp = NULL;
2731 }
2732 }
2733 else if (*p == ',')
2734 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002735 value->bv_type = BVAL_EMPTY;
2736 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002737 }
2738 else
2739 break;
2740 }
Bram Moolenaarecefe712016-06-20 12:50:17 +02002741 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002742}
2743
2744 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002745read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002746{
2747 char_u *p = virp->vir_line + 1;
2748 int bartype;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002749 garray_T values;
2750 bval_T *vp;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002751 int i;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002752 int read_next = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002753
2754 /* The format is: |{bartype},{value},...
2755 * For a very long string:
2756 * |{bartype},>{length of "{text}{text2}"}
2757 * |<{text1}
2758 * |<{text2},{value}
2759 * For a long line not using a string
2760 * |{bartype},{lots of values},>
2761 * |<{value},{value}
2762 */
2763 if (*p == '<')
2764 {
2765 /* Continuation line of an unrecognized item. */
2766 if (writing)
2767 ga_add_string(&virp->vir_barlines, virp->vir_line);
2768 }
2769 else
2770 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002771 ga_init2(&values, sizeof(bval_T), 20);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002772 bartype = getdigits(&p);
2773 switch (bartype)
2774 {
2775 case BARTYPE_VERSION:
2776 /* Only use the version when it comes before the encoding.
2777 * If it comes later it was copied by a Vim version that
2778 * doesn't understand the version. */
2779 if (!got_encoding)
2780 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002781 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002782 vp = (bval_T *)values.ga_data;
2783 if (values.ga_len > 0 && vp->bv_type == BVAL_NR)
2784 virp->vir_version = vp->bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002785 }
2786 break;
2787
2788 case BARTYPE_HISTORY:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002789 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002790 handle_viminfo_history(&values, writing);
2791 break;
2792
2793 case BARTYPE_REGISTER:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002794 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002795 handle_viminfo_register(&values, force);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002796 break;
2797
Bram Moolenaar2d358992016-06-12 21:20:54 +02002798 case BARTYPE_MARK:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002799 read_next = barline_parse(virp, p, &values);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002800 handle_viminfo_mark(&values, force);
2801 break;
2802
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002803 default:
2804 /* copy unrecognized line (for future use) */
2805 if (writing)
2806 ga_add_string(&virp->vir_barlines, virp->vir_line);
2807 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002808 for (i = 0; i < values.ga_len; ++i)
2809 {
2810 vp = (bval_T *)values.ga_data + i;
2811 if (vp->bv_type == BVAL_STRING && vp->bv_allocated)
2812 vim_free(vp->bv_string);
2813 }
2814 ga_clear(&values);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002815 }
2816
Bram Moolenaarecefe712016-06-20 12:50:17 +02002817 if (read_next)
2818 return viminfo_readline(virp);
2819 return FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002820}
2821
2822 static void
2823write_viminfo_version(FILE *fp_out)
2824{
2825 fprintf(fp_out, "# Viminfo version\n|%d,%d\n\n",
2826 BARTYPE_VERSION, VIMINFO_VERSION);
2827}
2828
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002829 static void
2830write_viminfo_barlines(vir_T *virp, FILE *fp_out)
2831{
2832 int i;
2833 garray_T *gap = &virp->vir_barlines;
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002834 int seen_useful = FALSE;
2835 char *line;
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002836
2837 if (gap->ga_len > 0)
2838 {
2839 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out);
2840
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002841 /* Skip over continuation lines until seeing a useful line. */
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002842 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002843 {
2844 line = ((char **)(gap->ga_data))[i];
2845 if (seen_useful || line[1] != '<')
2846 {
2847 fputs(line, fp_out);
2848 seen_useful = TRUE;
2849 }
2850 }
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002851 }
2852}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853#endif /* FEAT_VIMINFO */
2854
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002855/*
2856 * Return the current time in seconds. Calls time(), unless test_settime()
2857 * was used.
2858 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02002859 time_T
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002860vim_time(void)
2861{
2862# ifdef FEAT_EVAL
2863 return time_for_testing == 0 ? time(NULL) : time_for_testing;
2864# else
2865 return time(NULL);
2866# endif
2867}
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002868
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869/*
2870 * Implementation of ":fixdel", also used by get_stty().
2871 * <BS> resulting <Del>
2872 * ^? ^H
2873 * not ^? ^?
2874 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002876do_fixdel(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877{
2878 char_u *p;
2879
2880 p = find_termcode((char_u *)"kb");
2881 add_termcode((char_u *)"kD", p != NULL
2882 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2883}
2884
2885 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002886print_line_no_prefix(
2887 linenr_T lnum,
2888 int use_number,
2889 int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002891 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892
2893 if (curwin->w_p_nu || use_number)
2894 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002895 vim_snprintf((char *)numbuf, sizeof(numbuf),
2896 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar8820b482017-03-16 17:23:31 +01002897 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); /* Highlight line nrs */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002899 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900}
2901
2902/*
2903 * Print a text line. Also in silent mode ("ex -s").
2904 */
2905 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002906print_line(linenr_T lnum, int use_number, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907{
2908 int save_silent = silent_mode;
2909
Bram Moolenaard29459b2016-08-26 22:29:11 +02002910 /* apply :filter /pat/ */
2911 if (message_filtered(ml_get(lnum)))
2912 return;
2913
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002915 silent_mode = FALSE;
2916 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
2917 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 if (save_silent)
2919 {
2920 msg_putchar('\n');
2921 cursor_on(); /* msg_start() switches it off */
2922 out_flush();
2923 silent_mode = save_silent;
2924 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00002925 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926}
2927
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002928 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002929rename_buffer(char_u *new_fname)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002930{
2931 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02002932 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002933
Bram Moolenaar7e283842013-05-30 11:43:15 +02002934#ifdef FEAT_AUTOCMD
2935 buf = curbuf;
2936 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002937 /* buffer changed, don't change name now */
2938 if (buf != curbuf)
2939 return FAIL;
2940# ifdef FEAT_EVAL
2941 if (aborting()) /* autocmds may abort script processing */
2942 return FAIL;
2943# endif
2944#endif
2945 /*
2946 * The name of the current buffer will be changed.
2947 * A new (unlisted) buffer entry needs to be made to hold the old file
2948 * name, which will become the alternate file name.
2949 * But don't set the alternate file name if the buffer didn't have a
2950 * name.
2951 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02002952 fname = curbuf->b_ffname;
2953 sfname = curbuf->b_sfname;
2954 xfname = curbuf->b_fname;
2955 curbuf->b_ffname = NULL;
2956 curbuf->b_sfname = NULL;
2957 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002958 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02002959 curbuf->b_ffname = fname;
2960 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002961 return FAIL;
2962 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02002963 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002964 if (xfname != NULL && *xfname != NUL)
2965 {
2966 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
2967 if (buf != NULL && !cmdmod.keepalt)
2968 curwin->w_alt_fnum = buf->b_fnum;
2969 }
2970 vim_free(fname);
2971 vim_free(sfname);
2972#ifdef FEAT_AUTOCMD
Bram Moolenaar7e283842013-05-30 11:43:15 +02002973 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002974#endif
2975 /* Change directories when the 'acd' option is set. */
2976 DO_AUTOCHDIR
2977 return OK;
2978}
2979
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980/*
2981 * ":file[!] [fname]".
2982 */
2983 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002984ex_file(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002986 /* ":0file" removes the file name. Check for illegal uses ":3file",
2987 * "0file name", etc. */
2988 if (eap->addr_count > 0
2989 && (*eap->arg != NUL
2990 || eap->line2 > 0
2991 || eap->addr_count > 1))
2992 {
2993 EMSG(_(e_invarg));
2994 return;
2995 }
2996
2997 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002999 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 }
3002 /* print full file name if :cd used */
Bram Moolenaar426dd022016-03-15 15:09:29 +01003003 if (!shortmess(SHM_FILEINFO))
3004 fileinfo(FALSE, FALSE, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005}
3006
3007/*
3008 * ":update".
3009 */
3010 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003011ex_update(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012{
3013 if (curbufIsChanged())
3014 (void)do_write(eap);
3015}
3016
3017/*
3018 * ":write" and ":saveas".
3019 */
3020 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003021ex_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022{
3023 if (eap->usefilter) /* input lines to shell command */
3024 do_bang(1, eap, FALSE, TRUE, FALSE);
3025 else
3026 (void)do_write(eap);
3027}
3028
3029/*
3030 * write current buffer to file 'eap->arg'
3031 * if 'eap->append' is TRUE, append to the file
3032 *
3033 * if *eap->arg == NUL write to current file
3034 *
3035 * return FAIL for failure, OK otherwise
3036 */
3037 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003038do_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039{
3040 int other;
3041 char_u *fname = NULL; /* init to shut up gcc */
3042 char_u *ffname;
3043 int retval = FAIL;
3044 char_u *free_fname = NULL;
3045#ifdef FEAT_BROWSE
3046 char_u *browse_file = NULL;
3047#endif
3048 buf_T *alt_buf = NULL;
Bram Moolenaar5c719942016-07-09 23:40:45 +02003049 int name_was_missing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050
3051 if (not_writing()) /* check 'write' option */
3052 return FAIL;
3053
3054 ffname = eap->arg;
3055#ifdef FEAT_BROWSE
3056 if (cmdmod.browse)
3057 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003058 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 NULL, NULL, NULL, curbuf);
3060 if (browse_file == NULL)
3061 goto theend;
3062 ffname = browse_file;
3063 }
3064#endif
3065 if (*ffname == NUL)
3066 {
3067 if (eap->cmdidx == CMD_saveas)
3068 {
3069 EMSG(_(e_argreq));
3070 goto theend;
3071 }
3072 other = FALSE;
3073 }
3074 else
3075 {
3076 fname = ffname;
3077 free_fname = fix_fname(ffname);
3078 /*
3079 * When out-of-memory, keep unexpanded file name, because we MUST be
3080 * able to write the file in this situation.
3081 */
3082 if (free_fname != NULL)
3083 ffname = free_fname;
3084 other = otherfile(ffname);
3085 }
3086
3087 /*
3088 * If we have a new file, put its name in the list of alternate file names.
3089 */
3090 if (other)
3091 {
3092 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
3093 || eap->cmdidx == CMD_saveas)
3094 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
3095 else
3096 alt_buf = buflist_findname(ffname);
3097 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
3098 {
3099 /* Overwriting a file that is loaded in another buffer is not a
3100 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00003101 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 goto theend;
3103 }
3104 }
3105
3106 /*
3107 * Writing to the current file is not allowed in readonly mode
3108 * and a file name is required.
3109 * "nofile" and "nowrite" buffers cannot be written implicitly either.
3110 */
3111 if (!other && (
3112#ifdef FEAT_QUICKFIX
3113 bt_dontwrite_msg(curbuf) ||
3114#endif
3115 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
3116 goto theend;
3117
3118 if (!other)
3119 {
3120 ffname = curbuf->b_ffname;
3121 fname = curbuf->b_fname;
3122 /*
3123 * Not writing the whole file is only allowed with '!'.
3124 */
3125 if ( (eap->line1 != 1
3126 || eap->line2 != curbuf->b_ml.ml_line_count)
3127 && !eap->forceit
3128 && !eap->append
3129 && !p_wa)
3130 {
3131#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3132 if (p_confirm || cmdmod.confirm)
3133 {
3134 if (vim_dialog_yesno(VIM_QUESTION, NULL,
3135 (char_u *)_("Write partial file?"), 2) != VIM_YES)
3136 goto theend;
3137 eap->forceit = TRUE;
3138 }
3139 else
3140#endif
3141 {
3142 EMSG(_("E140: Use ! to write partial buffer"));
3143 goto theend;
3144 }
3145 }
3146 }
3147
3148 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
3149 {
3150 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
3151 {
3152#ifdef FEAT_AUTOCMD
3153 buf_T *was_curbuf = curbuf;
3154
3155 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003156 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157# ifdef FEAT_EVAL
3158 if (curbuf != was_curbuf || aborting())
3159# else
3160 if (curbuf != was_curbuf)
3161# endif
3162 {
3163 /* buffer changed, don't change name now */
3164 retval = FAIL;
3165 goto theend;
3166 }
3167#endif
3168 /* Exchange the file names for the current and the alternate
3169 * buffer. This makes it look like we are now editing the buffer
3170 * under the new name. Must be done before buf_write(), because
3171 * if there is no file name and 'cpo' contains 'F', it will set
3172 * the file name. */
3173 fname = alt_buf->b_fname;
3174 alt_buf->b_fname = curbuf->b_fname;
3175 curbuf->b_fname = fname;
3176 fname = alt_buf->b_ffname;
3177 alt_buf->b_ffname = curbuf->b_ffname;
3178 curbuf->b_ffname = fname;
3179 fname = alt_buf->b_sfname;
3180 alt_buf->b_sfname = curbuf->b_sfname;
3181 curbuf->b_sfname = fname;
3182 buf_name_changed(curbuf);
3183#ifdef FEAT_AUTOCMD
3184 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003185 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 if (!alt_buf->b_p_bl)
3187 {
3188 alt_buf->b_p_bl = TRUE;
3189 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
3190 }
3191# ifdef FEAT_EVAL
3192 if (curbuf != was_curbuf || aborting())
3193# else
3194 if (curbuf != was_curbuf)
3195# endif
3196 {
3197 /* buffer changed, don't write the file */
3198 retval = FAIL;
3199 goto theend;
3200 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003201
3202 /* If 'filetype' was empty try detecting it now. */
3203 if (*curbuf->b_p_ft == NUL)
3204 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003205 if (au_has_group((char_u *)"filetypedetect"))
3206 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
Bram Moolenaar1610d052016-06-09 22:53:01 +02003207 TRUE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00003208 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003209 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01003210
3211 /* Autocommands may have changed buffer names, esp. when
3212 * 'autochdir' is set. */
3213 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214#endif
3215 }
3216
Bram Moolenaar5c719942016-07-09 23:40:45 +02003217 name_was_missing = curbuf->b_ffname == NULL;
3218
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
3220 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003221
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003222 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003223 if (eap->cmdidx == CMD_saveas)
3224 {
3225 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00003226 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003227 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003228#ifdef FEAT_WINDOWS
3229 redraw_tabline = TRUE;
3230#endif
3231 }
Bram Moolenaar5c719942016-07-09 23:40:45 +02003232 }
3233
3234 /* Change directories when the 'acd' option is set and the file name
3235 * got changed or set. */
3236 if (eap->cmdidx == CMD_saveas || name_was_missing)
3237 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003238 DO_AUTOCHDIR
3239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 }
3241
3242theend:
3243#ifdef FEAT_BROWSE
3244 vim_free(browse_file);
3245#endif
3246 vim_free(free_fname);
3247 return retval;
3248}
3249
3250/*
3251 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
3252 * BF_NEW or BF_READERR, check for overwriting current file.
3253 * May set eap->forceit if a dialog says it's OK to overwrite.
3254 * Return OK if it's OK, FAIL if it is not.
3255 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02003256 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003257check_overwrite(
3258 exarg_T *eap,
3259 buf_T *buf,
3260 char_u *fname, /* file name to be used (can differ from
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 buf->ffname) */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003262 char_u *ffname, /* full path version of fname */
3263 int other) /* writing under other name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264{
3265 /*
3266 * write to other file or b_flags set or not writing the whole file:
3267 * overwriting only allowed with '!'
3268 */
3269 if ( (other
3270 || (buf->b_flags & BF_NOTEDITED)
3271 || ((buf->b_flags & BF_NEW)
3272 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
3273 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00003275#ifdef FEAT_QUICKFIX
3276 && !bt_nofile(buf)
3277#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 && vim_fexists(ffname))
3279 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003280 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003282#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00003283 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003284 if (mch_isdir(ffname))
3285 {
3286 EMSG2(_(e_isadir2), ffname);
3287 return FAIL;
3288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289#endif
3290#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003291 if (p_confirm || cmdmod.confirm)
3292 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003293 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003295 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
3296 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
3297 return FAIL;
3298 eap->forceit = TRUE;
3299 }
3300 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003302 {
3303 EMSG(_(e_exists));
3304 return FAIL;
3305 }
3306 }
3307
3308 /* For ":w! filename" check that no swap file exists for "filename". */
3309 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003311 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003312 char_u *p;
3313 int r;
3314 char_u *swapname;
3315
3316 /* We only try the first entry in 'directory', without checking if
3317 * it's writable. If the "." directory is not writable the write
3318 * will probably fail anyway.
3319 * Use 'shortname' of the current buffer, since there is no buffer
3320 * for the written file. */
3321 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02003322 {
3323 dir = alloc(5);
3324 if (dir == NULL)
3325 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003326 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003327 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003328 else
3329 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003330 dir = alloc(MAXPATHL);
3331 if (dir == NULL)
3332 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003333 p = p_dir;
3334 copy_option_part(&p, dir, MAXPATHL, ",");
3335 }
3336 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003337 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003338 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003339 if (r)
3340 {
3341#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3342 if (p_confirm || cmdmod.confirm)
3343 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003344 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003345
3346 dialog_msg(buff,
3347 _("Swap file \"%s\" exists, overwrite anyway?"),
3348 swapname);
3349 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
3350 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003351 {
3352 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003353 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003354 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003355 eap->forceit = TRUE;
3356 }
3357 else
3358#endif
3359 {
3360 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
3361 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003362 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003363 return FAIL;
3364 }
3365 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003366 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 }
3368 }
3369 return OK;
3370}
3371
3372/*
3373 * Handle ":wnext", ":wNext" and ":wprevious" commands.
3374 */
3375 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003376ex_wnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377{
3378 int i;
3379
3380 if (eap->cmd[1] == 'n')
3381 i = curwin->w_arg_idx + (int)eap->line2;
3382 else
3383 i = curwin->w_arg_idx - (int)eap->line2;
3384 eap->line1 = 1;
3385 eap->line2 = curbuf->b_ml.ml_line_count;
3386 if (do_write(eap) != FAIL)
3387 do_argfile(eap, i);
3388}
3389
3390/*
3391 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
3392 */
3393 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003394do_wqall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395{
3396 buf_T *buf;
3397 int error = 0;
3398 int save_forceit = eap->forceit;
3399
3400 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
3401 exiting = TRUE;
3402
Bram Moolenaar29323592016-07-24 22:04:11 +02003403 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 {
3405 if (bufIsChanged(buf))
3406 {
3407 /*
3408 * Check if there is a reason the buffer cannot be written:
3409 * 1. if the 'write' option is set
3410 * 2. if there is no file name (even after browsing)
3411 * 3. if the 'readonly' is set (even after a dialog)
3412 * 4. if overwriting is allowed (even after a dialog)
3413 */
3414 if (not_writing())
3415 {
3416 ++error;
3417 break;
3418 }
3419#ifdef FEAT_BROWSE
3420 /* ":browse wall": ask for file name if there isn't one */
3421 if (buf->b_ffname == NULL && cmdmod.browse)
3422 browse_save_fname(buf);
3423#endif
3424 if (buf->b_ffname == NULL)
3425 {
3426 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
3427 ++error;
3428 }
3429 else if (check_readonly(&eap->forceit, buf)
3430 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3431 FALSE) == FAIL)
3432 {
3433 ++error;
3434 }
3435 else
3436 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003437#ifdef FEAT_AUTOCMD
3438 bufref_T bufref;
3439
3440 set_bufref(&bufref, buf);
3441#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 if (buf_write_all(buf, eap->forceit) == FAIL)
3443 ++error;
3444#ifdef FEAT_AUTOCMD
3445 /* an autocommand may have deleted the buffer */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003446 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 buf = firstbuf;
3448#endif
3449 }
3450 eap->forceit = save_forceit; /* check_overwrite() may set it */
3451 }
3452 }
3453 if (exiting)
3454 {
3455 if (!error)
3456 getout(0); /* exit Vim */
3457 not_exiting();
3458 }
3459}
3460
3461/*
3462 * Check the 'write' option.
3463 * Return TRUE and give a message when it's not st.
3464 */
3465 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003466not_writing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467{
3468 if (p_write)
3469 return FALSE;
3470 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
3471 return TRUE;
3472}
3473
3474/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003475 * Check if a buffer is read-only (either 'readonly' option is set or file is
3476 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3477 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 */
3479 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003480check_readonly(int *forceit, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003482 stat_T st;
Bram Moolenaar5386a122007-06-28 20:02:32 +00003483
3484 /* Handle a file being readonly when the 'readonly' option is set or when
3485 * the file exists and permissions are read-only.
3486 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3487 * important for device checks but not here. */
3488 if (!*forceit && (buf->b_p_ro
3489 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3490 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 {
3492#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3493 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3494 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003495 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496
Bram Moolenaar5386a122007-06-28 20:02:32 +00003497 if (buf->b_p_ro)
3498 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3499 buf->b_fname);
3500 else
3501 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 +00003502 buf->b_fname);
3503
3504 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3505 {
3506 /* Set forceit, to force the writing of a readonly file */
3507 *forceit = TRUE;
3508 return FALSE;
3509 }
3510 else
3511 return TRUE;
3512 }
3513 else
3514#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003515 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003517 else
3518 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3519 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 return TRUE;
3521 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003522
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 return FALSE;
3524}
3525
3526/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003527 * Try to abandon current file and edit a new or existing file.
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003528 * "fnum" is the number of the file, if zero use ffname/sfname.
3529 * "lnum" is the line number for the cursor in the new file (if non-zero).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 *
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003531 * Return:
3532 * GETFILE_ERROR for "normal" error,
3533 * GETFILE_NOT_WRITTEN for "not written" error,
3534 * GETFILE_SAME_FILE for success
3535 * GETFILE_OPEN_OTHER for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 */
3537 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003538getfile(
3539 int fnum,
3540 char_u *ffname,
3541 char_u *sfname,
3542 int setpm,
3543 linenr_T lnum,
3544 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545{
3546 int other;
3547 int retval;
3548 char_u *free_me = NULL;
3549
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003550 if (text_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003551 return GETFILE_ERROR;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003552#ifdef FEAT_AUTOCMD
3553 if (curbuf_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003554 return GETFILE_ERROR;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556
3557 if (fnum == 0)
3558 {
3559 /* make ffname full path, set sfname */
3560 fname_expand(curbuf, &ffname, &sfname);
3561 other = otherfile(ffname);
3562 free_me = ffname; /* has been allocated, free() later */
3563 }
3564 else
3565 other = (fnum != curbuf->b_fnum);
3566
3567 if (other)
3568 ++no_wait_return; /* don't wait for autowrite message */
Bram Moolenaareb44a682017-08-03 22:44:55 +02003569 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3571 {
3572#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3573 if (p_confirm && p_write)
3574 dialog_changed(curbuf, FALSE);
3575 if (curbufIsChanged())
3576#endif
3577 {
3578 if (other)
3579 --no_wait_return;
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02003580 no_write_message();
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003581 retval = GETFILE_NOT_WRITTEN; /* file has been changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 goto theend;
3583 }
3584 }
3585 if (other)
3586 --no_wait_return;
3587 if (setpm)
3588 setpcmark();
3589 if (!other)
3590 {
3591 if (lnum != 0)
3592 curwin->w_cursor.lnum = lnum;
3593 check_cursor_lnum();
3594 beginline(BL_SOL | BL_FIX);
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003595 retval = GETFILE_SAME_FILE; /* it's in the same file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 }
3597 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaareb44a682017-08-03 22:44:55 +02003598 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003599 curwin) == OK)
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003600 retval = GETFILE_OPEN_OTHER; /* opened another file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 else
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003602 retval = GETFILE_ERROR; /* error encountered */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603
3604theend:
3605 vim_free(free_me);
3606 return retval;
3607}
3608
3609/*
3610 * start editing a new file
3611 *
3612 * fnum: file number; if zero use ffname/sfname
3613 * ffname: the file name
3614 * - full path if sfname used,
3615 * - any file name if sfname is NULL
3616 * - empty string to re-edit with the same file name (but may be
3617 * in a different directory)
3618 * - NULL to start an empty buffer
3619 * sfname: the short file name (or NULL)
3620 * eap: contains the command to be executed after loading the file and
3621 * forced 'ff' and 'fenc'
3622 * newlnum: if > 0: put cursor on this line number (if possible)
3623 * if ECMD_LASTL: use last position in loaded file
3624 * if ECMD_LAST: use last position in all files
3625 * if ECMD_ONE: use first line
3626 * flags:
3627 * ECMD_HIDE: if TRUE don't free the current buffer
3628 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3629 * ECMD_OLDBUF: use existing buffer if it exists
3630 * ECMD_FORCEIT: ! used for Ex command
3631 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003632 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003633 * window, NULL when splitting the window first. When not NULL info
3634 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 *
3636 * return FAIL for failure, OK otherwise
3637 */
3638 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003639do_ecmd(
3640 int fnum,
3641 char_u *ffname,
3642 char_u *sfname,
3643 exarg_T *eap, /* can be NULL! */
3644 linenr_T newlnum,
3645 int flags,
3646 win_T *oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647{
3648 int other_file; /* TRUE if editing another file */
3649 int oldbuf; /* TRUE if using existing buffer */
3650#ifdef FEAT_AUTOCMD
3651 int auto_buf = FALSE; /* TRUE if autocommands brought us
3652 into the buffer unexpectedly */
3653 char_u *new_name = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003654 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655#endif
3656 buf_T *buf;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003657 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003659 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660#endif
3661 char_u *free_fname = NULL;
3662#ifdef FEAT_BROWSE
3663 char_u *browse_file = NULL;
3664#endif
3665 int retval = FAIL;
3666 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003667 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 linenr_T topline = 0;
3669 int newcol = -1;
3670 int solcol = -1;
3671 pos_T *pos;
3672#ifdef FEAT_SUN_WORKSHOP
3673 char_u *cp;
3674#endif
3675 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003676#ifdef FEAT_SPELL
3677 int did_get_winopts = FALSE;
3678#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003679 int readfile_flags = 0;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003680 int did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681
3682 if (eap != NULL)
3683 command = eap->do_ecmd_cmd;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003684#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3685 set_bufref(&old_curbuf, curbuf);
3686#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687
3688 if (fnum != 0)
3689 {
3690 if (fnum == curbuf->b_fnum) /* file is already being edited */
3691 return OK; /* nothing to do */
3692 other_file = TRUE;
3693 }
3694 else
3695 {
3696#ifdef FEAT_BROWSE
3697 if (cmdmod.browse)
3698 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003699# ifdef FEAT_AUTOCMD
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003700 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003701# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003702 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003703# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003704 au_has_group((char_u *)"FileExplorer"))
3705 {
3706 /* No browsing supported but we do have the file explorer:
3707 * Edit the directory. */
3708 if (ffname == NULL || !mch_isdir(ffname))
3709 ffname = (char_u *)".";
3710 }
3711 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003712# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003713 {
3714 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003716 if (browse_file == NULL)
3717 goto theend;
3718 ffname = browse_file;
3719 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 }
3721#endif
3722 /* if no short name given, use ffname for short name */
3723 if (sfname == NULL)
3724 sfname = ffname;
3725#ifdef USE_FNAME_CASE
3726# ifdef USE_LONG_FNAME
3727 if (USE_LONG_FNAME)
3728# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003729 if (sfname != NULL)
3730 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731#endif
3732
3733#ifdef FEAT_LISTCMDS
3734 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3735 goto theend;
3736#endif
3737
3738 if (ffname == NULL)
3739 other_file = TRUE;
3740 /* there is no file name */
3741 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3742 other_file = FALSE;
3743 else
3744 {
3745 if (*ffname == NUL) /* re-edit with same file name */
3746 {
3747 ffname = curbuf->b_ffname;
3748 sfname = curbuf->b_fname;
3749 }
3750 free_fname = fix_fname(ffname); /* may expand to full path name */
3751 if (free_fname != NULL)
3752 ffname = free_fname;
3753 other_file = otherfile(ffname);
3754#ifdef FEAT_SUN_WORKSHOP
3755 if (usingSunWorkShop && p_acd
3756 && (cp = vim_strrchr(sfname, '/')) != NULL)
3757 sfname = ++cp;
3758#endif
3759 }
3760 }
3761
3762 /*
3763 * if the file was changed we may not be allowed to abandon it
3764 * - if we are going to re-edit the same file
3765 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3766 */
3767 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3768 || (curbuf->b_nwindows == 1
3769 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003770 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3771 | (other_file ? 0 : CCGD_MULTWIN)
3772 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3773 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 {
3775 if (fnum == 0 && other_file && ffname != NULL)
3776 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3777 goto theend;
3778 }
3779
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 /*
3781 * End Visual mode before switching to another buffer, so the text can be
3782 * copied into the GUI selection buffer.
3783 */
3784 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003786#ifdef FEAT_AUTOCMD
3787 if ((command != NULL || newlnum > (linenr_T)0)
3788 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3789 {
3790 int len;
3791 char_u *p;
3792
3793 /* Set v:swapcommand for the SwapExists autocommands. */
3794 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003795 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003796 else
3797 len = 30;
3798 p = alloc((unsigned)len);
3799 if (p != NULL)
3800 {
3801 if (command != NULL)
3802 vim_snprintf((char *)p, len, ":%s\r", command);
3803 else
3804 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3805 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3806 did_set_swapcommand = TRUE;
3807 vim_free(p);
3808 }
3809 }
3810#endif
3811
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 /*
3813 * If we are starting to edit another file, open a (new) buffer.
3814 * Otherwise we re-use the current buffer.
3815 */
3816 if (other_file)
3817 {
3818#ifdef FEAT_LISTCMDS
3819 if (!(flags & ECMD_ADDBUF))
3820#endif
3821 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003822 if (!cmdmod.keepalt)
3823 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003824 if (oldwin != NULL)
3825 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 }
3827
3828 if (fnum)
3829 buf = buflist_findnr(fnum);
3830 else
3831 {
3832#ifdef FEAT_LISTCMDS
3833 if (flags & ECMD_ADDBUF)
3834 {
3835 linenr_T tlnum = 1L;
3836
3837 if (command != NULL)
3838 {
3839 tlnum = atol((char *)command);
3840 if (tlnum <= 0)
3841 tlnum = 1L;
3842 }
3843 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3844 goto theend;
3845 }
3846#endif
3847 buf = buflist_new(ffname, sfname, 0L,
3848 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003849#ifdef FEAT_AUTOCMD
3850 /* autocommands may change curwin and curbuf */
3851 if (oldwin != NULL)
3852 oldwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003853 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003854#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 }
3856 if (buf == NULL)
3857 goto theend;
3858 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3859 {
3860 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 }
3862 else /* existing memfile */
3863 {
3864 oldbuf = TRUE;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003865 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 (void)buf_check_timestamp(buf, FALSE);
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003867 /* Check if autocommands made the buffer invalid or changed the
3868 * current buffer. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003869 if (!bufref_valid(&bufref)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870#ifdef FEAT_AUTOCMD
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003871 || curbuf != old_curbuf.br_buf
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872#endif
3873 )
3874 goto theend;
3875#ifdef FEAT_EVAL
3876 if (aborting()) /* autocmds may abort script processing */
3877 goto theend;
3878#endif
3879 }
3880
3881 /* May jump to last used line number for a loaded buffer or when asked
3882 * for explicitly */
3883 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3884 {
3885 pos = buflist_findfpos(buf);
3886 newlnum = pos->lnum;
3887 solcol = pos->col;
3888 }
3889
3890 /*
3891 * Make the (new) buffer the one used by the current window.
3892 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3893 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003894 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 */
3896 if (buf != curbuf)
3897 {
3898#ifdef FEAT_AUTOCMD
3899 /*
3900 * Be careful: The autocommands may delete any buffer and change
3901 * the current buffer.
3902 * - If the buffer we are going to edit is deleted, give up.
3903 * - If the current buffer is deleted, prefer to load the new
3904 * buffer when loading a buffer is required. This avoids
3905 * loading another buffer which then must be closed again.
3906 * - If we ended up in the new buffer already, need to skip a few
3907 * things, set auto_buf.
3908 */
3909 if (buf->b_fname != NULL)
3910 new_name = vim_strsave(buf->b_fname);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003911 set_bufref(&au_new_curbuf, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003913 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003915 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 delbuf_msg(new_name); /* frees new_name */
3917 goto theend;
3918 }
3919# ifdef FEAT_EVAL
3920 if (aborting()) /* autocmds may abort script processing */
3921 {
3922 vim_free(new_name);
3923 goto theend;
3924 }
3925# endif
3926 if (buf == curbuf) /* already in new buffer */
3927 auto_buf = TRUE;
3928 else
3929 {
Bram Moolenaar5a497892016-09-03 16:29:04 +02003930 win_T *the_curwin = curwin;
3931
3932 /* Set the w_closing flag to avoid that autocommands close the
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003933 * window. And set b_locked for the same reason. */
Bram Moolenaar5a497892016-09-03 16:29:04 +02003934 the_curwin->w_closing = TRUE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003935 ++buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +02003936
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003937 if (curbuf == old_curbuf.br_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938#endif
3939 buf_copy_options(buf, BCO_ENTER);
3940
Bram Moolenaar5a497892016-09-03 16:29:04 +02003941 /* Close the link to the current buffer. This will set
Bram Moolenaaraeac9002016-09-06 22:15:08 +02003942 * oldwin->w_buffer to NULL. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003943 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003944 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003945 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946
3947#ifdef FEAT_AUTOCMD
Bram Moolenaar5a497892016-09-03 16:29:04 +02003948 the_curwin->w_closing = FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003949 --buf->b_locked;
Bram Moolenaarfc573802011-12-30 15:01:59 +01003950
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951# ifdef FEAT_EVAL
Bram Moolenaar5a497892016-09-03 16:29:04 +02003952 /* autocmds may abort script processing */
3953 if (aborting() && curwin->w_buffer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 {
3955 vim_free(new_name);
3956 goto theend;
3957 }
3958# endif
3959 /* Be careful again, like above. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003960 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003962 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 delbuf_msg(new_name); /* frees new_name */
3964 goto theend;
3965 }
3966 if (buf == curbuf) /* already in new buffer */
3967 auto_buf = TRUE;
3968 else
3969#endif
3970 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02003971#ifdef FEAT_SYN_HL
3972 /*
3973 * <VN> We could instead free the synblock
3974 * and re-attach to buffer, perhaps.
3975 */
Bram Moolenaarf1d13472017-07-11 18:28:46 +02003976 if (curwin->w_buffer == NULL
3977 || curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02003978 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003979#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 curwin->w_buffer = buf;
3981 curbuf = buf;
3982 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003983
3984 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
3985 if (!oldbuf && eap != NULL)
3986 {
3987 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003988#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003989 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003990#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003991 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 }
3993
3994 /* May get the window options from the last time this buffer
3995 * was in this window (or another window). If not used
3996 * before, reset the local window options to the global
3997 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00003998 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003999#ifdef FEAT_SPELL
4000 did_get_winopts = TRUE;
4001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002
4003#ifdef FEAT_AUTOCMD
4004 }
4005 vim_free(new_name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004006 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004007 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008#endif
4009 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010
4011 curwin->w_pcmark.lnum = 1;
4012 curwin->w_pcmark.col = 0;
4013 }
4014 else /* !other_file */
4015 {
4016 if (
4017#ifdef FEAT_LISTCMDS
4018 (flags & ECMD_ADDBUF) ||
4019#endif
4020 check_fname() == FAIL)
4021 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01004022
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 oldbuf = (flags & ECMD_OLDBUF);
4024 }
4025
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004026 /* Don't redraw until the cursor is in the right line, otherwise
4027 * autocommands may cause ml_get errors. */
4028 ++RedrawingDisabled;
4029 did_inc_redrawing_disabled = TRUE;
4030
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004031#ifdef FEAT_AUTOCMD
4032 buf = curbuf;
4033#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 if ((flags & ECMD_SET_HELP) || keep_help_flag)
4035 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004036 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 }
4038 else
4039 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 /* Don't make a buffer listed if it's a help buffer. Useful when
4041 * using CTRL-O to go back to a help file. */
4042 if (!curbuf->b_help)
4043 set_buflisted(TRUE);
4044 }
4045
4046#ifdef FEAT_AUTOCMD
4047 /* If autocommands change buffers under our fingers, forget about
4048 * editing the file. */
4049 if (buf != curbuf)
4050 goto theend;
4051# ifdef FEAT_EVAL
4052 if (aborting()) /* autocmds may abort script processing */
4053 goto theend;
4054# endif
4055
4056 /* Since we are starting to edit a file, consider the filetype to be
4057 * unset. Helps for when an autocommand changes files and expects syntax
4058 * highlighting to work in the other file. */
4059 did_filetype = FALSE;
4060#endif
4061
4062/*
4063 * other_file oldbuf
4064 * FALSE FALSE re-edit same file, buffer is re-used
4065 * FALSE TRUE re-edit same file, nothing changes
4066 * TRUE FALSE start editing new file, new buffer
4067 * TRUE TRUE start editing in existing buffer (nothing to do)
4068 */
4069 if (!other_file && !oldbuf) /* re-use the buffer */
4070 {
4071 set_last_cursor(curwin); /* may set b_last_cursor */
4072 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
4073 {
4074 newlnum = curwin->w_cursor.lnum;
4075 solcol = curwin->w_cursor.col;
4076 }
4077#ifdef FEAT_AUTOCMD
4078 buf = curbuf;
4079 if (buf->b_fname != NULL)
4080 new_name = vim_strsave(buf->b_fname);
4081 else
4082 new_name = NULL;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004083 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004085 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
4086 {
4087 /* Save all the text, so that the reload can be undone.
4088 * Sync first so that this is a separate undo-able action. */
4089 u_sync(FALSE);
4090 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
4091 == FAIL)
Bram Moolenaar1e225822016-07-30 21:48:59 +02004092 {
Bram Moolenaarfc1f2012016-07-30 23:18:47 +02004093#ifdef FEAT_AUTOCMD
Bram Moolenaar1e225822016-07-30 21:48:59 +02004094 vim_free(new_name);
Bram Moolenaarfc1f2012016-07-30 23:18:47 +02004095#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004096 goto theend;
Bram Moolenaar1e225822016-07-30 21:48:59 +02004097 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004098 u_unchanged(curbuf);
4099 buf_freeall(curbuf, BFA_KEEP_UNDO);
4100
4101 /* tell readfile() not to clear or reload undo info */
4102 readfile_flags = READ_KEEP_UNDO;
4103 }
4104 else
4105 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106#ifdef FEAT_AUTOCMD
4107 /* If autocommands deleted the buffer we were going to re-edit, give
4108 * up and jump to the end. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004109 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 {
4111 delbuf_msg(new_name); /* frees new_name */
4112 goto theend;
4113 }
4114 vim_free(new_name);
4115
4116 /* If autocommands change buffers under our fingers, forget about
4117 * re-editing the file. Should do the buf_clear_file(), but perhaps
4118 * the autocommands changed the buffer... */
4119 if (buf != curbuf)
4120 goto theend;
4121# ifdef FEAT_EVAL
4122 if (aborting()) /* autocmds may abort script processing */
4123 goto theend;
4124# endif
4125#endif
4126 buf_clear_file(curbuf);
4127 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
4128 curbuf->b_op_end.lnum = 0;
4129 }
4130
4131/*
4132 * If we get here we are sure to start editing
4133 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 /* Assume success now */
4135 retval = OK;
4136
4137 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138 * Check if we are editing the w_arg_idx file in the argument list.
4139 */
4140 check_arg_idx(curwin);
4141
4142#ifdef FEAT_AUTOCMD
4143 if (!auto_buf)
4144#endif
4145 {
4146 /*
4147 * Set cursor and init window before reading the file and executing
4148 * autocommands. This allows for the autocommands to position the
4149 * cursor.
4150 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004151 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152
4153#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004154 /* It's possible that all lines in the buffer changed. Need to update
4155 * automatic folding for all windows where it's used. */
4156# ifdef FEAT_WINDOWS
4157 {
4158 win_T *win;
4159 tabpage_T *tp;
4160
4161 FOR_ALL_TAB_WINDOWS(tp, win)
4162 if (win->w_buffer == curbuf)
4163 foldUpdateAll(win);
4164 }
4165# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166 foldUpdateAll(curwin);
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004167# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168#endif
4169
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004170 /* Change directories when the 'acd' option is set. */
4171 DO_AUTOCHDIR
4172
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 /*
4174 * Careful: open_buffer() and apply_autocmds() may change the current
4175 * buffer and window.
4176 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01004177 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 topline = curwin->w_topline;
4179 if (!oldbuf) /* need to read the file */
4180 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004181#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 swap_exists_action = SEA_DIALOG;
4183#endif
4184 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
4185
4186 /*
4187 * Open the buffer and read the file.
4188 */
4189#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004190 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 retval = FAIL;
4192#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004193 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194#endif
4195
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004196#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 if (swap_exists_action == SEA_QUIT)
4198 retval = FAIL;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004199 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200#endif
4201 }
4202#ifdef FEAT_AUTOCMD
4203 else
4204 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004205 /* Read the modelines, but only to set window-local options. Any
4206 * buffer-local options have already been set and may have been
4207 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00004208 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004209
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
4211 &retval);
4212 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
4213 &retval);
4214 }
4215 check_arg_idx(curwin);
4216#endif
4217
Bram Moolenaareab316b2015-03-24 11:46:30 +01004218 /* If autocommands change the cursor position or topline, we should
4219 * keep it. Also when it moves within a line. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004220 if (!EQUAL_POS(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 {
4222 newlnum = curwin->w_cursor.lnum;
4223 newcol = curwin->w_cursor.col;
4224 }
4225 if (curwin->w_topline == topline)
4226 topline = 0;
4227
4228 /* Even when cursor didn't move we need to recompute topline. */
4229 changed_line_abv_curs();
4230
4231#ifdef FEAT_TITLE
4232 maketitle();
4233#endif
4234 }
4235
4236#ifdef FEAT_DIFF
4237 /* Tell the diff stuff that this buffer is new and/or needs updating.
4238 * Also needed when re-editing the same buffer, because unloading will
4239 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004240 if (curwin->w_p_diff)
4241 {
4242 diff_buf_add(curbuf);
4243 diff_invalidate(curbuf);
4244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245#endif
4246
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004247#ifdef FEAT_SPELL
4248 /* If the window options were changed may need to set the spell language.
4249 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02004250 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
4251 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004252#endif
4253
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 if (command == NULL)
4255 {
4256 if (newcol >= 0) /* position set by autocommands */
4257 {
4258 curwin->w_cursor.lnum = newlnum;
4259 curwin->w_cursor.col = newcol;
4260 check_cursor();
4261 }
4262 else if (newlnum > 0) /* line number from caller or old position */
4263 {
4264 curwin->w_cursor.lnum = newlnum;
4265 check_cursor_lnum();
4266 if (solcol >= 0 && !p_sol)
4267 {
4268 /* 'sol' is off: Use last known column. */
4269 curwin->w_cursor.col = solcol;
4270 check_cursor_col();
4271#ifdef FEAT_VIRTUALEDIT
4272 curwin->w_cursor.coladd = 0;
4273#endif
4274 curwin->w_set_curswant = TRUE;
4275 }
4276 else
4277 beginline(BL_SOL | BL_FIX);
4278 }
4279 else /* no line number, go to last line in Ex mode */
4280 {
4281 if (exmode_active)
4282 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4283 beginline(BL_WHITE | BL_FIX);
4284 }
4285 }
4286
4287#ifdef FEAT_WINDOWS
4288 /* Check if cursors in other windows on the same buffer are still valid */
4289 check_lnums(FALSE);
4290#endif
4291
4292 /*
4293 * Did not read the file, need to show some info about the file.
4294 * Do this after setting the cursor.
4295 */
4296 if (oldbuf
4297#ifdef FEAT_AUTOCMD
4298 && !auto_buf
4299#endif
4300 )
4301 {
4302 int msg_scroll_save = msg_scroll;
4303
4304 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
4305 * message. */
4306 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
4307 msg_scroll = FALSE;
4308 if (!msg_scroll) /* wait a bit when overwriting an error msg */
4309 check_for_delay(FALSE);
4310 msg_start();
4311 msg_scroll = msg_scroll_save;
4312 msg_scrolled_ign = TRUE;
4313
Bram Moolenaar426dd022016-03-15 15:09:29 +01004314 if (!shortmess(SHM_FILEINFO))
4315 fileinfo(FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316
4317 msg_scrolled_ign = FALSE;
4318 }
4319
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02004320#ifdef FEAT_VIMINFO
4321 curbuf->b_last_used = vim_time();
4322#endif
4323
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 if (command != NULL)
4325 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
4326
4327#ifdef FEAT_KEYMAP
4328 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004329 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330#endif
4331
4332 --RedrawingDisabled;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004333 did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 if (!skip_redraw)
4335 {
4336 n = p_so;
4337 if (topline == 0 && command == NULL)
4338 p_so = 999; /* force cursor halfway the window */
4339 update_topline();
4340#ifdef FEAT_SCROLLBIND
4341 curwin->w_scbind_pos = curwin->w_topline;
4342#endif
4343 p_so = n;
4344 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
4345 }
4346
4347 if (p_im)
4348 need_start_insertmode = TRUE;
4349
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004350 /* Change directories when the 'acd' option is set. */
4351 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00004353#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02004354 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 {
4356# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02004357 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
4359# endif
4360# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004361 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00004362 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363# endif
4364 }
4365#endif
4366
4367theend:
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004368 if (did_inc_redrawing_disabled)
4369 --RedrawingDisabled;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004370#ifdef FEAT_AUTOCMD
4371 if (did_set_swapcommand)
4372 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
4373#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374#ifdef FEAT_BROWSE
4375 vim_free(browse_file);
4376#endif
4377 vim_free(free_fname);
4378 return retval;
4379}
4380
4381#ifdef FEAT_AUTOCMD
4382 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004383delbuf_msg(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384{
4385 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
4386 name == NULL ? (char_u *)"" : name);
4387 vim_free(name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004388 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004389 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390}
4391#endif
4392
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004393static int append_indent = 0; /* autoindent for first line */
4394
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395/*
4396 * ":insert" and ":append", also used by ":change"
4397 */
4398 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004399ex_append(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400{
4401 char_u *theline;
4402 int did_undo = FALSE;
4403 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004404 int indent = 0;
4405 char_u *p;
4406 int vcol;
4407 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004409 /* the ! flag toggles autoindent */
4410 if (eap->forceit)
4411 curbuf->b_p_ai = !curbuf->b_p_ai;
4412
4413 /* First autoindent comes from the line we start on */
4414 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
4415 append_indent = get_indent_lnum(lnum);
4416
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 if (eap->cmdidx != CMD_append)
4418 --lnum;
4419
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004420 /* when the buffer is empty need to delete the dummy line */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004421 if (empty && lnum == 1)
4422 lnum = 0;
4423
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 State = INSERT; /* behave like in Insert mode */
4425 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
4426 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004427
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004428 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 {
4430 msg_scroll = TRUE;
4431 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004432 if (curbuf->b_p_ai)
4433 {
4434 if (append_indent >= 0)
4435 {
4436 indent = append_indent;
4437 append_indent = -1;
4438 }
4439 else if (lnum > 0)
4440 indent = get_indent_lnum(lnum);
4441 }
4442 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004444 {
4445 /* No getline() function, use the lines that follow. This ends
4446 * when there is no more. */
4447 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
4448 break;
4449 p = vim_strchr(eap->nextcmd, NL);
4450 if (p == NULL)
4451 p = eap->nextcmd + STRLEN(eap->nextcmd);
4452 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4453 if (*p != NUL)
4454 ++p;
4455 eap->nextcmd = p;
4456 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004458 {
4459 int save_State = State;
4460
4461 /* Set State to avoid the cursor shape to be set to INSERT mode
4462 * when getline() returns. */
4463 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 theline = eap->getline(
4465#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004466 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004468 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004469 State = save_State;
4470 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004472 if (theline == NULL)
4473 break;
4474
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004475 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4476 if (ex_keep_indent)
4477 append_indent = indent;
4478
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004479 /* Look for the "." after automatic indent. */
4480 vcol = 0;
4481 for (p = theline; indent > vcol; ++p)
4482 {
4483 if (*p == ' ')
4484 ++vcol;
4485 else if (*p == TAB)
4486 vcol += 8 - vcol % 8;
4487 else
4488 break;
4489 }
4490 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004491 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4492 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 {
4494 vim_free(theline);
4495 break;
4496 }
4497
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004498 /* don't use autoindent if nothing was typed. */
4499 if (p[0] == NUL)
4500 theline[0] = NUL;
4501
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 did_undo = TRUE;
4503 ml_append(lnum, theline, (colnr_T)0, FALSE);
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004504 appended_lines_mark(lnum + (empty ? 1 : 0), 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505
4506 vim_free(theline);
4507 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004508
4509 if (empty)
4510 {
4511 ml_delete(2L, FALSE);
4512 empty = FALSE;
4513 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 }
4515 State = NORMAL;
4516
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004517 if (eap->forceit)
4518 curbuf->b_p_ai = !curbuf->b_p_ai;
4519
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004521 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 * "end" is set to lnum when something has been appended, otherwise
4523 * it is the same than "start" -- Acevedo */
4524 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4525 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4526 if (eap->cmdidx != CMD_append)
4527 --curbuf->b_op_start.lnum;
4528 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4529 ? lnum : curbuf->b_op_start.lnum;
4530 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4531 curwin->w_cursor.lnum = lnum;
4532 check_cursor_lnum();
4533 beginline(BL_SOL | BL_FIX);
4534
4535 need_wait_return = FALSE; /* don't use wait_return() now */
4536 ex_no_reprint = TRUE;
4537}
4538
4539/*
4540 * ":change"
4541 */
4542 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004543ex_change(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544{
4545 linenr_T lnum;
4546
4547 if (eap->line2 >= eap->line1
4548 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4549 return;
4550
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004551 /* the ! flag toggles autoindent */
4552 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4553 append_indent = get_indent_lnum(eap->line1);
4554
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4556 {
4557 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4558 break;
4559 ml_delete(eap->line1, FALSE);
4560 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004561
4562 /* make sure the cursor is not beyond the end of the file now */
4563 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4565
4566 /* ":append" on the line above the deleted lines. */
4567 eap->line2 = eap->line1;
4568 ex_append(eap);
4569}
4570
4571 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004572ex_z(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573{
4574 char_u *x;
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004575 long bigness;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004576 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 int minus = 0;
4578 linenr_T start, end, curs, i;
4579 int j;
4580 linenr_T lnum = eap->line2;
4581
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004582 /* Vi compatible: ":z!" uses display height, without a count uses
4583 * 'scroll' */
4584 if (eap->forceit)
4585 bigness = curwin->w_height;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004586#ifdef FEAT_WINDOWS
Bram Moolenaar459ca562016-11-10 18:16:33 +01004587 else if (!ONE_WINDOW)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004588 bigness = curwin->w_height - 3;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004589#endif
Bram Moolenaar631abc32014-02-22 22:27:47 +01004590 else
4591 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 if (bigness < 1)
4593 bigness = 1;
4594
4595 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004596 kind = x;
4597 if (*kind == '-' || *kind == '+' || *kind == '='
4598 || *kind == '^' || *kind == '.')
4599 ++x;
4600 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 ++x;
4602
4603 if (*x != 0)
4604 {
4605 if (!VIM_ISDIGIT(*x))
4606 {
4607 EMSG(_("E144: non-numeric argument to :z"));
4608 return;
4609 }
4610 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004611 {
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004612 bigness = atol((char *)x);
4613
4614 /* bigness could be < 0 if atol(x) overflows. */
4615 if (bigness > 2 * curbuf->b_ml.ml_line_count || bigness < 0)
4616 bigness = 2 * curbuf->b_ml.ml_line_count;
4617
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004618 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004619 if (*kind == '=')
4620 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004621 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 }
4623
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004624 /* the number of '-' and '+' multiplies the distance */
4625 if (*kind == '-' || *kind == '+')
4626 for (x = kind + 1; *x == *kind; ++x)
4627 ;
4628
4629 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 {
4631 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004632 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4633 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004634 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 break;
4636
4637 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004638 start = lnum - (bigness + 1) / 2 + 1;
4639 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640 curs = lnum;
4641 minus = 1;
4642 break;
4643
4644 case '^':
4645 start = lnum - bigness * 2;
4646 end = lnum - bigness;
4647 curs = lnum - bigness;
4648 break;
4649
4650 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004651 start = lnum - (bigness + 1) / 2 + 1;
4652 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 curs = end;
4654 break;
4655
4656 default: /* '+' */
4657 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004658 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004659 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004660 else if (eap->addr_count == 0)
4661 ++start;
4662 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 curs = end;
4664 break;
4665 }
4666
4667 if (start < 1)
4668 start = 1;
4669
4670 if (end > curbuf->b_ml.ml_line_count)
4671 end = curbuf->b_ml.ml_line_count;
4672
4673 if (curs > curbuf->b_ml.ml_line_count)
4674 curs = curbuf->b_ml.ml_line_count;
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004675 else if (curs < 1)
4676 curs = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677
4678 for (i = start; i <= end; i++)
4679 {
4680 if (minus && i == lnum)
4681 {
4682 msg_putchar('\n');
4683
4684 for (j = 1; j < Columns; j++)
4685 msg_putchar('-');
4686 }
4687
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004688 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689
4690 if (minus && i == lnum)
4691 {
4692 msg_putchar('\n');
4693
4694 for (j = 1; j < Columns; j++)
4695 msg_putchar('-');
4696 }
4697 }
4698
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004699 if (curwin->w_cursor.lnum != curs)
4700 {
4701 curwin->w_cursor.lnum = curs;
4702 curwin->w_cursor.col = 0;
4703 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 ex_no_reprint = TRUE;
4705}
4706
4707/*
4708 * Check if the restricted flag is set.
4709 * If so, give an error message and return TRUE.
4710 * Otherwise, return FALSE.
4711 */
4712 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004713check_restricted(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714{
4715 if (restricted)
4716 {
4717 EMSG(_("E145: Shell commands not allowed in rvim"));
4718 return TRUE;
4719 }
4720 return FALSE;
4721}
4722
4723/*
4724 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4725 * If so, give an error message and return TRUE.
4726 * Otherwise, return FALSE.
4727 */
4728 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004729check_secure(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730{
4731 if (secure)
4732 {
4733 secure = 2;
4734 EMSG(_(e_curdir));
4735 return TRUE;
4736 }
4737#ifdef HAVE_SANDBOX
4738 /*
4739 * In the sandbox more things are not allowed, including the things
4740 * disallowed in secure mode.
4741 */
4742 if (sandbox != 0)
4743 {
4744 EMSG(_(e_sandbox));
4745 return TRUE;
4746 }
4747#endif
4748 return FALSE;
4749}
4750
4751static char_u *old_sub = NULL; /* previous substitute pattern */
4752static int global_need_beginline; /* call beginline() after ":g" */
4753
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004754/*
4755 * Flags that are kept between calls to :substitute.
4756 */
4757typedef struct {
4758 int do_all; /* do multiple substitutions per line */
4759 int do_ask; /* ask for confirmation */
4760 int do_count; /* count only */
4761 int do_error; /* if false, ignore errors */
4762 int do_print; /* print last line with subs. */
4763 int do_list; /* list last line with subs. */
4764 int do_number; /* list last line with line nr*/
4765 int do_ic; /* ignore case flag */
4766} subflags_T;
4767
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768/* do_sub()
4769 *
4770 * Perform a substitution from line eap->line1 to line eap->line2 using the
4771 * command pointed to by eap->arg which should be of the form:
4772 *
4773 * /pattern/substitution/{flags}
4774 *
4775 * The usual escapes are supported as described in the regexp docs.
4776 */
4777 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004778do_sub(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779{
4780 linenr_T lnum;
4781 long i = 0;
4782 regmmatch_T regmatch;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004783 static subflags_T subflags = {FALSE, FALSE, FALSE, TRUE, FALSE,
4784 FALSE, FALSE, 0};
4785#ifdef FEAT_EVAL
4786 subflags_T subflags_save;
4787#endif
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004788 int save_do_all; /* remember user specified 'g' flag */
4789 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4791 int delimiter;
4792 int sublen;
4793 int got_quit = FALSE;
4794 int got_match = FALSE;
4795 int temp;
4796 int which_pat;
4797 char_u *cmd;
4798 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004799 linenr_T first_line = 0; /* first changed line */
4800 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 * change */
4802 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4803 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004804 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004805 char_u *sub_firstline; /* allocated copy of first sub line */
4806 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004807 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004808 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004809#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004810 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004811#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812
4813 cmd = eap->arg;
4814 if (!global_busy)
4815 {
4816 sub_nsubs = 0;
4817 sub_nlines = 0;
4818 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004819 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 if (eap->cmdidx == CMD_tilde)
4822 which_pat = RE_LAST; /* use last used regexp */
4823 else
4824 which_pat = RE_SUBST; /* use last substitute regexp */
4825
4826 /* new pattern and substitution */
Bram Moolenaar1c465442017-03-12 20:10:05 +01004827 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4829 {
4830 /* don't accept alphanumeric for separator */
4831 if (isalpha(*cmd))
4832 {
4833 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4834 return;
4835 }
4836 /*
4837 * undocumented vi feature:
4838 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4839 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4840 */
4841 if (*cmd == '\\')
4842 {
4843 ++cmd;
4844 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4845 {
4846 EMSG(_(e_backslash));
4847 return;
4848 }
4849 if (*cmd != '&')
4850 which_pat = RE_SEARCH; /* use last '/' pattern */
4851 pat = (char_u *)""; /* empty search pattern */
4852 delimiter = *cmd++; /* remember delimiter character */
4853 }
4854 else /* find the end of the regexp */
4855 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004856#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4857 if (p_altkeymap && curwin->w_p_rl)
4858 lrF_sub(cmd);
4859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860 which_pat = RE_LAST; /* use last used regexp */
4861 delimiter = *cmd++; /* remember delimiter character */
4862 pat = cmd; /* remember start of search pat */
4863 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4864 if (cmd[0] == delimiter) /* end delimiter found */
4865 *cmd++ = NUL; /* replace it with a NUL */
4866 }
4867
4868 /*
4869 * Small incompatibility: vi sees '\n' as end of the command, but in
4870 * Vim we want to use '\n' to find/substitute a NUL.
4871 */
4872 sub = cmd; /* remember the start of the substitution */
4873
4874 while (cmd[0])
4875 {
4876 if (cmd[0] == delimiter) /* end delimiter found */
4877 {
4878 *cmd++ = NUL; /* replace it with a NUL */
4879 break;
4880 }
4881 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4882 ++cmd;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004883 MB_PTR_ADV(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 }
4885
4886 if (!eap->skip)
4887 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004888 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4889 if (STRCMP(sub, "%") == 0
4890 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4891 {
4892 if (old_sub == NULL) /* there is no previous command */
4893 {
4894 EMSG(_(e_nopresub));
4895 return;
4896 }
4897 sub = old_sub;
4898 }
4899 else
4900 {
4901 vim_free(old_sub);
4902 old_sub = vim_strsave(sub);
4903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 }
4905 }
4906 else if (!eap->skip) /* use previous pattern and substitution */
4907 {
4908 if (old_sub == NULL) /* there is no previous command */
4909 {
4910 EMSG(_(e_nopresub));
4911 return;
4912 }
4913 pat = NULL; /* search_regcomp() will use previous pattern */
4914 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004915
4916 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4917 * last column after using "$". */
4918 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 }
4920
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004921 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4922 * more efficient.
4923 * TODO: find a generic solution to make line-joining operations more
4924 * efficient, avoid allocating a string that grows in size.
4925 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004926 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004927 && *sub == NUL
4928 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4929 || *cmd == 'p' || *cmd == '#'))))
4930 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004931 linenr_T joined_lines_count;
4932
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004933 curwin->w_cursor.lnum = eap->line1;
4934 if (*cmd == 'l')
4935 eap->flags = EXFLAG_LIST;
4936 else if (*cmd == '#')
4937 eap->flags = EXFLAG_NR;
4938 else if (*cmd == 'p')
4939 eap->flags = EXFLAG_PRINT;
4940
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004941 /* The number of lines joined is the number of lines in the range plus
4942 * one. One less when the last line is included. */
4943 joined_lines_count = eap->line2 - eap->line1 + 1;
4944 if (eap->line2 < curbuf->b_ml.ml_line_count)
4945 ++joined_lines_count;
4946 if (joined_lines_count > 1)
4947 {
4948 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
4949 sub_nsubs = joined_lines_count - 1;
4950 sub_nlines = 1;
4951 (void)do_sub_msg(FALSE);
4952 ex_may_print(eap);
4953 }
4954
4955 if (!cmdmod.keeppatterns)
4956 save_re_pat(RE_SUBST, pat, p_magic);
4957#ifdef FEAT_CMDHIST
4958 /* put pattern in history */
4959 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
4960#endif
4961
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004962 return;
4963 }
4964
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 /*
4966 * Find trailing options. When '&' is used, keep old options.
4967 */
4968 if (*cmd == '&')
4969 ++cmd;
4970 else
4971 {
4972 if (!p_ed)
4973 {
4974 if (p_gd) /* default is global on */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004975 subflags.do_all = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004977 subflags.do_all = FALSE;
4978 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004980 subflags.do_error = TRUE;
4981 subflags.do_print = FALSE;
4982 subflags.do_count = FALSE;
4983 subflags.do_number = FALSE;
4984 subflags.do_ic = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 }
4986 while (*cmd)
4987 {
4988 /*
4989 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
4990 * 'r' is never inverted.
4991 */
4992 if (*cmd == 'g')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004993 subflags.do_all = !subflags.do_all;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 else if (*cmd == 'c')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004995 subflags.do_ask = !subflags.do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004996 else if (*cmd == 'n')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004997 subflags.do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 else if (*cmd == 'e')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004999 subflags.do_error = !subflags.do_error;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 else if (*cmd == 'r') /* use last used regexp */
5001 which_pat = RE_LAST;
5002 else if (*cmd == 'p')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005003 subflags.do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005004 else if (*cmd == '#')
5005 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005006 subflags.do_print = TRUE;
5007 subflags.do_number = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005008 }
5009 else if (*cmd == 'l')
5010 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005011 subflags.do_print = TRUE;
5012 subflags.do_list = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 else if (*cmd == 'i') /* ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005015 subflags.do_ic = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 else if (*cmd == 'I') /* don't ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005017 subflags.do_ic = 'I';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 else
5019 break;
5020 ++cmd;
5021 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005022 if (subflags.do_count)
5023 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005025 save_do_all = subflags.do_all;
5026 save_do_ask = subflags.do_ask;
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005027
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 /*
5029 * check for a trailing count
5030 */
5031 cmd = skipwhite(cmd);
5032 if (VIM_ISDIGIT(*cmd))
5033 {
5034 i = getdigits(&cmd);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005035 if (i <= 0 && !eap->skip && subflags.do_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 {
5037 EMSG(_(e_zerocount));
5038 return;
5039 }
5040 eap->line1 = eap->line2;
5041 eap->line2 += i - 1;
5042 if (eap->line2 > curbuf->b_ml.ml_line_count)
5043 eap->line2 = curbuf->b_ml.ml_line_count;
5044 }
5045
5046 /*
5047 * check for trailing command or garbage
5048 */
5049 cmd = skipwhite(cmd);
5050 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
5051 {
5052 eap->nextcmd = check_nextcmd(cmd);
5053 if (eap->nextcmd == NULL)
5054 {
5055 EMSG(_(e_trailing));
5056 return;
5057 }
5058 }
5059
5060 if (eap->skip) /* not executing commands, only parsing */
5061 return;
5062
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005063 if (!subflags.do_count && !curbuf->b_p_ma)
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005064 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005065 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005066 EMSG(_(e_modifiable));
5067 return;
5068 }
5069
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5071 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005072 if (subflags.do_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 EMSG(_(e_invcmd));
5074 return;
5075 }
5076
5077 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005078 if (subflags.do_ic == 'i')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 regmatch.rmm_ic = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005080 else if (subflags.do_ic == 'I')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 regmatch.rmm_ic = FALSE;
5082
5083 sub_firstline = NULL;
5084
5085 /*
5086 * ~ in the substitute pattern is replaced with the old pattern.
5087 * We do it here once to avoid it to be replaced over and over again.
5088 * But don't do it when it starts with "\=", then it's an expression.
5089 */
5090 if (!(sub[0] == '\\' && sub[1] == '='))
5091 sub = regtilde(sub, p_magic);
5092
5093 /*
5094 * Check for a match on each line.
5095 */
5096 line2 = eap->line2;
5097 for (lnum = eap->line1; lnum <= line2 && !(got_quit
5098#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD)
5099 || aborting()
5100#endif
5101 ); ++lnum)
5102 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005103 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005104 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 if (nmatch)
5106 {
5107 colnr_T copycol;
5108 colnr_T matchcol;
5109 colnr_T prev_matchcol = MAXCOL;
5110 char_u *new_end, *new_start = NULL;
5111 unsigned new_start_len = 0;
5112 char_u *p1;
5113 int did_sub = FALSE;
5114 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005115 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 long nmatch_tl = 0; /* nr of lines matched below lnum */
5117 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005118 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005119 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120
5121 /*
5122 * The new text is build up step by step, to avoid too much
5123 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00005124 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 * copycol Column in the old text where we started
5126 * looking for a match; from here old text still
5127 * needs to be copied to the new text.
5128 * matchcol Column number of the old text where to look
5129 * for the next match. It's just after the
5130 * previous match or one further.
5131 * prev_matchcol Column just after the previous match (if any).
5132 * Mostly equal to matchcol, except for the first
5133 * match and after skipping an empty match.
5134 * regmatch.*pos Where the pattern matched in the old text.
5135 * new_start The new text, all that has been produced so
5136 * far.
5137 * new_end The new text, where to append new text.
5138 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005139 * lnum The line number where we found the start of
5140 * the match. Can be below the line we searched
5141 * when there is a \n before a \zs in the
5142 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 * sub_firstlnum The line number in the buffer where to look
5144 * for a match. Can be different from "lnum"
5145 * when the pattern or substitute string contains
5146 * line breaks.
5147 *
5148 * Special situations:
5149 * - When the substitute string contains a line break, the part up
5150 * to the line break is inserted in the text, but the copy of
5151 * the original line is kept. "sub_firstlnum" is adjusted for
5152 * the inserted lines.
5153 * - When the matched pattern contains a line break, the old line
5154 * is taken from the line at the end of the pattern. The lines
5155 * in the match are deleted later, "sub_firstlnum" is adjusted
5156 * accordingly.
5157 *
5158 * The new text is built up in new_start[]. It has some extra
5159 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005160 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 *
5162 * Make a copy of the old line, so it won't be taken away when
5163 * updating the screen or handling a multi-line match. The "old_"
5164 * pointers point into this copy.
5165 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005166 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 copycol = 0;
5168 matchcol = 0;
5169
5170 /* At first match, remember current cursor position. */
5171 if (!got_match)
5172 {
5173 setpcmark();
5174 got_match = TRUE;
5175 }
5176
5177 /*
5178 * Loop until nothing more to replace in this line.
5179 * 1. Handle match with empty string.
5180 * 2. If do_ask is set, ask for confirmation.
5181 * 3. substitute the string.
5182 * 4. if do_all is set, find next match
5183 * 5. break if there isn't another match in this line
5184 */
5185 for (;;)
5186 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005187 /* Advance "lnum" to the line where the match starts. The
5188 * match does not start in the first line when there is a line
5189 * break before \zs. */
5190 if (regmatch.startpos[0].lnum > 0)
5191 {
5192 lnum += regmatch.startpos[0].lnum;
5193 sub_firstlnum += regmatch.startpos[0].lnum;
5194 nmatch -= regmatch.startpos[0].lnum;
5195 vim_free(sub_firstline);
5196 sub_firstline = NULL;
5197 }
5198
5199 if (sub_firstline == NULL)
5200 {
5201 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5202 if (sub_firstline == NULL)
5203 {
5204 vim_free(new_start);
5205 goto outofmem;
5206 }
5207 }
5208
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 /* Save the line number of the last change for the final
5210 * cursor position (just like Vi). */
5211 curwin->w_cursor.lnum = lnum;
5212 do_again = FALSE;
5213
5214 /*
5215 * 1. Match empty string does not count, except for first
5216 * match. This reproduces the strange vi behaviour.
5217 * This also catches endless loops.
5218 */
5219 if (matchcol == prev_matchcol
5220 && regmatch.endpos[0].lnum == 0
5221 && matchcol == regmatch.endpos[0].col)
5222 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00005223 if (sub_firstline[matchcol] == NUL)
5224 /* We already were at the end of the line. Don't look
5225 * for a match in this line again. */
5226 skip_match = TRUE;
5227 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02005228 {
5229 /* search for a match at next column */
5230#ifdef FEAT_MBYTE
5231 if (has_mbyte)
5232 matchcol += mb_ptr2len(sub_firstline + matchcol);
5233 else
5234#endif
5235 ++matchcol;
5236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 goto skip;
5238 }
5239
5240 /* Normally we continue searching for a match just after the
5241 * previous match. */
5242 matchcol = regmatch.endpos[0].col;
5243 prev_matchcol = matchcol;
5244
5245 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00005246 * 2. If do_count is set only increase the counter.
5247 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005249 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005250 {
5251 /* For a multi-line match, put matchcol at the NUL at
5252 * the end of the line and set nmatch to one, so that
5253 * we continue looking for a match on the next line.
5254 * Avoids that ":s/\nB\@=//gc" get stuck. */
5255 if (nmatch > 1)
5256 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005257 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00005258 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00005259 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005260 }
5261 sub_nsubs++;
5262 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005263#ifdef FEAT_EVAL
5264 /* Skip the substitution, unless an expression is used,
5265 * then it is evaluated in the sandbox. */
5266 if (!(sub[0] == '\\' && sub[1] == '='))
5267#endif
5268 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005269 }
5270
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005271 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00005273 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005274
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 /* change State to CONFIRM, so that the mouse works
5276 * properly */
5277 save_State = State;
5278 State = CONFIRM;
5279#ifdef FEAT_MOUSE
5280 setmouse(); /* disable mouse in xterm */
5281#endif
5282 curwin->w_cursor.col = regmatch.startpos[0].col;
Bram Moolenaar41baa792017-01-21 14:45:09 +01005283#ifdef FEAT_CURSORBIND
5284 if (curwin->w_p_crb)
5285 do_check_cursorbind();
5286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287
5288 /* When 'cpoptions' contains "u" don't sync undo when
5289 * asking for confirmation. */
5290 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5291 ++no_u_sync;
5292
5293 /*
5294 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
5295 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005296 while (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005298 if (exmode_active)
5299 {
5300 char_u *resp;
5301 colnr_T sc, ec;
5302
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005303 print_line_no_prefix(lnum,
5304 subflags.do_number, subflags.do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005305
5306 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
5307 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01005308 if (curwin->w_cursor.col < 0)
5309 curwin->w_cursor.col = 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005310 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005311 if (subflags.do_number || curwin->w_p_nu)
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02005312 {
5313 int numw = number_width(curwin) + 1;
5314 sc += numw;
5315 ec += numw;
5316 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005317 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00005318 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005319 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00005320 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005321 msg_putchar('^');
5322
5323 resp = getexmodeline('?', NULL, 0);
5324 if (resp != NULL)
5325 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005326 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005327 vim_free(resp);
5328 }
5329 }
5330 else
5331 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005332 char_u *orig_line = NULL;
5333 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005335 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005337 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005339 /* Invert the matched string.
5340 * Remove the inversion afterwards. */
5341 temp = RedrawingDisabled;
5342 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005344 if (new_start != NULL)
5345 {
5346 /* There already was a substitution, we would
5347 * like to show this to the user. We cannot
5348 * really update the line, it would change
5349 * what matches. Temporarily replace the line
5350 * and change it back afterwards. */
5351 orig_line = vim_strsave(ml_get(lnum));
5352 if (orig_line != NULL)
5353 {
5354 char_u *new_line = concat_str(new_start,
5355 sub_firstline + copycol);
5356
5357 if (new_line == NULL)
5358 {
5359 vim_free(orig_line);
5360 orig_line = NULL;
5361 }
5362 else
5363 {
5364 /* Position the cursor relative to the
5365 * end of the line, the previous
5366 * substitute may have inserted or
5367 * deleted characters before the
5368 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01005369 len_change = (int)STRLEN(new_line)
5370 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005371 curwin->w_cursor.col += len_change;
5372 ml_replace(lnum, new_line, FALSE);
5373 }
5374 }
5375 }
5376
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005377 search_match_lines = regmatch.endpos[0].lnum
5378 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005379 search_match_endcol = regmatch.endpos[0].col
5380 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005381 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005383 update_topline();
5384 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00005385 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005386 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00005387 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388
5389#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005390 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005392 if (msg_row == Rows - 1)
5393 msg_didout = FALSE; /* avoid a scroll-up */
5394 msg_starthere();
5395 i = msg_scroll;
5396 msg_scroll = 0; /* truncate msg when
5397 needed */
5398 msg_no_more = TRUE;
5399 /* write message same highlighting as for
5400 * wait_return */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005401 smsg_attr(HL_ATTR(HLF_R),
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005402 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
5403 msg_no_more = FALSE;
5404 msg_scroll = i;
5405 showruler(TRUE);
5406 windgoto(msg_row, msg_col);
5407 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408
5409#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005410 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005412 ++no_mapping; /* don't map this key */
5413 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005414 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005415 --allow_keys;
5416 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005418 /* clear the question */
5419 msg_didout = FALSE; /* don't scroll up */
5420 msg_col = 0;
5421 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005422
5423 /* restore the line */
5424 if (orig_line != NULL)
5425 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005426 }
5427
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005429 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005431 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432#endif
5433 )
5434 {
5435 got_quit = TRUE;
5436 break;
5437 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005438 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005440 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005442 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 {
5444 /* last: replace and then stop */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005445 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446 line2 = lnum;
5447 break;
5448 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005449 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005451 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 break;
5453 }
5454#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005455 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005457 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 scrolldown_clamp();
5459#endif
5460 }
5461 State = save_State;
5462#ifdef FEAT_MOUSE
5463 setmouse();
5464#endif
5465 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5466 --no_u_sync;
5467
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005468 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 {
5470 /* For a multi-line match, put matchcol at the NUL at
5471 * the end of the line and set nmatch to one, so that
5472 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00005473 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
5474 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 if (nmatch > 1)
5476 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005477 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00005478 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 }
5480 goto skip;
5481 }
5482 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01005483 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 }
5485
5486 /* Move the cursor to the start of the match, so that we can
5487 * use "\=col("."). */
5488 curwin->w_cursor.col = regmatch.startpos[0].col;
5489
5490 /*
5491 * 3. substitute the string.
5492 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005493#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005494 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005495 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005496 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005497 save_ma = curbuf->b_p_ma;
5498 curbuf->b_p_ma = FALSE;
5499 sandbox++;
5500 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005501 /* Save flags for recursion. They can change for e.g.
5502 * :s/^/\=execute("s#^##gn") */
5503 subflags_save = subflags;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005504#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005506 sublen = vim_regsub_multi(&regmatch,
5507 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005509#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005510 /* Don't keep flags set by a recursive call. */
5511 subflags = subflags_save;
5512 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005513 {
5514 curbuf->b_p_ma = save_ma;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005515 if (sandbox > 0)
5516 sandbox--;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005517 goto skip;
5518 }
5519#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520
Bram Moolenaar4463f292005-09-25 22:20:24 +00005521 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005522 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005523 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5524 {
5525 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5526 skip_match = TRUE;
5527 }
5528
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 /* Need room for:
5530 * - result so far in new_start (not for first sub in line)
5531 * - original text up to match
5532 * - length of substituted part
5533 * - original text after match
5534 */
5535 if (nmatch == 1)
5536 p1 = sub_firstline;
5537 else
5538 {
5539 p1 = ml_get(sub_firstlnum + nmatch - 1);
5540 nmatch_tl += nmatch - 1;
5541 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005542 copy_len = regmatch.startpos[0].col - copycol;
5543 needed_len = copy_len + ((unsigned)STRLEN(p1)
5544 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 if (new_start == NULL)
5546 {
5547 /*
5548 * Get some space for a temporary buffer to do the
5549 * substitution into (and some extra space to avoid
5550 * too many calls to alloc()/free()).
5551 */
5552 new_start_len = needed_len + 50;
5553 if ((new_start = alloc_check(new_start_len)) == NULL)
5554 goto outofmem;
5555 *new_start = NUL;
5556 new_end = new_start;
5557 }
5558 else
5559 {
5560 /*
5561 * Check if the temporary buffer is long enough to do the
5562 * substitution into. If not, make it larger (with a bit
5563 * extra to avoid too many calls to alloc()/free()).
5564 */
5565 len = (unsigned)STRLEN(new_start);
5566 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005567 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 {
5569 new_start_len = needed_len + 50;
5570 if ((p1 = alloc_check(new_start_len)) == NULL)
5571 {
5572 vim_free(new_start);
5573 goto outofmem;
5574 }
5575 mch_memmove(p1, new_start, (size_t)(len + 1));
5576 vim_free(new_start);
5577 new_start = p1;
5578 }
5579 new_end = new_start + len;
5580 }
5581
5582 /*
5583 * copy the text up to the part that matched
5584 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005585 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5586 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005588 (void)vim_regsub_multi(&regmatch,
5589 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 sub, new_end, TRUE, p_magic, TRUE);
5591 sub_nsubs++;
5592 did_sub = TRUE;
5593
5594 /* Move the cursor to the start of the line, to avoid that it
5595 * is beyond the end of the line after the substitution. */
5596 curwin->w_cursor.col = 0;
5597
5598 /* For a multi-line match, make a copy of the last matched
5599 * line and continue in that one. */
5600 if (nmatch > 1)
5601 {
5602 sub_firstlnum += nmatch - 1;
5603 vim_free(sub_firstline);
5604 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5605 /* When going beyond the last line, stop substituting. */
5606 if (sub_firstlnum <= line2)
5607 do_again = TRUE;
5608 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005609 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 }
5611
5612 /* Remember next character to be copied. */
5613 copycol = regmatch.endpos[0].col;
5614
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005615 if (skip_match)
5616 {
5617 /* Already hit end of the buffer, sub_firstlnum is one
5618 * less than what it ought to be. */
5619 vim_free(sub_firstline);
5620 sub_firstline = vim_strsave((char_u *)"");
5621 copycol = 0;
5622 }
5623
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624 /*
5625 * Now the trick is to replace CTRL-M chars with a real line
5626 * break. This would make it impossible to insert a CTRL-M in
5627 * the text. The line break can be avoided by preceding the
5628 * CTRL-M with a backslash. To be able to insert a backslash,
5629 * they must be doubled in the string and are halved here.
5630 * That is Vi compatible.
5631 */
5632 for (p1 = new_end; *p1; ++p1)
5633 {
5634 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005635 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636 else if (*p1 == CAR)
5637 {
5638 if (u_inssub(lnum) == OK) /* prepare for undo */
5639 {
5640 *p1 = NUL; /* truncate up to the CR */
5641 ml_append(lnum - 1, new_start,
5642 (colnr_T)(p1 - new_start + 1), FALSE);
5643 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005644 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005645 appended_lines(lnum - 1, 1L);
5646 else
5647 {
5648 if (first_line == 0)
5649 first_line = lnum;
5650 last_line = lnum + 1;
5651 }
5652 /* All line numbers increase. */
5653 ++sub_firstlnum;
5654 ++lnum;
5655 ++line2;
5656 /* move the cursor to the new line, like Vi */
5657 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005658 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005659 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 p1 = new_start - 1;
5661 }
5662 }
5663#ifdef FEAT_MBYTE
5664 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005665 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666#endif
5667 }
5668
5669 /*
5670 * 4. If do_all is set, find next match.
5671 * Prevent endless loop with patterns that match empty
5672 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5673 * But ":s/\n/#/" is OK.
5674 */
5675skip:
5676 /* We already know that we did the last subst when we are at
5677 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005678 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5679 * "line2" when there is a \zs in the pattern after a line
5680 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005681 lastone = (skip_match
5682 || got_int
5683 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005684 || lnum > line2
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005685 || !(subflags.do_all || do_again)
Bram Moolenaar8299df92004-07-10 09:47:34 +00005686 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5687 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 nmatch = -1;
5689
5690 /*
5691 * Replace the line in the buffer when needed. This is
5692 * skipped when there are more matches.
5693 * The check for nmatch_tl is needed for when multi-line
5694 * matching must replace the lines before trying to do another
5695 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005696 * When the match starts below where we start searching also
5697 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 */
5699 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700 || nmatch_tl > 0
5701 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005702 curbuf, sub_firstlnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005703 matchcol, NULL, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005704 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 {
5706 if (new_start != NULL)
5707 {
5708 /*
5709 * Copy the rest of the line, that didn't match.
5710 * "matchcol" has to be adjusted, we use the end of
5711 * the line as reference, because the substitute may
5712 * have changed the number of characters. Same for
5713 * "prev_matchcol".
5714 */
5715 STRCAT(new_start, sub_firstline + copycol);
5716 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5717 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5718 - prev_matchcol;
5719
5720 if (u_savesub(lnum) != OK)
5721 break;
5722 ml_replace(lnum, new_start, TRUE);
5723
5724 if (nmatch_tl > 0)
5725 {
5726 /*
5727 * Matched lines have now been substituted and are
5728 * useless, delete them. The part after the match
5729 * has been appended to new_start, we don't need
5730 * it in the buffer.
5731 */
5732 ++lnum;
5733 if (u_savedel(lnum, nmatch_tl) != OK)
5734 break;
5735 for (i = 0; i < nmatch_tl; ++i)
5736 ml_delete(lnum, (int)FALSE);
5737 mark_adjust(lnum, lnum + nmatch_tl - 1,
5738 (long)MAXLNUM, -nmatch_tl);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005739 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 deleted_lines(lnum, nmatch_tl);
5741 --lnum;
5742 line2 -= nmatch_tl; /* nr of lines decreases */
5743 nmatch_tl = 0;
5744 }
5745
5746 /* When asking, undo is saved each time, must also set
5747 * changed flag each time. */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005748 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749 changed_bytes(lnum, 0);
5750 else
5751 {
5752 if (first_line == 0)
5753 first_line = lnum;
5754 last_line = lnum + 1;
5755 }
5756
5757 sub_firstlnum = lnum;
5758 vim_free(sub_firstline); /* free the temp buffer */
5759 sub_firstline = new_start;
5760 new_start = NULL;
5761 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5762 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5763 - prev_matchcol;
5764 copycol = 0;
5765 }
5766 if (nmatch == -1 && !lastone)
5767 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005768 sub_firstlnum, matchcol, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769
5770 /*
5771 * 5. break if there isn't another match in this line
5772 */
5773 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005774 {
5775 /* If the match found didn't start where we were
5776 * searching, do the next search in the line where we
5777 * found the match. */
5778 if (nmatch == -1)
5779 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 }
5783
5784 line_breakcheck();
5785 }
5786
5787 if (did_sub)
5788 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005789 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 vim_free(sub_firstline); /* free the copy of the original line */
5791 sub_firstline = NULL;
5792 }
5793
5794 line_breakcheck();
5795 }
5796
5797 if (first_line != 0)
5798 {
5799 /* Need to subtract the number of added lines from "last_line" to get
5800 * the line number before the change (same as adding the number of
5801 * deleted lines). */
5802 i = curbuf->b_ml.ml_line_count - old_line_count;
5803 changed_lines(first_line, 0, last_line - i, i);
5804 }
5805
5806outofmem:
5807 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005808
5809 /* ":s/pat//n" doesn't move the cursor */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005810 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005811 curwin->w_cursor = old_cursor;
5812
Bram Moolenaar46475522010-03-23 17:36:29 +01005813 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814 {
5815 /* Set the '[ and '] marks. */
5816 curbuf->b_op_start.lnum = eap->line1;
5817 curbuf->b_op_end.lnum = line2;
5818 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5819
5820 if (!global_busy)
5821 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005822 /* when interactive leave cursor on the match */
5823 if (!subflags.do_ask)
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005824 {
5825 if (endcolumn)
5826 coladvance((colnr_T)MAXCOL);
5827 else
5828 beginline(BL_WHITE | BL_FIX);
5829 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005830 if (!do_sub_msg(subflags.do_count) && subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 MSG("");
5832 }
5833 else
5834 global_need_beginline = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005835 if (subflags.do_print)
5836 print_line(curwin->w_cursor.lnum,
5837 subflags.do_number, subflags.do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 }
5839 else if (!global_busy)
5840 {
5841 if (got_int) /* interrupted */
5842 EMSG(_(e_interr));
5843 else if (got_match) /* did find something but nothing substituted */
5844 MSG("");
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005845 else if (subflags.do_error) /* nothing found */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 EMSG2(_(e_patnotf2), get_search_pat());
5847 }
5848
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005849#ifdef FEAT_FOLDING
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005850 if (subflags.do_ask && hasAnyFolding(curwin))
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005851 /* Cursor position may require updating */
5852 changed_window_setting();
5853#endif
5854
Bram Moolenaar473de612013-06-08 18:19:48 +02005855 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005856
5857 /* Restore the flag values, they can be used for ":&&". */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005858 subflags.do_all = save_do_all;
5859 subflags.do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860}
5861
5862/*
5863 * Give message for number of substitutions.
5864 * Can also be used after a ":global" command.
5865 * Return TRUE if a message was given.
5866 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005867 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005868do_sub_msg(
5869 int count_only) /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870{
5871 /*
5872 * Only report substitutions when:
5873 * - more than 'report' substitutions
5874 * - command was typed by user, or number of changed lines > 'report'
5875 * - giving messages is not disabled by 'lazyredraw'
5876 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005877 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5878 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 && messaging())
5880 {
5881 if (got_int)
5882 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005883 else
5884 *msg_buf = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885 if (sub_nsubs == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005886 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005887 "%s", count_only ? _("1 match") : _("1 substitution"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005889 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar05159a02005-02-26 23:04:13 +00005890 count_only ? _("%ld matches") : _("%ld substitutions"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 sub_nsubs);
5892 if (sub_nlines == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005893 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005894 "%s", _(" on 1 line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005896 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005897 _(" on %ld lines"), (long)sub_nlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005900 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901 return TRUE;
5902 }
5903 if (got_int)
5904 {
5905 EMSG(_(e_interr));
5906 return TRUE;
5907 }
5908 return FALSE;
5909}
5910
Bram Moolenaarf84b1222017-06-10 14:29:52 +02005911 static void
5912global_exe_one(char_u *cmd, linenr_T lnum)
5913{
5914 curwin->w_cursor.lnum = lnum;
5915 curwin->w_cursor.col = 0;
5916 if (*cmd == NUL || *cmd == '\n')
5917 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5918 else
5919 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5920}
5921
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922/*
5923 * Execute a global command of the form:
5924 *
5925 * g/pattern/X : execute X on all lines where pattern matches
5926 * v/pattern/X : execute X on all lines where pattern does not match
5927 *
5928 * where 'X' is an EX command
5929 *
5930 * The command character (as well as the trailing slash) is optional, and
5931 * is assumed to be 'p' if missing.
5932 *
5933 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005934 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935 * for each line that has a mark. This is required because after deleting
5936 * lines we do not know where to search for the next match.
5937 */
5938 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005939ex_global(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940{
5941 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005942 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943 int type; /* first char of cmd: 'v' or 'g' */
5944 char_u *cmd; /* command argument */
5945
5946 char_u delim; /* delimiter, normally '/' */
5947 char_u *pat;
5948 regmmatch_T regmatch;
5949 int match;
5950 int which_pat;
5951
Bram Moolenaarf84b1222017-06-10 14:29:52 +02005952 /* When nesting the command works on one line. This allows for
5953 * ":g/found/v/notfound/command". */
5954 if (global_busy && (eap->line1 != 1
5955 || eap->line2 != curbuf->b_ml.ml_line_count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02005957 /* will increment global_busy to break out of the loop */
5958 EMSG(_("E147: Cannot do :global recursive with a range"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959 return;
5960 }
5961
5962 if (eap->forceit) /* ":global!" is like ":vglobal" */
5963 type = 'v';
5964 else
5965 type = *eap->cmd;
5966 cmd = eap->arg;
5967 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968
5969 /*
5970 * undocumented vi feature:
5971 * "\/" and "\?": use previous search pattern.
5972 * "\&": use previous substitute pattern.
5973 */
5974 if (*cmd == '\\')
5975 {
5976 ++cmd;
5977 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
5978 {
5979 EMSG(_(e_backslash));
5980 return;
5981 }
5982 if (*cmd == '&')
5983 which_pat = RE_SUBST; /* use previous substitute pattern */
5984 else
5985 which_pat = RE_SEARCH; /* use previous search pattern */
5986 ++cmd;
5987 pat = (char_u *)"";
5988 }
5989 else if (*cmd == NUL)
5990 {
5991 EMSG(_("E148: Regular expression missing from global"));
5992 return;
5993 }
5994 else
5995 {
5996 delim = *cmd; /* get the delimiter */
5997 if (delim)
5998 ++cmd; /* skip delimiter if there is one */
5999 pat = cmd; /* remember start of pattern */
6000 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
6001 if (cmd[0] == delim) /* end delimiter found */
6002 *cmd++ = NUL; /* replace it with a NUL */
6003 }
6004
6005#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
6006 if (p_altkeymap && curwin->w_p_rl)
6007 lrFswap(pat,0);
6008#endif
6009
6010 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
6011 {
6012 EMSG(_(e_invcmd));
6013 return;
6014 }
6015
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006016 if (global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006018 lnum = curwin->w_cursor.lnum;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00006019 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006020 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021 if ((type == 'g' && match) || (type == 'v' && !match))
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006022 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023 }
6024 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006025 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006026 /*
6027 * pass 1: set marks for each (not) matching line
6028 */
6029 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
6030 {
6031 /* a match on this line? */
6032 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006033 (colnr_T)0, NULL, NULL);
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006034 if ((type == 'g' && match) || (type == 'v' && !match))
6035 {
6036 ml_setmarked(lnum);
6037 ndone++;
6038 }
6039 line_breakcheck();
6040 }
6041
6042 /*
6043 * pass 2: execute the command for each line that has been marked
6044 */
6045 if (got_int)
6046 MSG(_(e_interr));
6047 else if (ndone == 0)
6048 {
6049 if (type == 'v')
6050 smsg((char_u *)_("Pattern found in every line: %s"), pat);
6051 else
6052 smsg((char_u *)_("Pattern not found: %s"), pat);
6053 }
6054 else
6055 {
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006056#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006057 start_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006058#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006059 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006060#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006061 end_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006062#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006063 }
6064
6065 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067
Bram Moolenaar473de612013-06-08 18:19:48 +02006068 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006069}
6070
6071/*
6072 * Execute "cmd" on lines marked with ml_setmarked().
6073 */
6074 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006075global_exe(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006076{
Bram Moolenaarbb993222011-05-10 16:00:47 +02006077 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
6078 buf_T *old_buf = curbuf; /* remember what buffer we started in */
6079 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080
6081 /*
6082 * Set current position only once for a global command.
6083 * If global_busy is set, setpcmark() will not do anything.
6084 * If there is an error, global_busy will be incremented.
6085 */
6086 setpcmark();
6087
6088 /* When the command writes a message, don't overwrite the command. */
6089 msg_didout = TRUE;
6090
Bram Moolenaard25bc232010-03-23 17:49:24 +01006091 sub_nsubs = 0;
6092 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006093 global_need_beginline = FALSE;
6094 global_busy = 1;
6095 old_lcount = curbuf->b_ml.ml_line_count;
6096 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
6097 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006098 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 ui_breakcheck();
6100 }
6101
6102 global_busy = 0;
6103 if (global_need_beginline)
6104 beginline(BL_WHITE | BL_FIX);
6105 else
6106 check_cursor(); /* cursor may be beyond the end of the line */
6107
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006108 /* the cursor may not have moved in the text but a change in a previous
6109 * line may move it on the screen */
6110 changed_line_abv_curs();
6111
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112 /* If it looks like no message was written, allow overwriting the
6113 * command with the report for number of changes. */
6114 if (msg_col == 0 && msg_scrolled == 0)
6115 msg_didout = FALSE;
6116
Bram Moolenaar45667512007-05-10 19:24:43 +00006117 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02006118 * number of extra or deleted lines.
6119 * Don't report extra or deleted lines in the edge case where the buffer
6120 * we are in after execution is different from the buffer we started in. */
6121 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
6123}
6124
6125#ifdef FEAT_VIMINFO
6126 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006127read_viminfo_sub_string(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01006129 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006130 vim_free(old_sub);
6131 if (force || old_sub == NULL)
6132 old_sub = viminfo_readstring(virp, 1, TRUE);
6133 return viminfo_readline(virp);
6134}
6135
6136 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006137write_viminfo_sub_string(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138{
6139 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
6140 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02006141 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006142 viminfo_writestring(fp, old_sub);
6143 }
6144}
6145#endif /* FEAT_VIMINFO */
6146
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006147#if defined(EXITFREE) || defined(PROTO)
6148 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006149free_old_sub(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006150{
6151 vim_free(old_sub);
6152}
6153#endif
6154
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155#if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO)
6156/*
6157 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006158 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006160 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006161prepare_tagpreview(
6162 int undo_sync) /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163{
6164 win_T *wp;
6165
6166# ifdef FEAT_GUI
6167 need_mouse_correct = TRUE;
6168# endif
6169
6170 /*
6171 * If there is already a preview window open, use that one.
6172 */
6173 if (!curwin->w_p_pvw)
6174 {
Bram Moolenaar29323592016-07-24 22:04:11 +02006175 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176 if (wp->w_p_pvw)
6177 break;
6178 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00006179 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180 else
6181 {
6182 /*
6183 * There is no preview window open yet. Create one.
6184 */
6185 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
6186 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006187 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 curwin->w_p_pvw = TRUE;
6189 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006190 RESET_BINDING(curwin); /* don't take over 'scrollbind'
6191 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192# ifdef FEAT_DIFF
6193 curwin->w_p_diff = FALSE; /* no 'diff' */
6194# endif
6195# ifdef FEAT_FOLDING
6196 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
6197# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006198 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 }
6200 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006201 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202}
6203
6204#endif
6205
6206
6207/*
6208 * ":help": open a read-only window on a help file
6209 */
6210 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006211ex_help(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212{
6213 char_u *arg;
6214 char_u *tag;
6215 FILE *helpfd; /* file descriptor of help file */
6216 int n;
6217 int i;
6218#ifdef FEAT_WINDOWS
6219 win_T *wp;
6220#endif
6221 int num_matches;
6222 char_u **matches;
6223 char_u *p;
6224 int empty_fnum = 0;
6225 int alt_fnum = 0;
6226 buf_T *buf;
6227#ifdef FEAT_MULTI_LANG
6228 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006229 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02006231#ifdef FEAT_FOLDING
6232 int old_KeyTyped = KeyTyped;
6233#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234
6235 if (eap != NULL)
6236 {
6237 /*
6238 * A ":help" command ends at the first LF, or at a '|' that is
6239 * followed by some text. Set nextcmd to the following command.
6240 */
6241 for (arg = eap->arg; *arg; ++arg)
6242 {
6243 if (*arg == '\n' || *arg == '\r'
6244 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
6245 {
6246 *arg++ = NUL;
6247 eap->nextcmd = arg;
6248 break;
6249 }
6250 }
6251 arg = eap->arg;
6252
Bram Moolenaar3dbde622012-04-05 16:05:05 +02006253 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 {
6255 EMSG(_("E478: Don't panic!"));
6256 return;
6257 }
6258
6259 if (eap->skip) /* not executing commands */
6260 return;
6261 }
6262 else
6263 arg = (char_u *)"";
6264
6265 /* remove trailing blanks */
6266 p = arg + STRLEN(arg) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006267 while (p > arg && VIM_ISWHITE(*p) && p[-1] != '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 *p-- = NUL;
6269
6270#ifdef FEAT_MULTI_LANG
6271 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006272 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273#endif
6274
6275 /* When no argument given go to the index. */
6276 if (*arg == NUL)
6277 arg = (char_u *)"help.txt";
6278
6279 /*
6280 * Check if there is a match for the argument.
6281 */
6282 n = find_help_tags(arg, &num_matches, &matches,
6283 eap != NULL && eap->forceit);
6284
6285 i = 0;
6286#ifdef FEAT_MULTI_LANG
6287 if (n != FAIL && lang != NULL)
6288 /* Find first item with the requested language. */
6289 for (i = 0; i < num_matches; ++i)
6290 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006291 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 if (len > 3 && matches[i][len - 3] == '@'
6293 && STRICMP(matches[i] + len - 2, lang) == 0)
6294 break;
6295 }
6296#endif
6297 if (i >= num_matches || n == FAIL)
6298 {
6299#ifdef FEAT_MULTI_LANG
6300 if (lang != NULL)
6301 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
6302 else
6303#endif
6304 EMSG2(_("E149: Sorry, no help for %s"), arg);
6305 if (n != FAIL)
6306 FreeWild(num_matches, matches);
6307 return;
6308 }
6309
6310 /* The first match (in the requested language) is the best match. */
6311 tag = vim_strsave(matches[i]);
6312 FreeWild(num_matches, matches);
6313
6314#ifdef FEAT_GUI
6315 need_mouse_correct = TRUE;
6316#endif
6317
6318 /*
6319 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006320 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321 */
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006322 if (!bt_help(curwin->w_buffer)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006323#ifdef FEAT_WINDOWS
6324 || cmdmod.tab != 0
6325#endif
6326 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006327 {
6328#ifdef FEAT_WINDOWS
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006329 if (cmdmod.tab != 0)
6330 wp = NULL;
6331 else
Bram Moolenaar29323592016-07-24 22:04:11 +02006332 FOR_ALL_WINDOWS(wp)
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006333 if (bt_help(wp->w_buffer))
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006334 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
6336 win_enter(wp, TRUE);
6337 else
6338#endif
6339 {
6340 /*
6341 * There is no help window yet.
6342 * Try to open the file specified by the "helpfile" option.
6343 */
6344 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
6345 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00006346 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347 goto erret;
6348 }
6349 fclose(helpfd);
6350
6351#ifdef FEAT_WINDOWS
6352 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006353 * specified, the current window is vertically split and
6354 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 n = WSP_HELP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006357 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 n |= WSP_TOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006360 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006361#else
6362 /* use current window */
6363 if (!can_abandon(curbuf, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364 goto erret;
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366
6367#ifdef FEAT_WINDOWS
6368 if (curwin->w_height < p_hh)
6369 win_setheight((int)p_hh);
6370#endif
6371
6372 /*
6373 * Open help file (do_ecmd() will set b_help flag, readfile() will
6374 * set b_p_ro flag).
6375 * Set the alternate file to the previously edited file.
6376 */
6377 alt_fnum = curbuf->b_fnum;
6378 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006379 ECMD_HIDE + ECMD_SET_HELP,
6380#ifdef FEAT_WINDOWS
6381 NULL /* buffer is still open, don't store info */
6382#else
6383 curwin
6384#endif
6385 );
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006386 if (!cmdmod.keepalt)
6387 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388 empty_fnum = curbuf->b_fnum;
6389 }
6390 }
6391
6392 if (!p_im)
6393 restart_edit = 0; /* don't want insert mode in help file */
6394
Bram Moolenaar8f535582011-09-30 17:30:31 +02006395#ifdef FEAT_FOLDING
6396 /* Restore KeyTyped, setting 'filetype=help' may reset it.
6397 * It is needed for do_tag top open folds under the cursor. */
6398 KeyTyped = old_KeyTyped;
6399#endif
6400
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 if (tag != NULL)
6402 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
6403
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006404 /* Delete the empty buffer if we're not using it. Careful: autocommands
6405 * may have jumped to another window, check that the buffer is not in a
6406 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
6408 {
6409 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006410 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006411 wipe_buffer(buf, TRUE);
6412 }
6413
6414 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006415 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416 curwin->w_alt_fnum = alt_fnum;
6417
6418erret:
6419 vim_free(tag);
6420}
6421
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006422/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006423 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006424 */
6425 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006426ex_helpclose(exarg_T *eap UNUSED)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006427{
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02006428#if defined(FEAT_WINDOWS)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006429 win_T *win;
6430
6431 FOR_ALL_WINDOWS(win)
6432 {
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006433 if (bt_help(win->w_buffer))
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006434 {
6435 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006436 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006437 }
6438 }
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02006439#endif
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006440}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006442#if defined(FEAT_MULTI_LANG) || defined(PROTO)
6443/*
6444 * In an argument search for a language specifiers in the form "@xx".
6445 * Changes the "@" to NUL if found, and returns a pointer to "xx".
6446 * Returns NULL if not found.
6447 */
6448 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006449check_help_lang(char_u *arg)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006450{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006451 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006452
6453 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
6454 && ASCII_ISALPHA(arg[len - 1]))
6455 {
6456 arg[len - 3] = NUL; /* remove the '@' */
6457 return arg + len - 2;
6458 }
6459 return NULL;
6460}
6461#endif
6462
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463/*
6464 * Return a heuristic indicating how well the given string matches. The
6465 * smaller the number, the better the match. This is the order of priorities,
6466 * from best match to worst match:
6467 * - Match with least alpha-numeric characters is better.
6468 * - Match with least total characters is better.
6469 * - Match towards the start is better.
6470 * - Match starting with "+" is worse (feature instead of command)
6471 * Assumption is made that the matched_string passed has already been found to
6472 * match some string for which help is requested. webb.
6473 */
6474 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006475help_heuristic(
6476 char_u *matched_string,
6477 int offset, /* offset for match */
6478 int wrong_case) /* no matching case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479{
6480 int num_letters;
6481 char_u *p;
6482
6483 num_letters = 0;
6484 for (p = matched_string; *p; p++)
6485 if (ASCII_ISALNUM(*p))
6486 num_letters++;
6487
6488 /*
6489 * Multiply the number of letters by 100 to give it a much bigger
6490 * weighting than the number of characters.
6491 * If there only is a match while ignoring case, add 5000.
6492 * If the match starts in the middle of a word, add 10000 to put it
6493 * somewhere in the last half.
6494 * If the match is more than 2 chars from the start, multiply by 200 to
6495 * put it after matches at the start.
6496 */
6497 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
6498 && ASCII_ISALNUM(matched_string[offset - 1]))
6499 offset += 10000;
6500 else if (offset > 2)
6501 offset *= 200;
6502 if (wrong_case)
6503 offset += 5000;
6504 /* Features are less interesting than the subjects themselves, but "+"
6505 * alone is not a feature. */
6506 if (matched_string[0] == '+' && matched_string[1] != NUL)
6507 offset += 100;
6508 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
6509}
6510
6511/*
6512 * Compare functions for qsort() below, that checks the help heuristics number
6513 * that has been put after the tagname by find_tags().
6514 */
6515 static int
6516#ifdef __BORLANDC__
6517_RTLENTRYF
6518#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006519help_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520{
6521 char *p1;
6522 char *p2;
6523
6524 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
6525 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
6526 return strcmp(p1, p2);
6527}
6528
6529/*
6530 * Find all help tags matching "arg", sort them and return in matches[], with
6531 * the number of matches in num_matches.
6532 * The matches will be sorted with a "best" match algorithm.
6533 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6534 */
6535 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006536find_help_tags(
6537 char_u *arg,
6538 int *num_matches,
6539 char_u ***matches,
6540 int keep_lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541{
6542 char_u *s, *d;
6543 int i;
6544 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006545 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006546 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaardad73092017-02-09 11:54:50 +01006547 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006548 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006549 "[count]", "[quotex]",
6550 "[range]", ":[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006551 "[pattern]", "\\|", "\\%$",
6552 "s/\\~", "s/\\U", "s/\\L",
6553 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006554 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006555 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006556 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaardad73092017-02-09 11:54:50 +01006557 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006558 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006559 "\\[count]", "\\[quotex]",
6560 "\\[range]", ":\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006561 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006562 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006563 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564 int flags;
6565
6566 d = IObuff; /* assume IObuff is long enough! */
6567
6568 /*
6569 * Recognize a few exceptions to the rule. Some strings that contain '*'
6570 * with "star". Otherwise '*' is recognized as a wildcard.
6571 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006572 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573 if (STRCMP(arg, mtable[i]) == 0)
6574 {
6575 STRCPY(d, rtable[i]);
6576 break;
6577 }
6578
6579 if (i < 0) /* no match in table */
6580 {
6581 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6582 * Also replace "\%^" and "\%(", they match every tag too.
6583 * Also "\zs", "\z1", etc.
6584 * Also "\@<", "\@=", "\@<=", etc.
6585 * And also "\_$" and "\_^". */
6586 if (arg[0] == '\\'
6587 && ((arg[1] != NUL && arg[2] == NUL)
6588 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6589 && arg[2] != NUL)))
6590 {
6591 STRCPY(d, "/\\\\");
6592 STRCPY(d + 3, arg + 1);
6593 /* Check for "/\\_$", should be "/\\_\$" */
6594 if (d[3] == '_' && d[4] == '$')
6595 STRCPY(d + 4, "\\$");
6596 }
6597 else
6598 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006599 /* Replace:
6600 * "[:...:]" with "\[:...:]"
6601 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006602 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006603 */
6604 if ((arg[0] == '[' && (arg[1] == ':'
6605 || (arg[1] == '+' && arg[2] == '+')))
6606 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006607 *d++ = '\\';
6608
Bram Moolenaar00f9e0d2016-03-15 13:44:12 +01006609 /*
6610 * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'.
6611 */
6612 if (*arg == '(' && arg[1] == '\'')
6613 arg++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614 for (s = arg; *s; ++s)
6615 {
6616 /*
6617 * Replace "|" with "bar" and '"' with "quote" to match the name of
6618 * the tags for these commands.
6619 * Replace "*" with ".*" and "?" with "." to match command line
6620 * completion.
6621 * Insert a backslash before '~', '$' and '.' to avoid their
6622 * special meaning.
6623 */
6624 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6625 break;
6626 switch (*s)
6627 {
6628 case '|': STRCPY(d, "bar");
6629 d += 3;
6630 continue;
6631 case '"': STRCPY(d, "quote");
6632 d += 5;
6633 continue;
6634 case '*': *d++ = '.';
6635 break;
6636 case '?': *d++ = '.';
6637 continue;
6638 case '$':
6639 case '.':
6640 case '~': *d++ = '\\';
6641 break;
6642 }
6643
6644 /*
6645 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6646 * ":help i_^_CTRL-D" work.
6647 * Insert '-' before and after "CTRL-X" when applicable.
6648 */
6649 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6650 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6651 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006652 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6653 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654 STRCPY(d, "CTRL-");
6655 d += 5;
6656 if (*s < ' ')
6657 {
6658#ifdef EBCDIC
6659 *d++ = CtrlChar(*s);
6660#else
6661 *d++ = *s + '@';
6662#endif
6663 if (d[-1] == '\\')
6664 *d++ = '\\'; /* double a backslash */
6665 }
6666 else
6667 *d++ = *++s;
6668 if (s[1] != NUL && s[1] != '_')
6669 *d++ = '_'; /* append a '_' */
6670 continue;
6671 }
6672 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6673 *d++ = '\\';
6674
6675 /*
6676 * Insert a backslash before a backslash after a slash, for search
6677 * pattern tags: "/\|" --> "/\\|".
6678 */
6679 else if (s[0] == '\\' && s[1] != '\\'
6680 && *arg == '/' && s == arg + 1)
6681 *d++ = '\\';
6682
6683 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6684 * "CTRL-\_CTRL-N" */
6685 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6686 {
6687 STRCPY(d, "CTRL-\\\\");
6688 d += 7;
6689 s += 6;
6690 }
6691
6692 *d++ = *s;
6693
6694 /*
Bram Moolenaar81edd172016-04-14 13:51:37 +02006695 * If tag contains "({" or "([", tag terminates at the "(".
6696 * This is for help on functions, e.g.: abs({expr}).
6697 */
6698 if (*s == '(' && (s[1] == '{' || s[1] =='['))
6699 break;
6700
6701 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006702 * If tag starts with ', toss everything after a second '. Fixes
6703 * CTRL-] on 'option'. (would include the trailing '.').
6704 */
6705 if (*s == '\'' && s > arg && *arg == '\'')
6706 break;
Bram Moolenaar28b942a2016-06-04 22:31:27 +02006707 /* Also '{' and '}'. */
6708 if (*s == '}' && s > arg && *arg == '{')
6709 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006710 }
6711 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006712
6713 if (*IObuff == '`')
6714 {
6715 if (d > IObuff + 2 && d[-1] == '`')
6716 {
6717 /* remove the backticks from `command` */
6718 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6719 d[-2] = NUL;
6720 }
6721 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6722 {
6723 /* remove the backticks and comma from `command`, */
6724 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6725 d[-3] = NUL;
6726 }
6727 else if (d > IObuff + 4 && d[-3] == '`'
6728 && d[-2] == '\\' && d[-1] == '.')
6729 {
6730 /* remove the backticks and dot from `command`\. */
6731 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6732 d[-4] = NUL;
6733 }
6734 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735 }
6736 }
6737
6738 *matches = (char_u **)"";
6739 *num_matches = 0;
6740 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6741 if (keep_lang)
6742 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006743 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006744 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006745 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 /* Sort the matches found on the heuristic number that is after the
6747 * tag name. */
6748 qsort((void *)*matches, (size_t)*num_matches,
6749 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006750 /* Delete more than TAG_MANY to reduce the size of the listing. */
6751 while (*num_matches > TAG_MANY)
6752 vim_free((*matches)[--*num_matches]);
6753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754 return OK;
6755}
6756
6757/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006758 * Called when starting to edit a buffer for a help file.
6759 */
6760 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006761prepare_help_buffer(void)
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006762{
6763 char_u *p;
6764
6765 curbuf->b_help = TRUE;
6766#ifdef FEAT_QUICKFIX
6767 set_string_option_direct((char_u *)"buftype", -1,
6768 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6769#endif
6770
6771 /*
6772 * Always set these options after jumping to a help tag, because the
6773 * user may have an autocommand that gets in the way.
6774 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6775 * latin1 word characters (for translated help files).
6776 * Only set it when needed, buf_init_chartab() is some work.
6777 */
6778 p =
6779#ifdef EBCDIC
6780 (char_u *)"65-255,^*,^|,^\"";
6781#else
6782 (char_u *)"!-~,^*,^|,^\",192-255";
6783#endif
6784 if (STRCMP(curbuf->b_p_isk, p) != 0)
6785 {
6786 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6787 check_buf_options(curbuf);
6788 (void)buf_init_chartab(curbuf, FALSE);
6789 }
6790
Bram Moolenaar0b105412014-11-30 13:34:23 +01006791#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006792 /* Don't use the global foldmethod.*/
6793 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6794 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006795#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006796
6797 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6798 curwin->w_p_list = FALSE; /* no list mode */
6799
6800 curbuf->b_p_ma = FALSE; /* not modifiable */
6801 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6802 curwin->w_p_nu = 0; /* no line numbers */
6803 curwin->w_p_rnu = 0; /* no relative line numbers */
6804 RESET_BINDING(curwin); /* no scroll or cursor binding */
6805#ifdef FEAT_ARABIC
6806 curwin->w_p_arab = FALSE; /* no arabic mode */
6807#endif
6808#ifdef FEAT_RIGHTLEFT
6809 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6810#endif
6811#ifdef FEAT_FOLDING
6812 curwin->w_p_fen = FALSE; /* No folding in the help window */
6813#endif
6814#ifdef FEAT_DIFF
6815 curwin->w_p_diff = FALSE; /* No 'diff' */
6816#endif
6817#ifdef FEAT_SPELL
6818 curwin->w_p_spell = FALSE; /* No spell checking */
6819#endif
6820
6821 set_buflisted(FALSE);
6822}
6823
6824/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825 * After reading a help file: May cleanup a help buffer when syntax
6826 * highlighting is not used.
6827 */
6828 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006829fix_help_buffer(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006830{
6831 linenr_T lnum;
6832 char_u *line;
6833 int in_example = FALSE;
6834 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006835 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836 char_u *p;
6837 char_u *rt;
6838 int mustfree;
6839
Bram Moolenaar157069b2017-06-22 14:56:12 +02006840#ifdef FEAT_AUTOCMD
Bram Moolenaar90492982017-06-22 14:16:31 +02006841 /* Set filetype to "help" if still needed. */
6842 if (STRCMP(curbuf->b_p_ft, "help") != 0)
Bram Moolenaar18141832017-06-25 21:17:25 +02006843 {
6844 ++curbuf_lock;
Bram Moolenaar90492982017-06-22 14:16:31 +02006845 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
Bram Moolenaar18141832017-06-25 21:17:25 +02006846 --curbuf_lock;
6847 }
Bram Moolenaar157069b2017-06-22 14:56:12 +02006848#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006849
6850#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006851 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006852#endif
6853 {
6854 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6855 {
6856 line = ml_get_buf(curbuf, lnum, FALSE);
6857 len = (int)STRLEN(line);
Bram Moolenaar1c465442017-03-12 20:10:05 +01006858 if (in_example && len > 0 && !VIM_ISWHITE(line[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859 {
6860 /* End of example: non-white or '<' in first column. */
6861 if (line[0] == '<')
6862 {
6863 /* blank-out a '<' in the first column */
6864 line = ml_get_buf(curbuf, lnum, TRUE);
6865 line[0] = ' ';
6866 }
6867 in_example = FALSE;
6868 }
6869 if (!in_example && len > 0)
6870 {
6871 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6872 {
6873 /* blank-out a '>' in the last column (start of example) */
6874 line = ml_get_buf(curbuf, lnum, TRUE);
6875 line[len - 1] = ' ';
6876 in_example = TRUE;
6877 }
6878 else if (line[len - 1] == '~')
6879 {
6880 /* blank-out a '~' at the end of line (header marker) */
6881 line = ml_get_buf(curbuf, lnum, TRUE);
6882 line[len - 1] = ' ';
6883 }
6884 }
6885 }
6886 }
6887
6888 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006889 * In the "help.txt" and "help.abx" file, add the locally added help
6890 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006892 fname = gettail(curbuf->b_fname);
6893 if (fnamecmp(fname, "help.txt") == 0
6894#ifdef FEAT_MULTI_LANG
6895 || (fnamencmp(fname, "help.", 5) == 0
6896 && ASCII_ISALPHA(fname[5])
6897 && ASCII_ISALPHA(fname[6])
6898 && TOLOWER_ASC(fname[7]) == 'x'
6899 && fname[8] == NUL)
6900#endif
6901 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006902 {
6903 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6904 {
6905 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006906 if (strstr((char *)line, "*local-additions*") == NULL)
6907 continue;
6908
6909 /* Go through all directories in 'runtimepath', skipping
6910 * $VIMRUNTIME. */
6911 p = p_rtp;
6912 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006914 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6915 mustfree = FALSE;
6916 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
6917 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006918 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006919 int fcount;
6920 char_u **fnames;
6921 FILE *fd;
6922 char_u *s;
6923 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006925 vimconv_T vc;
6926 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927#endif
6928
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006929 /* Find all "doc/ *.txt" files in this directory. */
6930 add_pathsep(NameBuff);
6931#ifdef FEAT_MULTI_LANG
6932 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006934 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006936 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6937 &fnames, EW_FILE|EW_SILENT) == OK
6938 && fcount > 0)
6939 {
6940#ifdef FEAT_MULTI_LANG
6941 int i1;
6942 int i2;
6943 char_u *f1;
6944 char_u *f2;
6945 char_u *t1;
6946 char_u *e1;
6947 char_u *e2;
6948
6949 /* If foo.abx is found use it instead of foo.txt in
6950 * the same directory. */
6951 for (i1 = 0; i1 < fcount; ++i1)
6952 {
6953 for (i2 = 0; i2 < fcount; ++i2)
6954 {
6955 if (i1 == i2)
6956 continue;
6957 if (fnames[i1] == NULL || fnames[i2] == NULL)
6958 continue;
6959 f1 = fnames[i1];
6960 f2 = fnames[i2];
6961 t1 = gettail(f1);
6962 if (fnamencmp(f1, f2, t1 - f1) != 0)
6963 continue;
6964 e1 = vim_strrchr(t1, '.');
6965 e2 = vim_strrchr(gettail(f2), '.');
Bram Moolenaar7756e742016-10-21 20:35:37 +02006966 if (e1 == NULL || e2 == NULL)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006967 continue;
6968 if (fnamecmp(e1, ".txt") != 0
6969 && fnamecmp(e1, fname + 4) != 0)
6970 {
6971 /* Not .txt and not .abx, remove it. */
6972 vim_free(fnames[i1]);
6973 fnames[i1] = NULL;
6974 continue;
6975 }
6976 if (fnamencmp(f1, f2, e1 - f1) != 0)
6977 continue;
6978 if (fnamecmp(e1, ".txt") == 0
6979 && fnamecmp(e2, fname + 4) == 0)
6980 {
6981 /* use .abx instead of .txt */
6982 vim_free(fnames[i1]);
6983 fnames[i1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984 }
6985 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006987#endif
6988 for (fi = 0; fi < fcount; ++fi)
6989 {
6990 if (fnames[fi] == NULL)
6991 continue;
6992 fd = mch_fopen((char *)fnames[fi], "r");
6993 if (fd != NULL)
6994 {
6995 vim_fgets(IObuff, IOSIZE, fd);
6996 if (IObuff[0] == '*'
6997 && (s = vim_strchr(IObuff + 1, '*'))
6998 != NULL)
6999 {
7000#ifdef FEAT_MBYTE
7001 int this_utf = MAYBE;
7002#endif
7003 /* Change tag definition to a
7004 * reference and remove <CR>/<NL>. */
7005 IObuff[0] = '|';
7006 *s = '|';
7007 while (*s != NUL)
7008 {
7009 if (*s == '\r' || *s == '\n')
7010 *s = NUL;
7011#ifdef FEAT_MBYTE
7012 /* The text is utf-8 when a byte
7013 * above 127 is found and no
7014 * illegal byte sequence is found.
7015 */
7016 if (*s >= 0x80 && this_utf != FALSE)
7017 {
7018 int l;
7019
7020 this_utf = TRUE;
7021 l = utf_ptr2len(s);
7022 if (l == 1)
7023 this_utf = FALSE;
7024 s += l - 1;
7025 }
7026#endif
7027 ++s;
7028 }
7029#ifdef FEAT_MBYTE
7030 /* The help file is latin1 or utf-8;
7031 * conversion to the current
7032 * 'encoding' may be required. */
7033 vc.vc_type = CONV_NONE;
7034 convert_setup(&vc, (char_u *)(
7035 this_utf == TRUE ? "utf-8"
7036 : "latin1"), p_enc);
7037 if (vc.vc_type == CONV_NONE)
7038 /* No conversion needed. */
7039 cp = IObuff;
7040 else
7041 {
7042 /* Do the conversion. If it fails
7043 * use the unconverted text. */
7044 cp = string_convert(&vc, IObuff,
7045 NULL);
7046 if (cp == NULL)
7047 cp = IObuff;
7048 }
7049 convert_setup(&vc, NULL, NULL);
7050
7051 ml_append(lnum, cp, (colnr_T)0, FALSE);
7052 if (cp != IObuff)
7053 vim_free(cp);
7054#else
7055 ml_append(lnum, IObuff, (colnr_T)0,
7056 FALSE);
7057#endif
7058 ++lnum;
7059 }
7060 fclose(fd);
7061 }
7062 }
7063 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007066 if (mustfree)
7067 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007069 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070 }
7071 }
7072}
7073
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007074/*
7075 * ":exusage"
7076 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007077 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007078ex_exusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007079{
7080 do_cmdline_cmd((char_u *)"help ex-cmd-index");
7081}
7082
7083/*
7084 * ":viusage"
7085 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007086 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007087ex_viusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007088{
7089 do_cmdline_cmd((char_u *)"help normal-index");
7090}
7091
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092/*
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007093 * Generate tags in one help directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007094 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007096helptags_one(
7097 char_u *dir, /* doc directory */
7098 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */
7099 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */
7100 int add_help_tags) /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007101{
7102 FILE *fd_tags;
7103 FILE *fd;
7104 garray_T ga;
7105 int filecount;
7106 char_u **files;
7107 char_u *p1, *p2;
7108 int fi;
7109 char_u *s;
7110 int i;
7111 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007112 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007113# ifdef FEAT_MBYTE
7114 int utf8 = MAYBE;
7115 int this_utf8;
7116 int firstline;
7117 int mix = FALSE; /* detected mixed encodings */
7118# endif
7119
7120 /*
7121 * Find all *.txt files.
7122 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01007123 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007125 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 STRCAT(NameBuff, ext);
7127 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7128 EW_FILE|EW_SILENT) == FAIL
7129 || filecount == 0)
7130 {
7131 if (!got_int)
Bram Moolenaar5b302912016-08-24 22:11:55 +02007132 EMSG2(_("E151: No match: %s"), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007133 return;
7134 }
7135
7136 /*
7137 * Open the tags file for writing.
7138 * Do this before scanning through all the files.
7139 */
7140 STRCPY(NameBuff, dir);
7141 add_pathsep(NameBuff);
7142 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007143 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007144 if (fd_tags == NULL)
7145 {
7146 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
7147 FreeWild(filecount, files);
7148 return;
7149 }
7150
7151 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007152 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
7153 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 */
7155 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007156 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
7157 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007158 {
7159 if (ga_grow(&ga, 1) == FAIL)
7160 got_int = TRUE;
7161 else
7162 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007163 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007164 if (s == NULL)
7165 got_int = TRUE;
7166 else
7167 {
7168 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
7169 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7170 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171 }
7172 }
7173 }
7174
7175 /*
7176 * Go over all the files and extract the tags.
7177 */
7178 for (fi = 0; fi < filecount && !got_int; ++fi)
7179 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007180 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 if (fd == NULL)
7182 {
7183 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
7184 continue;
7185 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007186 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007187
7188# ifdef FEAT_MBYTE
7189 firstline = TRUE;
7190# endif
7191 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
7192 {
7193# ifdef FEAT_MBYTE
7194 if (firstline)
7195 {
7196 /* Detect utf-8 file by a non-ASCII char in the first line. */
7197 this_utf8 = MAYBE;
7198 for (s = IObuff; *s != NUL; ++s)
7199 if (*s >= 0x80)
7200 {
7201 int l;
7202
7203 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007204 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205 if (l == 1)
7206 {
7207 /* Illegal UTF-8 byte sequence. */
7208 this_utf8 = FALSE;
7209 break;
7210 }
7211 s += l - 1;
7212 }
7213 if (this_utf8 == MAYBE) /* only ASCII characters found */
7214 this_utf8 = FALSE;
7215 if (utf8 == MAYBE) /* first file */
7216 utf8 = this_utf8;
7217 else if (utf8 != this_utf8)
7218 {
7219 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
7220 mix = !got_int;
7221 got_int = TRUE;
7222 }
7223 firstline = FALSE;
7224 }
7225# endif
7226 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
7227 while (p1 != NULL)
7228 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02007229 /* Use vim_strbyte() instead of vim_strchr() so that when
7230 * 'encoding' is dbcs it still works, don't find '*' in the
7231 * second byte. */
7232 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007233 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
7234 {
7235 for (s = p1 + 1; s < p2; ++s)
7236 if (*s == ' ' || *s == '\t' || *s == '|')
7237 break;
7238
7239 /*
7240 * Only accept a *tag* when it consists of valid
7241 * characters, there is white space before it and is
7242 * followed by a white character or end-of-line.
7243 */
7244 if (s == p2
7245 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
7246 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
7247 || s[1] == '\0'))
7248 {
7249 *p2 = '\0';
7250 ++p1;
7251 if (ga_grow(&ga, 1) == FAIL)
7252 {
7253 got_int = TRUE;
7254 break;
7255 }
7256 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
7257 if (s == NULL)
7258 {
7259 got_int = TRUE;
7260 break;
7261 }
7262 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7263 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264 sprintf((char *)s, "%s\t%s", p1, fname);
7265
7266 /* find next '*' */
7267 p2 = vim_strchr(p2 + 1, '*');
7268 }
7269 }
7270 p1 = p2;
7271 }
7272 line_breakcheck();
7273 }
7274
7275 fclose(fd);
7276 }
7277
7278 FreeWild(filecount, files);
7279
7280 if (!got_int)
7281 {
7282 /*
7283 * Sort the tags.
7284 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02007285 if (ga.ga_data != NULL)
7286 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007287
7288 /*
7289 * Check for duplicates.
7290 */
7291 for (i = 1; i < ga.ga_len; ++i)
7292 {
7293 p1 = ((char_u **)ga.ga_data)[i - 1];
7294 p2 = ((char_u **)ga.ga_data)[i];
7295 while (*p1 == *p2)
7296 {
7297 if (*p2 == '\t')
7298 {
7299 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007300 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007301 _("E154: Duplicate tag \"%s\" in file %s/%s"),
7302 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
7303 EMSG(NameBuff);
7304 *p2 = '\t';
7305 break;
7306 }
7307 ++p1;
7308 ++p2;
7309 }
7310 }
7311
7312# ifdef FEAT_MBYTE
7313 if (utf8 == TRUE)
7314 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
7315# endif
7316
7317 /*
7318 * Write the tags into the file.
7319 */
7320 for (i = 0; i < ga.ga_len; ++i)
7321 {
7322 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00007323 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007324 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00007325 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007326 else
7327 {
7328 fprintf(fd_tags, "%s\t/*", s);
7329 for (p1 = s; *p1 != '\t'; ++p1)
7330 {
7331 /* insert backslash before '\\' and '/' */
7332 if (*p1 == '\\' || *p1 == '/')
7333 putc('\\', fd_tags);
7334 putc(*p1, fd_tags);
7335 }
7336 fprintf(fd_tags, "*\n");
7337 }
7338 }
7339 }
7340#ifdef FEAT_MBYTE
7341 if (mix)
7342 got_int = FALSE; /* continue with other languages */
7343#endif
7344
7345 for (i = 0; i < ga.ga_len; ++i)
7346 vim_free(((char_u **)ga.ga_data)[i]);
7347 ga_clear(&ga);
7348 fclose(fd_tags); /* there is no check for an error... */
7349}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007351/*
7352 * Generate tags in one help directory, taking care of translations.
7353 */
7354 static void
7355do_helptags(char_u *dirname, int add_help_tags)
7356{
7357#ifdef FEAT_MULTI_LANG
7358 int len;
7359 int i, j;
7360 garray_T ga;
7361 char_u lang[2];
7362 char_u ext[5];
7363 char_u fname[8];
7364 int filecount;
7365 char_u **files;
7366
7367 /* Get a list of all files in the help directory and in subdirectories. */
7368 STRCPY(NameBuff, dirname);
7369 add_pathsep(NameBuff);
7370 STRCAT(NameBuff, "**");
7371 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7372 EW_FILE|EW_SILENT) == FAIL
7373 || filecount == 0)
7374 {
Bram Moolenaar5b302912016-08-24 22:11:55 +02007375 EMSG2(_("E151: No match: %s"), NameBuff);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007376 return;
7377 }
7378
7379 /* Go over all files in the directory to find out what languages are
7380 * present. */
7381 ga_init2(&ga, 1, 10);
7382 for (i = 0; i < filecount; ++i)
7383 {
7384 len = (int)STRLEN(files[i]);
7385 if (len > 4)
7386 {
7387 if (STRICMP(files[i] + len - 4, ".txt") == 0)
7388 {
7389 /* ".txt" -> language "en" */
7390 lang[0] = 'e';
7391 lang[1] = 'n';
7392 }
7393 else if (files[i][len - 4] == '.'
7394 && ASCII_ISALPHA(files[i][len - 3])
7395 && ASCII_ISALPHA(files[i][len - 2])
7396 && TOLOWER_ASC(files[i][len - 1]) == 'x')
7397 {
7398 /* ".abx" -> language "ab" */
7399 lang[0] = TOLOWER_ASC(files[i][len - 3]);
7400 lang[1] = TOLOWER_ASC(files[i][len - 2]);
7401 }
7402 else
7403 continue;
7404
7405 /* Did we find this language already? */
7406 for (j = 0; j < ga.ga_len; j += 2)
7407 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
7408 break;
7409 if (j == ga.ga_len)
7410 {
7411 /* New language, add it. */
7412 if (ga_grow(&ga, 2) == FAIL)
7413 break;
7414 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
7415 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
7416 }
7417 }
7418 }
7419
7420 /*
7421 * Loop over the found languages to generate a tags file for each one.
7422 */
7423 for (j = 0; j < ga.ga_len; j += 2)
7424 {
7425 STRCPY(fname, "tags-xx");
7426 fname[5] = ((char_u *)ga.ga_data)[j];
7427 fname[6] = ((char_u *)ga.ga_data)[j + 1];
7428 if (fname[5] == 'e' && fname[6] == 'n')
7429 {
7430 /* English is an exception: use ".txt" and "tags". */
7431 fname[4] = NUL;
7432 STRCPY(ext, ".txt");
7433 }
7434 else
7435 {
7436 /* Language "ab" uses ".abx" and "tags-ab". */
7437 STRCPY(ext, ".xxx");
7438 ext[1] = fname[5];
7439 ext[2] = fname[6];
7440 }
7441 helptags_one(dirname, ext, fname, add_help_tags);
7442 }
7443
7444 ga_clear(&ga);
7445 FreeWild(filecount, files);
7446
7447#else
7448 /* No language support, just use "*.txt" and "tags". */
7449 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
7450#endif
7451}
7452
7453 static void
7454helptags_cb(char_u *fname, void *cookie)
7455{
7456 do_helptags(fname, *(int *)cookie);
7457}
7458
7459/*
7460 * ":helptags"
7461 */
7462 void
7463ex_helptags(exarg_T *eap)
7464{
7465 expand_T xpc;
7466 char_u *dirname;
7467 int add_help_tags = FALSE;
7468
7469 /* Check for ":helptags ++t {dir}". */
Bram Moolenaar1c465442017-03-12 20:10:05 +01007470 if (STRNCMP(eap->arg, "++t", 3) == 0 && VIM_ISWHITE(eap->arg[3]))
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007471 {
7472 add_help_tags = TRUE;
7473 eap->arg = skipwhite(eap->arg + 3);
7474 }
7475
7476 if (STRCMP(eap->arg, "ALL") == 0)
7477 {
7478 do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR,
7479 helptags_cb, &add_help_tags);
7480 }
7481 else
7482 {
7483 ExpandInit(&xpc);
7484 xpc.xp_context = EXPAND_DIRECTORIES;
7485 dirname = ExpandOne(&xpc, eap->arg, NULL,
7486 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
7487 if (dirname == NULL || !mch_isdir(dirname))
7488 EMSG2(_("E150: Not a directory: %s"), eap->arg);
7489 else
7490 do_helptags(dirname, add_help_tags);
7491 vim_free(dirname);
7492 }
7493}
7494
Bram Moolenaar071d4272004-06-13 20:20:40 +00007495#if defined(FEAT_SIGNS) || defined(PROTO)
7496
7497/*
7498 * Struct to hold the sign properties.
7499 */
7500typedef struct sign sign_T;
7501
7502struct sign
7503{
7504 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02007505 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007506 char_u *sn_name; /* name of sign */
7507 char_u *sn_icon; /* name of pixmap */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007508# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007509 void *sn_image; /* icon image */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007510# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007511 char_u *sn_text; /* text used instead of pixmap */
7512 int sn_line_hl; /* highlight ID for line */
7513 int sn_text_hl; /* highlight ID for text */
7514};
7515
Bram Moolenaar071d4272004-06-13 20:20:40 +00007516static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007517static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007518
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01007519static int sign_cmd_idx(char_u *begin_cmd, char_u *end_cmd);
7520static void sign_list_defined(sign_T *sp);
7521static void sign_undefine(sign_T *sp, sign_T *sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007522
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007523static char *cmds[] = {
7524 "define",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007525# define SIGNCMD_DEFINE 0
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007526 "undefine",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007527# define SIGNCMD_UNDEFINE 1
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007528 "list",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007529# define SIGNCMD_LIST 2
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007530 "place",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007531# define SIGNCMD_PLACE 3
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007532 "unplace",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007533# define SIGNCMD_UNPLACE 4
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007534 "jump",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007535# define SIGNCMD_JUMP 5
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007536 NULL
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007537# define SIGNCMD_LAST 6
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007538};
7539
7540/*
7541 * Find index of a ":sign" subcmd from its name.
7542 * "*end_cmd" must be writable.
7543 */
7544 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007545sign_cmd_idx(
7546 char_u *begin_cmd, /* begin of sign subcmd */
7547 char_u *end_cmd) /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007548{
7549 int idx;
7550 char save = *end_cmd;
7551
7552 *end_cmd = NUL;
7553 for (idx = 0; ; ++idx)
7554 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
7555 break;
7556 *end_cmd = save;
7557 return idx;
7558}
7559
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560/*
7561 * ":sign" command
7562 */
7563 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007564ex_sign(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007565{
7566 char_u *arg = eap->arg;
7567 char_u *p;
7568 int idx;
7569 sign_T *sp;
7570 sign_T *sp_prev;
7571 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007572
7573 /* Parse the subcommand. */
7574 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007575 idx = sign_cmd_idx(arg, p);
7576 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007577 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007578 EMSG2(_("E160: Unknown sign command: %s"), arg);
7579 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007580 }
7581 arg = skipwhite(p);
7582
7583 if (idx <= SIGNCMD_LIST)
7584 {
7585 /*
7586 * Define, undefine or list signs.
7587 */
7588 if (idx == SIGNCMD_LIST && *arg == NUL)
7589 {
7590 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007591 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592 sign_list_defined(sp);
7593 }
7594 else if (*arg == NUL)
7595 EMSG(_("E156: Missing sign name"));
7596 else
7597 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007598 /* Isolate the sign name. If it's a number skip leading zeroes,
7599 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007600 p = skiptowhite(arg);
7601 if (*p != NUL)
7602 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007603 while (arg[0] == '0' && arg[1] != NUL)
7604 ++arg;
7605
Bram Moolenaar071d4272004-06-13 20:20:40 +00007606 sp_prev = NULL;
7607 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7608 {
7609 if (STRCMP(sp->sn_name, arg) == 0)
7610 break;
7611 sp_prev = sp;
7612 }
7613 if (idx == SIGNCMD_DEFINE)
7614 {
7615 /* ":sign define {name} ...": define a sign */
7616 if (sp == NULL)
7617 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007618 sign_T *lp;
7619 int start = next_sign_typenr;
7620
Bram Moolenaar071d4272004-06-13 20:20:40 +00007621 /* Allocate a new sign. */
7622 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7623 if (sp == NULL)
7624 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007625
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007626 /* Check that next_sign_typenr is not already being used.
7627 * This only happens after wrapping around. Hopefully
7628 * another one got deleted and we can use its number. */
7629 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007630 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007631 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007632 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007633 ++next_sign_typenr;
7634 if (next_sign_typenr == MAX_TYPENR)
7635 next_sign_typenr = 1;
7636 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007638 vim_free(sp);
7639 EMSG(_("E612: Too many signs defined"));
7640 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007642 lp = first_sign; /* start all over */
7643 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007644 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007645 lp = lp->sn_next;
7646 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007647
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007648 sp->sn_typenr = next_sign_typenr;
7649 if (++next_sign_typenr == MAX_TYPENR)
7650 next_sign_typenr = 1; /* wrap around */
7651
7652 sp->sn_name = vim_strsave(arg);
7653 if (sp->sn_name == NULL) /* out of memory */
7654 {
7655 vim_free(sp);
7656 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007657 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007658
7659 /* add the new sign to the list of signs */
7660 if (sp_prev == NULL)
7661 first_sign = sp;
7662 else
7663 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007664 }
7665
7666 /* set values for a defined sign. */
7667 for (;;)
7668 {
7669 arg = skipwhite(p);
7670 if (*arg == NUL)
7671 break;
7672 p = skiptowhite_esc(arg);
7673 if (STRNCMP(arg, "icon=", 5) == 0)
7674 {
7675 arg += 5;
7676 vim_free(sp->sn_icon);
7677 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7678 backslash_halve(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007679# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007680 if (gui.in_use)
7681 {
7682 out_flush();
7683 if (sp->sn_image != NULL)
7684 gui_mch_destroy_sign(sp->sn_image);
7685 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7686 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007687# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007688 }
7689 else if (STRNCMP(arg, "text=", 5) == 0)
7690 {
7691 char_u *s;
7692 int cells;
7693 int len;
7694
7695 arg += 5;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007696# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007697 /* Count cells and check for non-printable chars */
7698 if (has_mbyte)
7699 {
7700 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007701 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007702 {
7703 if (!vim_isprintc((*mb_ptr2char)(s)))
7704 break;
7705 cells += (*mb_ptr2cells)(s);
7706 }
7707 }
7708 else
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007709# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007710 {
7711 for (s = arg; s < p; ++s)
7712 if (!vim_isprintc(*s))
7713 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007714 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007715 }
7716 /* Currently must be one or two display cells */
7717 if (s != p || cells < 1 || cells > 2)
7718 {
7719 *p = NUL;
7720 EMSG2(_("E239: Invalid sign text: %s"), arg);
7721 return;
7722 }
7723
7724 vim_free(sp->sn_text);
7725 /* Allocate one byte more if we need to pad up
7726 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007727 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007728 sp->sn_text = vim_strnsave(arg, len);
7729
7730 if (sp->sn_text != NULL && cells == 1)
7731 STRCPY(sp->sn_text + len - 1, " ");
7732 }
7733 else if (STRNCMP(arg, "linehl=", 7) == 0)
7734 {
7735 arg += 7;
7736 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7737 }
7738 else if (STRNCMP(arg, "texthl=", 7) == 0)
7739 {
7740 arg += 7;
7741 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7742 }
7743 else
7744 {
7745 EMSG2(_(e_invarg2), arg);
7746 return;
7747 }
7748 }
7749 }
7750 else if (sp == NULL)
7751 EMSG2(_("E155: Unknown sign: %s"), arg);
7752 else if (idx == SIGNCMD_LIST)
7753 /* ":sign list {name}" */
7754 sign_list_defined(sp);
7755 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007756 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007757 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007758 }
7759 }
7760 else
7761 {
7762 int id = -1;
7763 linenr_T lnum = -1;
7764 char_u *sign_name = NULL;
7765 char_u *arg1;
7766
7767 if (*arg == NUL)
7768 {
7769 if (idx == SIGNCMD_PLACE)
7770 {
7771 /* ":sign place": list placed signs in all buffers */
7772 sign_list_placed(NULL);
7773 }
7774 else if (idx == SIGNCMD_UNPLACE)
7775 {
7776 /* ":sign unplace": remove placed sign at cursor */
7777 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7778 if (id > 0)
7779 {
7780 buf_delsign(curwin->w_buffer, id);
7781 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7782 }
7783 else
7784 EMSG(_("E159: Missing sign number"));
7785 }
7786 else
7787 EMSG(_(e_argreq));
7788 return;
7789 }
7790
7791 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7792 {
7793 /* ":sign unplace *": remove all placed signs */
7794 buf_delete_all_signs();
7795 return;
7796 }
7797
7798 /* first arg could be placed sign id */
7799 arg1 = arg;
7800 if (VIM_ISDIGIT(*arg))
7801 {
7802 id = getdigits(&arg);
Bram Moolenaar1c465442017-03-12 20:10:05 +01007803 if (!VIM_ISWHITE(*arg) && *arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007804 {
7805 id = -1;
7806 arg = arg1;
7807 }
7808 else
7809 {
7810 arg = skipwhite(arg);
7811 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7812 {
7813 /* ":sign unplace {id}": remove placed sign by number */
Bram Moolenaar29323592016-07-24 22:04:11 +02007814 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007815 if ((lnum = buf_delsign(buf, id)) != 0)
7816 update_debug_sign(buf, lnum);
7817 return;
7818 }
7819 }
7820 }
7821
7822 /*
7823 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7824 * Leave "arg" pointing to {fname}.
7825 */
7826 for (;;)
7827 {
7828 if (STRNCMP(arg, "line=", 5) == 0)
7829 {
7830 arg += 5;
7831 lnum = atoi((char *)arg);
7832 arg = skiptowhite(arg);
7833 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007834 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7835 {
7836 if (id != -1)
7837 {
7838 EMSG(_(e_invarg));
7839 return;
7840 }
7841 id = -2;
7842 arg = skiptowhite(arg + 1);
7843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007844 else if (STRNCMP(arg, "name=", 5) == 0)
7845 {
7846 arg += 5;
7847 sign_name = arg;
7848 arg = skiptowhite(arg);
7849 if (*arg != NUL)
7850 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007851 while (sign_name[0] == '0' && sign_name[1] != NUL)
7852 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007853 }
7854 else if (STRNCMP(arg, "file=", 5) == 0)
7855 {
7856 arg += 5;
7857 buf = buflist_findname(arg);
7858 break;
7859 }
7860 else if (STRNCMP(arg, "buffer=", 7) == 0)
7861 {
7862 arg += 7;
7863 buf = buflist_findnr((int)getdigits(&arg));
7864 if (*skipwhite(arg) != NUL)
7865 EMSG(_(e_trailing));
7866 break;
7867 }
7868 else
7869 {
7870 EMSG(_(e_invarg));
7871 return;
7872 }
7873 arg = skipwhite(arg);
7874 }
7875
7876 if (buf == NULL)
7877 {
7878 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7879 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007880 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007881 {
7882 if (lnum >= 0 || sign_name != NULL)
7883 EMSG(_(e_invarg));
7884 else
7885 /* ":sign place file={fname}": list placed signs in one file */
7886 sign_list_placed(buf);
7887 }
7888 else if (idx == SIGNCMD_JUMP)
7889 {
7890 /* ":sign jump {id} file={fname}" */
7891 if (lnum >= 0 || sign_name != NULL)
7892 EMSG(_(e_invarg));
7893 else if ((lnum = buf_findsign(buf, id)) > 0)
7894 { /* goto a sign ... */
7895 if (buf_jump_open_win(buf) != NULL)
7896 { /* ... in a current window */
7897 curwin->w_cursor.lnum = lnum;
7898 check_cursor_lnum();
7899 beginline(BL_WHITE);
7900 }
7901 else
7902 { /* ... not currently in a window */
7903 char_u *cmd;
7904
Bram Moolenaarbfd096d2016-08-17 22:29:09 +02007905 if (buf->b_fname == NULL)
7906 {
7907 EMSG(_("E934: Cannot jump to a buffer that does not have a name"));
7908 return;
7909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007910 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7911 if (cmd == NULL)
7912 return;
7913 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7914 do_cmdline_cmd(cmd);
7915 vim_free(cmd);
7916 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007917# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00007918 foldOpenCursor();
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007919# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007920 }
7921 else
7922 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7923 }
7924 else if (idx == SIGNCMD_UNPLACE)
7925 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007926 if (lnum >= 0 || sign_name != NULL)
7927 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007928 else if (id == -2)
7929 {
7930 /* ":sign unplace * file={fname}" */
7931 redraw_buf_later(buf, NOT_VALID);
7932 buf_delete_signs(buf);
7933 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007934 else
7935 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007936 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007937 lnum = buf_delsign(buf, id);
7938 update_debug_sign(buf, lnum);
7939 }
7940 }
7941 /* idx == SIGNCMD_PLACE */
7942 else if (sign_name != NULL)
7943 {
7944 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7945 if (STRCMP(sp->sn_name, sign_name) == 0)
7946 break;
7947 if (sp == NULL)
7948 {
7949 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7950 return;
7951 }
7952 if (lnum > 0)
7953 /* ":sign place {id} line={lnum} name={name} file={fname}":
7954 * place a sign */
7955 buf_addsign(buf, id, lnum, sp->sn_typenr);
7956 else
7957 /* ":sign place {id} file={fname}": change sign type */
7958 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02007959 if (lnum > 0)
7960 update_debug_sign(buf, lnum);
7961 else
7962 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007963 }
7964 else
7965 EMSG(_(e_invarg));
7966 }
7967}
7968
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007969# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007970/*
7971 * Allocate the icons. Called when the GUI has started. Allows defining
7972 * signs before it starts.
7973 */
7974 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007975sign_gui_started(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007976{
7977 sign_T *sp;
7978
7979 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7980 if (sp->sn_icon != NULL)
7981 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7982}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007983# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007984
7985/*
7986 * List one sign.
7987 */
7988 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007989sign_list_defined(sign_T *sp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007990{
7991 char_u *p;
7992
Bram Moolenaar555b2802005-05-19 21:08:39 +00007993 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007994 if (sp->sn_icon != NULL)
7995 {
7996 MSG_PUTS(" icon=");
7997 msg_outtrans(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007998# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007999 if (sp->sn_image == NULL)
8000 MSG_PUTS(_(" (NOT FOUND)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008001# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008002 MSG_PUTS(_(" (not supported)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008003# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008004 }
8005 if (sp->sn_text != NULL)
8006 {
8007 MSG_PUTS(" text=");
8008 msg_outtrans(sp->sn_text);
8009 }
8010 if (sp->sn_line_hl > 0)
8011 {
8012 MSG_PUTS(" linehl=");
Bram Moolenaarc96272e2017-03-26 13:50:09 +02008013 p = get_highlight_name_ext(NULL, sp->sn_line_hl - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008014 if (p == NULL)
8015 MSG_PUTS("NONE");
8016 else
8017 msg_puts(p);
8018 }
8019 if (sp->sn_text_hl > 0)
8020 {
8021 MSG_PUTS(" texthl=");
Bram Moolenaarc96272e2017-03-26 13:50:09 +02008022 p = get_highlight_name_ext(NULL, sp->sn_text_hl - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008023 if (p == NULL)
8024 MSG_PUTS("NONE");
8025 else
8026 msg_puts(p);
8027 }
8028}
8029
8030/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008031 * Undefine a sign and free its memory.
8032 */
8033 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008034sign_undefine(sign_T *sp, sign_T *sp_prev)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008035{
8036 vim_free(sp->sn_name);
8037 vim_free(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008038# ifdef FEAT_SIGN_ICONS
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008039 if (sp->sn_image != NULL)
8040 {
8041 out_flush();
8042 gui_mch_destroy_sign(sp->sn_image);
8043 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008044# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008045 vim_free(sp->sn_text);
8046 if (sp_prev == NULL)
8047 first_sign = sp->sn_next;
8048 else
8049 sp_prev->sn_next = sp->sn_next;
8050 vim_free(sp);
8051}
8052
8053/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008054 * Get highlighting attribute for sign "typenr".
8055 * If "line" is TRUE: line highl, if FALSE: text highl.
8056 */
8057 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008058sign_get_attr(int typenr, int line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008059{
8060 sign_T *sp;
8061
8062 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8063 if (sp->sn_typenr == typenr)
8064 {
8065 if (line)
8066 {
8067 if (sp->sn_line_hl > 0)
8068 return syn_id2attr(sp->sn_line_hl);
8069 }
8070 else
8071 {
8072 if (sp->sn_text_hl > 0)
8073 return syn_id2attr(sp->sn_text_hl);
8074 }
8075 break;
8076 }
8077 return 0;
8078}
8079
8080/*
8081 * Get text mark for sign "typenr".
8082 * Returns NULL if there isn't one.
8083 */
8084 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008085sign_get_text(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008086{
8087 sign_T *sp;
8088
8089 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8090 if (sp->sn_typenr == typenr)
8091 return sp->sn_text;
8092 return NULL;
8093}
8094
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008095# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008096 void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008097sign_get_image(
8098 int typenr) /* the attribute which may have a sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008099{
8100 sign_T *sp;
8101
8102 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8103 if (sp->sn_typenr == typenr)
8104 return sp->sn_image;
8105 return NULL;
8106}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008107# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008108
8109/*
8110 * Get the name of a sign by its typenr.
8111 */
8112 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008113sign_typenr2name(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008114{
8115 sign_T *sp;
8116
8117 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8118 if (sp->sn_typenr == typenr)
8119 return sp->sn_name;
8120 return (char_u *)_("[Deleted]");
8121}
8122
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008123# if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008124/*
8125 * Undefine/free all signs.
8126 */
8127 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008128free_signs(void)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008129{
8130 while (first_sign != NULL)
8131 sign_undefine(first_sign, NULL);
8132}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008133# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008134
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008135# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008136static enum
8137{
8138 EXP_SUBCMD, /* expand :sign sub-commands */
8139 EXP_DEFINE, /* expand :sign define {name} args */
8140 EXP_PLACE, /* expand :sign place {id} args */
8141 EXP_UNPLACE, /* expand :sign unplace" */
8142 EXP_SIGN_NAMES /* expand with name of placed signs */
8143} expand_what;
8144
8145/*
8146 * Function given to ExpandGeneric() to obtain the sign command
8147 * expansion.
8148 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008149 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008150get_sign_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008151{
8152 sign_T *sp;
8153 int current_idx;
8154
8155 switch (expand_what)
8156 {
8157 case EXP_SUBCMD:
8158 return (char_u *)cmds[idx];
8159 case EXP_DEFINE:
8160 {
8161 char *define_arg[] =
8162 {
8163 "icon=", "linehl=", "text=", "texthl=", NULL
8164 };
8165 return (char_u *)define_arg[idx];
8166 }
8167 case EXP_PLACE:
8168 {
8169 char *place_arg[] =
8170 {
8171 "line=", "name=", "file=", "buffer=", NULL
8172 };
8173 return (char_u *)place_arg[idx];
8174 }
8175 case EXP_UNPLACE:
8176 {
8177 char *unplace_arg[] = { "file=", "buffer=", NULL };
8178 return (char_u *)unplace_arg[idx];
8179 }
8180 case EXP_SIGN_NAMES:
8181 /* Complete with name of signs already defined */
8182 current_idx = 0;
8183 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8184 if (current_idx++ == idx)
8185 return sp->sn_name;
8186 return NULL;
8187 default:
8188 return NULL;
8189 }
8190}
8191
8192/*
8193 * Handle command line completion for :sign command.
8194 */
8195 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008196set_context_in_sign_cmd(expand_T *xp, char_u *arg)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008197{
8198 char_u *p;
8199 char_u *end_subcmd;
8200 char_u *last;
8201 int cmd_idx;
8202 char_u *begin_subcmd_args;
8203
8204 /* Default: expand subcommands. */
8205 xp->xp_context = EXPAND_SIGN;
8206 expand_what = EXP_SUBCMD;
8207 xp->xp_pattern = arg;
8208
8209 end_subcmd = skiptowhite(arg);
8210 if (*end_subcmd == NUL)
8211 /* expand subcmd name
8212 * :sign {subcmd}<CTRL-D>*/
8213 return;
8214
8215 cmd_idx = sign_cmd_idx(arg, end_subcmd);
8216
8217 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008218 * |
8219 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008220 begin_subcmd_args = skipwhite(end_subcmd);
8221 p = skiptowhite(begin_subcmd_args);
8222 if (*p == NUL)
8223 {
8224 /*
8225 * Expand first argument of subcmd when possible.
8226 * For ":jump {id}" and ":unplace {id}", we could
8227 * possibly expand the ids of all signs already placed.
8228 */
8229 xp->xp_pattern = begin_subcmd_args;
8230 switch (cmd_idx)
8231 {
8232 case SIGNCMD_LIST:
8233 case SIGNCMD_UNDEFINE:
8234 /* :sign list <CTRL-D>
8235 * :sign undefine <CTRL-D> */
8236 expand_what = EXP_SIGN_NAMES;
8237 break;
8238 default:
8239 xp->xp_context = EXPAND_NOTHING;
8240 }
8241 return;
8242 }
8243
8244 /* expand last argument of subcmd */
8245
8246 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008247 * |
8248 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008249
8250 /* Loop until reaching last argument. */
8251 do
8252 {
8253 p = skipwhite(p);
8254 last = p;
8255 p = skiptowhite(p);
8256 } while (*p != NUL);
8257
8258 p = vim_strchr(last, '=');
8259
8260 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008261 * | |
8262 * last p */
Bram Moolenaar7756e742016-10-21 20:35:37 +02008263 if (p == NULL)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008264 {
8265 /* Expand last argument name (before equal sign). */
8266 xp->xp_pattern = last;
8267 switch (cmd_idx)
8268 {
8269 case SIGNCMD_DEFINE:
8270 expand_what = EXP_DEFINE;
8271 break;
8272 case SIGNCMD_PLACE:
8273 expand_what = EXP_PLACE;
8274 break;
8275 case SIGNCMD_JUMP:
8276 case SIGNCMD_UNPLACE:
8277 expand_what = EXP_UNPLACE;
8278 break;
8279 default:
8280 xp->xp_context = EXPAND_NOTHING;
8281 }
8282 }
8283 else
8284 {
8285 /* Expand last argument value (after equal sign). */
8286 xp->xp_pattern = p + 1;
8287 switch (cmd_idx)
8288 {
8289 case SIGNCMD_DEFINE:
8290 if (STRNCMP(last, "texthl", p - last) == 0 ||
8291 STRNCMP(last, "linehl", p - last) == 0)
8292 xp->xp_context = EXPAND_HIGHLIGHT;
8293 else if (STRNCMP(last, "icon", p - last) == 0)
8294 xp->xp_context = EXPAND_FILES;
8295 else
8296 xp->xp_context = EXPAND_NOTHING;
8297 break;
8298 case SIGNCMD_PLACE:
8299 if (STRNCMP(last, "name", p - last) == 0)
8300 expand_what = EXP_SIGN_NAMES;
8301 else
8302 xp->xp_context = EXPAND_NOTHING;
8303 break;
8304 default:
8305 xp->xp_context = EXPAND_NOTHING;
8306 }
8307 }
8308}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008309# endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008310#endif
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008311
8312/*
8313 * Make the user happy.
8314 */
8315 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008316ex_smile(exarg_T *eap UNUSED)
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008317{
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008318 static char *code[] = {
8319 "\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$",
8320 "\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"
8321 };
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008322 char *p;
8323 int n;
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008324 int i;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008325
8326 msg_start();
8327 msg_putchar('\n');
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008328 for (i = 0; i < 2; ++i)
8329 for (p = code[i]; *p != NUL; ++p)
8330 if (*p == 'x')
8331 msg_putchar('\n');
8332 else
8333 for (n = *p++; n > 0; --n)
8334 if (*p == 'o' || *p == '$')
Bram Moolenaar8820b482017-03-16 17:23:31 +01008335 msg_putchar_attr(*p, HL_ATTR(HLF_L));
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008336 else
8337 msg_putchar(*p);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008338 msg_clr_eos();
8339}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008340
8341#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO)
8342/*
8343 * ":drop"
8344 * Opens the first argument in a window. When there are two or more arguments
8345 * the argument list is redefined.
8346 */
8347 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008348ex_drop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008349{
8350 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008351 win_T *wp;
8352 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008353# ifdef FEAT_WINDOWS
8354 tabpage_T *tp;
8355# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008356
8357 /*
8358 * Check if the first argument is already being edited in a window. If
8359 * so, jump to that window.
8360 * We would actually need to check all arguments, but that's complicated
8361 * and mostly only one file is dropped.
8362 * This also ignores wildcards, since it is very unlikely the user is
8363 * editing a file name with a wildcard character.
8364 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008365 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008366
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00008367 /*
8368 * Expanding wildcards may result in an empty argument list. E.g. when
8369 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
8370 * already did an error message for this.
8371 */
8372 if (ARGCOUNT == 0)
8373 return;
8374
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008375# ifdef FEAT_WINDOWS
8376 if (cmdmod.tab)
8377 {
8378 /* ":tab drop file ...": open a tab for each argument that isn't
8379 * edited in a window yet. It's like ":tab all" but without closing
8380 * windows or tabs. */
8381 ex_all(eap);
8382 }
8383 else
8384# endif
8385 {
8386 /* ":drop file ...": Edit the first argument. Jump to an existing
8387 * window if possible, edit in current window if the current buffer
8388 * can be abandoned, otherwise open a new window. */
8389 buf = buflist_findnr(ARGLIST[0].ae_fnum);
8390
8391 FOR_ALL_TAB_WINDOWS(tp, wp)
8392 {
8393 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008394 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008395# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00008396 goto_tabpage_win(tp, wp);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008397# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008398 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008399 return;
8400 }
8401 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008402
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008403 /*
8404 * Check whether the current buffer is changed. If so, we will need
8405 * to split the current window or data could be lost.
8406 * Skip the check if the 'hidden' option is set, as in this case the
8407 * buffer won't be lost.
8408 */
Bram Moolenaareb44a682017-08-03 22:44:55 +02008409 if (!buf_hide(curbuf))
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008410 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008411# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008412 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008413# endif
Bram Moolenaar45d3b142013-11-09 03:31:51 +01008414 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008415# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008416 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008417# else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008418 if (split)
8419 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008420# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008421 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008422
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008423 /* Fake a ":sfirst" or ":first" command edit the first argument. */
8424 if (split)
8425 {
8426 eap->cmdidx = CMD_sfirst;
8427 eap->cmd[0] = 's';
8428 }
8429 else
8430 eap->cmdidx = CMD_first;
8431 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008432 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008433}
8434#endif
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008435
Bram Moolenaar9baf2972016-08-21 22:39:35 +02008436/*
8437 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
8438 * Put the start of the pattern in "*s", unless "s" is NULL.
8439 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
8440 * If "s" is not NULL terminate the pattern with a NUL.
8441 * Return a pointer to the char just past the pattern plus flags.
8442 */
8443 char_u *
8444skip_vimgrep_pat(char_u *p, char_u **s, int *flags)
8445{
8446 int c;
8447
8448 if (vim_isIDc(*p))
8449 {
8450 /* ":vimgrep pattern fname" */
8451 if (s != NULL)
8452 *s = p;
8453 p = skiptowhite(p);
8454 if (s != NULL && *p != NUL)
8455 *p++ = NUL;
8456 }
8457 else
8458 {
8459 /* ":vimgrep /pattern/[g][j] fname" */
8460 if (s != NULL)
8461 *s = p + 1;
8462 c = *p;
8463 p = skip_regexp(p + 1, c, TRUE, NULL);
8464 if (*p != c)
8465 return NULL;
8466
8467 /* Truncate the pattern. */
8468 if (s != NULL)
8469 *p = NUL;
8470 ++p;
8471
8472 /* Find the flags */
8473 while (*p == 'g' || *p == 'j')
8474 {
8475 if (flags != NULL)
8476 {
8477 if (*p == 'g')
8478 *flags |= VGR_GLOBAL;
8479 else
8480 *flags |= VGR_NOJUMP;
8481 }
8482 ++p;
8483 }
8484 }
8485 return p;
8486}
Bram Moolenaar9baf2972016-08-21 22:39:35 +02008487
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008488#if defined(FEAT_EVAL) || defined(PROTO)
8489/*
8490 * List v:oldfiles in a nice way.
8491 */
8492 void
8493ex_oldfiles(exarg_T *eap UNUSED)
8494{
8495 list_T *l = get_vim_var_list(VV_OLDFILES);
8496 listitem_T *li;
8497 int nr = 0;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008498 char_u *fname;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008499
8500 if (l == NULL)
8501 msg((char_u *)_("No old files"));
8502 else
8503 {
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008504 msg_start();
8505 msg_scroll = TRUE;
8506 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
8507 {
8508 ++nr;
8509 fname = get_tv_string(&li->li_tv);
Bram Moolenaard6f2ee32016-08-24 00:30:52 +02008510 if (!message_filtered(fname))
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008511 {
8512 msg_outnum((long)nr);
8513 MSG_PUTS(": ");
8514 msg_outtrans(fname);
Bram Moolenaar885c00e2016-08-28 17:08:17 +02008515 msg_clr_eos();
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008516 msg_putchar('\n');
8517 out_flush(); /* output one line at a time */
8518 ui_breakcheck();
8519 }
8520 }
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008521
8522 /* Assume "got_int" was set to truncate the listing. */
8523 got_int = FALSE;
8524
8525# ifdef FEAT_BROWSE_CMD
8526 if (cmdmod.browse)
8527 {
8528 quit_more = FALSE;
8529 nr = prompt_for_number(FALSE);
8530 msg_starthere();
8531 if (nr > 0)
8532 {
8533 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
8534 (long)nr);
8535
8536 if (p != NULL)
8537 {
8538 p = expand_env_save(p);
8539 eap->arg = p;
8540 eap->cmdidx = CMD_edit;
8541 cmdmod.browse = FALSE;
8542 do_exedit(eap, NULL);
8543 vim_free(p);
8544 }
8545 }
8546 }
8547# endif
8548 }
8549}
8550#endif