blob: 25322c2bd8a4e96a532c52ca87883ae1688eb41c [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 Moolenaar071d4272004-06-13 20:20:40 +000053#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +000054 int cc[MAX_MCO];
55 int ci = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000056 int len;
57
58 if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000059 c = utfc_ptr2char(ml_get_cursor(), cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000060 else
61#endif
62 c = gchar_cursor();
63 if (c == NUL)
64 {
65 MSG("NUL");
66 return;
67 }
68
69#ifdef FEAT_MBYTE
70 IObuff[0] = NUL;
71 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80)
72#endif
73 {
74 if (c == NL) /* NUL is stored as NL */
75 c = NUL;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000076 if (c == CAR && get_fileformat(curbuf) == EOL_MAC)
77 cval = NL; /* NL is stored as CR */
78 else
79 cval = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000080 if (vim_isprintc_strict(c) && (c < ' '
81#ifndef EBCDIC
82 || c > '~'
83#endif
84 ))
85 {
86 transchar_nonprint(buf3, c);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000087 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000088 }
89 else
90 buf1[0] = NUL;
91#ifndef EBCDIC
92 if (c >= 0x80)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000093 vim_snprintf(buf2, sizeof(buf2), " <M-%s>",
94 (char *)transchar(c & 0x7f));
Bram Moolenaar071d4272004-06-13 20:20:40 +000095 else
96#endif
97 buf2[0] = NUL;
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010098#ifdef FEAT_DIGRAPHS
99 dig = get_digraph_for_char(cval);
100 if (dig != NULL)
101 vim_snprintf((char *)IObuff, IOSIZE,
102 _("<%s>%s%s %d, Hex %02x, Oct %03o, Digr %s"),
103 transchar(c), buf1, buf2, cval, cval, cval, dig);
104 else
105#endif
106 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar555b2802005-05-19 21:08:39 +0000107 _("<%s>%s%s %d, Hex %02x, Octal %03o"),
Bram Moolenaar1418a0d2009-01-13 15:58:01 +0000108 transchar(c), buf1, buf2, cval, cval, cval);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109#ifdef FEAT_MBYTE
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000110 if (enc_utf8)
111 c = cc[ci++];
112 else
113 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114#endif
115 }
116
117#ifdef FEAT_MBYTE
118 /* Repeat for combining characters. */
119 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80)))
120 {
121 len = (int)STRLEN(IObuff);
122 /* This assumes every multi-byte char is printable... */
123 if (len > 0)
124 IObuff[len++] = ' ';
125 IObuff[len++] = '<';
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000126 if (enc_utf8 && utf_iscomposing(c)
Bram Moolenaar4770d092006-01-12 23:22:24 +0000127# ifdef USE_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128 && !gui.in_use
Bram Moolenaar4770d092006-01-12 23:22:24 +0000129# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 )
131 IObuff[len++] = ' '; /* draw composing char on top of a space */
Bram Moolenaar555b2802005-05-19 21:08:39 +0000132 len += (*mb_char2bytes)(c, IObuff + len);
Bram Moolenaar5f73ef82018-02-27 21:09:30 +0100133#ifdef FEAT_DIGRAPHS
134 dig = get_digraph_for_char(c);
135 if (dig != NULL)
136 vim_snprintf((char *)IObuff + len, IOSIZE - len,
137 c < 0x10000 ? _("> %d, Hex %04x, Oct %o, Digr %s")
138 : _("> %d, Hex %08x, Oct %o, Digr %s"),
139 c, c, c, dig);
140 else
141#endif
142 vim_snprintf((char *)IObuff + len, IOSIZE - len,
143 c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
144 : _("> %d, Hex %08x, Octal %o"),
145 c, c, c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000146 if (ci == MAX_MCO)
147 break;
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000148 if (enc_utf8)
149 c = cc[ci++];
150 else
151 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 }
153#endif
154
155 msg(IObuff);
156}
157
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158/*
159 * ":left", ":center" and ":right": align text.
160 */
161 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100162ex_align(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163{
164 pos_T save_curpos;
165 int len;
166 int indent = 0;
167 int new_indent;
168 int has_tab;
169 int width;
170
171#ifdef FEAT_RIGHTLEFT
172 if (curwin->w_p_rl)
173 {
174 /* switch left and right aligning */
175 if (eap->cmdidx == CMD_right)
176 eap->cmdidx = CMD_left;
177 else if (eap->cmdidx == CMD_left)
178 eap->cmdidx = CMD_right;
179 }
180#endif
181
182 width = atoi((char *)eap->arg);
183 save_curpos = curwin->w_cursor;
184 if (eap->cmdidx == CMD_left) /* width is used for new indent */
185 {
186 if (width >= 0)
187 indent = width;
188 }
189 else
190 {
191 /*
192 * if 'textwidth' set, use it
193 * else if 'wrapmargin' set, use it
194 * if invalid value, use 80
195 */
196 if (width <= 0)
197 width = curbuf->b_p_tw;
198 if (width == 0 && curbuf->b_p_wm > 0)
Bram Moolenaar02631462017-09-22 15:20:32 +0200199 width = curwin->w_width - curbuf->b_p_wm;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200 if (width <= 0)
201 width = 80;
202 }
203
204 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
205 return;
206
207 for (curwin->w_cursor.lnum = eap->line1;
208 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum)
209 {
210 if (eap->cmdidx == CMD_left) /* left align */
211 new_indent = indent;
212 else
213 {
Bram Moolenaar89d40322006-08-29 15:30:07 +0000214 has_tab = FALSE; /* avoid uninit warnings */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 len = linelen(eap->cmdidx == CMD_right ? &has_tab
216 : NULL) - get_indent();
217
218 if (len <= 0) /* skip blank lines */
219 continue;
220
221 if (eap->cmdidx == CMD_center)
222 new_indent = (width - len) / 2;
223 else
224 {
225 new_indent = width - len; /* right align */
226
227 /*
228 * Make sure that embedded TABs don't make the text go too far
229 * to the right.
230 */
231 if (has_tab)
232 while (new_indent > 0)
233 {
234 (void)set_indent(new_indent, 0);
235 if (linelen(NULL) <= width)
236 {
237 /*
238 * Now try to move the line as much as possible to
239 * the right. Stop when it moves too far.
240 */
241 do
242 (void)set_indent(++new_indent, 0);
243 while (linelen(NULL) <= width);
244 --new_indent;
245 break;
246 }
247 --new_indent;
248 }
249 }
250 }
251 if (new_indent < 0)
252 new_indent = 0;
253 (void)set_indent(new_indent, 0); /* set indent */
254 }
255 changed_lines(eap->line1, 0, eap->line2 + 1, 0L);
256 curwin->w_cursor = save_curpos;
257 beginline(BL_WHITE | BL_FIX);
258}
259
260/*
261 * Get the length of the current line, excluding trailing white space.
262 */
263 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100264linelen(int *has_tab)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265{
266 char_u *line;
267 char_u *first;
268 char_u *last;
269 int save;
270 int len;
271
272 /* find the first non-blank character */
273 line = ml_get_curline();
274 first = skipwhite(line);
275
276 /* find the character after the last non-blank character */
277 for (last = first + STRLEN(first);
Bram Moolenaar1c465442017-03-12 20:10:05 +0100278 last > first && VIM_ISWHITE(last[-1]); --last)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 ;
280 save = *last;
281 *last = NUL;
282 len = linetabsize(line); /* get line length */
283 if (has_tab != NULL) /* check for embedded TAB */
Bram Moolenaarb31a3ac2018-08-11 14:41:55 +0200284 *has_tab = (vim_strchr(first, TAB) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285 *last = save;
286
287 return len;
288}
289
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000290/* Buffer for two lines used during sorting. They are allocated to
291 * contain the longest line being sorted. */
292static char_u *sortbuf1;
293static char_u *sortbuf2;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000294
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100295static int sort_ic; /* ignore case */
296static int sort_nr; /* sort on number */
297static int sort_rx; /* sort on regex instead of skipping it */
298#ifdef FEAT_FLOAT
299static int sort_flt; /* sort on floating number */
300#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000301
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100302static int sort_abort; /* flag to indicate if sorting has been interrupted */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000303
304/* Struct to store info to be sorted. */
305typedef struct
306{
307 linenr_T lnum; /* line number */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100308 union {
309 struct
310 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +0200311 varnumber_T start_col_nr; /* starting column number */
312 varnumber_T end_col_nr; /* ending column number */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100313 } line;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +0200314 varnumber_T value; /* value if sorting by integer */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100315#ifdef FEAT_FLOAT
316 float_T value_flt; /* value if sorting by float */
317#endif
318 } st_u;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000319} sorti_T;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000320
321static int
322#ifdef __BORLANDC__
323_RTLENTRYF
324#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100325sort_compare(const void *s1, const void *s2);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000326
327 static int
328#ifdef __BORLANDC__
329_RTLENTRYF
330#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100331sort_compare(const void *s1, const void *s2)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000332{
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000333 sorti_T l1 = *(sorti_T *)s1;
334 sorti_T l2 = *(sorti_T *)s2;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000335 int result = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000336
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000337 /* If the user interrupts, there's no way to stop qsort() immediately, but
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000338 * if we return 0 every time, qsort will assume it's done sorting and
339 * exit. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000340 if (sort_abort)
341 return 0;
342 fast_breakcheck();
343 if (got_int)
344 sort_abort = TRUE;
345
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000346 /* When sorting numbers "start_col_nr" is the number, not the column
347 * number. */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000348 if (sort_nr)
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100349 result = l1.st_u.value == l2.st_u.value ? 0
350 : l1.st_u.value > l2.st_u.value ? 1 : -1;
351#ifdef FEAT_FLOAT
352 else if (sort_flt)
353 result = l1.st_u.value_flt == l2.st_u.value_flt ? 0
354 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1;
355#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000356 else
357 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000358 /* We need to copy one line into "sortbuf1", because there is no
359 * guarantee that the first pointer becomes invalid when obtaining the
360 * second one. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100361 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.st_u.line.start_col_nr,
362 l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr + 1);
363 sortbuf1[l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr] = 0;
364 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.st_u.line.start_col_nr,
365 l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr + 1);
366 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000367
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000368 result = sort_ic ? STRICMP(sortbuf1, sortbuf2)
369 : STRCMP(sortbuf1, sortbuf2);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000370 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000371
372 /* If two lines have the same value, preserve the original line order. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000373 if (result == 0)
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000374 return (int)(l1.lnum - l2.lnum);
375 return result;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000376}
377
378/*
379 * ":sort".
380 */
381 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100382ex_sort(exarg_T *eap)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000383{
384 regmatch_T regmatch;
385 int len;
386 linenr_T lnum;
387 long maxlen = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000388 sorti_T *nrs;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000389 size_t count = (size_t)(eap->line2 - eap->line1 + 1);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000390 size_t i;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000391 char_u *p;
392 char_u *s;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000393 char_u *s2;
394 char_u c; /* temporary character storage */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000395 int unique = FALSE;
396 long deleted;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000397 colnr_T start_col;
398 colnr_T end_col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100399 int sort_what = 0;
400 int format_found = 0;
Bram Moolenaardc9e9552018-06-28 11:28:08 +0200401 int change_occurred = FALSE; // Buffer contents changed.
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000402
Bram Moolenaar48c99162008-02-18 18:42:52 +0000403 /* Sorting one line is really quick! */
404 if (count <= 1)
405 return;
406
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000407 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
408 return;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000409 sortbuf1 = NULL;
410 sortbuf2 = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000411 regmatch.regprog = NULL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000412 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000413 if (nrs == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000414 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000415
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100416 sort_abort = sort_ic = sort_rx = sort_nr = 0;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100417#ifdef FEAT_FLOAT
418 sort_flt = 0;
419#endif
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000420
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000421 for (p = eap->arg; *p != NUL; ++p)
422 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100423 if (VIM_ISWHITE(*p))
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000424 ;
425 else if (*p == 'i')
426 sort_ic = TRUE;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000427 else if (*p == 'r')
428 sort_rx = TRUE;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000429 else if (*p == 'n')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100430 {
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100431 sort_nr = 1;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100432 ++format_found;
433 }
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100434#ifdef FEAT_FLOAT
435 else if (*p == 'f')
436 {
437 sort_flt = 1;
438 ++format_found;
439 }
440#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100441 else if (*p == 'b')
442 {
443 sort_what = STR2NR_BIN + STR2NR_FORCE;
444 ++format_found;
445 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000446 else if (*p == 'o')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100447 {
448 sort_what = STR2NR_OCT + STR2NR_FORCE;
449 ++format_found;
450 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000451 else if (*p == 'x')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100452 {
453 sort_what = STR2NR_HEX + STR2NR_FORCE;
454 ++format_found;
455 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000456 else if (*p == 'u')
457 unique = TRUE;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000458 else if (*p == '"') /* comment start */
459 break;
460 else if (check_nextcmd(p) != NULL)
461 {
462 eap->nextcmd = check_nextcmd(p);
463 break;
464 }
465 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000466 {
467 s = skip_regexp(p + 1, *p, TRUE, NULL);
468 if (*s != *p)
469 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100470 emsg(_(e_invalpat));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000471 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000472 }
473 *s = NUL;
Bram Moolenaar1256e722007-07-10 15:26:20 +0000474 /* Use last search pattern if sort pattern is empty. */
Bram Moolenaar210f3702013-03-07 16:41:30 +0100475 if (s == p + 1)
476 {
477 if (last_search_pat() == NULL)
478 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100479 emsg(_(e_noprevre));
Bram Moolenaar210f3702013-03-07 16:41:30 +0100480 goto sortend;
481 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000482 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
Bram Moolenaar210f3702013-03-07 16:41:30 +0100483 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000484 else
485 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000486 if (regmatch.regprog == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000487 goto sortend;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000488 p = s; /* continue after the regexp */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000489 regmatch.rm_ic = p_ic;
490 }
491 else
492 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100493 semsg(_(e_invarg2), p);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000494 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000495 }
496 }
497
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100498 /* Can only have one of 'n', 'b', 'o' and 'x'. */
499 if (format_found > 1)
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000500 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100501 emsg(_(e_invarg));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000502 goto sortend;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000503 }
504
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100505 /* From here on "sort_nr" is used as a flag for any integer number
506 * sorting. */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100507 sort_nr += sort_what;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000508
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000509 /*
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000510 * Make an array with all line numbers. This avoids having to copy all
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000511 * the lines into allocated memory.
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000512 * When sorting on strings "start_col_nr" is the offset in the line, for
513 * numbers sorting it's the number to sort on. This means the pattern
514 * matching and number conversion only has to be done once per line.
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000515 * Also get the longest line length for allocating "sortbuf".
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000516 */
517 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
518 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000519 s = ml_get(lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000520 len = (int)STRLEN(s);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000521 if (maxlen < len)
522 maxlen = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000523
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000524 start_col = 0;
525 end_col = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000526 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0))
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000527 {
528 if (sort_rx)
529 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000530 start_col = (colnr_T)(regmatch.startp[0] - s);
531 end_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000532 }
533 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000534 start_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000535 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000536 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000537 if (regmatch.regprog != NULL)
538 end_col = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000539
Bram Moolenaar937204a2016-01-30 23:37:38 +0100540 if (sort_nr
541#ifdef FEAT_FLOAT
542 || sort_flt
543#endif
544 )
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000545 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000546 /* Make sure vim_str2nr doesn't read any digits past the end
547 * of the match, by temporarily terminating the string there */
548 s2 = s + end_col;
549 c = *s2;
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200550 *s2 = NUL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000551 /* Sorting on number: Store the number itself. */
Bram Moolenaar1387a602008-07-24 19:31:11 +0000552 p = s + start_col;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100553 if (sort_nr)
554 {
555 if (sort_what & STR2NR_HEX)
556 s = skiptohex(p);
557 else if (sort_what & STR2NR_BIN)
558 s = skiptobin(p);
559 else
560 s = skiptodigit(p);
561 if (s > p && s[-1] == '-')
562 --s; /* include preceding negative sign */
563 if (*s == NUL)
564 /* empty line should sort before any number */
565 nrs[lnum - eap->line1].st_u.value = -MAXLNUM;
566 else
567 vim_str2nr(s, NULL, NULL, sort_what,
568 &nrs[lnum - eap->line1].st_u.value, NULL, 0);
569 }
570#ifdef FEAT_FLOAT
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000571 else
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100572 {
573 s = skipwhite(p);
574 if (*s == '+')
575 s = skipwhite(s + 1);
576
577 if (*s == NUL)
578 /* empty line should sort before any number */
579 nrs[lnum - eap->line1].st_u.value_flt = -DBL_MAX;
580 else
581 nrs[lnum - eap->line1].st_u.value_flt =
582 strtod((char *)s, NULL);
583 }
584#endif
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200585 *s2 = c;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000586 }
587 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000588 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000589 /* Store the column to sort at. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100590 nrs[lnum - eap->line1].st_u.line.start_col_nr = start_col;
591 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000592 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000593
594 nrs[lnum - eap->line1].lnum = lnum;
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000595
596 if (regmatch.regprog != NULL)
597 fast_breakcheck();
598 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000599 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000600 }
601
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000602 /* Allocate a buffer that can hold the longest line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000603 sortbuf1 = alloc((unsigned)maxlen + 1);
604 if (sortbuf1 == NULL)
605 goto sortend;
606 sortbuf2 = alloc((unsigned)maxlen + 1);
607 if (sortbuf2 == NULL)
608 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000609
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000610 /* Sort the array of line numbers. Note: can't be interrupted! */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000611 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000612
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000613 if (sort_abort)
614 goto sortend;
615
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000616 /* Insert the lines in the sorted order below the last one. */
617 lnum = eap->line2;
618 for (i = 0; i < count; ++i)
619 {
Bram Moolenaardc9e9552018-06-28 11:28:08 +0200620 linenr_T get_lnum = nrs[eap->forceit ? count - i - 1 : i].lnum;
621
622 // If the original line number of the line being placed is not the same
623 // as "lnum" (accounting for offset), we know that the buffer changed.
624 if (get_lnum + ((linenr_T)count - 1) != lnum)
625 change_occurred = TRUE;
626
627 s = ml_get(get_lnum);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000628 if (!unique || i == 0
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000629 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000630 {
Bram Moolenaardc9e9552018-06-28 11:28:08 +0200631 // Copy the line into a buffer, it may become invalid in
632 // ml_append(). And it's needed for "unique".
Bram Moolenaar75e3ad02015-12-17 15:07:32 +0100633 STRCPY(sortbuf1, s);
634 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000635 break;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000636 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000637 fast_breakcheck();
638 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000639 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000640 }
641
642 /* delete the original lines if appending worked */
643 if (i == count)
644 for (i = 0; i < count; ++i)
645 ml_delete(eap->line1, FALSE);
646 else
647 count = 0;
648
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000649 /* Adjust marks for deleted (or added) lines and prepare for displaying. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000650 deleted = (long)(count - (lnum - eap->line2));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000651 if (deleted > 0)
Bram Moolenaarb0e982b2018-09-21 12:46:22 +0200652 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000653 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
Bram Moolenaarb0e982b2018-09-21 12:46:22 +0200654 msgmore(-deleted);
655 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000656 else if (deleted < 0)
657 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
Bram Moolenaardc9e9552018-06-28 11:28:08 +0200658
659 if (change_occurred || deleted != 0)
660 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000661
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000662 curwin->w_cursor.lnum = eap->line1;
663 beginline(BL_WHITE | BL_FIX);
664
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000665sortend:
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000666 vim_free(nrs);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000667 vim_free(sortbuf1);
668 vim_free(sortbuf2);
Bram Moolenaar473de612013-06-08 18:19:48 +0200669 vim_regfree(regmatch.regprog);
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000670 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100671 emsg(_(e_interr));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000672}
673
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674/*
675 * ":retab".
676 */
677 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100678ex_retab(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679{
680 linenr_T lnum;
681 int got_tab = FALSE;
682 long num_spaces = 0;
683 long num_tabs;
684 long len;
685 long col;
686 long vcol;
687 long start_col = 0; /* For start of white-space string */
688 long start_vcol = 0; /* For start of white-space string */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 long old_len;
690 char_u *ptr;
691 char_u *new_line = (char_u *)1; /* init to non-NULL */
692 int did_undo; /* called u_save for current line */
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200693#ifdef FEAT_VARTABS
Bram Moolenaar0119a592018-06-24 23:53:28 +0200694 int *new_vts_array = NULL;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200695 char_u *new_ts_str; /* string value of tab argument */
696#else
697 int temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 int new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200699#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 int save_list;
701 linenr_T first_line = 0; /* first changed line */
702 linenr_T last_line = 0; /* last changed line */
703
704 save_list = curwin->w_p_list;
705 curwin->w_p_list = 0; /* don't want list mode here */
706
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200707#ifdef FEAT_VARTABS
708 new_ts_str = eap->arg;
Bram Moolenaar0119a592018-06-24 23:53:28 +0200709 if (!tabstop_set(eap->arg, &new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200710 return;
711 while (vim_isdigit(*(eap->arg)) || *(eap->arg) == ',')
712 ++(eap->arg);
713
Bram Moolenaar0119a592018-06-24 23:53:28 +0200714 // This ensures that either new_vts_array and new_ts_str are freshly
715 // allocated, or new_vts_array points to an existing array and new_ts_str
716 // is null.
717 if (new_vts_array == NULL)
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200718 {
Bram Moolenaar0119a592018-06-24 23:53:28 +0200719 new_vts_array = curbuf->b_p_vts_array;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200720 new_ts_str = NULL;
721 }
722 else
723 new_ts_str = vim_strnsave(new_ts_str, eap->arg - new_ts_str);
724#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 new_ts = getdigits(&(eap->arg));
726 if (new_ts < 0)
727 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100728 emsg(_(e_positive));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 return;
730 }
731 if (new_ts == 0)
732 new_ts = curbuf->b_p_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200733#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
735 {
736 ptr = ml_get(lnum);
737 col = 0;
738 vcol = 0;
739 did_undo = FALSE;
740 for (;;)
741 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100742 if (VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 {
744 if (!got_tab && num_spaces == 0)
745 {
746 /* First consecutive white-space */
747 start_vcol = vcol;
748 start_col = col;
749 }
750 if (ptr[col] == ' ')
751 num_spaces++;
752 else
753 got_tab = TRUE;
754 }
755 else
756 {
757 if (got_tab || (eap->forceit && num_spaces > 1))
758 {
759 /* Retabulate this string of white-space */
760
761 /* len is virtual length of white string */
762 len = num_spaces = vcol - start_vcol;
763 num_tabs = 0;
764 if (!curbuf->b_p_et)
765 {
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200766#ifdef FEAT_VARTABS
767 int t, s;
768
769 tabstop_fromto(start_vcol, vcol,
Bram Moolenaar0119a592018-06-24 23:53:28 +0200770 curbuf->b_p_ts, new_vts_array, &t, &s);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200771 num_tabs = t;
772 num_spaces = s;
773#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 temp = new_ts - (start_vcol % new_ts);
775 if (num_spaces >= temp)
776 {
777 num_spaces -= temp;
778 num_tabs++;
779 }
780 num_tabs += num_spaces / new_ts;
781 num_spaces -= (num_spaces / new_ts) * new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 }
784 if (curbuf->b_p_et || got_tab ||
785 (num_spaces + num_tabs < len))
786 {
787 if (did_undo == FALSE)
788 {
789 did_undo = TRUE;
790 if (u_save((linenr_T)(lnum - 1),
791 (linenr_T)(lnum + 1)) == FAIL)
792 {
793 new_line = NULL; /* flag out-of-memory */
794 break;
795 }
796 }
797
798 /* len is actual number of white characters used */
799 len = num_spaces + num_tabs;
800 old_len = (long)STRLEN(ptr);
801 new_line = lalloc(old_len - col + start_col + len + 1,
802 TRUE);
803 if (new_line == NULL)
804 break;
805 if (start_col > 0)
806 mch_memmove(new_line, ptr, (size_t)start_col);
807 mch_memmove(new_line + start_col + len,
808 ptr + col, (size_t)(old_len - col + 1));
809 ptr = new_line + start_col;
810 for (col = 0; col < len; col++)
811 ptr[col] = (col < num_tabs) ? '\t' : ' ';
812 ml_replace(lnum, new_line, FALSE);
813 if (first_line == 0)
814 first_line = lnum;
815 last_line = lnum;
816 ptr = new_line;
817 col = start_col + len;
818 }
819 }
820 got_tab = FALSE;
821 num_spaces = 0;
822 }
823 if (ptr[col] == NUL)
824 break;
825 vcol += chartabsize(ptr + col, (colnr_T)vcol);
826#ifdef FEAT_MBYTE
827 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000828 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 else
830#endif
831 ++col;
832 }
833 if (new_line == NULL) /* out of memory */
834 break;
835 line_breakcheck();
836 }
837 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100838 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200840#ifdef FEAT_VARTABS
841 // If a single value was given then it can be considered equal to
842 // either the value of 'tabstop' or the value of 'vartabstop'.
843 if (tabstop_count(curbuf->b_p_vts_array) == 0
Bram Moolenaar0119a592018-06-24 23:53:28 +0200844 && tabstop_count(new_vts_array) == 1
845 && curbuf->b_p_ts == tabstop_first(new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200846 ; /* not changed */
847 else if (tabstop_count(curbuf->b_p_vts_array) > 0
Bram Moolenaar0119a592018-06-24 23:53:28 +0200848 && tabstop_eq(curbuf->b_p_vts_array, new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200849 ; /* not changed */
850 else
851 redraw_curbuf_later(NOT_VALID);
852#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 if (curbuf->b_p_ts != new_ts)
854 redraw_curbuf_later(NOT_VALID);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 if (first_line != 0)
857 changed_lines(first_line, 0, last_line + 1, 0L);
858
859 curwin->w_p_list = save_list; /* restore 'list' */
860
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200861#ifdef FEAT_VARTABS
862 if (new_ts_str != NULL) /* set the new tabstop */
863 {
864 // If 'vartabstop' is in use or if the value given to retab has more
865 // than one tabstop then update 'vartabstop'.
866 int *old_vts_ary = curbuf->b_p_vts_array;
867
Bram Moolenaar0119a592018-06-24 23:53:28 +0200868 if (tabstop_count(old_vts_ary) > 0 || tabstop_count(new_vts_array) > 1)
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200869 {
870 set_string_option_direct((char_u *)"vts", -1, new_ts_str,
871 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0119a592018-06-24 23:53:28 +0200872 curbuf->b_p_vts_array = new_vts_array;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200873 vim_free(old_vts_ary);
874 }
875 else
876 {
877 // 'vartabstop' wasn't in use and a single value was given to
878 // retab then update 'tabstop'.
Bram Moolenaar0119a592018-06-24 23:53:28 +0200879 curbuf->b_p_ts = tabstop_first(new_vts_array);
880 vim_free(new_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200881 }
Bram Moolenaar307ac5c2018-06-28 22:23:00 +0200882 vim_free(new_ts_str);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200883 }
884#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 curbuf->b_p_ts = new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 coladvance(curwin->w_curswant);
888
889 u_clearline();
890}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891
892/*
893 * :move command - move lines line1-line2 to line dest
894 *
895 * return FAIL for failure, OK otherwise
896 */
897 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100898do_move(linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899{
900 char_u *str;
901 linenr_T l;
Bram Moolenaarddd1f912018-11-10 19:19:36 +0100902 linenr_T extra; // Num lines added before line1
903 linenr_T num_lines; // Num lines moved
904 linenr_T last_line; // Last line in file after adding new text
Bram Moolenaard5f69332015-04-15 12:43:50 +0200905#ifdef FEAT_FOLDING
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100906 win_T *win;
907 tabpage_T *tp;
Bram Moolenaard5f69332015-04-15 12:43:50 +0200908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909
910 if (dest >= line1 && dest < line2)
911 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100912 emsg(_("E134: Cannot move a range of lines into itself"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 return FAIL;
914 }
915
Bram Moolenaarddd1f912018-11-10 19:19:36 +0100916 // Do nothing if we are not actually moving any lines. This will prevent
917 // the 'modified' flag from being set without cause.
918 if (dest == line1 - 1 || dest == line2)
919 {
920 // Move the cursor as if lines were moved (see below) to be backwards
921 // compatible.
922 if (dest >= line1)
923 curwin->w_cursor.lnum = dest;
924 else
925 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
926
927 return OK;
928 }
929
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 num_lines = line2 - line1 + 1;
931
932 /*
933 * First we copy the old text to its new location -- webb
934 * Also copy the flag that ":global" command uses.
935 */
936 if (u_save(dest, dest + 1) == FAIL)
937 return FAIL;
938 for (extra = 0, l = line1; l <= line2; l++)
939 {
940 str = vim_strsave(ml_get(l + extra));
941 if (str != NULL)
942 {
943 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
944 vim_free(str);
945 if (dest < line1)
946 extra++;
947 }
948 }
949
950 /*
951 * Now we must be careful adjusting our marks so that we don't overlap our
952 * mark_adjust() calls.
953 *
954 * We adjust the marks within the old text so that they refer to the
955 * last lines of the file (temporarily), because we know no other marks
956 * will be set there since these line numbers did not exist until we added
957 * our new lines.
958 *
959 * Then we adjust the marks on lines between the old and new text positions
960 * (either forwards or backwards).
961 *
962 * And Finally we adjust the marks we put at the end of the file back to
963 * their final destination at the new text position -- webb
964 */
965 last_line = curbuf->b_ml.ml_line_count;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100966 mark_adjust_nofold(line1, line2, last_line - line2, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 if (dest >= line2)
968 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100969 mark_adjust_nofold(line2 + 1, dest, -num_lines, 0L);
970#ifdef FEAT_FOLDING
971 FOR_ALL_TAB_WINDOWS(tp, win) {
972 if (win->w_buffer == curbuf)
973 foldMoveRange(&win->w_folds, line1, line2, dest);
974 }
975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 curbuf->b_op_start.lnum = dest - num_lines + 1;
977 curbuf->b_op_end.lnum = dest;
978 }
979 else
980 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100981 mark_adjust_nofold(dest + 1, line1 - 1, num_lines, 0L);
982#ifdef FEAT_FOLDING
983 FOR_ALL_TAB_WINDOWS(tp, win) {
984 if (win->w_buffer == curbuf)
985 foldMoveRange(&win->w_folds, dest + 1, line1 - 1, line2);
986 }
987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 curbuf->b_op_start.lnum = dest + 1;
989 curbuf->b_op_end.lnum = dest + num_lines;
990 }
991 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100992 mark_adjust_nofold(last_line - num_lines + 1, last_line,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 -(last_line - dest - extra), 0L);
994
995 /*
996 * Now we delete the original text -- webb
997 */
998 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
999 return FAIL;
1000
1001 for (l = line1; l <= line2; l++)
1002 ml_delete(line1 + extra, TRUE);
1003
1004 if (!global_busy && num_lines > p_report)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001005 smsg(NGETTEXT("%ld line moved", "%ld lines moved", num_lines),
Bram Moolenaarda6e8912018-08-21 15:12:14 +02001006 (long)num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007
1008 /*
1009 * Leave the cursor on the last of the moved lines.
1010 */
1011 if (dest >= line1)
1012 curwin->w_cursor.lnum = dest;
1013 else
1014 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
1015
1016 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +01001017 {
1018 dest += num_lines + 1;
1019 last_line = curbuf->b_ml.ml_line_count;
1020 if (dest > last_line + 1)
1021 dest = last_line + 1;
1022 changed_lines(line1, 0, dest, 0L);
1023 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 else
1025 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
1026
1027 return OK;
1028}
1029
1030/*
1031 * ":copy"
1032 */
1033 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001034ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035{
1036 linenr_T count;
1037 char_u *p;
1038
1039 count = line2 - line1 + 1;
1040 curbuf->b_op_start.lnum = n + 1;
1041 curbuf->b_op_end.lnum = n + count;
1042 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
1043
1044 /*
1045 * there are three situations:
1046 * 1. destination is above line1
1047 * 2. destination is between line1 and line2
1048 * 3. destination is below line2
1049 *
1050 * n = destination (when starting)
1051 * curwin->w_cursor.lnum = destination (while copying)
1052 * line1 = start of source (while copying)
1053 * line2 = end of source (while copying)
1054 */
1055 if (u_save(n, n + 1) == FAIL)
1056 return;
1057
1058 curwin->w_cursor.lnum = n;
1059 while (line1 <= line2)
1060 {
1061 /* need to use vim_strsave() because the line will be unlocked within
1062 * ml_append() */
1063 p = vim_strsave(ml_get(line1));
1064 if (p != NULL)
1065 {
1066 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
1067 vim_free(p);
1068 }
1069 /* situation 2: skip already copied lines */
1070 if (line1 == n)
1071 line1 = curwin->w_cursor.lnum;
1072 ++line1;
1073 if (curwin->w_cursor.lnum < line1)
1074 ++line1;
1075 if (curwin->w_cursor.lnum < line2)
1076 ++line2;
1077 ++curwin->w_cursor.lnum;
1078 }
1079
1080 appended_lines_mark(n, count);
1081
1082 msgmore((long)count);
1083}
1084
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001085static char_u *prevcmd = NULL; /* the previous command */
1086
1087#if defined(EXITFREE) || defined(PROTO)
1088 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001089free_prev_shellcmd(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001090{
1091 vim_free(prevcmd);
1092}
1093#endif
1094
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095/*
1096 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
1097 * Bangs in the argument are replaced with the previously entered command.
1098 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 */
1100 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001101do_bang(
1102 int addr_count,
1103 exarg_T *eap,
1104 int forceit,
1105 int do_in,
1106 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107{
1108 char_u *arg = eap->arg; /* command */
1109 linenr_T line1 = eap->line1; /* start of range */
1110 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 char_u *newcmd = NULL; /* the new command */
1112 int free_newcmd = FALSE; /* need to free() newcmd */
1113 int ins_prevcmd;
1114 char_u *t;
1115 char_u *p;
1116 char_u *trailarg;
1117 int len;
1118 int scroll_save = msg_scroll;
1119
1120 /*
1121 * Disallow shell commands for "rvim".
1122 * Disallow shell commands from .exrc and .vimrc in current directory for
1123 * security reasons.
1124 */
1125 if (check_restricted() || check_secure())
1126 return;
1127
1128 if (addr_count == 0) /* :! */
1129 {
1130 msg_scroll = FALSE; /* don't scroll here */
1131 autowrite_all();
1132 msg_scroll = scroll_save;
1133 }
1134
1135 /*
1136 * Try to find an embedded bang, like in :!<cmd> ! [args]
1137 * (:!! is indicated by the 'forceit' variable)
1138 */
1139 ins_prevcmd = forceit;
1140 trailarg = arg;
1141 do
1142 {
1143 len = (int)STRLEN(trailarg) + 1;
1144 if (newcmd != NULL)
1145 len += (int)STRLEN(newcmd);
1146 if (ins_prevcmd)
1147 {
1148 if (prevcmd == NULL)
1149 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001150 emsg(_(e_noprev));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 vim_free(newcmd);
1152 return;
1153 }
1154 len += (int)STRLEN(prevcmd);
1155 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001156 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 {
1158 vim_free(newcmd);
1159 return;
1160 }
1161 *t = NUL;
1162 if (newcmd != NULL)
1163 STRCAT(t, newcmd);
1164 if (ins_prevcmd)
1165 STRCAT(t, prevcmd);
1166 p = t + STRLEN(t);
1167 STRCAT(t, trailarg);
1168 vim_free(newcmd);
1169 newcmd = t;
1170
1171 /*
1172 * Scan the rest of the argument for '!', which is replaced by the
1173 * previous command. "\!" is replaced by "!" (this is vi compatible).
1174 */
1175 trailarg = NULL;
1176 while (*p)
1177 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001178 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 {
1180 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001181 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 else
1183 {
1184 trailarg = p;
1185 *trailarg++ = NUL;
1186 ins_prevcmd = TRUE;
1187 break;
1188 }
1189 }
1190 ++p;
1191 }
1192 } while (trailarg != NULL);
1193
1194 vim_free(prevcmd);
1195 prevcmd = newcmd;
1196
1197 if (bangredo) /* put cmd in redo buffer for ! command */
1198 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001199 /* If % or # appears in the command, it must have been escaped.
1200 * Reescape them, so that redoing them does not substitute them by the
1201 * buffername. */
1202 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1203
1204 if (cmd != NULL)
1205 {
1206 AppendToRedobuffLit(cmd, -1);
1207 vim_free(cmd);
1208 }
1209 else
1210 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 AppendToRedobuff((char_u *)"\n");
1212 bangredo = FALSE;
1213 }
1214 /*
1215 * Add quotes around the command, for shells that need them.
1216 */
1217 if (*p_shq != NUL)
1218 {
1219 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1220 if (newcmd == NULL)
1221 return;
1222 STRCPY(newcmd, p_shq);
1223 STRCAT(newcmd, prevcmd);
1224 STRCAT(newcmd, p_shq);
1225 free_newcmd = TRUE;
1226 }
1227 if (addr_count == 0) /* :! */
1228 {
1229 /* echo the command */
1230 msg_start();
1231 msg_putchar(':');
1232 msg_putchar('!');
1233 msg_outtrans(newcmd);
1234 msg_clr_eos();
1235 windgoto(msg_row, msg_col);
1236
1237 do_shell(newcmd, 0);
1238 }
1239 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001240 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 /* Careful: This may recursively call do_bang() again! (because of
1242 * autocommands) */
1243 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001244 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarade00832006-03-10 21:46:58 +00001245 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246 if (free_newcmd)
1247 vim_free(newcmd);
1248}
1249
1250/*
1251 * do_filter: filter lines through a command given by the user
1252 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001253 * We mostly use temp files and the call_shell() routine here. This would
1254 * normally be done using pipes on a UNIX machine, but this is more portable
1255 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 * to deal with redirection somehow, and should handle things like looking
1257 * at the PATH env. variable, and adding reasonable extensions to the
1258 * command name given by the user. All reasonable versions of call_shell()
1259 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001260 * Alternatively, if on Unix and redirecting input or output, but not both,
1261 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 * We use input redirection if do_in is TRUE.
1263 * We use output redirection if do_out is TRUE.
1264 */
1265 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001266do_filter(
1267 linenr_T line1,
1268 linenr_T line2,
1269 exarg_T *eap, /* for forced 'ff' and 'fenc' */
1270 char_u *cmd,
1271 int do_in,
1272 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273{
1274 char_u *itmp = NULL;
1275 char_u *otmp = NULL;
1276 linenr_T linecount;
1277 linenr_T read_linecount;
1278 pos_T cursor_save;
1279 char_u *cmd_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 buf_T *old_curbuf = curbuf;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001281 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282
1283 if (*cmd == NUL) /* no filter command */
1284 return;
1285
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 cursor_save = curwin->w_cursor;
1287 linecount = line2 - line1 + 1;
1288 curwin->w_cursor.lnum = line1;
1289 curwin->w_cursor.col = 0;
1290 changed_line_abv_curs();
1291 invalidate_botline();
1292
1293 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001294 * When using temp files:
1295 * 1. * Form temp file names
1296 * 2. * Write the lines to a temp file
1297 * 3. Run the filter command on the temp file
1298 * 4. * Read the output of the command into the buffer
1299 * 5. * Delete the original lines to be filtered
1300 * 6. * Remove the temp files
1301 *
1302 * When writing the input with a pipe or when catching the output with a
1303 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 */
1305
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001306 if (do_out)
1307 shell_flags |= SHELL_DOOUT;
1308
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001309#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001310 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001312 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1313 shell_flags |= SHELL_READ;
1314 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001316 else if (do_in && !do_out && !p_stmp)
1317 {
1318 /* Use a pipe to write stdin of the command, do not use a temp file. */
1319 shell_flags |= SHELL_WRITE;
1320 curbuf->b_op_start.lnum = line1;
1321 curbuf->b_op_end.lnum = line2;
1322 }
1323 else if (do_in && do_out && !p_stmp)
1324 {
1325 /* Use a pipe to write stdin and fetch stdout of the command, do not
1326 * use a temp file. */
1327 shell_flags |= SHELL_READ|SHELL_WRITE;
1328 curbuf->b_op_start.lnum = line1;
1329 curbuf->b_op_end.lnum = line2;
1330 curwin->w_cursor.lnum = line2;
1331 }
1332 else
1333#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001334 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1335 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001336 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001337 emsg(_(e_notmp));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001338 goto filterend;
1339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340
1341/*
1342 * The writing and reading of temp files will not be shown.
1343 * Vi also doesn't do this and the messages are not very informative.
1344 */
1345 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001346 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 FALSE, FALSE, FALSE, TRUE) == FAIL)
1348 {
1349 msg_putchar('\n'); /* keep message from buf_write() */
1350 --no_wait_return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001351#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 if (!aborting())
1353#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001354 (void)semsg(_(e_notcreate), itmp); /* will call wait_return */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 goto filterend;
1356 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 if (curbuf != old_curbuf)
1358 goto filterend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359
1360 if (!do_out)
1361 msg_putchar('\n');
1362
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001363 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1365 if (cmd_buf == NULL)
1366 goto filterend;
1367
1368 windgoto((int)Rows - 1, 0);
1369 cursor_on();
1370
1371 /*
1372 * When not redirecting the output the command can write anything to the
1373 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1374 * stderr output of external command. Clear the screen later.
1375 * If do_in is FALSE, this could be something like ":r !cat", which may
1376 * also mess up the screen, clear it later.
1377 */
1378 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1379 redraw_later_clear();
1380
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001381 if (do_out)
1382 {
1383 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001384 {
1385 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001386 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001387 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001388 redraw_curbuf_later(VALID);
1389 }
1390 read_linecount = curbuf->b_ml.ml_line_count;
1391
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 /*
1393 * When call_shell() fails wait_return() is called to give the user a
1394 * chance to read the error messages. Otherwise errors are ignored, so you
1395 * can see the error messages from the command that appear on stdout; use
1396 * 'u' to fix the text
1397 * Switch to cooked mode when not redirecting stdin, avoids that something
1398 * like ":r !cat" hangs.
1399 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1400 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001401 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 {
1403 redraw_later_clear();
1404 wait_return(FALSE);
1405 }
1406 vim_free(cmd_buf);
1407
1408 did_check_timestamps = FALSE;
1409 need_check_timestamps = TRUE;
1410
1411 /* When interrupting the shell command, it may still have produced some
1412 * useful output. Reset got_int here, so that readfile() won't cancel
1413 * reading. */
1414 ui_breakcheck();
1415 got_int = FALSE;
1416
1417 if (do_out)
1418 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001419 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001421 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001422 eap, READ_FILTER) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001424#if defined(FEAT_EVAL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001425 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001427 {
1428 msg_putchar('\n');
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001429 semsg(_(e_notread), otmp);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001430 }
1431 goto error;
1432 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001433 if (curbuf != old_curbuf)
1434 goto filterend;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001435 }
1436
1437 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1438
1439 if (shell_flags & SHELL_READ)
1440 {
1441 curbuf->b_op_start.lnum = line2 + 1;
1442 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1443 appended_lines_mark(line2, read_linecount);
1444 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445
1446 if (do_in)
1447 {
1448 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1449 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450 if (read_linecount >= linecount)
1451 /* move all marks from old lines to new lines */
1452 mark_adjust(line1, line2, linecount, 0L);
1453 else
1454 {
1455 /* move marks from old lines to new lines, delete marks
1456 * that are in deleted lines */
1457 mark_adjust(line1, line1 + read_linecount - 1,
1458 linecount, 0L);
1459 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1460 }
1461 }
1462
1463 /*
1464 * Put cursor on first filtered line for ":range!cmd".
1465 * Adjust '[ and '] (set by buf_write()).
1466 */
1467 curwin->w_cursor.lnum = line1;
1468 del_lines(linecount, TRUE);
1469 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1470 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1471 write_lnum_adjust(-linecount); /* adjust last line
1472 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001473#ifdef FEAT_FOLDING
1474 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1475#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 }
1477 else
1478 {
1479 /*
1480 * Put cursor on last new line for ":r !cmd".
1481 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001483 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001485
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1487 --no_wait_return;
1488
1489 if (linecount > p_report)
1490 {
1491 if (do_in)
1492 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001493 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1494 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001497 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 }
1499 else
1500 msgmore((long)linecount);
1501 }
1502 }
1503 else
1504 {
1505error:
1506 /* put cursor back in same position for ":w !cmd" */
1507 curwin->w_cursor = cursor_save;
1508 --no_wait_return;
1509 wait_return(FALSE);
1510 }
1511
1512filterend:
1513
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 if (curbuf != old_curbuf)
1515 {
1516 --no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001517 emsg(_("E135: *Filter* Autocommands must not change current buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 if (itmp != NULL)
1520 mch_remove(itmp);
1521 if (otmp != NULL)
1522 mch_remove(otmp);
1523 vim_free(itmp);
1524 vim_free(otmp);
1525}
1526
1527/*
1528 * Call a shell to execute a command.
1529 * When "cmd" is NULL start an interactive shell.
1530 */
1531 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001532do_shell(
1533 char_u *cmd,
1534 int flags) /* may be SHELL_DOOUT when output is redirected */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535{
1536 buf_T *buf;
1537#ifndef FEAT_GUI_MSWIN
1538 int save_nwr;
1539#endif
1540#ifdef MSWIN
1541 int winstart = FALSE;
1542#endif
1543
1544 /*
1545 * Disallow shell commands for "rvim".
1546 * Disallow shell commands from .exrc and .vimrc in current directory for
1547 * security reasons.
1548 */
1549 if (check_restricted() || check_secure())
1550 {
1551 msg_end();
1552 return;
1553 }
1554
1555#ifdef MSWIN
1556 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 * Check if ":!start" is used.
1558 */
1559 if (cmd != NULL)
1560 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1561#endif
1562
1563 /*
1564 * For autocommands we want to get the output on the current screen, to
1565 * avoid having to type return below.
1566 */
1567 msg_putchar('\r'); /* put cursor at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 if (!autocmd_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 {
1570#ifdef MSWIN
1571 if (!winstart)
1572#endif
1573 stoptermcap();
1574 }
1575#ifdef MSWIN
1576 if (!winstart)
1577#endif
1578 msg_putchar('\n'); /* may shift screen one line up */
1579
1580 /* warning message before calling the shell */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001581 if (p_warn && !autocmd_busy && msg_silent == 0)
Bram Moolenaar29323592016-07-24 22:04:11 +02001582 FOR_ALL_BUFFERS(buf)
Bram Moolenaarf405c8f2017-12-09 19:51:49 +01001583 if (bufIsChangedNotTerm(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 {
1585#ifdef FEAT_GUI_MSWIN
1586 if (!winstart)
1587 starttermcap(); /* don't want a message box here */
1588#endif
1589 MSG_PUTS(_("[No write since last change]\n"));
1590#ifdef FEAT_GUI_MSWIN
1591 if (!winstart)
1592 stoptermcap();
1593#endif
1594 break;
1595 }
1596
1597 /* This windgoto is required for when the '\n' resulted in a "delete line
1598 * 1" command to the terminal. */
1599 if (!swapping_screen())
1600 windgoto(msg_row, msg_col);
1601 cursor_on();
1602 (void)call_shell(cmd, SHELL_COOKED | flags);
1603 did_check_timestamps = FALSE;
1604 need_check_timestamps = TRUE;
1605
1606 /*
1607 * put the message cursor at the end of the screen, avoids wait_return()
1608 * to overwrite the text that the external command showed
1609 */
1610 if (!swapping_screen())
1611 {
1612 msg_row = Rows - 1;
1613 msg_col = 0;
1614 }
1615
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 if (autocmd_busy)
1617 {
1618 if (msg_silent == 0)
1619 redraw_later_clear();
1620 }
1621 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 {
1623 /*
1624 * For ":sh" there is no need to call wait_return(), just redraw.
1625 * Also for the Win32 GUI (the output is in a console window).
1626 * Otherwise there is probably text on the screen that the user wants
1627 * to read before redrawing, so call wait_return().
1628 */
1629#ifndef FEAT_GUI_MSWIN
1630 if (cmd == NULL
1631# ifdef WIN3264
1632 || (winstart && !need_wait_return)
1633# endif
1634 )
1635 {
1636 if (msg_silent == 0)
1637 redraw_later_clear();
1638 need_wait_return = FALSE;
1639 }
1640 else
1641 {
1642 /*
1643 * If we switch screens when starttermcap() is called, we really
1644 * want to wait for "hit return to continue".
1645 */
1646 save_nwr = no_wait_return;
1647 if (swapping_screen())
1648 no_wait_return = FALSE;
1649# ifdef AMIGA
1650 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1651# else
1652 wait_return(msg_silent == 0);
1653# endif
1654 no_wait_return = save_nwr;
1655 }
1656#endif /* FEAT_GUI_W32 */
1657
1658#ifdef MSWIN
1659 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1660#endif
1661 starttermcap(); /* start termcap if not done by wait_return() */
1662
1663 /*
1664 * In an Amiga window redrawing is caused by asking the window size.
1665 * If we got an interrupt this will not work. The chance that the
1666 * window size is wrong is very small, but we need to redraw the
1667 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1668 * but it saves an extra redraw.
1669 */
1670#ifdef AMIGA
1671 if (skip_redraw) /* ':' hit in wait_return() */
1672 {
1673 if (msg_silent == 0)
1674 redraw_later_clear();
1675 }
1676 else if (term_console)
1677 {
1678 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1679 if (got_int && msg_silent == 0)
1680 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1681 else
1682 must_redraw = 0; /* no extra redraw needed */
1683 }
1684#endif
1685 }
1686
1687 /* display any error messages now */
1688 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001689
Bram Moolenaarade00832006-03-10 21:46:58 +00001690 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691}
1692
Bram Moolenaar06640892018-10-09 21:49:33 +02001693#if !defined(UNIX)
1694 static char_u *
1695find_pipe(char_u *cmd)
1696{
1697 char_u *p;
1698 int inquote = FALSE;
1699
1700 for (p = cmd; *p != NUL; ++p)
1701 {
1702 if (!inquote && *p == '|')
1703 return p;
1704 if (*p == '"')
1705 inquote = !inquote;
1706 else if (rem_backslash(p))
1707 ++p;
1708 }
1709 return NULL;
1710}
1711#endif
1712
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713/*
1714 * Create a shell command from a command string, input redirection file and
1715 * output redirection file.
1716 * Returns an allocated string with the shell command, or NULL for failure.
1717 */
1718 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001719make_filter_cmd(
1720 char_u *cmd, /* command */
1721 char_u *itmp, /* NULL or name of input file */
1722 char_u *otmp) /* NULL or name of output file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723{
1724 char_u *buf;
1725 long_u len;
1726
Bram Moolenaar53076832015-12-31 19:53:21 +01001727#if defined(UNIX)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001728 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001729 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001730
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001731 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001732 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1733 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001734 if (is_fish_shell)
1735 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1736 else
1737#endif
1738 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 if (itmp != NULL)
1740 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1741 if (otmp != NULL)
1742 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1743 buf = lalloc(len, TRUE);
1744 if (buf == NULL)
1745 return NULL;
1746
Bram Moolenaar53076832015-12-31 19:53:21 +01001747#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001749 * Put braces around the command (for concatenated commands) when
1750 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001752 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001753 {
1754 if (is_fish_shell)
1755 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1756 else
1757 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1758 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001759 else
1760 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 if (itmp != NULL)
1762 {
1763 STRCAT(buf, " < ");
1764 STRCAT(buf, itmp);
1765 }
1766#else
1767 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001768 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 * the use of commands in a pipe.
1770 */
1771 STRCPY(buf, cmd);
1772 if (itmp != NULL)
1773 {
1774 char_u *p;
1775
1776 /*
1777 * If there is a pipe, we have to put the '<' in front of it.
1778 * Don't do this when 'shellquote' is not empty, otherwise the
1779 * redirection would be inside the quotes.
1780 */
1781 if (*p_shq == NUL)
1782 {
Bram Moolenaar06640892018-10-09 21:49:33 +02001783 p = find_pipe(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 if (p != NULL)
1785 *p = NUL;
1786 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1788 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 if (*p_shq == NUL)
1790 {
Bram Moolenaar06640892018-10-09 21:49:33 +02001791 p = find_pipe(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 if (p != NULL)
1793 {
1794 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1795 STRCAT(buf, p);
1796 }
1797 }
1798 }
1799#endif
1800 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001801 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802
1803 return buf;
1804}
1805
1806/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001807 * Append output redirection for file "fname" to the end of string buffer
1808 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 * Works with the 'shellredir' and 'shellpipe' options.
1810 * The caller should make sure that there is enough room:
1811 * STRLEN(opt) + STRLEN(fname) + 3
1812 */
1813 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001814append_redir(
1815 char_u *buf,
1816 int buflen,
1817 char_u *opt,
1818 char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819{
1820 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001821 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001823 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001824 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001826 {
1827 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001829 if (p[1] == '%') /* skip %% */
1830 ++p;
1831 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 if (p != NULL)
1833 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001834 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1835 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1836 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 }
1838 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001839 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 " %s %s",
1842#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844#endif
1845 (char *)opt, (char *)fname);
1846}
1847
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001848#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001850static int read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02001851static void write_viminfo_version(FILE *fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001852static void write_viminfo_barlines(vir_T *virp, FILE *fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853static int viminfo_errcnt;
1854
1855 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001856no_viminfo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857{
1858 /* "vim -i NONE" does not read or write a viminfo file */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001859 return STRCMP(p_viminfofile, "NONE") == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860}
1861
1862/*
1863 * Report an error for reading a viminfo file.
1864 * Count the number of errors. When there are more than 10, return TRUE.
1865 */
1866 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001867viminfo_error(char *errnum, char *message, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001869 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1870 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001871 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001872 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1873 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001874 emsg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 if (++viminfo_errcnt >= 10)
1876 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001877 emsg(_("E136: viminfo: Too many errors, skipping rest of file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 return TRUE;
1879 }
1880 return FALSE;
1881}
1882
1883/*
1884 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001885 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 */
1887 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001888read_viminfo(
1889 char_u *file, /* file name or NULL to use default name */
1890 int flags) /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891{
1892 FILE *fp;
1893 char_u *fname;
1894
1895 if (no_viminfo())
1896 return FAIL;
1897
Bram Moolenaard812df62008-11-09 12:46:09 +00001898 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 if (fname == NULL)
1900 return FAIL;
1901 fp = mch_fopen((char *)fname, READBIN);
1902
1903 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001904 {
1905 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001906 smsg(_("Reading viminfo file \"%s\"%s%s%s"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00001907 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001908 (flags & VIF_WANT_INFO) ? _(" info") : "",
1909 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1910 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001911 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001912 verbose_leave();
1913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914
1915 vim_free(fname);
1916 if (fp == NULL)
1917 return FAIL;
1918
1919 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001920 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921
1922 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 return OK;
1924}
1925
1926/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001927 * Write the viminfo file. The old one is read in first so that effectively a
1928 * merge of current info and old info is done. This allows multiple vims to
1929 * run simultaneously, without losing any marks etc.
1930 * If "forceit" is TRUE, then the old file is not read in, and only internal
1931 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 */
1933 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001934write_viminfo(char_u *file, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935{
1936 char_u *fname;
1937 FILE *fp_in = NULL; /* input viminfo file, if any */
1938 FILE *fp_out = NULL; /* output viminfo file */
1939 char_u *tempname = NULL; /* name of temp viminfo file */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001940 stat_T st_new; /* mch_stat() of potential new file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941#if defined(UNIX) || defined(VMS)
1942 mode_t umask_save;
1943#endif
1944#ifdef UNIX
1945 int shortname = FALSE; /* use 8.3 file name */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001946 stat_T st_old; /* mch_stat() of existing viminfo file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001948#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001949 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001950#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951
1952 if (no_viminfo())
1953 return;
1954
1955 fname = viminfo_filename(file); /* may set to default if NULL */
1956 if (fname == NULL)
1957 return;
1958
1959 fp_in = mch_fopen((char *)fname, READBIN);
1960 if (fp_in == NULL)
1961 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001962 int fd;
1963
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 /* if it does exist, but we can't read it, don't try writing */
1965 if (mch_stat((char *)fname, &st_new) == 0)
1966 goto end;
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001967
1968 /* Create the new .viminfo non-accessible for others, because it may
1969 * contain text from non-accessible documents. It is up to the user to
1970 * widen access (e.g. to a group). This may also fail if there is a
1971 * race condition, then just give up. */
1972 fd = mch_open((char *)fname,
1973 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
1974 if (fd < 0)
1975 goto end;
1976 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 }
1978 else
1979 {
1980 /*
1981 * There is an existing viminfo file. Create a temporary file to
1982 * write the new viminfo into, in the same directory as the
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001983 * existing viminfo file, which will be renamed once all writing is
1984 * successful.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 */
1986#ifdef UNIX
1987 /*
1988 * For Unix we check the owner of the file. It's not very nice to
1989 * overwrite a user's viminfo file after a "su root", with a
1990 * viminfo file that the user can't read.
1991 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001992 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001993 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001995 if (mch_stat((char *)fname, &st_old) == 0
1996 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001997 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 ? (st_old.st_mode & 0200)
1999 : (st_old.st_gid == getgid()
2000 ? (st_old.st_mode & 0020)
2001 : (st_old.st_mode & 0002))))
2002 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002003 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004
2005 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002006 semsg(_("E137: Viminfo file is not writable: %s"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002008 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 goto end;
2010 }
2011#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002012#ifdef WIN3264
2013 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01002014 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002015#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016
2017 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002018 * Make tempname, find one that does not exist yet.
2019 * Beware of a race condition: If someone logs out and all Vim
2020 * instances exit at the same time a temp file might be created between
2021 * stat() and open(). Use mch_open() with O_EXCL to avoid that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 * May try twice: Once normal and once with shortname set, just in
2023 * case somebody puts his viminfo file in an 8.3 filesystem.
2024 */
2025 for (;;)
2026 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002027 int next_char = 'z';
2028 char_u *wp;
2029
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 tempname = buf_modname(
2031#ifdef UNIX
2032 shortname,
2033#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035#endif
2036 fname,
2037#ifdef VMS
2038 (char_u *)"-tmp",
2039#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041#endif
2042 FALSE);
2043 if (tempname == NULL) /* out of memory */
2044 break;
2045
2046 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002047 * Try a series of names. Change one character, just before
2048 * the extension. This should also work for an 8.3
2049 * file name, when after adding the extension it still is
2050 * the same file as the original.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002052 wp = tempname + STRLEN(tempname) - 5;
2053 if (wp < gettail(tempname)) /* empty file name? */
2054 wp = gettail(tempname);
2055 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002057 /*
2058 * Check if tempfile already exists. Never overwrite an
2059 * existing file!
2060 */
2061 if (mch_stat((char *)tempname, &st_new) == 0)
2062 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002065 * Check if tempfile is same as original file. May happen
2066 * when modname() gave the same file back. E.g. silly
2067 * link, or file name-length reached. Try again with
2068 * shortname set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002070 if (!shortname && st_new.st_dev == st_old.st_dev
2071 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002073 VIM_CLEAR(tempname);
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002074 shortname = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 break;
2076 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002077#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002079 else
2080 {
2081 /* Try creating the file exclusively. This may fail if
2082 * another Vim tries to do it at the same time. */
2083#ifdef VMS
2084 /* fdopen() fails for some reason */
2085 umask_save = umask(077);
2086 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2087 (void)umask(umask_save);
2088#else
2089 int fd;
2090
2091 /* Use mch_open() to be able to use O_NOFOLLOW and set file
2092 * protection:
2093 * Unix: same as original file, but strip s-bit. Reset
2094 * umask to avoid it getting in the way.
2095 * Others: r&w for user only. */
2096# ifdef UNIX
2097 umask_save = umask(0);
2098 fd = mch_open((char *)tempname,
2099 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
2100 (int)((st_old.st_mode & 0777) | 0600));
2101 (void)umask(umask_save);
2102# else
2103 fd = mch_open((char *)tempname,
2104 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
2105# endif
2106 if (fd < 0)
2107 {
2108 fp_out = NULL;
2109# ifdef EEXIST
2110 /* Avoid trying lots of names while the problem is lack
2111 * of premission, only retry if the file already
2112 * exists. */
2113 if (errno != EEXIST)
2114 break;
2115# endif
2116 }
2117 else
2118 fp_out = fdopen(fd, WRITEBIN);
2119#endif /* VMS */
2120 if (fp_out != NULL)
2121 break;
2122 }
2123
2124 /* Assume file exists, try again with another name. */
2125 if (next_char == 'a' - 1)
2126 {
2127 /* They all exist? Must be something wrong! Don't write
2128 * the viminfo file then. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002129 semsg(_("E929: Too many viminfo temp files, like %s!"),
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002130 tempname);
2131 break;
2132 }
2133 *wp = next_char;
2134 --next_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002136
2137 if (tempname != NULL)
2138 break;
2139 /* continue if shortname was set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 }
2141
Bram Moolenaara5792f52005-11-23 21:25:05 +00002142#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002143 if (tempname != NULL && fp_out != NULL)
2144 {
2145 stat_T tmp_st;
2146
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 /*
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002148 * Make sure the original owner can read/write the tempfile and
2149 * otherwise preserve permissions, making sure the group matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002151 if (mch_stat((char *)tempname, &tmp_st) >= 0)
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002152 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002153 if (st_old.st_uid != tmp_st.st_uid)
2154 /* Changing the owner might fail, in which case the
2155 * file will now owned by the current user, oh well. */
Bram Moolenaar42335f52018-09-13 15:33:43 +02002156 vim_ignored = fchown(fileno(fp_out), st_old.st_uid, -1);
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002157 if (st_old.st_gid != tmp_st.st_gid
2158 && fchown(fileno(fp_out), -1, st_old.st_gid) == -1)
2159 /* can't set the group to what it should be, remove
2160 * group permissions */
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002161 (void)mch_setperm(tempname, 0600);
2162 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002163 else
2164 /* can't stat the file, set conservative permissions */
2165 (void)mch_setperm(tempname, 0600);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002167#endif
Bram Moolenaare0aa23f2017-11-26 17:08:03 +01002168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169
2170 /*
2171 * Check if the new viminfo file can be written to.
2172 */
2173 if (fp_out == NULL)
2174 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002175 semsg(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002176 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 if (fp_in != NULL)
2178 fclose(fp_in);
2179 goto end;
2180 }
2181
2182 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002183 {
2184 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002185 smsg(_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002186 verbose_leave();
2187 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188
2189 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002190 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191
Bram Moolenaar927030a2016-03-15 18:23:55 +01002192 if (fclose(fp_out) == EOF)
2193 ++viminfo_errcnt;
2194
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 if (fp_in != NULL)
2196 {
2197 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002198
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002199 /* In case of an error keep the original viminfo file. Otherwise
2200 * rename the newly written file. Give an error if that fails. */
Bram Moolenaar927030a2016-03-15 18:23:55 +01002201 if (viminfo_errcnt == 0)
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002202 {
Bram Moolenaar927030a2016-03-15 18:23:55 +01002203 if (vim_rename(tempname, fname) == -1)
2204 {
2205 ++viminfo_errcnt;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002206 semsg(_("E886: Can't rename viminfo file to %s!"), fname);
Bram Moolenaar927030a2016-03-15 18:23:55 +01002207 }
2208# ifdef WIN3264
2209 /* If the viminfo file was hidden then also hide the new file. */
2210 else if (hidden)
2211 mch_hide(fname);
2212# endif
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002213 }
2214 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 mch_remove(tempname);
2216 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002217
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218end:
2219 vim_free(fname);
2220 vim_free(tempname);
2221}
2222
2223/*
2224 * Get the viminfo file name to use.
2225 * If "file" is given and not empty, use it (has already been expanded by
2226 * cmdline functions).
2227 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2228 * expand environment variables.
2229 * Returns an allocated string. NULL when out of memory.
2230 */
2231 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002232viminfo_filename(char_u *file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233{
2234 if (file == NULL || *file == NUL)
2235 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002236 if (*p_viminfofile != NUL)
2237 file = p_viminfofile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2239 {
2240#ifdef VIMINFO_FILE2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241# ifdef VMS
2242 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2243# else
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002244# ifdef MSWIN
2245 /* Use $VIM only if $HOME is the default "C:/". */
2246 if (STRCMP(vim_getenv((char_u *)"HOME", NULL), "C:/") == 0
2247 && mch_getenv((char_u *)"HOME") == NULL)
2248# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 if (mch_getenv((char_u *)"HOME") == NULL)
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002250# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251# endif
2252 {
2253 /* don't use $VIM when not available. */
2254 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2255 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2256 file = (char_u *)VIMINFO_FILE2;
2257 else
2258 file = (char_u *)VIMINFO_FILE;
2259 }
2260 else
2261#endif
2262 file = (char_u *)VIMINFO_FILE;
2263 }
2264 expand_env(file, NameBuff, MAXPATHL);
2265 file = NameBuff;
2266 }
2267 return vim_strsave(file);
2268}
2269
2270/*
2271 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2272 */
2273 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002274do_viminfo(FILE *fp_in, FILE *fp_out, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 int eof = FALSE;
2277 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002278 int merge = FALSE;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002279 int do_copy_marks = FALSE;
2280 garray_T buflist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281
2282 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2283 return;
2284 vir.vir_fd = fp_in;
2285#ifdef FEAT_MBYTE
2286 vir.vir_conv.vc_type = CONV_NONE;
2287#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002288 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002289 vir.vir_version = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290
2291 if (fp_in != NULL)
2292 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002293 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002294 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002295 if (fp_out != NULL)
Bram Moolenaar2d358992016-06-12 21:20:54 +02002296 {
2297 /* Registers and marks are read and kept separate from what
2298 * this Vim is using. They are merged when writing. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002299 prepare_viminfo_registers();
Bram Moolenaar2d358992016-06-12 21:20:54 +02002300 prepare_viminfo_marks();
2301 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002302
Bram Moolenaard812df62008-11-09 12:46:09 +00002303 eof = read_viminfo_up_to_marks(&vir,
2304 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002305 merge = TRUE;
2306 }
2307 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 /* Skip info, find start of marks */
2309 while (!(eof = viminfo_readline(&vir))
2310 && vir.vir_line[0] != '>')
2311 ;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002312
2313 do_copy_marks = (flags &
2314 (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002316
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 if (fp_out != NULL)
2318 {
2319 /* Write the info: */
2320 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2321 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002322 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002323 write_viminfo_version(fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002325 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2327#endif
2328 write_viminfo_search_pattern(fp_out);
2329 write_viminfo_sub_string(fp_out);
2330#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002331 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332#endif
2333 write_viminfo_registers(fp_out);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002334 finish_viminfo_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335#ifdef FEAT_EVAL
2336 write_viminfo_varlist(fp_out);
2337#endif
2338 write_viminfo_filemarks(fp_out);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002339 finish_viminfo_marks();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 write_viminfo_bufferlist(fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002341 write_viminfo_barlines(&vir, fp_out);
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002342
2343 if (do_copy_marks)
2344 ga_init2(&buflist, sizeof(buf_T *), 50);
2345 write_viminfo_marks(fp_out, do_copy_marks ? &buflist : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002347
2348 if (do_copy_marks)
2349 {
2350 copy_viminfo_marks(&vir, fp_out, &buflist, eof, flags);
2351 if (fp_out != NULL)
2352 ga_clear(&buflist);
2353 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354
2355 vim_free(vir.vir_line);
2356#ifdef FEAT_MBYTE
2357 if (vir.vir_conv.vc_type != CONV_NONE)
2358 convert_setup(&vir.vir_conv, NULL, NULL);
2359#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002360 ga_clear_strings(&vir.vir_barlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361}
2362
2363/*
2364 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2365 * first part of the viminfo file which contains everything but the marks that
2366 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2367 */
2368 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002369read_viminfo_up_to_marks(
2370 vir_T *virp,
2371 int forceit,
2372 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373{
2374 int eof;
2375 buf_T *buf;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002376 int got_encoding = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377
2378#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002379 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002381
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 eof = viminfo_readline(virp);
2383 while (!eof && virp->vir_line[0] != '>')
2384 {
2385 switch (virp->vir_line[0])
2386 {
2387 /* Characters reserved for future expansion, ignored now */
2388 case '+': /* "+40 /path/dir file", for running vim without args */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 case '^': /* to be defined */
2390 case '<': /* long line - ignored */
2391 /* A comment or empty line. */
2392 case NUL:
2393 case '\r':
2394 case '\n':
2395 case '#':
2396 eof = viminfo_readline(virp);
2397 break;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002398 case '|':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002399 eof = read_viminfo_barline(virp, got_encoding,
2400 forceit, writing);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002401 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 case '*': /* "*encoding=value" */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002403 got_encoding = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 eof = viminfo_encoding(virp);
2405 break;
2406 case '!': /* global variable */
2407#ifdef FEAT_EVAL
2408 eof = read_viminfo_varlist(virp, writing);
2409#else
2410 eof = viminfo_readline(virp);
2411#endif
2412 break;
2413 case '%': /* entry for buffer list */
2414 eof = read_viminfo_bufferlist(virp, writing);
2415 break;
2416 case '"':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002417 /* When registers are in bar lines skip the old style register
2418 * lines. */
2419 if (virp->vir_version < VIMINFO_VERSION_WITH_REGISTERS)
2420 eof = read_viminfo_register(virp, forceit);
2421 else
2422 do {
2423 eof = viminfo_readline(virp);
2424 } while (!eof && (virp->vir_line[0] == TAB
2425 || virp->vir_line[0] == '<'));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 break;
2427 case '/': /* Search string */
2428 case '&': /* Substitute search string */
2429 case '~': /* Last search string, followed by '/' or '&' */
2430 eof = read_viminfo_search_pattern(virp, forceit);
2431 break;
2432 case '$':
2433 eof = read_viminfo_sub_string(virp, forceit);
2434 break;
2435 case ':':
2436 case '?':
2437 case '=':
2438 case '@':
2439#ifdef FEAT_CMDHIST
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002440 /* When history is in bar lines skip the old style history
2441 * lines. */
2442 if (virp->vir_version < VIMINFO_VERSION_WITH_HISTORY)
2443 eof = read_viminfo_history(virp, writing);
2444 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002446 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 break;
2448 case '-':
2449 case '\'':
Bram Moolenaara641e1d2016-06-13 21:16:03 +02002450 /* When file marks are in bar lines skip the old style lines. */
2451 if (virp->vir_version < VIMINFO_VERSION_WITH_MARKS)
2452 eof = read_viminfo_filemark(virp, forceit);
2453 else
2454 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 break;
2456 default:
2457 if (viminfo_error("E575: ", _("Illegal starting char"),
2458 virp->vir_line))
2459 eof = TRUE;
2460 else
2461 eof = viminfo_readline(virp);
2462 break;
2463 }
2464 }
2465
2466#ifdef FEAT_CMDHIST
2467 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002468 if (!writing)
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02002469 finish_viminfo_history(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470#endif
2471
2472 /* Change file names to buffer numbers for fmarks. */
Bram Moolenaar29323592016-07-24 22:04:11 +02002473 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 fmarks_check_names(buf);
2475
2476 return eof;
2477}
2478
2479/*
2480 * Compare the 'encoding' value in the viminfo file with the current value of
2481 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2482 * conversion of text with iconv() in viminfo_readstring().
2483 */
2484 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002485viminfo_encoding(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486{
2487#ifdef FEAT_MBYTE
2488 char_u *p;
2489 int i;
2490
2491 if (get_viminfo_parameter('c') != 0)
2492 {
2493 p = vim_strchr(virp->vir_line, '=');
2494 if (p != NULL)
2495 {
2496 /* remove trailing newline */
2497 ++p;
2498 for (i = 0; vim_isprintc(p[i]); ++i)
2499 ;
2500 p[i] = NUL;
2501
2502 convert_setup(&virp->vir_conv, p, p_enc);
2503 }
2504 }
2505#endif
2506 return viminfo_readline(virp);
2507}
2508
2509/*
2510 * Read a line from the viminfo file.
2511 * Returns TRUE for end-of-file;
2512 */
2513 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002514viminfo_readline(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515{
2516 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2517}
2518
2519/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002520 * Check string read from viminfo file.
2521 * Remove '\n' at the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 * - replace CTRL-V CTRL-V with CTRL-V
2523 * - replace CTRL-V 'n' with '\n'
2524 *
2525 * Check for a long line as written by viminfo_writestring().
2526 *
2527 * Return the string in allocated memory (NULL when out of memory).
2528 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002530viminfo_readstring(
2531 vir_T *virp,
2532 int off, /* offset for virp->vir_line */
2533 int convert UNUSED) /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534{
2535 char_u *retval;
2536 char_u *s, *d;
2537 long len;
2538
2539 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2540 {
2541 len = atol((char *)virp->vir_line + off + 1);
2542 retval = lalloc(len, TRUE);
2543 if (retval == NULL)
2544 {
2545 /* Line too long? File messed up? Skip next line. */
2546 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2547 return NULL;
2548 }
2549 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2550 s = retval + 1; /* Skip the leading '<' */
2551 }
2552 else
2553 {
2554 retval = vim_strsave(virp->vir_line + off);
2555 if (retval == NULL)
2556 return NULL;
2557 s = retval;
2558 }
2559
2560 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2561 d = retval;
2562 while (*s != NUL && *s != '\n')
2563 {
2564 if (s[0] == Ctrl_V && s[1] != NUL)
2565 {
2566 if (s[1] == 'n')
2567 *d++ = '\n';
2568 else
2569 *d++ = Ctrl_V;
2570 s += 2;
2571 }
2572 else
2573 *d++ = *s++;
2574 }
2575 *d = NUL;
2576
2577#ifdef FEAT_MBYTE
2578 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2579 {
2580 d = string_convert(&virp->vir_conv, retval, NULL);
2581 if (d != NULL)
2582 {
2583 vim_free(retval);
2584 retval = d;
2585 }
2586 }
2587#endif
2588
2589 return retval;
2590}
2591
2592/*
2593 * write string to viminfo file
2594 * - replace CTRL-V with CTRL-V CTRL-V
2595 * - replace '\n' with CTRL-V 'n'
2596 * - add a '\n' at the end
2597 *
2598 * For a long line:
2599 * - write " CTRL-V <length> \n " in first line
2600 * - write " < <string> \n " in second line
2601 */
2602 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002603viminfo_writestring(FILE *fd, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604{
2605 int c;
2606 char_u *s;
2607 int len = 0;
2608
2609 for (s = p; *s != NUL; ++s)
2610 {
2611 if (*s == Ctrl_V || *s == '\n')
2612 ++len;
2613 ++len;
2614 }
2615
2616 /* If the string will be too long, write its length and put it in the next
2617 * line. Take into account that some room is needed for what comes before
2618 * the string (e.g., variable name). Add something to the length for the
2619 * '<', NL and trailing NUL. */
2620 if (len > LSIZE / 2)
2621 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2622
2623 while ((c = *p++) != NUL)
2624 {
2625 if (c == Ctrl_V || c == '\n')
2626 {
2627 putc(Ctrl_V, fd);
2628 if (c == '\n')
2629 c = 'n';
2630 }
2631 putc(c, fd);
2632 }
2633 putc('\n', fd);
2634}
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002635
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002636/*
2637 * Write a string in quotes that barline_parse() can read back.
2638 * Breaks the line in less than LSIZE pieces when needed.
2639 * Returns remaining characters in the line.
2640 */
2641 int
2642barline_writestring(FILE *fd, char_u *s, int remaining_start)
2643{
2644 char_u *p;
2645 int remaining = remaining_start;
2646 int len = 2;
2647
2648 /* Count the number of characters produced, including quotes. */
2649 for (p = s; *p != NUL; ++p)
2650 {
2651 if (*p == NL)
2652 len += 2;
2653 else if (*p == '"' || *p == '\\')
2654 len += 2;
2655 else
2656 ++len;
2657 }
Bram Moolenaar25709572016-08-26 20:41:16 +02002658 if (len > remaining - 2)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002659 {
2660 fprintf(fd, ">%d\n|<", len);
2661 remaining = LSIZE - 20;
2662 }
2663
2664 putc('"', fd);
2665 for (p = s; *p != NUL; ++p)
2666 {
2667 if (*p == NL)
2668 {
2669 putc('\\', fd);
2670 putc('n', fd);
2671 --remaining;
2672 }
2673 else if (*p == '"' || *p == '\\')
2674 {
2675 putc('\\', fd);
2676 putc(*p, fd);
2677 --remaining;
2678 }
2679 else
2680 putc(*p, fd);
2681 --remaining;
2682
2683 if (remaining < 3)
2684 {
2685 putc('\n', fd);
2686 putc('|', fd);
2687 putc('<', fd);
2688 /* Leave enough space for another continuation. */
2689 remaining = LSIZE - 20;
2690 }
2691 }
2692 putc('"', fd);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002693 return remaining - 2;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002694}
2695
2696/*
2697 * Parse a viminfo line starting with '|'.
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002698 * Add each decoded value to "values".
Bram Moolenaarecefe712016-06-20 12:50:17 +02002699 * Returns TRUE if the next line is to be read after using the parsed values.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002700 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002701 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002702barline_parse(vir_T *virp, char_u *text, garray_T *values)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002703{
2704 char_u *p = text;
2705 char_u *nextp = NULL;
Bram Moolenaarfdd82fe2016-06-06 21:38:44 +02002706 char_u *buf = NULL;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002707 bval_T *value;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002708 int i;
2709 int allocated = FALSE;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002710 int eof;
Bram Moolenaar01227092016-06-11 14:47:40 +02002711#ifdef FEAT_MBYTE
2712 char_u *sconv;
2713 int converted;
2714#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002715
2716 while (*p == ',')
2717 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002718 ++p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002719 if (ga_grow(values, 1) == FAIL)
2720 break;
2721 value = (bval_T *)(values->ga_data) + values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002722
2723 if (*p == '>')
2724 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002725 /* Need to read a continuation line. Put strings in allocated
2726 * memory, because virp->vir_line is overwritten. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002727 if (!allocated)
2728 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002729 for (i = 0; i < values->ga_len; ++i)
2730 {
2731 bval_T *vp = (bval_T *)(values->ga_data) + i;
2732
2733 if (vp->bv_type == BVAL_STRING && !vp->bv_allocated)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002734 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002735 vp->bv_string = vim_strnsave(vp->bv_string, vp->bv_len);
2736 vp->bv_allocated = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002737 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002738 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002739 allocated = TRUE;
2740 }
2741
2742 if (vim_isdigit(p[1]))
2743 {
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002744 size_t len;
2745 size_t todo;
2746 size_t n;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002747
2748 /* String value was split into lines that are each shorter
2749 * than LSIZE:
2750 * |{bartype},>{length of "{text}{text2}"}
2751 * |<"{text1}
2752 * |<{text2}",{value}
Bram Moolenaarecefe712016-06-20 12:50:17 +02002753 * Length includes the quotes.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002754 */
2755 ++p;
2756 len = getdigits(&p);
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002757 buf = alloc((int)(len + 1));
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002758 if (buf == NULL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002759 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002760 p = buf;
2761 for (todo = len; todo > 0; todo -= n)
2762 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002763 eof = viminfo_readline(virp);
2764 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002765 || virp->vir_line[1] != '<')
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002766 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002767 /* File was truncated or garbled. Read another line if
2768 * this one starts with '|'. */
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002769 vim_free(buf);
Bram Moolenaarecefe712016-06-20 12:50:17 +02002770 return eof || virp->vir_line[0] == '|';
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002771 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002772 /* Get length of text, excluding |< and NL chars. */
2773 n = STRLEN(virp->vir_line);
2774 while (n > 0 && (virp->vir_line[n - 1] == NL
2775 || virp->vir_line[n - 1] == CAR))
2776 --n;
2777 n -= 2;
2778 if (n > todo)
2779 {
2780 /* more values follow after the string */
2781 nextp = virp->vir_line + 2 + todo;
2782 n = todo;
2783 }
2784 mch_memmove(p, virp->vir_line + 2, n);
2785 p += n;
2786 }
2787 *p = NUL;
2788 p = buf;
2789 }
2790 else
2791 {
2792 /* Line ending in ">" continues in the next line:
2793 * |{bartype},{lots of values},>
2794 * |<{value},{value}
2795 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002796 eof = viminfo_readline(virp);
2797 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002798 || virp->vir_line[1] != '<')
Bram Moolenaarecefe712016-06-20 12:50:17 +02002799 /* File was truncated or garbled. Read another line if
2800 * this one starts with '|'. */
2801 return eof || virp->vir_line[0] == '|';
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002802 p = virp->vir_line + 2;
2803 }
2804 }
2805
2806 if (isdigit(*p))
2807 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002808 value->bv_type = BVAL_NR;
2809 value->bv_nr = getdigits(&p);
2810 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002811 }
2812 else if (*p == '"')
2813 {
2814 int len = 0;
2815 char_u *s = p;
2816
2817 /* Unescape special characters in-place. */
2818 ++p;
2819 while (*p != '"')
2820 {
2821 if (*p == NL || *p == NUL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002822 return TRUE; /* syntax error, drop the value */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002823 if (*p == '\\')
2824 {
2825 ++p;
2826 if (*p == 'n')
2827 s[len++] = '\n';
2828 else
2829 s[len++] = *p;
2830 ++p;
2831 }
2832 else
2833 s[len++] = *p++;
2834 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002835 ++p;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002836 s[len] = NUL;
2837
Bram Moolenaar01227092016-06-11 14:47:40 +02002838#ifdef FEAT_MBYTE
2839 converted = FALSE;
2840 if (virp->vir_conv.vc_type != CONV_NONE && *s != NUL)
2841 {
2842 sconv = string_convert(&virp->vir_conv, s, NULL);
2843 if (sconv != NULL)
2844 {
2845 if (s == buf)
2846 vim_free(s);
2847 s = sconv;
2848 buf = s;
2849 converted = TRUE;
2850 }
2851 }
2852#endif
2853 /* Need to copy in allocated memory if the string wasn't allocated
2854 * above and we did allocate before, thus vir_line may change. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002855 if (s != buf && allocated)
2856 s = vim_strsave(s);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002857 value->bv_string = s;
2858 value->bv_type = BVAL_STRING;
2859 value->bv_len = len;
2860 value->bv_allocated = allocated
Bram Moolenaar01227092016-06-11 14:47:40 +02002861#ifdef FEAT_MBYTE
2862 || converted
2863#endif
2864 ;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002865 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002866 if (nextp != NULL)
2867 {
2868 /* values following a long string */
2869 p = nextp;
2870 nextp = NULL;
2871 }
2872 }
2873 else if (*p == ',')
2874 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002875 value->bv_type = BVAL_EMPTY;
2876 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002877 }
2878 else
2879 break;
2880 }
Bram Moolenaarecefe712016-06-20 12:50:17 +02002881 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002882}
2883
2884 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002885read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002886{
2887 char_u *p = virp->vir_line + 1;
2888 int bartype;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002889 garray_T values;
2890 bval_T *vp;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002891 int i;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002892 int read_next = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002893
2894 /* The format is: |{bartype},{value},...
2895 * For a very long string:
2896 * |{bartype},>{length of "{text}{text2}"}
2897 * |<{text1}
2898 * |<{text2},{value}
2899 * For a long line not using a string
2900 * |{bartype},{lots of values},>
2901 * |<{value},{value}
2902 */
2903 if (*p == '<')
2904 {
2905 /* Continuation line of an unrecognized item. */
2906 if (writing)
2907 ga_add_string(&virp->vir_barlines, virp->vir_line);
2908 }
2909 else
2910 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002911 ga_init2(&values, sizeof(bval_T), 20);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002912 bartype = getdigits(&p);
2913 switch (bartype)
2914 {
2915 case BARTYPE_VERSION:
2916 /* Only use the version when it comes before the encoding.
2917 * If it comes later it was copied by a Vim version that
2918 * doesn't understand the version. */
2919 if (!got_encoding)
2920 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002921 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002922 vp = (bval_T *)values.ga_data;
2923 if (values.ga_len > 0 && vp->bv_type == BVAL_NR)
2924 virp->vir_version = vp->bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002925 }
2926 break;
2927
2928 case BARTYPE_HISTORY:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002929 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002930 handle_viminfo_history(&values, writing);
2931 break;
2932
2933 case BARTYPE_REGISTER:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002934 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002935 handle_viminfo_register(&values, force);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002936 break;
2937
Bram Moolenaar2d358992016-06-12 21:20:54 +02002938 case BARTYPE_MARK:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002939 read_next = barline_parse(virp, p, &values);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002940 handle_viminfo_mark(&values, force);
2941 break;
2942
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002943 default:
2944 /* copy unrecognized line (for future use) */
2945 if (writing)
2946 ga_add_string(&virp->vir_barlines, virp->vir_line);
2947 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002948 for (i = 0; i < values.ga_len; ++i)
2949 {
2950 vp = (bval_T *)values.ga_data + i;
2951 if (vp->bv_type == BVAL_STRING && vp->bv_allocated)
2952 vim_free(vp->bv_string);
2953 }
2954 ga_clear(&values);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002955 }
2956
Bram Moolenaarecefe712016-06-20 12:50:17 +02002957 if (read_next)
2958 return viminfo_readline(virp);
2959 return FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002960}
2961
2962 static void
2963write_viminfo_version(FILE *fp_out)
2964{
2965 fprintf(fp_out, "# Viminfo version\n|%d,%d\n\n",
2966 BARTYPE_VERSION, VIMINFO_VERSION);
2967}
2968
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002969 static void
2970write_viminfo_barlines(vir_T *virp, FILE *fp_out)
2971{
2972 int i;
2973 garray_T *gap = &virp->vir_barlines;
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002974 int seen_useful = FALSE;
2975 char *line;
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002976
2977 if (gap->ga_len > 0)
2978 {
2979 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out);
2980
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002981 /* Skip over continuation lines until seeing a useful line. */
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002982 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002983 {
2984 line = ((char **)(gap->ga_data))[i];
2985 if (seen_useful || line[1] != '<')
2986 {
2987 fputs(line, fp_out);
2988 seen_useful = TRUE;
2989 }
2990 }
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002991 }
2992}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993#endif /* FEAT_VIMINFO */
2994
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002995/*
2996 * Return the current time in seconds. Calls time(), unless test_settime()
2997 * was used.
2998 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02002999 time_T
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003000vim_time(void)
3001{
3002# ifdef FEAT_EVAL
3003 return time_for_testing == 0 ? time(NULL) : time_for_testing;
3004# else
3005 return time(NULL);
3006# endif
3007}
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003008
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009/*
3010 * Implementation of ":fixdel", also used by get_stty().
3011 * <BS> resulting <Del>
3012 * ^? ^H
3013 * not ^? ^?
3014 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003016do_fixdel(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017{
3018 char_u *p;
3019
3020 p = find_termcode((char_u *)"kb");
3021 add_termcode((char_u *)"kD", p != NULL
3022 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
3023}
3024
3025 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003026print_line_no_prefix(
3027 linenr_T lnum,
3028 int use_number,
3029 int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003031 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032
3033 if (curwin->w_p_nu || use_number)
3034 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003035 vim_snprintf((char *)numbuf, sizeof(numbuf),
3036 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar8820b482017-03-16 17:23:31 +01003037 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); /* Highlight line nrs */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003039 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040}
3041
3042/*
3043 * Print a text line. Also in silent mode ("ex -s").
3044 */
3045 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003046print_line(linenr_T lnum, int use_number, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047{
3048 int save_silent = silent_mode;
3049
Bram Moolenaard29459b2016-08-26 22:29:11 +02003050 /* apply :filter /pat/ */
3051 if (message_filtered(ml_get(lnum)))
3052 return;
3053
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003055 silent_mode = FALSE;
3056 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
3057 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 if (save_silent)
3059 {
3060 msg_putchar('\n');
3061 cursor_on(); /* msg_start() switches it off */
3062 out_flush();
3063 silent_mode = save_silent;
3064 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00003065 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066}
3067
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003068 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003069rename_buffer(char_u *new_fname)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003070{
3071 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02003072 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003073
Bram Moolenaar7e283842013-05-30 11:43:15 +02003074 buf = curbuf;
3075 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003076 /* buffer changed, don't change name now */
3077 if (buf != curbuf)
3078 return FAIL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003079#ifdef FEAT_EVAL
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003080 if (aborting()) /* autocmds may abort script processing */
3081 return FAIL;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003082#endif
3083 /*
3084 * The name of the current buffer will be changed.
3085 * A new (unlisted) buffer entry needs to be made to hold the old file
3086 * name, which will become the alternate file name.
3087 * But don't set the alternate file name if the buffer didn't have a
3088 * name.
3089 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02003090 fname = curbuf->b_ffname;
3091 sfname = curbuf->b_sfname;
3092 xfname = curbuf->b_fname;
3093 curbuf->b_ffname = NULL;
3094 curbuf->b_sfname = NULL;
3095 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003096 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02003097 curbuf->b_ffname = fname;
3098 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003099 return FAIL;
3100 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02003101 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003102 if (xfname != NULL && *xfname != NUL)
3103 {
3104 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
3105 if (buf != NULL && !cmdmod.keepalt)
3106 curwin->w_alt_fnum = buf->b_fnum;
3107 }
3108 vim_free(fname);
3109 vim_free(sfname);
Bram Moolenaar7e283842013-05-30 11:43:15 +02003110 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003111
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003112 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02003113 DO_AUTOCHDIR;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003114 return OK;
3115}
3116
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117/*
3118 * ":file[!] [fname]".
3119 */
3120 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003121ex_file(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003123 /* ":0file" removes the file name. Check for illegal uses ":3file",
3124 * "0file name", etc. */
3125 if (eap->addr_count > 0
3126 && (*eap->arg != NUL
3127 || eap->line2 > 0
3128 || eap->addr_count > 1))
3129 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003130 emsg(_(e_invarg));
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003131 return;
3132 }
3133
3134 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003136 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137 return;
Bram Moolenaarfc089602018-06-24 16:53:35 +02003138 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 }
Bram Moolenaarfc089602018-06-24 16:53:35 +02003140
3141 // print file name if no argument or 'F' is not in 'shortmess'
3142 if (*eap->arg == NUL || !shortmess(SHM_FILEINFO))
Bram Moolenaar426dd022016-03-15 15:09:29 +01003143 fileinfo(FALSE, FALSE, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144}
3145
3146/*
3147 * ":update".
3148 */
3149 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003150ex_update(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151{
3152 if (curbufIsChanged())
3153 (void)do_write(eap);
3154}
3155
3156/*
3157 * ":write" and ":saveas".
3158 */
3159 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003160ex_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161{
3162 if (eap->usefilter) /* input lines to shell command */
3163 do_bang(1, eap, FALSE, TRUE, FALSE);
3164 else
3165 (void)do_write(eap);
3166}
3167
3168/*
3169 * write current buffer to file 'eap->arg'
3170 * if 'eap->append' is TRUE, append to the file
3171 *
3172 * if *eap->arg == NUL write to current file
3173 *
3174 * return FAIL for failure, OK otherwise
3175 */
3176 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003177do_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178{
3179 int other;
3180 char_u *fname = NULL; /* init to shut up gcc */
3181 char_u *ffname;
3182 int retval = FAIL;
3183 char_u *free_fname = NULL;
3184#ifdef FEAT_BROWSE
3185 char_u *browse_file = NULL;
3186#endif
3187 buf_T *alt_buf = NULL;
Bram Moolenaar5c719942016-07-09 23:40:45 +02003188 int name_was_missing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189
3190 if (not_writing()) /* check 'write' option */
3191 return FAIL;
3192
3193 ffname = eap->arg;
3194#ifdef FEAT_BROWSE
3195 if (cmdmod.browse)
3196 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003197 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 NULL, NULL, NULL, curbuf);
3199 if (browse_file == NULL)
3200 goto theend;
3201 ffname = browse_file;
3202 }
3203#endif
3204 if (*ffname == NUL)
3205 {
3206 if (eap->cmdidx == CMD_saveas)
3207 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003208 emsg(_(e_argreq));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 goto theend;
3210 }
3211 other = FALSE;
3212 }
3213 else
3214 {
3215 fname = ffname;
3216 free_fname = fix_fname(ffname);
3217 /*
3218 * When out-of-memory, keep unexpanded file name, because we MUST be
3219 * able to write the file in this situation.
3220 */
3221 if (free_fname != NULL)
3222 ffname = free_fname;
3223 other = otherfile(ffname);
3224 }
3225
3226 /*
3227 * If we have a new file, put its name in the list of alternate file names.
3228 */
3229 if (other)
3230 {
3231 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
3232 || eap->cmdidx == CMD_saveas)
3233 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
3234 else
3235 alt_buf = buflist_findname(ffname);
3236 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
3237 {
3238 /* Overwriting a file that is loaded in another buffer is not a
3239 * good idea. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003240 emsg(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 goto theend;
3242 }
3243 }
3244
3245 /*
3246 * Writing to the current file is not allowed in readonly mode
3247 * and a file name is required.
3248 * "nofile" and "nowrite" buffers cannot be written implicitly either.
3249 */
3250 if (!other && (
3251#ifdef FEAT_QUICKFIX
3252 bt_dontwrite_msg(curbuf) ||
3253#endif
3254 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
3255 goto theend;
3256
3257 if (!other)
3258 {
3259 ffname = curbuf->b_ffname;
3260 fname = curbuf->b_fname;
3261 /*
3262 * Not writing the whole file is only allowed with '!'.
3263 */
3264 if ( (eap->line1 != 1
3265 || eap->line2 != curbuf->b_ml.ml_line_count)
3266 && !eap->forceit
3267 && !eap->append
3268 && !p_wa)
3269 {
3270#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3271 if (p_confirm || cmdmod.confirm)
3272 {
3273 if (vim_dialog_yesno(VIM_QUESTION, NULL,
3274 (char_u *)_("Write partial file?"), 2) != VIM_YES)
3275 goto theend;
3276 eap->forceit = TRUE;
3277 }
3278 else
3279#endif
3280 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003281 emsg(_("E140: Use ! to write partial buffer"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 goto theend;
3283 }
3284 }
3285 }
3286
3287 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
3288 {
3289 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
3290 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 buf_T *was_curbuf = curbuf;
3292
3293 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003294 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003295#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 if (curbuf != was_curbuf || aborting())
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003297#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 if (curbuf != was_curbuf)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003299#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 {
3301 /* buffer changed, don't change name now */
3302 retval = FAIL;
3303 goto theend;
3304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305 /* Exchange the file names for the current and the alternate
3306 * buffer. This makes it look like we are now editing the buffer
3307 * under the new name. Must be done before buf_write(), because
3308 * if there is no file name and 'cpo' contains 'F', it will set
3309 * the file name. */
3310 fname = alt_buf->b_fname;
3311 alt_buf->b_fname = curbuf->b_fname;
3312 curbuf->b_fname = fname;
3313 fname = alt_buf->b_ffname;
3314 alt_buf->b_ffname = curbuf->b_ffname;
3315 curbuf->b_ffname = fname;
3316 fname = alt_buf->b_sfname;
3317 alt_buf->b_sfname = curbuf->b_sfname;
3318 curbuf->b_sfname = fname;
3319 buf_name_changed(curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003320
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003322 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 if (!alt_buf->b_p_bl)
3324 {
3325 alt_buf->b_p_bl = TRUE;
3326 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
3327 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003328#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329 if (curbuf != was_curbuf || aborting())
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003330#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 if (curbuf != was_curbuf)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003332#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 {
3334 /* buffer changed, don't write the file */
3335 retval = FAIL;
3336 goto theend;
3337 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003338
3339 /* If 'filetype' was empty try detecting it now. */
3340 if (*curbuf->b_p_ft == NUL)
3341 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003342 if (au_has_group((char_u *)"filetypedetect"))
3343 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
Bram Moolenaar1610d052016-06-09 22:53:01 +02003344 TRUE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00003345 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003346 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01003347
3348 /* Autocommands may have changed buffer names, esp. when
3349 * 'autochdir' is set. */
3350 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 }
3352
Bram Moolenaar5c719942016-07-09 23:40:45 +02003353 name_was_missing = curbuf->b_ffname == NULL;
3354
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
3356 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003357
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003358 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003359 if (eap->cmdidx == CMD_saveas)
3360 {
3361 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00003362 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003363 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003364 redraw_tabline = TRUE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003365 }
Bram Moolenaar5c719942016-07-09 23:40:45 +02003366 }
3367
3368 /* Change directories when the 'acd' option is set and the file name
3369 * got changed or set. */
3370 if (eap->cmdidx == CMD_saveas || name_was_missing)
3371 {
Bram Moolenaar6f470022018-04-10 18:47:20 +02003372 DO_AUTOCHDIR;
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 }
3375
3376theend:
3377#ifdef FEAT_BROWSE
3378 vim_free(browse_file);
3379#endif
3380 vim_free(free_fname);
3381 return retval;
3382}
3383
3384/*
3385 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
3386 * BF_NEW or BF_READERR, check for overwriting current file.
3387 * May set eap->forceit if a dialog says it's OK to overwrite.
3388 * Return OK if it's OK, FAIL if it is not.
3389 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02003390 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003391check_overwrite(
3392 exarg_T *eap,
3393 buf_T *buf,
3394 char_u *fname, /* file name to be used (can differ from
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 buf->ffname) */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003396 char_u *ffname, /* full path version of fname */
3397 int other) /* writing under other name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398{
3399 /*
3400 * write to other file or b_flags set or not writing the whole file:
3401 * overwriting only allowed with '!'
3402 */
3403 if ( (other
3404 || (buf->b_flags & BF_NOTEDITED)
3405 || ((buf->b_flags & BF_NEW)
3406 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
3407 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00003409#ifdef FEAT_QUICKFIX
3410 && !bt_nofile(buf)
3411#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 && vim_fexists(ffname))
3413 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003414 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003416#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00003417 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003418 if (mch_isdir(ffname))
3419 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003420 semsg(_(e_isadir2), ffname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003421 return FAIL;
3422 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423#endif
3424#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003425 if (p_confirm || cmdmod.confirm)
3426 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003427 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003429 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
3430 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
3431 return FAIL;
3432 eap->forceit = TRUE;
3433 }
3434 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003436 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003437 emsg(_(e_exists));
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003438 return FAIL;
3439 }
3440 }
3441
3442 /* For ":w! filename" check that no swap file exists for "filename". */
3443 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003445 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003446 char_u *p;
3447 int r;
3448 char_u *swapname;
3449
3450 /* We only try the first entry in 'directory', without checking if
3451 * it's writable. If the "." directory is not writable the write
3452 * will probably fail anyway.
3453 * Use 'shortname' of the current buffer, since there is no buffer
3454 * for the written file. */
3455 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02003456 {
3457 dir = alloc(5);
3458 if (dir == NULL)
3459 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003460 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003461 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003462 else
3463 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003464 dir = alloc(MAXPATHL);
3465 if (dir == NULL)
3466 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003467 p = p_dir;
3468 copy_option_part(&p, dir, MAXPATHL, ",");
3469 }
3470 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003471 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003472 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003473 if (r)
3474 {
3475#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3476 if (p_confirm || cmdmod.confirm)
3477 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003478 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003479
3480 dialog_msg(buff,
3481 _("Swap file \"%s\" exists, overwrite anyway?"),
3482 swapname);
3483 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
3484 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003485 {
3486 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003487 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003488 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003489 eap->forceit = TRUE;
3490 }
3491 else
3492#endif
3493 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003494 semsg(_("E768: Swap file exists: %s (:silent! overrides)"),
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003495 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003496 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003497 return FAIL;
3498 }
3499 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003500 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 }
3502 }
3503 return OK;
3504}
3505
3506/*
3507 * Handle ":wnext", ":wNext" and ":wprevious" commands.
3508 */
3509 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003510ex_wnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511{
3512 int i;
3513
3514 if (eap->cmd[1] == 'n')
3515 i = curwin->w_arg_idx + (int)eap->line2;
3516 else
3517 i = curwin->w_arg_idx - (int)eap->line2;
3518 eap->line1 = 1;
3519 eap->line2 = curbuf->b_ml.ml_line_count;
3520 if (do_write(eap) != FAIL)
3521 do_argfile(eap, i);
3522}
3523
3524/*
3525 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
3526 */
3527 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003528do_wqall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529{
3530 buf_T *buf;
3531 int error = 0;
3532 int save_forceit = eap->forceit;
3533
3534 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
3535 exiting = TRUE;
3536
Bram Moolenaar29323592016-07-24 22:04:11 +02003537 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 {
Bram Moolenaar7a760922018-02-19 23:10:02 +01003539#ifdef FEAT_TERMINAL
3540 if (exiting && term_job_running(buf->b_term))
3541 {
3542 no_write_message_nobang(buf);
3543 ++error;
3544 }
3545 else
3546#endif
Bram Moolenaar059db5c2017-10-15 22:42:23 +02003547 if (bufIsChanged(buf) && !bt_dontwrite(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 {
3549 /*
3550 * Check if there is a reason the buffer cannot be written:
3551 * 1. if the 'write' option is set
3552 * 2. if there is no file name (even after browsing)
3553 * 3. if the 'readonly' is set (even after a dialog)
3554 * 4. if overwriting is allowed (even after a dialog)
3555 */
3556 if (not_writing())
3557 {
3558 ++error;
3559 break;
3560 }
3561#ifdef FEAT_BROWSE
3562 /* ":browse wall": ask for file name if there isn't one */
3563 if (buf->b_ffname == NULL && cmdmod.browse)
3564 browse_save_fname(buf);
3565#endif
3566 if (buf->b_ffname == NULL)
3567 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003568 semsg(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 ++error;
3570 }
3571 else if (check_readonly(&eap->forceit, buf)
3572 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3573 FALSE) == FAIL)
3574 {
3575 ++error;
3576 }
3577 else
3578 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003579 bufref_T bufref;
3580
3581 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 if (buf_write_all(buf, eap->forceit) == FAIL)
3583 ++error;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 /* an autocommand may have deleted the buffer */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003585 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587 }
3588 eap->forceit = save_forceit; /* check_overwrite() may set it */
3589 }
3590 }
3591 if (exiting)
3592 {
3593 if (!error)
3594 getout(0); /* exit Vim */
3595 not_exiting();
3596 }
3597}
3598
3599/*
3600 * Check the 'write' option.
3601 * Return TRUE and give a message when it's not st.
3602 */
3603 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003604not_writing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605{
3606 if (p_write)
3607 return FALSE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003608 emsg(_("E142: File not written: Writing is disabled by 'write' option"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 return TRUE;
3610}
3611
3612/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003613 * Check if a buffer is read-only (either 'readonly' option is set or file is
3614 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3615 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 */
3617 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003618check_readonly(int *forceit, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003620 stat_T st;
Bram Moolenaar5386a122007-06-28 20:02:32 +00003621
3622 /* Handle a file being readonly when the 'readonly' option is set or when
3623 * the file exists and permissions are read-only.
3624 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3625 * important for device checks but not here. */
3626 if (!*forceit && (buf->b_p_ro
3627 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3628 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 {
3630#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3631 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3632 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003633 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634
Bram Moolenaar5386a122007-06-28 20:02:32 +00003635 if (buf->b_p_ro)
3636 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3637 buf->b_fname);
3638 else
3639 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 +00003640 buf->b_fname);
3641
3642 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3643 {
3644 /* Set forceit, to force the writing of a readonly file */
3645 *forceit = TRUE;
3646 return FALSE;
3647 }
3648 else
3649 return TRUE;
3650 }
3651 else
3652#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003653 if (buf->b_p_ro)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003654 emsg(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003655 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003656 semsg(_("E505: \"%s\" is read-only (add ! to override)"),
Bram Moolenaar5386a122007-06-28 20:02:32 +00003657 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 return TRUE;
3659 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003660
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 return FALSE;
3662}
3663
3664/*
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003665 * Try to abandon the current file and edit a new or existing file.
3666 * "fnum" is the number of the file, if zero use "ffname_arg"/"sfname_arg".
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003667 * "lnum" is the line number for the cursor in the new file (if non-zero).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 *
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003669 * Return:
3670 * GETFILE_ERROR for "normal" error,
3671 * GETFILE_NOT_WRITTEN for "not written" error,
3672 * GETFILE_SAME_FILE for success
3673 * GETFILE_OPEN_OTHER for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 */
3675 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003676getfile(
3677 int fnum,
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003678 char_u *ffname_arg,
3679 char_u *sfname_arg,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003680 int setpm,
3681 linenr_T lnum,
3682 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683{
Bram Moolenaar3d6014f2018-10-11 19:27:47 +02003684 char_u *ffname = ffname_arg;
3685 char_u *sfname = sfname_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 int other;
3687 int retval;
3688 char_u *free_me = NULL;
3689
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003690 if (text_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003691 return GETFILE_ERROR;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003692 if (curbuf_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003693 return GETFILE_ERROR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694
3695 if (fnum == 0)
3696 {
3697 /* make ffname full path, set sfname */
3698 fname_expand(curbuf, &ffname, &sfname);
3699 other = otherfile(ffname);
3700 free_me = ffname; /* has been allocated, free() later */
3701 }
3702 else
3703 other = (fnum != curbuf->b_fnum);
3704
3705 if (other)
3706 ++no_wait_return; /* don't wait for autowrite message */
Bram Moolenaareb44a682017-08-03 22:44:55 +02003707 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3709 {
3710#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3711 if (p_confirm && p_write)
3712 dialog_changed(curbuf, FALSE);
3713 if (curbufIsChanged())
3714#endif
3715 {
3716 if (other)
3717 --no_wait_return;
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02003718 no_write_message();
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003719 retval = GETFILE_NOT_WRITTEN; /* file has been changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 goto theend;
3721 }
3722 }
3723 if (other)
3724 --no_wait_return;
3725 if (setpm)
3726 setpcmark();
3727 if (!other)
3728 {
3729 if (lnum != 0)
3730 curwin->w_cursor.lnum = lnum;
3731 check_cursor_lnum();
3732 beginline(BL_SOL | BL_FIX);
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003733 retval = GETFILE_SAME_FILE; /* it's in the same file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 }
3735 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaareb44a682017-08-03 22:44:55 +02003736 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003737 curwin) == OK)
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003738 retval = GETFILE_OPEN_OTHER; /* opened another file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 else
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003740 retval = GETFILE_ERROR; /* error encountered */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741
3742theend:
3743 vim_free(free_me);
3744 return retval;
3745}
3746
3747/*
3748 * start editing a new file
3749 *
3750 * fnum: file number; if zero use ffname/sfname
3751 * ffname: the file name
3752 * - full path if sfname used,
3753 * - any file name if sfname is NULL
3754 * - empty string to re-edit with the same file name (but may be
3755 * in a different directory)
3756 * - NULL to start an empty buffer
3757 * sfname: the short file name (or NULL)
3758 * eap: contains the command to be executed after loading the file and
3759 * forced 'ff' and 'fenc'
3760 * newlnum: if > 0: put cursor on this line number (if possible)
3761 * if ECMD_LASTL: use last position in loaded file
3762 * if ECMD_LAST: use last position in all files
3763 * if ECMD_ONE: use first line
3764 * flags:
3765 * ECMD_HIDE: if TRUE don't free the current buffer
3766 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3767 * ECMD_OLDBUF: use existing buffer if it exists
3768 * ECMD_FORCEIT: ! used for Ex command
3769 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003770 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003771 * window, NULL when splitting the window first. When not NULL info
3772 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 *
3774 * return FAIL for failure, OK otherwise
3775 */
3776 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003777do_ecmd(
3778 int fnum,
3779 char_u *ffname,
3780 char_u *sfname,
3781 exarg_T *eap, /* can be NULL! */
3782 linenr_T newlnum,
3783 int flags,
3784 win_T *oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785{
3786 int other_file; /* TRUE if editing another file */
3787 int oldbuf; /* TRUE if using existing buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 int auto_buf = FALSE; /* TRUE if autocommands brought us
3789 into the buffer unexpectedly */
3790 char_u *new_name = NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003791#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003792 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793#endif
3794 buf_T *buf;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003795 bufref_T bufref;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003796 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 char_u *free_fname = NULL;
3798#ifdef FEAT_BROWSE
3799 char_u *browse_file = NULL;
3800#endif
3801 int retval = FAIL;
3802 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003803 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 linenr_T topline = 0;
3805 int newcol = -1;
3806 int solcol = -1;
3807 pos_T *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003809#ifdef FEAT_SPELL
3810 int did_get_winopts = FALSE;
3811#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003812 int readfile_flags = 0;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003813 int did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814
3815 if (eap != NULL)
3816 command = eap->do_ecmd_cmd;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003817 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818
3819 if (fnum != 0)
3820 {
3821 if (fnum == curbuf->b_fnum) /* file is already being edited */
3822 return OK; /* nothing to do */
3823 other_file = TRUE;
3824 }
3825 else
3826 {
3827#ifdef FEAT_BROWSE
3828 if (cmdmod.browse)
3829 {
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003830 if (
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003831# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003832 !gui.in_use &&
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003833# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003834 au_has_group((char_u *)"FileExplorer"))
3835 {
3836 /* No browsing supported but we do have the file explorer:
3837 * Edit the directory. */
3838 if (ffname == NULL || !mch_isdir(ffname))
3839 ffname = (char_u *)".";
3840 }
3841 else
3842 {
3843 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003845 if (browse_file == NULL)
3846 goto theend;
3847 ffname = browse_file;
3848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 }
3850#endif
3851 /* if no short name given, use ffname for short name */
3852 if (sfname == NULL)
3853 sfname = ffname;
3854#ifdef USE_FNAME_CASE
3855# ifdef USE_LONG_FNAME
3856 if (USE_LONG_FNAME)
3857# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003858 if (sfname != NULL)
3859 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860#endif
3861
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3863 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864
3865 if (ffname == NULL)
3866 other_file = TRUE;
3867 /* there is no file name */
3868 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3869 other_file = FALSE;
3870 else
3871 {
3872 if (*ffname == NUL) /* re-edit with same file name */
3873 {
3874 ffname = curbuf->b_ffname;
3875 sfname = curbuf->b_fname;
3876 }
3877 free_fname = fix_fname(ffname); /* may expand to full path name */
3878 if (free_fname != NULL)
3879 ffname = free_fname;
3880 other_file = otherfile(ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 }
3882 }
3883
3884 /*
3885 * if the file was changed we may not be allowed to abandon it
3886 * - if we are going to re-edit the same file
3887 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3888 */
3889 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3890 || (curbuf->b_nwindows == 1
3891 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003892 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3893 | (other_file ? 0 : CCGD_MULTWIN)
3894 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3895 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 {
3897 if (fnum == 0 && other_file && ffname != NULL)
3898 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3899 goto theend;
3900 }
3901
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 /*
3903 * End Visual mode before switching to another buffer, so the text can be
3904 * copied into the GUI selection buffer.
3905 */
3906 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003908#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003909 if ((command != NULL || newlnum > (linenr_T)0)
3910 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3911 {
3912 int len;
3913 char_u *p;
3914
3915 /* Set v:swapcommand for the SwapExists autocommands. */
3916 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003917 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003918 else
3919 len = 30;
3920 p = alloc((unsigned)len);
3921 if (p != NULL)
3922 {
3923 if (command != NULL)
3924 vim_snprintf((char *)p, len, ":%s\r", command);
3925 else
3926 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3927 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3928 did_set_swapcommand = TRUE;
3929 vim_free(p);
3930 }
3931 }
3932#endif
3933
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 /*
3935 * If we are starting to edit another file, open a (new) buffer.
3936 * Otherwise we re-use the current buffer.
3937 */
3938 if (other_file)
3939 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 if (!(flags & ECMD_ADDBUF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003942 if (!cmdmod.keepalt)
3943 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003944 if (oldwin != NULL)
3945 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 }
3947
3948 if (fnum)
3949 buf = buflist_findnr(fnum);
3950 else
3951 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 if (flags & ECMD_ADDBUF)
3953 {
3954 linenr_T tlnum = 1L;
3955
3956 if (command != NULL)
3957 {
3958 tlnum = atol((char *)command);
3959 if (tlnum <= 0)
3960 tlnum = 1L;
3961 }
3962 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3963 goto theend;
3964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 buf = buflist_new(ffname, sfname, 0L,
3966 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003967
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003968 /* autocommands may change curwin and curbuf */
3969 if (oldwin != NULL)
3970 oldwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003971 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 }
3973 if (buf == NULL)
3974 goto theend;
3975 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3976 {
3977 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 }
3979 else /* existing memfile */
3980 {
3981 oldbuf = TRUE;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003982 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 (void)buf_check_timestamp(buf, FALSE);
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003984 /* Check if autocommands made the buffer invalid or changed the
3985 * current buffer. */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003986 if (!bufref_valid(&bufref) || curbuf != old_curbuf.br_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 goto theend;
3988#ifdef FEAT_EVAL
3989 if (aborting()) /* autocmds may abort script processing */
3990 goto theend;
3991#endif
3992 }
3993
3994 /* May jump to last used line number for a loaded buffer or when asked
3995 * for explicitly */
3996 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3997 {
3998 pos = buflist_findfpos(buf);
3999 newlnum = pos->lnum;
4000 solcol = pos->col;
4001 }
4002
4003 /*
4004 * Make the (new) buffer the one used by the current window.
4005 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
4006 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01004007 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 */
4009 if (buf != curbuf)
4010 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 /*
4012 * Be careful: The autocommands may delete any buffer and change
4013 * the current buffer.
4014 * - If the buffer we are going to edit is deleted, give up.
4015 * - If the current buffer is deleted, prefer to load the new
4016 * buffer when loading a buffer is required. This avoids
4017 * loading another buffer which then must be closed again.
4018 * - If we ended up in the new buffer already, need to skip a few
4019 * things, set auto_buf.
4020 */
4021 if (buf->b_fname != NULL)
4022 new_name = vim_strsave(buf->b_fname);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004023 set_bufref(&au_new_curbuf, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004025 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004027 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 delbuf_msg(new_name); /* frees new_name */
4029 goto theend;
4030 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004031#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 if (aborting()) /* autocmds may abort script processing */
4033 {
4034 vim_free(new_name);
4035 goto theend;
4036 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004037#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 if (buf == curbuf) /* already in new buffer */
4039 auto_buf = TRUE;
4040 else
4041 {
Bram Moolenaar5a497892016-09-03 16:29:04 +02004042 win_T *the_curwin = curwin;
4043
4044 /* Set the w_closing flag to avoid that autocommands close the
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004045 * window. And set b_locked for the same reason. */
Bram Moolenaar5a497892016-09-03 16:29:04 +02004046 the_curwin->w_closing = TRUE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004047 ++buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +02004048
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004049 if (curbuf == old_curbuf.br_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 buf_copy_options(buf, BCO_ENTER);
4051
Bram Moolenaar5a497892016-09-03 16:29:04 +02004052 /* Close the link to the current buffer. This will set
Bram Moolenaaraeac9002016-09-06 22:15:08 +02004053 * oldwin->w_buffer to NULL. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004054 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00004055 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01004056 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057
Bram Moolenaar5a497892016-09-03 16:29:04 +02004058 the_curwin->w_closing = FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004059 --buf->b_locked;
Bram Moolenaarfc573802011-12-30 15:01:59 +01004060
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004061#ifdef FEAT_EVAL
Bram Moolenaar5a497892016-09-03 16:29:04 +02004062 /* autocmds may abort script processing */
4063 if (aborting() && curwin->w_buffer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 {
4065 vim_free(new_name);
4066 goto theend;
4067 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004068#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 /* Be careful again, like above. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004070 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004072 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 delbuf_msg(new_name); /* frees new_name */
4074 goto theend;
4075 }
4076 if (buf == curbuf) /* already in new buffer */
4077 auto_buf = TRUE;
4078 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02004080#ifdef FEAT_SYN_HL
4081 /*
4082 * <VN> We could instead free the synblock
4083 * and re-attach to buffer, perhaps.
4084 */
Bram Moolenaarf1d13472017-07-11 18:28:46 +02004085 if (curwin->w_buffer == NULL
4086 || curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02004087 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004088#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 curwin->w_buffer = buf;
4090 curbuf = buf;
4091 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004092
4093 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
4094 if (!oldbuf && eap != NULL)
4095 {
4096 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02004097#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004098 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02004099#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004100 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 }
4102
4103 /* May get the window options from the last time this buffer
4104 * was in this window (or another window). If not used
4105 * before, reset the local window options to the global
4106 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00004107 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004108#ifdef FEAT_SPELL
4109 did_get_winopts = TRUE;
4110#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 }
4112 vim_free(new_name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004113 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004114 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116
4117 curwin->w_pcmark.lnum = 1;
4118 curwin->w_pcmark.col = 0;
4119 }
4120 else /* !other_file */
4121 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02004122 if ((flags & ECMD_ADDBUF) || check_fname() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01004124
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 oldbuf = (flags & ECMD_OLDBUF);
4126 }
4127
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004128 /* Don't redraw until the cursor is in the right line, otherwise
4129 * autocommands may cause ml_get errors. */
4130 ++RedrawingDisabled;
4131 did_inc_redrawing_disabled = TRUE;
4132
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004133 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 if ((flags & ECMD_SET_HELP) || keep_help_flag)
4135 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004136 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 }
4138 else
4139 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140 /* Don't make a buffer listed if it's a help buffer. Useful when
4141 * using CTRL-O to go back to a help file. */
4142 if (!curbuf->b_help)
4143 set_buflisted(TRUE);
4144 }
4145
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 /* If autocommands change buffers under our fingers, forget about
4147 * editing the file. */
4148 if (buf != curbuf)
4149 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004150#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 if (aborting()) /* autocmds may abort script processing */
4152 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004153#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154
4155 /* Since we are starting to edit a file, consider the filetype to be
4156 * unset. Helps for when an autocommand changes files and expects syntax
4157 * highlighting to work in the other file. */
4158 did_filetype = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159
4160/*
4161 * other_file oldbuf
4162 * FALSE FALSE re-edit same file, buffer is re-used
4163 * FALSE TRUE re-edit same file, nothing changes
4164 * TRUE FALSE start editing new file, new buffer
4165 * TRUE TRUE start editing in existing buffer (nothing to do)
4166 */
4167 if (!other_file && !oldbuf) /* re-use the buffer */
4168 {
4169 set_last_cursor(curwin); /* may set b_last_cursor */
4170 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
4171 {
4172 newlnum = curwin->w_cursor.lnum;
4173 solcol = curwin->w_cursor.col;
4174 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 buf = curbuf;
4176 if (buf->b_fname != NULL)
4177 new_name = vim_strsave(buf->b_fname);
4178 else
4179 new_name = NULL;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004180 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004181
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004182 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
4183 {
4184 /* Save all the text, so that the reload can be undone.
4185 * Sync first so that this is a separate undo-able action. */
4186 u_sync(FALSE);
4187 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
4188 == FAIL)
Bram Moolenaar1e225822016-07-30 21:48:59 +02004189 {
4190 vim_free(new_name);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004191 goto theend;
Bram Moolenaar1e225822016-07-30 21:48:59 +02004192 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004193 u_unchanged(curbuf);
4194 buf_freeall(curbuf, BFA_KEEP_UNDO);
4195
4196 /* tell readfile() not to clear or reload undo info */
4197 readfile_flags = READ_KEEP_UNDO;
4198 }
4199 else
4200 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004201
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 /* If autocommands deleted the buffer we were going to re-edit, give
4203 * up and jump to the end. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004204 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 {
4206 delbuf_msg(new_name); /* frees new_name */
4207 goto theend;
4208 }
4209 vim_free(new_name);
4210
4211 /* If autocommands change buffers under our fingers, forget about
4212 * re-editing the file. Should do the buf_clear_file(), but perhaps
4213 * the autocommands changed the buffer... */
4214 if (buf != curbuf)
4215 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004216#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 if (aborting()) /* autocmds may abort script processing */
4218 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219#endif
4220 buf_clear_file(curbuf);
4221 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
4222 curbuf->b_op_end.lnum = 0;
4223 }
4224
4225/*
4226 * If we get here we are sure to start editing
4227 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 /* Assume success now */
4229 retval = OK;
4230
4231 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232 * Check if we are editing the w_arg_idx file in the argument list.
4233 */
4234 check_arg_idx(curwin);
4235
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 if (!auto_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 {
4238 /*
4239 * Set cursor and init window before reading the file and executing
4240 * autocommands. This allows for the autocommands to position the
4241 * cursor.
4242 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004243 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244
4245#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004246 /* It's possible that all lines in the buffer changed. Need to update
4247 * automatic folding for all windows where it's used. */
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004248 {
4249 win_T *win;
4250 tabpage_T *tp;
4251
4252 FOR_ALL_TAB_WINDOWS(tp, win)
4253 if (win->w_buffer == curbuf)
4254 foldUpdateAll(win);
4255 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256#endif
4257
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004258 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02004259 DO_AUTOCHDIR;
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004260
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 /*
4262 * Careful: open_buffer() and apply_autocmds() may change the current
4263 * buffer and window.
4264 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01004265 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 topline = curwin->w_topline;
4267 if (!oldbuf) /* need to read the file */
4268 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004269#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270 swap_exists_action = SEA_DIALOG;
4271#endif
4272 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
4273
4274 /*
4275 * Open the buffer and read the file.
4276 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004277#if defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004278 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 retval = FAIL;
4280#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004281 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282#endif
4283
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004284#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 if (swap_exists_action == SEA_QUIT)
4286 retval = FAIL;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004287 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288#endif
4289 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 else
4291 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004292 /* Read the modelines, but only to set window-local options. Any
4293 * buffer-local options have already been set and may have been
4294 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00004295 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004296
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
4298 &retval);
4299 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
4300 &retval);
4301 }
4302 check_arg_idx(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303
Bram Moolenaareab316b2015-03-24 11:46:30 +01004304 /* If autocommands change the cursor position or topline, we should
Bram Moolenaaradb8fbe2018-06-04 20:34:23 +02004305 * keep it. Also when it moves within a line. But not when it moves
4306 * to the first non-blank. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004307 if (!EQUAL_POS(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 {
Bram Moolenaaradb8fbe2018-06-04 20:34:23 +02004309 char_u *text = ml_get_curline();
4310
4311 if (curwin->w_cursor.lnum != orig_pos.lnum
4312 || curwin->w_cursor.col != (int)(skipwhite(text) - text))
4313 {
4314 newlnum = curwin->w_cursor.lnum;
4315 newcol = curwin->w_cursor.col;
4316 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 }
4318 if (curwin->w_topline == topline)
4319 topline = 0;
4320
4321 /* Even when cursor didn't move we need to recompute topline. */
4322 changed_line_abv_curs();
4323
4324#ifdef FEAT_TITLE
4325 maketitle();
4326#endif
4327 }
4328
4329#ifdef FEAT_DIFF
4330 /* Tell the diff stuff that this buffer is new and/or needs updating.
4331 * Also needed when re-editing the same buffer, because unloading will
4332 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004333 if (curwin->w_p_diff)
4334 {
4335 diff_buf_add(curbuf);
4336 diff_invalidate(curbuf);
4337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338#endif
4339
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004340#ifdef FEAT_SPELL
4341 /* If the window options were changed may need to set the spell language.
4342 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02004343 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
4344 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004345#endif
4346
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 if (command == NULL)
4348 {
4349 if (newcol >= 0) /* position set by autocommands */
4350 {
4351 curwin->w_cursor.lnum = newlnum;
4352 curwin->w_cursor.col = newcol;
4353 check_cursor();
4354 }
4355 else if (newlnum > 0) /* line number from caller or old position */
4356 {
4357 curwin->w_cursor.lnum = newlnum;
4358 check_cursor_lnum();
4359 if (solcol >= 0 && !p_sol)
4360 {
4361 /* 'sol' is off: Use last known column. */
4362 curwin->w_cursor.col = solcol;
4363 check_cursor_col();
4364#ifdef FEAT_VIRTUALEDIT
4365 curwin->w_cursor.coladd = 0;
4366#endif
4367 curwin->w_set_curswant = TRUE;
4368 }
4369 else
4370 beginline(BL_SOL | BL_FIX);
4371 }
4372 else /* no line number, go to last line in Ex mode */
4373 {
4374 if (exmode_active)
4375 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4376 beginline(BL_WHITE | BL_FIX);
4377 }
4378 }
4379
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 /* Check if cursors in other windows on the same buffer are still valid */
4381 check_lnums(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382
4383 /*
4384 * Did not read the file, need to show some info about the file.
4385 * Do this after setting the cursor.
4386 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004387 if (oldbuf && !auto_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 {
4389 int msg_scroll_save = msg_scroll;
4390
4391 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
4392 * message. */
4393 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
4394 msg_scroll = FALSE;
4395 if (!msg_scroll) /* wait a bit when overwriting an error msg */
4396 check_for_delay(FALSE);
4397 msg_start();
4398 msg_scroll = msg_scroll_save;
4399 msg_scrolled_ign = TRUE;
4400
Bram Moolenaar426dd022016-03-15 15:09:29 +01004401 if (!shortmess(SHM_FILEINFO))
4402 fileinfo(FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403
4404 msg_scrolled_ign = FALSE;
4405 }
4406
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02004407#ifdef FEAT_VIMINFO
4408 curbuf->b_last_used = vim_time();
4409#endif
4410
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 if (command != NULL)
4412 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
4413
4414#ifdef FEAT_KEYMAP
4415 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004416 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417#endif
4418
4419 --RedrawingDisabled;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004420 did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 if (!skip_redraw)
4422 {
4423 n = p_so;
4424 if (topline == 0 && command == NULL)
4425 p_so = 999; /* force cursor halfway the window */
4426 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 curwin->w_scbind_pos = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 p_so = n;
4429 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
4430 }
4431
4432 if (p_im)
4433 need_start_insertmode = TRUE;
4434
Bram Moolenaar15833232018-02-03 18:33:17 +01004435#ifdef FEAT_AUTOCHDIR
4436 /* Change directories when the 'acd' option is set and we aren't already in
4437 * that directory (should already be done above). Expect getcwd() to be
4438 * faster than calling shorten_fnames() unnecessarily. */
4439 if (p_acd && curbuf->b_ffname != NULL)
4440 {
4441 char_u curdir[MAXPATHL];
4442 char_u filedir[MAXPATHL];
4443
4444 vim_strncpy(filedir, curbuf->b_ffname, MAXPATHL - 1);
4445 *gettail_sep(filedir) = NUL;
4446 if (mch_dirname(curdir, MAXPATHL) != FAIL
4447 && vim_fnamecmp(curdir, filedir) != 0)
4448 do_autochdir();
4449 }
4450#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01004452#if defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02004453 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004456 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00004457 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458# endif
4459 }
4460#endif
4461
4462theend:
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004463 if (did_inc_redrawing_disabled)
4464 --RedrawingDisabled;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004465#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004466 if (did_set_swapcommand)
4467 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
4468#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469#ifdef FEAT_BROWSE
4470 vim_free(browse_file);
4471#endif
4472 vim_free(free_fname);
4473 return retval;
4474}
4475
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004477delbuf_msg(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004479 semsg(_("E143: Autocommands unexpectedly deleted new buffer %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 name == NULL ? (char_u *)"" : name);
4481 vim_free(name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004482 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004483 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004486static int append_indent = 0; /* autoindent for first line */
4487
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488/*
4489 * ":insert" and ":append", also used by ":change"
4490 */
4491 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004492ex_append(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493{
4494 char_u *theline;
4495 int did_undo = FALSE;
4496 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004497 int indent = 0;
4498 char_u *p;
4499 int vcol;
4500 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004502 /* the ! flag toggles autoindent */
4503 if (eap->forceit)
4504 curbuf->b_p_ai = !curbuf->b_p_ai;
4505
4506 /* First autoindent comes from the line we start on */
4507 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
4508 append_indent = get_indent_lnum(lnum);
4509
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 if (eap->cmdidx != CMD_append)
4511 --lnum;
4512
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004513 /* when the buffer is empty need to delete the dummy line */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004514 if (empty && lnum == 1)
4515 lnum = 0;
4516
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 State = INSERT; /* behave like in Insert mode */
4518 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
4519 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004520
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004521 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 {
4523 msg_scroll = TRUE;
4524 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004525 if (curbuf->b_p_ai)
4526 {
4527 if (append_indent >= 0)
4528 {
4529 indent = append_indent;
4530 append_indent = -1;
4531 }
4532 else if (lnum > 0)
4533 indent = get_indent_lnum(lnum);
4534 }
4535 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004537 {
4538 /* No getline() function, use the lines that follow. This ends
4539 * when there is no more. */
4540 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
4541 break;
4542 p = vim_strchr(eap->nextcmd, NL);
4543 if (p == NULL)
4544 p = eap->nextcmd + STRLEN(eap->nextcmd);
4545 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4546 if (*p != NUL)
4547 ++p;
4548 eap->nextcmd = p;
4549 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004551 {
4552 int save_State = State;
4553
4554 /* Set State to avoid the cursor shape to be set to INSERT mode
4555 * when getline() returns. */
4556 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557 theline = eap->getline(
4558#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004559 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004561 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004562 State = save_State;
4563 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004565 if (theline == NULL)
4566 break;
4567
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004568 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4569 if (ex_keep_indent)
4570 append_indent = indent;
4571
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004572 /* Look for the "." after automatic indent. */
4573 vcol = 0;
4574 for (p = theline; indent > vcol; ++p)
4575 {
4576 if (*p == ' ')
4577 ++vcol;
4578 else if (*p == TAB)
4579 vcol += 8 - vcol % 8;
4580 else
4581 break;
4582 }
4583 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004584 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4585 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 {
4587 vim_free(theline);
4588 break;
4589 }
4590
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004591 /* don't use autoindent if nothing was typed. */
4592 if (p[0] == NUL)
4593 theline[0] = NUL;
4594
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 did_undo = TRUE;
4596 ml_append(lnum, theline, (colnr_T)0, FALSE);
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004597 appended_lines_mark(lnum + (empty ? 1 : 0), 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598
4599 vim_free(theline);
4600 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004601
4602 if (empty)
4603 {
4604 ml_delete(2L, FALSE);
4605 empty = FALSE;
4606 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 }
4608 State = NORMAL;
4609
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004610 if (eap->forceit)
4611 curbuf->b_p_ai = !curbuf->b_p_ai;
4612
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004614 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 * "end" is set to lnum when something has been appended, otherwise
4616 * it is the same than "start" -- Acevedo */
4617 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4618 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4619 if (eap->cmdidx != CMD_append)
4620 --curbuf->b_op_start.lnum;
4621 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4622 ? lnum : curbuf->b_op_start.lnum;
4623 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4624 curwin->w_cursor.lnum = lnum;
4625 check_cursor_lnum();
4626 beginline(BL_SOL | BL_FIX);
4627
4628 need_wait_return = FALSE; /* don't use wait_return() now */
4629 ex_no_reprint = TRUE;
4630}
4631
4632/*
4633 * ":change"
4634 */
4635 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004636ex_change(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637{
4638 linenr_T lnum;
4639
4640 if (eap->line2 >= eap->line1
4641 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4642 return;
4643
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004644 /* the ! flag toggles autoindent */
4645 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4646 append_indent = get_indent_lnum(eap->line1);
4647
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4649 {
4650 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4651 break;
4652 ml_delete(eap->line1, FALSE);
4653 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004654
4655 /* make sure the cursor is not beyond the end of the file now */
4656 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4658
4659 /* ":append" on the line above the deleted lines. */
4660 eap->line2 = eap->line1;
4661 ex_append(eap);
4662}
4663
4664 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004665ex_z(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666{
4667 char_u *x;
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004668 long bigness;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004669 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 int minus = 0;
4671 linenr_T start, end, curs, i;
4672 int j;
4673 linenr_T lnum = eap->line2;
4674
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004675 /* Vi compatible: ":z!" uses display height, without a count uses
4676 * 'scroll' */
4677 if (eap->forceit)
4678 bigness = curwin->w_height;
Bram Moolenaar459ca562016-11-10 18:16:33 +01004679 else if (!ONE_WINDOW)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004680 bigness = curwin->w_height - 3;
Bram Moolenaar631abc32014-02-22 22:27:47 +01004681 else
4682 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 if (bigness < 1)
4684 bigness = 1;
4685
4686 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004687 kind = x;
4688 if (*kind == '-' || *kind == '+' || *kind == '='
4689 || *kind == '^' || *kind == '.')
4690 ++x;
4691 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 ++x;
4693
4694 if (*x != 0)
4695 {
4696 if (!VIM_ISDIGIT(*x))
4697 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004698 emsg(_("E144: non-numeric argument to :z"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 return;
4700 }
4701 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004702 {
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004703 bigness = atol((char *)x);
4704
4705 /* bigness could be < 0 if atol(x) overflows. */
4706 if (bigness > 2 * curbuf->b_ml.ml_line_count || bigness < 0)
4707 bigness = 2 * curbuf->b_ml.ml_line_count;
4708
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004709 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004710 if (*kind == '=')
4711 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004712 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 }
4714
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004715 /* the number of '-' and '+' multiplies the distance */
4716 if (*kind == '-' || *kind == '+')
4717 for (x = kind + 1; *x == *kind; ++x)
4718 ;
4719
4720 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 {
4722 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004723 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4724 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004725 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 break;
4727
4728 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004729 start = lnum - (bigness + 1) / 2 + 1;
4730 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 curs = lnum;
4732 minus = 1;
4733 break;
4734
4735 case '^':
4736 start = lnum - bigness * 2;
4737 end = lnum - bigness;
4738 curs = lnum - bigness;
4739 break;
4740
4741 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004742 start = lnum - (bigness + 1) / 2 + 1;
4743 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 curs = end;
4745 break;
4746
4747 default: /* '+' */
4748 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004749 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004750 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004751 else if (eap->addr_count == 0)
4752 ++start;
4753 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 curs = end;
4755 break;
4756 }
4757
4758 if (start < 1)
4759 start = 1;
4760
4761 if (end > curbuf->b_ml.ml_line_count)
4762 end = curbuf->b_ml.ml_line_count;
4763
4764 if (curs > curbuf->b_ml.ml_line_count)
4765 curs = curbuf->b_ml.ml_line_count;
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004766 else if (curs < 1)
4767 curs = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768
4769 for (i = start; i <= end; i++)
4770 {
4771 if (minus && i == lnum)
4772 {
4773 msg_putchar('\n');
4774
4775 for (j = 1; j < Columns; j++)
4776 msg_putchar('-');
4777 }
4778
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004779 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780
4781 if (minus && i == lnum)
4782 {
4783 msg_putchar('\n');
4784
4785 for (j = 1; j < Columns; j++)
4786 msg_putchar('-');
4787 }
4788 }
4789
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004790 if (curwin->w_cursor.lnum != curs)
4791 {
4792 curwin->w_cursor.lnum = curs;
4793 curwin->w_cursor.col = 0;
4794 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 ex_no_reprint = TRUE;
4796}
4797
4798/*
4799 * Check if the restricted flag is set.
4800 * If so, give an error message and return TRUE.
4801 * Otherwise, return FALSE.
4802 */
4803 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004804check_restricted(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805{
4806 if (restricted)
4807 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004808 emsg(_("E145: Shell commands not allowed in rvim"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 return TRUE;
4810 }
4811 return FALSE;
4812}
4813
4814/*
4815 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4816 * If so, give an error message and return TRUE.
4817 * Otherwise, return FALSE.
4818 */
4819 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004820check_secure(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821{
4822 if (secure)
4823 {
4824 secure = 2;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004825 emsg(_(e_curdir));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 return TRUE;
4827 }
4828#ifdef HAVE_SANDBOX
4829 /*
4830 * In the sandbox more things are not allowed, including the things
4831 * disallowed in secure mode.
4832 */
4833 if (sandbox != 0)
4834 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004835 emsg(_(e_sandbox));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 return TRUE;
4837 }
4838#endif
4839 return FALSE;
4840}
4841
4842static char_u *old_sub = NULL; /* previous substitute pattern */
4843static int global_need_beginline; /* call beginline() after ":g" */
4844
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004845/*
4846 * Flags that are kept between calls to :substitute.
4847 */
4848typedef struct {
4849 int do_all; /* do multiple substitutions per line */
4850 int do_ask; /* ask for confirmation */
4851 int do_count; /* count only */
4852 int do_error; /* if false, ignore errors */
4853 int do_print; /* print last line with subs. */
4854 int do_list; /* list last line with subs. */
4855 int do_number; /* list last line with line nr*/
4856 int do_ic; /* ignore case flag */
4857} subflags_T;
4858
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859/* do_sub()
4860 *
4861 * Perform a substitution from line eap->line1 to line eap->line2 using the
4862 * command pointed to by eap->arg which should be of the form:
4863 *
4864 * /pattern/substitution/{flags}
4865 *
4866 * The usual escapes are supported as described in the regexp docs.
4867 */
4868 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004869do_sub(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870{
4871 linenr_T lnum;
4872 long i = 0;
4873 regmmatch_T regmatch;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004874 static subflags_T subflags = {FALSE, FALSE, FALSE, TRUE, FALSE,
4875 FALSE, FALSE, 0};
4876#ifdef FEAT_EVAL
4877 subflags_T subflags_save;
4878#endif
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004879 int save_do_all; /* remember user specified 'g' flag */
4880 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4882 int delimiter;
4883 int sublen;
4884 int got_quit = FALSE;
4885 int got_match = FALSE;
4886 int temp;
4887 int which_pat;
4888 char_u *cmd;
4889 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004890 linenr_T first_line = 0; /* first changed line */
4891 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 * change */
4893 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4894 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004895 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004896 char_u *sub_firstline; /* allocated copy of first sub line */
4897 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004898 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004899 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004900#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004901 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903
4904 cmd = eap->arg;
4905 if (!global_busy)
4906 {
4907 sub_nsubs = 0;
4908 sub_nlines = 0;
4909 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004910 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 if (eap->cmdidx == CMD_tilde)
4913 which_pat = RE_LAST; /* use last used regexp */
4914 else
4915 which_pat = RE_SUBST; /* use last substitute regexp */
4916
4917 /* new pattern and substitution */
Bram Moolenaar1c465442017-03-12 20:10:05 +01004918 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4920 {
4921 /* don't accept alphanumeric for separator */
4922 if (isalpha(*cmd))
4923 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004924 emsg(_("E146: Regular expressions can't be delimited by letters"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 return;
4926 }
4927 /*
4928 * undocumented vi feature:
4929 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4930 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4931 */
4932 if (*cmd == '\\')
4933 {
4934 ++cmd;
4935 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4936 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004937 emsg(_(e_backslash));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 return;
4939 }
4940 if (*cmd != '&')
4941 which_pat = RE_SEARCH; /* use last '/' pattern */
4942 pat = (char_u *)""; /* empty search pattern */
4943 delimiter = *cmd++; /* remember delimiter character */
4944 }
4945 else /* find the end of the regexp */
4946 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004947#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4948 if (p_altkeymap && curwin->w_p_rl)
4949 lrF_sub(cmd);
4950#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 which_pat = RE_LAST; /* use last used regexp */
4952 delimiter = *cmd++; /* remember delimiter character */
4953 pat = cmd; /* remember start of search pat */
4954 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4955 if (cmd[0] == delimiter) /* end delimiter found */
4956 *cmd++ = NUL; /* replace it with a NUL */
4957 }
4958
4959 /*
4960 * Small incompatibility: vi sees '\n' as end of the command, but in
4961 * Vim we want to use '\n' to find/substitute a NUL.
4962 */
4963 sub = cmd; /* remember the start of the substitution */
4964
4965 while (cmd[0])
4966 {
4967 if (cmd[0] == delimiter) /* end delimiter found */
4968 {
4969 *cmd++ = NUL; /* replace it with a NUL */
4970 break;
4971 }
4972 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4973 ++cmd;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004974 MB_PTR_ADV(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 }
4976
4977 if (!eap->skip)
4978 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004979 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4980 if (STRCMP(sub, "%") == 0
4981 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4982 {
4983 if (old_sub == NULL) /* there is no previous command */
4984 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004985 emsg(_(e_nopresub));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004986 return;
4987 }
4988 sub = old_sub;
4989 }
4990 else
4991 {
4992 vim_free(old_sub);
4993 old_sub = vim_strsave(sub);
4994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 }
4996 }
4997 else if (!eap->skip) /* use previous pattern and substitution */
4998 {
4999 if (old_sub == NULL) /* there is no previous command */
5000 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005001 emsg(_(e_nopresub));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 return;
5003 }
5004 pat = NULL; /* search_regcomp() will use previous pattern */
5005 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00005006
5007 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
5008 * last column after using "$". */
5009 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 }
5011
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02005012 /* Recognize ":%s/\n//" and turn it into a join command, which is much
5013 * more efficient.
5014 * TODO: find a generic solution to make line-joining operations more
5015 * efficient, avoid allocating a string that grows in size.
5016 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02005017 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02005018 && *sub == NUL
5019 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
5020 || *cmd == 'p' || *cmd == '#'))))
5021 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01005022 linenr_T joined_lines_count;
5023
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02005024 curwin->w_cursor.lnum = eap->line1;
5025 if (*cmd == 'l')
5026 eap->flags = EXFLAG_LIST;
5027 else if (*cmd == '#')
5028 eap->flags = EXFLAG_NR;
5029 else if (*cmd == 'p')
5030 eap->flags = EXFLAG_PRINT;
5031
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01005032 /* The number of lines joined is the number of lines in the range plus
5033 * one. One less when the last line is included. */
5034 joined_lines_count = eap->line2 - eap->line1 + 1;
5035 if (eap->line2 < curbuf->b_ml.ml_line_count)
5036 ++joined_lines_count;
5037 if (joined_lines_count > 1)
5038 {
5039 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
5040 sub_nsubs = joined_lines_count - 1;
5041 sub_nlines = 1;
5042 (void)do_sub_msg(FALSE);
5043 ex_may_print(eap);
5044 }
5045
5046 if (!cmdmod.keeppatterns)
5047 save_re_pat(RE_SUBST, pat, p_magic);
5048#ifdef FEAT_CMDHIST
5049 /* put pattern in history */
5050 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
5051#endif
5052
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02005053 return;
5054 }
5055
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 /*
5057 * Find trailing options. When '&' is used, keep old options.
5058 */
5059 if (*cmd == '&')
5060 ++cmd;
5061 else
5062 {
5063 if (!p_ed)
5064 {
5065 if (p_gd) /* default is global on */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005066 subflags.do_all = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005068 subflags.do_all = FALSE;
5069 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005071 subflags.do_error = TRUE;
5072 subflags.do_print = FALSE;
5073 subflags.do_count = FALSE;
5074 subflags.do_number = FALSE;
5075 subflags.do_ic = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 }
5077 while (*cmd)
5078 {
5079 /*
5080 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
5081 * 'r' is never inverted.
5082 */
5083 if (*cmd == 'g')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005084 subflags.do_all = !subflags.do_all;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 else if (*cmd == 'c')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005086 subflags.do_ask = !subflags.do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005087 else if (*cmd == 'n')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005088 subflags.do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 else if (*cmd == 'e')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005090 subflags.do_error = !subflags.do_error;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 else if (*cmd == 'r') /* use last used regexp */
5092 which_pat = RE_LAST;
5093 else if (*cmd == 'p')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005094 subflags.do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005095 else if (*cmd == '#')
5096 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005097 subflags.do_print = TRUE;
5098 subflags.do_number = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005099 }
5100 else if (*cmd == 'l')
5101 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005102 subflags.do_print = TRUE;
5103 subflags.do_list = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005104 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 else if (*cmd == 'i') /* ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005106 subflags.do_ic = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 else if (*cmd == 'I') /* don't ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005108 subflags.do_ic = 'I';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 else
5110 break;
5111 ++cmd;
5112 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005113 if (subflags.do_count)
5114 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005116 save_do_all = subflags.do_all;
5117 save_do_ask = subflags.do_ask;
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005118
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 /*
5120 * check for a trailing count
5121 */
5122 cmd = skipwhite(cmd);
5123 if (VIM_ISDIGIT(*cmd))
5124 {
5125 i = getdigits(&cmd);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005126 if (i <= 0 && !eap->skip && subflags.do_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005128 emsg(_(e_zerocount));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 return;
5130 }
5131 eap->line1 = eap->line2;
5132 eap->line2 += i - 1;
5133 if (eap->line2 > curbuf->b_ml.ml_line_count)
5134 eap->line2 = curbuf->b_ml.ml_line_count;
5135 }
5136
5137 /*
5138 * check for trailing command or garbage
5139 */
5140 cmd = skipwhite(cmd);
5141 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
5142 {
5143 eap->nextcmd = check_nextcmd(cmd);
5144 if (eap->nextcmd == NULL)
5145 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005146 emsg(_(e_trailing));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 return;
5148 }
5149 }
5150
5151 if (eap->skip) /* not executing commands, only parsing */
5152 return;
5153
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005154 if (!subflags.do_count && !curbuf->b_p_ma)
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005155 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005156 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005157 emsg(_(e_modifiable));
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005158 return;
5159 }
5160
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5162 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005163 if (subflags.do_error)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005164 emsg(_(e_invcmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 return;
5166 }
5167
5168 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005169 if (subflags.do_ic == 'i')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 regmatch.rmm_ic = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005171 else if (subflags.do_ic == 'I')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 regmatch.rmm_ic = FALSE;
5173
5174 sub_firstline = NULL;
5175
5176 /*
5177 * ~ in the substitute pattern is replaced with the old pattern.
5178 * We do it here once to avoid it to be replaced over and over again.
5179 * But don't do it when it starts with "\=", then it's an expression.
5180 */
5181 if (!(sub[0] == '\\' && sub[1] == '='))
5182 sub = regtilde(sub, p_magic);
5183
5184 /*
5185 * Check for a match on each line.
5186 */
5187 line2 = eap->line2;
5188 for (lnum = eap->line1; lnum <= line2 && !(got_quit
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005189#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 || aborting()
5191#endif
5192 ); ++lnum)
5193 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005194 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005195 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 if (nmatch)
5197 {
5198 colnr_T copycol;
5199 colnr_T matchcol;
5200 colnr_T prev_matchcol = MAXCOL;
5201 char_u *new_end, *new_start = NULL;
5202 unsigned new_start_len = 0;
5203 char_u *p1;
5204 int did_sub = FALSE;
5205 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005206 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207 long nmatch_tl = 0; /* nr of lines matched below lnum */
5208 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005209 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005210 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211
5212 /*
5213 * The new text is build up step by step, to avoid too much
5214 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00005215 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216 * copycol Column in the old text where we started
5217 * looking for a match; from here old text still
5218 * needs to be copied to the new text.
5219 * matchcol Column number of the old text where to look
5220 * for the next match. It's just after the
5221 * previous match or one further.
5222 * prev_matchcol Column just after the previous match (if any).
5223 * Mostly equal to matchcol, except for the first
5224 * match and after skipping an empty match.
5225 * regmatch.*pos Where the pattern matched in the old text.
5226 * new_start The new text, all that has been produced so
5227 * far.
5228 * new_end The new text, where to append new text.
5229 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005230 * lnum The line number where we found the start of
5231 * the match. Can be below the line we searched
5232 * when there is a \n before a \zs in the
5233 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 * sub_firstlnum The line number in the buffer where to look
5235 * for a match. Can be different from "lnum"
5236 * when the pattern or substitute string contains
5237 * line breaks.
5238 *
5239 * Special situations:
5240 * - When the substitute string contains a line break, the part up
5241 * to the line break is inserted in the text, but the copy of
5242 * the original line is kept. "sub_firstlnum" is adjusted for
5243 * the inserted lines.
5244 * - When the matched pattern contains a line break, the old line
5245 * is taken from the line at the end of the pattern. The lines
5246 * in the match are deleted later, "sub_firstlnum" is adjusted
5247 * accordingly.
5248 *
5249 * The new text is built up in new_start[]. It has some extra
5250 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005251 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 *
5253 * Make a copy of the old line, so it won't be taken away when
5254 * updating the screen or handling a multi-line match. The "old_"
5255 * pointers point into this copy.
5256 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005257 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 copycol = 0;
5259 matchcol = 0;
5260
5261 /* At first match, remember current cursor position. */
5262 if (!got_match)
5263 {
5264 setpcmark();
5265 got_match = TRUE;
5266 }
5267
5268 /*
5269 * Loop until nothing more to replace in this line.
5270 * 1. Handle match with empty string.
5271 * 2. If do_ask is set, ask for confirmation.
5272 * 3. substitute the string.
5273 * 4. if do_all is set, find next match
5274 * 5. break if there isn't another match in this line
5275 */
5276 for (;;)
5277 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005278 /* Advance "lnum" to the line where the match starts. The
5279 * match does not start in the first line when there is a line
5280 * break before \zs. */
5281 if (regmatch.startpos[0].lnum > 0)
5282 {
5283 lnum += regmatch.startpos[0].lnum;
5284 sub_firstlnum += regmatch.startpos[0].lnum;
5285 nmatch -= regmatch.startpos[0].lnum;
Bram Moolenaard23a8232018-02-10 18:45:26 +01005286 VIM_CLEAR(sub_firstline);
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005287 }
5288
5289 if (sub_firstline == NULL)
5290 {
5291 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5292 if (sub_firstline == NULL)
5293 {
5294 vim_free(new_start);
5295 goto outofmem;
5296 }
5297 }
5298
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 /* Save the line number of the last change for the final
5300 * cursor position (just like Vi). */
5301 curwin->w_cursor.lnum = lnum;
5302 do_again = FALSE;
5303
5304 /*
5305 * 1. Match empty string does not count, except for first
5306 * match. This reproduces the strange vi behaviour.
5307 * This also catches endless loops.
5308 */
5309 if (matchcol == prev_matchcol
5310 && regmatch.endpos[0].lnum == 0
5311 && matchcol == regmatch.endpos[0].col)
5312 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00005313 if (sub_firstline[matchcol] == NUL)
5314 /* We already were at the end of the line. Don't look
5315 * for a match in this line again. */
5316 skip_match = TRUE;
5317 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02005318 {
5319 /* search for a match at next column */
5320#ifdef FEAT_MBYTE
5321 if (has_mbyte)
5322 matchcol += mb_ptr2len(sub_firstline + matchcol);
5323 else
5324#endif
5325 ++matchcol;
5326 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 goto skip;
5328 }
5329
5330 /* Normally we continue searching for a match just after the
5331 * previous match. */
5332 matchcol = regmatch.endpos[0].col;
5333 prev_matchcol = matchcol;
5334
5335 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00005336 * 2. If do_count is set only increase the counter.
5337 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005339 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005340 {
5341 /* For a multi-line match, put matchcol at the NUL at
5342 * the end of the line and set nmatch to one, so that
5343 * we continue looking for a match on the next line.
5344 * Avoids that ":s/\nB\@=//gc" get stuck. */
5345 if (nmatch > 1)
5346 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005347 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00005348 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00005349 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005350 }
5351 sub_nsubs++;
5352 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005353#ifdef FEAT_EVAL
5354 /* Skip the substitution, unless an expression is used,
5355 * then it is evaluated in the sandbox. */
5356 if (!(sub[0] == '\\' && sub[1] == '='))
5357#endif
5358 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005359 }
5360
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005361 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00005363 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005364
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 /* change State to CONFIRM, so that the mouse works
5366 * properly */
5367 save_State = State;
5368 State = CONFIRM;
5369#ifdef FEAT_MOUSE
5370 setmouse(); /* disable mouse in xterm */
5371#endif
5372 curwin->w_cursor.col = regmatch.startpos[0].col;
Bram Moolenaar41baa792017-01-21 14:45:09 +01005373 if (curwin->w_p_crb)
5374 do_check_cursorbind();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375
5376 /* When 'cpoptions' contains "u" don't sync undo when
5377 * asking for confirmation. */
5378 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5379 ++no_u_sync;
5380
5381 /*
5382 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
5383 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005384 while (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005386 if (exmode_active)
5387 {
5388 char_u *resp;
5389 colnr_T sc, ec;
5390
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005391 print_line_no_prefix(lnum,
5392 subflags.do_number, subflags.do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005393
5394 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
5395 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01005396 if (curwin->w_cursor.col < 0)
5397 curwin->w_cursor.col = 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005398 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005399 if (subflags.do_number || curwin->w_p_nu)
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02005400 {
5401 int numw = number_width(curwin) + 1;
5402 sc += numw;
5403 ec += numw;
5404 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005405 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00005406 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005407 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00005408 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005409 msg_putchar('^');
5410
5411 resp = getexmodeline('?', NULL, 0);
5412 if (resp != NULL)
5413 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005414 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005415 vim_free(resp);
5416 }
5417 }
5418 else
5419 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005420 char_u *orig_line = NULL;
5421 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005423 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005425 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005427 /* Invert the matched string.
5428 * Remove the inversion afterwards. */
5429 temp = RedrawingDisabled;
5430 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005431
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005432 if (new_start != NULL)
5433 {
5434 /* There already was a substitution, we would
5435 * like to show this to the user. We cannot
5436 * really update the line, it would change
5437 * what matches. Temporarily replace the line
5438 * and change it back afterwards. */
5439 orig_line = vim_strsave(ml_get(lnum));
5440 if (orig_line != NULL)
5441 {
5442 char_u *new_line = concat_str(new_start,
5443 sub_firstline + copycol);
5444
5445 if (new_line == NULL)
Bram Moolenaard23a8232018-02-10 18:45:26 +01005446 VIM_CLEAR(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005447 else
5448 {
5449 /* Position the cursor relative to the
5450 * end of the line, the previous
5451 * substitute may have inserted or
5452 * deleted characters before the
5453 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01005454 len_change = (int)STRLEN(new_line)
5455 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005456 curwin->w_cursor.col += len_change;
5457 ml_replace(lnum, new_line, FALSE);
5458 }
5459 }
5460 }
5461
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005462 search_match_lines = regmatch.endpos[0].lnum
5463 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005464 search_match_endcol = regmatch.endpos[0].col
5465 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005466 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005468 update_topline();
5469 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00005470 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005471 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00005472 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473
5474#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005475 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005477 if (msg_row == Rows - 1)
5478 msg_didout = FALSE; /* avoid a scroll-up */
5479 msg_starthere();
5480 i = msg_scroll;
5481 msg_scroll = 0; /* truncate msg when
5482 needed */
5483 msg_no_more = TRUE;
5484 /* write message same highlighting as for
5485 * wait_return */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005486 smsg_attr(HL_ATTR(HLF_R),
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005487 _("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005488 msg_no_more = FALSE;
5489 msg_scroll = i;
5490 showruler(TRUE);
5491 windgoto(msg_row, msg_col);
5492 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493
5494#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005495 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005497 ++no_mapping; /* don't map this key */
5498 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005499 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005500 --allow_keys;
5501 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005503 /* clear the question */
5504 msg_didout = FALSE; /* don't scroll up */
5505 msg_col = 0;
5506 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005507
5508 /* restore the line */
5509 if (orig_line != NULL)
5510 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005511 }
5512
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005514 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005516 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517#endif
5518 )
5519 {
5520 got_quit = TRUE;
5521 break;
5522 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005523 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005525 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005527 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 {
5529 /* last: replace and then stop */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005530 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 line2 = lnum;
5532 break;
5533 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005534 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005536 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 break;
5538 }
5539#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005540 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005542 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 scrolldown_clamp();
5544#endif
5545 }
5546 State = save_State;
5547#ifdef FEAT_MOUSE
5548 setmouse();
5549#endif
5550 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5551 --no_u_sync;
5552
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005553 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 {
5555 /* For a multi-line match, put matchcol at the NUL at
5556 * the end of the line and set nmatch to one, so that
5557 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00005558 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
5559 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 if (nmatch > 1)
5561 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005562 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00005563 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 }
5565 goto skip;
5566 }
5567 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01005568 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 }
5570
5571 /* Move the cursor to the start of the match, so that we can
5572 * use "\=col("."). */
5573 curwin->w_cursor.col = regmatch.startpos[0].col;
5574
5575 /*
5576 * 3. substitute the string.
5577 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005578#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005579 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005580 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005581 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005582 save_ma = curbuf->b_p_ma;
5583 curbuf->b_p_ma = FALSE;
5584 sandbox++;
5585 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005586 /* Save flags for recursion. They can change for e.g.
5587 * :s/^/\=execute("s#^##gn") */
5588 subflags_save = subflags;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005589#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005591 sublen = vim_regsub_multi(&regmatch,
5592 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005594#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005595 /* Don't keep flags set by a recursive call. */
5596 subflags = subflags_save;
5597 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005598 {
5599 curbuf->b_p_ma = save_ma;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005600 if (sandbox > 0)
5601 sandbox--;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005602 goto skip;
5603 }
5604#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605
Bram Moolenaar4463f292005-09-25 22:20:24 +00005606 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005607 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005608 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5609 {
5610 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5611 skip_match = TRUE;
5612 }
5613
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 /* Need room for:
5615 * - result so far in new_start (not for first sub in line)
5616 * - original text up to match
5617 * - length of substituted part
5618 * - original text after match
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005619 * Adjust text properties here, since we have all information
5620 * needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 */
5622 if (nmatch == 1)
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005623 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624 p1 = sub_firstline;
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005625#ifdef FEAT_TEXT_PROP
5626 if (curbuf->b_has_textprop)
5627 adjust_prop_columns(lnum, regmatch.startpos[0].col,
5628 sublen - 1 - (regmatch.endpos[0].col
5629 - regmatch.startpos[0].col));
5630#endif
5631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632 else
5633 {
5634 p1 = ml_get(sub_firstlnum + nmatch - 1);
5635 nmatch_tl += nmatch - 1;
5636 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005637 copy_len = regmatch.startpos[0].col - copycol;
5638 needed_len = copy_len + ((unsigned)STRLEN(p1)
5639 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 if (new_start == NULL)
5641 {
5642 /*
5643 * Get some space for a temporary buffer to do the
5644 * substitution into (and some extra space to avoid
5645 * too many calls to alloc()/free()).
5646 */
5647 new_start_len = needed_len + 50;
5648 if ((new_start = alloc_check(new_start_len)) == NULL)
5649 goto outofmem;
5650 *new_start = NUL;
5651 new_end = new_start;
5652 }
5653 else
5654 {
5655 /*
5656 * Check if the temporary buffer is long enough to do the
5657 * substitution into. If not, make it larger (with a bit
5658 * extra to avoid too many calls to alloc()/free()).
5659 */
5660 len = (unsigned)STRLEN(new_start);
5661 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005662 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663 {
5664 new_start_len = needed_len + 50;
5665 if ((p1 = alloc_check(new_start_len)) == NULL)
5666 {
5667 vim_free(new_start);
5668 goto outofmem;
5669 }
5670 mch_memmove(p1, new_start, (size_t)(len + 1));
5671 vim_free(new_start);
5672 new_start = p1;
5673 }
5674 new_end = new_start + len;
5675 }
5676
5677 /*
5678 * copy the text up to the part that matched
5679 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005680 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5681 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005683 (void)vim_regsub_multi(&regmatch,
5684 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 sub, new_end, TRUE, p_magic, TRUE);
5686 sub_nsubs++;
5687 did_sub = TRUE;
5688
5689 /* Move the cursor to the start of the line, to avoid that it
5690 * is beyond the end of the line after the substitution. */
5691 curwin->w_cursor.col = 0;
5692
5693 /* For a multi-line match, make a copy of the last matched
5694 * line and continue in that one. */
5695 if (nmatch > 1)
5696 {
5697 sub_firstlnum += nmatch - 1;
5698 vim_free(sub_firstline);
5699 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5700 /* When going beyond the last line, stop substituting. */
5701 if (sub_firstlnum <= line2)
5702 do_again = TRUE;
5703 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005704 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 }
5706
5707 /* Remember next character to be copied. */
5708 copycol = regmatch.endpos[0].col;
5709
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005710 if (skip_match)
5711 {
5712 /* Already hit end of the buffer, sub_firstlnum is one
5713 * less than what it ought to be. */
5714 vim_free(sub_firstline);
5715 sub_firstline = vim_strsave((char_u *)"");
5716 copycol = 0;
5717 }
5718
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 /*
5720 * Now the trick is to replace CTRL-M chars with a real line
5721 * break. This would make it impossible to insert a CTRL-M in
5722 * the text. The line break can be avoided by preceding the
5723 * CTRL-M with a backslash. To be able to insert a backslash,
5724 * they must be doubled in the string and are halved here.
5725 * That is Vi compatible.
5726 */
5727 for (p1 = new_end; *p1; ++p1)
5728 {
5729 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005730 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 else if (*p1 == CAR)
5732 {
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005733 if (u_inssub(lnum) == OK) // prepare for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 {
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005735 colnr_T plen = (colnr_T)(p1 - new_start + 1);
5736
5737 *p1 = NUL; // truncate up to the CR
5738 ml_append(lnum - 1, new_start, plen, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005740 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 appended_lines(lnum - 1, 1L);
5742 else
5743 {
5744 if (first_line == 0)
5745 first_line = lnum;
5746 last_line = lnum + 1;
5747 }
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005748#ifdef FEAT_TEXT_PROP
5749 adjust_props_for_split(lnum, plen, 1);
5750#endif
5751 // all line numbers increase
Bram Moolenaar071d4272004-06-13 20:20:40 +00005752 ++sub_firstlnum;
5753 ++lnum;
5754 ++line2;
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005755 // move the cursor to the new line, like Vi
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756 ++curwin->w_cursor.lnum;
Bram Moolenaar4164bb22019-01-04 23:09:49 +01005757 // copy the rest
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005758 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 p1 = new_start - 1;
5760 }
5761 }
5762#ifdef FEAT_MBYTE
5763 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005764 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765#endif
5766 }
5767
5768 /*
5769 * 4. If do_all is set, find next match.
5770 * Prevent endless loop with patterns that match empty
5771 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5772 * But ":s/\n/#/" is OK.
5773 */
5774skip:
5775 /* We already know that we did the last subst when we are at
5776 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005777 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5778 * "line2" when there is a \zs in the pattern after a line
5779 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005780 lastone = (skip_match
5781 || got_int
5782 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005783 || lnum > line2
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005784 || !(subflags.do_all || do_again)
Bram Moolenaar8299df92004-07-10 09:47:34 +00005785 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5786 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787 nmatch = -1;
5788
5789 /*
5790 * Replace the line in the buffer when needed. This is
5791 * skipped when there are more matches.
5792 * The check for nmatch_tl is needed for when multi-line
5793 * matching must replace the lines before trying to do another
5794 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005795 * When the match starts below where we start searching also
5796 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797 */
5798 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 || nmatch_tl > 0
5800 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005801 curbuf, sub_firstlnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005802 matchcol, NULL, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005803 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 {
5805 if (new_start != NULL)
5806 {
5807 /*
5808 * Copy the rest of the line, that didn't match.
5809 * "matchcol" has to be adjusted, we use the end of
5810 * the line as reference, because the substitute may
5811 * have changed the number of characters. Same for
5812 * "prev_matchcol".
5813 */
5814 STRCAT(new_start, sub_firstline + copycol);
5815 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5816 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5817 - prev_matchcol;
5818
5819 if (u_savesub(lnum) != OK)
5820 break;
5821 ml_replace(lnum, new_start, TRUE);
5822
5823 if (nmatch_tl > 0)
5824 {
5825 /*
5826 * Matched lines have now been substituted and are
5827 * useless, delete them. The part after the match
5828 * has been appended to new_start, we don't need
5829 * it in the buffer.
5830 */
5831 ++lnum;
5832 if (u_savedel(lnum, nmatch_tl) != OK)
5833 break;
5834 for (i = 0; i < nmatch_tl; ++i)
5835 ml_delete(lnum, (int)FALSE);
5836 mark_adjust(lnum, lnum + nmatch_tl - 1,
5837 (long)MAXLNUM, -nmatch_tl);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005838 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839 deleted_lines(lnum, nmatch_tl);
5840 --lnum;
5841 line2 -= nmatch_tl; /* nr of lines decreases */
5842 nmatch_tl = 0;
5843 }
5844
5845 /* When asking, undo is saved each time, must also set
5846 * changed flag each time. */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005847 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 changed_bytes(lnum, 0);
5849 else
5850 {
5851 if (first_line == 0)
5852 first_line = lnum;
5853 last_line = lnum + 1;
5854 }
5855
5856 sub_firstlnum = lnum;
5857 vim_free(sub_firstline); /* free the temp buffer */
5858 sub_firstline = new_start;
5859 new_start = NULL;
5860 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5861 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5862 - prev_matchcol;
5863 copycol = 0;
5864 }
5865 if (nmatch == -1 && !lastone)
5866 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005867 sub_firstlnum, matchcol, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868
5869 /*
5870 * 5. break if there isn't another match in this line
5871 */
5872 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005873 {
5874 /* If the match found didn't start where we were
5875 * searching, do the next search in the line where we
5876 * found the match. */
5877 if (nmatch == -1)
5878 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881 }
5882
5883 line_breakcheck();
5884 }
5885
5886 if (did_sub)
5887 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005888 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaard23a8232018-02-10 18:45:26 +01005889 VIM_CLEAR(sub_firstline); /* free the copy of the original line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890 }
5891
5892 line_breakcheck();
5893 }
5894
5895 if (first_line != 0)
5896 {
5897 /* Need to subtract the number of added lines from "last_line" to get
5898 * the line number before the change (same as adding the number of
5899 * deleted lines). */
5900 i = curbuf->b_ml.ml_line_count - old_line_count;
5901 changed_lines(first_line, 0, last_line - i, i);
5902 }
5903
5904outofmem:
5905 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005906
5907 /* ":s/pat//n" doesn't move the cursor */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005908 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005909 curwin->w_cursor = old_cursor;
5910
Bram Moolenaar46475522010-03-23 17:36:29 +01005911 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 {
5913 /* Set the '[ and '] marks. */
5914 curbuf->b_op_start.lnum = eap->line1;
5915 curbuf->b_op_end.lnum = line2;
5916 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5917
5918 if (!global_busy)
5919 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005920 /* when interactive leave cursor on the match */
5921 if (!subflags.do_ask)
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005922 {
5923 if (endcolumn)
5924 coladvance((colnr_T)MAXCOL);
5925 else
5926 beginline(BL_WHITE | BL_FIX);
5927 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005928 if (!do_sub_msg(subflags.do_count) && subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929 MSG("");
5930 }
5931 else
5932 global_need_beginline = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005933 if (subflags.do_print)
5934 print_line(curwin->w_cursor.lnum,
5935 subflags.do_number, subflags.do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936 }
5937 else if (!global_busy)
5938 {
5939 if (got_int) /* interrupted */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005940 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941 else if (got_match) /* did find something but nothing substituted */
5942 MSG("");
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005943 else if (subflags.do_error) /* nothing found */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005944 semsg(_(e_patnotf2), get_search_pat());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945 }
5946
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005947#ifdef FEAT_FOLDING
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005948 if (subflags.do_ask && hasAnyFolding(curwin))
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005949 /* Cursor position may require updating */
5950 changed_window_setting();
5951#endif
5952
Bram Moolenaar473de612013-06-08 18:19:48 +02005953 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005954
5955 /* Restore the flag values, they can be used for ":&&". */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005956 subflags.do_all = save_do_all;
5957 subflags.do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958}
5959
5960/*
5961 * Give message for number of substitutions.
5962 * Can also be used after a ":global" command.
5963 * Return TRUE if a message was given.
5964 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005965 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005966do_sub_msg(
5967 int count_only) /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968{
5969 /*
5970 * Only report substitutions when:
5971 * - more than 'report' substitutions
5972 * - command was typed by user, or number of changed lines > 'report'
5973 * - giving messages is not disabled by 'lazyredraw'
5974 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005975 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5976 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 && messaging())
5978 {
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005979 char *msg_single;
5980 char *msg_plural;
5981
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982 if (got_int)
5983 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005984 else
5985 *msg_buf = NUL;
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005986
5987 msg_single = count_only
5988 ? NGETTEXT("%ld match on %ld line",
5989 "%ld matches on %ld line", sub_nsubs)
5990 : NGETTEXT("%ld substitution on %ld line",
5991 "%ld substitutions on %ld line", sub_nsubs);
5992 msg_plural = count_only
5993 ? NGETTEXT("%ld match on %ld lines",
5994 "%ld matches on %ld lines", sub_nsubs)
5995 : NGETTEXT("%ld substitution on %ld lines",
5996 "%ld substitutions on %ld lines", sub_nsubs);
5997
5998 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
5999 NGETTEXT(msg_single, msg_plural, sub_nlines),
6000 sub_nsubs, (long)sub_nlines);
6001
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00006004 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005 return TRUE;
6006 }
6007 if (got_int)
6008 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006009 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010 return TRUE;
6011 }
6012 return FALSE;
6013}
6014
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006015 static void
6016global_exe_one(char_u *cmd, linenr_T lnum)
6017{
6018 curwin->w_cursor.lnum = lnum;
6019 curwin->w_cursor.col = 0;
6020 if (*cmd == NUL || *cmd == '\n')
6021 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
6022 else
6023 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
6024}
6025
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026/*
6027 * Execute a global command of the form:
6028 *
6029 * g/pattern/X : execute X on all lines where pattern matches
6030 * v/pattern/X : execute X on all lines where pattern does not match
6031 *
6032 * where 'X' is an EX command
6033 *
6034 * The command character (as well as the trailing slash) is optional, and
6035 * is assumed to be 'p' if missing.
6036 *
6037 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006038 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039 * for each line that has a mark. This is required because after deleting
6040 * lines we do not know where to search for the next match.
6041 */
6042 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006043ex_global(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006044{
6045 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006046 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047 int type; /* first char of cmd: 'v' or 'g' */
6048 char_u *cmd; /* command argument */
6049
6050 char_u delim; /* delimiter, normally '/' */
6051 char_u *pat;
6052 regmmatch_T regmatch;
6053 int match;
6054 int which_pat;
6055
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006056 /* When nesting the command works on one line. This allows for
6057 * ":g/found/v/notfound/command". */
6058 if (global_busy && (eap->line1 != 1
6059 || eap->line2 != curbuf->b_ml.ml_line_count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006061 /* will increment global_busy to break out of the loop */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006062 emsg(_("E147: Cannot do :global recursive with a range"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063 return;
6064 }
6065
6066 if (eap->forceit) /* ":global!" is like ":vglobal" */
6067 type = 'v';
6068 else
6069 type = *eap->cmd;
6070 cmd = eap->arg;
6071 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072
6073 /*
6074 * undocumented vi feature:
6075 * "\/" and "\?": use previous search pattern.
6076 * "\&": use previous substitute pattern.
6077 */
6078 if (*cmd == '\\')
6079 {
6080 ++cmd;
6081 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
6082 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006083 emsg(_(e_backslash));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084 return;
6085 }
6086 if (*cmd == '&')
6087 which_pat = RE_SUBST; /* use previous substitute pattern */
6088 else
6089 which_pat = RE_SEARCH; /* use previous search pattern */
6090 ++cmd;
6091 pat = (char_u *)"";
6092 }
6093 else if (*cmd == NUL)
6094 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006095 emsg(_("E148: Regular expression missing from global"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006096 return;
6097 }
6098 else
6099 {
6100 delim = *cmd; /* get the delimiter */
6101 if (delim)
6102 ++cmd; /* skip delimiter if there is one */
6103 pat = cmd; /* remember start of pattern */
6104 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
6105 if (cmd[0] == delim) /* end delimiter found */
6106 *cmd++ = NUL; /* replace it with a NUL */
6107 }
6108
6109#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
6110 if (p_altkeymap && curwin->w_p_rl)
6111 lrFswap(pat,0);
6112#endif
6113
6114 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
6115 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006116 emsg(_(e_invcmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117 return;
6118 }
6119
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006120 if (global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006122 lnum = curwin->w_cursor.lnum;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00006123 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006124 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125 if ((type == 'g' && match) || (type == 'v' && !match))
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006126 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127 }
6128 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006129 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006130 /*
6131 * pass 1: set marks for each (not) matching line
6132 */
6133 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
6134 {
6135 /* a match on this line? */
6136 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006137 (colnr_T)0, NULL, NULL);
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006138 if ((type == 'g' && match) || (type == 'v' && !match))
6139 {
6140 ml_setmarked(lnum);
6141 ndone++;
6142 }
6143 line_breakcheck();
6144 }
6145
6146 /*
6147 * pass 2: execute the command for each line that has been marked
6148 */
6149 if (got_int)
6150 MSG(_(e_interr));
6151 else if (ndone == 0)
6152 {
6153 if (type == 'v')
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006154 smsg(_("Pattern found in every line: %s"), pat);
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006155 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006156 smsg(_("Pattern not found: %s"), pat);
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006157 }
6158 else
6159 {
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006160#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006161 start_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006162#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006163 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006164#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006165 end_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006166#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006167 }
6168
6169 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171
Bram Moolenaar473de612013-06-08 18:19:48 +02006172 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173}
6174
6175/*
6176 * Execute "cmd" on lines marked with ml_setmarked().
6177 */
6178 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006179global_exe(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180{
Bram Moolenaarbb993222011-05-10 16:00:47 +02006181 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
6182 buf_T *old_buf = curbuf; /* remember what buffer we started in */
6183 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184
6185 /*
6186 * Set current position only once for a global command.
6187 * If global_busy is set, setpcmark() will not do anything.
6188 * If there is an error, global_busy will be incremented.
6189 */
6190 setpcmark();
6191
6192 /* When the command writes a message, don't overwrite the command. */
6193 msg_didout = TRUE;
6194
Bram Moolenaard25bc232010-03-23 17:49:24 +01006195 sub_nsubs = 0;
6196 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 global_need_beginline = FALSE;
6198 global_busy = 1;
6199 old_lcount = curbuf->b_ml.ml_line_count;
6200 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
6201 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006202 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203 ui_breakcheck();
6204 }
6205
6206 global_busy = 0;
6207 if (global_need_beginline)
6208 beginline(BL_WHITE | BL_FIX);
6209 else
6210 check_cursor(); /* cursor may be beyond the end of the line */
6211
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006212 /* the cursor may not have moved in the text but a change in a previous
6213 * line may move it on the screen */
6214 changed_line_abv_curs();
6215
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 /* If it looks like no message was written, allow overwriting the
6217 * command with the report for number of changes. */
6218 if (msg_col == 0 && msg_scrolled == 0)
6219 msg_didout = FALSE;
6220
Bram Moolenaar45667512007-05-10 19:24:43 +00006221 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02006222 * number of extra or deleted lines.
6223 * Don't report extra or deleted lines in the edge case where the buffer
6224 * we are in after execution is different from the buffer we started in. */
6225 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
6227}
6228
6229#ifdef FEAT_VIMINFO
6230 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006231read_viminfo_sub_string(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01006233 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234 vim_free(old_sub);
6235 if (force || old_sub == NULL)
6236 old_sub = viminfo_readstring(virp, 1, TRUE);
6237 return viminfo_readline(virp);
6238}
6239
6240 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006241write_viminfo_sub_string(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242{
6243 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
6244 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02006245 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246 viminfo_writestring(fp, old_sub);
6247 }
6248}
6249#endif /* FEAT_VIMINFO */
6250
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006251#if defined(EXITFREE) || defined(PROTO)
6252 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006253free_old_sub(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006254{
6255 vim_free(old_sub);
6256}
6257#endif
6258
Bram Moolenaar4033c552017-09-16 20:54:51 +02006259#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260/*
6261 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006262 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006264 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006265prepare_tagpreview(
6266 int undo_sync) /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267{
6268 win_T *wp;
6269
6270# ifdef FEAT_GUI
6271 need_mouse_correct = TRUE;
6272# endif
6273
6274 /*
6275 * If there is already a preview window open, use that one.
6276 */
6277 if (!curwin->w_p_pvw)
6278 {
Bram Moolenaar29323592016-07-24 22:04:11 +02006279 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 if (wp->w_p_pvw)
6281 break;
6282 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00006283 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 else
6285 {
6286 /*
6287 * There is no preview window open yet. Create one.
6288 */
6289 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
6290 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006291 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 curwin->w_p_pvw = TRUE;
6293 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006294 RESET_BINDING(curwin); /* don't take over 'scrollbind'
6295 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296# ifdef FEAT_DIFF
6297 curwin->w_p_diff = FALSE; /* no 'diff' */
6298# endif
6299# ifdef FEAT_FOLDING
6300 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
6301# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006302 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 }
6304 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006305 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306}
6307
6308#endif
6309
6310
6311/*
6312 * ":help": open a read-only window on a help file
6313 */
6314 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006315ex_help(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316{
6317 char_u *arg;
6318 char_u *tag;
6319 FILE *helpfd; /* file descriptor of help file */
6320 int n;
6321 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006322 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323 int num_matches;
6324 char_u **matches;
6325 char_u *p;
6326 int empty_fnum = 0;
6327 int alt_fnum = 0;
6328 buf_T *buf;
6329#ifdef FEAT_MULTI_LANG
6330 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006331 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02006333#ifdef FEAT_FOLDING
6334 int old_KeyTyped = KeyTyped;
6335#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336
6337 if (eap != NULL)
6338 {
6339 /*
6340 * A ":help" command ends at the first LF, or at a '|' that is
6341 * followed by some text. Set nextcmd to the following command.
6342 */
6343 for (arg = eap->arg; *arg; ++arg)
6344 {
6345 if (*arg == '\n' || *arg == '\r'
6346 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
6347 {
6348 *arg++ = NUL;
6349 eap->nextcmd = arg;
6350 break;
6351 }
6352 }
6353 arg = eap->arg;
6354
Bram Moolenaar3dbde622012-04-05 16:05:05 +02006355 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006357 emsg(_("E478: Don't panic!"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 return;
6359 }
6360
6361 if (eap->skip) /* not executing commands */
6362 return;
6363 }
6364 else
6365 arg = (char_u *)"";
6366
6367 /* remove trailing blanks */
6368 p = arg + STRLEN(arg) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006369 while (p > arg && VIM_ISWHITE(*p) && p[-1] != '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370 *p-- = NUL;
6371
6372#ifdef FEAT_MULTI_LANG
6373 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006374 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375#endif
6376
6377 /* When no argument given go to the index. */
6378 if (*arg == NUL)
6379 arg = (char_u *)"help.txt";
6380
6381 /*
6382 * Check if there is a match for the argument.
6383 */
6384 n = find_help_tags(arg, &num_matches, &matches,
6385 eap != NULL && eap->forceit);
6386
6387 i = 0;
6388#ifdef FEAT_MULTI_LANG
6389 if (n != FAIL && lang != NULL)
6390 /* Find first item with the requested language. */
6391 for (i = 0; i < num_matches; ++i)
6392 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006393 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394 if (len > 3 && matches[i][len - 3] == '@'
6395 && STRICMP(matches[i] + len - 2, lang) == 0)
6396 break;
6397 }
6398#endif
6399 if (i >= num_matches || n == FAIL)
6400 {
6401#ifdef FEAT_MULTI_LANG
6402 if (lang != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006403 semsg(_("E661: Sorry, no '%s' help for %s"), lang, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404 else
6405#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006406 semsg(_("E149: Sorry, no help for %s"), arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 if (n != FAIL)
6408 FreeWild(num_matches, matches);
6409 return;
6410 }
6411
6412 /* The first match (in the requested language) is the best match. */
6413 tag = vim_strsave(matches[i]);
6414 FreeWild(num_matches, matches);
6415
6416#ifdef FEAT_GUI
6417 need_mouse_correct = TRUE;
6418#endif
6419
6420 /*
6421 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006422 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423 */
Bram Moolenaar4033c552017-09-16 20:54:51 +02006424 if (!bt_help(curwin->w_buffer) || cmdmod.tab != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425 {
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006426 if (cmdmod.tab != 0)
6427 wp = NULL;
6428 else
Bram Moolenaar29323592016-07-24 22:04:11 +02006429 FOR_ALL_WINDOWS(wp)
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006430 if (bt_help(wp->w_buffer))
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006431 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
6433 win_enter(wp, TRUE);
6434 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006435 {
6436 /*
6437 * There is no help window yet.
6438 * Try to open the file specified by the "helpfile" option.
6439 */
6440 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
6441 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006442 smsg(_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 goto erret;
6444 }
6445 fclose(helpfd);
6446
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006448 * specified, the current window is vertically split and
6449 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 n = WSP_HELP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006452 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 n |= WSP_TOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006455 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457 if (curwin->w_height < p_hh)
6458 win_setheight((int)p_hh);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459
6460 /*
6461 * Open help file (do_ecmd() will set b_help flag, readfile() will
6462 * set b_p_ro flag).
6463 * Set the alternate file to the previously edited file.
6464 */
6465 alt_fnum = curbuf->b_fnum;
6466 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006467 ECMD_HIDE + ECMD_SET_HELP,
Bram Moolenaar4033c552017-09-16 20:54:51 +02006468 NULL); /* buffer is still open, don't store info */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006469 if (!cmdmod.keepalt)
6470 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471 empty_fnum = curbuf->b_fnum;
6472 }
6473 }
6474
6475 if (!p_im)
6476 restart_edit = 0; /* don't want insert mode in help file */
6477
Bram Moolenaar8f535582011-09-30 17:30:31 +02006478#ifdef FEAT_FOLDING
6479 /* Restore KeyTyped, setting 'filetype=help' may reset it.
6480 * It is needed for do_tag top open folds under the cursor. */
6481 KeyTyped = old_KeyTyped;
6482#endif
6483
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 if (tag != NULL)
6485 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
6486
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006487 /* Delete the empty buffer if we're not using it. Careful: autocommands
6488 * may have jumped to another window, check that the buffer is not in a
6489 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
6491 {
6492 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006493 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494 wipe_buffer(buf, TRUE);
6495 }
6496
6497 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006498 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499 curwin->w_alt_fnum = alt_fnum;
6500
6501erret:
6502 vim_free(tag);
6503}
6504
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006505/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006506 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006507 */
6508 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006509ex_helpclose(exarg_T *eap UNUSED)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006510{
6511 win_T *win;
6512
6513 FOR_ALL_WINDOWS(win)
6514 {
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006515 if (bt_help(win->w_buffer))
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006516 {
6517 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006518 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006519 }
6520 }
6521}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006523#if defined(FEAT_MULTI_LANG) || defined(PROTO)
6524/*
6525 * In an argument search for a language specifiers in the form "@xx".
6526 * Changes the "@" to NUL if found, and returns a pointer to "xx".
6527 * Returns NULL if not found.
6528 */
6529 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006530check_help_lang(char_u *arg)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006531{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006532 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006533
6534 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
6535 && ASCII_ISALPHA(arg[len - 1]))
6536 {
6537 arg[len - 3] = NUL; /* remove the '@' */
6538 return arg + len - 2;
6539 }
6540 return NULL;
6541}
6542#endif
6543
Bram Moolenaar071d4272004-06-13 20:20:40 +00006544/*
6545 * Return a heuristic indicating how well the given string matches. The
6546 * smaller the number, the better the match. This is the order of priorities,
6547 * from best match to worst match:
6548 * - Match with least alpha-numeric characters is better.
6549 * - Match with least total characters is better.
6550 * - Match towards the start is better.
6551 * - Match starting with "+" is worse (feature instead of command)
6552 * Assumption is made that the matched_string passed has already been found to
6553 * match some string for which help is requested. webb.
6554 */
6555 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006556help_heuristic(
6557 char_u *matched_string,
6558 int offset, /* offset for match */
6559 int wrong_case) /* no matching case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560{
6561 int num_letters;
6562 char_u *p;
6563
6564 num_letters = 0;
6565 for (p = matched_string; *p; p++)
6566 if (ASCII_ISALNUM(*p))
6567 num_letters++;
6568
6569 /*
6570 * Multiply the number of letters by 100 to give it a much bigger
6571 * weighting than the number of characters.
6572 * If there only is a match while ignoring case, add 5000.
6573 * If the match starts in the middle of a word, add 10000 to put it
6574 * somewhere in the last half.
6575 * If the match is more than 2 chars from the start, multiply by 200 to
6576 * put it after matches at the start.
6577 */
6578 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
6579 && ASCII_ISALNUM(matched_string[offset - 1]))
6580 offset += 10000;
6581 else if (offset > 2)
6582 offset *= 200;
6583 if (wrong_case)
6584 offset += 5000;
6585 /* Features are less interesting than the subjects themselves, but "+"
6586 * alone is not a feature. */
6587 if (matched_string[0] == '+' && matched_string[1] != NUL)
6588 offset += 100;
6589 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
6590}
6591
6592/*
6593 * Compare functions for qsort() below, that checks the help heuristics number
6594 * that has been put after the tagname by find_tags().
6595 */
6596 static int
6597#ifdef __BORLANDC__
6598_RTLENTRYF
6599#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006600help_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006601{
6602 char *p1;
6603 char *p2;
6604
6605 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
6606 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
6607 return strcmp(p1, p2);
6608}
6609
6610/*
6611 * Find all help tags matching "arg", sort them and return in matches[], with
6612 * the number of matches in num_matches.
6613 * The matches will be sorted with a "best" match algorithm.
6614 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6615 */
6616 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006617find_help_tags(
6618 char_u *arg,
6619 int *num_matches,
6620 char_u ***matches,
6621 int keep_lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006622{
6623 char_u *s, *d;
6624 int i;
6625 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006626 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006627 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006628 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
6629 "-?", "q?", "v_g?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006630 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006631 "[count]", "[quotex]",
6632 "[range]", ":[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006633 "[pattern]", "\\|", "\\%$",
6634 "s/\\~", "s/\\U", "s/\\L",
6635 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006636 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006637 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006638 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006639 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
6640 "-?", "q?", "v_g?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006641 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006642 "\\[count]", "\\[quotex]",
6643 "\\[range]", ":\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006644 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006645 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006646 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006647 static char *(expr_table[]) = {"!=?", "!~?", "<=?", "<?", "==?", "=~?",
6648 ">=?", ">?", "is?", "isnot?"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649 int flags;
6650
6651 d = IObuff; /* assume IObuff is long enough! */
6652
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006653 if (STRNICMP(arg, "expr-", 5) == 0)
6654 {
6655 // When the string starting with "expr-" and containing '?' and matches
6656 // the table, it is taken literally. Otherwise '?' is recognized as a
6657 // wildcard.
6658 for (i = (int)(sizeof(expr_table) / sizeof(char *)); --i >= 0; )
6659 if (STRCMP(arg + 5, expr_table[i]) == 0)
6660 {
6661 STRCPY(d, arg);
6662 break;
6663 }
6664 }
6665 else
6666 {
6667 // Recognize a few exceptions to the rule. Some strings that contain
6668 // '*' with "star". Otherwise '*' is recognized as a wildcard.
6669 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
6670 if (STRCMP(arg, mtable[i]) == 0)
6671 {
6672 STRCPY(d, rtable[i]);
6673 break;
6674 }
6675 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676
6677 if (i < 0) /* no match in table */
6678 {
6679 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6680 * Also replace "\%^" and "\%(", they match every tag too.
6681 * Also "\zs", "\z1", etc.
6682 * Also "\@<", "\@=", "\@<=", etc.
6683 * And also "\_$" and "\_^". */
6684 if (arg[0] == '\\'
6685 && ((arg[1] != NUL && arg[2] == NUL)
6686 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6687 && arg[2] != NUL)))
6688 {
6689 STRCPY(d, "/\\\\");
6690 STRCPY(d + 3, arg + 1);
6691 /* Check for "/\\_$", should be "/\\_\$" */
6692 if (d[3] == '_' && d[4] == '$')
6693 STRCPY(d + 4, "\\$");
6694 }
6695 else
6696 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006697 /* Replace:
6698 * "[:...:]" with "\[:...:]"
6699 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006700 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006701 */
6702 if ((arg[0] == '[' && (arg[1] == ':'
6703 || (arg[1] == '+' && arg[2] == '+')))
6704 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006705 *d++ = '\\';
6706
Bram Moolenaar00f9e0d2016-03-15 13:44:12 +01006707 /*
6708 * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'.
6709 */
6710 if (*arg == '(' && arg[1] == '\'')
6711 arg++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712 for (s = arg; *s; ++s)
6713 {
6714 /*
6715 * Replace "|" with "bar" and '"' with "quote" to match the name of
6716 * the tags for these commands.
6717 * Replace "*" with ".*" and "?" with "." to match command line
6718 * completion.
6719 * Insert a backslash before '~', '$' and '.' to avoid their
6720 * special meaning.
6721 */
6722 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6723 break;
6724 switch (*s)
6725 {
6726 case '|': STRCPY(d, "bar");
6727 d += 3;
6728 continue;
6729 case '"': STRCPY(d, "quote");
6730 d += 5;
6731 continue;
6732 case '*': *d++ = '.';
6733 break;
6734 case '?': *d++ = '.';
6735 continue;
6736 case '$':
6737 case '.':
6738 case '~': *d++ = '\\';
6739 break;
6740 }
6741
6742 /*
6743 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6744 * ":help i_^_CTRL-D" work.
6745 * Insert '-' before and after "CTRL-X" when applicable.
6746 */
6747 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6748 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6749 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006750 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6751 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006752 STRCPY(d, "CTRL-");
6753 d += 5;
6754 if (*s < ' ')
6755 {
6756#ifdef EBCDIC
6757 *d++ = CtrlChar(*s);
6758#else
6759 *d++ = *s + '@';
6760#endif
6761 if (d[-1] == '\\')
6762 *d++ = '\\'; /* double a backslash */
6763 }
6764 else
6765 *d++ = *++s;
6766 if (s[1] != NUL && s[1] != '_')
6767 *d++ = '_'; /* append a '_' */
6768 continue;
6769 }
6770 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6771 *d++ = '\\';
6772
6773 /*
6774 * Insert a backslash before a backslash after a slash, for search
6775 * pattern tags: "/\|" --> "/\\|".
6776 */
6777 else if (s[0] == '\\' && s[1] != '\\'
6778 && *arg == '/' && s == arg + 1)
6779 *d++ = '\\';
6780
6781 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6782 * "CTRL-\_CTRL-N" */
6783 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6784 {
6785 STRCPY(d, "CTRL-\\\\");
6786 d += 7;
6787 s += 6;
6788 }
6789
6790 *d++ = *s;
6791
6792 /*
Bram Moolenaar81edd172016-04-14 13:51:37 +02006793 * If tag contains "({" or "([", tag terminates at the "(".
6794 * This is for help on functions, e.g.: abs({expr}).
6795 */
6796 if (*s == '(' && (s[1] == '{' || s[1] =='['))
6797 break;
6798
6799 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006800 * If tag starts with ', toss everything after a second '. Fixes
6801 * CTRL-] on 'option'. (would include the trailing '.').
6802 */
6803 if (*s == '\'' && s > arg && *arg == '\'')
6804 break;
Bram Moolenaar28b942a2016-06-04 22:31:27 +02006805 /* Also '{' and '}'. */
6806 if (*s == '}' && s > arg && *arg == '{')
6807 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006808 }
6809 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006810
6811 if (*IObuff == '`')
6812 {
6813 if (d > IObuff + 2 && d[-1] == '`')
6814 {
6815 /* remove the backticks from `command` */
6816 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6817 d[-2] = NUL;
6818 }
6819 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6820 {
6821 /* remove the backticks and comma from `command`, */
6822 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6823 d[-3] = NUL;
6824 }
6825 else if (d > IObuff + 4 && d[-3] == '`'
6826 && d[-2] == '\\' && d[-1] == '.')
6827 {
6828 /* remove the backticks and dot from `command`\. */
6829 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6830 d[-4] = NUL;
6831 }
6832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833 }
6834 }
6835
6836 *matches = (char_u **)"";
6837 *num_matches = 0;
6838 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6839 if (keep_lang)
6840 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006841 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006843 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006844 /* Sort the matches found on the heuristic number that is after the
6845 * tag name. */
6846 qsort((void *)*matches, (size_t)*num_matches,
6847 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006848 /* Delete more than TAG_MANY to reduce the size of the listing. */
6849 while (*num_matches > TAG_MANY)
6850 vim_free((*matches)[--*num_matches]);
6851 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006852 return OK;
6853}
6854
6855/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006856 * Called when starting to edit a buffer for a help file.
6857 */
6858 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006859prepare_help_buffer(void)
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006860{
6861 char_u *p;
6862
6863 curbuf->b_help = TRUE;
6864#ifdef FEAT_QUICKFIX
6865 set_string_option_direct((char_u *)"buftype", -1,
6866 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6867#endif
6868
6869 /*
6870 * Always set these options after jumping to a help tag, because the
6871 * user may have an autocommand that gets in the way.
6872 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6873 * latin1 word characters (for translated help files).
6874 * Only set it when needed, buf_init_chartab() is some work.
6875 */
6876 p =
6877#ifdef EBCDIC
6878 (char_u *)"65-255,^*,^|,^\"";
6879#else
6880 (char_u *)"!-~,^*,^|,^\",192-255";
6881#endif
6882 if (STRCMP(curbuf->b_p_isk, p) != 0)
6883 {
6884 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6885 check_buf_options(curbuf);
6886 (void)buf_init_chartab(curbuf, FALSE);
6887 }
6888
Bram Moolenaar0b105412014-11-30 13:34:23 +01006889#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006890 /* Don't use the global foldmethod.*/
6891 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6892 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006893#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006894
6895 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6896 curwin->w_p_list = FALSE; /* no list mode */
6897
6898 curbuf->b_p_ma = FALSE; /* not modifiable */
6899 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6900 curwin->w_p_nu = 0; /* no line numbers */
6901 curwin->w_p_rnu = 0; /* no relative line numbers */
6902 RESET_BINDING(curwin); /* no scroll or cursor binding */
6903#ifdef FEAT_ARABIC
6904 curwin->w_p_arab = FALSE; /* no arabic mode */
6905#endif
6906#ifdef FEAT_RIGHTLEFT
6907 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6908#endif
6909#ifdef FEAT_FOLDING
6910 curwin->w_p_fen = FALSE; /* No folding in the help window */
6911#endif
6912#ifdef FEAT_DIFF
6913 curwin->w_p_diff = FALSE; /* No 'diff' */
6914#endif
6915#ifdef FEAT_SPELL
6916 curwin->w_p_spell = FALSE; /* No spell checking */
6917#endif
6918
6919 set_buflisted(FALSE);
6920}
6921
6922/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006923 * After reading a help file: May cleanup a help buffer when syntax
6924 * highlighting is not used.
6925 */
6926 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006927fix_help_buffer(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006928{
6929 linenr_T lnum;
6930 char_u *line;
6931 int in_example = FALSE;
6932 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006933 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934 char_u *p;
6935 char_u *rt;
6936 int mustfree;
6937
Bram Moolenaar90492982017-06-22 14:16:31 +02006938 /* Set filetype to "help" if still needed. */
6939 if (STRCMP(curbuf->b_p_ft, "help") != 0)
Bram Moolenaar18141832017-06-25 21:17:25 +02006940 {
6941 ++curbuf_lock;
Bram Moolenaar90492982017-06-22 14:16:31 +02006942 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
Bram Moolenaar18141832017-06-25 21:17:25 +02006943 --curbuf_lock;
6944 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006945
6946#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006947 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006948#endif
6949 {
6950 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6951 {
6952 line = ml_get_buf(curbuf, lnum, FALSE);
6953 len = (int)STRLEN(line);
Bram Moolenaar1c465442017-03-12 20:10:05 +01006954 if (in_example && len > 0 && !VIM_ISWHITE(line[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006955 {
6956 /* End of example: non-white or '<' in first column. */
6957 if (line[0] == '<')
6958 {
6959 /* blank-out a '<' in the first column */
6960 line = ml_get_buf(curbuf, lnum, TRUE);
6961 line[0] = ' ';
6962 }
6963 in_example = FALSE;
6964 }
6965 if (!in_example && len > 0)
6966 {
6967 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6968 {
6969 /* blank-out a '>' in the last column (start of example) */
6970 line = ml_get_buf(curbuf, lnum, TRUE);
6971 line[len - 1] = ' ';
6972 in_example = TRUE;
6973 }
6974 else if (line[len - 1] == '~')
6975 {
6976 /* blank-out a '~' at the end of line (header marker) */
6977 line = ml_get_buf(curbuf, lnum, TRUE);
6978 line[len - 1] = ' ';
6979 }
6980 }
6981 }
6982 }
6983
6984 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006985 * In the "help.txt" and "help.abx" file, add the locally added help
6986 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006988 fname = gettail(curbuf->b_fname);
6989 if (fnamecmp(fname, "help.txt") == 0
6990#ifdef FEAT_MULTI_LANG
6991 || (fnamencmp(fname, "help.", 5) == 0
6992 && ASCII_ISALPHA(fname[5])
6993 && ASCII_ISALPHA(fname[6])
6994 && TOLOWER_ASC(fname[7]) == 'x'
6995 && fname[8] == NUL)
6996#endif
6997 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006998 {
6999 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
7000 {
7001 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007002 if (strstr((char *)line, "*local-additions*") == NULL)
7003 continue;
7004
7005 /* Go through all directories in 'runtimepath', skipping
7006 * $VIMRUNTIME. */
7007 p = p_rtp;
7008 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007010 copy_option_part(&p, NameBuff, MAXPATHL, ",");
7011 mustfree = FALSE;
7012 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
Bram Moolenaare4db7ae2018-02-13 13:12:11 +01007013 if (rt != NULL && fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007015 int fcount;
7016 char_u **fnames;
7017 FILE *fd;
7018 char_u *s;
7019 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007020#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007021 vimconv_T vc;
7022 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023#endif
7024
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007025 /* Find all "doc/ *.txt" files in this directory. */
7026 add_pathsep(NameBuff);
7027#ifdef FEAT_MULTI_LANG
7028 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007030 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007032 if (gen_expand_wildcards(1, &NameBuff, &fcount,
7033 &fnames, EW_FILE|EW_SILENT) == OK
7034 && fcount > 0)
7035 {
7036#ifdef FEAT_MULTI_LANG
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007037 int i1, i2;
7038 char_u *f1, *f2;
7039 char_u *t1, *t2;
7040 char_u *e1, *e2;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007041
7042 /* If foo.abx is found use it instead of foo.txt in
7043 * the same directory. */
7044 for (i1 = 0; i1 < fcount; ++i1)
7045 {
7046 for (i2 = 0; i2 < fcount; ++i2)
7047 {
7048 if (i1 == i2)
7049 continue;
7050 if (fnames[i1] == NULL || fnames[i2] == NULL)
7051 continue;
7052 f1 = fnames[i1];
7053 f2 = fnames[i2];
7054 t1 = gettail(f1);
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007055 t2 = gettail(f2);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007056 e1 = vim_strrchr(t1, '.');
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007057 e2 = vim_strrchr(t2, '.');
Bram Moolenaar7756e742016-10-21 20:35:37 +02007058 if (e1 == NULL || e2 == NULL)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007059 continue;
7060 if (fnamecmp(e1, ".txt") != 0
7061 && fnamecmp(e1, fname + 4) != 0)
7062 {
7063 /* Not .txt and not .abx, remove it. */
Bram Moolenaard23a8232018-02-10 18:45:26 +01007064 VIM_CLEAR(fnames[i1]);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007065 continue;
7066 }
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007067 if (e1 - f1 != e2 - f2
7068 || fnamencmp(f1, f2, e1 - f1) != 0)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007069 continue;
7070 if (fnamecmp(e1, ".txt") == 0
7071 && fnamecmp(e2, fname + 4) == 0)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007072 /* use .abx instead of .txt */
Bram Moolenaard23a8232018-02-10 18:45:26 +01007073 VIM_CLEAR(fnames[i1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007076#endif
7077 for (fi = 0; fi < fcount; ++fi)
7078 {
7079 if (fnames[fi] == NULL)
7080 continue;
7081 fd = mch_fopen((char *)fnames[fi], "r");
7082 if (fd != NULL)
7083 {
7084 vim_fgets(IObuff, IOSIZE, fd);
7085 if (IObuff[0] == '*'
7086 && (s = vim_strchr(IObuff + 1, '*'))
7087 != NULL)
7088 {
7089#ifdef FEAT_MBYTE
7090 int this_utf = MAYBE;
7091#endif
7092 /* Change tag definition to a
7093 * reference and remove <CR>/<NL>. */
7094 IObuff[0] = '|';
7095 *s = '|';
7096 while (*s != NUL)
7097 {
7098 if (*s == '\r' || *s == '\n')
7099 *s = NUL;
7100#ifdef FEAT_MBYTE
7101 /* The text is utf-8 when a byte
7102 * above 127 is found and no
7103 * illegal byte sequence is found.
7104 */
7105 if (*s >= 0x80 && this_utf != FALSE)
7106 {
7107 int l;
7108
7109 this_utf = TRUE;
7110 l = utf_ptr2len(s);
7111 if (l == 1)
7112 this_utf = FALSE;
7113 s += l - 1;
7114 }
7115#endif
7116 ++s;
7117 }
7118#ifdef FEAT_MBYTE
7119 /* The help file is latin1 or utf-8;
7120 * conversion to the current
7121 * 'encoding' may be required. */
7122 vc.vc_type = CONV_NONE;
7123 convert_setup(&vc, (char_u *)(
7124 this_utf == TRUE ? "utf-8"
7125 : "latin1"), p_enc);
7126 if (vc.vc_type == CONV_NONE)
7127 /* No conversion needed. */
7128 cp = IObuff;
7129 else
7130 {
7131 /* Do the conversion. If it fails
7132 * use the unconverted text. */
7133 cp = string_convert(&vc, IObuff,
7134 NULL);
7135 if (cp == NULL)
7136 cp = IObuff;
7137 }
7138 convert_setup(&vc, NULL, NULL);
7139
7140 ml_append(lnum, cp, (colnr_T)0, FALSE);
7141 if (cp != IObuff)
7142 vim_free(cp);
7143#else
7144 ml_append(lnum, IObuff, (colnr_T)0,
7145 FALSE);
7146#endif
7147 ++lnum;
7148 }
7149 fclose(fd);
7150 }
7151 }
7152 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007153 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007155 if (mustfree)
7156 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007157 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007158 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 }
7160 }
7161}
7162
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007163/*
7164 * ":exusage"
7165 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007166 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007167ex_exusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007168{
7169 do_cmdline_cmd((char_u *)"help ex-cmd-index");
7170}
7171
7172/*
7173 * ":viusage"
7174 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007175 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007176ex_viusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007177{
7178 do_cmdline_cmd((char_u *)"help normal-index");
7179}
7180
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181/*
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007182 * Generate tags in one help directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007183 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007185helptags_one(
7186 char_u *dir, /* doc directory */
7187 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */
7188 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */
7189 int add_help_tags) /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007190{
7191 FILE *fd_tags;
7192 FILE *fd;
7193 garray_T ga;
7194 int filecount;
7195 char_u **files;
7196 char_u *p1, *p2;
7197 int fi;
7198 char_u *s;
7199 int i;
7200 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007201 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007202# ifdef FEAT_MBYTE
7203 int utf8 = MAYBE;
7204 int this_utf8;
7205 int firstline;
7206 int mix = FALSE; /* detected mixed encodings */
7207# endif
7208
7209 /*
7210 * Find all *.txt files.
7211 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01007212 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007213 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007214 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007215 STRCAT(NameBuff, ext);
7216 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7217 EW_FILE|EW_SILENT) == FAIL
7218 || filecount == 0)
7219 {
7220 if (!got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007221 semsg(_("E151: No match: %s"), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222 return;
7223 }
7224
7225 /*
7226 * Open the tags file for writing.
7227 * Do this before scanning through all the files.
7228 */
7229 STRCPY(NameBuff, dir);
7230 add_pathsep(NameBuff);
7231 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007232 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007233 if (fd_tags == NULL)
7234 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007235 semsg(_("E152: Cannot open %s for writing"), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007236 FreeWild(filecount, files);
7237 return;
7238 }
7239
7240 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007241 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
7242 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007243 */
7244 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007245 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
7246 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 {
7248 if (ga_grow(&ga, 1) == FAIL)
7249 got_int = TRUE;
7250 else
7251 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007252 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007253 if (s == NULL)
7254 got_int = TRUE;
7255 else
7256 {
7257 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
7258 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7259 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260 }
7261 }
7262 }
7263
7264 /*
7265 * Go over all the files and extract the tags.
7266 */
7267 for (fi = 0; fi < filecount && !got_int; ++fi)
7268 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007269 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007270 if (fd == NULL)
7271 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007272 semsg(_("E153: Unable to open %s for reading"), files[fi]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007273 continue;
7274 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007275 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007276
7277# ifdef FEAT_MBYTE
7278 firstline = TRUE;
7279# endif
7280 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
7281 {
7282# ifdef FEAT_MBYTE
7283 if (firstline)
7284 {
7285 /* Detect utf-8 file by a non-ASCII char in the first line. */
7286 this_utf8 = MAYBE;
7287 for (s = IObuff; *s != NUL; ++s)
7288 if (*s >= 0x80)
7289 {
7290 int l;
7291
7292 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007293 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294 if (l == 1)
7295 {
7296 /* Illegal UTF-8 byte sequence. */
7297 this_utf8 = FALSE;
7298 break;
7299 }
7300 s += l - 1;
7301 }
7302 if (this_utf8 == MAYBE) /* only ASCII characters found */
7303 this_utf8 = FALSE;
7304 if (utf8 == MAYBE) /* first file */
7305 utf8 = this_utf8;
7306 else if (utf8 != this_utf8)
7307 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007308 semsg(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007309 mix = !got_int;
7310 got_int = TRUE;
7311 }
7312 firstline = FALSE;
7313 }
7314# endif
7315 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
7316 while (p1 != NULL)
7317 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02007318 /* Use vim_strbyte() instead of vim_strchr() so that when
7319 * 'encoding' is dbcs it still works, don't find '*' in the
7320 * second byte. */
7321 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007322 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
7323 {
7324 for (s = p1 + 1; s < p2; ++s)
7325 if (*s == ' ' || *s == '\t' || *s == '|')
7326 break;
7327
7328 /*
7329 * Only accept a *tag* when it consists of valid
7330 * characters, there is white space before it and is
7331 * followed by a white character or end-of-line.
7332 */
7333 if (s == p2
7334 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
7335 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
7336 || s[1] == '\0'))
7337 {
7338 *p2 = '\0';
7339 ++p1;
7340 if (ga_grow(&ga, 1) == FAIL)
7341 {
7342 got_int = TRUE;
7343 break;
7344 }
7345 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
7346 if (s == NULL)
7347 {
7348 got_int = TRUE;
7349 break;
7350 }
7351 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7352 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007353 sprintf((char *)s, "%s\t%s", p1, fname);
7354
7355 /* find next '*' */
7356 p2 = vim_strchr(p2 + 1, '*');
7357 }
7358 }
7359 p1 = p2;
7360 }
7361 line_breakcheck();
7362 }
7363
7364 fclose(fd);
7365 }
7366
7367 FreeWild(filecount, files);
7368
7369 if (!got_int)
7370 {
7371 /*
7372 * Sort the tags.
7373 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02007374 if (ga.ga_data != NULL)
7375 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007376
7377 /*
7378 * Check for duplicates.
7379 */
7380 for (i = 1; i < ga.ga_len; ++i)
7381 {
7382 p1 = ((char_u **)ga.ga_data)[i - 1];
7383 p2 = ((char_u **)ga.ga_data)[i];
7384 while (*p1 == *p2)
7385 {
7386 if (*p2 == '\t')
7387 {
7388 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007389 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007390 _("E154: Duplicate tag \"%s\" in file %s/%s"),
7391 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007392 emsg((char *)NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393 *p2 = '\t';
7394 break;
7395 }
7396 ++p1;
7397 ++p2;
7398 }
7399 }
7400
7401# ifdef FEAT_MBYTE
7402 if (utf8 == TRUE)
7403 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
7404# endif
7405
7406 /*
7407 * Write the tags into the file.
7408 */
7409 for (i = 0; i < ga.ga_len; ++i)
7410 {
7411 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00007412 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007413 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00007414 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007415 else
7416 {
7417 fprintf(fd_tags, "%s\t/*", s);
7418 for (p1 = s; *p1 != '\t'; ++p1)
7419 {
7420 /* insert backslash before '\\' and '/' */
7421 if (*p1 == '\\' || *p1 == '/')
7422 putc('\\', fd_tags);
7423 putc(*p1, fd_tags);
7424 }
7425 fprintf(fd_tags, "*\n");
7426 }
7427 }
7428 }
7429#ifdef FEAT_MBYTE
7430 if (mix)
7431 got_int = FALSE; /* continue with other languages */
7432#endif
7433
7434 for (i = 0; i < ga.ga_len; ++i)
7435 vim_free(((char_u **)ga.ga_data)[i]);
7436 ga_clear(&ga);
7437 fclose(fd_tags); /* there is no check for an error... */
7438}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007439
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007440/*
7441 * Generate tags in one help directory, taking care of translations.
7442 */
7443 static void
7444do_helptags(char_u *dirname, int add_help_tags)
7445{
7446#ifdef FEAT_MULTI_LANG
7447 int len;
7448 int i, j;
7449 garray_T ga;
7450 char_u lang[2];
7451 char_u ext[5];
7452 char_u fname[8];
7453 int filecount;
7454 char_u **files;
7455
7456 /* Get a list of all files in the help directory and in subdirectories. */
7457 STRCPY(NameBuff, dirname);
7458 add_pathsep(NameBuff);
7459 STRCAT(NameBuff, "**");
7460 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7461 EW_FILE|EW_SILENT) == FAIL
7462 || filecount == 0)
7463 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007464 semsg(_("E151: No match: %s"), NameBuff);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007465 return;
7466 }
7467
7468 /* Go over all files in the directory to find out what languages are
7469 * present. */
7470 ga_init2(&ga, 1, 10);
7471 for (i = 0; i < filecount; ++i)
7472 {
7473 len = (int)STRLEN(files[i]);
7474 if (len > 4)
7475 {
7476 if (STRICMP(files[i] + len - 4, ".txt") == 0)
7477 {
7478 /* ".txt" -> language "en" */
7479 lang[0] = 'e';
7480 lang[1] = 'n';
7481 }
7482 else if (files[i][len - 4] == '.'
7483 && ASCII_ISALPHA(files[i][len - 3])
7484 && ASCII_ISALPHA(files[i][len - 2])
7485 && TOLOWER_ASC(files[i][len - 1]) == 'x')
7486 {
7487 /* ".abx" -> language "ab" */
7488 lang[0] = TOLOWER_ASC(files[i][len - 3]);
7489 lang[1] = TOLOWER_ASC(files[i][len - 2]);
7490 }
7491 else
7492 continue;
7493
7494 /* Did we find this language already? */
7495 for (j = 0; j < ga.ga_len; j += 2)
7496 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
7497 break;
7498 if (j == ga.ga_len)
7499 {
7500 /* New language, add it. */
7501 if (ga_grow(&ga, 2) == FAIL)
7502 break;
7503 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
7504 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
7505 }
7506 }
7507 }
7508
7509 /*
7510 * Loop over the found languages to generate a tags file for each one.
7511 */
7512 for (j = 0; j < ga.ga_len; j += 2)
7513 {
7514 STRCPY(fname, "tags-xx");
7515 fname[5] = ((char_u *)ga.ga_data)[j];
7516 fname[6] = ((char_u *)ga.ga_data)[j + 1];
7517 if (fname[5] == 'e' && fname[6] == 'n')
7518 {
7519 /* English is an exception: use ".txt" and "tags". */
7520 fname[4] = NUL;
7521 STRCPY(ext, ".txt");
7522 }
7523 else
7524 {
7525 /* Language "ab" uses ".abx" and "tags-ab". */
7526 STRCPY(ext, ".xxx");
7527 ext[1] = fname[5];
7528 ext[2] = fname[6];
7529 }
7530 helptags_one(dirname, ext, fname, add_help_tags);
7531 }
7532
7533 ga_clear(&ga);
7534 FreeWild(filecount, files);
7535
7536#else
7537 /* No language support, just use "*.txt" and "tags". */
7538 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
7539#endif
7540}
7541
7542 static void
7543helptags_cb(char_u *fname, void *cookie)
7544{
7545 do_helptags(fname, *(int *)cookie);
7546}
7547
7548/*
7549 * ":helptags"
7550 */
7551 void
7552ex_helptags(exarg_T *eap)
7553{
7554 expand_T xpc;
7555 char_u *dirname;
7556 int add_help_tags = FALSE;
7557
7558 /* Check for ":helptags ++t {dir}". */
Bram Moolenaar1c465442017-03-12 20:10:05 +01007559 if (STRNCMP(eap->arg, "++t", 3) == 0 && VIM_ISWHITE(eap->arg[3]))
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007560 {
7561 add_help_tags = TRUE;
7562 eap->arg = skipwhite(eap->arg + 3);
7563 }
7564
7565 if (STRCMP(eap->arg, "ALL") == 0)
7566 {
7567 do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR,
7568 helptags_cb, &add_help_tags);
7569 }
7570 else
7571 {
7572 ExpandInit(&xpc);
7573 xpc.xp_context = EXPAND_DIRECTORIES;
7574 dirname = ExpandOne(&xpc, eap->arg, NULL,
7575 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
7576 if (dirname == NULL || !mch_isdir(dirname))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007577 semsg(_("E150: Not a directory: %s"), eap->arg);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007578 else
7579 do_helptags(dirname, add_help_tags);
7580 vim_free(dirname);
7581 }
7582}
7583
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007584/*
7585 * Make the user happy.
7586 */
7587 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007588ex_smile(exarg_T *eap UNUSED)
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007589{
Bram Moolenaar700eefe2016-04-13 21:14:37 +02007590 static char *code[] = {
7591 "\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$",
7592 "\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"
7593 };
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007594 char *p;
7595 int n;
Bram Moolenaar700eefe2016-04-13 21:14:37 +02007596 int i;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007597
7598 msg_start();
7599 msg_putchar('\n');
Bram Moolenaar700eefe2016-04-13 21:14:37 +02007600 for (i = 0; i < 2; ++i)
7601 for (p = code[i]; *p != NUL; ++p)
7602 if (*p == 'x')
7603 msg_putchar('\n');
7604 else
7605 for (n = *p++; n > 0; --n)
7606 if (*p == 'o' || *p == '$')
Bram Moolenaar8820b482017-03-16 17:23:31 +01007607 msg_putchar_attr(*p, HL_ATTR(HLF_L));
Bram Moolenaar700eefe2016-04-13 21:14:37 +02007608 else
7609 msg_putchar(*p);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007610 msg_clr_eos();
7611}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007612
Bram Moolenaar071d4272004-06-13 20:20:40 +00007613/*
7614 * ":drop"
7615 * Opens the first argument in a window. When there are two or more arguments
7616 * the argument list is redefined.
7617 */
7618 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007619ex_drop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007620{
7621 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007622 win_T *wp;
7623 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007624 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007625
7626 /*
7627 * Check if the first argument is already being edited in a window. If
7628 * so, jump to that window.
7629 * We would actually need to check all arguments, but that's complicated
7630 * and mostly only one file is dropped.
7631 * This also ignores wildcards, since it is very unlikely the user is
7632 * editing a file name with a wildcard character.
7633 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007634 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007635
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00007636 /*
7637 * Expanding wildcards may result in an empty argument list. E.g. when
7638 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
7639 * already did an error message for this.
7640 */
7641 if (ARGCOUNT == 0)
7642 return;
7643
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007644 if (cmdmod.tab)
7645 {
7646 /* ":tab drop file ...": open a tab for each argument that isn't
7647 * edited in a window yet. It's like ":tab all" but without closing
7648 * windows or tabs. */
7649 ex_all(eap);
7650 }
7651 else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007652 {
7653 /* ":drop file ...": Edit the first argument. Jump to an existing
7654 * window if possible, edit in current window if the current buffer
7655 * can be abandoned, otherwise open a new window. */
7656 buf = buflist_findnr(ARGLIST[0].ae_fnum);
7657
7658 FOR_ALL_TAB_WINDOWS(tp, wp)
7659 {
7660 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007661 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00007662 goto_tabpage_win(tp, wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007663 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007664 return;
7665 }
7666 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007667
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007668 /*
7669 * Check whether the current buffer is changed. If so, we will need
7670 * to split the current window or data could be lost.
7671 * Skip the check if the 'hidden' option is set, as in this case the
7672 * buffer won't be lost.
7673 */
Bram Moolenaareb44a682017-08-03 22:44:55 +02007674 if (!buf_hide(curbuf))
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007675 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007676 ++emsg_off;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007677 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007678 --emsg_off;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007679 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007680
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007681 /* Fake a ":sfirst" or ":first" command edit the first argument. */
7682 if (split)
7683 {
7684 eap->cmdidx = CMD_sfirst;
7685 eap->cmd[0] = 's';
7686 }
7687 else
7688 eap->cmdidx = CMD_first;
7689 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007690 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007691}
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007692
Bram Moolenaar9baf2972016-08-21 22:39:35 +02007693/*
7694 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
7695 * Put the start of the pattern in "*s", unless "s" is NULL.
7696 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
7697 * If "s" is not NULL terminate the pattern with a NUL.
7698 * Return a pointer to the char just past the pattern plus flags.
7699 */
7700 char_u *
7701skip_vimgrep_pat(char_u *p, char_u **s, int *flags)
7702{
7703 int c;
7704
7705 if (vim_isIDc(*p))
7706 {
7707 /* ":vimgrep pattern fname" */
7708 if (s != NULL)
7709 *s = p;
7710 p = skiptowhite(p);
7711 if (s != NULL && *p != NUL)
7712 *p++ = NUL;
7713 }
7714 else
7715 {
7716 /* ":vimgrep /pattern/[g][j] fname" */
7717 if (s != NULL)
7718 *s = p + 1;
7719 c = *p;
7720 p = skip_regexp(p + 1, c, TRUE, NULL);
7721 if (*p != c)
7722 return NULL;
7723
7724 /* Truncate the pattern. */
7725 if (s != NULL)
7726 *p = NUL;
7727 ++p;
7728
7729 /* Find the flags */
7730 while (*p == 'g' || *p == 'j')
7731 {
7732 if (flags != NULL)
7733 {
7734 if (*p == 'g')
7735 *flags |= VGR_GLOBAL;
7736 else
7737 *flags |= VGR_NOJUMP;
7738 }
7739 ++p;
7740 }
7741 }
7742 return p;
7743}
Bram Moolenaar9baf2972016-08-21 22:39:35 +02007744
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007745#if defined(FEAT_EVAL) || defined(PROTO)
7746/*
7747 * List v:oldfiles in a nice way.
7748 */
7749 void
7750ex_oldfiles(exarg_T *eap UNUSED)
7751{
7752 list_T *l = get_vim_var_list(VV_OLDFILES);
7753 listitem_T *li;
7754 int nr = 0;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007755 char_u *fname;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007756
7757 if (l == NULL)
7758 msg((char_u *)_("No old files"));
7759 else
7760 {
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007761 msg_start();
7762 msg_scroll = TRUE;
7763 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
7764 {
7765 ++nr;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007766 fname = tv_get_string(&li->li_tv);
Bram Moolenaard6f2ee32016-08-24 00:30:52 +02007767 if (!message_filtered(fname))
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007768 {
7769 msg_outnum((long)nr);
7770 MSG_PUTS(": ");
7771 msg_outtrans(fname);
Bram Moolenaar885c00e2016-08-28 17:08:17 +02007772 msg_clr_eos();
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007773 msg_putchar('\n');
7774 out_flush(); /* output one line at a time */
7775 ui_breakcheck();
7776 }
7777 }
Bram Moolenaare11d61a2016-08-20 18:36:54 +02007778
7779 /* Assume "got_int" was set to truncate the listing. */
7780 got_int = FALSE;
7781
7782# ifdef FEAT_BROWSE_CMD
7783 if (cmdmod.browse)
7784 {
7785 quit_more = FALSE;
7786 nr = prompt_for_number(FALSE);
7787 msg_starthere();
7788 if (nr > 0)
7789 {
7790 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
7791 (long)nr);
7792
7793 if (p != NULL)
7794 {
7795 p = expand_env_save(p);
7796 eap->arg = p;
7797 eap->cmdidx = CMD_edit;
7798 cmdmod.browse = FALSE;
7799 do_exedit(eap, NULL);
7800 vim_free(p);
7801 }
7802 }
7803 }
7804# endif
7805 }
7806}
7807#endif