blob: 6d03d88ca7419fa3e90a7ce2cd3e623355b3602a [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 Moolenaarf28dbce2016-01-29 22:03:47 +010031static void delbuf_msg(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000032static int
33#ifdef __BORLANDC__
34 _RTLENTRYF
35#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010036 help_compare(const void *s1, const void *s2);
37static void prepare_help_buffer(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000038
39/*
40 * ":ascii" and "ga".
41 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000042 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010043do_ascii(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +000044{
45 int c;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000046 int cval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000047 char buf1[20];
48 char buf2[20];
49 char_u buf3[7];
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010050#ifdef FEAT_DIGRAPHS
51 char_u *dig;
52#endif
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
Bram Moolenaar071d4272004-06-13 20:20:40 +000060 c = gchar_cursor();
61 if (c == NUL)
62 {
Bram Moolenaar32526b32019-01-19 17:43:09 +010063 msg("NUL");
Bram Moolenaar071d4272004-06-13 20:20:40 +000064 return;
65 }
66
Bram Moolenaar071d4272004-06-13 20:20:40 +000067 IObuff[0] = NUL;
68 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80)
Bram Moolenaar071d4272004-06-13 20:20:40 +000069 {
70 if (c == NL) /* NUL is stored as NL */
71 c = NUL;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000072 if (c == CAR && get_fileformat(curbuf) == EOL_MAC)
73 cval = NL; /* NL is stored as CR */
74 else
75 cval = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000076 if (vim_isprintc_strict(c) && (c < ' '
77#ifndef EBCDIC
78 || c > '~'
79#endif
80 ))
81 {
82 transchar_nonprint(buf3, c);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000083 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000084 }
85 else
86 buf1[0] = NUL;
87#ifndef EBCDIC
88 if (c >= 0x80)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000089 vim_snprintf(buf2, sizeof(buf2), " <M-%s>",
90 (char *)transchar(c & 0x7f));
Bram Moolenaar071d4272004-06-13 20:20:40 +000091 else
92#endif
93 buf2[0] = NUL;
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010094#ifdef FEAT_DIGRAPHS
95 dig = get_digraph_for_char(cval);
96 if (dig != NULL)
97 vim_snprintf((char *)IObuff, IOSIZE,
98 _("<%s>%s%s %d, Hex %02x, Oct %03o, Digr %s"),
99 transchar(c), buf1, buf2, cval, cval, cval, dig);
100 else
101#endif
102 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar555b2802005-05-19 21:08:39 +0000103 _("<%s>%s%s %d, Hex %02x, Octal %03o"),
Bram Moolenaar1418a0d2009-01-13 15:58:01 +0000104 transchar(c), buf1, buf2, cval, cval, cval);
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000105 if (enc_utf8)
106 c = cc[ci++];
107 else
108 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109 }
110
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111 /* Repeat for combining characters. */
112 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80)))
113 {
114 len = (int)STRLEN(IObuff);
115 /* This assumes every multi-byte char is printable... */
116 if (len > 0)
117 IObuff[len++] = ' ';
118 IObuff[len++] = '<';
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000119 if (enc_utf8 && utf_iscomposing(c)
Bram Moolenaar4770d092006-01-12 23:22:24 +0000120# ifdef USE_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 && !gui.in_use
Bram Moolenaar4770d092006-01-12 23:22:24 +0000122# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123 )
124 IObuff[len++] = ' '; /* draw composing char on top of a space */
Bram Moolenaar555b2802005-05-19 21:08:39 +0000125 len += (*mb_char2bytes)(c, IObuff + len);
Bram Moolenaar5f73ef82018-02-27 21:09:30 +0100126#ifdef FEAT_DIGRAPHS
127 dig = get_digraph_for_char(c);
128 if (dig != NULL)
129 vim_snprintf((char *)IObuff + len, IOSIZE - len,
130 c < 0x10000 ? _("> %d, Hex %04x, Oct %o, Digr %s")
131 : _("> %d, Hex %08x, Oct %o, Digr %s"),
132 c, c, c, dig);
133 else
134#endif
135 vim_snprintf((char *)IObuff + len, IOSIZE - len,
136 c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
137 : _("> %d, Hex %08x, Octal %o"),
138 c, c, c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000139 if (ci == MAX_MCO)
140 break;
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000141 if (enc_utf8)
142 c = cc[ci++];
143 else
144 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146
Bram Moolenaar32526b32019-01-19 17:43:09 +0100147 msg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148}
149
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150/*
151 * ":left", ":center" and ":right": align text.
152 */
153 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100154ex_align(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155{
156 pos_T save_curpos;
157 int len;
158 int indent = 0;
159 int new_indent;
160 int has_tab;
161 int width;
162
163#ifdef FEAT_RIGHTLEFT
164 if (curwin->w_p_rl)
165 {
166 /* switch left and right aligning */
167 if (eap->cmdidx == CMD_right)
168 eap->cmdidx = CMD_left;
169 else if (eap->cmdidx == CMD_left)
170 eap->cmdidx = CMD_right;
171 }
172#endif
173
174 width = atoi((char *)eap->arg);
175 save_curpos = curwin->w_cursor;
176 if (eap->cmdidx == CMD_left) /* width is used for new indent */
177 {
178 if (width >= 0)
179 indent = width;
180 }
181 else
182 {
183 /*
184 * if 'textwidth' set, use it
185 * else if 'wrapmargin' set, use it
186 * if invalid value, use 80
187 */
188 if (width <= 0)
189 width = curbuf->b_p_tw;
190 if (width == 0 && curbuf->b_p_wm > 0)
Bram Moolenaar02631462017-09-22 15:20:32 +0200191 width = curwin->w_width - curbuf->b_p_wm;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 if (width <= 0)
193 width = 80;
194 }
195
196 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
197 return;
198
199 for (curwin->w_cursor.lnum = eap->line1;
200 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum)
201 {
202 if (eap->cmdidx == CMD_left) /* left align */
203 new_indent = indent;
204 else
205 {
Bram Moolenaar89d40322006-08-29 15:30:07 +0000206 has_tab = FALSE; /* avoid uninit warnings */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 len = linelen(eap->cmdidx == CMD_right ? &has_tab
208 : NULL) - get_indent();
209
210 if (len <= 0) /* skip blank lines */
211 continue;
212
213 if (eap->cmdidx == CMD_center)
214 new_indent = (width - len) / 2;
215 else
216 {
217 new_indent = width - len; /* right align */
218
219 /*
220 * Make sure that embedded TABs don't make the text go too far
221 * to the right.
222 */
223 if (has_tab)
224 while (new_indent > 0)
225 {
226 (void)set_indent(new_indent, 0);
227 if (linelen(NULL) <= width)
228 {
229 /*
230 * Now try to move the line as much as possible to
231 * the right. Stop when it moves too far.
232 */
233 do
234 (void)set_indent(++new_indent, 0);
235 while (linelen(NULL) <= width);
236 --new_indent;
237 break;
238 }
239 --new_indent;
240 }
241 }
242 }
243 if (new_indent < 0)
244 new_indent = 0;
245 (void)set_indent(new_indent, 0); /* set indent */
246 }
247 changed_lines(eap->line1, 0, eap->line2 + 1, 0L);
248 curwin->w_cursor = save_curpos;
249 beginline(BL_WHITE | BL_FIX);
250}
251
252/*
253 * Get the length of the current line, excluding trailing white space.
254 */
255 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100256linelen(int *has_tab)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257{
258 char_u *line;
259 char_u *first;
260 char_u *last;
261 int save;
262 int len;
263
264 /* find the first non-blank character */
265 line = ml_get_curline();
266 first = skipwhite(line);
267
268 /* find the character after the last non-blank character */
269 for (last = first + STRLEN(first);
Bram Moolenaar1c465442017-03-12 20:10:05 +0100270 last > first && VIM_ISWHITE(last[-1]); --last)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 ;
272 save = *last;
273 *last = NUL;
274 len = linetabsize(line); /* get line length */
275 if (has_tab != NULL) /* check for embedded TAB */
Bram Moolenaarb31a3ac2018-08-11 14:41:55 +0200276 *has_tab = (vim_strchr(first, TAB) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 *last = save;
278
279 return len;
280}
281
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000282/* Buffer for two lines used during sorting. They are allocated to
283 * contain the longest line being sorted. */
284static char_u *sortbuf1;
285static char_u *sortbuf2;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000286
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100287static int sort_ic; /* ignore case */
288static int sort_nr; /* sort on number */
289static int sort_rx; /* sort on regex instead of skipping it */
290#ifdef FEAT_FLOAT
291static int sort_flt; /* sort on floating number */
292#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000293
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100294static int sort_abort; /* flag to indicate if sorting has been interrupted */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000295
296/* Struct to store info to be sorted. */
297typedef struct
298{
299 linenr_T lnum; /* line number */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100300 union {
301 struct
302 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +0200303 varnumber_T start_col_nr; /* starting column number */
304 varnumber_T end_col_nr; /* ending column number */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100305 } line;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +0200306 varnumber_T value; /* value if sorting by integer */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100307#ifdef FEAT_FLOAT
308 float_T value_flt; /* value if sorting by float */
309#endif
310 } st_u;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000311} sorti_T;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000312
313static int
314#ifdef __BORLANDC__
315_RTLENTRYF
316#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100317sort_compare(const void *s1, const void *s2);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000318
319 static int
320#ifdef __BORLANDC__
321_RTLENTRYF
322#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100323sort_compare(const void *s1, const void *s2)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000324{
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000325 sorti_T l1 = *(sorti_T *)s1;
326 sorti_T l2 = *(sorti_T *)s2;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000327 int result = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000328
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000329 /* If the user interrupts, there's no way to stop qsort() immediately, but
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000330 * if we return 0 every time, qsort will assume it's done sorting and
331 * exit. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000332 if (sort_abort)
333 return 0;
334 fast_breakcheck();
335 if (got_int)
336 sort_abort = TRUE;
337
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000338 /* When sorting numbers "start_col_nr" is the number, not the column
339 * number. */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000340 if (sort_nr)
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100341 result = l1.st_u.value == l2.st_u.value ? 0
342 : l1.st_u.value > l2.st_u.value ? 1 : -1;
343#ifdef FEAT_FLOAT
344 else if (sort_flt)
345 result = l1.st_u.value_flt == l2.st_u.value_flt ? 0
346 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1;
347#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000348 else
349 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000350 /* We need to copy one line into "sortbuf1", because there is no
351 * guarantee that the first pointer becomes invalid when obtaining the
352 * second one. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100353 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.st_u.line.start_col_nr,
354 l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr + 1);
355 sortbuf1[l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr] = 0;
356 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.st_u.line.start_col_nr,
357 l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr + 1);
358 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000359
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000360 result = sort_ic ? STRICMP(sortbuf1, sortbuf2)
361 : STRCMP(sortbuf1, sortbuf2);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000362 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000363
364 /* If two lines have the same value, preserve the original line order. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000365 if (result == 0)
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000366 return (int)(l1.lnum - l2.lnum);
367 return result;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000368}
369
370/*
371 * ":sort".
372 */
373 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100374ex_sort(exarg_T *eap)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000375{
376 regmatch_T regmatch;
377 int len;
378 linenr_T lnum;
379 long maxlen = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000380 sorti_T *nrs;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000381 size_t count = (size_t)(eap->line2 - eap->line1 + 1);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000382 size_t i;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000383 char_u *p;
384 char_u *s;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000385 char_u *s2;
386 char_u c; /* temporary character storage */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000387 int unique = FALSE;
388 long deleted;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000389 colnr_T start_col;
390 colnr_T end_col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100391 int sort_what = 0;
392 int format_found = 0;
Bram Moolenaardc9e9552018-06-28 11:28:08 +0200393 int change_occurred = FALSE; // Buffer contents changed.
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000394
Bram Moolenaar48c99162008-02-18 18:42:52 +0000395 /* Sorting one line is really quick! */
396 if (count <= 1)
397 return;
398
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000399 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
400 return;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000401 sortbuf1 = NULL;
402 sortbuf2 = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000403 regmatch.regprog = NULL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000404 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000405 if (nrs == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000406 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000407
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100408 sort_abort = sort_ic = sort_rx = sort_nr = 0;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100409#ifdef FEAT_FLOAT
410 sort_flt = 0;
411#endif
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000412
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000413 for (p = eap->arg; *p != NUL; ++p)
414 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100415 if (VIM_ISWHITE(*p))
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000416 ;
417 else if (*p == 'i')
418 sort_ic = TRUE;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000419 else if (*p == 'r')
420 sort_rx = TRUE;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000421 else if (*p == 'n')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100422 {
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100423 sort_nr = 1;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100424 ++format_found;
425 }
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100426#ifdef FEAT_FLOAT
427 else if (*p == 'f')
428 {
429 sort_flt = 1;
430 ++format_found;
431 }
432#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100433 else if (*p == 'b')
434 {
435 sort_what = STR2NR_BIN + STR2NR_FORCE;
436 ++format_found;
437 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000438 else if (*p == 'o')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100439 {
440 sort_what = STR2NR_OCT + STR2NR_FORCE;
441 ++format_found;
442 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000443 else if (*p == 'x')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100444 {
445 sort_what = STR2NR_HEX + STR2NR_FORCE;
446 ++format_found;
447 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000448 else if (*p == 'u')
449 unique = TRUE;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000450 else if (*p == '"') /* comment start */
451 break;
452 else if (check_nextcmd(p) != NULL)
453 {
454 eap->nextcmd = check_nextcmd(p);
455 break;
456 }
457 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000458 {
459 s = skip_regexp(p + 1, *p, TRUE, NULL);
460 if (*s != *p)
461 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100462 emsg(_(e_invalpat));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000463 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000464 }
465 *s = NUL;
Bram Moolenaar1256e722007-07-10 15:26:20 +0000466 /* Use last search pattern if sort pattern is empty. */
Bram Moolenaar210f3702013-03-07 16:41:30 +0100467 if (s == p + 1)
468 {
469 if (last_search_pat() == NULL)
470 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100471 emsg(_(e_noprevre));
Bram Moolenaar210f3702013-03-07 16:41:30 +0100472 goto sortend;
473 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000474 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
Bram Moolenaar210f3702013-03-07 16:41:30 +0100475 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000476 else
477 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000478 if (regmatch.regprog == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000479 goto sortend;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000480 p = s; /* continue after the regexp */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000481 regmatch.rm_ic = p_ic;
482 }
483 else
484 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100485 semsg(_(e_invarg2), p);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000486 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000487 }
488 }
489
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100490 /* Can only have one of 'n', 'b', 'o' and 'x'. */
491 if (format_found > 1)
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000492 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100493 emsg(_(e_invarg));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000494 goto sortend;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000495 }
496
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100497 /* From here on "sort_nr" is used as a flag for any integer number
498 * sorting. */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100499 sort_nr += sort_what;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000500
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000501 /*
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000502 * Make an array with all line numbers. This avoids having to copy all
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000503 * the lines into allocated memory.
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000504 * When sorting on strings "start_col_nr" is the offset in the line, for
505 * numbers sorting it's the number to sort on. This means the pattern
506 * matching and number conversion only has to be done once per line.
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000507 * Also get the longest line length for allocating "sortbuf".
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000508 */
509 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
510 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000511 s = ml_get(lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000512 len = (int)STRLEN(s);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000513 if (maxlen < len)
514 maxlen = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000515
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000516 start_col = 0;
517 end_col = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000518 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0))
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000519 {
520 if (sort_rx)
521 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000522 start_col = (colnr_T)(regmatch.startp[0] - s);
523 end_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000524 }
525 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000526 start_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000527 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000528 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000529 if (regmatch.regprog != NULL)
530 end_col = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000531
Bram Moolenaar937204a2016-01-30 23:37:38 +0100532 if (sort_nr
533#ifdef FEAT_FLOAT
534 || sort_flt
535#endif
536 )
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000537 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000538 /* Make sure vim_str2nr doesn't read any digits past the end
539 * of the match, by temporarily terminating the string there */
540 s2 = s + end_col;
541 c = *s2;
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200542 *s2 = NUL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000543 /* Sorting on number: Store the number itself. */
Bram Moolenaar1387a602008-07-24 19:31:11 +0000544 p = s + start_col;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100545 if (sort_nr)
546 {
547 if (sort_what & STR2NR_HEX)
548 s = skiptohex(p);
549 else if (sort_what & STR2NR_BIN)
550 s = skiptobin(p);
551 else
552 s = skiptodigit(p);
553 if (s > p && s[-1] == '-')
554 --s; /* include preceding negative sign */
555 if (*s == NUL)
556 /* empty line should sort before any number */
557 nrs[lnum - eap->line1].st_u.value = -MAXLNUM;
558 else
559 vim_str2nr(s, NULL, NULL, sort_what,
560 &nrs[lnum - eap->line1].st_u.value, NULL, 0);
561 }
562#ifdef FEAT_FLOAT
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000563 else
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100564 {
565 s = skipwhite(p);
566 if (*s == '+')
567 s = skipwhite(s + 1);
568
569 if (*s == NUL)
570 /* empty line should sort before any number */
571 nrs[lnum - eap->line1].st_u.value_flt = -DBL_MAX;
572 else
573 nrs[lnum - eap->line1].st_u.value_flt =
574 strtod((char *)s, NULL);
575 }
576#endif
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200577 *s2 = c;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000578 }
579 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000580 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000581 /* Store the column to sort at. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100582 nrs[lnum - eap->line1].st_u.line.start_col_nr = start_col;
583 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000584 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000585
586 nrs[lnum - eap->line1].lnum = lnum;
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000587
588 if (regmatch.regprog != NULL)
589 fast_breakcheck();
590 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000591 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000592 }
593
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000594 /* Allocate a buffer that can hold the longest line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000595 sortbuf1 = alloc((unsigned)maxlen + 1);
596 if (sortbuf1 == NULL)
597 goto sortend;
598 sortbuf2 = alloc((unsigned)maxlen + 1);
599 if (sortbuf2 == NULL)
600 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000601
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000602 /* Sort the array of line numbers. Note: can't be interrupted! */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000603 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000604
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000605 if (sort_abort)
606 goto sortend;
607
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000608 /* Insert the lines in the sorted order below the last one. */
609 lnum = eap->line2;
610 for (i = 0; i < count; ++i)
611 {
Bram Moolenaardc9e9552018-06-28 11:28:08 +0200612 linenr_T get_lnum = nrs[eap->forceit ? count - i - 1 : i].lnum;
613
614 // If the original line number of the line being placed is not the same
615 // as "lnum" (accounting for offset), we know that the buffer changed.
616 if (get_lnum + ((linenr_T)count - 1) != lnum)
617 change_occurred = TRUE;
618
619 s = ml_get(get_lnum);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000620 if (!unique || i == 0
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000621 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000622 {
Bram Moolenaardc9e9552018-06-28 11:28:08 +0200623 // Copy the line into a buffer, it may become invalid in
624 // ml_append(). And it's needed for "unique".
Bram Moolenaar75e3ad02015-12-17 15:07:32 +0100625 STRCPY(sortbuf1, s);
626 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000627 break;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000628 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000629 fast_breakcheck();
630 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000631 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000632 }
633
634 /* delete the original lines if appending worked */
635 if (i == count)
636 for (i = 0; i < count; ++i)
637 ml_delete(eap->line1, FALSE);
638 else
639 count = 0;
640
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000641 /* Adjust marks for deleted (or added) lines and prepare for displaying. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000642 deleted = (long)(count - (lnum - eap->line2));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000643 if (deleted > 0)
Bram Moolenaarb0e982b2018-09-21 12:46:22 +0200644 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000645 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
Bram Moolenaarb0e982b2018-09-21 12:46:22 +0200646 msgmore(-deleted);
647 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000648 else if (deleted < 0)
649 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
Bram Moolenaardc9e9552018-06-28 11:28:08 +0200650
651 if (change_occurred || deleted != 0)
652 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000653
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000654 curwin->w_cursor.lnum = eap->line1;
655 beginline(BL_WHITE | BL_FIX);
656
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000657sortend:
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000658 vim_free(nrs);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000659 vim_free(sortbuf1);
660 vim_free(sortbuf2);
Bram Moolenaar473de612013-06-08 18:19:48 +0200661 vim_regfree(regmatch.regprog);
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000662 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100663 emsg(_(e_interr));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000664}
665
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666/*
667 * ":retab".
668 */
669 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100670ex_retab(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671{
672 linenr_T lnum;
673 int got_tab = FALSE;
674 long num_spaces = 0;
675 long num_tabs;
676 long len;
677 long col;
678 long vcol;
679 long start_col = 0; /* For start of white-space string */
680 long start_vcol = 0; /* For start of white-space string */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 long old_len;
682 char_u *ptr;
683 char_u *new_line = (char_u *)1; /* init to non-NULL */
684 int did_undo; /* called u_save for current line */
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200685#ifdef FEAT_VARTABS
Bram Moolenaar0119a592018-06-24 23:53:28 +0200686 int *new_vts_array = NULL;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200687 char_u *new_ts_str; /* string value of tab argument */
688#else
689 int temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 int new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200691#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 int save_list;
693 linenr_T first_line = 0; /* first changed line */
694 linenr_T last_line = 0; /* last changed line */
695
696 save_list = curwin->w_p_list;
697 curwin->w_p_list = 0; /* don't want list mode here */
698
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200699#ifdef FEAT_VARTABS
700 new_ts_str = eap->arg;
Bram Moolenaar0119a592018-06-24 23:53:28 +0200701 if (!tabstop_set(eap->arg, &new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200702 return;
703 while (vim_isdigit(*(eap->arg)) || *(eap->arg) == ',')
704 ++(eap->arg);
705
Bram Moolenaar0119a592018-06-24 23:53:28 +0200706 // This ensures that either new_vts_array and new_ts_str are freshly
707 // allocated, or new_vts_array points to an existing array and new_ts_str
708 // is null.
709 if (new_vts_array == NULL)
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200710 {
Bram Moolenaar0119a592018-06-24 23:53:28 +0200711 new_vts_array = curbuf->b_p_vts_array;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200712 new_ts_str = NULL;
713 }
714 else
715 new_ts_str = vim_strnsave(new_ts_str, eap->arg - new_ts_str);
716#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 new_ts = getdigits(&(eap->arg));
718 if (new_ts < 0)
719 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100720 emsg(_(e_positive));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 return;
722 }
723 if (new_ts == 0)
724 new_ts = curbuf->b_p_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200725#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
727 {
728 ptr = ml_get(lnum);
729 col = 0;
730 vcol = 0;
731 did_undo = FALSE;
732 for (;;)
733 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100734 if (VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 {
736 if (!got_tab && num_spaces == 0)
737 {
738 /* First consecutive white-space */
739 start_vcol = vcol;
740 start_col = col;
741 }
742 if (ptr[col] == ' ')
743 num_spaces++;
744 else
745 got_tab = TRUE;
746 }
747 else
748 {
749 if (got_tab || (eap->forceit && num_spaces > 1))
750 {
751 /* Retabulate this string of white-space */
752
753 /* len is virtual length of white string */
754 len = num_spaces = vcol - start_vcol;
755 num_tabs = 0;
756 if (!curbuf->b_p_et)
757 {
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200758#ifdef FEAT_VARTABS
759 int t, s;
760
761 tabstop_fromto(start_vcol, vcol,
Bram Moolenaar0119a592018-06-24 23:53:28 +0200762 curbuf->b_p_ts, new_vts_array, &t, &s);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200763 num_tabs = t;
764 num_spaces = s;
765#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 temp = new_ts - (start_vcol % new_ts);
767 if (num_spaces >= temp)
768 {
769 num_spaces -= temp;
770 num_tabs++;
771 }
772 num_tabs += num_spaces / new_ts;
773 num_spaces -= (num_spaces / new_ts) * new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200774#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 }
776 if (curbuf->b_p_et || got_tab ||
777 (num_spaces + num_tabs < len))
778 {
779 if (did_undo == FALSE)
780 {
781 did_undo = TRUE;
782 if (u_save((linenr_T)(lnum - 1),
783 (linenr_T)(lnum + 1)) == FAIL)
784 {
785 new_line = NULL; /* flag out-of-memory */
786 break;
787 }
788 }
789
790 /* len is actual number of white characters used */
791 len = num_spaces + num_tabs;
792 old_len = (long)STRLEN(ptr);
793 new_line = lalloc(old_len - col + start_col + len + 1,
794 TRUE);
795 if (new_line == NULL)
796 break;
797 if (start_col > 0)
798 mch_memmove(new_line, ptr, (size_t)start_col);
799 mch_memmove(new_line + start_col + len,
800 ptr + col, (size_t)(old_len - col + 1));
801 ptr = new_line + start_col;
802 for (col = 0; col < len; col++)
803 ptr[col] = (col < num_tabs) ? '\t' : ' ';
804 ml_replace(lnum, new_line, FALSE);
805 if (first_line == 0)
806 first_line = lnum;
807 last_line = lnum;
808 ptr = new_line;
809 col = start_col + len;
810 }
811 }
812 got_tab = FALSE;
813 num_spaces = 0;
814 }
815 if (ptr[col] == NUL)
816 break;
817 vcol += chartabsize(ptr + col, (colnr_T)vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000819 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 ++col;
822 }
823 if (new_line == NULL) /* out of memory */
824 break;
825 line_breakcheck();
826 }
827 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100828 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200830#ifdef FEAT_VARTABS
831 // If a single value was given then it can be considered equal to
832 // either the value of 'tabstop' or the value of 'vartabstop'.
833 if (tabstop_count(curbuf->b_p_vts_array) == 0
Bram Moolenaar0119a592018-06-24 23:53:28 +0200834 && tabstop_count(new_vts_array) == 1
835 && curbuf->b_p_ts == tabstop_first(new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200836 ; /* not changed */
837 else if (tabstop_count(curbuf->b_p_vts_array) > 0
Bram Moolenaar0119a592018-06-24 23:53:28 +0200838 && tabstop_eq(curbuf->b_p_vts_array, new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200839 ; /* not changed */
840 else
841 redraw_curbuf_later(NOT_VALID);
842#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 if (curbuf->b_p_ts != new_ts)
844 redraw_curbuf_later(NOT_VALID);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200845#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 if (first_line != 0)
847 changed_lines(first_line, 0, last_line + 1, 0L);
848
849 curwin->w_p_list = save_list; /* restore 'list' */
850
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200851#ifdef FEAT_VARTABS
852 if (new_ts_str != NULL) /* set the new tabstop */
853 {
854 // If 'vartabstop' is in use or if the value given to retab has more
855 // than one tabstop then update 'vartabstop'.
856 int *old_vts_ary = curbuf->b_p_vts_array;
857
Bram Moolenaar0119a592018-06-24 23:53:28 +0200858 if (tabstop_count(old_vts_ary) > 0 || tabstop_count(new_vts_array) > 1)
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200859 {
860 set_string_option_direct((char_u *)"vts", -1, new_ts_str,
861 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0119a592018-06-24 23:53:28 +0200862 curbuf->b_p_vts_array = new_vts_array;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200863 vim_free(old_vts_ary);
864 }
865 else
866 {
867 // 'vartabstop' wasn't in use and a single value was given to
868 // retab then update 'tabstop'.
Bram Moolenaar0119a592018-06-24 23:53:28 +0200869 curbuf->b_p_ts = tabstop_first(new_vts_array);
870 vim_free(new_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200871 }
Bram Moolenaar307ac5c2018-06-28 22:23:00 +0200872 vim_free(new_ts_str);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200873 }
874#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 curbuf->b_p_ts = new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200876#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 coladvance(curwin->w_curswant);
878
879 u_clearline();
880}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881
882/*
883 * :move command - move lines line1-line2 to line dest
884 *
885 * return FAIL for failure, OK otherwise
886 */
887 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100888do_move(linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889{
890 char_u *str;
891 linenr_T l;
Bram Moolenaarddd1f912018-11-10 19:19:36 +0100892 linenr_T extra; // Num lines added before line1
893 linenr_T num_lines; // Num lines moved
894 linenr_T last_line; // Last line in file after adding new text
Bram Moolenaard5f69332015-04-15 12:43:50 +0200895#ifdef FEAT_FOLDING
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100896 win_T *win;
897 tabpage_T *tp;
Bram Moolenaard5f69332015-04-15 12:43:50 +0200898#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899
900 if (dest >= line1 && dest < line2)
901 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100902 emsg(_("E134: Cannot move a range of lines into itself"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 return FAIL;
904 }
905
Bram Moolenaarddd1f912018-11-10 19:19:36 +0100906 // Do nothing if we are not actually moving any lines. This will prevent
907 // the 'modified' flag from being set without cause.
908 if (dest == line1 - 1 || dest == line2)
909 {
910 // Move the cursor as if lines were moved (see below) to be backwards
911 // compatible.
912 if (dest >= line1)
913 curwin->w_cursor.lnum = dest;
914 else
915 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
916
917 return OK;
918 }
919
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 num_lines = line2 - line1 + 1;
921
922 /*
923 * First we copy the old text to its new location -- webb
924 * Also copy the flag that ":global" command uses.
925 */
926 if (u_save(dest, dest + 1) == FAIL)
927 return FAIL;
928 for (extra = 0, l = line1; l <= line2; l++)
929 {
930 str = vim_strsave(ml_get(l + extra));
931 if (str != NULL)
932 {
933 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
934 vim_free(str);
935 if (dest < line1)
936 extra++;
937 }
938 }
939
940 /*
941 * Now we must be careful adjusting our marks so that we don't overlap our
942 * mark_adjust() calls.
943 *
944 * We adjust the marks within the old text so that they refer to the
945 * last lines of the file (temporarily), because we know no other marks
946 * will be set there since these line numbers did not exist until we added
947 * our new lines.
948 *
949 * Then we adjust the marks on lines between the old and new text positions
950 * (either forwards or backwards).
951 *
952 * And Finally we adjust the marks we put at the end of the file back to
953 * their final destination at the new text position -- webb
954 */
955 last_line = curbuf->b_ml.ml_line_count;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100956 mark_adjust_nofold(line1, line2, last_line - line2, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 if (dest >= line2)
958 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100959 mark_adjust_nofold(line2 + 1, dest, -num_lines, 0L);
960#ifdef FEAT_FOLDING
961 FOR_ALL_TAB_WINDOWS(tp, win) {
962 if (win->w_buffer == curbuf)
963 foldMoveRange(&win->w_folds, line1, line2, dest);
964 }
965#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 curbuf->b_op_start.lnum = dest - num_lines + 1;
967 curbuf->b_op_end.lnum = dest;
968 }
969 else
970 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100971 mark_adjust_nofold(dest + 1, line1 - 1, num_lines, 0L);
972#ifdef FEAT_FOLDING
973 FOR_ALL_TAB_WINDOWS(tp, win) {
974 if (win->w_buffer == curbuf)
975 foldMoveRange(&win->w_folds, dest + 1, line1 - 1, line2);
976 }
977#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 curbuf->b_op_start.lnum = dest + 1;
979 curbuf->b_op_end.lnum = dest + num_lines;
980 }
981 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100982 mark_adjust_nofold(last_line - num_lines + 1, last_line,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 -(last_line - dest - extra), 0L);
984
985 /*
986 * Now we delete the original text -- webb
987 */
988 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
989 return FAIL;
990
991 for (l = line1; l <= line2; l++)
992 ml_delete(line1 + extra, TRUE);
993
994 if (!global_busy && num_lines > p_report)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100995 smsg(NGETTEXT("%ld line moved", "%ld lines moved", num_lines),
Bram Moolenaarda6e8912018-08-21 15:12:14 +0200996 (long)num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997
998 /*
999 * Leave the cursor on the last of the moved lines.
1000 */
1001 if (dest >= line1)
1002 curwin->w_cursor.lnum = dest;
1003 else
1004 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
1005
1006 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +01001007 {
1008 dest += num_lines + 1;
1009 last_line = curbuf->b_ml.ml_line_count;
1010 if (dest > last_line + 1)
1011 dest = last_line + 1;
1012 changed_lines(line1, 0, dest, 0L);
1013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 else
1015 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
1016
1017 return OK;
1018}
1019
1020/*
1021 * ":copy"
1022 */
1023 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001024ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025{
1026 linenr_T count;
1027 char_u *p;
1028
1029 count = line2 - line1 + 1;
1030 curbuf->b_op_start.lnum = n + 1;
1031 curbuf->b_op_end.lnum = n + count;
1032 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
1033
1034 /*
1035 * there are three situations:
1036 * 1. destination is above line1
1037 * 2. destination is between line1 and line2
1038 * 3. destination is below line2
1039 *
1040 * n = destination (when starting)
1041 * curwin->w_cursor.lnum = destination (while copying)
1042 * line1 = start of source (while copying)
1043 * line2 = end of source (while copying)
1044 */
1045 if (u_save(n, n + 1) == FAIL)
1046 return;
1047
1048 curwin->w_cursor.lnum = n;
1049 while (line1 <= line2)
1050 {
1051 /* need to use vim_strsave() because the line will be unlocked within
1052 * ml_append() */
1053 p = vim_strsave(ml_get(line1));
1054 if (p != NULL)
1055 {
1056 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
1057 vim_free(p);
1058 }
1059 /* situation 2: skip already copied lines */
1060 if (line1 == n)
1061 line1 = curwin->w_cursor.lnum;
1062 ++line1;
1063 if (curwin->w_cursor.lnum < line1)
1064 ++line1;
1065 if (curwin->w_cursor.lnum < line2)
1066 ++line2;
1067 ++curwin->w_cursor.lnum;
1068 }
1069
1070 appended_lines_mark(n, count);
1071
1072 msgmore((long)count);
1073}
1074
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001075static char_u *prevcmd = NULL; /* the previous command */
1076
1077#if defined(EXITFREE) || defined(PROTO)
1078 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001079free_prev_shellcmd(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001080{
1081 vim_free(prevcmd);
1082}
1083#endif
1084
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085/*
1086 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
1087 * Bangs in the argument are replaced with the previously entered command.
1088 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 */
1090 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001091do_bang(
1092 int addr_count,
1093 exarg_T *eap,
1094 int forceit,
1095 int do_in,
1096 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097{
1098 char_u *arg = eap->arg; /* command */
1099 linenr_T line1 = eap->line1; /* start of range */
1100 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 char_u *newcmd = NULL; /* the new command */
1102 int free_newcmd = FALSE; /* need to free() newcmd */
1103 int ins_prevcmd;
1104 char_u *t;
1105 char_u *p;
1106 char_u *trailarg;
1107 int len;
1108 int scroll_save = msg_scroll;
1109
1110 /*
1111 * Disallow shell commands for "rvim".
1112 * Disallow shell commands from .exrc and .vimrc in current directory for
1113 * security reasons.
1114 */
1115 if (check_restricted() || check_secure())
1116 return;
1117
1118 if (addr_count == 0) /* :! */
1119 {
1120 msg_scroll = FALSE; /* don't scroll here */
1121 autowrite_all();
1122 msg_scroll = scroll_save;
1123 }
1124
1125 /*
1126 * Try to find an embedded bang, like in :!<cmd> ! [args]
1127 * (:!! is indicated by the 'forceit' variable)
1128 */
1129 ins_prevcmd = forceit;
1130 trailarg = arg;
1131 do
1132 {
1133 len = (int)STRLEN(trailarg) + 1;
1134 if (newcmd != NULL)
1135 len += (int)STRLEN(newcmd);
1136 if (ins_prevcmd)
1137 {
1138 if (prevcmd == NULL)
1139 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001140 emsg(_(e_noprev));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 vim_free(newcmd);
1142 return;
1143 }
1144 len += (int)STRLEN(prevcmd);
1145 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001146 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 {
1148 vim_free(newcmd);
1149 return;
1150 }
1151 *t = NUL;
1152 if (newcmd != NULL)
1153 STRCAT(t, newcmd);
1154 if (ins_prevcmd)
1155 STRCAT(t, prevcmd);
1156 p = t + STRLEN(t);
1157 STRCAT(t, trailarg);
1158 vim_free(newcmd);
1159 newcmd = t;
1160
1161 /*
1162 * Scan the rest of the argument for '!', which is replaced by the
1163 * previous command. "\!" is replaced by "!" (this is vi compatible).
1164 */
1165 trailarg = NULL;
1166 while (*p)
1167 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001168 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 {
1170 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001171 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 else
1173 {
1174 trailarg = p;
1175 *trailarg++ = NUL;
1176 ins_prevcmd = TRUE;
1177 break;
1178 }
1179 }
1180 ++p;
1181 }
1182 } while (trailarg != NULL);
1183
1184 vim_free(prevcmd);
1185 prevcmd = newcmd;
1186
1187 if (bangredo) /* put cmd in redo buffer for ! command */
1188 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001189 /* If % or # appears in the command, it must have been escaped.
1190 * Reescape them, so that redoing them does not substitute them by the
1191 * buffername. */
1192 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1193
1194 if (cmd != NULL)
1195 {
1196 AppendToRedobuffLit(cmd, -1);
1197 vim_free(cmd);
1198 }
1199 else
1200 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 AppendToRedobuff((char_u *)"\n");
1202 bangredo = FALSE;
1203 }
1204 /*
1205 * Add quotes around the command, for shells that need them.
1206 */
1207 if (*p_shq != NUL)
1208 {
1209 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1210 if (newcmd == NULL)
1211 return;
1212 STRCPY(newcmd, p_shq);
1213 STRCAT(newcmd, prevcmd);
1214 STRCAT(newcmd, p_shq);
1215 free_newcmd = TRUE;
1216 }
1217 if (addr_count == 0) /* :! */
1218 {
1219 /* echo the command */
1220 msg_start();
1221 msg_putchar(':');
1222 msg_putchar('!');
1223 msg_outtrans(newcmd);
1224 msg_clr_eos();
1225 windgoto(msg_row, msg_col);
1226
1227 do_shell(newcmd, 0);
1228 }
1229 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001230 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 /* Careful: This may recursively call do_bang() again! (because of
1232 * autocommands) */
1233 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001234 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarade00832006-03-10 21:46:58 +00001235 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 if (free_newcmd)
1237 vim_free(newcmd);
1238}
1239
1240/*
1241 * do_filter: filter lines through a command given by the user
1242 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001243 * We mostly use temp files and the call_shell() routine here. This would
1244 * normally be done using pipes on a UNIX machine, but this is more portable
1245 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246 * to deal with redirection somehow, and should handle things like looking
1247 * at the PATH env. variable, and adding reasonable extensions to the
1248 * command name given by the user. All reasonable versions of call_shell()
1249 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001250 * Alternatively, if on Unix and redirecting input or output, but not both,
1251 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 * We use input redirection if do_in is TRUE.
1253 * We use output redirection if do_out is TRUE.
1254 */
1255 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001256do_filter(
1257 linenr_T line1,
1258 linenr_T line2,
1259 exarg_T *eap, /* for forced 'ff' and 'fenc' */
1260 char_u *cmd,
1261 int do_in,
1262 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263{
1264 char_u *itmp = NULL;
1265 char_u *otmp = NULL;
1266 linenr_T linecount;
1267 linenr_T read_linecount;
1268 pos_T cursor_save;
1269 char_u *cmd_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 buf_T *old_curbuf = curbuf;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001271 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272
1273 if (*cmd == NUL) /* no filter command */
1274 return;
1275
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 cursor_save = curwin->w_cursor;
1277 linecount = line2 - line1 + 1;
1278 curwin->w_cursor.lnum = line1;
1279 curwin->w_cursor.col = 0;
1280 changed_line_abv_curs();
1281 invalidate_botline();
1282
1283 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001284 * When using temp files:
1285 * 1. * Form temp file names
1286 * 2. * Write the lines to a temp file
1287 * 3. Run the filter command on the temp file
1288 * 4. * Read the output of the command into the buffer
1289 * 5. * Delete the original lines to be filtered
1290 * 6. * Remove the temp files
1291 *
1292 * When writing the input with a pipe or when catching the output with a
1293 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 */
1295
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001296 if (do_out)
1297 shell_flags |= SHELL_DOOUT;
1298
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001299#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001300 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001302 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1303 shell_flags |= SHELL_READ;
1304 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001306 else if (do_in && !do_out && !p_stmp)
1307 {
1308 /* Use a pipe to write stdin of the command, do not use a temp file. */
1309 shell_flags |= SHELL_WRITE;
1310 curbuf->b_op_start.lnum = line1;
1311 curbuf->b_op_end.lnum = line2;
1312 }
1313 else if (do_in && do_out && !p_stmp)
1314 {
1315 /* Use a pipe to write stdin and fetch stdout of the command, do not
1316 * use a temp file. */
1317 shell_flags |= SHELL_READ|SHELL_WRITE;
1318 curbuf->b_op_start.lnum = line1;
1319 curbuf->b_op_end.lnum = line2;
1320 curwin->w_cursor.lnum = line2;
1321 }
1322 else
1323#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001324 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1325 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001326 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001327 emsg(_(e_notmp));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001328 goto filterend;
1329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330
1331/*
1332 * The writing and reading of temp files will not be shown.
1333 * Vi also doesn't do this and the messages are not very informative.
1334 */
1335 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001336 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 FALSE, FALSE, FALSE, TRUE) == FAIL)
1338 {
1339 msg_putchar('\n'); /* keep message from buf_write() */
1340 --no_wait_return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001341#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 if (!aborting())
1343#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001344 (void)semsg(_(e_notcreate), itmp); /* will call wait_return */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 goto filterend;
1346 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 if (curbuf != old_curbuf)
1348 goto filterend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349
1350 if (!do_out)
1351 msg_putchar('\n');
1352
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001353 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1355 if (cmd_buf == NULL)
1356 goto filterend;
1357
1358 windgoto((int)Rows - 1, 0);
1359 cursor_on();
1360
1361 /*
1362 * When not redirecting the output the command can write anything to the
1363 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1364 * stderr output of external command. Clear the screen later.
1365 * If do_in is FALSE, this could be something like ":r !cat", which may
1366 * also mess up the screen, clear it later.
1367 */
1368 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1369 redraw_later_clear();
1370
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001371 if (do_out)
1372 {
1373 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001374 {
1375 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001376 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001377 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001378 redraw_curbuf_later(VALID);
1379 }
1380 read_linecount = curbuf->b_ml.ml_line_count;
1381
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 /*
1383 * When call_shell() fails wait_return() is called to give the user a
1384 * chance to read the error messages. Otherwise errors are ignored, so you
1385 * can see the error messages from the command that appear on stdout; use
1386 * 'u' to fix the text
1387 * Switch to cooked mode when not redirecting stdin, avoids that something
1388 * like ":r !cat" hangs.
1389 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1390 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001391 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 {
1393 redraw_later_clear();
1394 wait_return(FALSE);
1395 }
1396 vim_free(cmd_buf);
1397
1398 did_check_timestamps = FALSE;
1399 need_check_timestamps = TRUE;
1400
1401 /* When interrupting the shell command, it may still have produced some
1402 * useful output. Reset got_int here, so that readfile() won't cancel
1403 * reading. */
1404 ui_breakcheck();
1405 got_int = FALSE;
1406
1407 if (do_out)
1408 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001409 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001411 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001412 eap, READ_FILTER) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001414#if defined(FEAT_EVAL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001415 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001417 {
1418 msg_putchar('\n');
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001419 semsg(_(e_notread), otmp);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001420 }
1421 goto error;
1422 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001423 if (curbuf != old_curbuf)
1424 goto filterend;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001425 }
1426
1427 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1428
1429 if (shell_flags & SHELL_READ)
1430 {
1431 curbuf->b_op_start.lnum = line2 + 1;
1432 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1433 appended_lines_mark(line2, read_linecount);
1434 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435
1436 if (do_in)
1437 {
1438 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1439 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 if (read_linecount >= linecount)
1441 /* move all marks from old lines to new lines */
1442 mark_adjust(line1, line2, linecount, 0L);
1443 else
1444 {
1445 /* move marks from old lines to new lines, delete marks
1446 * that are in deleted lines */
1447 mark_adjust(line1, line1 + read_linecount - 1,
1448 linecount, 0L);
1449 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1450 }
1451 }
1452
1453 /*
1454 * Put cursor on first filtered line for ":range!cmd".
1455 * Adjust '[ and '] (set by buf_write()).
1456 */
1457 curwin->w_cursor.lnum = line1;
1458 del_lines(linecount, TRUE);
1459 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1460 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1461 write_lnum_adjust(-linecount); /* adjust last line
1462 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001463#ifdef FEAT_FOLDING
1464 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1465#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 }
1467 else
1468 {
1469 /*
1470 * Put cursor on last new line for ":r !cmd".
1471 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001473 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001475
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1477 --no_wait_return;
1478
1479 if (linecount > p_report)
1480 {
1481 if (do_in)
1482 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001483 vim_snprintf(msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00001484 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 /* save message to display it after redraw */
Bram Moolenaar32526b32019-01-19 17:43:09 +01001487 set_keep_msg((char_u *)msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 }
1489 else
1490 msgmore((long)linecount);
1491 }
1492 }
1493 else
1494 {
1495error:
1496 /* put cursor back in same position for ":w !cmd" */
1497 curwin->w_cursor = cursor_save;
1498 --no_wait_return;
1499 wait_return(FALSE);
1500 }
1501
1502filterend:
1503
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 if (curbuf != old_curbuf)
1505 {
1506 --no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001507 emsg(_("E135: *Filter* Autocommands must not change current buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 if (itmp != NULL)
1510 mch_remove(itmp);
1511 if (otmp != NULL)
1512 mch_remove(otmp);
1513 vim_free(itmp);
1514 vim_free(otmp);
1515}
1516
1517/*
1518 * Call a shell to execute a command.
1519 * When "cmd" is NULL start an interactive shell.
1520 */
1521 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001522do_shell(
1523 char_u *cmd,
1524 int flags) /* may be SHELL_DOOUT when output is redirected */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525{
1526 buf_T *buf;
1527#ifndef FEAT_GUI_MSWIN
1528 int save_nwr;
1529#endif
1530#ifdef MSWIN
1531 int winstart = FALSE;
1532#endif
1533
1534 /*
1535 * Disallow shell commands for "rvim".
1536 * Disallow shell commands from .exrc and .vimrc in current directory for
1537 * security reasons.
1538 */
1539 if (check_restricted() || check_secure())
1540 {
1541 msg_end();
1542 return;
1543 }
1544
1545#ifdef MSWIN
1546 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 * Check if ":!start" is used.
1548 */
1549 if (cmd != NULL)
1550 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1551#endif
1552
1553 /*
1554 * For autocommands we want to get the output on the current screen, to
1555 * avoid having to type return below.
1556 */
1557 msg_putchar('\r'); /* put cursor at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 if (!autocmd_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 {
1560#ifdef MSWIN
1561 if (!winstart)
1562#endif
1563 stoptermcap();
1564 }
1565#ifdef MSWIN
1566 if (!winstart)
1567#endif
1568 msg_putchar('\n'); /* may shift screen one line up */
1569
1570 /* warning message before calling the shell */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001571 if (p_warn && !autocmd_busy && msg_silent == 0)
Bram Moolenaar29323592016-07-24 22:04:11 +02001572 FOR_ALL_BUFFERS(buf)
Bram Moolenaarf405c8f2017-12-09 19:51:49 +01001573 if (bufIsChangedNotTerm(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 {
1575#ifdef FEAT_GUI_MSWIN
1576 if (!winstart)
1577 starttermcap(); /* don't want a message box here */
1578#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001579 msg_puts(_("[No write since last change]\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580#ifdef FEAT_GUI_MSWIN
1581 if (!winstart)
1582 stoptermcap();
1583#endif
1584 break;
1585 }
1586
1587 /* This windgoto is required for when the '\n' resulted in a "delete line
1588 * 1" command to the terminal. */
1589 if (!swapping_screen())
1590 windgoto(msg_row, msg_col);
1591 cursor_on();
1592 (void)call_shell(cmd, SHELL_COOKED | flags);
1593 did_check_timestamps = FALSE;
1594 need_check_timestamps = TRUE;
1595
1596 /*
1597 * put the message cursor at the end of the screen, avoids wait_return()
1598 * to overwrite the text that the external command showed
1599 */
1600 if (!swapping_screen())
1601 {
1602 msg_row = Rows - 1;
1603 msg_col = 0;
1604 }
1605
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 if (autocmd_busy)
1607 {
1608 if (msg_silent == 0)
1609 redraw_later_clear();
1610 }
1611 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 {
1613 /*
1614 * For ":sh" there is no need to call wait_return(), just redraw.
1615 * Also for the Win32 GUI (the output is in a console window).
1616 * Otherwise there is probably text on the screen that the user wants
1617 * to read before redrawing, so call wait_return().
1618 */
1619#ifndef FEAT_GUI_MSWIN
1620 if (cmd == NULL
1621# ifdef WIN3264
1622 || (winstart && !need_wait_return)
1623# endif
1624 )
1625 {
1626 if (msg_silent == 0)
1627 redraw_later_clear();
1628 need_wait_return = FALSE;
1629 }
1630 else
1631 {
1632 /*
1633 * If we switch screens when starttermcap() is called, we really
1634 * want to wait for "hit return to continue".
1635 */
1636 save_nwr = no_wait_return;
1637 if (swapping_screen())
1638 no_wait_return = FALSE;
1639# ifdef AMIGA
1640 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1641# else
1642 wait_return(msg_silent == 0);
1643# endif
1644 no_wait_return = save_nwr;
1645 }
1646#endif /* FEAT_GUI_W32 */
1647
1648#ifdef MSWIN
1649 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1650#endif
1651 starttermcap(); /* start termcap if not done by wait_return() */
1652
1653 /*
1654 * In an Amiga window redrawing is caused by asking the window size.
1655 * If we got an interrupt this will not work. The chance that the
1656 * window size is wrong is very small, but we need to redraw the
1657 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1658 * but it saves an extra redraw.
1659 */
1660#ifdef AMIGA
1661 if (skip_redraw) /* ':' hit in wait_return() */
1662 {
1663 if (msg_silent == 0)
1664 redraw_later_clear();
1665 }
1666 else if (term_console)
1667 {
1668 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1669 if (got_int && msg_silent == 0)
1670 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1671 else
1672 must_redraw = 0; /* no extra redraw needed */
1673 }
1674#endif
1675 }
1676
1677 /* display any error messages now */
1678 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001679
Bram Moolenaarade00832006-03-10 21:46:58 +00001680 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681}
1682
Bram Moolenaar06640892018-10-09 21:49:33 +02001683#if !defined(UNIX)
1684 static char_u *
1685find_pipe(char_u *cmd)
1686{
1687 char_u *p;
1688 int inquote = FALSE;
1689
1690 for (p = cmd; *p != NUL; ++p)
1691 {
1692 if (!inquote && *p == '|')
1693 return p;
1694 if (*p == '"')
1695 inquote = !inquote;
1696 else if (rem_backslash(p))
1697 ++p;
1698 }
1699 return NULL;
1700}
1701#endif
1702
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703/*
1704 * Create a shell command from a command string, input redirection file and
1705 * output redirection file.
1706 * Returns an allocated string with the shell command, or NULL for failure.
1707 */
1708 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001709make_filter_cmd(
1710 char_u *cmd, /* command */
1711 char_u *itmp, /* NULL or name of input file */
1712 char_u *otmp) /* NULL or name of output file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713{
1714 char_u *buf;
1715 long_u len;
1716
Bram Moolenaar53076832015-12-31 19:53:21 +01001717#if defined(UNIX)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001718 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001719 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001720
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001721 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001722 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1723 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001724 if (is_fish_shell)
1725 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1726 else
1727#endif
1728 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 if (itmp != NULL)
1730 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1731 if (otmp != NULL)
1732 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1733 buf = lalloc(len, TRUE);
1734 if (buf == NULL)
1735 return NULL;
1736
Bram Moolenaar53076832015-12-31 19:53:21 +01001737#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001739 * Put braces around the command (for concatenated commands) when
1740 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001742 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001743 {
1744 if (is_fish_shell)
1745 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1746 else
1747 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1748 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001749 else
1750 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 if (itmp != NULL)
1752 {
1753 STRCAT(buf, " < ");
1754 STRCAT(buf, itmp);
1755 }
1756#else
1757 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001758 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 * the use of commands in a pipe.
1760 */
1761 STRCPY(buf, cmd);
1762 if (itmp != NULL)
1763 {
1764 char_u *p;
1765
1766 /*
1767 * If there is a pipe, we have to put the '<' in front of it.
1768 * Don't do this when 'shellquote' is not empty, otherwise the
1769 * redirection would be inside the quotes.
1770 */
1771 if (*p_shq == NUL)
1772 {
Bram Moolenaar06640892018-10-09 21:49:33 +02001773 p = find_pipe(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 if (p != NULL)
1775 *p = NUL;
1776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1778 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 if (*p_shq == NUL)
1780 {
Bram Moolenaar06640892018-10-09 21:49:33 +02001781 p = find_pipe(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 if (p != NULL)
1783 {
1784 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1785 STRCAT(buf, p);
1786 }
1787 }
1788 }
1789#endif
1790 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001791 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792
1793 return buf;
1794}
1795
1796/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001797 * Append output redirection for file "fname" to the end of string buffer
1798 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 * Works with the 'shellredir' and 'shellpipe' options.
1800 * The caller should make sure that there is enough room:
1801 * STRLEN(opt) + STRLEN(fname) + 3
1802 */
1803 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001804append_redir(
1805 char_u *buf,
1806 int buflen,
1807 char_u *opt,
1808 char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809{
1810 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001811 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001813 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001814 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001816 {
1817 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001819 if (p[1] == '%') /* skip %% */
1820 ++p;
1821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 if (p != NULL)
1823 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001824 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1825 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1826 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 }
1828 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001829 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 " %s %s",
1832#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834#endif
1835 (char *)opt, (char *)fname);
1836}
1837
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001838#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001840static int read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02001841static void write_viminfo_version(FILE *fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001842static void write_viminfo_barlines(vir_T *virp, FILE *fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843static int viminfo_errcnt;
1844
1845 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001846no_viminfo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847{
1848 /* "vim -i NONE" does not read or write a viminfo file */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001849 return STRCMP(p_viminfofile, "NONE") == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850}
1851
1852/*
1853 * Report an error for reading a viminfo file.
1854 * Count the number of errors. When there are more than 10, return TRUE.
1855 */
1856 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001857viminfo_error(char *errnum, char *message, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001859 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1860 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001861 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001862 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1863 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001864 emsg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 if (++viminfo_errcnt >= 10)
1866 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001867 emsg(_("E136: viminfo: Too many errors, skipping rest of file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 return TRUE;
1869 }
1870 return FALSE;
1871}
1872
1873/*
1874 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001875 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 */
1877 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001878read_viminfo(
1879 char_u *file, /* file name or NULL to use default name */
1880 int flags) /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881{
1882 FILE *fp;
1883 char_u *fname;
1884
1885 if (no_viminfo())
1886 return FAIL;
1887
Bram Moolenaard812df62008-11-09 12:46:09 +00001888 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 if (fname == NULL)
1890 return FAIL;
1891 fp = mch_fopen((char *)fname, READBIN);
1892
1893 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001894 {
1895 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001896 smsg(_("Reading viminfo file \"%s\"%s%s%s"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00001897 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001898 (flags & VIF_WANT_INFO) ? _(" info") : "",
1899 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1900 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001901 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001902 verbose_leave();
1903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904
1905 vim_free(fname);
1906 if (fp == NULL)
1907 return FAIL;
1908
1909 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001910 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911
1912 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 return OK;
1914}
1915
1916/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001917 * Write the viminfo file. The old one is read in first so that effectively a
1918 * merge of current info and old info is done. This allows multiple vims to
1919 * run simultaneously, without losing any marks etc.
1920 * If "forceit" is TRUE, then the old file is not read in, and only internal
1921 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 */
1923 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001924write_viminfo(char_u *file, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925{
1926 char_u *fname;
1927 FILE *fp_in = NULL; /* input viminfo file, if any */
1928 FILE *fp_out = NULL; /* output viminfo file */
1929 char_u *tempname = NULL; /* name of temp viminfo file */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001930 stat_T st_new; /* mch_stat() of potential new file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931#if defined(UNIX) || defined(VMS)
1932 mode_t umask_save;
1933#endif
1934#ifdef UNIX
1935 int shortname = FALSE; /* use 8.3 file name */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001936 stat_T st_old; /* mch_stat() of existing viminfo file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001938#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001939 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941
1942 if (no_viminfo())
1943 return;
1944
1945 fname = viminfo_filename(file); /* may set to default if NULL */
1946 if (fname == NULL)
1947 return;
1948
1949 fp_in = mch_fopen((char *)fname, READBIN);
1950 if (fp_in == NULL)
1951 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001952 int fd;
1953
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 /* if it does exist, but we can't read it, don't try writing */
1955 if (mch_stat((char *)fname, &st_new) == 0)
1956 goto end;
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001957
1958 /* Create the new .viminfo non-accessible for others, because it may
1959 * contain text from non-accessible documents. It is up to the user to
1960 * widen access (e.g. to a group). This may also fail if there is a
1961 * race condition, then just give up. */
1962 fd = mch_open((char *)fname,
1963 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
1964 if (fd < 0)
1965 goto end;
1966 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 }
1968 else
1969 {
1970 /*
1971 * There is an existing viminfo file. Create a temporary file to
1972 * write the new viminfo into, in the same directory as the
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001973 * existing viminfo file, which will be renamed once all writing is
1974 * successful.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 */
1976#ifdef UNIX
1977 /*
1978 * For Unix we check the owner of the file. It's not very nice to
1979 * overwrite a user's viminfo file after a "su root", with a
1980 * viminfo file that the user can't read.
1981 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001982 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001983 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001985 if (mch_stat((char *)fname, &st_old) == 0
1986 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001987 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 ? (st_old.st_mode & 0200)
1989 : (st_old.st_gid == getgid()
1990 ? (st_old.st_mode & 0020)
1991 : (st_old.st_mode & 0002))))
1992 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001993 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994
1995 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001996 semsg(_("E137: Viminfo file is not writable: %s"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001998 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 goto end;
2000 }
2001#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002002#ifdef WIN3264
2003 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01002004 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002005#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006
2007 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002008 * Make tempname, find one that does not exist yet.
2009 * Beware of a race condition: If someone logs out and all Vim
2010 * instances exit at the same time a temp file might be created between
2011 * stat() and open(). Use mch_open() with O_EXCL to avoid that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 * May try twice: Once normal and once with shortname set, just in
2013 * case somebody puts his viminfo file in an 8.3 filesystem.
2014 */
2015 for (;;)
2016 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002017 int next_char = 'z';
2018 char_u *wp;
2019
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 tempname = buf_modname(
2021#ifdef UNIX
2022 shortname,
2023#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025#endif
2026 fname,
2027#ifdef VMS
2028 (char_u *)"-tmp",
2029#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031#endif
2032 FALSE);
2033 if (tempname == NULL) /* out of memory */
2034 break;
2035
2036 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002037 * Try a series of names. Change one character, just before
2038 * the extension. This should also work for an 8.3
2039 * file name, when after adding the extension it still is
2040 * the same file as the original.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002042 wp = tempname + STRLEN(tempname) - 5;
2043 if (wp < gettail(tempname)) /* empty file name? */
2044 wp = gettail(tempname);
2045 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002047 /*
2048 * Check if tempfile already exists. Never overwrite an
2049 * existing file!
2050 */
2051 if (mch_stat((char *)tempname, &st_new) == 0)
2052 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002055 * Check if tempfile is same as original file. May happen
2056 * when modname() gave the same file back. E.g. silly
2057 * link, or file name-length reached. Try again with
2058 * shortname set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002060 if (!shortname && st_new.st_dev == st_old.st_dev
2061 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002063 VIM_CLEAR(tempname);
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002064 shortname = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 break;
2066 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002067#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002069 else
2070 {
2071 /* Try creating the file exclusively. This may fail if
2072 * another Vim tries to do it at the same time. */
2073#ifdef VMS
2074 /* fdopen() fails for some reason */
2075 umask_save = umask(077);
2076 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2077 (void)umask(umask_save);
2078#else
2079 int fd;
2080
2081 /* Use mch_open() to be able to use O_NOFOLLOW and set file
2082 * protection:
2083 * Unix: same as original file, but strip s-bit. Reset
2084 * umask to avoid it getting in the way.
2085 * Others: r&w for user only. */
2086# ifdef UNIX
2087 umask_save = umask(0);
2088 fd = mch_open((char *)tempname,
2089 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
2090 (int)((st_old.st_mode & 0777) | 0600));
2091 (void)umask(umask_save);
2092# else
2093 fd = mch_open((char *)tempname,
2094 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
2095# endif
2096 if (fd < 0)
2097 {
2098 fp_out = NULL;
2099# ifdef EEXIST
2100 /* Avoid trying lots of names while the problem is lack
2101 * of premission, only retry if the file already
2102 * exists. */
2103 if (errno != EEXIST)
2104 break;
2105# endif
2106 }
2107 else
2108 fp_out = fdopen(fd, WRITEBIN);
2109#endif /* VMS */
2110 if (fp_out != NULL)
2111 break;
2112 }
2113
2114 /* Assume file exists, try again with another name. */
2115 if (next_char == 'a' - 1)
2116 {
2117 /* They all exist? Must be something wrong! Don't write
2118 * the viminfo file then. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002119 semsg(_("E929: Too many viminfo temp files, like %s!"),
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002120 tempname);
2121 break;
2122 }
2123 *wp = next_char;
2124 --next_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002126
2127 if (tempname != NULL)
2128 break;
2129 /* continue if shortname was set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 }
2131
Bram Moolenaara5792f52005-11-23 21:25:05 +00002132#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002133 if (tempname != NULL && fp_out != NULL)
2134 {
2135 stat_T tmp_st;
2136
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 /*
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002138 * Make sure the original owner can read/write the tempfile and
2139 * otherwise preserve permissions, making sure the group matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002141 if (mch_stat((char *)tempname, &tmp_st) >= 0)
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002142 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002143 if (st_old.st_uid != tmp_st.st_uid)
2144 /* Changing the owner might fail, in which case the
2145 * file will now owned by the current user, oh well. */
Bram Moolenaar42335f52018-09-13 15:33:43 +02002146 vim_ignored = fchown(fileno(fp_out), st_old.st_uid, -1);
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002147 if (st_old.st_gid != tmp_st.st_gid
2148 && fchown(fileno(fp_out), -1, st_old.st_gid) == -1)
2149 /* can't set the group to what it should be, remove
2150 * group permissions */
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002151 (void)mch_setperm(tempname, 0600);
2152 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002153 else
2154 /* can't stat the file, set conservative permissions */
2155 (void)mch_setperm(tempname, 0600);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002157#endif
Bram Moolenaare0aa23f2017-11-26 17:08:03 +01002158 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159
2160 /*
2161 * Check if the new viminfo file can be written to.
2162 */
2163 if (fp_out == NULL)
2164 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002165 semsg(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002166 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 if (fp_in != NULL)
2168 fclose(fp_in);
2169 goto end;
2170 }
2171
2172 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002173 {
2174 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002175 smsg(_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002176 verbose_leave();
2177 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178
2179 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002180 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181
Bram Moolenaar927030a2016-03-15 18:23:55 +01002182 if (fclose(fp_out) == EOF)
2183 ++viminfo_errcnt;
2184
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 if (fp_in != NULL)
2186 {
2187 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002188
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002189 /* In case of an error keep the original viminfo file. Otherwise
2190 * rename the newly written file. Give an error if that fails. */
Bram Moolenaar927030a2016-03-15 18:23:55 +01002191 if (viminfo_errcnt == 0)
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002192 {
Bram Moolenaar927030a2016-03-15 18:23:55 +01002193 if (vim_rename(tempname, fname) == -1)
2194 {
2195 ++viminfo_errcnt;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002196 semsg(_("E886: Can't rename viminfo file to %s!"), fname);
Bram Moolenaar927030a2016-03-15 18:23:55 +01002197 }
2198# ifdef WIN3264
2199 /* If the viminfo file was hidden then also hide the new file. */
2200 else if (hidden)
2201 mch_hide(fname);
2202# endif
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002203 }
2204 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 mch_remove(tempname);
2206 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002207
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208end:
2209 vim_free(fname);
2210 vim_free(tempname);
2211}
2212
2213/*
2214 * Get the viminfo file name to use.
2215 * If "file" is given and not empty, use it (has already been expanded by
2216 * cmdline functions).
2217 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2218 * expand environment variables.
2219 * Returns an allocated string. NULL when out of memory.
2220 */
2221 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002222viminfo_filename(char_u *file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223{
2224 if (file == NULL || *file == NUL)
2225 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002226 if (*p_viminfofile != NUL)
2227 file = p_viminfofile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2229 {
2230#ifdef VIMINFO_FILE2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231# ifdef VMS
2232 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2233# else
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002234# ifdef MSWIN
2235 /* Use $VIM only if $HOME is the default "C:/". */
2236 if (STRCMP(vim_getenv((char_u *)"HOME", NULL), "C:/") == 0
2237 && mch_getenv((char_u *)"HOME") == NULL)
2238# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 if (mch_getenv((char_u *)"HOME") == NULL)
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002240# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241# endif
2242 {
2243 /* don't use $VIM when not available. */
2244 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2245 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2246 file = (char_u *)VIMINFO_FILE2;
2247 else
2248 file = (char_u *)VIMINFO_FILE;
2249 }
2250 else
2251#endif
2252 file = (char_u *)VIMINFO_FILE;
2253 }
2254 expand_env(file, NameBuff, MAXPATHL);
2255 file = NameBuff;
2256 }
2257 return vim_strsave(file);
2258}
2259
2260/*
2261 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2262 */
2263 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002264do_viminfo(FILE *fp_in, FILE *fp_out, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 int eof = FALSE;
2267 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002268 int merge = FALSE;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002269 int do_copy_marks = FALSE;
2270 garray_T buflist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271
2272 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2273 return;
2274 vir.vir_fd = fp_in;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 vir.vir_conv.vc_type = CONV_NONE;
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002276 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002277 vir.vir_version = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278
2279 if (fp_in != NULL)
2280 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002281 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002282 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002283 if (fp_out != NULL)
Bram Moolenaar2d358992016-06-12 21:20:54 +02002284 {
2285 /* Registers and marks are read and kept separate from what
2286 * this Vim is using. They are merged when writing. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002287 prepare_viminfo_registers();
Bram Moolenaar2d358992016-06-12 21:20:54 +02002288 prepare_viminfo_marks();
2289 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002290
Bram Moolenaard812df62008-11-09 12:46:09 +00002291 eof = read_viminfo_up_to_marks(&vir,
2292 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002293 merge = TRUE;
2294 }
2295 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 /* Skip info, find start of marks */
2297 while (!(eof = viminfo_readline(&vir))
2298 && vir.vir_line[0] != '>')
2299 ;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002300
2301 do_copy_marks = (flags &
2302 (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002304
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 if (fp_out != NULL)
2306 {
2307 /* Write the info: */
2308 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2309 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002310 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002311 write_viminfo_version(fp_out);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002312 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 write_viminfo_search_pattern(fp_out);
2315 write_viminfo_sub_string(fp_out);
2316#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002317 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318#endif
2319 write_viminfo_registers(fp_out);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002320 finish_viminfo_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321#ifdef FEAT_EVAL
2322 write_viminfo_varlist(fp_out);
2323#endif
2324 write_viminfo_filemarks(fp_out);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002325 finish_viminfo_marks();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 write_viminfo_bufferlist(fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002327 write_viminfo_barlines(&vir, fp_out);
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002328
2329 if (do_copy_marks)
2330 ga_init2(&buflist, sizeof(buf_T *), 50);
2331 write_viminfo_marks(fp_out, do_copy_marks ? &buflist : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002333
2334 if (do_copy_marks)
2335 {
2336 copy_viminfo_marks(&vir, fp_out, &buflist, eof, flags);
2337 if (fp_out != NULL)
2338 ga_clear(&buflist);
2339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340
2341 vim_free(vir.vir_line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 if (vir.vir_conv.vc_type != CONV_NONE)
2343 convert_setup(&vir.vir_conv, NULL, NULL);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002344 ga_clear_strings(&vir.vir_barlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345}
2346
2347/*
2348 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2349 * first part of the viminfo file which contains everything but the marks that
2350 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2351 */
2352 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002353read_viminfo_up_to_marks(
2354 vir_T *virp,
2355 int forceit,
2356 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357{
2358 int eof;
2359 buf_T *buf;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002360 int got_encoding = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361
2362#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002363 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002365
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 eof = viminfo_readline(virp);
2367 while (!eof && virp->vir_line[0] != '>')
2368 {
2369 switch (virp->vir_line[0])
2370 {
2371 /* Characters reserved for future expansion, ignored now */
2372 case '+': /* "+40 /path/dir file", for running vim without args */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 case '^': /* to be defined */
2374 case '<': /* long line - ignored */
2375 /* A comment or empty line. */
2376 case NUL:
2377 case '\r':
2378 case '\n':
2379 case '#':
2380 eof = viminfo_readline(virp);
2381 break;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002382 case '|':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002383 eof = read_viminfo_barline(virp, got_encoding,
2384 forceit, writing);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002385 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 case '*': /* "*encoding=value" */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002387 got_encoding = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 eof = viminfo_encoding(virp);
2389 break;
2390 case '!': /* global variable */
2391#ifdef FEAT_EVAL
2392 eof = read_viminfo_varlist(virp, writing);
2393#else
2394 eof = viminfo_readline(virp);
2395#endif
2396 break;
2397 case '%': /* entry for buffer list */
2398 eof = read_viminfo_bufferlist(virp, writing);
2399 break;
2400 case '"':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002401 /* When registers are in bar lines skip the old style register
2402 * lines. */
2403 if (virp->vir_version < VIMINFO_VERSION_WITH_REGISTERS)
2404 eof = read_viminfo_register(virp, forceit);
2405 else
2406 do {
2407 eof = viminfo_readline(virp);
2408 } while (!eof && (virp->vir_line[0] == TAB
2409 || virp->vir_line[0] == '<'));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 break;
2411 case '/': /* Search string */
2412 case '&': /* Substitute search string */
2413 case '~': /* Last search string, followed by '/' or '&' */
2414 eof = read_viminfo_search_pattern(virp, forceit);
2415 break;
2416 case '$':
2417 eof = read_viminfo_sub_string(virp, forceit);
2418 break;
2419 case ':':
2420 case '?':
2421 case '=':
2422 case '@':
2423#ifdef FEAT_CMDHIST
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002424 /* When history is in bar lines skip the old style history
2425 * lines. */
2426 if (virp->vir_version < VIMINFO_VERSION_WITH_HISTORY)
2427 eof = read_viminfo_history(virp, writing);
2428 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002430 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 break;
2432 case '-':
2433 case '\'':
Bram Moolenaara641e1d2016-06-13 21:16:03 +02002434 /* When file marks are in bar lines skip the old style lines. */
2435 if (virp->vir_version < VIMINFO_VERSION_WITH_MARKS)
2436 eof = read_viminfo_filemark(virp, forceit);
2437 else
2438 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 break;
2440 default:
2441 if (viminfo_error("E575: ", _("Illegal starting char"),
2442 virp->vir_line))
2443 eof = TRUE;
2444 else
2445 eof = viminfo_readline(virp);
2446 break;
2447 }
2448 }
2449
2450#ifdef FEAT_CMDHIST
2451 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002452 if (!writing)
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02002453 finish_viminfo_history(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454#endif
2455
2456 /* Change file names to buffer numbers for fmarks. */
Bram Moolenaar29323592016-07-24 22:04:11 +02002457 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 fmarks_check_names(buf);
2459
2460 return eof;
2461}
2462
2463/*
2464 * Compare the 'encoding' value in the viminfo file with the current value of
2465 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2466 * conversion of text with iconv() in viminfo_readstring().
2467 */
2468 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002469viminfo_encoding(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 char_u *p;
2472 int i;
2473
2474 if (get_viminfo_parameter('c') != 0)
2475 {
2476 p = vim_strchr(virp->vir_line, '=');
2477 if (p != NULL)
2478 {
2479 /* remove trailing newline */
2480 ++p;
2481 for (i = 0; vim_isprintc(p[i]); ++i)
2482 ;
2483 p[i] = NUL;
2484
2485 convert_setup(&virp->vir_conv, p, p_enc);
2486 }
2487 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 return viminfo_readline(virp);
2489}
2490
2491/*
2492 * Read a line from the viminfo file.
2493 * Returns TRUE for end-of-file;
2494 */
2495 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002496viminfo_readline(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497{
2498 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2499}
2500
2501/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002502 * Check string read from viminfo file.
2503 * Remove '\n' at the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 * - replace CTRL-V CTRL-V with CTRL-V
2505 * - replace CTRL-V 'n' with '\n'
2506 *
2507 * Check for a long line as written by viminfo_writestring().
2508 *
2509 * Return the string in allocated memory (NULL when out of memory).
2510 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002512viminfo_readstring(
2513 vir_T *virp,
2514 int off, /* offset for virp->vir_line */
2515 int convert UNUSED) /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516{
2517 char_u *retval;
2518 char_u *s, *d;
2519 long len;
2520
2521 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2522 {
2523 len = atol((char *)virp->vir_line + off + 1);
2524 retval = lalloc(len, TRUE);
2525 if (retval == NULL)
2526 {
2527 /* Line too long? File messed up? Skip next line. */
2528 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2529 return NULL;
2530 }
2531 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2532 s = retval + 1; /* Skip the leading '<' */
2533 }
2534 else
2535 {
2536 retval = vim_strsave(virp->vir_line + off);
2537 if (retval == NULL)
2538 return NULL;
2539 s = retval;
2540 }
2541
2542 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2543 d = retval;
2544 while (*s != NUL && *s != '\n')
2545 {
2546 if (s[0] == Ctrl_V && s[1] != NUL)
2547 {
2548 if (s[1] == 'n')
2549 *d++ = '\n';
2550 else
2551 *d++ = Ctrl_V;
2552 s += 2;
2553 }
2554 else
2555 *d++ = *s++;
2556 }
2557 *d = NUL;
2558
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2560 {
2561 d = string_convert(&virp->vir_conv, retval, NULL);
2562 if (d != NULL)
2563 {
2564 vim_free(retval);
2565 retval = d;
2566 }
2567 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568
2569 return retval;
2570}
2571
2572/*
2573 * write string to viminfo file
2574 * - replace CTRL-V with CTRL-V CTRL-V
2575 * - replace '\n' with CTRL-V 'n'
2576 * - add a '\n' at the end
2577 *
2578 * For a long line:
2579 * - write " CTRL-V <length> \n " in first line
2580 * - write " < <string> \n " in second line
2581 */
2582 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002583viminfo_writestring(FILE *fd, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584{
2585 int c;
2586 char_u *s;
2587 int len = 0;
2588
2589 for (s = p; *s != NUL; ++s)
2590 {
2591 if (*s == Ctrl_V || *s == '\n')
2592 ++len;
2593 ++len;
2594 }
2595
2596 /* If the string will be too long, write its length and put it in the next
2597 * line. Take into account that some room is needed for what comes before
2598 * the string (e.g., variable name). Add something to the length for the
2599 * '<', NL and trailing NUL. */
2600 if (len > LSIZE / 2)
2601 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2602
2603 while ((c = *p++) != NUL)
2604 {
2605 if (c == Ctrl_V || c == '\n')
2606 {
2607 putc(Ctrl_V, fd);
2608 if (c == '\n')
2609 c = 'n';
2610 }
2611 putc(c, fd);
2612 }
2613 putc('\n', fd);
2614}
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002615
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002616/*
2617 * Write a string in quotes that barline_parse() can read back.
2618 * Breaks the line in less than LSIZE pieces when needed.
2619 * Returns remaining characters in the line.
2620 */
2621 int
2622barline_writestring(FILE *fd, char_u *s, int remaining_start)
2623{
2624 char_u *p;
2625 int remaining = remaining_start;
2626 int len = 2;
2627
2628 /* Count the number of characters produced, including quotes. */
2629 for (p = s; *p != NUL; ++p)
2630 {
2631 if (*p == NL)
2632 len += 2;
2633 else if (*p == '"' || *p == '\\')
2634 len += 2;
2635 else
2636 ++len;
2637 }
Bram Moolenaar25709572016-08-26 20:41:16 +02002638 if (len > remaining - 2)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002639 {
2640 fprintf(fd, ">%d\n|<", len);
2641 remaining = LSIZE - 20;
2642 }
2643
2644 putc('"', fd);
2645 for (p = s; *p != NUL; ++p)
2646 {
2647 if (*p == NL)
2648 {
2649 putc('\\', fd);
2650 putc('n', fd);
2651 --remaining;
2652 }
2653 else if (*p == '"' || *p == '\\')
2654 {
2655 putc('\\', fd);
2656 putc(*p, fd);
2657 --remaining;
2658 }
2659 else
2660 putc(*p, fd);
2661 --remaining;
2662
2663 if (remaining < 3)
2664 {
2665 putc('\n', fd);
2666 putc('|', fd);
2667 putc('<', fd);
2668 /* Leave enough space for another continuation. */
2669 remaining = LSIZE - 20;
2670 }
2671 }
2672 putc('"', fd);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002673 return remaining - 2;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002674}
2675
2676/*
2677 * Parse a viminfo line starting with '|'.
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002678 * Add each decoded value to "values".
Bram Moolenaarecefe712016-06-20 12:50:17 +02002679 * Returns TRUE if the next line is to be read after using the parsed values.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002680 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002681 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002682barline_parse(vir_T *virp, char_u *text, garray_T *values)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002683{
2684 char_u *p = text;
2685 char_u *nextp = NULL;
Bram Moolenaarfdd82fe2016-06-06 21:38:44 +02002686 char_u *buf = NULL;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002687 bval_T *value;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002688 int i;
2689 int allocated = FALSE;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002690 int eof;
Bram Moolenaar01227092016-06-11 14:47:40 +02002691 char_u *sconv;
2692 int converted;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002693
2694 while (*p == ',')
2695 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002696 ++p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002697 if (ga_grow(values, 1) == FAIL)
2698 break;
2699 value = (bval_T *)(values->ga_data) + values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002700
2701 if (*p == '>')
2702 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002703 /* Need to read a continuation line. Put strings in allocated
2704 * memory, because virp->vir_line is overwritten. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002705 if (!allocated)
2706 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002707 for (i = 0; i < values->ga_len; ++i)
2708 {
2709 bval_T *vp = (bval_T *)(values->ga_data) + i;
2710
2711 if (vp->bv_type == BVAL_STRING && !vp->bv_allocated)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002712 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002713 vp->bv_string = vim_strnsave(vp->bv_string, vp->bv_len);
2714 vp->bv_allocated = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002715 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002716 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002717 allocated = TRUE;
2718 }
2719
2720 if (vim_isdigit(p[1]))
2721 {
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002722 size_t len;
2723 size_t todo;
2724 size_t n;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002725
2726 /* String value was split into lines that are each shorter
2727 * than LSIZE:
2728 * |{bartype},>{length of "{text}{text2}"}
2729 * |<"{text1}
2730 * |<{text2}",{value}
Bram Moolenaarecefe712016-06-20 12:50:17 +02002731 * Length includes the quotes.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002732 */
2733 ++p;
2734 len = getdigits(&p);
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002735 buf = alloc((int)(len + 1));
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002736 if (buf == NULL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002737 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002738 p = buf;
2739 for (todo = len; todo > 0; todo -= n)
2740 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002741 eof = viminfo_readline(virp);
2742 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002743 || virp->vir_line[1] != '<')
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002744 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002745 /* File was truncated or garbled. Read another line if
2746 * this one starts with '|'. */
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002747 vim_free(buf);
Bram Moolenaarecefe712016-06-20 12:50:17 +02002748 return eof || virp->vir_line[0] == '|';
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002749 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002750 /* Get length of text, excluding |< and NL chars. */
2751 n = STRLEN(virp->vir_line);
2752 while (n > 0 && (virp->vir_line[n - 1] == NL
2753 || virp->vir_line[n - 1] == CAR))
2754 --n;
2755 n -= 2;
2756 if (n > todo)
2757 {
2758 /* more values follow after the string */
2759 nextp = virp->vir_line + 2 + todo;
2760 n = todo;
2761 }
2762 mch_memmove(p, virp->vir_line + 2, n);
2763 p += n;
2764 }
2765 *p = NUL;
2766 p = buf;
2767 }
2768 else
2769 {
2770 /* Line ending in ">" continues in the next line:
2771 * |{bartype},{lots of values},>
2772 * |<{value},{value}
2773 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002774 eof = viminfo_readline(virp);
2775 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002776 || virp->vir_line[1] != '<')
Bram Moolenaarecefe712016-06-20 12:50:17 +02002777 /* File was truncated or garbled. Read another line if
2778 * this one starts with '|'. */
2779 return eof || virp->vir_line[0] == '|';
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002780 p = virp->vir_line + 2;
2781 }
2782 }
2783
2784 if (isdigit(*p))
2785 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002786 value->bv_type = BVAL_NR;
2787 value->bv_nr = getdigits(&p);
2788 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002789 }
2790 else if (*p == '"')
2791 {
2792 int len = 0;
2793 char_u *s = p;
2794
2795 /* Unescape special characters in-place. */
2796 ++p;
2797 while (*p != '"')
2798 {
2799 if (*p == NL || *p == NUL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002800 return TRUE; /* syntax error, drop the value */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002801 if (*p == '\\')
2802 {
2803 ++p;
2804 if (*p == 'n')
2805 s[len++] = '\n';
2806 else
2807 s[len++] = *p;
2808 ++p;
2809 }
2810 else
2811 s[len++] = *p++;
2812 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002813 ++p;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002814 s[len] = NUL;
2815
Bram Moolenaar01227092016-06-11 14:47:40 +02002816 converted = FALSE;
2817 if (virp->vir_conv.vc_type != CONV_NONE && *s != NUL)
2818 {
2819 sconv = string_convert(&virp->vir_conv, s, NULL);
2820 if (sconv != NULL)
2821 {
2822 if (s == buf)
2823 vim_free(s);
2824 s = sconv;
2825 buf = s;
2826 converted = TRUE;
2827 }
2828 }
Bram Moolenaar13505972019-01-24 15:04:48 +01002829
Bram Moolenaar01227092016-06-11 14:47:40 +02002830 /* Need to copy in allocated memory if the string wasn't allocated
2831 * above and we did allocate before, thus vir_line may change. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002832 if (s != buf && allocated)
2833 s = vim_strsave(s);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002834 value->bv_string = s;
2835 value->bv_type = BVAL_STRING;
2836 value->bv_len = len;
Bram Moolenaar13505972019-01-24 15:04:48 +01002837 value->bv_allocated = allocated || converted;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002838 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002839 if (nextp != NULL)
2840 {
2841 /* values following a long string */
2842 p = nextp;
2843 nextp = NULL;
2844 }
2845 }
2846 else if (*p == ',')
2847 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002848 value->bv_type = BVAL_EMPTY;
2849 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002850 }
2851 else
2852 break;
2853 }
Bram Moolenaarecefe712016-06-20 12:50:17 +02002854 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002855}
2856
2857 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002858read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002859{
2860 char_u *p = virp->vir_line + 1;
2861 int bartype;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002862 garray_T values;
2863 bval_T *vp;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002864 int i;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002865 int read_next = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002866
2867 /* The format is: |{bartype},{value},...
2868 * For a very long string:
2869 * |{bartype},>{length of "{text}{text2}"}
2870 * |<{text1}
2871 * |<{text2},{value}
2872 * For a long line not using a string
2873 * |{bartype},{lots of values},>
2874 * |<{value},{value}
2875 */
2876 if (*p == '<')
2877 {
2878 /* Continuation line of an unrecognized item. */
2879 if (writing)
2880 ga_add_string(&virp->vir_barlines, virp->vir_line);
2881 }
2882 else
2883 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002884 ga_init2(&values, sizeof(bval_T), 20);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002885 bartype = getdigits(&p);
2886 switch (bartype)
2887 {
2888 case BARTYPE_VERSION:
2889 /* Only use the version when it comes before the encoding.
2890 * If it comes later it was copied by a Vim version that
2891 * doesn't understand the version. */
2892 if (!got_encoding)
2893 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002894 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002895 vp = (bval_T *)values.ga_data;
2896 if (values.ga_len > 0 && vp->bv_type == BVAL_NR)
2897 virp->vir_version = vp->bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002898 }
2899 break;
2900
2901 case BARTYPE_HISTORY:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002902 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002903 handle_viminfo_history(&values, writing);
2904 break;
2905
2906 case BARTYPE_REGISTER:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002907 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002908 handle_viminfo_register(&values, force);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002909 break;
2910
Bram Moolenaar2d358992016-06-12 21:20:54 +02002911 case BARTYPE_MARK:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002912 read_next = barline_parse(virp, p, &values);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002913 handle_viminfo_mark(&values, force);
2914 break;
2915
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002916 default:
2917 /* copy unrecognized line (for future use) */
2918 if (writing)
2919 ga_add_string(&virp->vir_barlines, virp->vir_line);
2920 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002921 for (i = 0; i < values.ga_len; ++i)
2922 {
2923 vp = (bval_T *)values.ga_data + i;
2924 if (vp->bv_type == BVAL_STRING && vp->bv_allocated)
2925 vim_free(vp->bv_string);
2926 }
2927 ga_clear(&values);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002928 }
2929
Bram Moolenaarecefe712016-06-20 12:50:17 +02002930 if (read_next)
2931 return viminfo_readline(virp);
2932 return FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002933}
2934
2935 static void
2936write_viminfo_version(FILE *fp_out)
2937{
2938 fprintf(fp_out, "# Viminfo version\n|%d,%d\n\n",
2939 BARTYPE_VERSION, VIMINFO_VERSION);
2940}
2941
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002942 static void
2943write_viminfo_barlines(vir_T *virp, FILE *fp_out)
2944{
2945 int i;
2946 garray_T *gap = &virp->vir_barlines;
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002947 int seen_useful = FALSE;
2948 char *line;
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002949
2950 if (gap->ga_len > 0)
2951 {
2952 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out);
2953
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002954 /* Skip over continuation lines until seeing a useful line. */
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002955 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002956 {
2957 line = ((char **)(gap->ga_data))[i];
2958 if (seen_useful || line[1] != '<')
2959 {
2960 fputs(line, fp_out);
2961 seen_useful = TRUE;
2962 }
2963 }
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002964 }
2965}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966#endif /* FEAT_VIMINFO */
2967
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002968/*
2969 * Return the current time in seconds. Calls time(), unless test_settime()
2970 * was used.
2971 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02002972 time_T
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002973vim_time(void)
2974{
2975# ifdef FEAT_EVAL
2976 return time_for_testing == 0 ? time(NULL) : time_for_testing;
2977# else
2978 return time(NULL);
2979# endif
2980}
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002981
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982/*
2983 * Implementation of ":fixdel", also used by get_stty().
2984 * <BS> resulting <Del>
2985 * ^? ^H
2986 * not ^? ^?
2987 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002989do_fixdel(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990{
2991 char_u *p;
2992
2993 p = find_termcode((char_u *)"kb");
2994 add_termcode((char_u *)"kD", p != NULL
2995 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2996}
2997
2998 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002999print_line_no_prefix(
3000 linenr_T lnum,
3001 int use_number,
3002 int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003{
Bram Moolenaar32526b32019-01-19 17:43:09 +01003004 char numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005
3006 if (curwin->w_p_nu || use_number)
3007 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003008 vim_snprintf(numbuf, sizeof(numbuf),
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003009 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar8820b482017-03-16 17:23:31 +01003010 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); /* Highlight line nrs */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003012 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013}
3014
3015/*
3016 * Print a text line. Also in silent mode ("ex -s").
3017 */
3018 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003019print_line(linenr_T lnum, int use_number, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020{
3021 int save_silent = silent_mode;
3022
Bram Moolenaard29459b2016-08-26 22:29:11 +02003023 /* apply :filter /pat/ */
3024 if (message_filtered(ml_get(lnum)))
3025 return;
3026
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003028 silent_mode = FALSE;
3029 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
3030 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 if (save_silent)
3032 {
3033 msg_putchar('\n');
3034 cursor_on(); /* msg_start() switches it off */
3035 out_flush();
3036 silent_mode = save_silent;
3037 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00003038 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039}
3040
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003041 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003042rename_buffer(char_u *new_fname)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003043{
3044 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02003045 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003046
Bram Moolenaar7e283842013-05-30 11:43:15 +02003047 buf = curbuf;
3048 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003049 /* buffer changed, don't change name now */
3050 if (buf != curbuf)
3051 return FAIL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003052#ifdef FEAT_EVAL
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003053 if (aborting()) /* autocmds may abort script processing */
3054 return FAIL;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003055#endif
3056 /*
3057 * The name of the current buffer will be changed.
3058 * A new (unlisted) buffer entry needs to be made to hold the old file
3059 * name, which will become the alternate file name.
3060 * But don't set the alternate file name if the buffer didn't have a
3061 * name.
3062 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02003063 fname = curbuf->b_ffname;
3064 sfname = curbuf->b_sfname;
3065 xfname = curbuf->b_fname;
3066 curbuf->b_ffname = NULL;
3067 curbuf->b_sfname = NULL;
3068 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003069 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02003070 curbuf->b_ffname = fname;
3071 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003072 return FAIL;
3073 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02003074 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003075 if (xfname != NULL && *xfname != NUL)
3076 {
3077 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
3078 if (buf != NULL && !cmdmod.keepalt)
3079 curwin->w_alt_fnum = buf->b_fnum;
3080 }
3081 vim_free(fname);
3082 vim_free(sfname);
Bram Moolenaar7e283842013-05-30 11:43:15 +02003083 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003084
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003085 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02003086 DO_AUTOCHDIR;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003087 return OK;
3088}
3089
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090/*
3091 * ":file[!] [fname]".
3092 */
3093 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003094ex_file(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003096 /* ":0file" removes the file name. Check for illegal uses ":3file",
3097 * "0file name", etc. */
3098 if (eap->addr_count > 0
3099 && (*eap->arg != NUL
3100 || eap->line2 > 0
3101 || eap->addr_count > 1))
3102 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003103 emsg(_(e_invarg));
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003104 return;
3105 }
3106
3107 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003109 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110 return;
Bram Moolenaarfc089602018-06-24 16:53:35 +02003111 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 }
Bram Moolenaarfc089602018-06-24 16:53:35 +02003113
3114 // print file name if no argument or 'F' is not in 'shortmess'
3115 if (*eap->arg == NUL || !shortmess(SHM_FILEINFO))
Bram Moolenaar426dd022016-03-15 15:09:29 +01003116 fileinfo(FALSE, FALSE, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117}
3118
3119/*
3120 * ":update".
3121 */
3122 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003123ex_update(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124{
3125 if (curbufIsChanged())
3126 (void)do_write(eap);
3127}
3128
3129/*
3130 * ":write" and ":saveas".
3131 */
3132 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003133ex_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134{
3135 if (eap->usefilter) /* input lines to shell command */
3136 do_bang(1, eap, FALSE, TRUE, FALSE);
3137 else
3138 (void)do_write(eap);
3139}
3140
3141/*
3142 * write current buffer to file 'eap->arg'
3143 * if 'eap->append' is TRUE, append to the file
3144 *
3145 * if *eap->arg == NUL write to current file
3146 *
3147 * return FAIL for failure, OK otherwise
3148 */
3149 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003150do_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151{
3152 int other;
3153 char_u *fname = NULL; /* init to shut up gcc */
3154 char_u *ffname;
3155 int retval = FAIL;
3156 char_u *free_fname = NULL;
3157#ifdef FEAT_BROWSE
3158 char_u *browse_file = NULL;
3159#endif
3160 buf_T *alt_buf = NULL;
Bram Moolenaar5c719942016-07-09 23:40:45 +02003161 int name_was_missing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162
3163 if (not_writing()) /* check 'write' option */
3164 return FAIL;
3165
3166 ffname = eap->arg;
3167#ifdef FEAT_BROWSE
3168 if (cmdmod.browse)
3169 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003170 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 NULL, NULL, NULL, curbuf);
3172 if (browse_file == NULL)
3173 goto theend;
3174 ffname = browse_file;
3175 }
3176#endif
3177 if (*ffname == NUL)
3178 {
3179 if (eap->cmdidx == CMD_saveas)
3180 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003181 emsg(_(e_argreq));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 goto theend;
3183 }
3184 other = FALSE;
3185 }
3186 else
3187 {
3188 fname = ffname;
3189 free_fname = fix_fname(ffname);
3190 /*
3191 * When out-of-memory, keep unexpanded file name, because we MUST be
3192 * able to write the file in this situation.
3193 */
3194 if (free_fname != NULL)
3195 ffname = free_fname;
3196 other = otherfile(ffname);
3197 }
3198
3199 /*
3200 * If we have a new file, put its name in the list of alternate file names.
3201 */
3202 if (other)
3203 {
3204 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
3205 || eap->cmdidx == CMD_saveas)
3206 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
3207 else
3208 alt_buf = buflist_findname(ffname);
3209 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
3210 {
3211 /* Overwriting a file that is loaded in another buffer is not a
3212 * good idea. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003213 emsg(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 goto theend;
3215 }
3216 }
3217
3218 /*
3219 * Writing to the current file is not allowed in readonly mode
3220 * and a file name is required.
3221 * "nofile" and "nowrite" buffers cannot be written implicitly either.
3222 */
3223 if (!other && (
3224#ifdef FEAT_QUICKFIX
3225 bt_dontwrite_msg(curbuf) ||
3226#endif
3227 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
3228 goto theend;
3229
3230 if (!other)
3231 {
3232 ffname = curbuf->b_ffname;
3233 fname = curbuf->b_fname;
3234 /*
3235 * Not writing the whole file is only allowed with '!'.
3236 */
3237 if ( (eap->line1 != 1
3238 || eap->line2 != curbuf->b_ml.ml_line_count)
3239 && !eap->forceit
3240 && !eap->append
3241 && !p_wa)
3242 {
3243#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3244 if (p_confirm || cmdmod.confirm)
3245 {
3246 if (vim_dialog_yesno(VIM_QUESTION, NULL,
3247 (char_u *)_("Write partial file?"), 2) != VIM_YES)
3248 goto theend;
3249 eap->forceit = TRUE;
3250 }
3251 else
3252#endif
3253 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003254 emsg(_("E140: Use ! to write partial buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 goto theend;
3256 }
3257 }
3258 }
3259
3260 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
3261 {
3262 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
3263 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 buf_T *was_curbuf = curbuf;
3265
3266 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003267 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003268#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 if (curbuf != was_curbuf || aborting())
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003270#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 if (curbuf != was_curbuf)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003272#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273 {
3274 /* buffer changed, don't change name now */
3275 retval = FAIL;
3276 goto theend;
3277 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 /* Exchange the file names for the current and the alternate
3279 * buffer. This makes it look like we are now editing the buffer
3280 * under the new name. Must be done before buf_write(), because
3281 * if there is no file name and 'cpo' contains 'F', it will set
3282 * the file name. */
3283 fname = alt_buf->b_fname;
3284 alt_buf->b_fname = curbuf->b_fname;
3285 curbuf->b_fname = fname;
3286 fname = alt_buf->b_ffname;
3287 alt_buf->b_ffname = curbuf->b_ffname;
3288 curbuf->b_ffname = fname;
3289 fname = alt_buf->b_sfname;
3290 alt_buf->b_sfname = curbuf->b_sfname;
3291 curbuf->b_sfname = fname;
3292 buf_name_changed(curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003293
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003295 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 if (!alt_buf->b_p_bl)
3297 {
3298 alt_buf->b_p_bl = TRUE;
3299 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
3300 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003301#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 if (curbuf != was_curbuf || aborting())
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003303#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 if (curbuf != was_curbuf)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003305#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 {
3307 /* buffer changed, don't write the file */
3308 retval = FAIL;
3309 goto theend;
3310 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003311
3312 /* If 'filetype' was empty try detecting it now. */
3313 if (*curbuf->b_p_ft == NUL)
3314 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003315 if (au_has_group((char_u *)"filetypedetect"))
3316 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
Bram Moolenaar1610d052016-06-09 22:53:01 +02003317 TRUE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00003318 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003319 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01003320
3321 /* Autocommands may have changed buffer names, esp. when
3322 * 'autochdir' is set. */
3323 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 }
3325
Bram Moolenaar5c719942016-07-09 23:40:45 +02003326 name_was_missing = curbuf->b_ffname == NULL;
3327
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
3329 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003330
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003331 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003332 if (eap->cmdidx == CMD_saveas)
3333 {
3334 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00003335 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003336 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003337 redraw_tabline = TRUE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003338 }
Bram Moolenaar5c719942016-07-09 23:40:45 +02003339 }
3340
3341 /* Change directories when the 'acd' option is set and the file name
3342 * got changed or set. */
3343 if (eap->cmdidx == CMD_saveas || name_was_missing)
3344 {
Bram Moolenaar6f470022018-04-10 18:47:20 +02003345 DO_AUTOCHDIR;
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003346 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 }
3348
3349theend:
3350#ifdef FEAT_BROWSE
3351 vim_free(browse_file);
3352#endif
3353 vim_free(free_fname);
3354 return retval;
3355}
3356
3357/*
3358 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
3359 * BF_NEW or BF_READERR, check for overwriting current file.
3360 * May set eap->forceit if a dialog says it's OK to overwrite.
3361 * Return OK if it's OK, FAIL if it is not.
3362 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02003363 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003364check_overwrite(
3365 exarg_T *eap,
3366 buf_T *buf,
3367 char_u *fname, /* file name to be used (can differ from
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 buf->ffname) */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003369 char_u *ffname, /* full path version of fname */
3370 int other) /* writing under other name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371{
3372 /*
3373 * write to other file or b_flags set or not writing the whole file:
3374 * overwriting only allowed with '!'
3375 */
3376 if ( (other
3377 || (buf->b_flags & BF_NOTEDITED)
3378 || ((buf->b_flags & BF_NEW)
3379 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
3380 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00003382#ifdef FEAT_QUICKFIX
3383 && !bt_nofile(buf)
3384#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 && vim_fexists(ffname))
3386 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003387 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003389#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00003390 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003391 if (mch_isdir(ffname))
3392 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003393 semsg(_(e_isadir2), ffname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003394 return FAIL;
3395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396#endif
3397#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003398 if (p_confirm || cmdmod.confirm)
3399 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003400 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003402 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
3403 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
3404 return FAIL;
3405 eap->forceit = TRUE;
3406 }
3407 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003409 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003410 emsg(_(e_exists));
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003411 return FAIL;
3412 }
3413 }
3414
3415 /* For ":w! filename" check that no swap file exists for "filename". */
3416 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003418 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003419 char_u *p;
3420 int r;
3421 char_u *swapname;
3422
3423 /* We only try the first entry in 'directory', without checking if
3424 * it's writable. If the "." directory is not writable the write
3425 * will probably fail anyway.
3426 * Use 'shortname' of the current buffer, since there is no buffer
3427 * for the written file. */
3428 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02003429 {
3430 dir = alloc(5);
3431 if (dir == NULL)
3432 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003433 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003434 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003435 else
3436 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003437 dir = alloc(MAXPATHL);
3438 if (dir == NULL)
3439 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003440 p = p_dir;
3441 copy_option_part(&p, dir, MAXPATHL, ",");
3442 }
3443 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003444 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003445 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003446 if (r)
3447 {
3448#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3449 if (p_confirm || cmdmod.confirm)
3450 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003451 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003452
3453 dialog_msg(buff,
3454 _("Swap file \"%s\" exists, overwrite anyway?"),
3455 swapname);
3456 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
3457 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003458 {
3459 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003460 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003461 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003462 eap->forceit = TRUE;
3463 }
3464 else
3465#endif
3466 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003467 semsg(_("E768: Swap file exists: %s (:silent! overrides)"),
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003468 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003469 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003470 return FAIL;
3471 }
3472 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003473 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 }
3475 }
3476 return OK;
3477}
3478
3479/*
3480 * Handle ":wnext", ":wNext" and ":wprevious" commands.
3481 */
3482 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003483ex_wnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484{
3485 int i;
3486
3487 if (eap->cmd[1] == 'n')
3488 i = curwin->w_arg_idx + (int)eap->line2;
3489 else
3490 i = curwin->w_arg_idx - (int)eap->line2;
3491 eap->line1 = 1;
3492 eap->line2 = curbuf->b_ml.ml_line_count;
3493 if (do_write(eap) != FAIL)
3494 do_argfile(eap, i);
3495}
3496
3497/*
3498 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
3499 */
3500 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003501do_wqall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502{
3503 buf_T *buf;
3504 int error = 0;
3505 int save_forceit = eap->forceit;
3506
3507 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
3508 exiting = TRUE;
3509
Bram Moolenaar29323592016-07-24 22:04:11 +02003510 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 {
Bram Moolenaar7a760922018-02-19 23:10:02 +01003512#ifdef FEAT_TERMINAL
3513 if (exiting && term_job_running(buf->b_term))
3514 {
3515 no_write_message_nobang(buf);
3516 ++error;
3517 }
3518 else
3519#endif
Bram Moolenaar059db5c2017-10-15 22:42:23 +02003520 if (bufIsChanged(buf) && !bt_dontwrite(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521 {
3522 /*
3523 * Check if there is a reason the buffer cannot be written:
3524 * 1. if the 'write' option is set
3525 * 2. if there is no file name (even after browsing)
3526 * 3. if the 'readonly' is set (even after a dialog)
3527 * 4. if overwriting is allowed (even after a dialog)
3528 */
3529 if (not_writing())
3530 {
3531 ++error;
3532 break;
3533 }
3534#ifdef FEAT_BROWSE
3535 /* ":browse wall": ask for file name if there isn't one */
3536 if (buf->b_ffname == NULL && cmdmod.browse)
3537 browse_save_fname(buf);
3538#endif
3539 if (buf->b_ffname == NULL)
3540 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003541 semsg(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 ++error;
3543 }
3544 else if (check_readonly(&eap->forceit, buf)
3545 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3546 FALSE) == FAIL)
3547 {
3548 ++error;
3549 }
3550 else
3551 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003552 bufref_T bufref;
3553
3554 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 if (buf_write_all(buf, eap->forceit) == FAIL)
3556 ++error;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 /* an autocommand may have deleted the buffer */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003558 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560 }
3561 eap->forceit = save_forceit; /* check_overwrite() may set it */
3562 }
3563 }
3564 if (exiting)
3565 {
3566 if (!error)
3567 getout(0); /* exit Vim */
3568 not_exiting();
3569 }
3570}
3571
3572/*
3573 * Check the 'write' option.
3574 * Return TRUE and give a message when it's not st.
3575 */
3576 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003577not_writing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578{
3579 if (p_write)
3580 return FALSE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003581 emsg(_("E142: File not written: Writing is disabled by 'write' option"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 return TRUE;
3583}
3584
3585/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003586 * Check if a buffer is read-only (either 'readonly' option is set or file is
3587 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3588 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 */
3590 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003591check_readonly(int *forceit, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003593 stat_T st;
Bram Moolenaar5386a122007-06-28 20:02:32 +00003594
3595 /* Handle a file being readonly when the 'readonly' option is set or when
3596 * the file exists and permissions are read-only.
3597 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3598 * important for device checks but not here. */
3599 if (!*forceit && (buf->b_p_ro
3600 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3601 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 {
3603#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3604 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3605 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003606 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607
Bram Moolenaar5386a122007-06-28 20:02:32 +00003608 if (buf->b_p_ro)
3609 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3610 buf->b_fname);
3611 else
3612 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 +00003613 buf->b_fname);
3614
3615 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3616 {
3617 /* Set forceit, to force the writing of a readonly file */
3618 *forceit = TRUE;
3619 return FALSE;
3620 }
3621 else
3622 return TRUE;
3623 }
3624 else
3625#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003626 if (buf->b_p_ro)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003627 emsg(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003628 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003629 semsg(_("E505: \"%s\" is read-only (add ! to override)"),
Bram Moolenaar5386a122007-06-28 20:02:32 +00003630 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 return TRUE;
3632 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003633
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 return FALSE;
3635}
3636
3637/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003638 * Try to abandon the current file and edit a new or existing file.
3639 * "fnum" is the number of the file, if zero use "ffname_arg"/"sfname_arg".
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003640 * "lnum" is the line number for the cursor in the new file (if non-zero).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 *
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003642 * Return:
3643 * GETFILE_ERROR for "normal" error,
3644 * GETFILE_NOT_WRITTEN for "not written" error,
3645 * GETFILE_SAME_FILE for success
3646 * GETFILE_OPEN_OTHER for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 */
3648 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003649getfile(
3650 int fnum,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003651 char_u *ffname_arg,
3652 char_u *sfname_arg,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003653 int setpm,
3654 linenr_T lnum,
3655 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003657 char_u *ffname = ffname_arg;
3658 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 int other;
3660 int retval;
3661 char_u *free_me = NULL;
3662
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003663 if (text_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003664 return GETFILE_ERROR;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003665 if (curbuf_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003666 return GETFILE_ERROR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667
3668 if (fnum == 0)
3669 {
3670 /* make ffname full path, set sfname */
3671 fname_expand(curbuf, &ffname, &sfname);
3672 other = otherfile(ffname);
3673 free_me = ffname; /* has been allocated, free() later */
3674 }
3675 else
3676 other = (fnum != curbuf->b_fnum);
3677
3678 if (other)
3679 ++no_wait_return; /* don't wait for autowrite message */
Bram Moolenaareb44a682017-08-03 22:44:55 +02003680 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3682 {
3683#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3684 if (p_confirm && p_write)
3685 dialog_changed(curbuf, FALSE);
3686 if (curbufIsChanged())
3687#endif
3688 {
3689 if (other)
3690 --no_wait_return;
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02003691 no_write_message();
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003692 retval = GETFILE_NOT_WRITTEN; /* file has been changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 goto theend;
3694 }
3695 }
3696 if (other)
3697 --no_wait_return;
3698 if (setpm)
3699 setpcmark();
3700 if (!other)
3701 {
3702 if (lnum != 0)
3703 curwin->w_cursor.lnum = lnum;
3704 check_cursor_lnum();
3705 beginline(BL_SOL | BL_FIX);
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003706 retval = GETFILE_SAME_FILE; /* it's in the same file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 }
3708 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaareb44a682017-08-03 22:44:55 +02003709 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003710 curwin) == OK)
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003711 retval = GETFILE_OPEN_OTHER; /* opened another file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 else
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003713 retval = GETFILE_ERROR; /* error encountered */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714
3715theend:
3716 vim_free(free_me);
3717 return retval;
3718}
3719
3720/*
3721 * start editing a new file
3722 *
3723 * fnum: file number; if zero use ffname/sfname
3724 * ffname: the file name
3725 * - full path if sfname used,
3726 * - any file name if sfname is NULL
3727 * - empty string to re-edit with the same file name (but may be
3728 * in a different directory)
3729 * - NULL to start an empty buffer
3730 * sfname: the short file name (or NULL)
3731 * eap: contains the command to be executed after loading the file and
3732 * forced 'ff' and 'fenc'
3733 * newlnum: if > 0: put cursor on this line number (if possible)
3734 * if ECMD_LASTL: use last position in loaded file
3735 * if ECMD_LAST: use last position in all files
3736 * if ECMD_ONE: use first line
3737 * flags:
3738 * ECMD_HIDE: if TRUE don't free the current buffer
3739 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3740 * ECMD_OLDBUF: use existing buffer if it exists
3741 * ECMD_FORCEIT: ! used for Ex command
3742 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003743 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003744 * window, NULL when splitting the window first. When not NULL info
3745 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 *
3747 * return FAIL for failure, OK otherwise
3748 */
3749 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003750do_ecmd(
3751 int fnum,
3752 char_u *ffname,
3753 char_u *sfname,
3754 exarg_T *eap, /* can be NULL! */
3755 linenr_T newlnum,
3756 int flags,
3757 win_T *oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758{
3759 int other_file; /* TRUE if editing another file */
3760 int oldbuf; /* TRUE if using existing buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 int auto_buf = FALSE; /* TRUE if autocommands brought us
3762 into the buffer unexpectedly */
3763 char_u *new_name = NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003764#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003765 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766#endif
3767 buf_T *buf;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003768 bufref_T bufref;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003769 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 char_u *free_fname = NULL;
3771#ifdef FEAT_BROWSE
3772 char_u *browse_file = NULL;
3773#endif
3774 int retval = FAIL;
3775 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003776 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 linenr_T topline = 0;
3778 int newcol = -1;
3779 int solcol = -1;
3780 pos_T *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003782#ifdef FEAT_SPELL
3783 int did_get_winopts = FALSE;
3784#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003785 int readfile_flags = 0;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003786 int did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787
3788 if (eap != NULL)
3789 command = eap->do_ecmd_cmd;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003790 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791
3792 if (fnum != 0)
3793 {
3794 if (fnum == curbuf->b_fnum) /* file is already being edited */
3795 return OK; /* nothing to do */
3796 other_file = TRUE;
3797 }
3798 else
3799 {
3800#ifdef FEAT_BROWSE
3801 if (cmdmod.browse)
3802 {
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003803 if (
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003804# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003805 !gui.in_use &&
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003806# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003807 au_has_group((char_u *)"FileExplorer"))
3808 {
3809 /* No browsing supported but we do have the file explorer:
3810 * Edit the directory. */
3811 if (ffname == NULL || !mch_isdir(ffname))
3812 ffname = (char_u *)".";
3813 }
3814 else
3815 {
3816 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003818 if (browse_file == NULL)
3819 goto theend;
3820 ffname = browse_file;
3821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 }
3823#endif
3824 /* if no short name given, use ffname for short name */
3825 if (sfname == NULL)
3826 sfname = ffname;
3827#ifdef USE_FNAME_CASE
3828# ifdef USE_LONG_FNAME
3829 if (USE_LONG_FNAME)
3830# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003831 if (sfname != NULL)
3832 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833#endif
3834
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3836 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837
3838 if (ffname == NULL)
3839 other_file = TRUE;
3840 /* there is no file name */
3841 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3842 other_file = FALSE;
3843 else
3844 {
3845 if (*ffname == NUL) /* re-edit with same file name */
3846 {
3847 ffname = curbuf->b_ffname;
3848 sfname = curbuf->b_fname;
3849 }
3850 free_fname = fix_fname(ffname); /* may expand to full path name */
3851 if (free_fname != NULL)
3852 ffname = free_fname;
3853 other_file = otherfile(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 }
3855 }
3856
3857 /*
3858 * if the file was changed we may not be allowed to abandon it
3859 * - if we are going to re-edit the same file
3860 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3861 */
3862 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3863 || (curbuf->b_nwindows == 1
3864 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003865 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3866 | (other_file ? 0 : CCGD_MULTWIN)
3867 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3868 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 {
3870 if (fnum == 0 && other_file && ffname != NULL)
3871 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3872 goto theend;
3873 }
3874
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 /*
3876 * End Visual mode before switching to another buffer, so the text can be
3877 * copied into the GUI selection buffer.
3878 */
3879 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003881#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003882 if ((command != NULL || newlnum > (linenr_T)0)
3883 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3884 {
3885 int len;
3886 char_u *p;
3887
3888 /* Set v:swapcommand for the SwapExists autocommands. */
3889 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003890 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003891 else
3892 len = 30;
3893 p = alloc((unsigned)len);
3894 if (p != NULL)
3895 {
3896 if (command != NULL)
3897 vim_snprintf((char *)p, len, ":%s\r", command);
3898 else
3899 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3900 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3901 did_set_swapcommand = TRUE;
3902 vim_free(p);
3903 }
3904 }
3905#endif
3906
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 /*
3908 * If we are starting to edit another file, open a (new) buffer.
3909 * Otherwise we re-use the current buffer.
3910 */
3911 if (other_file)
3912 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 if (!(flags & ECMD_ADDBUF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003915 if (!cmdmod.keepalt)
3916 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003917 if (oldwin != NULL)
3918 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 }
3920
3921 if (fnum)
3922 buf = buflist_findnr(fnum);
3923 else
3924 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 if (flags & ECMD_ADDBUF)
3926 {
3927 linenr_T tlnum = 1L;
3928
3929 if (command != NULL)
3930 {
3931 tlnum = atol((char *)command);
3932 if (tlnum <= 0)
3933 tlnum = 1L;
3934 }
3935 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3936 goto theend;
3937 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 buf = buflist_new(ffname, sfname, 0L,
3939 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003940
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003941 /* autocommands may change curwin and curbuf */
3942 if (oldwin != NULL)
3943 oldwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003944 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 }
3946 if (buf == NULL)
3947 goto theend;
3948 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3949 {
3950 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 }
3952 else /* existing memfile */
3953 {
3954 oldbuf = TRUE;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003955 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 (void)buf_check_timestamp(buf, FALSE);
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003957 /* Check if autocommands made the buffer invalid or changed the
3958 * current buffer. */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003959 if (!bufref_valid(&bufref) || curbuf != old_curbuf.br_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 goto theend;
3961#ifdef FEAT_EVAL
3962 if (aborting()) /* autocmds may abort script processing */
3963 goto theend;
3964#endif
3965 }
3966
3967 /* May jump to last used line number for a loaded buffer or when asked
3968 * for explicitly */
3969 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3970 {
3971 pos = buflist_findfpos(buf);
3972 newlnum = pos->lnum;
3973 solcol = pos->col;
3974 }
3975
3976 /*
3977 * Make the (new) buffer the one used by the current window.
3978 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3979 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003980 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 */
3982 if (buf != curbuf)
3983 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 /*
3985 * Be careful: The autocommands may delete any buffer and change
3986 * the current buffer.
3987 * - If the buffer we are going to edit is deleted, give up.
3988 * - If the current buffer is deleted, prefer to load the new
3989 * buffer when loading a buffer is required. This avoids
3990 * loading another buffer which then must be closed again.
3991 * - If we ended up in the new buffer already, need to skip a few
3992 * things, set auto_buf.
3993 */
3994 if (buf->b_fname != NULL)
3995 new_name = vim_strsave(buf->b_fname);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003996 set_bufref(&au_new_curbuf, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003998 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004000 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 delbuf_msg(new_name); /* frees new_name */
4002 goto theend;
4003 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004004#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 if (aborting()) /* autocmds may abort script processing */
4006 {
4007 vim_free(new_name);
4008 goto theend;
4009 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004010#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 if (buf == curbuf) /* already in new buffer */
4012 auto_buf = TRUE;
4013 else
4014 {
Bram Moolenaar5a497892016-09-03 16:29:04 +02004015 win_T *the_curwin = curwin;
4016
4017 /* Set the w_closing flag to avoid that autocommands close the
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004018 * window. And set b_locked for the same reason. */
Bram Moolenaar5a497892016-09-03 16:29:04 +02004019 the_curwin->w_closing = TRUE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004020 ++buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +02004021
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004022 if (curbuf == old_curbuf.br_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 buf_copy_options(buf, BCO_ENTER);
4024
Bram Moolenaar5a497892016-09-03 16:29:04 +02004025 /* Close the link to the current buffer. This will set
Bram Moolenaaraeac9002016-09-06 22:15:08 +02004026 * oldwin->w_buffer to NULL. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004027 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00004028 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01004029 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030
Bram Moolenaar5a497892016-09-03 16:29:04 +02004031 the_curwin->w_closing = FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004032 --buf->b_locked;
Bram Moolenaarfc573802011-12-30 15:01:59 +01004033
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004034#ifdef FEAT_EVAL
Bram Moolenaar5a497892016-09-03 16:29:04 +02004035 /* autocmds may abort script processing */
4036 if (aborting() && curwin->w_buffer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 {
4038 vim_free(new_name);
4039 goto theend;
4040 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004041#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 /* Be careful again, like above. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004043 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004045 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 delbuf_msg(new_name); /* frees new_name */
4047 goto theend;
4048 }
4049 if (buf == curbuf) /* already in new buffer */
4050 auto_buf = TRUE;
4051 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02004053#ifdef FEAT_SYN_HL
4054 /*
4055 * <VN> We could instead free the synblock
4056 * and re-attach to buffer, perhaps.
4057 */
Bram Moolenaarf1d13472017-07-11 18:28:46 +02004058 if (curwin->w_buffer == NULL
4059 || curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02004060 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004061#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 curwin->w_buffer = buf;
4063 curbuf = buf;
4064 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004065
4066 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
4067 if (!oldbuf && eap != NULL)
4068 {
4069 set_file_options(TRUE, eap);
4070 set_forced_fenc(eap);
4071 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 }
4073
4074 /* May get the window options from the last time this buffer
4075 * was in this window (or another window). If not used
4076 * before, reset the local window options to the global
4077 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00004078 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004079#ifdef FEAT_SPELL
4080 did_get_winopts = TRUE;
4081#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 }
4083 vim_free(new_name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004084 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004085 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087
4088 curwin->w_pcmark.lnum = 1;
4089 curwin->w_pcmark.col = 0;
4090 }
4091 else /* !other_file */
4092 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02004093 if ((flags & ECMD_ADDBUF) || check_fname() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01004095
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096 oldbuf = (flags & ECMD_OLDBUF);
4097 }
4098
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004099 /* Don't redraw until the cursor is in the right line, otherwise
4100 * autocommands may cause ml_get errors. */
4101 ++RedrawingDisabled;
4102 did_inc_redrawing_disabled = TRUE;
4103
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004104 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 if ((flags & ECMD_SET_HELP) || keep_help_flag)
4106 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004107 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 }
4109 else
4110 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 /* Don't make a buffer listed if it's a help buffer. Useful when
4112 * using CTRL-O to go back to a help file. */
4113 if (!curbuf->b_help)
4114 set_buflisted(TRUE);
4115 }
4116
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 /* If autocommands change buffers under our fingers, forget about
4118 * editing the file. */
4119 if (buf != curbuf)
4120 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004121#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 if (aborting()) /* autocmds may abort script processing */
4123 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004124#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125
4126 /* Since we are starting to edit a file, consider the filetype to be
4127 * unset. Helps for when an autocommand changes files and expects syntax
4128 * highlighting to work in the other file. */
4129 did_filetype = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130
4131/*
4132 * other_file oldbuf
4133 * FALSE FALSE re-edit same file, buffer is re-used
4134 * FALSE TRUE re-edit same file, nothing changes
4135 * TRUE FALSE start editing new file, new buffer
4136 * TRUE TRUE start editing in existing buffer (nothing to do)
4137 */
4138 if (!other_file && !oldbuf) /* re-use the buffer */
4139 {
4140 set_last_cursor(curwin); /* may set b_last_cursor */
4141 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
4142 {
4143 newlnum = curwin->w_cursor.lnum;
4144 solcol = curwin->w_cursor.col;
4145 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 buf = curbuf;
4147 if (buf->b_fname != NULL)
4148 new_name = vim_strsave(buf->b_fname);
4149 else
4150 new_name = NULL;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004151 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004152
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004153 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
4154 {
4155 /* Save all the text, so that the reload can be undone.
4156 * Sync first so that this is a separate undo-able action. */
4157 u_sync(FALSE);
4158 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
4159 == FAIL)
Bram Moolenaar1e225822016-07-30 21:48:59 +02004160 {
4161 vim_free(new_name);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004162 goto theend;
Bram Moolenaar1e225822016-07-30 21:48:59 +02004163 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004164 u_unchanged(curbuf);
4165 buf_freeall(curbuf, BFA_KEEP_UNDO);
4166
4167 /* tell readfile() not to clear or reload undo info */
4168 readfile_flags = READ_KEEP_UNDO;
4169 }
4170 else
4171 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004172
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 /* If autocommands deleted the buffer we were going to re-edit, give
4174 * up and jump to the end. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004175 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 {
4177 delbuf_msg(new_name); /* frees new_name */
4178 goto theend;
4179 }
4180 vim_free(new_name);
4181
4182 /* If autocommands change buffers under our fingers, forget about
4183 * re-editing the file. Should do the buf_clear_file(), but perhaps
4184 * the autocommands changed the buffer... */
4185 if (buf != curbuf)
4186 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004187#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 if (aborting()) /* autocmds may abort script processing */
4189 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190#endif
4191 buf_clear_file(curbuf);
4192 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
4193 curbuf->b_op_end.lnum = 0;
4194 }
4195
4196/*
4197 * If we get here we are sure to start editing
4198 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 /* Assume success now */
4200 retval = OK;
4201
4202 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 * Check if we are editing the w_arg_idx file in the argument list.
4204 */
4205 check_arg_idx(curwin);
4206
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 if (!auto_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 {
4209 /*
4210 * Set cursor and init window before reading the file and executing
4211 * autocommands. This allows for the autocommands to position the
4212 * cursor.
4213 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004214 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215
4216#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004217 /* It's possible that all lines in the buffer changed. Need to update
4218 * automatic folding for all windows where it's used. */
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004219 {
4220 win_T *win;
4221 tabpage_T *tp;
4222
4223 FOR_ALL_TAB_WINDOWS(tp, win)
4224 if (win->w_buffer == curbuf)
4225 foldUpdateAll(win);
4226 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227#endif
4228
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004229 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02004230 DO_AUTOCHDIR;
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004231
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232 /*
4233 * Careful: open_buffer() and apply_autocmds() may change the current
4234 * buffer and window.
4235 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01004236 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 topline = curwin->w_topline;
4238 if (!oldbuf) /* need to read the file */
4239 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004240#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 swap_exists_action = SEA_DIALOG;
4242#endif
4243 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
4244
4245 /*
4246 * Open the buffer and read the file.
4247 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004248#if defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004249 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 retval = FAIL;
4251#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004252 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253#endif
4254
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004255#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 if (swap_exists_action == SEA_QUIT)
4257 retval = FAIL;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004258 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259#endif
4260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 else
4262 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004263 /* Read the modelines, but only to set window-local options. Any
4264 * buffer-local options have already been set and may have been
4265 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00004266 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004267
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
4269 &retval);
4270 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
4271 &retval);
4272 }
4273 check_arg_idx(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274
Bram Moolenaareab316b2015-03-24 11:46:30 +01004275 /* If autocommands change the cursor position or topline, we should
Bram Moolenaaradb8fbe2018-06-04 20:34:23 +02004276 * keep it. Also when it moves within a line. But not when it moves
4277 * to the first non-blank. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004278 if (!EQUAL_POS(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 {
Bram Moolenaaradb8fbe2018-06-04 20:34:23 +02004280 char_u *text = ml_get_curline();
4281
4282 if (curwin->w_cursor.lnum != orig_pos.lnum
4283 || curwin->w_cursor.col != (int)(skipwhite(text) - text))
4284 {
4285 newlnum = curwin->w_cursor.lnum;
4286 newcol = curwin->w_cursor.col;
4287 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 }
4289 if (curwin->w_topline == topline)
4290 topline = 0;
4291
4292 /* Even when cursor didn't move we need to recompute topline. */
4293 changed_line_abv_curs();
4294
4295#ifdef FEAT_TITLE
4296 maketitle();
4297#endif
4298 }
4299
4300#ifdef FEAT_DIFF
4301 /* Tell the diff stuff that this buffer is new and/or needs updating.
4302 * Also needed when re-editing the same buffer, because unloading will
4303 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004304 if (curwin->w_p_diff)
4305 {
4306 diff_buf_add(curbuf);
4307 diff_invalidate(curbuf);
4308 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309#endif
4310
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004311#ifdef FEAT_SPELL
4312 /* If the window options were changed may need to set the spell language.
4313 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02004314 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
4315 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004316#endif
4317
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 if (command == NULL)
4319 {
4320 if (newcol >= 0) /* position set by autocommands */
4321 {
4322 curwin->w_cursor.lnum = newlnum;
4323 curwin->w_cursor.col = newcol;
4324 check_cursor();
4325 }
4326 else if (newlnum > 0) /* line number from caller or old position */
4327 {
4328 curwin->w_cursor.lnum = newlnum;
4329 check_cursor_lnum();
4330 if (solcol >= 0 && !p_sol)
4331 {
4332 /* 'sol' is off: Use last known column. */
4333 curwin->w_cursor.col = solcol;
4334 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 curwin->w_set_curswant = TRUE;
4337 }
4338 else
4339 beginline(BL_SOL | BL_FIX);
4340 }
4341 else /* no line number, go to last line in Ex mode */
4342 {
4343 if (exmode_active)
4344 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4345 beginline(BL_WHITE | BL_FIX);
4346 }
4347 }
4348
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 /* Check if cursors in other windows on the same buffer are still valid */
4350 check_lnums(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351
4352 /*
4353 * Did not read the file, need to show some info about the file.
4354 * Do this after setting the cursor.
4355 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004356 if (oldbuf && !auto_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357 {
4358 int msg_scroll_save = msg_scroll;
4359
4360 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
4361 * message. */
4362 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
4363 msg_scroll = FALSE;
4364 if (!msg_scroll) /* wait a bit when overwriting an error msg */
4365 check_for_delay(FALSE);
4366 msg_start();
4367 msg_scroll = msg_scroll_save;
4368 msg_scrolled_ign = TRUE;
4369
Bram Moolenaar426dd022016-03-15 15:09:29 +01004370 if (!shortmess(SHM_FILEINFO))
4371 fileinfo(FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372
4373 msg_scrolled_ign = FALSE;
4374 }
4375
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02004376#ifdef FEAT_VIMINFO
4377 curbuf->b_last_used = vim_time();
4378#endif
4379
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 if (command != NULL)
4381 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
4382
4383#ifdef FEAT_KEYMAP
4384 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004385 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386#endif
4387
4388 --RedrawingDisabled;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004389 did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 if (!skip_redraw)
4391 {
4392 n = p_so;
4393 if (topline == 0 && command == NULL)
4394 p_so = 999; /* force cursor halfway the window */
4395 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 curwin->w_scbind_pos = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 p_so = n;
4398 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
4399 }
4400
4401 if (p_im)
4402 need_start_insertmode = TRUE;
4403
Bram Moolenaar15833232018-02-03 18:33:17 +01004404#ifdef FEAT_AUTOCHDIR
4405 /* Change directories when the 'acd' option is set and we aren't already in
4406 * that directory (should already be done above). Expect getcwd() to be
4407 * faster than calling shorten_fnames() unnecessarily. */
4408 if (p_acd && curbuf->b_ffname != NULL)
4409 {
4410 char_u curdir[MAXPATHL];
4411 char_u filedir[MAXPATHL];
4412
4413 vim_strncpy(filedir, curbuf->b_ffname, MAXPATHL - 1);
4414 *gettail_sep(filedir) = NUL;
4415 if (mch_dirname(curdir, MAXPATHL) != FAIL
4416 && vim_fnamecmp(curdir, filedir) != 0)
4417 do_autochdir();
4418 }
4419#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01004421#if defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02004422 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004425 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00004426 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427# endif
4428 }
4429#endif
4430
4431theend:
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004432 if (did_inc_redrawing_disabled)
4433 --RedrawingDisabled;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004434#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004435 if (did_set_swapcommand)
4436 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
4437#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438#ifdef FEAT_BROWSE
4439 vim_free(browse_file);
4440#endif
4441 vim_free(free_fname);
4442 return retval;
4443}
4444
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004446delbuf_msg(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004448 semsg(_("E143: Autocommands unexpectedly deleted new buffer %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 name == NULL ? (char_u *)"" : name);
4450 vim_free(name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004451 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004452 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004455static int append_indent = 0; /* autoindent for first line */
4456
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457/*
4458 * ":insert" and ":append", also used by ":change"
4459 */
4460 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004461ex_append(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462{
4463 char_u *theline;
4464 int did_undo = FALSE;
4465 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004466 int indent = 0;
4467 char_u *p;
4468 int vcol;
4469 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004471 /* the ! flag toggles autoindent */
4472 if (eap->forceit)
4473 curbuf->b_p_ai = !curbuf->b_p_ai;
4474
4475 /* First autoindent comes from the line we start on */
4476 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
4477 append_indent = get_indent_lnum(lnum);
4478
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 if (eap->cmdidx != CMD_append)
4480 --lnum;
4481
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004482 /* when the buffer is empty need to delete the dummy line */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004483 if (empty && lnum == 1)
4484 lnum = 0;
4485
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 State = INSERT; /* behave like in Insert mode */
4487 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
4488 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004489
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004490 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 {
4492 msg_scroll = TRUE;
4493 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004494 if (curbuf->b_p_ai)
4495 {
4496 if (append_indent >= 0)
4497 {
4498 indent = append_indent;
4499 append_indent = -1;
4500 }
4501 else if (lnum > 0)
4502 indent = get_indent_lnum(lnum);
4503 }
4504 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004506 {
4507 /* No getline() function, use the lines that follow. This ends
4508 * when there is no more. */
4509 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
4510 break;
4511 p = vim_strchr(eap->nextcmd, NL);
4512 if (p == NULL)
4513 p = eap->nextcmd + STRLEN(eap->nextcmd);
4514 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4515 if (*p != NUL)
4516 ++p;
4517 eap->nextcmd = p;
4518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004520 {
4521 int save_State = State;
4522
4523 /* Set State to avoid the cursor shape to be set to INSERT mode
4524 * when getline() returns. */
4525 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 theline = eap->getline(
4527#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004528 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004530 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004531 State = save_State;
4532 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004534 if (theline == NULL)
4535 break;
4536
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004537 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4538 if (ex_keep_indent)
4539 append_indent = indent;
4540
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004541 /* Look for the "." after automatic indent. */
4542 vcol = 0;
4543 for (p = theline; indent > vcol; ++p)
4544 {
4545 if (*p == ' ')
4546 ++vcol;
4547 else if (*p == TAB)
4548 vcol += 8 - vcol % 8;
4549 else
4550 break;
4551 }
4552 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004553 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4554 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 {
4556 vim_free(theline);
4557 break;
4558 }
4559
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004560 /* don't use autoindent if nothing was typed. */
4561 if (p[0] == NUL)
4562 theline[0] = NUL;
4563
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 did_undo = TRUE;
4565 ml_append(lnum, theline, (colnr_T)0, FALSE);
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004566 appended_lines_mark(lnum + (empty ? 1 : 0), 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567
4568 vim_free(theline);
4569 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004570
4571 if (empty)
4572 {
4573 ml_delete(2L, FALSE);
4574 empty = FALSE;
4575 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 }
4577 State = NORMAL;
4578
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004579 if (eap->forceit)
4580 curbuf->b_p_ai = !curbuf->b_p_ai;
4581
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004583 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 * "end" is set to lnum when something has been appended, otherwise
4585 * it is the same than "start" -- Acevedo */
4586 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4587 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4588 if (eap->cmdidx != CMD_append)
4589 --curbuf->b_op_start.lnum;
4590 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4591 ? lnum : curbuf->b_op_start.lnum;
4592 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4593 curwin->w_cursor.lnum = lnum;
4594 check_cursor_lnum();
4595 beginline(BL_SOL | BL_FIX);
4596
4597 need_wait_return = FALSE; /* don't use wait_return() now */
4598 ex_no_reprint = TRUE;
4599}
4600
4601/*
4602 * ":change"
4603 */
4604 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004605ex_change(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606{
4607 linenr_T lnum;
4608
4609 if (eap->line2 >= eap->line1
4610 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4611 return;
4612
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004613 /* the ! flag toggles autoindent */
4614 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4615 append_indent = get_indent_lnum(eap->line1);
4616
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4618 {
4619 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4620 break;
4621 ml_delete(eap->line1, FALSE);
4622 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004623
4624 /* make sure the cursor is not beyond the end of the file now */
4625 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4627
4628 /* ":append" on the line above the deleted lines. */
4629 eap->line2 = eap->line1;
4630 ex_append(eap);
4631}
4632
4633 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004634ex_z(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635{
4636 char_u *x;
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004637 long bigness;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004638 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639 int minus = 0;
4640 linenr_T start, end, curs, i;
4641 int j;
4642 linenr_T lnum = eap->line2;
4643
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004644 /* Vi compatible: ":z!" uses display height, without a count uses
4645 * 'scroll' */
4646 if (eap->forceit)
4647 bigness = curwin->w_height;
Bram Moolenaar459ca562016-11-10 18:16:33 +01004648 else if (!ONE_WINDOW)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004649 bigness = curwin->w_height - 3;
Bram Moolenaar631abc32014-02-22 22:27:47 +01004650 else
4651 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 if (bigness < 1)
4653 bigness = 1;
4654
4655 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004656 kind = x;
4657 if (*kind == '-' || *kind == '+' || *kind == '='
4658 || *kind == '^' || *kind == '.')
4659 ++x;
4660 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 ++x;
4662
4663 if (*x != 0)
4664 {
4665 if (!VIM_ISDIGIT(*x))
4666 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004667 emsg(_("E144: non-numeric argument to :z"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 return;
4669 }
4670 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004671 {
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004672 bigness = atol((char *)x);
4673
4674 /* bigness could be < 0 if atol(x) overflows. */
4675 if (bigness > 2 * curbuf->b_ml.ml_line_count || bigness < 0)
4676 bigness = 2 * curbuf->b_ml.ml_line_count;
4677
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004678 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004679 if (*kind == '=')
4680 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004681 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 }
4683
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004684 /* the number of '-' and '+' multiplies the distance */
4685 if (*kind == '-' || *kind == '+')
4686 for (x = kind + 1; *x == *kind; ++x)
4687 ;
4688
4689 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 {
4691 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004692 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4693 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004694 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 break;
4696
4697 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004698 start = lnum - (bigness + 1) / 2 + 1;
4699 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700 curs = lnum;
4701 minus = 1;
4702 break;
4703
4704 case '^':
4705 start = lnum - bigness * 2;
4706 end = lnum - bigness;
4707 curs = lnum - bigness;
4708 break;
4709
4710 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004711 start = lnum - (bigness + 1) / 2 + 1;
4712 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 curs = end;
4714 break;
4715
4716 default: /* '+' */
4717 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004718 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004719 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004720 else if (eap->addr_count == 0)
4721 ++start;
4722 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 curs = end;
4724 break;
4725 }
4726
4727 if (start < 1)
4728 start = 1;
4729
4730 if (end > curbuf->b_ml.ml_line_count)
4731 end = curbuf->b_ml.ml_line_count;
4732
4733 if (curs > curbuf->b_ml.ml_line_count)
4734 curs = curbuf->b_ml.ml_line_count;
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004735 else if (curs < 1)
4736 curs = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737
4738 for (i = start; i <= end; i++)
4739 {
4740 if (minus && i == lnum)
4741 {
4742 msg_putchar('\n');
4743
4744 for (j = 1; j < Columns; j++)
4745 msg_putchar('-');
4746 }
4747
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004748 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749
4750 if (minus && i == lnum)
4751 {
4752 msg_putchar('\n');
4753
4754 for (j = 1; j < Columns; j++)
4755 msg_putchar('-');
4756 }
4757 }
4758
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004759 if (curwin->w_cursor.lnum != curs)
4760 {
4761 curwin->w_cursor.lnum = curs;
4762 curwin->w_cursor.col = 0;
4763 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 ex_no_reprint = TRUE;
4765}
4766
4767/*
4768 * Check if the restricted flag is set.
4769 * If so, give an error message and return TRUE.
4770 * Otherwise, return FALSE.
4771 */
4772 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004773check_restricted(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774{
4775 if (restricted)
4776 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004777 emsg(_("E145: Shell commands not allowed in rvim"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778 return TRUE;
4779 }
4780 return FALSE;
4781}
4782
4783/*
4784 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4785 * If so, give an error message and return TRUE.
4786 * Otherwise, return FALSE.
4787 */
4788 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004789check_secure(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790{
4791 if (secure)
4792 {
4793 secure = 2;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004794 emsg(_(e_curdir));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 return TRUE;
4796 }
4797#ifdef HAVE_SANDBOX
4798 /*
4799 * In the sandbox more things are not allowed, including the things
4800 * disallowed in secure mode.
4801 */
4802 if (sandbox != 0)
4803 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004804 emsg(_(e_sandbox));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 return TRUE;
4806 }
4807#endif
4808 return FALSE;
4809}
4810
4811static char_u *old_sub = NULL; /* previous substitute pattern */
4812static int global_need_beginline; /* call beginline() after ":g" */
4813
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004814/*
4815 * Flags that are kept between calls to :substitute.
4816 */
4817typedef struct {
4818 int do_all; /* do multiple substitutions per line */
4819 int do_ask; /* ask for confirmation */
4820 int do_count; /* count only */
4821 int do_error; /* if false, ignore errors */
4822 int do_print; /* print last line with subs. */
4823 int do_list; /* list last line with subs. */
4824 int do_number; /* list last line with line nr*/
4825 int do_ic; /* ignore case flag */
4826} subflags_T;
4827
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828/* do_sub()
4829 *
4830 * Perform a substitution from line eap->line1 to line eap->line2 using the
4831 * command pointed to by eap->arg which should be of the form:
4832 *
4833 * /pattern/substitution/{flags}
4834 *
4835 * The usual escapes are supported as described in the regexp docs.
4836 */
4837 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004838do_sub(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839{
4840 linenr_T lnum;
4841 long i = 0;
4842 regmmatch_T regmatch;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004843 static subflags_T subflags = {FALSE, FALSE, FALSE, TRUE, FALSE,
4844 FALSE, FALSE, 0};
4845#ifdef FEAT_EVAL
4846 subflags_T subflags_save;
4847#endif
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004848 int save_do_all; /* remember user specified 'g' flag */
4849 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4851 int delimiter;
4852 int sublen;
4853 int got_quit = FALSE;
4854 int got_match = FALSE;
4855 int temp;
4856 int which_pat;
4857 char_u *cmd;
4858 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004859 linenr_T first_line = 0; /* first changed line */
4860 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 * change */
4862 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4863 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004864 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004865 char_u *sub_firstline; /* allocated copy of first sub line */
4866 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004867 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004868 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004869#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004870 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872
4873 cmd = eap->arg;
4874 if (!global_busy)
4875 {
4876 sub_nsubs = 0;
4877 sub_nlines = 0;
4878 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004879 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 if (eap->cmdidx == CMD_tilde)
4882 which_pat = RE_LAST; /* use last used regexp */
4883 else
4884 which_pat = RE_SUBST; /* use last substitute regexp */
4885
4886 /* new pattern and substitution */
Bram Moolenaar1c465442017-03-12 20:10:05 +01004887 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4889 {
4890 /* don't accept alphanumeric for separator */
4891 if (isalpha(*cmd))
4892 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004893 emsg(_("E146: Regular expressions can't be delimited by letters"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 return;
4895 }
4896 /*
4897 * undocumented vi feature:
4898 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4899 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4900 */
4901 if (*cmd == '\\')
4902 {
4903 ++cmd;
4904 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4905 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004906 emsg(_(e_backslash));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 return;
4908 }
4909 if (*cmd != '&')
4910 which_pat = RE_SEARCH; /* use last '/' pattern */
4911 pat = (char_u *)""; /* empty search pattern */
4912 delimiter = *cmd++; /* remember delimiter character */
4913 }
4914 else /* find the end of the regexp */
4915 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004916#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4917 if (p_altkeymap && curwin->w_p_rl)
4918 lrF_sub(cmd);
4919#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 which_pat = RE_LAST; /* use last used regexp */
4921 delimiter = *cmd++; /* remember delimiter character */
4922 pat = cmd; /* remember start of search pat */
4923 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4924 if (cmd[0] == delimiter) /* end delimiter found */
4925 *cmd++ = NUL; /* replace it with a NUL */
4926 }
4927
4928 /*
4929 * Small incompatibility: vi sees '\n' as end of the command, but in
4930 * Vim we want to use '\n' to find/substitute a NUL.
4931 */
4932 sub = cmd; /* remember the start of the substitution */
4933
4934 while (cmd[0])
4935 {
4936 if (cmd[0] == delimiter) /* end delimiter found */
4937 {
4938 *cmd++ = NUL; /* replace it with a NUL */
4939 break;
4940 }
4941 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4942 ++cmd;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004943 MB_PTR_ADV(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 }
4945
4946 if (!eap->skip)
4947 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004948 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4949 if (STRCMP(sub, "%") == 0
4950 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4951 {
4952 if (old_sub == NULL) /* there is no previous command */
4953 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004954 emsg(_(e_nopresub));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004955 return;
4956 }
4957 sub = old_sub;
4958 }
4959 else
4960 {
4961 vim_free(old_sub);
4962 old_sub = vim_strsave(sub);
4963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 }
4965 }
4966 else if (!eap->skip) /* use previous pattern and substitution */
4967 {
4968 if (old_sub == NULL) /* there is no previous command */
4969 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004970 emsg(_(e_nopresub));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 return;
4972 }
4973 pat = NULL; /* search_regcomp() will use previous pattern */
4974 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004975
4976 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4977 * last column after using "$". */
4978 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 }
4980
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004981 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4982 * more efficient.
4983 * TODO: find a generic solution to make line-joining operations more
4984 * efficient, avoid allocating a string that grows in size.
4985 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004986 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004987 && *sub == NUL
4988 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4989 || *cmd == 'p' || *cmd == '#'))))
4990 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004991 linenr_T joined_lines_count;
4992
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004993 curwin->w_cursor.lnum = eap->line1;
4994 if (*cmd == 'l')
4995 eap->flags = EXFLAG_LIST;
4996 else if (*cmd == '#')
4997 eap->flags = EXFLAG_NR;
4998 else if (*cmd == 'p')
4999 eap->flags = EXFLAG_PRINT;
5000
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01005001 /* The number of lines joined is the number of lines in the range plus
5002 * one. One less when the last line is included. */
5003 joined_lines_count = eap->line2 - eap->line1 + 1;
5004 if (eap->line2 < curbuf->b_ml.ml_line_count)
5005 ++joined_lines_count;
5006 if (joined_lines_count > 1)
5007 {
5008 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
5009 sub_nsubs = joined_lines_count - 1;
5010 sub_nlines = 1;
5011 (void)do_sub_msg(FALSE);
5012 ex_may_print(eap);
5013 }
5014
5015 if (!cmdmod.keeppatterns)
5016 save_re_pat(RE_SUBST, pat, p_magic);
5017#ifdef FEAT_CMDHIST
5018 /* put pattern in history */
5019 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
5020#endif
5021
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02005022 return;
5023 }
5024
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 /*
5026 * Find trailing options. When '&' is used, keep old options.
5027 */
5028 if (*cmd == '&')
5029 ++cmd;
5030 else
5031 {
5032 if (!p_ed)
5033 {
5034 if (p_gd) /* default is global on */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005035 subflags.do_all = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005037 subflags.do_all = FALSE;
5038 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005040 subflags.do_error = TRUE;
5041 subflags.do_print = FALSE;
5042 subflags.do_count = FALSE;
5043 subflags.do_number = FALSE;
5044 subflags.do_ic = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 }
5046 while (*cmd)
5047 {
5048 /*
5049 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
5050 * 'r' is never inverted.
5051 */
5052 if (*cmd == 'g')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005053 subflags.do_all = !subflags.do_all;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 else if (*cmd == 'c')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005055 subflags.do_ask = !subflags.do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005056 else if (*cmd == 'n')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005057 subflags.do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 else if (*cmd == 'e')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005059 subflags.do_error = !subflags.do_error;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 else if (*cmd == 'r') /* use last used regexp */
5061 which_pat = RE_LAST;
5062 else if (*cmd == 'p')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005063 subflags.do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005064 else if (*cmd == '#')
5065 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005066 subflags.do_print = TRUE;
5067 subflags.do_number = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005068 }
5069 else if (*cmd == 'l')
5070 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005071 subflags.do_print = TRUE;
5072 subflags.do_list = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 else if (*cmd == 'i') /* ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005075 subflags.do_ic = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 else if (*cmd == 'I') /* don't ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005077 subflags.do_ic = 'I';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 else
5079 break;
5080 ++cmd;
5081 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005082 if (subflags.do_count)
5083 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005085 save_do_all = subflags.do_all;
5086 save_do_ask = subflags.do_ask;
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005087
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 /*
5089 * check for a trailing count
5090 */
5091 cmd = skipwhite(cmd);
5092 if (VIM_ISDIGIT(*cmd))
5093 {
5094 i = getdigits(&cmd);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005095 if (i <= 0 && !eap->skip && subflags.do_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005097 emsg(_(e_zerocount));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 return;
5099 }
5100 eap->line1 = eap->line2;
5101 eap->line2 += i - 1;
5102 if (eap->line2 > curbuf->b_ml.ml_line_count)
5103 eap->line2 = curbuf->b_ml.ml_line_count;
5104 }
5105
5106 /*
5107 * check for trailing command or garbage
5108 */
5109 cmd = skipwhite(cmd);
5110 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
5111 {
5112 eap->nextcmd = check_nextcmd(cmd);
5113 if (eap->nextcmd == NULL)
5114 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005115 emsg(_(e_trailing));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 return;
5117 }
5118 }
5119
5120 if (eap->skip) /* not executing commands, only parsing */
5121 return;
5122
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005123 if (!subflags.do_count && !curbuf->b_p_ma)
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005124 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005125 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005126 emsg(_(e_modifiable));
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005127 return;
5128 }
5129
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5131 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005132 if (subflags.do_error)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005133 emsg(_(e_invcmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 return;
5135 }
5136
5137 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005138 if (subflags.do_ic == 'i')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 regmatch.rmm_ic = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005140 else if (subflags.do_ic == 'I')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 regmatch.rmm_ic = FALSE;
5142
5143 sub_firstline = NULL;
5144
5145 /*
5146 * ~ in the substitute pattern is replaced with the old pattern.
5147 * We do it here once to avoid it to be replaced over and over again.
5148 * But don't do it when it starts with "\=", then it's an expression.
5149 */
5150 if (!(sub[0] == '\\' && sub[1] == '='))
5151 sub = regtilde(sub, p_magic);
5152
5153 /*
5154 * Check for a match on each line.
5155 */
5156 line2 = eap->line2;
5157 for (lnum = eap->line1; lnum <= line2 && !(got_quit
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005158#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 || aborting()
5160#endif
5161 ); ++lnum)
5162 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005163 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005164 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 if (nmatch)
5166 {
5167 colnr_T copycol;
5168 colnr_T matchcol;
5169 colnr_T prev_matchcol = MAXCOL;
5170 char_u *new_end, *new_start = NULL;
5171 unsigned new_start_len = 0;
5172 char_u *p1;
5173 int did_sub = FALSE;
5174 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005175 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 long nmatch_tl = 0; /* nr of lines matched below lnum */
5177 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005178 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005179 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180
5181 /*
5182 * The new text is build up step by step, to avoid too much
5183 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00005184 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 * copycol Column in the old text where we started
5186 * looking for a match; from here old text still
5187 * needs to be copied to the new text.
5188 * matchcol Column number of the old text where to look
5189 * for the next match. It's just after the
5190 * previous match or one further.
5191 * prev_matchcol Column just after the previous match (if any).
5192 * Mostly equal to matchcol, except for the first
5193 * match and after skipping an empty match.
5194 * regmatch.*pos Where the pattern matched in the old text.
5195 * new_start The new text, all that has been produced so
5196 * far.
5197 * new_end The new text, where to append new text.
5198 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005199 * lnum The line number where we found the start of
5200 * the match. Can be below the line we searched
5201 * when there is a \n before a \zs in the
5202 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 * sub_firstlnum The line number in the buffer where to look
5204 * for a match. Can be different from "lnum"
5205 * when the pattern or substitute string contains
5206 * line breaks.
5207 *
5208 * Special situations:
5209 * - When the substitute string contains a line break, the part up
5210 * to the line break is inserted in the text, but the copy of
5211 * the original line is kept. "sub_firstlnum" is adjusted for
5212 * the inserted lines.
5213 * - When the matched pattern contains a line break, the old line
5214 * is taken from the line at the end of the pattern. The lines
5215 * in the match are deleted later, "sub_firstlnum" is adjusted
5216 * accordingly.
5217 *
5218 * The new text is built up in new_start[]. It has some extra
5219 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005220 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 *
5222 * Make a copy of the old line, so it won't be taken away when
5223 * updating the screen or handling a multi-line match. The "old_"
5224 * pointers point into this copy.
5225 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005226 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 copycol = 0;
5228 matchcol = 0;
5229
5230 /* At first match, remember current cursor position. */
5231 if (!got_match)
5232 {
5233 setpcmark();
5234 got_match = TRUE;
5235 }
5236
5237 /*
5238 * Loop until nothing more to replace in this line.
5239 * 1. Handle match with empty string.
5240 * 2. If do_ask is set, ask for confirmation.
5241 * 3. substitute the string.
5242 * 4. if do_all is set, find next match
5243 * 5. break if there isn't another match in this line
5244 */
5245 for (;;)
5246 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005247 /* Advance "lnum" to the line where the match starts. The
5248 * match does not start in the first line when there is a line
5249 * break before \zs. */
5250 if (regmatch.startpos[0].lnum > 0)
5251 {
5252 lnum += regmatch.startpos[0].lnum;
5253 sub_firstlnum += regmatch.startpos[0].lnum;
5254 nmatch -= regmatch.startpos[0].lnum;
Bram Moolenaard23a8232018-02-10 18:45:26 +01005255 VIM_CLEAR(sub_firstline);
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005256 }
5257
5258 if (sub_firstline == NULL)
5259 {
5260 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5261 if (sub_firstline == NULL)
5262 {
5263 vim_free(new_start);
5264 goto outofmem;
5265 }
5266 }
5267
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 /* Save the line number of the last change for the final
5269 * cursor position (just like Vi). */
5270 curwin->w_cursor.lnum = lnum;
5271 do_again = FALSE;
5272
5273 /*
5274 * 1. Match empty string does not count, except for first
5275 * match. This reproduces the strange vi behaviour.
5276 * This also catches endless loops.
5277 */
5278 if (matchcol == prev_matchcol
5279 && regmatch.endpos[0].lnum == 0
5280 && matchcol == regmatch.endpos[0].col)
5281 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00005282 if (sub_firstline[matchcol] == NUL)
5283 /* We already were at the end of the line. Don't look
5284 * for a match in this line again. */
5285 skip_match = TRUE;
5286 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02005287 {
5288 /* search for a match at next column */
Bram Moolenaar0df11022011-05-19 14:30:16 +02005289 if (has_mbyte)
5290 matchcol += mb_ptr2len(sub_firstline + matchcol);
5291 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02005292 ++matchcol;
5293 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 goto skip;
5295 }
5296
5297 /* Normally we continue searching for a match just after the
5298 * previous match. */
5299 matchcol = regmatch.endpos[0].col;
5300 prev_matchcol = matchcol;
5301
5302 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00005303 * 2. If do_count is set only increase the counter.
5304 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005306 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005307 {
5308 /* For a multi-line match, put matchcol at the NUL at
5309 * the end of the line and set nmatch to one, so that
5310 * we continue looking for a match on the next line.
5311 * Avoids that ":s/\nB\@=//gc" get stuck. */
5312 if (nmatch > 1)
5313 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005314 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00005315 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00005316 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005317 }
5318 sub_nsubs++;
5319 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005320#ifdef FEAT_EVAL
5321 /* Skip the substitution, unless an expression is used,
5322 * then it is evaluated in the sandbox. */
5323 if (!(sub[0] == '\\' && sub[1] == '='))
5324#endif
5325 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005326 }
5327
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005328 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00005330 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005331
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332 /* change State to CONFIRM, so that the mouse works
5333 * properly */
5334 save_State = State;
5335 State = CONFIRM;
5336#ifdef FEAT_MOUSE
5337 setmouse(); /* disable mouse in xterm */
5338#endif
5339 curwin->w_cursor.col = regmatch.startpos[0].col;
Bram Moolenaar41baa792017-01-21 14:45:09 +01005340 if (curwin->w_p_crb)
5341 do_check_cursorbind();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342
5343 /* When 'cpoptions' contains "u" don't sync undo when
5344 * asking for confirmation. */
5345 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5346 ++no_u_sync;
5347
5348 /*
5349 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
5350 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005351 while (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005353 if (exmode_active)
5354 {
5355 char_u *resp;
5356 colnr_T sc, ec;
5357
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005358 print_line_no_prefix(lnum,
5359 subflags.do_number, subflags.do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005360
5361 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
5362 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01005363 if (curwin->w_cursor.col < 0)
5364 curwin->w_cursor.col = 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005365 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005366 if (subflags.do_number || curwin->w_p_nu)
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02005367 {
5368 int numw = number_width(curwin) + 1;
5369 sc += numw;
5370 ec += numw;
5371 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005372 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00005373 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005374 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00005375 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005376 msg_putchar('^');
5377
5378 resp = getexmodeline('?', NULL, 0);
5379 if (resp != NULL)
5380 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005381 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005382 vim_free(resp);
5383 }
5384 }
5385 else
5386 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005387 char_u *orig_line = NULL;
5388 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005390 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005392 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005394 /* Invert the matched string.
5395 * Remove the inversion afterwards. */
5396 temp = RedrawingDisabled;
5397 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005399 if (new_start != NULL)
5400 {
5401 /* There already was a substitution, we would
5402 * like to show this to the user. We cannot
5403 * really update the line, it would change
5404 * what matches. Temporarily replace the line
5405 * and change it back afterwards. */
5406 orig_line = vim_strsave(ml_get(lnum));
5407 if (orig_line != NULL)
5408 {
5409 char_u *new_line = concat_str(new_start,
5410 sub_firstline + copycol);
5411
5412 if (new_line == NULL)
Bram Moolenaard23a8232018-02-10 18:45:26 +01005413 VIM_CLEAR(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005414 else
5415 {
5416 /* Position the cursor relative to the
5417 * end of the line, the previous
5418 * substitute may have inserted or
5419 * deleted characters before the
5420 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01005421 len_change = (int)STRLEN(new_line)
5422 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005423 curwin->w_cursor.col += len_change;
5424 ml_replace(lnum, new_line, FALSE);
5425 }
5426 }
5427 }
5428
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005429 search_match_lines = regmatch.endpos[0].lnum
5430 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005431 search_match_endcol = regmatch.endpos[0].col
5432 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005433 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005435 update_topline();
5436 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00005437 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005438 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00005439 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440
5441#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005442 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005444 if (msg_row == Rows - 1)
5445 msg_didout = FALSE; /* avoid a scroll-up */
5446 msg_starthere();
5447 i = msg_scroll;
5448 msg_scroll = 0; /* truncate msg when
5449 needed */
5450 msg_no_more = TRUE;
5451 /* write message same highlighting as for
5452 * wait_return */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005453 smsg_attr(HL_ATTR(HLF_R),
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005454 _("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005455 msg_no_more = FALSE;
5456 msg_scroll = i;
5457 showruler(TRUE);
5458 windgoto(msg_row, msg_col);
5459 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460
5461#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005462 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005464 ++no_mapping; /* don't map this key */
5465 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005466 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005467 --allow_keys;
5468 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005470 /* clear the question */
5471 msg_didout = FALSE; /* don't scroll up */
5472 msg_col = 0;
5473 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005474
5475 /* restore the line */
5476 if (orig_line != NULL)
5477 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005478 }
5479
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005481 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005483 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484#endif
5485 )
5486 {
5487 got_quit = TRUE;
5488 break;
5489 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005490 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005492 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005494 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 {
5496 /* last: replace and then stop */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005497 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 line2 = lnum;
5499 break;
5500 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005501 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005503 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504 break;
5505 }
5506#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005507 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005509 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510 scrolldown_clamp();
5511#endif
5512 }
5513 State = save_State;
5514#ifdef FEAT_MOUSE
5515 setmouse();
5516#endif
5517 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5518 --no_u_sync;
5519
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005520 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 {
5522 /* For a multi-line match, put matchcol at the NUL at
5523 * the end of the line and set nmatch to one, so that
5524 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00005525 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
5526 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 if (nmatch > 1)
5528 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005529 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00005530 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 }
5532 goto skip;
5533 }
5534 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01005535 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 }
5537
5538 /* Move the cursor to the start of the match, so that we can
5539 * use "\=col("."). */
5540 curwin->w_cursor.col = regmatch.startpos[0].col;
5541
5542 /*
5543 * 3. substitute the string.
5544 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005545#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005546 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005547 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005548 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005549 save_ma = curbuf->b_p_ma;
5550 curbuf->b_p_ma = FALSE;
5551 sandbox++;
5552 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005553 /* Save flags for recursion. They can change for e.g.
5554 * :s/^/\=execute("s#^##gn") */
5555 subflags_save = subflags;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005556#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005558 sublen = vim_regsub_multi(&regmatch,
5559 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005561#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005562 /* Don't keep flags set by a recursive call. */
5563 subflags = subflags_save;
5564 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005565 {
5566 curbuf->b_p_ma = save_ma;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005567 if (sandbox > 0)
5568 sandbox--;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005569 goto skip;
5570 }
5571#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572
Bram Moolenaar4463f292005-09-25 22:20:24 +00005573 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005574 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005575 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5576 {
5577 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5578 skip_match = TRUE;
5579 }
5580
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 /* Need room for:
5582 * - result so far in new_start (not for first sub in line)
5583 * - original text up to match
5584 * - length of substituted part
5585 * - original text after match
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005586 * Adjust text properties here, since we have all information
5587 * needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 */
5589 if (nmatch == 1)
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005590 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 p1 = sub_firstline;
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005592#ifdef FEAT_TEXT_PROP
5593 if (curbuf->b_has_textprop)
5594 adjust_prop_columns(lnum, regmatch.startpos[0].col,
5595 sublen - 1 - (regmatch.endpos[0].col
5596 - regmatch.startpos[0].col));
5597#endif
5598 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 else
5600 {
5601 p1 = ml_get(sub_firstlnum + nmatch - 1);
5602 nmatch_tl += nmatch - 1;
5603 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005604 copy_len = regmatch.startpos[0].col - copycol;
5605 needed_len = copy_len + ((unsigned)STRLEN(p1)
5606 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 if (new_start == NULL)
5608 {
5609 /*
5610 * Get some space for a temporary buffer to do the
5611 * substitution into (and some extra space to avoid
5612 * too many calls to alloc()/free()).
5613 */
5614 new_start_len = needed_len + 50;
5615 if ((new_start = alloc_check(new_start_len)) == NULL)
5616 goto outofmem;
5617 *new_start = NUL;
5618 new_end = new_start;
5619 }
5620 else
5621 {
5622 /*
5623 * Check if the temporary buffer is long enough to do the
5624 * substitution into. If not, make it larger (with a bit
5625 * extra to avoid too many calls to alloc()/free()).
5626 */
5627 len = (unsigned)STRLEN(new_start);
5628 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005629 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 {
5631 new_start_len = needed_len + 50;
5632 if ((p1 = alloc_check(new_start_len)) == NULL)
5633 {
5634 vim_free(new_start);
5635 goto outofmem;
5636 }
5637 mch_memmove(p1, new_start, (size_t)(len + 1));
5638 vim_free(new_start);
5639 new_start = p1;
5640 }
5641 new_end = new_start + len;
5642 }
5643
5644 /*
5645 * copy the text up to the part that matched
5646 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005647 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5648 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005650 (void)vim_regsub_multi(&regmatch,
5651 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 sub, new_end, TRUE, p_magic, TRUE);
5653 sub_nsubs++;
5654 did_sub = TRUE;
5655
5656 /* Move the cursor to the start of the line, to avoid that it
5657 * is beyond the end of the line after the substitution. */
5658 curwin->w_cursor.col = 0;
5659
5660 /* For a multi-line match, make a copy of the last matched
5661 * line and continue in that one. */
5662 if (nmatch > 1)
5663 {
5664 sub_firstlnum += nmatch - 1;
5665 vim_free(sub_firstline);
5666 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5667 /* When going beyond the last line, stop substituting. */
5668 if (sub_firstlnum <= line2)
5669 do_again = TRUE;
5670 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005671 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 }
5673
5674 /* Remember next character to be copied. */
5675 copycol = regmatch.endpos[0].col;
5676
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005677 if (skip_match)
5678 {
5679 /* Already hit end of the buffer, sub_firstlnum is one
5680 * less than what it ought to be. */
5681 vim_free(sub_firstline);
5682 sub_firstline = vim_strsave((char_u *)"");
5683 copycol = 0;
5684 }
5685
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686 /*
5687 * Now the trick is to replace CTRL-M chars with a real line
5688 * break. This would make it impossible to insert a CTRL-M in
5689 * the text. The line break can be avoided by preceding the
5690 * CTRL-M with a backslash. To be able to insert a backslash,
5691 * they must be doubled in the string and are halved here.
5692 * That is Vi compatible.
5693 */
5694 for (p1 = new_end; *p1; ++p1)
5695 {
5696 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005697 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 else if (*p1 == CAR)
5699 {
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005700 if (u_inssub(lnum) == OK) // prepare for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 {
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005702 colnr_T plen = (colnr_T)(p1 - new_start + 1);
5703
5704 *p1 = NUL; // truncate up to the CR
5705 ml_append(lnum - 1, new_start, plen, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005707 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 appended_lines(lnum - 1, 1L);
5709 else
5710 {
5711 if (first_line == 0)
5712 first_line = lnum;
5713 last_line = lnum + 1;
5714 }
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005715#ifdef FEAT_TEXT_PROP
5716 adjust_props_for_split(lnum, plen, 1);
5717#endif
5718 // all line numbers increase
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 ++sub_firstlnum;
5720 ++lnum;
5721 ++line2;
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005722 // move the cursor to the new line, like Vi
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 ++curwin->w_cursor.lnum;
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005724 // copy the rest
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005725 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726 p1 = new_start - 1;
5727 }
5728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005730 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 }
5732
5733 /*
5734 * 4. If do_all is set, find next match.
5735 * Prevent endless loop with patterns that match empty
5736 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5737 * But ":s/\n/#/" is OK.
5738 */
5739skip:
5740 /* We already know that we did the last subst when we are at
5741 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005742 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5743 * "line2" when there is a \zs in the pattern after a line
5744 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005745 lastone = (skip_match
5746 || got_int
5747 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005748 || lnum > line2
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005749 || !(subflags.do_all || do_again)
Bram Moolenaar8299df92004-07-10 09:47:34 +00005750 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5751 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005752 nmatch = -1;
5753
5754 /*
5755 * Replace the line in the buffer when needed. This is
5756 * skipped when there are more matches.
5757 * The check for nmatch_tl is needed for when multi-line
5758 * matching must replace the lines before trying to do another
5759 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005760 * When the match starts below where we start searching also
5761 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 */
5763 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764 || nmatch_tl > 0
5765 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005766 curbuf, sub_firstlnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005767 matchcol, NULL, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005768 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 {
5770 if (new_start != NULL)
5771 {
5772 /*
5773 * Copy the rest of the line, that didn't match.
5774 * "matchcol" has to be adjusted, we use the end of
5775 * the line as reference, because the substitute may
5776 * have changed the number of characters. Same for
5777 * "prev_matchcol".
5778 */
5779 STRCAT(new_start, sub_firstline + copycol);
5780 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5781 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5782 - prev_matchcol;
5783
5784 if (u_savesub(lnum) != OK)
5785 break;
5786 ml_replace(lnum, new_start, TRUE);
5787
5788 if (nmatch_tl > 0)
5789 {
5790 /*
5791 * Matched lines have now been substituted and are
5792 * useless, delete them. The part after the match
5793 * has been appended to new_start, we don't need
5794 * it in the buffer.
5795 */
5796 ++lnum;
5797 if (u_savedel(lnum, nmatch_tl) != OK)
5798 break;
5799 for (i = 0; i < nmatch_tl; ++i)
5800 ml_delete(lnum, (int)FALSE);
5801 mark_adjust(lnum, lnum + nmatch_tl - 1,
5802 (long)MAXLNUM, -nmatch_tl);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005803 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 deleted_lines(lnum, nmatch_tl);
5805 --lnum;
5806 line2 -= nmatch_tl; /* nr of lines decreases */
5807 nmatch_tl = 0;
5808 }
5809
5810 /* When asking, undo is saved each time, must also set
5811 * changed flag each time. */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005812 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 changed_bytes(lnum, 0);
5814 else
5815 {
5816 if (first_line == 0)
5817 first_line = lnum;
5818 last_line = lnum + 1;
5819 }
5820
5821 sub_firstlnum = lnum;
5822 vim_free(sub_firstline); /* free the temp buffer */
5823 sub_firstline = new_start;
5824 new_start = NULL;
5825 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5826 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5827 - prev_matchcol;
5828 copycol = 0;
5829 }
5830 if (nmatch == -1 && !lastone)
5831 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005832 sub_firstlnum, matchcol, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833
5834 /*
5835 * 5. break if there isn't another match in this line
5836 */
5837 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005838 {
5839 /* If the match found didn't start where we were
5840 * searching, do the next search in the line where we
5841 * found the match. */
5842 if (nmatch == -1)
5843 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 }
5847
5848 line_breakcheck();
5849 }
5850
5851 if (did_sub)
5852 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005853 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaard23a8232018-02-10 18:45:26 +01005854 VIM_CLEAR(sub_firstline); /* free the copy of the original line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 }
5856
5857 line_breakcheck();
5858 }
5859
5860 if (first_line != 0)
5861 {
5862 /* Need to subtract the number of added lines from "last_line" to get
5863 * the line number before the change (same as adding the number of
5864 * deleted lines). */
5865 i = curbuf->b_ml.ml_line_count - old_line_count;
5866 changed_lines(first_line, 0, last_line - i, i);
5867 }
5868
5869outofmem:
5870 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005871
5872 /* ":s/pat//n" doesn't move the cursor */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005873 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005874 curwin->w_cursor = old_cursor;
5875
Bram Moolenaar46475522010-03-23 17:36:29 +01005876 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877 {
5878 /* Set the '[ and '] marks. */
5879 curbuf->b_op_start.lnum = eap->line1;
5880 curbuf->b_op_end.lnum = line2;
5881 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5882
5883 if (!global_busy)
5884 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005885 /* when interactive leave cursor on the match */
5886 if (!subflags.do_ask)
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005887 {
5888 if (endcolumn)
5889 coladvance((colnr_T)MAXCOL);
5890 else
5891 beginline(BL_WHITE | BL_FIX);
5892 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005893 if (!do_sub_msg(subflags.do_count) && subflags.do_ask)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005894 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 }
5896 else
5897 global_need_beginline = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005898 if (subflags.do_print)
5899 print_line(curwin->w_cursor.lnum,
5900 subflags.do_number, subflags.do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901 }
5902 else if (!global_busy)
5903 {
5904 if (got_int) /* interrupted */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005905 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 else if (got_match) /* did find something but nothing substituted */
Bram Moolenaar32526b32019-01-19 17:43:09 +01005907 msg("");
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005908 else if (subflags.do_error) /* nothing found */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005909 semsg(_(e_patnotf2), get_search_pat());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910 }
5911
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005912#ifdef FEAT_FOLDING
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005913 if (subflags.do_ask && hasAnyFolding(curwin))
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005914 /* Cursor position may require updating */
5915 changed_window_setting();
5916#endif
5917
Bram Moolenaar473de612013-06-08 18:19:48 +02005918 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005919
5920 /* Restore the flag values, they can be used for ":&&". */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005921 subflags.do_all = save_do_all;
5922 subflags.do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923}
5924
5925/*
5926 * Give message for number of substitutions.
5927 * Can also be used after a ":global" command.
5928 * Return TRUE if a message was given.
5929 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005930 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005931do_sub_msg(
5932 int count_only) /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933{
5934 /*
5935 * Only report substitutions when:
5936 * - more than 'report' substitutions
5937 * - command was typed by user, or number of changed lines > 'report'
5938 * - giving messages is not disabled by 'lazyredraw'
5939 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005940 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5941 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 && messaging())
5943 {
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005944 char *msg_single;
5945 char *msg_plural;
5946
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947 if (got_int)
5948 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005949 else
5950 *msg_buf = NUL;
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005951
5952 msg_single = count_only
5953 ? NGETTEXT("%ld match on %ld line",
5954 "%ld matches on %ld line", sub_nsubs)
5955 : NGETTEXT("%ld substitution on %ld line",
5956 "%ld substitutions on %ld line", sub_nsubs);
5957 msg_plural = count_only
5958 ? NGETTEXT("%ld match on %ld lines",
5959 "%ld matches on %ld lines", sub_nsubs)
5960 : NGETTEXT("%ld substitution on %ld lines",
5961 "%ld substitutions on %ld lines", sub_nsubs);
5962
Bram Moolenaar32526b32019-01-19 17:43:09 +01005963 vim_snprintf_add(msg_buf, sizeof(msg_buf),
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005964 NGETTEXT(msg_single, msg_plural, sub_nlines),
5965 sub_nsubs, (long)sub_nlines);
5966
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 /* save message to display it after redraw */
Bram Moolenaar32526b32019-01-19 17:43:09 +01005969 set_keep_msg((char_u *)msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970 return TRUE;
5971 }
5972 if (got_int)
5973 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005974 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975 return TRUE;
5976 }
5977 return FALSE;
5978}
5979
Bram Moolenaarf84b1222017-06-10 14:29:52 +02005980 static void
5981global_exe_one(char_u *cmd, linenr_T lnum)
5982{
5983 curwin->w_cursor.lnum = lnum;
5984 curwin->w_cursor.col = 0;
5985 if (*cmd == NUL || *cmd == '\n')
5986 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5987 else
5988 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5989}
5990
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991/*
5992 * Execute a global command of the form:
5993 *
5994 * g/pattern/X : execute X on all lines where pattern matches
5995 * v/pattern/X : execute X on all lines where pattern does not match
5996 *
5997 * where 'X' is an EX command
5998 *
5999 * The command character (as well as the trailing slash) is optional, and
6000 * is assumed to be 'p' if missing.
6001 *
6002 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006003 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00006004 * for each line that has a mark. This is required because after deleting
6005 * lines we do not know where to search for the next match.
6006 */
6007 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006008ex_global(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009{
6010 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006011 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006012 int type; /* first char of cmd: 'v' or 'g' */
6013 char_u *cmd; /* command argument */
6014
6015 char_u delim; /* delimiter, normally '/' */
6016 char_u *pat;
6017 regmmatch_T regmatch;
6018 int match;
6019 int which_pat;
6020
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006021 /* When nesting the command works on one line. This allows for
6022 * ":g/found/v/notfound/command". */
6023 if (global_busy && (eap->line1 != 1
6024 || eap->line2 != curbuf->b_ml.ml_line_count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006026 /* will increment global_busy to break out of the loop */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006027 emsg(_("E147: Cannot do :global recursive with a range"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 return;
6029 }
6030
6031 if (eap->forceit) /* ":global!" is like ":vglobal" */
6032 type = 'v';
6033 else
6034 type = *eap->cmd;
6035 cmd = eap->arg;
6036 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037
6038 /*
6039 * undocumented vi feature:
6040 * "\/" and "\?": use previous search pattern.
6041 * "\&": use previous substitute pattern.
6042 */
6043 if (*cmd == '\\')
6044 {
6045 ++cmd;
6046 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
6047 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006048 emsg(_(e_backslash));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006049 return;
6050 }
6051 if (*cmd == '&')
6052 which_pat = RE_SUBST; /* use previous substitute pattern */
6053 else
6054 which_pat = RE_SEARCH; /* use previous search pattern */
6055 ++cmd;
6056 pat = (char_u *)"";
6057 }
6058 else if (*cmd == NUL)
6059 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006060 emsg(_("E148: Regular expression missing from global"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 return;
6062 }
6063 else
6064 {
6065 delim = *cmd; /* get the delimiter */
6066 if (delim)
6067 ++cmd; /* skip delimiter if there is one */
6068 pat = cmd; /* remember start of pattern */
6069 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
6070 if (cmd[0] == delim) /* end delimiter found */
6071 *cmd++ = NUL; /* replace it with a NUL */
6072 }
6073
6074#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
6075 if (p_altkeymap && curwin->w_p_rl)
6076 lrFswap(pat,0);
6077#endif
6078
6079 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
6080 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006081 emsg(_(e_invcmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082 return;
6083 }
6084
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006085 if (global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006087 lnum = curwin->w_cursor.lnum;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00006088 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006089 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 if ((type == 'g' && match) || (type == 'v' && !match))
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006091 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092 }
6093 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006094 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006095 /*
6096 * pass 1: set marks for each (not) matching line
6097 */
6098 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
6099 {
6100 /* a match on this line? */
6101 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006102 (colnr_T)0, NULL, NULL);
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006103 if ((type == 'g' && match) || (type == 'v' && !match))
6104 {
6105 ml_setmarked(lnum);
6106 ndone++;
6107 }
6108 line_breakcheck();
6109 }
6110
6111 /*
6112 * pass 2: execute the command for each line that has been marked
6113 */
6114 if (got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006115 msg(_(e_interr));
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006116 else if (ndone == 0)
6117 {
6118 if (type == 'v')
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006119 smsg(_("Pattern found in every line: %s"), pat);
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006120 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006121 smsg(_("Pattern not found: %s"), pat);
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006122 }
6123 else
6124 {
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006125#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006126 start_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006127#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006128 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006129#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006130 end_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006131#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006132 }
6133
6134 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006135 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136
Bram Moolenaar473de612013-06-08 18:19:48 +02006137 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138}
6139
6140/*
6141 * Execute "cmd" on lines marked with ml_setmarked().
6142 */
6143 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006144global_exe(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145{
Bram Moolenaarbb993222011-05-10 16:00:47 +02006146 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
6147 buf_T *old_buf = curbuf; /* remember what buffer we started in */
6148 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006149
6150 /*
6151 * Set current position only once for a global command.
6152 * If global_busy is set, setpcmark() will not do anything.
6153 * If there is an error, global_busy will be incremented.
6154 */
6155 setpcmark();
6156
6157 /* When the command writes a message, don't overwrite the command. */
6158 msg_didout = TRUE;
6159
Bram Moolenaard25bc232010-03-23 17:49:24 +01006160 sub_nsubs = 0;
6161 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 global_need_beginline = FALSE;
6163 global_busy = 1;
6164 old_lcount = curbuf->b_ml.ml_line_count;
6165 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
6166 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006167 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006168 ui_breakcheck();
6169 }
6170
6171 global_busy = 0;
6172 if (global_need_beginline)
6173 beginline(BL_WHITE | BL_FIX);
6174 else
6175 check_cursor(); /* cursor may be beyond the end of the line */
6176
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006177 /* the cursor may not have moved in the text but a change in a previous
6178 * line may move it on the screen */
6179 changed_line_abv_curs();
6180
Bram Moolenaar071d4272004-06-13 20:20:40 +00006181 /* If it looks like no message was written, allow overwriting the
6182 * command with the report for number of changes. */
6183 if (msg_col == 0 && msg_scrolled == 0)
6184 msg_didout = FALSE;
6185
Bram Moolenaar45667512007-05-10 19:24:43 +00006186 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02006187 * number of extra or deleted lines.
6188 * Don't report extra or deleted lines in the edge case where the buffer
6189 * we are in after execution is different from the buffer we started in. */
6190 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
6192}
6193
6194#ifdef FEAT_VIMINFO
6195 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006196read_viminfo_sub_string(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01006198 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 vim_free(old_sub);
6200 if (force || old_sub == NULL)
6201 old_sub = viminfo_readstring(virp, 1, TRUE);
6202 return viminfo_readline(virp);
6203}
6204
6205 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006206write_viminfo_sub_string(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006207{
6208 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
6209 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02006210 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006211 viminfo_writestring(fp, old_sub);
6212 }
6213}
6214#endif /* FEAT_VIMINFO */
6215
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006216#if defined(EXITFREE) || defined(PROTO)
6217 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006218free_old_sub(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006219{
6220 vim_free(old_sub);
6221}
6222#endif
6223
Bram Moolenaar4033c552017-09-16 20:54:51 +02006224#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225/*
6226 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006227 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006229 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006230prepare_tagpreview(
6231 int undo_sync) /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232{
6233 win_T *wp;
6234
6235# ifdef FEAT_GUI
6236 need_mouse_correct = TRUE;
6237# endif
6238
6239 /*
6240 * If there is already a preview window open, use that one.
6241 */
6242 if (!curwin->w_p_pvw)
6243 {
Bram Moolenaar29323592016-07-24 22:04:11 +02006244 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006245 if (wp->w_p_pvw)
6246 break;
6247 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00006248 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 else
6250 {
6251 /*
6252 * There is no preview window open yet. Create one.
6253 */
6254 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
6255 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006256 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 curwin->w_p_pvw = TRUE;
6258 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006259 RESET_BINDING(curwin); /* don't take over 'scrollbind'
6260 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261# ifdef FEAT_DIFF
6262 curwin->w_p_diff = FALSE; /* no 'diff' */
6263# endif
6264# ifdef FEAT_FOLDING
6265 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
6266# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006267 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 }
6269 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006270 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271}
6272
6273#endif
6274
6275
6276/*
6277 * ":help": open a read-only window on a help file
6278 */
6279 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006280ex_help(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281{
6282 char_u *arg;
6283 char_u *tag;
6284 FILE *helpfd; /* file descriptor of help file */
6285 int n;
6286 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288 int num_matches;
6289 char_u **matches;
6290 char_u *p;
6291 int empty_fnum = 0;
6292 int alt_fnum = 0;
6293 buf_T *buf;
6294#ifdef FEAT_MULTI_LANG
6295 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006296 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02006298#ifdef FEAT_FOLDING
6299 int old_KeyTyped = KeyTyped;
6300#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301
6302 if (eap != NULL)
6303 {
6304 /*
6305 * A ":help" command ends at the first LF, or at a '|' that is
6306 * followed by some text. Set nextcmd to the following command.
6307 */
6308 for (arg = eap->arg; *arg; ++arg)
6309 {
6310 if (*arg == '\n' || *arg == '\r'
6311 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
6312 {
6313 *arg++ = NUL;
6314 eap->nextcmd = arg;
6315 break;
6316 }
6317 }
6318 arg = eap->arg;
6319
Bram Moolenaar3dbde622012-04-05 16:05:05 +02006320 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006322 emsg(_("E478: Don't panic!"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323 return;
6324 }
6325
6326 if (eap->skip) /* not executing commands */
6327 return;
6328 }
6329 else
6330 arg = (char_u *)"";
6331
6332 /* remove trailing blanks */
6333 p = arg + STRLEN(arg) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006334 while (p > arg && VIM_ISWHITE(*p) && p[-1] != '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 *p-- = NUL;
6336
6337#ifdef FEAT_MULTI_LANG
6338 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006339 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340#endif
6341
6342 /* When no argument given go to the index. */
6343 if (*arg == NUL)
6344 arg = (char_u *)"help.txt";
6345
6346 /*
6347 * Check if there is a match for the argument.
6348 */
6349 n = find_help_tags(arg, &num_matches, &matches,
6350 eap != NULL && eap->forceit);
6351
6352 i = 0;
6353#ifdef FEAT_MULTI_LANG
6354 if (n != FAIL && lang != NULL)
6355 /* Find first item with the requested language. */
6356 for (i = 0; i < num_matches; ++i)
6357 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006358 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 if (len > 3 && matches[i][len - 3] == '@'
6360 && STRICMP(matches[i] + len - 2, lang) == 0)
6361 break;
6362 }
6363#endif
6364 if (i >= num_matches || n == FAIL)
6365 {
6366#ifdef FEAT_MULTI_LANG
6367 if (lang != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006368 semsg(_("E661: Sorry, no '%s' help for %s"), lang, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369 else
6370#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006371 semsg(_("E149: Sorry, no help for %s"), arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 if (n != FAIL)
6373 FreeWild(num_matches, matches);
6374 return;
6375 }
6376
6377 /* The first match (in the requested language) is the best match. */
6378 tag = vim_strsave(matches[i]);
6379 FreeWild(num_matches, matches);
6380
6381#ifdef FEAT_GUI
6382 need_mouse_correct = TRUE;
6383#endif
6384
6385 /*
6386 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006387 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388 */
Bram Moolenaar4033c552017-09-16 20:54:51 +02006389 if (!bt_help(curwin->w_buffer) || cmdmod.tab != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 {
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006391 if (cmdmod.tab != 0)
6392 wp = NULL;
6393 else
Bram Moolenaar29323592016-07-24 22:04:11 +02006394 FOR_ALL_WINDOWS(wp)
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006395 if (bt_help(wp->w_buffer))
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006396 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
6398 win_enter(wp, TRUE);
6399 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006400 {
6401 /*
6402 * There is no help window yet.
6403 * Try to open the file specified by the "helpfile" option.
6404 */
6405 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
6406 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006407 smsg(_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 goto erret;
6409 }
6410 fclose(helpfd);
6411
Bram Moolenaar071d4272004-06-13 20:20:40 +00006412 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006413 * specified, the current window is vertically split and
6414 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415 n = WSP_HELP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006417 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 n |= WSP_TOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006420 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421
Bram Moolenaar071d4272004-06-13 20:20:40 +00006422 if (curwin->w_height < p_hh)
6423 win_setheight((int)p_hh);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424
6425 /*
6426 * Open help file (do_ecmd() will set b_help flag, readfile() will
6427 * set b_p_ro flag).
6428 * Set the alternate file to the previously edited file.
6429 */
6430 alt_fnum = curbuf->b_fnum;
6431 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006432 ECMD_HIDE + ECMD_SET_HELP,
Bram Moolenaar4033c552017-09-16 20:54:51 +02006433 NULL); /* buffer is still open, don't store info */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006434 if (!cmdmod.keepalt)
6435 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436 empty_fnum = curbuf->b_fnum;
6437 }
6438 }
6439
6440 if (!p_im)
6441 restart_edit = 0; /* don't want insert mode in help file */
6442
Bram Moolenaar8f535582011-09-30 17:30:31 +02006443#ifdef FEAT_FOLDING
6444 /* Restore KeyTyped, setting 'filetype=help' may reset it.
6445 * It is needed for do_tag top open folds under the cursor. */
6446 KeyTyped = old_KeyTyped;
6447#endif
6448
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449 if (tag != NULL)
6450 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
6451
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006452 /* Delete the empty buffer if we're not using it. Careful: autocommands
6453 * may have jumped to another window, check that the buffer is not in a
6454 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
6456 {
6457 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006458 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459 wipe_buffer(buf, TRUE);
6460 }
6461
6462 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006463 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006464 curwin->w_alt_fnum = alt_fnum;
6465
6466erret:
6467 vim_free(tag);
6468}
6469
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006470/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006471 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006472 */
6473 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006474ex_helpclose(exarg_T *eap UNUSED)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006475{
6476 win_T *win;
6477
6478 FOR_ALL_WINDOWS(win)
6479 {
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006480 if (bt_help(win->w_buffer))
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006481 {
6482 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006483 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006484 }
6485 }
6486}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006488#if defined(FEAT_MULTI_LANG) || defined(PROTO)
6489/*
6490 * In an argument search for a language specifiers in the form "@xx".
6491 * Changes the "@" to NUL if found, and returns a pointer to "xx".
6492 * Returns NULL if not found.
6493 */
6494 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006495check_help_lang(char_u *arg)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006496{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006497 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006498
6499 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
6500 && ASCII_ISALPHA(arg[len - 1]))
6501 {
6502 arg[len - 3] = NUL; /* remove the '@' */
6503 return arg + len - 2;
6504 }
6505 return NULL;
6506}
6507#endif
6508
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509/*
6510 * Return a heuristic indicating how well the given string matches. The
6511 * smaller the number, the better the match. This is the order of priorities,
6512 * from best match to worst match:
6513 * - Match with least alpha-numeric characters is better.
6514 * - Match with least total characters is better.
6515 * - Match towards the start is better.
6516 * - Match starting with "+" is worse (feature instead of command)
6517 * Assumption is made that the matched_string passed has already been found to
6518 * match some string for which help is requested. webb.
6519 */
6520 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006521help_heuristic(
6522 char_u *matched_string,
6523 int offset, /* offset for match */
6524 int wrong_case) /* no matching case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006525{
6526 int num_letters;
6527 char_u *p;
6528
6529 num_letters = 0;
6530 for (p = matched_string; *p; p++)
6531 if (ASCII_ISALNUM(*p))
6532 num_letters++;
6533
6534 /*
6535 * Multiply the number of letters by 100 to give it a much bigger
6536 * weighting than the number of characters.
6537 * If there only is a match while ignoring case, add 5000.
6538 * If the match starts in the middle of a word, add 10000 to put it
6539 * somewhere in the last half.
6540 * If the match is more than 2 chars from the start, multiply by 200 to
6541 * put it after matches at the start.
6542 */
6543 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
6544 && ASCII_ISALNUM(matched_string[offset - 1]))
6545 offset += 10000;
6546 else if (offset > 2)
6547 offset *= 200;
6548 if (wrong_case)
6549 offset += 5000;
6550 /* Features are less interesting than the subjects themselves, but "+"
6551 * alone is not a feature. */
6552 if (matched_string[0] == '+' && matched_string[1] != NUL)
6553 offset += 100;
6554 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
6555}
6556
6557/*
6558 * Compare functions for qsort() below, that checks the help heuristics number
6559 * that has been put after the tagname by find_tags().
6560 */
6561 static int
6562#ifdef __BORLANDC__
6563_RTLENTRYF
6564#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006565help_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006566{
6567 char *p1;
6568 char *p2;
6569
6570 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
6571 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
6572 return strcmp(p1, p2);
6573}
6574
6575/*
6576 * Find all help tags matching "arg", sort them and return in matches[], with
6577 * the number of matches in num_matches.
6578 * The matches will be sorted with a "best" match algorithm.
6579 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6580 */
6581 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006582find_help_tags(
6583 char_u *arg,
6584 int *num_matches,
6585 char_u ***matches,
6586 int keep_lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587{
6588 char_u *s, *d;
6589 int i;
6590 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006591 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006592 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006593 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
6594 "-?", "q?", "v_g?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006595 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006596 "[count]", "[quotex]",
6597 "[range]", ":[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006598 "[pattern]", "\\|", "\\%$",
6599 "s/\\~", "s/\\U", "s/\\L",
6600 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006601 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006602 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006603 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006604 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
6605 "-?", "q?", "v_g?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006606 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006607 "\\[count]", "\\[quotex]",
6608 "\\[range]", ":\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006609 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006610 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006611 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006612 static char *(expr_table[]) = {"!=?", "!~?", "<=?", "<?", "==?", "=~?",
6613 ">=?", ">?", "is?", "isnot?"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614 int flags;
6615
6616 d = IObuff; /* assume IObuff is long enough! */
6617
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006618 if (STRNICMP(arg, "expr-", 5) == 0)
6619 {
6620 // When the string starting with "expr-" and containing '?' and matches
6621 // the table, it is taken literally. Otherwise '?' is recognized as a
6622 // wildcard.
6623 for (i = (int)(sizeof(expr_table) / sizeof(char *)); --i >= 0; )
6624 if (STRCMP(arg + 5, expr_table[i]) == 0)
6625 {
6626 STRCPY(d, arg);
6627 break;
6628 }
6629 }
6630 else
6631 {
6632 // Recognize a few exceptions to the rule. Some strings that contain
6633 // '*' with "star". Otherwise '*' is recognized as a wildcard.
6634 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
6635 if (STRCMP(arg, mtable[i]) == 0)
6636 {
6637 STRCPY(d, rtable[i]);
6638 break;
6639 }
6640 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641
6642 if (i < 0) /* no match in table */
6643 {
6644 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6645 * Also replace "\%^" and "\%(", they match every tag too.
6646 * Also "\zs", "\z1", etc.
6647 * Also "\@<", "\@=", "\@<=", etc.
6648 * And also "\_$" and "\_^". */
6649 if (arg[0] == '\\'
6650 && ((arg[1] != NUL && arg[2] == NUL)
6651 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6652 && arg[2] != NUL)))
6653 {
6654 STRCPY(d, "/\\\\");
6655 STRCPY(d + 3, arg + 1);
6656 /* Check for "/\\_$", should be "/\\_\$" */
6657 if (d[3] == '_' && d[4] == '$')
6658 STRCPY(d + 4, "\\$");
6659 }
6660 else
6661 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006662 /* Replace:
6663 * "[:...:]" with "\[:...:]"
6664 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006665 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006666 */
6667 if ((arg[0] == '[' && (arg[1] == ':'
6668 || (arg[1] == '+' && arg[2] == '+')))
6669 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006670 *d++ = '\\';
6671
Bram Moolenaar00f9e0d2016-03-15 13:44:12 +01006672 /*
6673 * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'.
6674 */
6675 if (*arg == '(' && arg[1] == '\'')
6676 arg++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677 for (s = arg; *s; ++s)
6678 {
6679 /*
6680 * Replace "|" with "bar" and '"' with "quote" to match the name of
6681 * the tags for these commands.
6682 * Replace "*" with ".*" and "?" with "." to match command line
6683 * completion.
6684 * Insert a backslash before '~', '$' and '.' to avoid their
6685 * special meaning.
6686 */
6687 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6688 break;
6689 switch (*s)
6690 {
6691 case '|': STRCPY(d, "bar");
6692 d += 3;
6693 continue;
6694 case '"': STRCPY(d, "quote");
6695 d += 5;
6696 continue;
6697 case '*': *d++ = '.';
6698 break;
6699 case '?': *d++ = '.';
6700 continue;
6701 case '$':
6702 case '.':
6703 case '~': *d++ = '\\';
6704 break;
6705 }
6706
6707 /*
6708 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6709 * ":help i_^_CTRL-D" work.
6710 * Insert '-' before and after "CTRL-X" when applicable.
6711 */
6712 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6713 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6714 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006715 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6716 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006717 STRCPY(d, "CTRL-");
6718 d += 5;
6719 if (*s < ' ')
6720 {
6721#ifdef EBCDIC
6722 *d++ = CtrlChar(*s);
6723#else
6724 *d++ = *s + '@';
6725#endif
6726 if (d[-1] == '\\')
6727 *d++ = '\\'; /* double a backslash */
6728 }
6729 else
6730 *d++ = *++s;
6731 if (s[1] != NUL && s[1] != '_')
6732 *d++ = '_'; /* append a '_' */
6733 continue;
6734 }
6735 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6736 *d++ = '\\';
6737
6738 /*
6739 * Insert a backslash before a backslash after a slash, for search
6740 * pattern tags: "/\|" --> "/\\|".
6741 */
6742 else if (s[0] == '\\' && s[1] != '\\'
6743 && *arg == '/' && s == arg + 1)
6744 *d++ = '\\';
6745
6746 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6747 * "CTRL-\_CTRL-N" */
6748 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6749 {
6750 STRCPY(d, "CTRL-\\\\");
6751 d += 7;
6752 s += 6;
6753 }
6754
6755 *d++ = *s;
6756
6757 /*
Bram Moolenaar81edd172016-04-14 13:51:37 +02006758 * If tag contains "({" or "([", tag terminates at the "(".
6759 * This is for help on functions, e.g.: abs({expr}).
6760 */
6761 if (*s == '(' && (s[1] == '{' || s[1] =='['))
6762 break;
6763
6764 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006765 * If tag starts with ', toss everything after a second '. Fixes
6766 * CTRL-] on 'option'. (would include the trailing '.').
6767 */
6768 if (*s == '\'' && s > arg && *arg == '\'')
6769 break;
Bram Moolenaar28b942a2016-06-04 22:31:27 +02006770 /* Also '{' and '}'. */
6771 if (*s == '}' && s > arg && *arg == '{')
6772 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006773 }
6774 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006775
6776 if (*IObuff == '`')
6777 {
6778 if (d > IObuff + 2 && d[-1] == '`')
6779 {
6780 /* remove the backticks from `command` */
6781 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6782 d[-2] = NUL;
6783 }
6784 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6785 {
6786 /* remove the backticks and comma from `command`, */
6787 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6788 d[-3] = NUL;
6789 }
6790 else if (d > IObuff + 4 && d[-3] == '`'
6791 && d[-2] == '\\' && d[-1] == '.')
6792 {
6793 /* remove the backticks and dot from `command`\. */
6794 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6795 d[-4] = NUL;
6796 }
6797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 }
6799 }
6800
6801 *matches = (char_u **)"";
6802 *num_matches = 0;
6803 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6804 if (keep_lang)
6805 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006806 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006808 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006809 /* Sort the matches found on the heuristic number that is after the
6810 * tag name. */
6811 qsort((void *)*matches, (size_t)*num_matches,
6812 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006813 /* Delete more than TAG_MANY to reduce the size of the listing. */
6814 while (*num_matches > TAG_MANY)
6815 vim_free((*matches)[--*num_matches]);
6816 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817 return OK;
6818}
6819
6820/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006821 * Called when starting to edit a buffer for a help file.
6822 */
6823 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006824prepare_help_buffer(void)
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006825{
6826 char_u *p;
6827
6828 curbuf->b_help = TRUE;
6829#ifdef FEAT_QUICKFIX
6830 set_string_option_direct((char_u *)"buftype", -1,
6831 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6832#endif
6833
6834 /*
6835 * Always set these options after jumping to a help tag, because the
6836 * user may have an autocommand that gets in the way.
6837 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6838 * latin1 word characters (for translated help files).
6839 * Only set it when needed, buf_init_chartab() is some work.
6840 */
6841 p =
6842#ifdef EBCDIC
6843 (char_u *)"65-255,^*,^|,^\"";
6844#else
6845 (char_u *)"!-~,^*,^|,^\",192-255";
6846#endif
6847 if (STRCMP(curbuf->b_p_isk, p) != 0)
6848 {
6849 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6850 check_buf_options(curbuf);
6851 (void)buf_init_chartab(curbuf, FALSE);
6852 }
6853
Bram Moolenaar0b105412014-11-30 13:34:23 +01006854#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006855 /* Don't use the global foldmethod.*/
6856 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6857 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006858#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006859
6860 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6861 curwin->w_p_list = FALSE; /* no list mode */
6862
6863 curbuf->b_p_ma = FALSE; /* not modifiable */
6864 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6865 curwin->w_p_nu = 0; /* no line numbers */
6866 curwin->w_p_rnu = 0; /* no relative line numbers */
6867 RESET_BINDING(curwin); /* no scroll or cursor binding */
6868#ifdef FEAT_ARABIC
6869 curwin->w_p_arab = FALSE; /* no arabic mode */
6870#endif
6871#ifdef FEAT_RIGHTLEFT
6872 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6873#endif
6874#ifdef FEAT_FOLDING
6875 curwin->w_p_fen = FALSE; /* No folding in the help window */
6876#endif
6877#ifdef FEAT_DIFF
6878 curwin->w_p_diff = FALSE; /* No 'diff' */
6879#endif
6880#ifdef FEAT_SPELL
6881 curwin->w_p_spell = FALSE; /* No spell checking */
6882#endif
6883
6884 set_buflisted(FALSE);
6885}
6886
6887/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888 * After reading a help file: May cleanup a help buffer when syntax
6889 * highlighting is not used.
6890 */
6891 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006892fix_help_buffer(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006893{
6894 linenr_T lnum;
6895 char_u *line;
6896 int in_example = FALSE;
6897 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006898 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 char_u *p;
6900 char_u *rt;
6901 int mustfree;
6902
Bram Moolenaar90492982017-06-22 14:16:31 +02006903 /* Set filetype to "help" if still needed. */
6904 if (STRCMP(curbuf->b_p_ft, "help") != 0)
Bram Moolenaar18141832017-06-25 21:17:25 +02006905 {
6906 ++curbuf_lock;
Bram Moolenaar90492982017-06-22 14:16:31 +02006907 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
Bram Moolenaar18141832017-06-25 21:17:25 +02006908 --curbuf_lock;
6909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910
6911#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006912 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913#endif
6914 {
6915 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6916 {
6917 line = ml_get_buf(curbuf, lnum, FALSE);
6918 len = (int)STRLEN(line);
Bram Moolenaar1c465442017-03-12 20:10:05 +01006919 if (in_example && len > 0 && !VIM_ISWHITE(line[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006920 {
6921 /* End of example: non-white or '<' in first column. */
6922 if (line[0] == '<')
6923 {
6924 /* blank-out a '<' in the first column */
6925 line = ml_get_buf(curbuf, lnum, TRUE);
6926 line[0] = ' ';
6927 }
6928 in_example = FALSE;
6929 }
6930 if (!in_example && len > 0)
6931 {
6932 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6933 {
6934 /* blank-out a '>' in the last column (start of example) */
6935 line = ml_get_buf(curbuf, lnum, TRUE);
6936 line[len - 1] = ' ';
6937 in_example = TRUE;
6938 }
6939 else if (line[len - 1] == '~')
6940 {
6941 /* blank-out a '~' at the end of line (header marker) */
6942 line = ml_get_buf(curbuf, lnum, TRUE);
6943 line[len - 1] = ' ';
6944 }
6945 }
6946 }
6947 }
6948
6949 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006950 * In the "help.txt" and "help.abx" file, add the locally added help
6951 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006953 fname = gettail(curbuf->b_fname);
6954 if (fnamecmp(fname, "help.txt") == 0
6955#ifdef FEAT_MULTI_LANG
6956 || (fnamencmp(fname, "help.", 5) == 0
6957 && ASCII_ISALPHA(fname[5])
6958 && ASCII_ISALPHA(fname[6])
6959 && TOLOWER_ASC(fname[7]) == 'x'
6960 && fname[8] == NUL)
6961#endif
6962 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963 {
6964 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6965 {
6966 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006967 if (strstr((char *)line, "*local-additions*") == NULL)
6968 continue;
6969
6970 /* Go through all directories in 'runtimepath', skipping
6971 * $VIMRUNTIME. */
6972 p = p_rtp;
6973 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006975 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6976 mustfree = FALSE;
6977 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
Bram Moolenaare4db7ae2018-02-13 13:12:11 +01006978 if (rt != NULL && fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006979 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006980 int fcount;
6981 char_u **fnames;
6982 FILE *fd;
6983 char_u *s;
6984 int fi;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006985 vimconv_T vc;
6986 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006988 /* Find all "doc/ *.txt" files in this directory. */
6989 add_pathsep(NameBuff);
6990#ifdef FEAT_MULTI_LANG
6991 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006993 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006995 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6996 &fnames, EW_FILE|EW_SILENT) == OK
6997 && fcount > 0)
6998 {
6999#ifdef FEAT_MULTI_LANG
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007000 int i1, i2;
7001 char_u *f1, *f2;
7002 char_u *t1, *t2;
7003 char_u *e1, *e2;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007004
7005 /* If foo.abx is found use it instead of foo.txt in
7006 * the same directory. */
7007 for (i1 = 0; i1 < fcount; ++i1)
7008 {
7009 for (i2 = 0; i2 < fcount; ++i2)
7010 {
7011 if (i1 == i2)
7012 continue;
7013 if (fnames[i1] == NULL || fnames[i2] == NULL)
7014 continue;
7015 f1 = fnames[i1];
7016 f2 = fnames[i2];
7017 t1 = gettail(f1);
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007018 t2 = gettail(f2);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007019 e1 = vim_strrchr(t1, '.');
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007020 e2 = vim_strrchr(t2, '.');
Bram Moolenaar7756e742016-10-21 20:35:37 +02007021 if (e1 == NULL || e2 == NULL)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007022 continue;
7023 if (fnamecmp(e1, ".txt") != 0
7024 && fnamecmp(e1, fname + 4) != 0)
7025 {
7026 /* Not .txt and not .abx, remove it. */
Bram Moolenaard23a8232018-02-10 18:45:26 +01007027 VIM_CLEAR(fnames[i1]);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007028 continue;
7029 }
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007030 if (e1 - f1 != e2 - f2
7031 || fnamencmp(f1, f2, e1 - f1) != 0)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007032 continue;
7033 if (fnamecmp(e1, ".txt") == 0
7034 && fnamecmp(e2, fname + 4) == 0)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007035 /* use .abx instead of .txt */
Bram Moolenaard23a8232018-02-10 18:45:26 +01007036 VIM_CLEAR(fnames[i1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007039#endif
7040 for (fi = 0; fi < fcount; ++fi)
7041 {
7042 if (fnames[fi] == NULL)
7043 continue;
7044 fd = mch_fopen((char *)fnames[fi], "r");
7045 if (fd != NULL)
7046 {
7047 vim_fgets(IObuff, IOSIZE, fd);
7048 if (IObuff[0] == '*'
7049 && (s = vim_strchr(IObuff + 1, '*'))
7050 != NULL)
7051 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007052 int this_utf = MAYBE;
Bram Moolenaar13505972019-01-24 15:04:48 +01007053
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007054 /* Change tag definition to a
7055 * reference and remove <CR>/<NL>. */
7056 IObuff[0] = '|';
7057 *s = '|';
7058 while (*s != NUL)
7059 {
7060 if (*s == '\r' || *s == '\n')
7061 *s = NUL;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007062 /* The text is utf-8 when a byte
7063 * above 127 is found and no
7064 * illegal byte sequence is found.
7065 */
7066 if (*s >= 0x80 && this_utf != FALSE)
7067 {
7068 int l;
7069
7070 this_utf = TRUE;
7071 l = utf_ptr2len(s);
7072 if (l == 1)
7073 this_utf = FALSE;
7074 s += l - 1;
7075 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007076 ++s;
7077 }
Bram Moolenaar13505972019-01-24 15:04:48 +01007078
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007079 /* The help file is latin1 or utf-8;
7080 * conversion to the current
7081 * 'encoding' may be required. */
7082 vc.vc_type = CONV_NONE;
7083 convert_setup(&vc, (char_u *)(
7084 this_utf == TRUE ? "utf-8"
7085 : "latin1"), p_enc);
7086 if (vc.vc_type == CONV_NONE)
7087 /* No conversion needed. */
7088 cp = IObuff;
7089 else
7090 {
7091 /* Do the conversion. If it fails
7092 * use the unconverted text. */
7093 cp = string_convert(&vc, IObuff,
7094 NULL);
7095 if (cp == NULL)
7096 cp = IObuff;
7097 }
7098 convert_setup(&vc, NULL, NULL);
7099
7100 ml_append(lnum, cp, (colnr_T)0, FALSE);
7101 if (cp != IObuff)
7102 vim_free(cp);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007103 ++lnum;
7104 }
7105 fclose(fd);
7106 }
7107 }
7108 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007110 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007111 if (mustfree)
7112 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007113 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007114 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115 }
7116 }
7117}
7118
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007119/*
7120 * ":exusage"
7121 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007122 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007123ex_exusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007124{
7125 do_cmdline_cmd((char_u *)"help ex-cmd-index");
7126}
7127
7128/*
7129 * ":viusage"
7130 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007131 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007132ex_viusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007133{
7134 do_cmdline_cmd((char_u *)"help normal-index");
7135}
7136
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137/*
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007138 * Generate tags in one help directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007139 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007140 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007141helptags_one(
7142 char_u *dir, /* doc directory */
7143 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */
7144 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */
7145 int add_help_tags) /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007146{
7147 FILE *fd_tags;
7148 FILE *fd;
7149 garray_T ga;
7150 int filecount;
7151 char_u **files;
7152 char_u *p1, *p2;
7153 int fi;
7154 char_u *s;
7155 int i;
7156 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007157 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007158 int utf8 = MAYBE;
7159 int this_utf8;
7160 int firstline;
7161 int mix = FALSE; /* detected mixed encodings */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162
7163 /*
7164 * Find all *.txt files.
7165 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01007166 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007167 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007168 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007169 STRCAT(NameBuff, ext);
7170 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7171 EW_FILE|EW_SILENT) == FAIL
7172 || filecount == 0)
7173 {
7174 if (!got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007175 semsg(_("E151: No match: %s"), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007176 return;
7177 }
7178
7179 /*
7180 * Open the tags file for writing.
7181 * Do this before scanning through all the files.
7182 */
7183 STRCPY(NameBuff, dir);
7184 add_pathsep(NameBuff);
7185 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007186 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007187 if (fd_tags == NULL)
7188 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007189 semsg(_("E152: Cannot open %s for writing"), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007190 FreeWild(filecount, files);
7191 return;
7192 }
7193
7194 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007195 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
7196 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007197 */
7198 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007199 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
7200 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201 {
7202 if (ga_grow(&ga, 1) == FAIL)
7203 got_int = TRUE;
7204 else
7205 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007206 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 if (s == NULL)
7208 got_int = TRUE;
7209 else
7210 {
7211 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
7212 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7213 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007214 }
7215 }
7216 }
7217
7218 /*
7219 * Go over all the files and extract the tags.
7220 */
7221 for (fi = 0; fi < filecount && !got_int; ++fi)
7222 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007223 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007224 if (fd == NULL)
7225 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007226 semsg(_("E153: Unable to open %s for reading"), files[fi]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227 continue;
7228 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007229 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230
Bram Moolenaar071d4272004-06-13 20:20:40 +00007231 firstline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007232 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
7233 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234 if (firstline)
7235 {
7236 /* Detect utf-8 file by a non-ASCII char in the first line. */
7237 this_utf8 = MAYBE;
7238 for (s = IObuff; *s != NUL; ++s)
7239 if (*s >= 0x80)
7240 {
7241 int l;
7242
7243 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007244 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007245 if (l == 1)
7246 {
7247 /* Illegal UTF-8 byte sequence. */
7248 this_utf8 = FALSE;
7249 break;
7250 }
7251 s += l - 1;
7252 }
7253 if (this_utf8 == MAYBE) /* only ASCII characters found */
7254 this_utf8 = FALSE;
7255 if (utf8 == MAYBE) /* first file */
7256 utf8 = this_utf8;
7257 else if (utf8 != this_utf8)
7258 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007259 semsg(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260 mix = !got_int;
7261 got_int = TRUE;
7262 }
7263 firstline = FALSE;
7264 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
7266 while (p1 != NULL)
7267 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02007268 /* Use vim_strbyte() instead of vim_strchr() so that when
7269 * 'encoding' is dbcs it still works, don't find '*' in the
7270 * second byte. */
7271 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
7273 {
7274 for (s = p1 + 1; s < p2; ++s)
7275 if (*s == ' ' || *s == '\t' || *s == '|')
7276 break;
7277
7278 /*
7279 * Only accept a *tag* when it consists of valid
7280 * characters, there is white space before it and is
7281 * followed by a white character or end-of-line.
7282 */
7283 if (s == p2
7284 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
7285 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
7286 || s[1] == '\0'))
7287 {
7288 *p2 = '\0';
7289 ++p1;
7290 if (ga_grow(&ga, 1) == FAIL)
7291 {
7292 got_int = TRUE;
7293 break;
7294 }
7295 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
7296 if (s == NULL)
7297 {
7298 got_int = TRUE;
7299 break;
7300 }
7301 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7302 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007303 sprintf((char *)s, "%s\t%s", p1, fname);
7304
7305 /* find next '*' */
7306 p2 = vim_strchr(p2 + 1, '*');
7307 }
7308 }
7309 p1 = p2;
7310 }
7311 line_breakcheck();
7312 }
7313
7314 fclose(fd);
7315 }
7316
7317 FreeWild(filecount, files);
7318
7319 if (!got_int)
7320 {
7321 /*
7322 * Sort the tags.
7323 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02007324 if (ga.ga_data != NULL)
7325 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007326
7327 /*
7328 * Check for duplicates.
7329 */
7330 for (i = 1; i < ga.ga_len; ++i)
7331 {
7332 p1 = ((char_u **)ga.ga_data)[i - 1];
7333 p2 = ((char_u **)ga.ga_data)[i];
7334 while (*p1 == *p2)
7335 {
7336 if (*p2 == '\t')
7337 {
7338 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007339 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007340 _("E154: Duplicate tag \"%s\" in file %s/%s"),
7341 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007342 emsg((char *)NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007343 *p2 = '\t';
7344 break;
7345 }
7346 ++p1;
7347 ++p2;
7348 }
7349 }
7350
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351 if (utf8 == TRUE)
7352 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007353
7354 /*
7355 * Write the tags into the file.
7356 */
7357 for (i = 0; i < ga.ga_len; ++i)
7358 {
7359 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00007360 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007361 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00007362 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363 else
7364 {
7365 fprintf(fd_tags, "%s\t/*", s);
7366 for (p1 = s; *p1 != '\t'; ++p1)
7367 {
7368 /* insert backslash before '\\' and '/' */
7369 if (*p1 == '\\' || *p1 == '/')
7370 putc('\\', fd_tags);
7371 putc(*p1, fd_tags);
7372 }
7373 fprintf(fd_tags, "*\n");
7374 }
7375 }
7376 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007377 if (mix)
7378 got_int = FALSE; /* continue with other languages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007379
7380 for (i = 0; i < ga.ga_len; ++i)
7381 vim_free(((char_u **)ga.ga_data)[i]);
7382 ga_clear(&ga);
7383 fclose(fd_tags); /* there is no check for an error... */
7384}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007385
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007386/*
7387 * Generate tags in one help directory, taking care of translations.
7388 */
7389 static void
7390do_helptags(char_u *dirname, int add_help_tags)
7391{
7392#ifdef FEAT_MULTI_LANG
7393 int len;
7394 int i, j;
7395 garray_T ga;
7396 char_u lang[2];
7397 char_u ext[5];
7398 char_u fname[8];
7399 int filecount;
7400 char_u **files;
7401
7402 /* Get a list of all files in the help directory and in subdirectories. */
7403 STRCPY(NameBuff, dirname);
7404 add_pathsep(NameBuff);
7405 STRCAT(NameBuff, "**");
7406 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7407 EW_FILE|EW_SILENT) == FAIL
7408 || filecount == 0)
7409 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007410 semsg(_("E151: No match: %s"), NameBuff);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007411 return;
7412 }
7413
7414 /* Go over all files in the directory to find out what languages are
7415 * present. */
7416 ga_init2(&ga, 1, 10);
7417 for (i = 0; i < filecount; ++i)
7418 {
7419 len = (int)STRLEN(files[i]);
7420 if (len > 4)
7421 {
7422 if (STRICMP(files[i] + len - 4, ".txt") == 0)
7423 {
7424 /* ".txt" -> language "en" */
7425 lang[0] = 'e';
7426 lang[1] = 'n';
7427 }
7428 else if (files[i][len - 4] == '.'
7429 && ASCII_ISALPHA(files[i][len - 3])
7430 && ASCII_ISALPHA(files[i][len - 2])
7431 && TOLOWER_ASC(files[i][len - 1]) == 'x')
7432 {
7433 /* ".abx" -> language "ab" */
7434 lang[0] = TOLOWER_ASC(files[i][len - 3]);
7435 lang[1] = TOLOWER_ASC(files[i][len - 2]);
7436 }
7437 else
7438 continue;
7439
7440 /* Did we find this language already? */
7441 for (j = 0; j < ga.ga_len; j += 2)
7442 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
7443 break;
7444 if (j == ga.ga_len)
7445 {
7446 /* New language, add it. */
7447 if (ga_grow(&ga, 2) == FAIL)
7448 break;
7449 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
7450 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
7451 }
7452 }
7453 }
7454
7455 /*
7456 * Loop over the found languages to generate a tags file for each one.
7457 */
7458 for (j = 0; j < ga.ga_len; j += 2)
7459 {
7460 STRCPY(fname, "tags-xx");
7461 fname[5] = ((char_u *)ga.ga_data)[j];
7462 fname[6] = ((char_u *)ga.ga_data)[j + 1];
7463 if (fname[5] == 'e' && fname[6] == 'n')
7464 {
7465 /* English is an exception: use ".txt" and "tags". */
7466 fname[4] = NUL;
7467 STRCPY(ext, ".txt");
7468 }
7469 else
7470 {
7471 /* Language "ab" uses ".abx" and "tags-ab". */
7472 STRCPY(ext, ".xxx");
7473 ext[1] = fname[5];
7474 ext[2] = fname[6];
7475 }
7476 helptags_one(dirname, ext, fname, add_help_tags);
7477 }
7478
7479 ga_clear(&ga);
7480 FreeWild(filecount, files);
7481
7482#else
7483 /* No language support, just use "*.txt" and "tags". */
7484 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
7485#endif
7486}
7487
7488 static void
7489helptags_cb(char_u *fname, void *cookie)
7490{
7491 do_helptags(fname, *(int *)cookie);
7492}
7493
7494/*
7495 * ":helptags"
7496 */
7497 void
7498ex_helptags(exarg_T *eap)
7499{
7500 expand_T xpc;
7501 char_u *dirname;
7502 int add_help_tags = FALSE;
7503
7504 /* Check for ":helptags ++t {dir}". */
Bram Moolenaar1c465442017-03-12 20:10:05 +01007505 if (STRNCMP(eap->arg, "++t", 3) == 0 && VIM_ISWHITE(eap->arg[3]))
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007506 {
7507 add_help_tags = TRUE;
7508 eap->arg = skipwhite(eap->arg + 3);
7509 }
7510
7511 if (STRCMP(eap->arg, "ALL") == 0)
7512 {
7513 do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR,
7514 helptags_cb, &add_help_tags);
7515 }
7516 else
7517 {
7518 ExpandInit(&xpc);
7519 xpc.xp_context = EXPAND_DIRECTORIES;
7520 dirname = ExpandOne(&xpc, eap->arg, NULL,
7521 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
7522 if (dirname == NULL || !mch_isdir(dirname))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007523 semsg(_("E150: Not a directory: %s"), eap->arg);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007524 else
7525 do_helptags(dirname, add_help_tags);
7526 vim_free(dirname);
7527 }
7528}
7529
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007530/*
7531 * Make the user happy.
7532 */
7533 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007534ex_smile(exarg_T *eap UNUSED)
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007535{
Bram Moolenaar700eefe2016-04-13 21:14:37 +02007536 static char *code[] = {
7537 "\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$",
7538 "\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"
7539 };
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007540 char *p;
7541 int n;
Bram Moolenaar700eefe2016-04-13 21:14:37 +02007542 int i;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007543
7544 msg_start();
7545 msg_putchar('\n');
Bram Moolenaar700eefe2016-04-13 21:14:37 +02007546 for (i = 0; i < 2; ++i)
7547 for (p = code[i]; *p != NUL; ++p)
7548 if (*p == 'x')
7549 msg_putchar('\n');
7550 else
7551 for (n = *p++; n > 0; --n)
7552 if (*p == 'o' || *p == '$')
Bram Moolenaar8820b482017-03-16 17:23:31 +01007553 msg_putchar_attr(*p, HL_ATTR(HLF_L));
Bram Moolenaar700eefe2016-04-13 21:14:37 +02007554 else
7555 msg_putchar(*p);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007556 msg_clr_eos();
7557}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558
Bram Moolenaar071d4272004-06-13 20:20:40 +00007559/*
7560 * ":drop"
7561 * Opens the first argument in a window. When there are two or more arguments
7562 * the argument list is redefined.
7563 */
7564 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007565ex_drop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007566{
7567 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007568 win_T *wp;
7569 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007570 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007571
7572 /*
7573 * Check if the first argument is already being edited in a window. If
7574 * so, jump to that window.
7575 * We would actually need to check all arguments, but that's complicated
7576 * and mostly only one file is dropped.
7577 * This also ignores wildcards, since it is very unlikely the user is
7578 * editing a file name with a wildcard character.
7579 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007580 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007581
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00007582 /*
7583 * Expanding wildcards may result in an empty argument list. E.g. when
7584 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
7585 * already did an error message for this.
7586 */
7587 if (ARGCOUNT == 0)
7588 return;
7589
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007590 if (cmdmod.tab)
7591 {
7592 /* ":tab drop file ...": open a tab for each argument that isn't
7593 * edited in a window yet. It's like ":tab all" but without closing
7594 * windows or tabs. */
7595 ex_all(eap);
7596 }
7597 else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007598 {
7599 /* ":drop file ...": Edit the first argument. Jump to an existing
7600 * window if possible, edit in current window if the current buffer
7601 * can be abandoned, otherwise open a new window. */
7602 buf = buflist_findnr(ARGLIST[0].ae_fnum);
7603
7604 FOR_ALL_TAB_WINDOWS(tp, wp)
7605 {
7606 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007607 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00007608 goto_tabpage_win(tp, wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007609 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007610 return;
7611 }
7612 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007613
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007614 /*
7615 * Check whether the current buffer is changed. If so, we will need
7616 * to split the current window or data could be lost.
7617 * Skip the check if the 'hidden' option is set, as in this case the
7618 * buffer won't be lost.
7619 */
Bram Moolenaareb44a682017-08-03 22:44:55 +02007620 if (!buf_hide(curbuf))
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007621 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007622 ++emsg_off;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007623 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007624 --emsg_off;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007626
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007627 /* Fake a ":sfirst" or ":first" command edit the first argument. */
7628 if (split)
7629 {
7630 eap->cmdidx = CMD_sfirst;
7631 eap->cmd[0] = 's';
7632 }
7633 else
7634 eap->cmdidx = CMD_first;
7635 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007636 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637}
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007638
Bram Moolenaar9baf2972016-08-21 22:39:35 +02007639/*
7640 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
7641 * Put the start of the pattern in "*s", unless "s" is NULL.
7642 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
7643 * If "s" is not NULL terminate the pattern with a NUL.
7644 * Return a pointer to the char just past the pattern plus flags.
7645 */
7646 char_u *
7647skip_vimgrep_pat(char_u *p, char_u **s, int *flags)
7648{
7649 int c;
7650
7651 if (vim_isIDc(*p))
7652 {
7653 /* ":vimgrep pattern fname" */
7654 if (s != NULL)
7655 *s = p;
7656 p = skiptowhite(p);
7657 if (s != NULL && *p != NUL)
7658 *p++ = NUL;
7659 }
7660 else
7661 {
7662 /* ":vimgrep /pattern/[g][j] fname" */
7663 if (s != NULL)
7664 *s = p + 1;
7665 c = *p;
7666 p = skip_regexp(p + 1, c, TRUE, NULL);
7667 if (*p != c)
7668 return NULL;
7669
7670 /* Truncate the pattern. */
7671 if (s != NULL)
7672 *p = NUL;
7673 ++p;
7674
7675 /* Find the flags */
7676 while (*p == 'g' || *p == 'j')
7677 {
7678 if (flags != NULL)
7679 {
7680 if (*p == 'g')
7681 *flags |= VGR_GLOBAL;
7682 else
7683 *flags |= VGR_NOJUMP;
7684 }
7685 ++p;
7686 }
7687 }
7688 return p;
7689}
Bram Moolenaar9baf2972016-08-21 22:39:35 +02007690
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007691#if defined(FEAT_EVAL) || defined(PROTO)
7692/*
7693 * List v:oldfiles in a nice way.
7694 */
7695 void
7696ex_oldfiles(exarg_T *eap UNUSED)
7697{
7698 list_T *l = get_vim_var_list(VV_OLDFILES);
7699 listitem_T *li;
7700 int nr = 0;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007701 char_u *fname;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007702
7703 if (l == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007704 msg(_("No old files"));
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007705 else
7706 {
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007707 msg_start();
7708 msg_scroll = TRUE;
7709 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
7710 {
7711 ++nr;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007712 fname = tv_get_string(&li->li_tv);
Bram Moolenaard6f2ee32016-08-24 00:30:52 +02007713 if (!message_filtered(fname))
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007714 {
7715 msg_outnum((long)nr);
Bram Moolenaar32526b32019-01-19 17:43:09 +01007716 msg_puts(": ");
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007717 msg_outtrans(fname);
Bram Moolenaar885c00e2016-08-28 17:08:17 +02007718 msg_clr_eos();
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007719 msg_putchar('\n');
7720 out_flush(); /* output one line at a time */
7721 ui_breakcheck();
7722 }
7723 }
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007724
7725 /* Assume "got_int" was set to truncate the listing. */
7726 got_int = FALSE;
7727
7728# ifdef FEAT_BROWSE_CMD
7729 if (cmdmod.browse)
7730 {
7731 quit_more = FALSE;
7732 nr = prompt_for_number(FALSE);
7733 msg_starthere();
7734 if (nr > 0)
7735 {
7736 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
7737 (long)nr);
7738
7739 if (p != NULL)
7740 {
7741 p = expand_env_save(p);
7742 eap->arg = p;
7743 eap->cmdidx = CMD_edit;
7744 cmdmod.browse = FALSE;
7745 do_exedit(eap, NULL);
7746 vim_free(p);
7747 }
7748 }
7749 }
7750# endif
7751 }
7752}
7753#endif