blob: 0a87f7b38fcc9d3ef86a0d828227faa5c73a69bf [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 {
470 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 {
479 EMSG(_(e_noprevre));
480 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 {
493 EMSG2(_(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 {
501 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)
652 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
653 else if (deleted < 0)
654 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
Bram Moolenaardc9e9552018-06-28 11:28:08 +0200655
656 if (change_occurred || deleted != 0)
657 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000658
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000659 curwin->w_cursor.lnum = eap->line1;
660 beginline(BL_WHITE | BL_FIX);
661
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000662sortend:
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000663 vim_free(nrs);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000664 vim_free(sortbuf1);
665 vim_free(sortbuf2);
Bram Moolenaar473de612013-06-08 18:19:48 +0200666 vim_regfree(regmatch.regprog);
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000667 if (got_int)
668 EMSG(_(e_interr));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000669}
670
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671/*
672 * ":retab".
673 */
674 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100675ex_retab(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676{
677 linenr_T lnum;
678 int got_tab = FALSE;
679 long num_spaces = 0;
680 long num_tabs;
681 long len;
682 long col;
683 long vcol;
684 long start_col = 0; /* For start of white-space string */
685 long start_vcol = 0; /* For start of white-space string */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 long old_len;
687 char_u *ptr;
688 char_u *new_line = (char_u *)1; /* init to non-NULL */
689 int did_undo; /* called u_save for current line */
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200690#ifdef FEAT_VARTABS
Bram Moolenaar0119a592018-06-24 23:53:28 +0200691 int *new_vts_array = NULL;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200692 char_u *new_ts_str; /* string value of tab argument */
693#else
694 int temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 int new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200696#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 int save_list;
698 linenr_T first_line = 0; /* first changed line */
699 linenr_T last_line = 0; /* last changed line */
700
701 save_list = curwin->w_p_list;
702 curwin->w_p_list = 0; /* don't want list mode here */
703
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200704#ifdef FEAT_VARTABS
705 new_ts_str = eap->arg;
Bram Moolenaar0119a592018-06-24 23:53:28 +0200706 if (!tabstop_set(eap->arg, &new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200707 return;
708 while (vim_isdigit(*(eap->arg)) || *(eap->arg) == ',')
709 ++(eap->arg);
710
Bram Moolenaar0119a592018-06-24 23:53:28 +0200711 // This ensures that either new_vts_array and new_ts_str are freshly
712 // allocated, or new_vts_array points to an existing array and new_ts_str
713 // is null.
714 if (new_vts_array == NULL)
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200715 {
Bram Moolenaar0119a592018-06-24 23:53:28 +0200716 new_vts_array = curbuf->b_p_vts_array;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200717 new_ts_str = NULL;
718 }
719 else
720 new_ts_str = vim_strnsave(new_ts_str, eap->arg - new_ts_str);
721#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 new_ts = getdigits(&(eap->arg));
723 if (new_ts < 0)
724 {
725 EMSG(_(e_positive));
726 return;
727 }
728 if (new_ts == 0)
729 new_ts = curbuf->b_p_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200730#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
732 {
733 ptr = ml_get(lnum);
734 col = 0;
735 vcol = 0;
736 did_undo = FALSE;
737 for (;;)
738 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100739 if (VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 {
741 if (!got_tab && num_spaces == 0)
742 {
743 /* First consecutive white-space */
744 start_vcol = vcol;
745 start_col = col;
746 }
747 if (ptr[col] == ' ')
748 num_spaces++;
749 else
750 got_tab = TRUE;
751 }
752 else
753 {
754 if (got_tab || (eap->forceit && num_spaces > 1))
755 {
756 /* Retabulate this string of white-space */
757
758 /* len is virtual length of white string */
759 len = num_spaces = vcol - start_vcol;
760 num_tabs = 0;
761 if (!curbuf->b_p_et)
762 {
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200763#ifdef FEAT_VARTABS
764 int t, s;
765
766 tabstop_fromto(start_vcol, vcol,
Bram Moolenaar0119a592018-06-24 23:53:28 +0200767 curbuf->b_p_ts, new_vts_array, &t, &s);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200768 num_tabs = t;
769 num_spaces = s;
770#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 temp = new_ts - (start_vcol % new_ts);
772 if (num_spaces >= temp)
773 {
774 num_spaces -= temp;
775 num_tabs++;
776 }
777 num_tabs += num_spaces / new_ts;
778 num_spaces -= (num_spaces / new_ts) * new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200779#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 }
781 if (curbuf->b_p_et || got_tab ||
782 (num_spaces + num_tabs < len))
783 {
784 if (did_undo == FALSE)
785 {
786 did_undo = TRUE;
787 if (u_save((linenr_T)(lnum - 1),
788 (linenr_T)(lnum + 1)) == FAIL)
789 {
790 new_line = NULL; /* flag out-of-memory */
791 break;
792 }
793 }
794
795 /* len is actual number of white characters used */
796 len = num_spaces + num_tabs;
797 old_len = (long)STRLEN(ptr);
798 new_line = lalloc(old_len - col + start_col + len + 1,
799 TRUE);
800 if (new_line == NULL)
801 break;
802 if (start_col > 0)
803 mch_memmove(new_line, ptr, (size_t)start_col);
804 mch_memmove(new_line + start_col + len,
805 ptr + col, (size_t)(old_len - col + 1));
806 ptr = new_line + start_col;
807 for (col = 0; col < len; col++)
808 ptr[col] = (col < num_tabs) ? '\t' : ' ';
809 ml_replace(lnum, new_line, FALSE);
810 if (first_line == 0)
811 first_line = lnum;
812 last_line = lnum;
813 ptr = new_line;
814 col = start_col + len;
815 }
816 }
817 got_tab = FALSE;
818 num_spaces = 0;
819 }
820 if (ptr[col] == NUL)
821 break;
822 vcol += chartabsize(ptr + col, (colnr_T)vcol);
823#ifdef FEAT_MBYTE
824 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000825 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 else
827#endif
828 ++col;
829 }
830 if (new_line == NULL) /* out of memory */
831 break;
832 line_breakcheck();
833 }
834 if (got_int)
835 EMSG(_(e_interr));
836
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200837#ifdef FEAT_VARTABS
838 // If a single value was given then it can be considered equal to
839 // either the value of 'tabstop' or the value of 'vartabstop'.
840 if (tabstop_count(curbuf->b_p_vts_array) == 0
Bram Moolenaar0119a592018-06-24 23:53:28 +0200841 && tabstop_count(new_vts_array) == 1
842 && curbuf->b_p_ts == tabstop_first(new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200843 ; /* not changed */
844 else if (tabstop_count(curbuf->b_p_vts_array) > 0
Bram Moolenaar0119a592018-06-24 23:53:28 +0200845 && tabstop_eq(curbuf->b_p_vts_array, new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200846 ; /* not changed */
847 else
848 redraw_curbuf_later(NOT_VALID);
849#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 if (curbuf->b_p_ts != new_ts)
851 redraw_curbuf_later(NOT_VALID);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200852#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 if (first_line != 0)
854 changed_lines(first_line, 0, last_line + 1, 0L);
855
856 curwin->w_p_list = save_list; /* restore 'list' */
857
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200858#ifdef FEAT_VARTABS
859 if (new_ts_str != NULL) /* set the new tabstop */
860 {
861 // If 'vartabstop' is in use or if the value given to retab has more
862 // than one tabstop then update 'vartabstop'.
863 int *old_vts_ary = curbuf->b_p_vts_array;
864
Bram Moolenaar0119a592018-06-24 23:53:28 +0200865 if (tabstop_count(old_vts_ary) > 0 || tabstop_count(new_vts_array) > 1)
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200866 {
867 set_string_option_direct((char_u *)"vts", -1, new_ts_str,
868 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0119a592018-06-24 23:53:28 +0200869 curbuf->b_p_vts_array = new_vts_array;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200870 vim_free(old_vts_ary);
871 }
872 else
873 {
874 // 'vartabstop' wasn't in use and a single value was given to
875 // retab then update 'tabstop'.
Bram Moolenaar0119a592018-06-24 23:53:28 +0200876 curbuf->b_p_ts = tabstop_first(new_vts_array);
877 vim_free(new_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200878 }
Bram Moolenaar307ac5c2018-06-28 22:23:00 +0200879 vim_free(new_ts_str);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200880 }
881#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 curbuf->b_p_ts = new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200883#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 coladvance(curwin->w_curswant);
885
886 u_clearline();
887}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888
889/*
890 * :move command - move lines line1-line2 to line dest
891 *
892 * return FAIL for failure, OK otherwise
893 */
894 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100895do_move(linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896{
897 char_u *str;
898 linenr_T l;
899 linenr_T extra; /* Num lines added before line1 */
900 linenr_T num_lines; /* Num lines moved */
901 linenr_T last_line; /* Last line in file after adding new text */
Bram Moolenaard5f69332015-04-15 12:43:50 +0200902#ifdef FEAT_FOLDING
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100903 win_T *win;
904 tabpage_T *tp;
Bram Moolenaard5f69332015-04-15 12:43:50 +0200905#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906
907 if (dest >= line1 && dest < line2)
908 {
909 EMSG(_("E134: Move lines into themselves"));
910 return FAIL;
911 }
912
913 num_lines = line2 - line1 + 1;
914
915 /*
916 * First we copy the old text to its new location -- webb
917 * Also copy the flag that ":global" command uses.
918 */
919 if (u_save(dest, dest + 1) == FAIL)
920 return FAIL;
921 for (extra = 0, l = line1; l <= line2; l++)
922 {
923 str = vim_strsave(ml_get(l + extra));
924 if (str != NULL)
925 {
926 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
927 vim_free(str);
928 if (dest < line1)
929 extra++;
930 }
931 }
932
933 /*
934 * Now we must be careful adjusting our marks so that we don't overlap our
935 * mark_adjust() calls.
936 *
937 * We adjust the marks within the old text so that they refer to the
938 * last lines of the file (temporarily), because we know no other marks
939 * will be set there since these line numbers did not exist until we added
940 * our new lines.
941 *
942 * Then we adjust the marks on lines between the old and new text positions
943 * (either forwards or backwards).
944 *
945 * And Finally we adjust the marks we put at the end of the file back to
946 * their final destination at the new text position -- webb
947 */
948 last_line = curbuf->b_ml.ml_line_count;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100949 mark_adjust_nofold(line1, line2, last_line - line2, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 if (dest >= line2)
951 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100952 mark_adjust_nofold(line2 + 1, dest, -num_lines, 0L);
953#ifdef FEAT_FOLDING
954 FOR_ALL_TAB_WINDOWS(tp, win) {
955 if (win->w_buffer == curbuf)
956 foldMoveRange(&win->w_folds, line1, line2, dest);
957 }
958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 curbuf->b_op_start.lnum = dest - num_lines + 1;
960 curbuf->b_op_end.lnum = dest;
961 }
962 else
963 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100964 mark_adjust_nofold(dest + 1, line1 - 1, num_lines, 0L);
965#ifdef FEAT_FOLDING
966 FOR_ALL_TAB_WINDOWS(tp, win) {
967 if (win->w_buffer == curbuf)
968 foldMoveRange(&win->w_folds, dest + 1, line1 - 1, line2);
969 }
970#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 curbuf->b_op_start.lnum = dest + 1;
972 curbuf->b_op_end.lnum = dest + num_lines;
973 }
974 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100975 mark_adjust_nofold(last_line - num_lines + 1, last_line,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 -(last_line - dest - extra), 0L);
977
978 /*
979 * Now we delete the original text -- webb
980 */
981 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
982 return FAIL;
983
984 for (l = line1; l <= line2; l++)
985 ml_delete(line1 + extra, TRUE);
986
987 if (!global_busy && num_lines > p_report)
Bram Moolenaarda6e8912018-08-21 15:12:14 +0200988 smsg((char_u *)NGETTEXT("%ld line moved", "%ld lines moved", num_lines),
989 (long)num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990
991 /*
992 * Leave the cursor on the last of the moved lines.
993 */
994 if (dest >= line1)
995 curwin->w_cursor.lnum = dest;
996 else
997 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
998
999 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +01001000 {
1001 dest += num_lines + 1;
1002 last_line = curbuf->b_ml.ml_line_count;
1003 if (dest > last_line + 1)
1004 dest = last_line + 1;
1005 changed_lines(line1, 0, dest, 0L);
1006 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 else
1008 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
1009
1010 return OK;
1011}
1012
1013/*
1014 * ":copy"
1015 */
1016 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001017ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018{
1019 linenr_T count;
1020 char_u *p;
1021
1022 count = line2 - line1 + 1;
1023 curbuf->b_op_start.lnum = n + 1;
1024 curbuf->b_op_end.lnum = n + count;
1025 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
1026
1027 /*
1028 * there are three situations:
1029 * 1. destination is above line1
1030 * 2. destination is between line1 and line2
1031 * 3. destination is below line2
1032 *
1033 * n = destination (when starting)
1034 * curwin->w_cursor.lnum = destination (while copying)
1035 * line1 = start of source (while copying)
1036 * line2 = end of source (while copying)
1037 */
1038 if (u_save(n, n + 1) == FAIL)
1039 return;
1040
1041 curwin->w_cursor.lnum = n;
1042 while (line1 <= line2)
1043 {
1044 /* need to use vim_strsave() because the line will be unlocked within
1045 * ml_append() */
1046 p = vim_strsave(ml_get(line1));
1047 if (p != NULL)
1048 {
1049 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
1050 vim_free(p);
1051 }
1052 /* situation 2: skip already copied lines */
1053 if (line1 == n)
1054 line1 = curwin->w_cursor.lnum;
1055 ++line1;
1056 if (curwin->w_cursor.lnum < line1)
1057 ++line1;
1058 if (curwin->w_cursor.lnum < line2)
1059 ++line2;
1060 ++curwin->w_cursor.lnum;
1061 }
1062
1063 appended_lines_mark(n, count);
1064
1065 msgmore((long)count);
1066}
1067
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001068static char_u *prevcmd = NULL; /* the previous command */
1069
1070#if defined(EXITFREE) || defined(PROTO)
1071 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001072free_prev_shellcmd(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001073{
1074 vim_free(prevcmd);
1075}
1076#endif
1077
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078/*
1079 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
1080 * Bangs in the argument are replaced with the previously entered command.
1081 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 */
1083 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001084do_bang(
1085 int addr_count,
1086 exarg_T *eap,
1087 int forceit,
1088 int do_in,
1089 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090{
1091 char_u *arg = eap->arg; /* command */
1092 linenr_T line1 = eap->line1; /* start of range */
1093 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 char_u *newcmd = NULL; /* the new command */
1095 int free_newcmd = FALSE; /* need to free() newcmd */
1096 int ins_prevcmd;
1097 char_u *t;
1098 char_u *p;
1099 char_u *trailarg;
1100 int len;
1101 int scroll_save = msg_scroll;
1102
1103 /*
1104 * Disallow shell commands for "rvim".
1105 * Disallow shell commands from .exrc and .vimrc in current directory for
1106 * security reasons.
1107 */
1108 if (check_restricted() || check_secure())
1109 return;
1110
1111 if (addr_count == 0) /* :! */
1112 {
1113 msg_scroll = FALSE; /* don't scroll here */
1114 autowrite_all();
1115 msg_scroll = scroll_save;
1116 }
1117
1118 /*
1119 * Try to find an embedded bang, like in :!<cmd> ! [args]
1120 * (:!! is indicated by the 'forceit' variable)
1121 */
1122 ins_prevcmd = forceit;
1123 trailarg = arg;
1124 do
1125 {
1126 len = (int)STRLEN(trailarg) + 1;
1127 if (newcmd != NULL)
1128 len += (int)STRLEN(newcmd);
1129 if (ins_prevcmd)
1130 {
1131 if (prevcmd == NULL)
1132 {
1133 EMSG(_(e_noprev));
1134 vim_free(newcmd);
1135 return;
1136 }
1137 len += (int)STRLEN(prevcmd);
1138 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001139 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 {
1141 vim_free(newcmd);
1142 return;
1143 }
1144 *t = NUL;
1145 if (newcmd != NULL)
1146 STRCAT(t, newcmd);
1147 if (ins_prevcmd)
1148 STRCAT(t, prevcmd);
1149 p = t + STRLEN(t);
1150 STRCAT(t, trailarg);
1151 vim_free(newcmd);
1152 newcmd = t;
1153
1154 /*
1155 * Scan the rest of the argument for '!', which is replaced by the
1156 * previous command. "\!" is replaced by "!" (this is vi compatible).
1157 */
1158 trailarg = NULL;
1159 while (*p)
1160 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001161 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 {
1163 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001164 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 else
1166 {
1167 trailarg = p;
1168 *trailarg++ = NUL;
1169 ins_prevcmd = TRUE;
1170 break;
1171 }
1172 }
1173 ++p;
1174 }
1175 } while (trailarg != NULL);
1176
1177 vim_free(prevcmd);
1178 prevcmd = newcmd;
1179
1180 if (bangredo) /* put cmd in redo buffer for ! command */
1181 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001182 /* If % or # appears in the command, it must have been escaped.
1183 * Reescape them, so that redoing them does not substitute them by the
1184 * buffername. */
1185 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1186
1187 if (cmd != NULL)
1188 {
1189 AppendToRedobuffLit(cmd, -1);
1190 vim_free(cmd);
1191 }
1192 else
1193 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 AppendToRedobuff((char_u *)"\n");
1195 bangredo = FALSE;
1196 }
1197 /*
1198 * Add quotes around the command, for shells that need them.
1199 */
1200 if (*p_shq != NUL)
1201 {
1202 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1203 if (newcmd == NULL)
1204 return;
1205 STRCPY(newcmd, p_shq);
1206 STRCAT(newcmd, prevcmd);
1207 STRCAT(newcmd, p_shq);
1208 free_newcmd = TRUE;
1209 }
1210 if (addr_count == 0) /* :! */
1211 {
1212 /* echo the command */
1213 msg_start();
1214 msg_putchar(':');
1215 msg_putchar('!');
1216 msg_outtrans(newcmd);
1217 msg_clr_eos();
1218 windgoto(msg_row, msg_col);
1219
1220 do_shell(newcmd, 0);
1221 }
1222 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001223 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 /* Careful: This may recursively call do_bang() again! (because of
1225 * autocommands) */
1226 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001227 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarade00832006-03-10 21:46:58 +00001228 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 if (free_newcmd)
1230 vim_free(newcmd);
1231}
1232
1233/*
1234 * do_filter: filter lines through a command given by the user
1235 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001236 * We mostly use temp files and the call_shell() routine here. This would
1237 * normally be done using pipes on a UNIX machine, but this is more portable
1238 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 * to deal with redirection somehow, and should handle things like looking
1240 * at the PATH env. variable, and adding reasonable extensions to the
1241 * command name given by the user. All reasonable versions of call_shell()
1242 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001243 * Alternatively, if on Unix and redirecting input or output, but not both,
1244 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 * We use input redirection if do_in is TRUE.
1246 * We use output redirection if do_out is TRUE.
1247 */
1248 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001249do_filter(
1250 linenr_T line1,
1251 linenr_T line2,
1252 exarg_T *eap, /* for forced 'ff' and 'fenc' */
1253 char_u *cmd,
1254 int do_in,
1255 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256{
1257 char_u *itmp = NULL;
1258 char_u *otmp = NULL;
1259 linenr_T linecount;
1260 linenr_T read_linecount;
1261 pos_T cursor_save;
1262 char_u *cmd_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 buf_T *old_curbuf = curbuf;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001264 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265
1266 if (*cmd == NUL) /* no filter command */
1267 return;
1268
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 cursor_save = curwin->w_cursor;
1270 linecount = line2 - line1 + 1;
1271 curwin->w_cursor.lnum = line1;
1272 curwin->w_cursor.col = 0;
1273 changed_line_abv_curs();
1274 invalidate_botline();
1275
1276 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001277 * When using temp files:
1278 * 1. * Form temp file names
1279 * 2. * Write the lines to a temp file
1280 * 3. Run the filter command on the temp file
1281 * 4. * Read the output of the command into the buffer
1282 * 5. * Delete the original lines to be filtered
1283 * 6. * Remove the temp files
1284 *
1285 * When writing the input with a pipe or when catching the output with a
1286 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 */
1288
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001289 if (do_out)
1290 shell_flags |= SHELL_DOOUT;
1291
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001292#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001293 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001295 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1296 shell_flags |= SHELL_READ;
1297 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001299 else if (do_in && !do_out && !p_stmp)
1300 {
1301 /* Use a pipe to write stdin of the command, do not use a temp file. */
1302 shell_flags |= SHELL_WRITE;
1303 curbuf->b_op_start.lnum = line1;
1304 curbuf->b_op_end.lnum = line2;
1305 }
1306 else if (do_in && do_out && !p_stmp)
1307 {
1308 /* Use a pipe to write stdin and fetch stdout of the command, do not
1309 * use a temp file. */
1310 shell_flags |= SHELL_READ|SHELL_WRITE;
1311 curbuf->b_op_start.lnum = line1;
1312 curbuf->b_op_end.lnum = line2;
1313 curwin->w_cursor.lnum = line2;
1314 }
1315 else
1316#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001317 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1318 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001319 {
1320 EMSG(_(e_notmp));
1321 goto filterend;
1322 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323
1324/*
1325 * The writing and reading of temp files will not be shown.
1326 * Vi also doesn't do this and the messages are not very informative.
1327 */
1328 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001329 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 FALSE, FALSE, FALSE, TRUE) == FAIL)
1331 {
1332 msg_putchar('\n'); /* keep message from buf_write() */
1333 --no_wait_return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001334#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 if (!aborting())
1336#endif
1337 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1338 goto filterend;
1339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 if (curbuf != old_curbuf)
1341 goto filterend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342
1343 if (!do_out)
1344 msg_putchar('\n');
1345
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001346 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1348 if (cmd_buf == NULL)
1349 goto filterend;
1350
1351 windgoto((int)Rows - 1, 0);
1352 cursor_on();
1353
1354 /*
1355 * When not redirecting the output the command can write anything to the
1356 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1357 * stderr output of external command. Clear the screen later.
1358 * If do_in is FALSE, this could be something like ":r !cat", which may
1359 * also mess up the screen, clear it later.
1360 */
1361 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1362 redraw_later_clear();
1363
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001364 if (do_out)
1365 {
1366 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001367 {
1368 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001369 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001370 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001371 redraw_curbuf_later(VALID);
1372 }
1373 read_linecount = curbuf->b_ml.ml_line_count;
1374
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 /*
1376 * When call_shell() fails wait_return() is called to give the user a
1377 * chance to read the error messages. Otherwise errors are ignored, so you
1378 * can see the error messages from the command that appear on stdout; use
1379 * 'u' to fix the text
1380 * Switch to cooked mode when not redirecting stdin, avoids that something
1381 * like ":r !cat" hangs.
1382 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1383 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001384 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 {
1386 redraw_later_clear();
1387 wait_return(FALSE);
1388 }
1389 vim_free(cmd_buf);
1390
1391 did_check_timestamps = FALSE;
1392 need_check_timestamps = TRUE;
1393
1394 /* When interrupting the shell command, it may still have produced some
1395 * useful output. Reset got_int here, so that readfile() won't cancel
1396 * reading. */
1397 ui_breakcheck();
1398 got_int = FALSE;
1399
1400 if (do_out)
1401 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001402 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001404 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001405 eap, READ_FILTER) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001407#if defined(FEAT_EVAL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001408 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001410 {
1411 msg_putchar('\n');
1412 EMSG2(_(e_notread), otmp);
1413 }
1414 goto error;
1415 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001416 if (curbuf != old_curbuf)
1417 goto filterend;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001418 }
1419
1420 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1421
1422 if (shell_flags & SHELL_READ)
1423 {
1424 curbuf->b_op_start.lnum = line2 + 1;
1425 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1426 appended_lines_mark(line2, read_linecount);
1427 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428
1429 if (do_in)
1430 {
1431 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1432 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 if (read_linecount >= linecount)
1434 /* move all marks from old lines to new lines */
1435 mark_adjust(line1, line2, linecount, 0L);
1436 else
1437 {
1438 /* move marks from old lines to new lines, delete marks
1439 * that are in deleted lines */
1440 mark_adjust(line1, line1 + read_linecount - 1,
1441 linecount, 0L);
1442 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1443 }
1444 }
1445
1446 /*
1447 * Put cursor on first filtered line for ":range!cmd".
1448 * Adjust '[ and '] (set by buf_write()).
1449 */
1450 curwin->w_cursor.lnum = line1;
1451 del_lines(linecount, TRUE);
1452 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1453 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1454 write_lnum_adjust(-linecount); /* adjust last line
1455 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001456#ifdef FEAT_FOLDING
1457 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1458#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 }
1460 else
1461 {
1462 /*
1463 * Put cursor on last new line for ":r !cmd".
1464 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001466 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001468
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1470 --no_wait_return;
1471
1472 if (linecount > p_report)
1473 {
1474 if (do_in)
1475 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001476 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1477 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001480 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 }
1482 else
1483 msgmore((long)linecount);
1484 }
1485 }
1486 else
1487 {
1488error:
1489 /* put cursor back in same position for ":w !cmd" */
1490 curwin->w_cursor = cursor_save;
1491 --no_wait_return;
1492 wait_return(FALSE);
1493 }
1494
1495filterend:
1496
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 if (curbuf != old_curbuf)
1498 {
1499 --no_wait_return;
1500 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1501 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 if (itmp != NULL)
1503 mch_remove(itmp);
1504 if (otmp != NULL)
1505 mch_remove(otmp);
1506 vim_free(itmp);
1507 vim_free(otmp);
1508}
1509
1510/*
1511 * Call a shell to execute a command.
1512 * When "cmd" is NULL start an interactive shell.
1513 */
1514 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001515do_shell(
1516 char_u *cmd,
1517 int flags) /* may be SHELL_DOOUT when output is redirected */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518{
1519 buf_T *buf;
1520#ifndef FEAT_GUI_MSWIN
1521 int save_nwr;
1522#endif
1523#ifdef MSWIN
1524 int winstart = FALSE;
1525#endif
1526
1527 /*
1528 * Disallow shell commands for "rvim".
1529 * Disallow shell commands from .exrc and .vimrc in current directory for
1530 * security reasons.
1531 */
1532 if (check_restricted() || check_secure())
1533 {
1534 msg_end();
1535 return;
1536 }
1537
1538#ifdef MSWIN
1539 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 * Check if ":!start" is used.
1541 */
1542 if (cmd != NULL)
1543 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1544#endif
1545
1546 /*
1547 * For autocommands we want to get the output on the current screen, to
1548 * avoid having to type return below.
1549 */
1550 msg_putchar('\r'); /* put cursor at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 if (!autocmd_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 {
1553#ifdef MSWIN
1554 if (!winstart)
1555#endif
1556 stoptermcap();
1557 }
1558#ifdef MSWIN
1559 if (!winstart)
1560#endif
1561 msg_putchar('\n'); /* may shift screen one line up */
1562
1563 /* warning message before calling the shell */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001564 if (p_warn && !autocmd_busy && msg_silent == 0)
Bram Moolenaar29323592016-07-24 22:04:11 +02001565 FOR_ALL_BUFFERS(buf)
Bram Moolenaarf405c8f2017-12-09 19:51:49 +01001566 if (bufIsChangedNotTerm(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 {
1568#ifdef FEAT_GUI_MSWIN
1569 if (!winstart)
1570 starttermcap(); /* don't want a message box here */
1571#endif
1572 MSG_PUTS(_("[No write since last change]\n"));
1573#ifdef FEAT_GUI_MSWIN
1574 if (!winstart)
1575 stoptermcap();
1576#endif
1577 break;
1578 }
1579
1580 /* This windgoto is required for when the '\n' resulted in a "delete line
1581 * 1" command to the terminal. */
1582 if (!swapping_screen())
1583 windgoto(msg_row, msg_col);
1584 cursor_on();
1585 (void)call_shell(cmd, SHELL_COOKED | flags);
1586 did_check_timestamps = FALSE;
1587 need_check_timestamps = TRUE;
1588
1589 /*
1590 * put the message cursor at the end of the screen, avoids wait_return()
1591 * to overwrite the text that the external command showed
1592 */
1593 if (!swapping_screen())
1594 {
1595 msg_row = Rows - 1;
1596 msg_col = 0;
1597 }
1598
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 if (autocmd_busy)
1600 {
1601 if (msg_silent == 0)
1602 redraw_later_clear();
1603 }
1604 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 {
1606 /*
1607 * For ":sh" there is no need to call wait_return(), just redraw.
1608 * Also for the Win32 GUI (the output is in a console window).
1609 * Otherwise there is probably text on the screen that the user wants
1610 * to read before redrawing, so call wait_return().
1611 */
1612#ifndef FEAT_GUI_MSWIN
1613 if (cmd == NULL
1614# ifdef WIN3264
1615 || (winstart && !need_wait_return)
1616# endif
1617 )
1618 {
1619 if (msg_silent == 0)
1620 redraw_later_clear();
1621 need_wait_return = FALSE;
1622 }
1623 else
1624 {
1625 /*
1626 * If we switch screens when starttermcap() is called, we really
1627 * want to wait for "hit return to continue".
1628 */
1629 save_nwr = no_wait_return;
1630 if (swapping_screen())
1631 no_wait_return = FALSE;
1632# ifdef AMIGA
1633 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1634# else
1635 wait_return(msg_silent == 0);
1636# endif
1637 no_wait_return = save_nwr;
1638 }
1639#endif /* FEAT_GUI_W32 */
1640
1641#ifdef MSWIN
1642 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1643#endif
1644 starttermcap(); /* start termcap if not done by wait_return() */
1645
1646 /*
1647 * In an Amiga window redrawing is caused by asking the window size.
1648 * If we got an interrupt this will not work. The chance that the
1649 * window size is wrong is very small, but we need to redraw the
1650 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1651 * but it saves an extra redraw.
1652 */
1653#ifdef AMIGA
1654 if (skip_redraw) /* ':' hit in wait_return() */
1655 {
1656 if (msg_silent == 0)
1657 redraw_later_clear();
1658 }
1659 else if (term_console)
1660 {
1661 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1662 if (got_int && msg_silent == 0)
1663 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1664 else
1665 must_redraw = 0; /* no extra redraw needed */
1666 }
1667#endif
1668 }
1669
1670 /* display any error messages now */
1671 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001672
Bram Moolenaarade00832006-03-10 21:46:58 +00001673 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674}
1675
1676/*
1677 * Create a shell command from a command string, input redirection file and
1678 * output redirection file.
1679 * Returns an allocated string with the shell command, or NULL for failure.
1680 */
1681 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001682make_filter_cmd(
1683 char_u *cmd, /* command */
1684 char_u *itmp, /* NULL or name of input file */
1685 char_u *otmp) /* NULL or name of output file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686{
1687 char_u *buf;
1688 long_u len;
1689
Bram Moolenaar53076832015-12-31 19:53:21 +01001690#if defined(UNIX)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001691 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001692 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001693
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001694 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001695 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1696 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001697 if (is_fish_shell)
1698 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1699 else
1700#endif
1701 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 if (itmp != NULL)
1703 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1704 if (otmp != NULL)
1705 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1706 buf = lalloc(len, TRUE);
1707 if (buf == NULL)
1708 return NULL;
1709
Bram Moolenaar53076832015-12-31 19:53:21 +01001710#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001712 * Put braces around the command (for concatenated commands) when
1713 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001715 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001716 {
1717 if (is_fish_shell)
1718 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1719 else
1720 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1721 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001722 else
1723 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 if (itmp != NULL)
1725 {
1726 STRCAT(buf, " < ");
1727 STRCAT(buf, itmp);
1728 }
1729#else
1730 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001731 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 * the use of commands in a pipe.
1733 */
1734 STRCPY(buf, cmd);
1735 if (itmp != NULL)
1736 {
1737 char_u *p;
1738
1739 /*
1740 * If there is a pipe, we have to put the '<' in front of it.
1741 * Don't do this when 'shellquote' is not empty, otherwise the
1742 * redirection would be inside the quotes.
1743 */
1744 if (*p_shq == NUL)
1745 {
1746 p = vim_strchr(buf, '|');
1747 if (p != NULL)
1748 *p = NUL;
1749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1751 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 if (*p_shq == NUL)
1753 {
1754 p = vim_strchr(cmd, '|');
1755 if (p != NULL)
1756 {
1757 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1758 STRCAT(buf, p);
1759 }
1760 }
1761 }
1762#endif
1763 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001764 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765
1766 return buf;
1767}
1768
1769/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001770 * Append output redirection for file "fname" to the end of string buffer
1771 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 * Works with the 'shellredir' and 'shellpipe' options.
1773 * The caller should make sure that there is enough room:
1774 * STRLEN(opt) + STRLEN(fname) + 3
1775 */
1776 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001777append_redir(
1778 char_u *buf,
1779 int buflen,
1780 char_u *opt,
1781 char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782{
1783 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001784 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001786 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001787 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001789 {
1790 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001792 if (p[1] == '%') /* skip %% */
1793 ++p;
1794 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 if (p != NULL)
1796 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001797 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1798 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1799 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 }
1801 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001802 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 " %s %s",
1805#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807#endif
1808 (char *)opt, (char *)fname);
1809}
1810
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001811#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001813static int no_viminfo(void);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001814static int read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02001815static void write_viminfo_version(FILE *fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001816static void write_viminfo_barlines(vir_T *virp, FILE *fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817static int viminfo_errcnt;
1818
1819 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001820no_viminfo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821{
1822 /* "vim -i NONE" does not read or write a viminfo file */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001823 return STRCMP(p_viminfofile, "NONE") == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824}
1825
1826/*
1827 * Report an error for reading a viminfo file.
1828 * Count the number of errors. When there are more than 10, return TRUE.
1829 */
1830 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001831viminfo_error(char *errnum, char *message, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001833 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1834 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001835 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001836 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1837 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 emsg(IObuff);
1839 if (++viminfo_errcnt >= 10)
1840 {
1841 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1842 return TRUE;
1843 }
1844 return FALSE;
1845}
1846
1847/*
1848 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001849 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 */
1851 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001852read_viminfo(
1853 char_u *file, /* file name or NULL to use default name */
1854 int flags) /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855{
1856 FILE *fp;
1857 char_u *fname;
1858
1859 if (no_viminfo())
1860 return FAIL;
1861
Bram Moolenaard812df62008-11-09 12:46:09 +00001862 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 if (fname == NULL)
1864 return FAIL;
1865 fp = mch_fopen((char *)fname, READBIN);
1866
1867 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001868 {
1869 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001870 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1871 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001872 (flags & VIF_WANT_INFO) ? _(" info") : "",
1873 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1874 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001875 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001876 verbose_leave();
1877 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878
1879 vim_free(fname);
1880 if (fp == NULL)
1881 return FAIL;
1882
1883 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001884 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885
1886 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 return OK;
1888}
1889
1890/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001891 * Write the viminfo file. The old one is read in first so that effectively a
1892 * merge of current info and old info is done. This allows multiple vims to
1893 * run simultaneously, without losing any marks etc.
1894 * If "forceit" is TRUE, then the old file is not read in, and only internal
1895 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 */
1897 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001898write_viminfo(char_u *file, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899{
1900 char_u *fname;
1901 FILE *fp_in = NULL; /* input viminfo file, if any */
1902 FILE *fp_out = NULL; /* output viminfo file */
1903 char_u *tempname = NULL; /* name of temp viminfo file */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001904 stat_T st_new; /* mch_stat() of potential new file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905#if defined(UNIX) || defined(VMS)
1906 mode_t umask_save;
1907#endif
1908#ifdef UNIX
1909 int shortname = FALSE; /* use 8.3 file name */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001910 stat_T st_old; /* mch_stat() of existing viminfo file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001912#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001913 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001914#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915
1916 if (no_viminfo())
1917 return;
1918
1919 fname = viminfo_filename(file); /* may set to default if NULL */
1920 if (fname == NULL)
1921 return;
1922
1923 fp_in = mch_fopen((char *)fname, READBIN);
1924 if (fp_in == NULL)
1925 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001926 int fd;
1927
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 /* if it does exist, but we can't read it, don't try writing */
1929 if (mch_stat((char *)fname, &st_new) == 0)
1930 goto end;
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001931
1932 /* Create the new .viminfo non-accessible for others, because it may
1933 * contain text from non-accessible documents. It is up to the user to
1934 * widen access (e.g. to a group). This may also fail if there is a
1935 * race condition, then just give up. */
1936 fd = mch_open((char *)fname,
1937 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
1938 if (fd < 0)
1939 goto end;
1940 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 }
1942 else
1943 {
1944 /*
1945 * There is an existing viminfo file. Create a temporary file to
1946 * write the new viminfo into, in the same directory as the
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001947 * existing viminfo file, which will be renamed once all writing is
1948 * successful.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 */
1950#ifdef UNIX
1951 /*
1952 * For Unix we check the owner of the file. It's not very nice to
1953 * overwrite a user's viminfo file after a "su root", with a
1954 * viminfo file that the user can't read.
1955 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001956 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001957 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001959 if (mch_stat((char *)fname, &st_old) == 0
1960 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001961 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 ? (st_old.st_mode & 0200)
1963 : (st_old.st_gid == getgid()
1964 ? (st_old.st_mode & 0020)
1965 : (st_old.st_mode & 0002))))
1966 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001967 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968
1969 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1971 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001972 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 goto end;
1974 }
1975#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001976#ifdef WIN3264
1977 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001978 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001979#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980
1981 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001982 * Make tempname, find one that does not exist yet.
1983 * Beware of a race condition: If someone logs out and all Vim
1984 * instances exit at the same time a temp file might be created between
1985 * stat() and open(). Use mch_open() with O_EXCL to avoid that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 * May try twice: Once normal and once with shortname set, just in
1987 * case somebody puts his viminfo file in an 8.3 filesystem.
1988 */
1989 for (;;)
1990 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001991 int next_char = 'z';
1992 char_u *wp;
1993
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 tempname = buf_modname(
1995#ifdef UNIX
1996 shortname,
1997#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999#endif
2000 fname,
2001#ifdef VMS
2002 (char_u *)"-tmp",
2003#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005#endif
2006 FALSE);
2007 if (tempname == NULL) /* out of memory */
2008 break;
2009
2010 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002011 * Try a series of names. Change one character, just before
2012 * the extension. This should also work for an 8.3
2013 * file name, when after adding the extension it still is
2014 * the same file as the original.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002016 wp = tempname + STRLEN(tempname) - 5;
2017 if (wp < gettail(tempname)) /* empty file name? */
2018 wp = gettail(tempname);
2019 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002021 /*
2022 * Check if tempfile already exists. Never overwrite an
2023 * existing file!
2024 */
2025 if (mch_stat((char *)tempname, &st_new) == 0)
2026 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002029 * Check if tempfile is same as original file. May happen
2030 * when modname() gave the same file back. E.g. silly
2031 * link, or file name-length reached. Try again with
2032 * shortname set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002034 if (!shortname && st_new.st_dev == st_old.st_dev
2035 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002037 VIM_CLEAR(tempname);
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002038 shortname = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 break;
2040 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002041#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002043 else
2044 {
2045 /* Try creating the file exclusively. This may fail if
2046 * another Vim tries to do it at the same time. */
2047#ifdef VMS
2048 /* fdopen() fails for some reason */
2049 umask_save = umask(077);
2050 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2051 (void)umask(umask_save);
2052#else
2053 int fd;
2054
2055 /* Use mch_open() to be able to use O_NOFOLLOW and set file
2056 * protection:
2057 * Unix: same as original file, but strip s-bit. Reset
2058 * umask to avoid it getting in the way.
2059 * Others: r&w for user only. */
2060# ifdef UNIX
2061 umask_save = umask(0);
2062 fd = mch_open((char *)tempname,
2063 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
2064 (int)((st_old.st_mode & 0777) | 0600));
2065 (void)umask(umask_save);
2066# else
2067 fd = mch_open((char *)tempname,
2068 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
2069# endif
2070 if (fd < 0)
2071 {
2072 fp_out = NULL;
2073# ifdef EEXIST
2074 /* Avoid trying lots of names while the problem is lack
2075 * of premission, only retry if the file already
2076 * exists. */
2077 if (errno != EEXIST)
2078 break;
2079# endif
2080 }
2081 else
2082 fp_out = fdopen(fd, WRITEBIN);
2083#endif /* VMS */
2084 if (fp_out != NULL)
2085 break;
2086 }
2087
2088 /* Assume file exists, try again with another name. */
2089 if (next_char == 'a' - 1)
2090 {
2091 /* They all exist? Must be something wrong! Don't write
2092 * the viminfo file then. */
2093 EMSG2(_("E929: Too many viminfo temp files, like %s!"),
2094 tempname);
2095 break;
2096 }
2097 *wp = next_char;
2098 --next_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002100
2101 if (tempname != NULL)
2102 break;
2103 /* continue if shortname was set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 }
2105
Bram Moolenaara5792f52005-11-23 21:25:05 +00002106#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002107 if (tempname != NULL && fp_out != NULL)
2108 {
2109 stat_T tmp_st;
2110
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 /*
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002112 * Make sure the original owner can read/write the tempfile and
2113 * otherwise preserve permissions, making sure the group matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002115 if (mch_stat((char *)tempname, &tmp_st) >= 0)
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002116 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002117 if (st_old.st_uid != tmp_st.st_uid)
2118 /* Changing the owner might fail, in which case the
2119 * file will now owned by the current user, oh well. */
Bram Moolenaar42335f52018-09-13 15:33:43 +02002120 vim_ignored = fchown(fileno(fp_out), st_old.st_uid, -1);
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002121 if (st_old.st_gid != tmp_st.st_gid
2122 && fchown(fileno(fp_out), -1, st_old.st_gid) == -1)
2123 /* can't set the group to what it should be, remove
2124 * group permissions */
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002125 (void)mch_setperm(tempname, 0600);
2126 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002127 else
2128 /* can't stat the file, set conservative permissions */
2129 (void)mch_setperm(tempname, 0600);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002131#endif
Bram Moolenaare0aa23f2017-11-26 17:08:03 +01002132 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133
2134 /*
2135 * Check if the new viminfo file can be written to.
2136 */
2137 if (fp_out == NULL)
2138 {
2139 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002140 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 if (fp_in != NULL)
2142 fclose(fp_in);
2143 goto end;
2144 }
2145
2146 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002147 {
2148 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00002149 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002150 verbose_leave();
2151 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152
2153 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002154 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155
Bram Moolenaar927030a2016-03-15 18:23:55 +01002156 if (fclose(fp_out) == EOF)
2157 ++viminfo_errcnt;
2158
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 if (fp_in != NULL)
2160 {
2161 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002162
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002163 /* In case of an error keep the original viminfo file. Otherwise
2164 * rename the newly written file. Give an error if that fails. */
Bram Moolenaar927030a2016-03-15 18:23:55 +01002165 if (viminfo_errcnt == 0)
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002166 {
Bram Moolenaar927030a2016-03-15 18:23:55 +01002167 if (vim_rename(tempname, fname) == -1)
2168 {
2169 ++viminfo_errcnt;
2170 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2171 }
2172# ifdef WIN3264
2173 /* If the viminfo file was hidden then also hide the new file. */
2174 else if (hidden)
2175 mch_hide(fname);
2176# endif
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002177 }
2178 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 mch_remove(tempname);
2180 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002181
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182end:
2183 vim_free(fname);
2184 vim_free(tempname);
2185}
2186
2187/*
2188 * Get the viminfo file name to use.
2189 * If "file" is given and not empty, use it (has already been expanded by
2190 * cmdline functions).
2191 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2192 * expand environment variables.
2193 * Returns an allocated string. NULL when out of memory.
2194 */
2195 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002196viminfo_filename(char_u *file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197{
2198 if (file == NULL || *file == NUL)
2199 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002200 if (*p_viminfofile != NUL)
2201 file = p_viminfofile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2203 {
2204#ifdef VIMINFO_FILE2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205# ifdef VMS
2206 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2207# else
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002208# ifdef MSWIN
2209 /* Use $VIM only if $HOME is the default "C:/". */
2210 if (STRCMP(vim_getenv((char_u *)"HOME", NULL), "C:/") == 0
2211 && mch_getenv((char_u *)"HOME") == NULL)
2212# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 if (mch_getenv((char_u *)"HOME") == NULL)
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002214# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215# endif
2216 {
2217 /* don't use $VIM when not available. */
2218 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2219 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2220 file = (char_u *)VIMINFO_FILE2;
2221 else
2222 file = (char_u *)VIMINFO_FILE;
2223 }
2224 else
2225#endif
2226 file = (char_u *)VIMINFO_FILE;
2227 }
2228 expand_env(file, NameBuff, MAXPATHL);
2229 file = NameBuff;
2230 }
2231 return vim_strsave(file);
2232}
2233
2234/*
2235 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2236 */
2237 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002238do_viminfo(FILE *fp_in, FILE *fp_out, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 int eof = FALSE;
2241 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002242 int merge = FALSE;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002243 int do_copy_marks = FALSE;
2244 garray_T buflist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245
2246 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2247 return;
2248 vir.vir_fd = fp_in;
2249#ifdef FEAT_MBYTE
2250 vir.vir_conv.vc_type = CONV_NONE;
2251#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002252 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002253 vir.vir_version = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254
2255 if (fp_in != NULL)
2256 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002257 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002258 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002259 if (fp_out != NULL)
Bram Moolenaar2d358992016-06-12 21:20:54 +02002260 {
2261 /* Registers and marks are read and kept separate from what
2262 * this Vim is using. They are merged when writing. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002263 prepare_viminfo_registers();
Bram Moolenaar2d358992016-06-12 21:20:54 +02002264 prepare_viminfo_marks();
2265 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002266
Bram Moolenaard812df62008-11-09 12:46:09 +00002267 eof = read_viminfo_up_to_marks(&vir,
2268 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002269 merge = TRUE;
2270 }
2271 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 /* Skip info, find start of marks */
2273 while (!(eof = viminfo_readline(&vir))
2274 && vir.vir_line[0] != '>')
2275 ;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002276
2277 do_copy_marks = (flags &
2278 (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002280
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 if (fp_out != NULL)
2282 {
2283 /* Write the info: */
2284 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2285 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002286 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002287 write_viminfo_version(fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002289 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2291#endif
2292 write_viminfo_search_pattern(fp_out);
2293 write_viminfo_sub_string(fp_out);
2294#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002295 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296#endif
2297 write_viminfo_registers(fp_out);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002298 finish_viminfo_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299#ifdef FEAT_EVAL
2300 write_viminfo_varlist(fp_out);
2301#endif
2302 write_viminfo_filemarks(fp_out);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002303 finish_viminfo_marks();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 write_viminfo_bufferlist(fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002305 write_viminfo_barlines(&vir, fp_out);
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002306
2307 if (do_copy_marks)
2308 ga_init2(&buflist, sizeof(buf_T *), 50);
2309 write_viminfo_marks(fp_out, do_copy_marks ? &buflist : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002311
2312 if (do_copy_marks)
2313 {
2314 copy_viminfo_marks(&vir, fp_out, &buflist, eof, flags);
2315 if (fp_out != NULL)
2316 ga_clear(&buflist);
2317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318
2319 vim_free(vir.vir_line);
2320#ifdef FEAT_MBYTE
2321 if (vir.vir_conv.vc_type != CONV_NONE)
2322 convert_setup(&vir.vir_conv, NULL, NULL);
2323#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002324 ga_clear_strings(&vir.vir_barlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325}
2326
2327/*
2328 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2329 * first part of the viminfo file which contains everything but the marks that
2330 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2331 */
2332 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002333read_viminfo_up_to_marks(
2334 vir_T *virp,
2335 int forceit,
2336 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337{
2338 int eof;
2339 buf_T *buf;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002340 int got_encoding = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341
2342#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002343 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002345
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 eof = viminfo_readline(virp);
2347 while (!eof && virp->vir_line[0] != '>')
2348 {
2349 switch (virp->vir_line[0])
2350 {
2351 /* Characters reserved for future expansion, ignored now */
2352 case '+': /* "+40 /path/dir file", for running vim without args */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 case '^': /* to be defined */
2354 case '<': /* long line - ignored */
2355 /* A comment or empty line. */
2356 case NUL:
2357 case '\r':
2358 case '\n':
2359 case '#':
2360 eof = viminfo_readline(virp);
2361 break;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002362 case '|':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002363 eof = read_viminfo_barline(virp, got_encoding,
2364 forceit, writing);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002365 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 case '*': /* "*encoding=value" */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002367 got_encoding = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 eof = viminfo_encoding(virp);
2369 break;
2370 case '!': /* global variable */
2371#ifdef FEAT_EVAL
2372 eof = read_viminfo_varlist(virp, writing);
2373#else
2374 eof = viminfo_readline(virp);
2375#endif
2376 break;
2377 case '%': /* entry for buffer list */
2378 eof = read_viminfo_bufferlist(virp, writing);
2379 break;
2380 case '"':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002381 /* When registers are in bar lines skip the old style register
2382 * lines. */
2383 if (virp->vir_version < VIMINFO_VERSION_WITH_REGISTERS)
2384 eof = read_viminfo_register(virp, forceit);
2385 else
2386 do {
2387 eof = viminfo_readline(virp);
2388 } while (!eof && (virp->vir_line[0] == TAB
2389 || virp->vir_line[0] == '<'));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 break;
2391 case '/': /* Search string */
2392 case '&': /* Substitute search string */
2393 case '~': /* Last search string, followed by '/' or '&' */
2394 eof = read_viminfo_search_pattern(virp, forceit);
2395 break;
2396 case '$':
2397 eof = read_viminfo_sub_string(virp, forceit);
2398 break;
2399 case ':':
2400 case '?':
2401 case '=':
2402 case '@':
2403#ifdef FEAT_CMDHIST
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002404 /* When history is in bar lines skip the old style history
2405 * lines. */
2406 if (virp->vir_version < VIMINFO_VERSION_WITH_HISTORY)
2407 eof = read_viminfo_history(virp, writing);
2408 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002410 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 break;
2412 case '-':
2413 case '\'':
Bram Moolenaara641e1d2016-06-13 21:16:03 +02002414 /* When file marks are in bar lines skip the old style lines. */
2415 if (virp->vir_version < VIMINFO_VERSION_WITH_MARKS)
2416 eof = read_viminfo_filemark(virp, forceit);
2417 else
2418 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 break;
2420 default:
2421 if (viminfo_error("E575: ", _("Illegal starting char"),
2422 virp->vir_line))
2423 eof = TRUE;
2424 else
2425 eof = viminfo_readline(virp);
2426 break;
2427 }
2428 }
2429
2430#ifdef FEAT_CMDHIST
2431 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002432 if (!writing)
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02002433 finish_viminfo_history(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434#endif
2435
2436 /* Change file names to buffer numbers for fmarks. */
Bram Moolenaar29323592016-07-24 22:04:11 +02002437 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 fmarks_check_names(buf);
2439
2440 return eof;
2441}
2442
2443/*
2444 * Compare the 'encoding' value in the viminfo file with the current value of
2445 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2446 * conversion of text with iconv() in viminfo_readstring().
2447 */
2448 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002449viminfo_encoding(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450{
2451#ifdef FEAT_MBYTE
2452 char_u *p;
2453 int i;
2454
2455 if (get_viminfo_parameter('c') != 0)
2456 {
2457 p = vim_strchr(virp->vir_line, '=');
2458 if (p != NULL)
2459 {
2460 /* remove trailing newline */
2461 ++p;
2462 for (i = 0; vim_isprintc(p[i]); ++i)
2463 ;
2464 p[i] = NUL;
2465
2466 convert_setup(&virp->vir_conv, p, p_enc);
2467 }
2468 }
2469#endif
2470 return viminfo_readline(virp);
2471}
2472
2473/*
2474 * Read a line from the viminfo file.
2475 * Returns TRUE for end-of-file;
2476 */
2477 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002478viminfo_readline(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479{
2480 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2481}
2482
2483/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002484 * Check string read from viminfo file.
2485 * Remove '\n' at the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 * - replace CTRL-V CTRL-V with CTRL-V
2487 * - replace CTRL-V 'n' with '\n'
2488 *
2489 * Check for a long line as written by viminfo_writestring().
2490 *
2491 * Return the string in allocated memory (NULL when out of memory).
2492 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002494viminfo_readstring(
2495 vir_T *virp,
2496 int off, /* offset for virp->vir_line */
2497 int convert UNUSED) /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498{
2499 char_u *retval;
2500 char_u *s, *d;
2501 long len;
2502
2503 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2504 {
2505 len = atol((char *)virp->vir_line + off + 1);
2506 retval = lalloc(len, TRUE);
2507 if (retval == NULL)
2508 {
2509 /* Line too long? File messed up? Skip next line. */
2510 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2511 return NULL;
2512 }
2513 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2514 s = retval + 1; /* Skip the leading '<' */
2515 }
2516 else
2517 {
2518 retval = vim_strsave(virp->vir_line + off);
2519 if (retval == NULL)
2520 return NULL;
2521 s = retval;
2522 }
2523
2524 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2525 d = retval;
2526 while (*s != NUL && *s != '\n')
2527 {
2528 if (s[0] == Ctrl_V && s[1] != NUL)
2529 {
2530 if (s[1] == 'n')
2531 *d++ = '\n';
2532 else
2533 *d++ = Ctrl_V;
2534 s += 2;
2535 }
2536 else
2537 *d++ = *s++;
2538 }
2539 *d = NUL;
2540
2541#ifdef FEAT_MBYTE
2542 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2543 {
2544 d = string_convert(&virp->vir_conv, retval, NULL);
2545 if (d != NULL)
2546 {
2547 vim_free(retval);
2548 retval = d;
2549 }
2550 }
2551#endif
2552
2553 return retval;
2554}
2555
2556/*
2557 * write string to viminfo file
2558 * - replace CTRL-V with CTRL-V CTRL-V
2559 * - replace '\n' with CTRL-V 'n'
2560 * - add a '\n' at the end
2561 *
2562 * For a long line:
2563 * - write " CTRL-V <length> \n " in first line
2564 * - write " < <string> \n " in second line
2565 */
2566 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002567viminfo_writestring(FILE *fd, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568{
2569 int c;
2570 char_u *s;
2571 int len = 0;
2572
2573 for (s = p; *s != NUL; ++s)
2574 {
2575 if (*s == Ctrl_V || *s == '\n')
2576 ++len;
2577 ++len;
2578 }
2579
2580 /* If the string will be too long, write its length and put it in the next
2581 * line. Take into account that some room is needed for what comes before
2582 * the string (e.g., variable name). Add something to the length for the
2583 * '<', NL and trailing NUL. */
2584 if (len > LSIZE / 2)
2585 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2586
2587 while ((c = *p++) != NUL)
2588 {
2589 if (c == Ctrl_V || c == '\n')
2590 {
2591 putc(Ctrl_V, fd);
2592 if (c == '\n')
2593 c = 'n';
2594 }
2595 putc(c, fd);
2596 }
2597 putc('\n', fd);
2598}
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002599
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002600/*
2601 * Write a string in quotes that barline_parse() can read back.
2602 * Breaks the line in less than LSIZE pieces when needed.
2603 * Returns remaining characters in the line.
2604 */
2605 int
2606barline_writestring(FILE *fd, char_u *s, int remaining_start)
2607{
2608 char_u *p;
2609 int remaining = remaining_start;
2610 int len = 2;
2611
2612 /* Count the number of characters produced, including quotes. */
2613 for (p = s; *p != NUL; ++p)
2614 {
2615 if (*p == NL)
2616 len += 2;
2617 else if (*p == '"' || *p == '\\')
2618 len += 2;
2619 else
2620 ++len;
2621 }
Bram Moolenaar25709572016-08-26 20:41:16 +02002622 if (len > remaining - 2)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002623 {
2624 fprintf(fd, ">%d\n|<", len);
2625 remaining = LSIZE - 20;
2626 }
2627
2628 putc('"', fd);
2629 for (p = s; *p != NUL; ++p)
2630 {
2631 if (*p == NL)
2632 {
2633 putc('\\', fd);
2634 putc('n', fd);
2635 --remaining;
2636 }
2637 else if (*p == '"' || *p == '\\')
2638 {
2639 putc('\\', fd);
2640 putc(*p, fd);
2641 --remaining;
2642 }
2643 else
2644 putc(*p, fd);
2645 --remaining;
2646
2647 if (remaining < 3)
2648 {
2649 putc('\n', fd);
2650 putc('|', fd);
2651 putc('<', fd);
2652 /* Leave enough space for another continuation. */
2653 remaining = LSIZE - 20;
2654 }
2655 }
2656 putc('"', fd);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002657 return remaining - 2;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002658}
2659
2660/*
2661 * Parse a viminfo line starting with '|'.
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002662 * Add each decoded value to "values".
Bram Moolenaarecefe712016-06-20 12:50:17 +02002663 * Returns TRUE if the next line is to be read after using the parsed values.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002664 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002665 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002666barline_parse(vir_T *virp, char_u *text, garray_T *values)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002667{
2668 char_u *p = text;
2669 char_u *nextp = NULL;
Bram Moolenaarfdd82fe2016-06-06 21:38:44 +02002670 char_u *buf = NULL;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002671 bval_T *value;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002672 int i;
2673 int allocated = FALSE;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002674 int eof;
Bram Moolenaar01227092016-06-11 14:47:40 +02002675#ifdef FEAT_MBYTE
2676 char_u *sconv;
2677 int converted;
2678#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002679
2680 while (*p == ',')
2681 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002682 ++p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002683 if (ga_grow(values, 1) == FAIL)
2684 break;
2685 value = (bval_T *)(values->ga_data) + values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002686
2687 if (*p == '>')
2688 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002689 /* Need to read a continuation line. Put strings in allocated
2690 * memory, because virp->vir_line is overwritten. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002691 if (!allocated)
2692 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002693 for (i = 0; i < values->ga_len; ++i)
2694 {
2695 bval_T *vp = (bval_T *)(values->ga_data) + i;
2696
2697 if (vp->bv_type == BVAL_STRING && !vp->bv_allocated)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002698 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002699 vp->bv_string = vim_strnsave(vp->bv_string, vp->bv_len);
2700 vp->bv_allocated = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002701 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002702 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002703 allocated = TRUE;
2704 }
2705
2706 if (vim_isdigit(p[1]))
2707 {
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002708 size_t len;
2709 size_t todo;
2710 size_t n;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002711
2712 /* String value was split into lines that are each shorter
2713 * than LSIZE:
2714 * |{bartype},>{length of "{text}{text2}"}
2715 * |<"{text1}
2716 * |<{text2}",{value}
Bram Moolenaarecefe712016-06-20 12:50:17 +02002717 * Length includes the quotes.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002718 */
2719 ++p;
2720 len = getdigits(&p);
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002721 buf = alloc((int)(len + 1));
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002722 if (buf == NULL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002723 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002724 p = buf;
2725 for (todo = len; todo > 0; todo -= n)
2726 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002727 eof = viminfo_readline(virp);
2728 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002729 || virp->vir_line[1] != '<')
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002730 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002731 /* File was truncated or garbled. Read another line if
2732 * this one starts with '|'. */
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002733 vim_free(buf);
Bram Moolenaarecefe712016-06-20 12:50:17 +02002734 return eof || virp->vir_line[0] == '|';
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002735 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002736 /* Get length of text, excluding |< and NL chars. */
2737 n = STRLEN(virp->vir_line);
2738 while (n > 0 && (virp->vir_line[n - 1] == NL
2739 || virp->vir_line[n - 1] == CAR))
2740 --n;
2741 n -= 2;
2742 if (n > todo)
2743 {
2744 /* more values follow after the string */
2745 nextp = virp->vir_line + 2 + todo;
2746 n = todo;
2747 }
2748 mch_memmove(p, virp->vir_line + 2, n);
2749 p += n;
2750 }
2751 *p = NUL;
2752 p = buf;
2753 }
2754 else
2755 {
2756 /* Line ending in ">" continues in the next line:
2757 * |{bartype},{lots of values},>
2758 * |<{value},{value}
2759 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002760 eof = viminfo_readline(virp);
2761 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002762 || virp->vir_line[1] != '<')
Bram Moolenaarecefe712016-06-20 12:50:17 +02002763 /* File was truncated or garbled. Read another line if
2764 * this one starts with '|'. */
2765 return eof || virp->vir_line[0] == '|';
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002766 p = virp->vir_line + 2;
2767 }
2768 }
2769
2770 if (isdigit(*p))
2771 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002772 value->bv_type = BVAL_NR;
2773 value->bv_nr = getdigits(&p);
2774 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002775 }
2776 else if (*p == '"')
2777 {
2778 int len = 0;
2779 char_u *s = p;
2780
2781 /* Unescape special characters in-place. */
2782 ++p;
2783 while (*p != '"')
2784 {
2785 if (*p == NL || *p == NUL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002786 return TRUE; /* syntax error, drop the value */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002787 if (*p == '\\')
2788 {
2789 ++p;
2790 if (*p == 'n')
2791 s[len++] = '\n';
2792 else
2793 s[len++] = *p;
2794 ++p;
2795 }
2796 else
2797 s[len++] = *p++;
2798 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002799 ++p;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002800 s[len] = NUL;
2801
Bram Moolenaar01227092016-06-11 14:47:40 +02002802#ifdef FEAT_MBYTE
2803 converted = FALSE;
2804 if (virp->vir_conv.vc_type != CONV_NONE && *s != NUL)
2805 {
2806 sconv = string_convert(&virp->vir_conv, s, NULL);
2807 if (sconv != NULL)
2808 {
2809 if (s == buf)
2810 vim_free(s);
2811 s = sconv;
2812 buf = s;
2813 converted = TRUE;
2814 }
2815 }
2816#endif
2817 /* Need to copy in allocated memory if the string wasn't allocated
2818 * above and we did allocate before, thus vir_line may change. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002819 if (s != buf && allocated)
2820 s = vim_strsave(s);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002821 value->bv_string = s;
2822 value->bv_type = BVAL_STRING;
2823 value->bv_len = len;
2824 value->bv_allocated = allocated
Bram Moolenaar01227092016-06-11 14:47:40 +02002825#ifdef FEAT_MBYTE
2826 || converted
2827#endif
2828 ;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002829 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002830 if (nextp != NULL)
2831 {
2832 /* values following a long string */
2833 p = nextp;
2834 nextp = NULL;
2835 }
2836 }
2837 else if (*p == ',')
2838 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002839 value->bv_type = BVAL_EMPTY;
2840 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002841 }
2842 else
2843 break;
2844 }
Bram Moolenaarecefe712016-06-20 12:50:17 +02002845 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002846}
2847
2848 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002849read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002850{
2851 char_u *p = virp->vir_line + 1;
2852 int bartype;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002853 garray_T values;
2854 bval_T *vp;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002855 int i;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002856 int read_next = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002857
2858 /* The format is: |{bartype},{value},...
2859 * For a very long string:
2860 * |{bartype},>{length of "{text}{text2}"}
2861 * |<{text1}
2862 * |<{text2},{value}
2863 * For a long line not using a string
2864 * |{bartype},{lots of values},>
2865 * |<{value},{value}
2866 */
2867 if (*p == '<')
2868 {
2869 /* Continuation line of an unrecognized item. */
2870 if (writing)
2871 ga_add_string(&virp->vir_barlines, virp->vir_line);
2872 }
2873 else
2874 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002875 ga_init2(&values, sizeof(bval_T), 20);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002876 bartype = getdigits(&p);
2877 switch (bartype)
2878 {
2879 case BARTYPE_VERSION:
2880 /* Only use the version when it comes before the encoding.
2881 * If it comes later it was copied by a Vim version that
2882 * doesn't understand the version. */
2883 if (!got_encoding)
2884 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002885 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002886 vp = (bval_T *)values.ga_data;
2887 if (values.ga_len > 0 && vp->bv_type == BVAL_NR)
2888 virp->vir_version = vp->bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002889 }
2890 break;
2891
2892 case BARTYPE_HISTORY:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002893 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002894 handle_viminfo_history(&values, writing);
2895 break;
2896
2897 case BARTYPE_REGISTER:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002898 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002899 handle_viminfo_register(&values, force);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002900 break;
2901
Bram Moolenaar2d358992016-06-12 21:20:54 +02002902 case BARTYPE_MARK:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002903 read_next = barline_parse(virp, p, &values);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002904 handle_viminfo_mark(&values, force);
2905 break;
2906
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002907 default:
2908 /* copy unrecognized line (for future use) */
2909 if (writing)
2910 ga_add_string(&virp->vir_barlines, virp->vir_line);
2911 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002912 for (i = 0; i < values.ga_len; ++i)
2913 {
2914 vp = (bval_T *)values.ga_data + i;
2915 if (vp->bv_type == BVAL_STRING && vp->bv_allocated)
2916 vim_free(vp->bv_string);
2917 }
2918 ga_clear(&values);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002919 }
2920
Bram Moolenaarecefe712016-06-20 12:50:17 +02002921 if (read_next)
2922 return viminfo_readline(virp);
2923 return FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002924}
2925
2926 static void
2927write_viminfo_version(FILE *fp_out)
2928{
2929 fprintf(fp_out, "# Viminfo version\n|%d,%d\n\n",
2930 BARTYPE_VERSION, VIMINFO_VERSION);
2931}
2932
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002933 static void
2934write_viminfo_barlines(vir_T *virp, FILE *fp_out)
2935{
2936 int i;
2937 garray_T *gap = &virp->vir_barlines;
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002938 int seen_useful = FALSE;
2939 char *line;
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002940
2941 if (gap->ga_len > 0)
2942 {
2943 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out);
2944
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002945 /* Skip over continuation lines until seeing a useful line. */
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002946 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002947 {
2948 line = ((char **)(gap->ga_data))[i];
2949 if (seen_useful || line[1] != '<')
2950 {
2951 fputs(line, fp_out);
2952 seen_useful = TRUE;
2953 }
2954 }
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002955 }
2956}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957#endif /* FEAT_VIMINFO */
2958
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002959/*
2960 * Return the current time in seconds. Calls time(), unless test_settime()
2961 * was used.
2962 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02002963 time_T
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002964vim_time(void)
2965{
2966# ifdef FEAT_EVAL
2967 return time_for_testing == 0 ? time(NULL) : time_for_testing;
2968# else
2969 return time(NULL);
2970# endif
2971}
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002972
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973/*
2974 * Implementation of ":fixdel", also used by get_stty().
2975 * <BS> resulting <Del>
2976 * ^? ^H
2977 * not ^? ^?
2978 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002980do_fixdel(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981{
2982 char_u *p;
2983
2984 p = find_termcode((char_u *)"kb");
2985 add_termcode((char_u *)"kD", p != NULL
2986 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2987}
2988
2989 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002990print_line_no_prefix(
2991 linenr_T lnum,
2992 int use_number,
2993 int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002995 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996
2997 if (curwin->w_p_nu || use_number)
2998 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002999 vim_snprintf((char *)numbuf, sizeof(numbuf),
3000 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar8820b482017-03-16 17:23:31 +01003001 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); /* Highlight line nrs */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003003 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004}
3005
3006/*
3007 * Print a text line. Also in silent mode ("ex -s").
3008 */
3009 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003010print_line(linenr_T lnum, int use_number, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011{
3012 int save_silent = silent_mode;
3013
Bram Moolenaard29459b2016-08-26 22:29:11 +02003014 /* apply :filter /pat/ */
3015 if (message_filtered(ml_get(lnum)))
3016 return;
3017
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003019 silent_mode = FALSE;
3020 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
3021 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 if (save_silent)
3023 {
3024 msg_putchar('\n');
3025 cursor_on(); /* msg_start() switches it off */
3026 out_flush();
3027 silent_mode = save_silent;
3028 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00003029 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030}
3031
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003032 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003033rename_buffer(char_u *new_fname)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003034{
3035 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02003036 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003037
Bram Moolenaar7e283842013-05-30 11:43:15 +02003038 buf = curbuf;
3039 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003040 /* buffer changed, don't change name now */
3041 if (buf != curbuf)
3042 return FAIL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003043#ifdef FEAT_EVAL
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003044 if (aborting()) /* autocmds may abort script processing */
3045 return FAIL;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003046#endif
3047 /*
3048 * The name of the current buffer will be changed.
3049 * A new (unlisted) buffer entry needs to be made to hold the old file
3050 * name, which will become the alternate file name.
3051 * But don't set the alternate file name if the buffer didn't have a
3052 * name.
3053 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02003054 fname = curbuf->b_ffname;
3055 sfname = curbuf->b_sfname;
3056 xfname = curbuf->b_fname;
3057 curbuf->b_ffname = NULL;
3058 curbuf->b_sfname = NULL;
3059 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003060 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02003061 curbuf->b_ffname = fname;
3062 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003063 return FAIL;
3064 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02003065 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003066 if (xfname != NULL && *xfname != NUL)
3067 {
3068 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
3069 if (buf != NULL && !cmdmod.keepalt)
3070 curwin->w_alt_fnum = buf->b_fnum;
3071 }
3072 vim_free(fname);
3073 vim_free(sfname);
Bram Moolenaar7e283842013-05-30 11:43:15 +02003074 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003075
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003076 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02003077 DO_AUTOCHDIR;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003078 return OK;
3079}
3080
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081/*
3082 * ":file[!] [fname]".
3083 */
3084 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003085ex_file(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003087 /* ":0file" removes the file name. Check for illegal uses ":3file",
3088 * "0file name", etc. */
3089 if (eap->addr_count > 0
3090 && (*eap->arg != NUL
3091 || eap->line2 > 0
3092 || eap->addr_count > 1))
3093 {
3094 EMSG(_(e_invarg));
3095 return;
3096 }
3097
3098 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003100 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 return;
Bram Moolenaarfc089602018-06-24 16:53:35 +02003102 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 }
Bram Moolenaarfc089602018-06-24 16:53:35 +02003104
3105 // print file name if no argument or 'F' is not in 'shortmess'
3106 if (*eap->arg == NUL || !shortmess(SHM_FILEINFO))
Bram Moolenaar426dd022016-03-15 15:09:29 +01003107 fileinfo(FALSE, FALSE, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108}
3109
3110/*
3111 * ":update".
3112 */
3113 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003114ex_update(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115{
3116 if (curbufIsChanged())
3117 (void)do_write(eap);
3118}
3119
3120/*
3121 * ":write" and ":saveas".
3122 */
3123 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003124ex_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125{
3126 if (eap->usefilter) /* input lines to shell command */
3127 do_bang(1, eap, FALSE, TRUE, FALSE);
3128 else
3129 (void)do_write(eap);
3130}
3131
3132/*
3133 * write current buffer to file 'eap->arg'
3134 * if 'eap->append' is TRUE, append to the file
3135 *
3136 * if *eap->arg == NUL write to current file
3137 *
3138 * return FAIL for failure, OK otherwise
3139 */
3140 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003141do_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142{
3143 int other;
3144 char_u *fname = NULL; /* init to shut up gcc */
3145 char_u *ffname;
3146 int retval = FAIL;
3147 char_u *free_fname = NULL;
3148#ifdef FEAT_BROWSE
3149 char_u *browse_file = NULL;
3150#endif
3151 buf_T *alt_buf = NULL;
Bram Moolenaar5c719942016-07-09 23:40:45 +02003152 int name_was_missing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153
3154 if (not_writing()) /* check 'write' option */
3155 return FAIL;
3156
3157 ffname = eap->arg;
3158#ifdef FEAT_BROWSE
3159 if (cmdmod.browse)
3160 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003161 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 NULL, NULL, NULL, curbuf);
3163 if (browse_file == NULL)
3164 goto theend;
3165 ffname = browse_file;
3166 }
3167#endif
3168 if (*ffname == NUL)
3169 {
3170 if (eap->cmdidx == CMD_saveas)
3171 {
3172 EMSG(_(e_argreq));
3173 goto theend;
3174 }
3175 other = FALSE;
3176 }
3177 else
3178 {
3179 fname = ffname;
3180 free_fname = fix_fname(ffname);
3181 /*
3182 * When out-of-memory, keep unexpanded file name, because we MUST be
3183 * able to write the file in this situation.
3184 */
3185 if (free_fname != NULL)
3186 ffname = free_fname;
3187 other = otherfile(ffname);
3188 }
3189
3190 /*
3191 * If we have a new file, put its name in the list of alternate file names.
3192 */
3193 if (other)
3194 {
3195 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
3196 || eap->cmdidx == CMD_saveas)
3197 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
3198 else
3199 alt_buf = buflist_findname(ffname);
3200 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
3201 {
3202 /* Overwriting a file that is loaded in another buffer is not a
3203 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00003204 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 goto theend;
3206 }
3207 }
3208
3209 /*
3210 * Writing to the current file is not allowed in readonly mode
3211 * and a file name is required.
3212 * "nofile" and "nowrite" buffers cannot be written implicitly either.
3213 */
3214 if (!other && (
3215#ifdef FEAT_QUICKFIX
3216 bt_dontwrite_msg(curbuf) ||
3217#endif
3218 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
3219 goto theend;
3220
3221 if (!other)
3222 {
3223 ffname = curbuf->b_ffname;
3224 fname = curbuf->b_fname;
3225 /*
3226 * Not writing the whole file is only allowed with '!'.
3227 */
3228 if ( (eap->line1 != 1
3229 || eap->line2 != curbuf->b_ml.ml_line_count)
3230 && !eap->forceit
3231 && !eap->append
3232 && !p_wa)
3233 {
3234#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3235 if (p_confirm || cmdmod.confirm)
3236 {
3237 if (vim_dialog_yesno(VIM_QUESTION, NULL,
3238 (char_u *)_("Write partial file?"), 2) != VIM_YES)
3239 goto theend;
3240 eap->forceit = TRUE;
3241 }
3242 else
3243#endif
3244 {
3245 EMSG(_("E140: Use ! to write partial buffer"));
3246 goto theend;
3247 }
3248 }
3249 }
3250
3251 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
3252 {
3253 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
3254 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 buf_T *was_curbuf = curbuf;
3256
3257 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003258 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003259#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 if (curbuf != was_curbuf || aborting())
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003261#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262 if (curbuf != was_curbuf)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003263#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 {
3265 /* buffer changed, don't change name now */
3266 retval = FAIL;
3267 goto theend;
3268 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 /* Exchange the file names for the current and the alternate
3270 * buffer. This makes it look like we are now editing the buffer
3271 * under the new name. Must be done before buf_write(), because
3272 * if there is no file name and 'cpo' contains 'F', it will set
3273 * the file name. */
3274 fname = alt_buf->b_fname;
3275 alt_buf->b_fname = curbuf->b_fname;
3276 curbuf->b_fname = fname;
3277 fname = alt_buf->b_ffname;
3278 alt_buf->b_ffname = curbuf->b_ffname;
3279 curbuf->b_ffname = fname;
3280 fname = alt_buf->b_sfname;
3281 alt_buf->b_sfname = curbuf->b_sfname;
3282 curbuf->b_sfname = fname;
3283 buf_name_changed(curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003284
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003286 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 if (!alt_buf->b_p_bl)
3288 {
3289 alt_buf->b_p_bl = TRUE;
3290 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
3291 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003292#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293 if (curbuf != was_curbuf || aborting())
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003294#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 if (curbuf != was_curbuf)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003296#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 {
3298 /* buffer changed, don't write the file */
3299 retval = FAIL;
3300 goto theend;
3301 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003302
3303 /* If 'filetype' was empty try detecting it now. */
3304 if (*curbuf->b_p_ft == NUL)
3305 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003306 if (au_has_group((char_u *)"filetypedetect"))
3307 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
Bram Moolenaar1610d052016-06-09 22:53:01 +02003308 TRUE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00003309 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003310 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01003311
3312 /* Autocommands may have changed buffer names, esp. when
3313 * 'autochdir' is set. */
3314 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 }
3316
Bram Moolenaar5c719942016-07-09 23:40:45 +02003317 name_was_missing = curbuf->b_ffname == NULL;
3318
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
3320 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003321
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003322 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003323 if (eap->cmdidx == CMD_saveas)
3324 {
3325 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00003326 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003327 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003328 redraw_tabline = TRUE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003329 }
Bram Moolenaar5c719942016-07-09 23:40:45 +02003330 }
3331
3332 /* Change directories when the 'acd' option is set and the file name
3333 * got changed or set. */
3334 if (eap->cmdidx == CMD_saveas || name_was_missing)
3335 {
Bram Moolenaar6f470022018-04-10 18:47:20 +02003336 DO_AUTOCHDIR;
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 }
3339
3340theend:
3341#ifdef FEAT_BROWSE
3342 vim_free(browse_file);
3343#endif
3344 vim_free(free_fname);
3345 return retval;
3346}
3347
3348/*
3349 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
3350 * BF_NEW or BF_READERR, check for overwriting current file.
3351 * May set eap->forceit if a dialog says it's OK to overwrite.
3352 * Return OK if it's OK, FAIL if it is not.
3353 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02003354 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003355check_overwrite(
3356 exarg_T *eap,
3357 buf_T *buf,
3358 char_u *fname, /* file name to be used (can differ from
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 buf->ffname) */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003360 char_u *ffname, /* full path version of fname */
3361 int other) /* writing under other name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362{
3363 /*
3364 * write to other file or b_flags set or not writing the whole file:
3365 * overwriting only allowed with '!'
3366 */
3367 if ( (other
3368 || (buf->b_flags & BF_NOTEDITED)
3369 || ((buf->b_flags & BF_NEW)
3370 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
3371 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00003373#ifdef FEAT_QUICKFIX
3374 && !bt_nofile(buf)
3375#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 && vim_fexists(ffname))
3377 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003378 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003380#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00003381 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003382 if (mch_isdir(ffname))
3383 {
3384 EMSG2(_(e_isadir2), ffname);
3385 return FAIL;
3386 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387#endif
3388#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003389 if (p_confirm || cmdmod.confirm)
3390 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003391 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003393 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
3394 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
3395 return FAIL;
3396 eap->forceit = TRUE;
3397 }
3398 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003400 {
3401 EMSG(_(e_exists));
3402 return FAIL;
3403 }
3404 }
3405
3406 /* For ":w! filename" check that no swap file exists for "filename". */
3407 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003409 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003410 char_u *p;
3411 int r;
3412 char_u *swapname;
3413
3414 /* We only try the first entry in 'directory', without checking if
3415 * it's writable. If the "." directory is not writable the write
3416 * will probably fail anyway.
3417 * Use 'shortname' of the current buffer, since there is no buffer
3418 * for the written file. */
3419 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02003420 {
3421 dir = alloc(5);
3422 if (dir == NULL)
3423 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003424 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003425 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003426 else
3427 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003428 dir = alloc(MAXPATHL);
3429 if (dir == NULL)
3430 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003431 p = p_dir;
3432 copy_option_part(&p, dir, MAXPATHL, ",");
3433 }
3434 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003435 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003436 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003437 if (r)
3438 {
3439#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3440 if (p_confirm || cmdmod.confirm)
3441 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003442 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003443
3444 dialog_msg(buff,
3445 _("Swap file \"%s\" exists, overwrite anyway?"),
3446 swapname);
3447 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
3448 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003449 {
3450 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003451 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003452 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003453 eap->forceit = TRUE;
3454 }
3455 else
3456#endif
3457 {
3458 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
3459 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003460 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003461 return FAIL;
3462 }
3463 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003464 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 }
3466 }
3467 return OK;
3468}
3469
3470/*
3471 * Handle ":wnext", ":wNext" and ":wprevious" commands.
3472 */
3473 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003474ex_wnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475{
3476 int i;
3477
3478 if (eap->cmd[1] == 'n')
3479 i = curwin->w_arg_idx + (int)eap->line2;
3480 else
3481 i = curwin->w_arg_idx - (int)eap->line2;
3482 eap->line1 = 1;
3483 eap->line2 = curbuf->b_ml.ml_line_count;
3484 if (do_write(eap) != FAIL)
3485 do_argfile(eap, i);
3486}
3487
3488/*
3489 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
3490 */
3491 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003492do_wqall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493{
3494 buf_T *buf;
3495 int error = 0;
3496 int save_forceit = eap->forceit;
3497
3498 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
3499 exiting = TRUE;
3500
Bram Moolenaar29323592016-07-24 22:04:11 +02003501 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 {
Bram Moolenaar7a760922018-02-19 23:10:02 +01003503#ifdef FEAT_TERMINAL
3504 if (exiting && term_job_running(buf->b_term))
3505 {
3506 no_write_message_nobang(buf);
3507 ++error;
3508 }
3509 else
3510#endif
Bram Moolenaar059db5c2017-10-15 22:42:23 +02003511 if (bufIsChanged(buf) && !bt_dontwrite(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 {
3513 /*
3514 * Check if there is a reason the buffer cannot be written:
3515 * 1. if the 'write' option is set
3516 * 2. if there is no file name (even after browsing)
3517 * 3. if the 'readonly' is set (even after a dialog)
3518 * 4. if overwriting is allowed (even after a dialog)
3519 */
3520 if (not_writing())
3521 {
3522 ++error;
3523 break;
3524 }
3525#ifdef FEAT_BROWSE
3526 /* ":browse wall": ask for file name if there isn't one */
3527 if (buf->b_ffname == NULL && cmdmod.browse)
3528 browse_save_fname(buf);
3529#endif
3530 if (buf->b_ffname == NULL)
3531 {
3532 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
3533 ++error;
3534 }
3535 else if (check_readonly(&eap->forceit, buf)
3536 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3537 FALSE) == FAIL)
3538 {
3539 ++error;
3540 }
3541 else
3542 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003543 bufref_T bufref;
3544
3545 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 if (buf_write_all(buf, eap->forceit) == FAIL)
3547 ++error;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 /* an autocommand may have deleted the buffer */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003549 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 }
3552 eap->forceit = save_forceit; /* check_overwrite() may set it */
3553 }
3554 }
3555 if (exiting)
3556 {
3557 if (!error)
3558 getout(0); /* exit Vim */
3559 not_exiting();
3560 }
3561}
3562
3563/*
3564 * Check the 'write' option.
3565 * Return TRUE and give a message when it's not st.
3566 */
3567 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003568not_writing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569{
3570 if (p_write)
3571 return FALSE;
3572 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
3573 return TRUE;
3574}
3575
3576/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003577 * Check if a buffer is read-only (either 'readonly' option is set or file is
3578 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3579 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 */
3581 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003582check_readonly(int *forceit, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003584 stat_T st;
Bram Moolenaar5386a122007-06-28 20:02:32 +00003585
3586 /* Handle a file being readonly when the 'readonly' option is set or when
3587 * the file exists and permissions are read-only.
3588 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3589 * important for device checks but not here. */
3590 if (!*forceit && (buf->b_p_ro
3591 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3592 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 {
3594#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3595 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3596 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003597 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598
Bram Moolenaar5386a122007-06-28 20:02:32 +00003599 if (buf->b_p_ro)
3600 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3601 buf->b_fname);
3602 else
3603 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 +00003604 buf->b_fname);
3605
3606 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3607 {
3608 /* Set forceit, to force the writing of a readonly file */
3609 *forceit = TRUE;
3610 return FALSE;
3611 }
3612 else
3613 return TRUE;
3614 }
3615 else
3616#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003617 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003619 else
3620 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3621 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 return TRUE;
3623 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003624
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 return FALSE;
3626}
3627
3628/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003629 * Try to abandon current file and edit a new or existing file.
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003630 * "fnum" is the number of the file, if zero use ffname/sfname.
3631 * "lnum" is the line number for the cursor in the new file (if non-zero).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 *
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003633 * Return:
3634 * GETFILE_ERROR for "normal" error,
3635 * GETFILE_NOT_WRITTEN for "not written" error,
3636 * GETFILE_SAME_FILE for success
3637 * GETFILE_OPEN_OTHER for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 */
3639 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003640getfile(
3641 int fnum,
3642 char_u *ffname,
3643 char_u *sfname,
3644 int setpm,
3645 linenr_T lnum,
3646 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647{
3648 int other;
3649 int retval;
3650 char_u *free_me = NULL;
3651
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003652 if (text_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003653 return GETFILE_ERROR;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003654 if (curbuf_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003655 return GETFILE_ERROR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656
3657 if (fnum == 0)
3658 {
3659 /* make ffname full path, set sfname */
3660 fname_expand(curbuf, &ffname, &sfname);
3661 other = otherfile(ffname);
3662 free_me = ffname; /* has been allocated, free() later */
3663 }
3664 else
3665 other = (fnum != curbuf->b_fnum);
3666
3667 if (other)
3668 ++no_wait_return; /* don't wait for autowrite message */
Bram Moolenaareb44a682017-08-03 22:44:55 +02003669 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3671 {
3672#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3673 if (p_confirm && p_write)
3674 dialog_changed(curbuf, FALSE);
3675 if (curbufIsChanged())
3676#endif
3677 {
3678 if (other)
3679 --no_wait_return;
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02003680 no_write_message();
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003681 retval = GETFILE_NOT_WRITTEN; /* file has been changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 goto theend;
3683 }
3684 }
3685 if (other)
3686 --no_wait_return;
3687 if (setpm)
3688 setpcmark();
3689 if (!other)
3690 {
3691 if (lnum != 0)
3692 curwin->w_cursor.lnum = lnum;
3693 check_cursor_lnum();
3694 beginline(BL_SOL | BL_FIX);
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003695 retval = GETFILE_SAME_FILE; /* it's in the same file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 }
3697 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaareb44a682017-08-03 22:44:55 +02003698 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003699 curwin) == OK)
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003700 retval = GETFILE_OPEN_OTHER; /* opened another file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 else
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003702 retval = GETFILE_ERROR; /* error encountered */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703
3704theend:
3705 vim_free(free_me);
3706 return retval;
3707}
3708
3709/*
3710 * start editing a new file
3711 *
3712 * fnum: file number; if zero use ffname/sfname
3713 * ffname: the file name
3714 * - full path if sfname used,
3715 * - any file name if sfname is NULL
3716 * - empty string to re-edit with the same file name (but may be
3717 * in a different directory)
3718 * - NULL to start an empty buffer
3719 * sfname: the short file name (or NULL)
3720 * eap: contains the command to be executed after loading the file and
3721 * forced 'ff' and 'fenc'
3722 * newlnum: if > 0: put cursor on this line number (if possible)
3723 * if ECMD_LASTL: use last position in loaded file
3724 * if ECMD_LAST: use last position in all files
3725 * if ECMD_ONE: use first line
3726 * flags:
3727 * ECMD_HIDE: if TRUE don't free the current buffer
3728 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3729 * ECMD_OLDBUF: use existing buffer if it exists
3730 * ECMD_FORCEIT: ! used for Ex command
3731 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003732 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003733 * window, NULL when splitting the window first. When not NULL info
3734 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 *
3736 * return FAIL for failure, OK otherwise
3737 */
3738 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003739do_ecmd(
3740 int fnum,
3741 char_u *ffname,
3742 char_u *sfname,
3743 exarg_T *eap, /* can be NULL! */
3744 linenr_T newlnum,
3745 int flags,
3746 win_T *oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747{
3748 int other_file; /* TRUE if editing another file */
3749 int oldbuf; /* TRUE if using existing buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 int auto_buf = FALSE; /* TRUE if autocommands brought us
3751 into the buffer unexpectedly */
3752 char_u *new_name = NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003753#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003754 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755#endif
3756 buf_T *buf;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003757 bufref_T bufref;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003758 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 char_u *free_fname = NULL;
3760#ifdef FEAT_BROWSE
3761 char_u *browse_file = NULL;
3762#endif
3763 int retval = FAIL;
3764 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003765 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 linenr_T topline = 0;
3767 int newcol = -1;
3768 int solcol = -1;
3769 pos_T *pos;
3770#ifdef FEAT_SUN_WORKSHOP
3771 char_u *cp;
3772#endif
3773 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003774#ifdef FEAT_SPELL
3775 int did_get_winopts = FALSE;
3776#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003777 int readfile_flags = 0;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003778 int did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779
3780 if (eap != NULL)
3781 command = eap->do_ecmd_cmd;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003782 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783
3784 if (fnum != 0)
3785 {
3786 if (fnum == curbuf->b_fnum) /* file is already being edited */
3787 return OK; /* nothing to do */
3788 other_file = TRUE;
3789 }
3790 else
3791 {
3792#ifdef FEAT_BROWSE
3793 if (cmdmod.browse)
3794 {
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003795 if (
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003796# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003797 !gui.in_use &&
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003798# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003799 au_has_group((char_u *)"FileExplorer"))
3800 {
3801 /* No browsing supported but we do have the file explorer:
3802 * Edit the directory. */
3803 if (ffname == NULL || !mch_isdir(ffname))
3804 ffname = (char_u *)".";
3805 }
3806 else
3807 {
3808 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003810 if (browse_file == NULL)
3811 goto theend;
3812 ffname = browse_file;
3813 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 }
3815#endif
3816 /* if no short name given, use ffname for short name */
3817 if (sfname == NULL)
3818 sfname = ffname;
3819#ifdef USE_FNAME_CASE
3820# ifdef USE_LONG_FNAME
3821 if (USE_LONG_FNAME)
3822# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003823 if (sfname != NULL)
3824 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825#endif
3826
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3828 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829
3830 if (ffname == NULL)
3831 other_file = TRUE;
3832 /* there is no file name */
3833 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3834 other_file = FALSE;
3835 else
3836 {
3837 if (*ffname == NUL) /* re-edit with same file name */
3838 {
3839 ffname = curbuf->b_ffname;
3840 sfname = curbuf->b_fname;
3841 }
3842 free_fname = fix_fname(ffname); /* may expand to full path name */
3843 if (free_fname != NULL)
3844 ffname = free_fname;
3845 other_file = otherfile(ffname);
3846#ifdef FEAT_SUN_WORKSHOP
3847 if (usingSunWorkShop && p_acd
3848 && (cp = vim_strrchr(sfname, '/')) != NULL)
3849 sfname = ++cp;
3850#endif
3851 }
3852 }
3853
3854 /*
3855 * if the file was changed we may not be allowed to abandon it
3856 * - if we are going to re-edit the same file
3857 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3858 */
3859 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3860 || (curbuf->b_nwindows == 1
3861 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003862 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3863 | (other_file ? 0 : CCGD_MULTWIN)
3864 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3865 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 {
3867 if (fnum == 0 && other_file && ffname != NULL)
3868 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3869 goto theend;
3870 }
3871
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 /*
3873 * End Visual mode before switching to another buffer, so the text can be
3874 * copied into the GUI selection buffer.
3875 */
3876 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003878#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003879 if ((command != NULL || newlnum > (linenr_T)0)
3880 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3881 {
3882 int len;
3883 char_u *p;
3884
3885 /* Set v:swapcommand for the SwapExists autocommands. */
3886 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003887 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003888 else
3889 len = 30;
3890 p = alloc((unsigned)len);
3891 if (p != NULL)
3892 {
3893 if (command != NULL)
3894 vim_snprintf((char *)p, len, ":%s\r", command);
3895 else
3896 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3897 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3898 did_set_swapcommand = TRUE;
3899 vim_free(p);
3900 }
3901 }
3902#endif
3903
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 /*
3905 * If we are starting to edit another file, open a (new) buffer.
3906 * Otherwise we re-use the current buffer.
3907 */
3908 if (other_file)
3909 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 if (!(flags & ECMD_ADDBUF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003912 if (!cmdmod.keepalt)
3913 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003914 if (oldwin != NULL)
3915 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 }
3917
3918 if (fnum)
3919 buf = buflist_findnr(fnum);
3920 else
3921 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 if (flags & ECMD_ADDBUF)
3923 {
3924 linenr_T tlnum = 1L;
3925
3926 if (command != NULL)
3927 {
3928 tlnum = atol((char *)command);
3929 if (tlnum <= 0)
3930 tlnum = 1L;
3931 }
3932 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3933 goto theend;
3934 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 buf = buflist_new(ffname, sfname, 0L,
3936 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003937
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003938 /* autocommands may change curwin and curbuf */
3939 if (oldwin != NULL)
3940 oldwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003941 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 }
3943 if (buf == NULL)
3944 goto theend;
3945 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3946 {
3947 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 }
3949 else /* existing memfile */
3950 {
3951 oldbuf = TRUE;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003952 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 (void)buf_check_timestamp(buf, FALSE);
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003954 /* Check if autocommands made the buffer invalid or changed the
3955 * current buffer. */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003956 if (!bufref_valid(&bufref) || curbuf != old_curbuf.br_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 goto theend;
3958#ifdef FEAT_EVAL
3959 if (aborting()) /* autocmds may abort script processing */
3960 goto theend;
3961#endif
3962 }
3963
3964 /* May jump to last used line number for a loaded buffer or when asked
3965 * for explicitly */
3966 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3967 {
3968 pos = buflist_findfpos(buf);
3969 newlnum = pos->lnum;
3970 solcol = pos->col;
3971 }
3972
3973 /*
3974 * Make the (new) buffer the one used by the current window.
3975 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3976 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003977 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 */
3979 if (buf != curbuf)
3980 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 /*
3982 * Be careful: The autocommands may delete any buffer and change
3983 * the current buffer.
3984 * - If the buffer we are going to edit is deleted, give up.
3985 * - If the current buffer is deleted, prefer to load the new
3986 * buffer when loading a buffer is required. This avoids
3987 * loading another buffer which then must be closed again.
3988 * - If we ended up in the new buffer already, need to skip a few
3989 * things, set auto_buf.
3990 */
3991 if (buf->b_fname != NULL)
3992 new_name = vim_strsave(buf->b_fname);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003993 set_bufref(&au_new_curbuf, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003995 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003997 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998 delbuf_msg(new_name); /* frees new_name */
3999 goto theend;
4000 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004001#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 if (aborting()) /* autocmds may abort script processing */
4003 {
4004 vim_free(new_name);
4005 goto theend;
4006 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004007#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 if (buf == curbuf) /* already in new buffer */
4009 auto_buf = TRUE;
4010 else
4011 {
Bram Moolenaar5a497892016-09-03 16:29:04 +02004012 win_T *the_curwin = curwin;
4013
4014 /* Set the w_closing flag to avoid that autocommands close the
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004015 * window. And set b_locked for the same reason. */
Bram Moolenaar5a497892016-09-03 16:29:04 +02004016 the_curwin->w_closing = TRUE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004017 ++buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +02004018
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004019 if (curbuf == old_curbuf.br_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 buf_copy_options(buf, BCO_ENTER);
4021
Bram Moolenaar5a497892016-09-03 16:29:04 +02004022 /* Close the link to the current buffer. This will set
Bram Moolenaaraeac9002016-09-06 22:15:08 +02004023 * oldwin->w_buffer to NULL. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004024 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00004025 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01004026 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027
Bram Moolenaar5a497892016-09-03 16:29:04 +02004028 the_curwin->w_closing = FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004029 --buf->b_locked;
Bram Moolenaarfc573802011-12-30 15:01:59 +01004030
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004031#ifdef FEAT_EVAL
Bram Moolenaar5a497892016-09-03 16:29:04 +02004032 /* autocmds may abort script processing */
4033 if (aborting() && curwin->w_buffer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 {
4035 vim_free(new_name);
4036 goto theend;
4037 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004038#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 /* Be careful again, like above. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004040 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004042 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043 delbuf_msg(new_name); /* frees new_name */
4044 goto theend;
4045 }
4046 if (buf == curbuf) /* already in new buffer */
4047 auto_buf = TRUE;
4048 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02004050#ifdef FEAT_SYN_HL
4051 /*
4052 * <VN> We could instead free the synblock
4053 * and re-attach to buffer, perhaps.
4054 */
Bram Moolenaarf1d13472017-07-11 18:28:46 +02004055 if (curwin->w_buffer == NULL
4056 || curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02004057 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004058#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 curwin->w_buffer = buf;
4060 curbuf = buf;
4061 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004062
4063 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
4064 if (!oldbuf && eap != NULL)
4065 {
4066 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02004067#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004068 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02004069#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 }
4072
4073 /* May get the window options from the last time this buffer
4074 * was in this window (or another window). If not used
4075 * before, reset the local window options to the global
4076 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00004077 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004078#ifdef FEAT_SPELL
4079 did_get_winopts = TRUE;
4080#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 }
4082 vim_free(new_name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004083 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004084 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086
4087 curwin->w_pcmark.lnum = 1;
4088 curwin->w_pcmark.col = 0;
4089 }
4090 else /* !other_file */
4091 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02004092 if ((flags & ECMD_ADDBUF) || check_fname() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01004094
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 oldbuf = (flags & ECMD_OLDBUF);
4096 }
4097
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004098 /* Don't redraw until the cursor is in the right line, otherwise
4099 * autocommands may cause ml_get errors. */
4100 ++RedrawingDisabled;
4101 did_inc_redrawing_disabled = TRUE;
4102
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004103 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 if ((flags & ECMD_SET_HELP) || keep_help_flag)
4105 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004106 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 }
4108 else
4109 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 /* Don't make a buffer listed if it's a help buffer. Useful when
4111 * using CTRL-O to go back to a help file. */
4112 if (!curbuf->b_help)
4113 set_buflisted(TRUE);
4114 }
4115
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 /* If autocommands change buffers under our fingers, forget about
4117 * editing the file. */
4118 if (buf != curbuf)
4119 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004120#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 if (aborting()) /* autocmds may abort script processing */
4122 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004123#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124
4125 /* Since we are starting to edit a file, consider the filetype to be
4126 * unset. Helps for when an autocommand changes files and expects syntax
4127 * highlighting to work in the other file. */
4128 did_filetype = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129
4130/*
4131 * other_file oldbuf
4132 * FALSE FALSE re-edit same file, buffer is re-used
4133 * FALSE TRUE re-edit same file, nothing changes
4134 * TRUE FALSE start editing new file, new buffer
4135 * TRUE TRUE start editing in existing buffer (nothing to do)
4136 */
4137 if (!other_file && !oldbuf) /* re-use the buffer */
4138 {
4139 set_last_cursor(curwin); /* may set b_last_cursor */
4140 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
4141 {
4142 newlnum = curwin->w_cursor.lnum;
4143 solcol = curwin->w_cursor.col;
4144 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 buf = curbuf;
4146 if (buf->b_fname != NULL)
4147 new_name = vim_strsave(buf->b_fname);
4148 else
4149 new_name = NULL;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004150 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004151
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004152 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
4153 {
4154 /* Save all the text, so that the reload can be undone.
4155 * Sync first so that this is a separate undo-able action. */
4156 u_sync(FALSE);
4157 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
4158 == FAIL)
Bram Moolenaar1e225822016-07-30 21:48:59 +02004159 {
4160 vim_free(new_name);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004161 goto theend;
Bram Moolenaar1e225822016-07-30 21:48:59 +02004162 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004163 u_unchanged(curbuf);
4164 buf_freeall(curbuf, BFA_KEEP_UNDO);
4165
4166 /* tell readfile() not to clear or reload undo info */
4167 readfile_flags = READ_KEEP_UNDO;
4168 }
4169 else
4170 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004171
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 /* If autocommands deleted the buffer we were going to re-edit, give
4173 * up and jump to the end. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004174 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 {
4176 delbuf_msg(new_name); /* frees new_name */
4177 goto theend;
4178 }
4179 vim_free(new_name);
4180
4181 /* If autocommands change buffers under our fingers, forget about
4182 * re-editing the file. Should do the buf_clear_file(), but perhaps
4183 * the autocommands changed the buffer... */
4184 if (buf != curbuf)
4185 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004186#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 if (aborting()) /* autocmds may abort script processing */
4188 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189#endif
4190 buf_clear_file(curbuf);
4191 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
4192 curbuf->b_op_end.lnum = 0;
4193 }
4194
4195/*
4196 * If we get here we are sure to start editing
4197 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 /* Assume success now */
4199 retval = OK;
4200
4201 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 * Check if we are editing the w_arg_idx file in the argument list.
4203 */
4204 check_arg_idx(curwin);
4205
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 if (!auto_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 {
4208 /*
4209 * Set cursor and init window before reading the file and executing
4210 * autocommands. This allows for the autocommands to position the
4211 * cursor.
4212 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004213 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214
4215#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004216 /* It's possible that all lines in the buffer changed. Need to update
4217 * automatic folding for all windows where it's used. */
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004218 {
4219 win_T *win;
4220 tabpage_T *tp;
4221
4222 FOR_ALL_TAB_WINDOWS(tp, win)
4223 if (win->w_buffer == curbuf)
4224 foldUpdateAll(win);
4225 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226#endif
4227
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004228 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02004229 DO_AUTOCHDIR;
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004230
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 /*
4232 * Careful: open_buffer() and apply_autocmds() may change the current
4233 * buffer and window.
4234 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01004235 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 topline = curwin->w_topline;
4237 if (!oldbuf) /* need to read the file */
4238 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004239#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 swap_exists_action = SEA_DIALOG;
4241#endif
4242 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
4243
4244 /*
4245 * Open the buffer and read the file.
4246 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004247#if defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004248 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 retval = FAIL;
4250#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004251 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252#endif
4253
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004254#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 if (swap_exists_action == SEA_QUIT)
4256 retval = FAIL;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004257 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258#endif
4259 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 else
4261 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004262 /* Read the modelines, but only to set window-local options. Any
4263 * buffer-local options have already been set and may have been
4264 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00004265 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004266
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
4268 &retval);
4269 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
4270 &retval);
4271 }
4272 check_arg_idx(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273
Bram Moolenaareab316b2015-03-24 11:46:30 +01004274 /* If autocommands change the cursor position or topline, we should
Bram Moolenaaradb8fbe2018-06-04 20:34:23 +02004275 * keep it. Also when it moves within a line. But not when it moves
4276 * to the first non-blank. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004277 if (!EQUAL_POS(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 {
Bram Moolenaaradb8fbe2018-06-04 20:34:23 +02004279 char_u *text = ml_get_curline();
4280
4281 if (curwin->w_cursor.lnum != orig_pos.lnum
4282 || curwin->w_cursor.col != (int)(skipwhite(text) - text))
4283 {
4284 newlnum = curwin->w_cursor.lnum;
4285 newcol = curwin->w_cursor.col;
4286 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 }
4288 if (curwin->w_topline == topline)
4289 topline = 0;
4290
4291 /* Even when cursor didn't move we need to recompute topline. */
4292 changed_line_abv_curs();
4293
4294#ifdef FEAT_TITLE
4295 maketitle();
4296#endif
4297 }
4298
4299#ifdef FEAT_DIFF
4300 /* Tell the diff stuff that this buffer is new and/or needs updating.
4301 * Also needed when re-editing the same buffer, because unloading will
4302 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004303 if (curwin->w_p_diff)
4304 {
4305 diff_buf_add(curbuf);
4306 diff_invalidate(curbuf);
4307 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308#endif
4309
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004310#ifdef FEAT_SPELL
4311 /* If the window options were changed may need to set the spell language.
4312 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02004313 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
4314 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004315#endif
4316
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 if (command == NULL)
4318 {
4319 if (newcol >= 0) /* position set by autocommands */
4320 {
4321 curwin->w_cursor.lnum = newlnum;
4322 curwin->w_cursor.col = newcol;
4323 check_cursor();
4324 }
4325 else if (newlnum > 0) /* line number from caller or old position */
4326 {
4327 curwin->w_cursor.lnum = newlnum;
4328 check_cursor_lnum();
4329 if (solcol >= 0 && !p_sol)
4330 {
4331 /* 'sol' is off: Use last known column. */
4332 curwin->w_cursor.col = solcol;
4333 check_cursor_col();
4334#ifdef FEAT_VIRTUALEDIT
4335 curwin->w_cursor.coladd = 0;
4336#endif
4337 curwin->w_set_curswant = TRUE;
4338 }
4339 else
4340 beginline(BL_SOL | BL_FIX);
4341 }
4342 else /* no line number, go to last line in Ex mode */
4343 {
4344 if (exmode_active)
4345 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4346 beginline(BL_WHITE | BL_FIX);
4347 }
4348 }
4349
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 /* Check if cursors in other windows on the same buffer are still valid */
4351 check_lnums(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352
4353 /*
4354 * Did not read the file, need to show some info about the file.
4355 * Do this after setting the cursor.
4356 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004357 if (oldbuf && !auto_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 {
4359 int msg_scroll_save = msg_scroll;
4360
4361 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
4362 * message. */
4363 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
4364 msg_scroll = FALSE;
4365 if (!msg_scroll) /* wait a bit when overwriting an error msg */
4366 check_for_delay(FALSE);
4367 msg_start();
4368 msg_scroll = msg_scroll_save;
4369 msg_scrolled_ign = TRUE;
4370
Bram Moolenaar426dd022016-03-15 15:09:29 +01004371 if (!shortmess(SHM_FILEINFO))
4372 fileinfo(FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373
4374 msg_scrolled_ign = FALSE;
4375 }
4376
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02004377#ifdef FEAT_VIMINFO
4378 curbuf->b_last_used = vim_time();
4379#endif
4380
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 if (command != NULL)
4382 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
4383
4384#ifdef FEAT_KEYMAP
4385 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004386 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387#endif
4388
4389 --RedrawingDisabled;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004390 did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 if (!skip_redraw)
4392 {
4393 n = p_so;
4394 if (topline == 0 && command == NULL)
4395 p_so = 999; /* force cursor halfway the window */
4396 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 curwin->w_scbind_pos = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 p_so = n;
4399 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
4400 }
4401
4402 if (p_im)
4403 need_start_insertmode = TRUE;
4404
Bram Moolenaar15833232018-02-03 18:33:17 +01004405#ifdef FEAT_AUTOCHDIR
4406 /* Change directories when the 'acd' option is set and we aren't already in
4407 * that directory (should already be done above). Expect getcwd() to be
4408 * faster than calling shorten_fnames() unnecessarily. */
4409 if (p_acd && curbuf->b_ffname != NULL)
4410 {
4411 char_u curdir[MAXPATHL];
4412 char_u filedir[MAXPATHL];
4413
4414 vim_strncpy(filedir, curbuf->b_ffname, MAXPATHL - 1);
4415 *gettail_sep(filedir) = NUL;
4416 if (mch_dirname(curdir, MAXPATHL) != FAIL
4417 && vim_fnamecmp(curdir, filedir) != 0)
4418 do_autochdir();
4419 }
4420#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00004422#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02004423 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 {
4425# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02004426 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
4428# endif
4429# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004430 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00004431 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432# endif
4433 }
4434#endif
4435
4436theend:
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004437 if (did_inc_redrawing_disabled)
4438 --RedrawingDisabled;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004439#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004440 if (did_set_swapcommand)
4441 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
4442#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443#ifdef FEAT_BROWSE
4444 vim_free(browse_file);
4445#endif
4446 vim_free(free_fname);
4447 return retval;
4448}
4449
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004451delbuf_msg(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452{
4453 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
4454 name == NULL ? (char_u *)"" : name);
4455 vim_free(name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004456 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004457 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004460static int append_indent = 0; /* autoindent for first line */
4461
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462/*
4463 * ":insert" and ":append", also used by ":change"
4464 */
4465 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004466ex_append(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467{
4468 char_u *theline;
4469 int did_undo = FALSE;
4470 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004471 int indent = 0;
4472 char_u *p;
4473 int vcol;
4474 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004476 /* the ! flag toggles autoindent */
4477 if (eap->forceit)
4478 curbuf->b_p_ai = !curbuf->b_p_ai;
4479
4480 /* First autoindent comes from the line we start on */
4481 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
4482 append_indent = get_indent_lnum(lnum);
4483
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 if (eap->cmdidx != CMD_append)
4485 --lnum;
4486
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004487 /* when the buffer is empty need to delete the dummy line */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004488 if (empty && lnum == 1)
4489 lnum = 0;
4490
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 State = INSERT; /* behave like in Insert mode */
4492 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
4493 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004494
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004495 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 {
4497 msg_scroll = TRUE;
4498 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004499 if (curbuf->b_p_ai)
4500 {
4501 if (append_indent >= 0)
4502 {
4503 indent = append_indent;
4504 append_indent = -1;
4505 }
4506 else if (lnum > 0)
4507 indent = get_indent_lnum(lnum);
4508 }
4509 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004511 {
4512 /* No getline() function, use the lines that follow. This ends
4513 * when there is no more. */
4514 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
4515 break;
4516 p = vim_strchr(eap->nextcmd, NL);
4517 if (p == NULL)
4518 p = eap->nextcmd + STRLEN(eap->nextcmd);
4519 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4520 if (*p != NUL)
4521 ++p;
4522 eap->nextcmd = p;
4523 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004525 {
4526 int save_State = State;
4527
4528 /* Set State to avoid the cursor shape to be set to INSERT mode
4529 * when getline() returns. */
4530 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 theline = eap->getline(
4532#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004533 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004535 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004536 State = save_State;
4537 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004539 if (theline == NULL)
4540 break;
4541
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004542 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4543 if (ex_keep_indent)
4544 append_indent = indent;
4545
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004546 /* Look for the "." after automatic indent. */
4547 vcol = 0;
4548 for (p = theline; indent > vcol; ++p)
4549 {
4550 if (*p == ' ')
4551 ++vcol;
4552 else if (*p == TAB)
4553 vcol += 8 - vcol % 8;
4554 else
4555 break;
4556 }
4557 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004558 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4559 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 {
4561 vim_free(theline);
4562 break;
4563 }
4564
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004565 /* don't use autoindent if nothing was typed. */
4566 if (p[0] == NUL)
4567 theline[0] = NUL;
4568
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 did_undo = TRUE;
4570 ml_append(lnum, theline, (colnr_T)0, FALSE);
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004571 appended_lines_mark(lnum + (empty ? 1 : 0), 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572
4573 vim_free(theline);
4574 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004575
4576 if (empty)
4577 {
4578 ml_delete(2L, FALSE);
4579 empty = FALSE;
4580 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 }
4582 State = NORMAL;
4583
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004584 if (eap->forceit)
4585 curbuf->b_p_ai = !curbuf->b_p_ai;
4586
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004588 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 * "end" is set to lnum when something has been appended, otherwise
4590 * it is the same than "start" -- Acevedo */
4591 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4592 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4593 if (eap->cmdidx != CMD_append)
4594 --curbuf->b_op_start.lnum;
4595 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4596 ? lnum : curbuf->b_op_start.lnum;
4597 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4598 curwin->w_cursor.lnum = lnum;
4599 check_cursor_lnum();
4600 beginline(BL_SOL | BL_FIX);
4601
4602 need_wait_return = FALSE; /* don't use wait_return() now */
4603 ex_no_reprint = TRUE;
4604}
4605
4606/*
4607 * ":change"
4608 */
4609 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004610ex_change(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611{
4612 linenr_T lnum;
4613
4614 if (eap->line2 >= eap->line1
4615 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4616 return;
4617
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004618 /* the ! flag toggles autoindent */
4619 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4620 append_indent = get_indent_lnum(eap->line1);
4621
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4623 {
4624 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4625 break;
4626 ml_delete(eap->line1, FALSE);
4627 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004628
4629 /* make sure the cursor is not beyond the end of the file now */
4630 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4632
4633 /* ":append" on the line above the deleted lines. */
4634 eap->line2 = eap->line1;
4635 ex_append(eap);
4636}
4637
4638 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004639ex_z(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640{
4641 char_u *x;
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004642 long bigness;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004643 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 int minus = 0;
4645 linenr_T start, end, curs, i;
4646 int j;
4647 linenr_T lnum = eap->line2;
4648
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004649 /* Vi compatible: ":z!" uses display height, without a count uses
4650 * 'scroll' */
4651 if (eap->forceit)
4652 bigness = curwin->w_height;
Bram Moolenaar459ca562016-11-10 18:16:33 +01004653 else if (!ONE_WINDOW)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004654 bigness = curwin->w_height - 3;
Bram Moolenaar631abc32014-02-22 22:27:47 +01004655 else
4656 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 if (bigness < 1)
4658 bigness = 1;
4659
4660 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004661 kind = x;
4662 if (*kind == '-' || *kind == '+' || *kind == '='
4663 || *kind == '^' || *kind == '.')
4664 ++x;
4665 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 ++x;
4667
4668 if (*x != 0)
4669 {
4670 if (!VIM_ISDIGIT(*x))
4671 {
4672 EMSG(_("E144: non-numeric argument to :z"));
4673 return;
4674 }
4675 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004676 {
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004677 bigness = atol((char *)x);
4678
4679 /* bigness could be < 0 if atol(x) overflows. */
4680 if (bigness > 2 * curbuf->b_ml.ml_line_count || bigness < 0)
4681 bigness = 2 * curbuf->b_ml.ml_line_count;
4682
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004683 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004684 if (*kind == '=')
4685 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004686 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 }
4688
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004689 /* the number of '-' and '+' multiplies the distance */
4690 if (*kind == '-' || *kind == '+')
4691 for (x = kind + 1; *x == *kind; ++x)
4692 ;
4693
4694 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 {
4696 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004697 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4698 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004699 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700 break;
4701
4702 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004703 start = lnum - (bigness + 1) / 2 + 1;
4704 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 curs = lnum;
4706 minus = 1;
4707 break;
4708
4709 case '^':
4710 start = lnum - bigness * 2;
4711 end = lnum - bigness;
4712 curs = lnum - bigness;
4713 break;
4714
4715 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004716 start = lnum - (bigness + 1) / 2 + 1;
4717 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 curs = end;
4719 break;
4720
4721 default: /* '+' */
4722 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004723 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004724 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004725 else if (eap->addr_count == 0)
4726 ++start;
4727 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 curs = end;
4729 break;
4730 }
4731
4732 if (start < 1)
4733 start = 1;
4734
4735 if (end > curbuf->b_ml.ml_line_count)
4736 end = curbuf->b_ml.ml_line_count;
4737
4738 if (curs > curbuf->b_ml.ml_line_count)
4739 curs = curbuf->b_ml.ml_line_count;
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004740 else if (curs < 1)
4741 curs = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742
4743 for (i = start; i <= end; i++)
4744 {
4745 if (minus && i == lnum)
4746 {
4747 msg_putchar('\n');
4748
4749 for (j = 1; j < Columns; j++)
4750 msg_putchar('-');
4751 }
4752
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004753 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754
4755 if (minus && i == lnum)
4756 {
4757 msg_putchar('\n');
4758
4759 for (j = 1; j < Columns; j++)
4760 msg_putchar('-');
4761 }
4762 }
4763
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004764 if (curwin->w_cursor.lnum != curs)
4765 {
4766 curwin->w_cursor.lnum = curs;
4767 curwin->w_cursor.col = 0;
4768 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 ex_no_reprint = TRUE;
4770}
4771
4772/*
4773 * Check if the restricted flag is set.
4774 * If so, give an error message and return TRUE.
4775 * Otherwise, return FALSE.
4776 */
4777 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004778check_restricted(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779{
4780 if (restricted)
4781 {
4782 EMSG(_("E145: Shell commands not allowed in rvim"));
4783 return TRUE;
4784 }
4785 return FALSE;
4786}
4787
4788/*
4789 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4790 * If so, give an error message and return TRUE.
4791 * Otherwise, return FALSE.
4792 */
4793 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004794check_secure(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795{
4796 if (secure)
4797 {
4798 secure = 2;
4799 EMSG(_(e_curdir));
4800 return TRUE;
4801 }
4802#ifdef HAVE_SANDBOX
4803 /*
4804 * In the sandbox more things are not allowed, including the things
4805 * disallowed in secure mode.
4806 */
4807 if (sandbox != 0)
4808 {
4809 EMSG(_(e_sandbox));
4810 return TRUE;
4811 }
4812#endif
4813 return FALSE;
4814}
4815
4816static char_u *old_sub = NULL; /* previous substitute pattern */
4817static int global_need_beginline; /* call beginline() after ":g" */
4818
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004819/*
4820 * Flags that are kept between calls to :substitute.
4821 */
4822typedef struct {
4823 int do_all; /* do multiple substitutions per line */
4824 int do_ask; /* ask for confirmation */
4825 int do_count; /* count only */
4826 int do_error; /* if false, ignore errors */
4827 int do_print; /* print last line with subs. */
4828 int do_list; /* list last line with subs. */
4829 int do_number; /* list last line with line nr*/
4830 int do_ic; /* ignore case flag */
4831} subflags_T;
4832
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833/* do_sub()
4834 *
4835 * Perform a substitution from line eap->line1 to line eap->line2 using the
4836 * command pointed to by eap->arg which should be of the form:
4837 *
4838 * /pattern/substitution/{flags}
4839 *
4840 * The usual escapes are supported as described in the regexp docs.
4841 */
4842 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004843do_sub(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844{
4845 linenr_T lnum;
4846 long i = 0;
4847 regmmatch_T regmatch;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004848 static subflags_T subflags = {FALSE, FALSE, FALSE, TRUE, FALSE,
4849 FALSE, FALSE, 0};
4850#ifdef FEAT_EVAL
4851 subflags_T subflags_save;
4852#endif
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004853 int save_do_all; /* remember user specified 'g' flag */
4854 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4856 int delimiter;
4857 int sublen;
4858 int got_quit = FALSE;
4859 int got_match = FALSE;
4860 int temp;
4861 int which_pat;
4862 char_u *cmd;
4863 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004864 linenr_T first_line = 0; /* first changed line */
4865 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 * change */
4867 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4868 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004869 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004870 char_u *sub_firstline; /* allocated copy of first sub line */
4871 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004872 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004873 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004874#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004875 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004876#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877
4878 cmd = eap->arg;
4879 if (!global_busy)
4880 {
4881 sub_nsubs = 0;
4882 sub_nlines = 0;
4883 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004884 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 if (eap->cmdidx == CMD_tilde)
4887 which_pat = RE_LAST; /* use last used regexp */
4888 else
4889 which_pat = RE_SUBST; /* use last substitute regexp */
4890
4891 /* new pattern and substitution */
Bram Moolenaar1c465442017-03-12 20:10:05 +01004892 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4894 {
4895 /* don't accept alphanumeric for separator */
4896 if (isalpha(*cmd))
4897 {
4898 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4899 return;
4900 }
4901 /*
4902 * undocumented vi feature:
4903 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4904 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4905 */
4906 if (*cmd == '\\')
4907 {
4908 ++cmd;
4909 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4910 {
4911 EMSG(_(e_backslash));
4912 return;
4913 }
4914 if (*cmd != '&')
4915 which_pat = RE_SEARCH; /* use last '/' pattern */
4916 pat = (char_u *)""; /* empty search pattern */
4917 delimiter = *cmd++; /* remember delimiter character */
4918 }
4919 else /* find the end of the regexp */
4920 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004921#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4922 if (p_altkeymap && curwin->w_p_rl)
4923 lrF_sub(cmd);
4924#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 which_pat = RE_LAST; /* use last used regexp */
4926 delimiter = *cmd++; /* remember delimiter character */
4927 pat = cmd; /* remember start of search pat */
4928 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4929 if (cmd[0] == delimiter) /* end delimiter found */
4930 *cmd++ = NUL; /* replace it with a NUL */
4931 }
4932
4933 /*
4934 * Small incompatibility: vi sees '\n' as end of the command, but in
4935 * Vim we want to use '\n' to find/substitute a NUL.
4936 */
4937 sub = cmd; /* remember the start of the substitution */
4938
4939 while (cmd[0])
4940 {
4941 if (cmd[0] == delimiter) /* end delimiter found */
4942 {
4943 *cmd++ = NUL; /* replace it with a NUL */
4944 break;
4945 }
4946 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4947 ++cmd;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004948 MB_PTR_ADV(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 }
4950
4951 if (!eap->skip)
4952 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004953 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4954 if (STRCMP(sub, "%") == 0
4955 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4956 {
4957 if (old_sub == NULL) /* there is no previous command */
4958 {
4959 EMSG(_(e_nopresub));
4960 return;
4961 }
4962 sub = old_sub;
4963 }
4964 else
4965 {
4966 vim_free(old_sub);
4967 old_sub = vim_strsave(sub);
4968 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 }
4970 }
4971 else if (!eap->skip) /* use previous pattern and substitution */
4972 {
4973 if (old_sub == NULL) /* there is no previous command */
4974 {
4975 EMSG(_(e_nopresub));
4976 return;
4977 }
4978 pat = NULL; /* search_regcomp() will use previous pattern */
4979 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004980
4981 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4982 * last column after using "$". */
4983 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 }
4985
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004986 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4987 * more efficient.
4988 * TODO: find a generic solution to make line-joining operations more
4989 * efficient, avoid allocating a string that grows in size.
4990 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004991 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004992 && *sub == NUL
4993 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4994 || *cmd == 'p' || *cmd == '#'))))
4995 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004996 linenr_T joined_lines_count;
4997
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004998 curwin->w_cursor.lnum = eap->line1;
4999 if (*cmd == 'l')
5000 eap->flags = EXFLAG_LIST;
5001 else if (*cmd == '#')
5002 eap->flags = EXFLAG_NR;
5003 else if (*cmd == 'p')
5004 eap->flags = EXFLAG_PRINT;
5005
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01005006 /* The number of lines joined is the number of lines in the range plus
5007 * one. One less when the last line is included. */
5008 joined_lines_count = eap->line2 - eap->line1 + 1;
5009 if (eap->line2 < curbuf->b_ml.ml_line_count)
5010 ++joined_lines_count;
5011 if (joined_lines_count > 1)
5012 {
5013 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
5014 sub_nsubs = joined_lines_count - 1;
5015 sub_nlines = 1;
5016 (void)do_sub_msg(FALSE);
5017 ex_may_print(eap);
5018 }
5019
5020 if (!cmdmod.keeppatterns)
5021 save_re_pat(RE_SUBST, pat, p_magic);
5022#ifdef FEAT_CMDHIST
5023 /* put pattern in history */
5024 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
5025#endif
5026
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02005027 return;
5028 }
5029
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 /*
5031 * Find trailing options. When '&' is used, keep old options.
5032 */
5033 if (*cmd == '&')
5034 ++cmd;
5035 else
5036 {
5037 if (!p_ed)
5038 {
5039 if (p_gd) /* default is global on */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005040 subflags.do_all = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005042 subflags.do_all = FALSE;
5043 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005045 subflags.do_error = TRUE;
5046 subflags.do_print = FALSE;
5047 subflags.do_count = FALSE;
5048 subflags.do_number = FALSE;
5049 subflags.do_ic = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 }
5051 while (*cmd)
5052 {
5053 /*
5054 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
5055 * 'r' is never inverted.
5056 */
5057 if (*cmd == 'g')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005058 subflags.do_all = !subflags.do_all;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 else if (*cmd == 'c')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005060 subflags.do_ask = !subflags.do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005061 else if (*cmd == 'n')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005062 subflags.do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 else if (*cmd == 'e')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005064 subflags.do_error = !subflags.do_error;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 else if (*cmd == 'r') /* use last used regexp */
5066 which_pat = RE_LAST;
5067 else if (*cmd == 'p')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005068 subflags.do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005069 else if (*cmd == '#')
5070 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005071 subflags.do_print = TRUE;
5072 subflags.do_number = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005073 }
5074 else if (*cmd == 'l')
5075 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005076 subflags.do_print = TRUE;
5077 subflags.do_list = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 else if (*cmd == 'i') /* ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005080 subflags.do_ic = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 else if (*cmd == 'I') /* don't ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005082 subflags.do_ic = 'I';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 else
5084 break;
5085 ++cmd;
5086 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005087 if (subflags.do_count)
5088 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005090 save_do_all = subflags.do_all;
5091 save_do_ask = subflags.do_ask;
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005092
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 /*
5094 * check for a trailing count
5095 */
5096 cmd = skipwhite(cmd);
5097 if (VIM_ISDIGIT(*cmd))
5098 {
5099 i = getdigits(&cmd);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005100 if (i <= 0 && !eap->skip && subflags.do_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 {
5102 EMSG(_(e_zerocount));
5103 return;
5104 }
5105 eap->line1 = eap->line2;
5106 eap->line2 += i - 1;
5107 if (eap->line2 > curbuf->b_ml.ml_line_count)
5108 eap->line2 = curbuf->b_ml.ml_line_count;
5109 }
5110
5111 /*
5112 * check for trailing command or garbage
5113 */
5114 cmd = skipwhite(cmd);
5115 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
5116 {
5117 eap->nextcmd = check_nextcmd(cmd);
5118 if (eap->nextcmd == NULL)
5119 {
5120 EMSG(_(e_trailing));
5121 return;
5122 }
5123 }
5124
5125 if (eap->skip) /* not executing commands, only parsing */
5126 return;
5127
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005128 if (!subflags.do_count && !curbuf->b_p_ma)
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005129 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005130 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005131 EMSG(_(e_modifiable));
5132 return;
5133 }
5134
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5136 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005137 if (subflags.do_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 EMSG(_(e_invcmd));
5139 return;
5140 }
5141
5142 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005143 if (subflags.do_ic == 'i')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 regmatch.rmm_ic = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005145 else if (subflags.do_ic == 'I')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 regmatch.rmm_ic = FALSE;
5147
5148 sub_firstline = NULL;
5149
5150 /*
5151 * ~ in the substitute pattern is replaced with the old pattern.
5152 * We do it here once to avoid it to be replaced over and over again.
5153 * But don't do it when it starts with "\=", then it's an expression.
5154 */
5155 if (!(sub[0] == '\\' && sub[1] == '='))
5156 sub = regtilde(sub, p_magic);
5157
5158 /*
5159 * Check for a match on each line.
5160 */
5161 line2 = eap->line2;
5162 for (lnum = eap->line1; lnum <= line2 && !(got_quit
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005163#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164 || aborting()
5165#endif
5166 ); ++lnum)
5167 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005168 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005169 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 if (nmatch)
5171 {
5172 colnr_T copycol;
5173 colnr_T matchcol;
5174 colnr_T prev_matchcol = MAXCOL;
5175 char_u *new_end, *new_start = NULL;
5176 unsigned new_start_len = 0;
5177 char_u *p1;
5178 int did_sub = FALSE;
5179 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005180 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 long nmatch_tl = 0; /* nr of lines matched below lnum */
5182 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005183 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005184 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185
5186 /*
5187 * The new text is build up step by step, to avoid too much
5188 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00005189 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 * copycol Column in the old text where we started
5191 * looking for a match; from here old text still
5192 * needs to be copied to the new text.
5193 * matchcol Column number of the old text where to look
5194 * for the next match. It's just after the
5195 * previous match or one further.
5196 * prev_matchcol Column just after the previous match (if any).
5197 * Mostly equal to matchcol, except for the first
5198 * match and after skipping an empty match.
5199 * regmatch.*pos Where the pattern matched in the old text.
5200 * new_start The new text, all that has been produced so
5201 * far.
5202 * new_end The new text, where to append new text.
5203 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005204 * lnum The line number where we found the start of
5205 * the match. Can be below the line we searched
5206 * when there is a \n before a \zs in the
5207 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 * sub_firstlnum The line number in the buffer where to look
5209 * for a match. Can be different from "lnum"
5210 * when the pattern or substitute string contains
5211 * line breaks.
5212 *
5213 * Special situations:
5214 * - When the substitute string contains a line break, the part up
5215 * to the line break is inserted in the text, but the copy of
5216 * the original line is kept. "sub_firstlnum" is adjusted for
5217 * the inserted lines.
5218 * - When the matched pattern contains a line break, the old line
5219 * is taken from the line at the end of the pattern. The lines
5220 * in the match are deleted later, "sub_firstlnum" is adjusted
5221 * accordingly.
5222 *
5223 * The new text is built up in new_start[]. It has some extra
5224 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005225 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 *
5227 * Make a copy of the old line, so it won't be taken away when
5228 * updating the screen or handling a multi-line match. The "old_"
5229 * pointers point into this copy.
5230 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005231 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 copycol = 0;
5233 matchcol = 0;
5234
5235 /* At first match, remember current cursor position. */
5236 if (!got_match)
5237 {
5238 setpcmark();
5239 got_match = TRUE;
5240 }
5241
5242 /*
5243 * Loop until nothing more to replace in this line.
5244 * 1. Handle match with empty string.
5245 * 2. If do_ask is set, ask for confirmation.
5246 * 3. substitute the string.
5247 * 4. if do_all is set, find next match
5248 * 5. break if there isn't another match in this line
5249 */
5250 for (;;)
5251 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005252 /* Advance "lnum" to the line where the match starts. The
5253 * match does not start in the first line when there is a line
5254 * break before \zs. */
5255 if (regmatch.startpos[0].lnum > 0)
5256 {
5257 lnum += regmatch.startpos[0].lnum;
5258 sub_firstlnum += regmatch.startpos[0].lnum;
5259 nmatch -= regmatch.startpos[0].lnum;
Bram Moolenaard23a8232018-02-10 18:45:26 +01005260 VIM_CLEAR(sub_firstline);
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005261 }
5262
5263 if (sub_firstline == NULL)
5264 {
5265 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5266 if (sub_firstline == NULL)
5267 {
5268 vim_free(new_start);
5269 goto outofmem;
5270 }
5271 }
5272
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 /* Save the line number of the last change for the final
5274 * cursor position (just like Vi). */
5275 curwin->w_cursor.lnum = lnum;
5276 do_again = FALSE;
5277
5278 /*
5279 * 1. Match empty string does not count, except for first
5280 * match. This reproduces the strange vi behaviour.
5281 * This also catches endless loops.
5282 */
5283 if (matchcol == prev_matchcol
5284 && regmatch.endpos[0].lnum == 0
5285 && matchcol == regmatch.endpos[0].col)
5286 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00005287 if (sub_firstline[matchcol] == NUL)
5288 /* We already were at the end of the line. Don't look
5289 * for a match in this line again. */
5290 skip_match = TRUE;
5291 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02005292 {
5293 /* search for a match at next column */
5294#ifdef FEAT_MBYTE
5295 if (has_mbyte)
5296 matchcol += mb_ptr2len(sub_firstline + matchcol);
5297 else
5298#endif
5299 ++matchcol;
5300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 goto skip;
5302 }
5303
5304 /* Normally we continue searching for a match just after the
5305 * previous match. */
5306 matchcol = regmatch.endpos[0].col;
5307 prev_matchcol = matchcol;
5308
5309 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00005310 * 2. If do_count is set only increase the counter.
5311 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005313 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005314 {
5315 /* For a multi-line match, put matchcol at the NUL at
5316 * the end of the line and set nmatch to one, so that
5317 * we continue looking for a match on the next line.
5318 * Avoids that ":s/\nB\@=//gc" get stuck. */
5319 if (nmatch > 1)
5320 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005321 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00005322 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00005323 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005324 }
5325 sub_nsubs++;
5326 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005327#ifdef FEAT_EVAL
5328 /* Skip the substitution, unless an expression is used,
5329 * then it is evaluated in the sandbox. */
5330 if (!(sub[0] == '\\' && sub[1] == '='))
5331#endif
5332 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005333 }
5334
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005335 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00005337 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005338
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 /* change State to CONFIRM, so that the mouse works
5340 * properly */
5341 save_State = State;
5342 State = CONFIRM;
5343#ifdef FEAT_MOUSE
5344 setmouse(); /* disable mouse in xterm */
5345#endif
5346 curwin->w_cursor.col = regmatch.startpos[0].col;
Bram Moolenaar41baa792017-01-21 14:45:09 +01005347 if (curwin->w_p_crb)
5348 do_check_cursorbind();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349
5350 /* When 'cpoptions' contains "u" don't sync undo when
5351 * asking for confirmation. */
5352 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5353 ++no_u_sync;
5354
5355 /*
5356 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
5357 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005358 while (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005360 if (exmode_active)
5361 {
5362 char_u *resp;
5363 colnr_T sc, ec;
5364
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005365 print_line_no_prefix(lnum,
5366 subflags.do_number, subflags.do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005367
5368 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
5369 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01005370 if (curwin->w_cursor.col < 0)
5371 curwin->w_cursor.col = 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005372 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005373 if (subflags.do_number || curwin->w_p_nu)
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02005374 {
5375 int numw = number_width(curwin) + 1;
5376 sc += numw;
5377 ec += numw;
5378 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005379 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00005380 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005381 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00005382 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005383 msg_putchar('^');
5384
5385 resp = getexmodeline('?', NULL, 0);
5386 if (resp != NULL)
5387 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005388 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005389 vim_free(resp);
5390 }
5391 }
5392 else
5393 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005394 char_u *orig_line = NULL;
5395 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005397 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005399 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005401 /* Invert the matched string.
5402 * Remove the inversion afterwards. */
5403 temp = RedrawingDisabled;
5404 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005406 if (new_start != NULL)
5407 {
5408 /* There already was a substitution, we would
5409 * like to show this to the user. We cannot
5410 * really update the line, it would change
5411 * what matches. Temporarily replace the line
5412 * and change it back afterwards. */
5413 orig_line = vim_strsave(ml_get(lnum));
5414 if (orig_line != NULL)
5415 {
5416 char_u *new_line = concat_str(new_start,
5417 sub_firstline + copycol);
5418
5419 if (new_line == NULL)
Bram Moolenaard23a8232018-02-10 18:45:26 +01005420 VIM_CLEAR(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005421 else
5422 {
5423 /* Position the cursor relative to the
5424 * end of the line, the previous
5425 * substitute may have inserted or
5426 * deleted characters before the
5427 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01005428 len_change = (int)STRLEN(new_line)
5429 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005430 curwin->w_cursor.col += len_change;
5431 ml_replace(lnum, new_line, FALSE);
5432 }
5433 }
5434 }
5435
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005436 search_match_lines = regmatch.endpos[0].lnum
5437 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005438 search_match_endcol = regmatch.endpos[0].col
5439 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005440 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005442 update_topline();
5443 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00005444 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005445 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00005446 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447
5448#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005449 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005451 if (msg_row == Rows - 1)
5452 msg_didout = FALSE; /* avoid a scroll-up */
5453 msg_starthere();
5454 i = msg_scroll;
5455 msg_scroll = 0; /* truncate msg when
5456 needed */
5457 msg_no_more = TRUE;
5458 /* write message same highlighting as for
5459 * wait_return */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005460 smsg_attr(HL_ATTR(HLF_R),
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005461 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
5462 msg_no_more = FALSE;
5463 msg_scroll = i;
5464 showruler(TRUE);
5465 windgoto(msg_row, msg_col);
5466 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467
5468#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005469 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005471 ++no_mapping; /* don't map this key */
5472 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005473 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005474 --allow_keys;
5475 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005477 /* clear the question */
5478 msg_didout = FALSE; /* don't scroll up */
5479 msg_col = 0;
5480 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005481
5482 /* restore the line */
5483 if (orig_line != NULL)
5484 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005485 }
5486
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005488 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005490 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491#endif
5492 )
5493 {
5494 got_quit = TRUE;
5495 break;
5496 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005497 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005499 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005501 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 {
5503 /* last: replace and then stop */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005504 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 line2 = lnum;
5506 break;
5507 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005508 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005510 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 break;
5512 }
5513#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005514 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005516 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517 scrolldown_clamp();
5518#endif
5519 }
5520 State = save_State;
5521#ifdef FEAT_MOUSE
5522 setmouse();
5523#endif
5524 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5525 --no_u_sync;
5526
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005527 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 {
5529 /* For a multi-line match, put matchcol at the NUL at
5530 * the end of the line and set nmatch to one, so that
5531 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00005532 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
5533 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 if (nmatch > 1)
5535 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005536 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00005537 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 }
5539 goto skip;
5540 }
5541 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01005542 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 }
5544
5545 /* Move the cursor to the start of the match, so that we can
5546 * use "\=col("."). */
5547 curwin->w_cursor.col = regmatch.startpos[0].col;
5548
5549 /*
5550 * 3. substitute the string.
5551 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005552#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005553 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005554 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005555 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005556 save_ma = curbuf->b_p_ma;
5557 curbuf->b_p_ma = FALSE;
5558 sandbox++;
5559 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005560 /* Save flags for recursion. They can change for e.g.
5561 * :s/^/\=execute("s#^##gn") */
5562 subflags_save = subflags;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005563#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005565 sublen = vim_regsub_multi(&regmatch,
5566 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005568#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005569 /* Don't keep flags set by a recursive call. */
5570 subflags = subflags_save;
5571 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005572 {
5573 curbuf->b_p_ma = save_ma;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005574 if (sandbox > 0)
5575 sandbox--;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005576 goto skip;
5577 }
5578#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579
Bram Moolenaar4463f292005-09-25 22:20:24 +00005580 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005581 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005582 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5583 {
5584 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5585 skip_match = TRUE;
5586 }
5587
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 /* Need room for:
5589 * - result so far in new_start (not for first sub in line)
5590 * - original text up to match
5591 * - length of substituted part
5592 * - original text after match
5593 */
5594 if (nmatch == 1)
5595 p1 = sub_firstline;
5596 else
5597 {
5598 p1 = ml_get(sub_firstlnum + nmatch - 1);
5599 nmatch_tl += nmatch - 1;
5600 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005601 copy_len = regmatch.startpos[0].col - copycol;
5602 needed_len = copy_len + ((unsigned)STRLEN(p1)
5603 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604 if (new_start == NULL)
5605 {
5606 /*
5607 * Get some space for a temporary buffer to do the
5608 * substitution into (and some extra space to avoid
5609 * too many calls to alloc()/free()).
5610 */
5611 new_start_len = needed_len + 50;
5612 if ((new_start = alloc_check(new_start_len)) == NULL)
5613 goto outofmem;
5614 *new_start = NUL;
5615 new_end = new_start;
5616 }
5617 else
5618 {
5619 /*
5620 * Check if the temporary buffer is long enough to do the
5621 * substitution into. If not, make it larger (with a bit
5622 * extra to avoid too many calls to alloc()/free()).
5623 */
5624 len = (unsigned)STRLEN(new_start);
5625 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005626 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 {
5628 new_start_len = needed_len + 50;
5629 if ((p1 = alloc_check(new_start_len)) == NULL)
5630 {
5631 vim_free(new_start);
5632 goto outofmem;
5633 }
5634 mch_memmove(p1, new_start, (size_t)(len + 1));
5635 vim_free(new_start);
5636 new_start = p1;
5637 }
5638 new_end = new_start + len;
5639 }
5640
5641 /*
5642 * copy the text up to the part that matched
5643 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005644 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5645 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005647 (void)vim_regsub_multi(&regmatch,
5648 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649 sub, new_end, TRUE, p_magic, TRUE);
5650 sub_nsubs++;
5651 did_sub = TRUE;
5652
5653 /* Move the cursor to the start of the line, to avoid that it
5654 * is beyond the end of the line after the substitution. */
5655 curwin->w_cursor.col = 0;
5656
5657 /* For a multi-line match, make a copy of the last matched
5658 * line and continue in that one. */
5659 if (nmatch > 1)
5660 {
5661 sub_firstlnum += nmatch - 1;
5662 vim_free(sub_firstline);
5663 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5664 /* When going beyond the last line, stop substituting. */
5665 if (sub_firstlnum <= line2)
5666 do_again = TRUE;
5667 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005668 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 }
5670
5671 /* Remember next character to be copied. */
5672 copycol = regmatch.endpos[0].col;
5673
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005674 if (skip_match)
5675 {
5676 /* Already hit end of the buffer, sub_firstlnum is one
5677 * less than what it ought to be. */
5678 vim_free(sub_firstline);
5679 sub_firstline = vim_strsave((char_u *)"");
5680 copycol = 0;
5681 }
5682
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 /*
5684 * Now the trick is to replace CTRL-M chars with a real line
5685 * break. This would make it impossible to insert a CTRL-M in
5686 * the text. The line break can be avoided by preceding the
5687 * CTRL-M with a backslash. To be able to insert a backslash,
5688 * they must be doubled in the string and are halved here.
5689 * That is Vi compatible.
5690 */
5691 for (p1 = new_end; *p1; ++p1)
5692 {
5693 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005694 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 else if (*p1 == CAR)
5696 {
5697 if (u_inssub(lnum) == OK) /* prepare for undo */
5698 {
5699 *p1 = NUL; /* truncate up to the CR */
5700 ml_append(lnum - 1, new_start,
5701 (colnr_T)(p1 - new_start + 1), FALSE);
5702 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005703 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704 appended_lines(lnum - 1, 1L);
5705 else
5706 {
5707 if (first_line == 0)
5708 first_line = lnum;
5709 last_line = lnum + 1;
5710 }
5711 /* All line numbers increase. */
5712 ++sub_firstlnum;
5713 ++lnum;
5714 ++line2;
5715 /* move the cursor to the new line, like Vi */
5716 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005717 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005718 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 p1 = new_start - 1;
5720 }
5721 }
5722#ifdef FEAT_MBYTE
5723 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005724 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725#endif
5726 }
5727
5728 /*
5729 * 4. If do_all is set, find next match.
5730 * Prevent endless loop with patterns that match empty
5731 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5732 * But ":s/\n/#/" is OK.
5733 */
5734skip:
5735 /* We already know that we did the last subst when we are at
5736 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005737 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5738 * "line2" when there is a \zs in the pattern after a line
5739 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005740 lastone = (skip_match
5741 || got_int
5742 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005743 || lnum > line2
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005744 || !(subflags.do_all || do_again)
Bram Moolenaar8299df92004-07-10 09:47:34 +00005745 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5746 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747 nmatch = -1;
5748
5749 /*
5750 * Replace the line in the buffer when needed. This is
5751 * skipped when there are more matches.
5752 * The check for nmatch_tl is needed for when multi-line
5753 * matching must replace the lines before trying to do another
5754 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005755 * When the match starts below where we start searching also
5756 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 */
5758 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 || nmatch_tl > 0
5760 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005761 curbuf, sub_firstlnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005762 matchcol, NULL, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005763 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764 {
5765 if (new_start != NULL)
5766 {
5767 /*
5768 * Copy the rest of the line, that didn't match.
5769 * "matchcol" has to be adjusted, we use the end of
5770 * the line as reference, because the substitute may
5771 * have changed the number of characters. Same for
5772 * "prev_matchcol".
5773 */
5774 STRCAT(new_start, sub_firstline + copycol);
5775 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5776 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5777 - prev_matchcol;
5778
5779 if (u_savesub(lnum) != OK)
5780 break;
5781 ml_replace(lnum, new_start, TRUE);
5782
5783 if (nmatch_tl > 0)
5784 {
5785 /*
5786 * Matched lines have now been substituted and are
5787 * useless, delete them. The part after the match
5788 * has been appended to new_start, we don't need
5789 * it in the buffer.
5790 */
5791 ++lnum;
5792 if (u_savedel(lnum, nmatch_tl) != OK)
5793 break;
5794 for (i = 0; i < nmatch_tl; ++i)
5795 ml_delete(lnum, (int)FALSE);
5796 mark_adjust(lnum, lnum + nmatch_tl - 1,
5797 (long)MAXLNUM, -nmatch_tl);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005798 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 deleted_lines(lnum, nmatch_tl);
5800 --lnum;
5801 line2 -= nmatch_tl; /* nr of lines decreases */
5802 nmatch_tl = 0;
5803 }
5804
5805 /* When asking, undo is saved each time, must also set
5806 * changed flag each time. */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005807 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 changed_bytes(lnum, 0);
5809 else
5810 {
5811 if (first_line == 0)
5812 first_line = lnum;
5813 last_line = lnum + 1;
5814 }
5815
5816 sub_firstlnum = lnum;
5817 vim_free(sub_firstline); /* free the temp buffer */
5818 sub_firstline = new_start;
5819 new_start = NULL;
5820 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5821 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5822 - prev_matchcol;
5823 copycol = 0;
5824 }
5825 if (nmatch == -1 && !lastone)
5826 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005827 sub_firstlnum, matchcol, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828
5829 /*
5830 * 5. break if there isn't another match in this line
5831 */
5832 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005833 {
5834 /* If the match found didn't start where we were
5835 * searching, do the next search in the line where we
5836 * found the match. */
5837 if (nmatch == -1)
5838 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 }
5842
5843 line_breakcheck();
5844 }
5845
5846 if (did_sub)
5847 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005848 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaard23a8232018-02-10 18:45:26 +01005849 VIM_CLEAR(sub_firstline); /* free the copy of the original line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 }
5851
5852 line_breakcheck();
5853 }
5854
5855 if (first_line != 0)
5856 {
5857 /* Need to subtract the number of added lines from "last_line" to get
5858 * the line number before the change (same as adding the number of
5859 * deleted lines). */
5860 i = curbuf->b_ml.ml_line_count - old_line_count;
5861 changed_lines(first_line, 0, last_line - i, i);
5862 }
5863
5864outofmem:
5865 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005866
5867 /* ":s/pat//n" doesn't move the cursor */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005868 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005869 curwin->w_cursor = old_cursor;
5870
Bram Moolenaar46475522010-03-23 17:36:29 +01005871 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872 {
5873 /* Set the '[ and '] marks. */
5874 curbuf->b_op_start.lnum = eap->line1;
5875 curbuf->b_op_end.lnum = line2;
5876 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5877
5878 if (!global_busy)
5879 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005880 /* when interactive leave cursor on the match */
5881 if (!subflags.do_ask)
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005882 {
5883 if (endcolumn)
5884 coladvance((colnr_T)MAXCOL);
5885 else
5886 beginline(BL_WHITE | BL_FIX);
5887 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005888 if (!do_sub_msg(subflags.do_count) && subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 MSG("");
5890 }
5891 else
5892 global_need_beginline = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005893 if (subflags.do_print)
5894 print_line(curwin->w_cursor.lnum,
5895 subflags.do_number, subflags.do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896 }
5897 else if (!global_busy)
5898 {
5899 if (got_int) /* interrupted */
5900 EMSG(_(e_interr));
5901 else if (got_match) /* did find something but nothing substituted */
5902 MSG("");
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005903 else if (subflags.do_error) /* nothing found */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 EMSG2(_(e_patnotf2), get_search_pat());
5905 }
5906
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005907#ifdef FEAT_FOLDING
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005908 if (subflags.do_ask && hasAnyFolding(curwin))
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005909 /* Cursor position may require updating */
5910 changed_window_setting();
5911#endif
5912
Bram Moolenaar473de612013-06-08 18:19:48 +02005913 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005914
5915 /* Restore the flag values, they can be used for ":&&". */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005916 subflags.do_all = save_do_all;
5917 subflags.do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918}
5919
5920/*
5921 * Give message for number of substitutions.
5922 * Can also be used after a ":global" command.
5923 * Return TRUE if a message was given.
5924 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005925 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005926do_sub_msg(
5927 int count_only) /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928{
5929 /*
5930 * Only report substitutions when:
5931 * - more than 'report' substitutions
5932 * - command was typed by user, or number of changed lines > 'report'
5933 * - giving messages is not disabled by 'lazyredraw'
5934 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005935 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5936 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937 && messaging())
5938 {
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005939 char *msg_single;
5940 char *msg_plural;
5941
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 if (got_int)
5943 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005944 else
5945 *msg_buf = NUL;
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005946
5947 msg_single = count_only
5948 ? NGETTEXT("%ld match on %ld line",
5949 "%ld matches on %ld line", sub_nsubs)
5950 : NGETTEXT("%ld substitution on %ld line",
5951 "%ld substitutions on %ld line", sub_nsubs);
5952 msg_plural = count_only
5953 ? NGETTEXT("%ld match on %ld lines",
5954 "%ld matches on %ld lines", sub_nsubs)
5955 : NGETTEXT("%ld substitution on %ld lines",
5956 "%ld substitutions on %ld lines", sub_nsubs);
5957
5958 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
5959 NGETTEXT(msg_single, msg_plural, sub_nlines),
5960 sub_nsubs, (long)sub_nlines);
5961
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005964 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 return TRUE;
5966 }
5967 if (got_int)
5968 {
5969 EMSG(_(e_interr));
5970 return TRUE;
5971 }
5972 return FALSE;
5973}
5974
Bram Moolenaarf84b1222017-06-10 14:29:52 +02005975 static void
5976global_exe_one(char_u *cmd, linenr_T lnum)
5977{
5978 curwin->w_cursor.lnum = lnum;
5979 curwin->w_cursor.col = 0;
5980 if (*cmd == NUL || *cmd == '\n')
5981 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5982 else
5983 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5984}
5985
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986/*
5987 * Execute a global command of the form:
5988 *
5989 * g/pattern/X : execute X on all lines where pattern matches
5990 * v/pattern/X : execute X on all lines where pattern does not match
5991 *
5992 * where 'X' is an EX command
5993 *
5994 * The command character (as well as the trailing slash) is optional, and
5995 * is assumed to be 'p' if missing.
5996 *
5997 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005998 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 * for each line that has a mark. This is required because after deleting
6000 * lines we do not know where to search for the next match.
6001 */
6002 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006003ex_global(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006004{
6005 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006006 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007 int type; /* first char of cmd: 'v' or 'g' */
6008 char_u *cmd; /* command argument */
6009
6010 char_u delim; /* delimiter, normally '/' */
6011 char_u *pat;
6012 regmmatch_T regmatch;
6013 int match;
6014 int which_pat;
6015
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006016 /* When nesting the command works on one line. This allows for
6017 * ":g/found/v/notfound/command". */
6018 if (global_busy && (eap->line1 != 1
6019 || eap->line2 != curbuf->b_ml.ml_line_count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006020 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006021 /* will increment global_busy to break out of the loop */
6022 EMSG(_("E147: Cannot do :global recursive with a range"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023 return;
6024 }
6025
6026 if (eap->forceit) /* ":global!" is like ":vglobal" */
6027 type = 'v';
6028 else
6029 type = *eap->cmd;
6030 cmd = eap->arg;
6031 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032
6033 /*
6034 * undocumented vi feature:
6035 * "\/" and "\?": use previous search pattern.
6036 * "\&": use previous substitute pattern.
6037 */
6038 if (*cmd == '\\')
6039 {
6040 ++cmd;
6041 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
6042 {
6043 EMSG(_(e_backslash));
6044 return;
6045 }
6046 if (*cmd == '&')
6047 which_pat = RE_SUBST; /* use previous substitute pattern */
6048 else
6049 which_pat = RE_SEARCH; /* use previous search pattern */
6050 ++cmd;
6051 pat = (char_u *)"";
6052 }
6053 else if (*cmd == NUL)
6054 {
6055 EMSG(_("E148: Regular expression missing from global"));
6056 return;
6057 }
6058 else
6059 {
6060 delim = *cmd; /* get the delimiter */
6061 if (delim)
6062 ++cmd; /* skip delimiter if there is one */
6063 pat = cmd; /* remember start of pattern */
6064 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
6065 if (cmd[0] == delim) /* end delimiter found */
6066 *cmd++ = NUL; /* replace it with a NUL */
6067 }
6068
6069#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
6070 if (p_altkeymap && curwin->w_p_rl)
6071 lrFswap(pat,0);
6072#endif
6073
6074 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
6075 {
6076 EMSG(_(e_invcmd));
6077 return;
6078 }
6079
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006080 if (global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006082 lnum = curwin->w_cursor.lnum;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00006083 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006084 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085 if ((type == 'g' && match) || (type == 'v' && !match))
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006086 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087 }
6088 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006089 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006090 /*
6091 * pass 1: set marks for each (not) matching line
6092 */
6093 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
6094 {
6095 /* a match on this line? */
6096 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006097 (colnr_T)0, NULL, NULL);
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006098 if ((type == 'g' && match) || (type == 'v' && !match))
6099 {
6100 ml_setmarked(lnum);
6101 ndone++;
6102 }
6103 line_breakcheck();
6104 }
6105
6106 /*
6107 * pass 2: execute the command for each line that has been marked
6108 */
6109 if (got_int)
6110 MSG(_(e_interr));
6111 else if (ndone == 0)
6112 {
6113 if (type == 'v')
6114 smsg((char_u *)_("Pattern found in every line: %s"), pat);
6115 else
6116 smsg((char_u *)_("Pattern not found: %s"), pat);
6117 }
6118 else
6119 {
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006120#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006121 start_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006122#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006123 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006124#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006125 end_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006126#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006127 }
6128
6129 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006130 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131
Bram Moolenaar473de612013-06-08 18:19:48 +02006132 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133}
6134
6135/*
6136 * Execute "cmd" on lines marked with ml_setmarked().
6137 */
6138 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006139global_exe(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140{
Bram Moolenaarbb993222011-05-10 16:00:47 +02006141 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
6142 buf_T *old_buf = curbuf; /* remember what buffer we started in */
6143 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144
6145 /*
6146 * Set current position only once for a global command.
6147 * If global_busy is set, setpcmark() will not do anything.
6148 * If there is an error, global_busy will be incremented.
6149 */
6150 setpcmark();
6151
6152 /* When the command writes a message, don't overwrite the command. */
6153 msg_didout = TRUE;
6154
Bram Moolenaard25bc232010-03-23 17:49:24 +01006155 sub_nsubs = 0;
6156 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 global_need_beginline = FALSE;
6158 global_busy = 1;
6159 old_lcount = curbuf->b_ml.ml_line_count;
6160 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
6161 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006162 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 ui_breakcheck();
6164 }
6165
6166 global_busy = 0;
6167 if (global_need_beginline)
6168 beginline(BL_WHITE | BL_FIX);
6169 else
6170 check_cursor(); /* cursor may be beyond the end of the line */
6171
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006172 /* the cursor may not have moved in the text but a change in a previous
6173 * line may move it on the screen */
6174 changed_line_abv_curs();
6175
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176 /* If it looks like no message was written, allow overwriting the
6177 * command with the report for number of changes. */
6178 if (msg_col == 0 && msg_scrolled == 0)
6179 msg_didout = FALSE;
6180
Bram Moolenaar45667512007-05-10 19:24:43 +00006181 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02006182 * number of extra or deleted lines.
6183 * Don't report extra or deleted lines in the edge case where the buffer
6184 * we are in after execution is different from the buffer we started in. */
6185 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
6187}
6188
6189#ifdef FEAT_VIMINFO
6190 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006191read_viminfo_sub_string(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01006193 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194 vim_free(old_sub);
6195 if (force || old_sub == NULL)
6196 old_sub = viminfo_readstring(virp, 1, TRUE);
6197 return viminfo_readline(virp);
6198}
6199
6200 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006201write_viminfo_sub_string(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202{
6203 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
6204 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02006205 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206 viminfo_writestring(fp, old_sub);
6207 }
6208}
6209#endif /* FEAT_VIMINFO */
6210
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006211#if defined(EXITFREE) || defined(PROTO)
6212 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006213free_old_sub(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006214{
6215 vim_free(old_sub);
6216}
6217#endif
6218
Bram Moolenaar4033c552017-09-16 20:54:51 +02006219#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220/*
6221 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006222 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006223 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006224 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006225prepare_tagpreview(
6226 int undo_sync) /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227{
6228 win_T *wp;
6229
6230# ifdef FEAT_GUI
6231 need_mouse_correct = TRUE;
6232# endif
6233
6234 /*
6235 * If there is already a preview window open, use that one.
6236 */
6237 if (!curwin->w_p_pvw)
6238 {
Bram Moolenaar29323592016-07-24 22:04:11 +02006239 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006240 if (wp->w_p_pvw)
6241 break;
6242 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00006243 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244 else
6245 {
6246 /*
6247 * There is no preview window open yet. Create one.
6248 */
6249 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
6250 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006251 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252 curwin->w_p_pvw = TRUE;
6253 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006254 RESET_BINDING(curwin); /* don't take over 'scrollbind'
6255 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006256# ifdef FEAT_DIFF
6257 curwin->w_p_diff = FALSE; /* no 'diff' */
6258# endif
6259# ifdef FEAT_FOLDING
6260 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
6261# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006262 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263 }
6264 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006265 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006266}
6267
6268#endif
6269
6270
6271/*
6272 * ":help": open a read-only window on a help file
6273 */
6274 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006275ex_help(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276{
6277 char_u *arg;
6278 char_u *tag;
6279 FILE *helpfd; /* file descriptor of help file */
6280 int n;
6281 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283 int num_matches;
6284 char_u **matches;
6285 char_u *p;
6286 int empty_fnum = 0;
6287 int alt_fnum = 0;
6288 buf_T *buf;
6289#ifdef FEAT_MULTI_LANG
6290 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006291 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02006293#ifdef FEAT_FOLDING
6294 int old_KeyTyped = KeyTyped;
6295#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296
6297 if (eap != NULL)
6298 {
6299 /*
6300 * A ":help" command ends at the first LF, or at a '|' that is
6301 * followed by some text. Set nextcmd to the following command.
6302 */
6303 for (arg = eap->arg; *arg; ++arg)
6304 {
6305 if (*arg == '\n' || *arg == '\r'
6306 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
6307 {
6308 *arg++ = NUL;
6309 eap->nextcmd = arg;
6310 break;
6311 }
6312 }
6313 arg = eap->arg;
6314
Bram Moolenaar3dbde622012-04-05 16:05:05 +02006315 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316 {
6317 EMSG(_("E478: Don't panic!"));
6318 return;
6319 }
6320
6321 if (eap->skip) /* not executing commands */
6322 return;
6323 }
6324 else
6325 arg = (char_u *)"";
6326
6327 /* remove trailing blanks */
6328 p = arg + STRLEN(arg) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006329 while (p > arg && VIM_ISWHITE(*p) && p[-1] != '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 *p-- = NUL;
6331
6332#ifdef FEAT_MULTI_LANG
6333 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006334 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335#endif
6336
6337 /* When no argument given go to the index. */
6338 if (*arg == NUL)
6339 arg = (char_u *)"help.txt";
6340
6341 /*
6342 * Check if there is a match for the argument.
6343 */
6344 n = find_help_tags(arg, &num_matches, &matches,
6345 eap != NULL && eap->forceit);
6346
6347 i = 0;
6348#ifdef FEAT_MULTI_LANG
6349 if (n != FAIL && lang != NULL)
6350 /* Find first item with the requested language. */
6351 for (i = 0; i < num_matches; ++i)
6352 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006353 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354 if (len > 3 && matches[i][len - 3] == '@'
6355 && STRICMP(matches[i] + len - 2, lang) == 0)
6356 break;
6357 }
6358#endif
6359 if (i >= num_matches || n == FAIL)
6360 {
6361#ifdef FEAT_MULTI_LANG
6362 if (lang != NULL)
6363 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
6364 else
6365#endif
6366 EMSG2(_("E149: Sorry, no help for %s"), arg);
6367 if (n != FAIL)
6368 FreeWild(num_matches, matches);
6369 return;
6370 }
6371
6372 /* The first match (in the requested language) is the best match. */
6373 tag = vim_strsave(matches[i]);
6374 FreeWild(num_matches, matches);
6375
6376#ifdef FEAT_GUI
6377 need_mouse_correct = TRUE;
6378#endif
6379
6380 /*
6381 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006382 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006383 */
Bram Moolenaar4033c552017-09-16 20:54:51 +02006384 if (!bt_help(curwin->w_buffer) || cmdmod.tab != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385 {
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006386 if (cmdmod.tab != 0)
6387 wp = NULL;
6388 else
Bram Moolenaar29323592016-07-24 22:04:11 +02006389 FOR_ALL_WINDOWS(wp)
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006390 if (bt_help(wp->w_buffer))
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006391 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
6393 win_enter(wp, TRUE);
6394 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395 {
6396 /*
6397 * There is no help window yet.
6398 * Try to open the file specified by the "helpfile" option.
6399 */
6400 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
6401 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00006402 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403 goto erret;
6404 }
6405 fclose(helpfd);
6406
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006408 * specified, the current window is vertically split and
6409 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410 n = WSP_HELP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006411 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006412 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413 n |= WSP_TOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006414 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006415 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417 if (curwin->w_height < p_hh)
6418 win_setheight((int)p_hh);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419
6420 /*
6421 * Open help file (do_ecmd() will set b_help flag, readfile() will
6422 * set b_p_ro flag).
6423 * Set the alternate file to the previously edited file.
6424 */
6425 alt_fnum = curbuf->b_fnum;
6426 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006427 ECMD_HIDE + ECMD_SET_HELP,
Bram Moolenaar4033c552017-09-16 20:54:51 +02006428 NULL); /* buffer is still open, don't store info */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006429 if (!cmdmod.keepalt)
6430 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431 empty_fnum = curbuf->b_fnum;
6432 }
6433 }
6434
6435 if (!p_im)
6436 restart_edit = 0; /* don't want insert mode in help file */
6437
Bram Moolenaar8f535582011-09-30 17:30:31 +02006438#ifdef FEAT_FOLDING
6439 /* Restore KeyTyped, setting 'filetype=help' may reset it.
6440 * It is needed for do_tag top open folds under the cursor. */
6441 KeyTyped = old_KeyTyped;
6442#endif
6443
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444 if (tag != NULL)
6445 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
6446
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006447 /* Delete the empty buffer if we're not using it. Careful: autocommands
6448 * may have jumped to another window, check that the buffer is not in a
6449 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
6451 {
6452 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006453 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454 wipe_buffer(buf, TRUE);
6455 }
6456
6457 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006458 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459 curwin->w_alt_fnum = alt_fnum;
6460
6461erret:
6462 vim_free(tag);
6463}
6464
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006465/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006466 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006467 */
6468 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006469ex_helpclose(exarg_T *eap UNUSED)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006470{
6471 win_T *win;
6472
6473 FOR_ALL_WINDOWS(win)
6474 {
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006475 if (bt_help(win->w_buffer))
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006476 {
6477 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006478 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006479 }
6480 }
6481}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006483#if defined(FEAT_MULTI_LANG) || defined(PROTO)
6484/*
6485 * In an argument search for a language specifiers in the form "@xx".
6486 * Changes the "@" to NUL if found, and returns a pointer to "xx".
6487 * Returns NULL if not found.
6488 */
6489 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006490check_help_lang(char_u *arg)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006491{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006492 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006493
6494 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
6495 && ASCII_ISALPHA(arg[len - 1]))
6496 {
6497 arg[len - 3] = NUL; /* remove the '@' */
6498 return arg + len - 2;
6499 }
6500 return NULL;
6501}
6502#endif
6503
Bram Moolenaar071d4272004-06-13 20:20:40 +00006504/*
6505 * Return a heuristic indicating how well the given string matches. The
6506 * smaller the number, the better the match. This is the order of priorities,
6507 * from best match to worst match:
6508 * - Match with least alpha-numeric characters is better.
6509 * - Match with least total characters is better.
6510 * - Match towards the start is better.
6511 * - Match starting with "+" is worse (feature instead of command)
6512 * Assumption is made that the matched_string passed has already been found to
6513 * match some string for which help is requested. webb.
6514 */
6515 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006516help_heuristic(
6517 char_u *matched_string,
6518 int offset, /* offset for match */
6519 int wrong_case) /* no matching case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520{
6521 int num_letters;
6522 char_u *p;
6523
6524 num_letters = 0;
6525 for (p = matched_string; *p; p++)
6526 if (ASCII_ISALNUM(*p))
6527 num_letters++;
6528
6529 /*
6530 * Multiply the number of letters by 100 to give it a much bigger
6531 * weighting than the number of characters.
6532 * If there only is a match while ignoring case, add 5000.
6533 * If the match starts in the middle of a word, add 10000 to put it
6534 * somewhere in the last half.
6535 * If the match is more than 2 chars from the start, multiply by 200 to
6536 * put it after matches at the start.
6537 */
6538 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
6539 && ASCII_ISALNUM(matched_string[offset - 1]))
6540 offset += 10000;
6541 else if (offset > 2)
6542 offset *= 200;
6543 if (wrong_case)
6544 offset += 5000;
6545 /* Features are less interesting than the subjects themselves, but "+"
6546 * alone is not a feature. */
6547 if (matched_string[0] == '+' && matched_string[1] != NUL)
6548 offset += 100;
6549 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
6550}
6551
6552/*
6553 * Compare functions for qsort() below, that checks the help heuristics number
6554 * that has been put after the tagname by find_tags().
6555 */
6556 static int
6557#ifdef __BORLANDC__
6558_RTLENTRYF
6559#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006560help_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006561{
6562 char *p1;
6563 char *p2;
6564
6565 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
6566 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
6567 return strcmp(p1, p2);
6568}
6569
6570/*
6571 * Find all help tags matching "arg", sort them and return in matches[], with
6572 * the number of matches in num_matches.
6573 * The matches will be sorted with a "best" match algorithm.
6574 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6575 */
6576 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006577find_help_tags(
6578 char_u *arg,
6579 int *num_matches,
6580 char_u ***matches,
6581 int keep_lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582{
6583 char_u *s, *d;
6584 int i;
6585 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006586 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006587 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006588 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
6589 "-?", "q?", "v_g?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006590 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006591 "[count]", "[quotex]",
6592 "[range]", ":[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006593 "[pattern]", "\\|", "\\%$",
6594 "s/\\~", "s/\\U", "s/\\L",
6595 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006597 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006598 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006599 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
6600 "-?", "q?", "v_g?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006601 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006602 "\\[count]", "\\[quotex]",
6603 "\\[range]", ":\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006604 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006605 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006606 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006607 static char *(expr_table[]) = {"!=?", "!~?", "<=?", "<?", "==?", "=~?",
6608 ">=?", ">?", "is?", "isnot?"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609 int flags;
6610
6611 d = IObuff; /* assume IObuff is long enough! */
6612
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006613 if (STRNICMP(arg, "expr-", 5) == 0)
6614 {
6615 // When the string starting with "expr-" and containing '?' and matches
6616 // the table, it is taken literally. Otherwise '?' is recognized as a
6617 // wildcard.
6618 for (i = (int)(sizeof(expr_table) / sizeof(char *)); --i >= 0; )
6619 if (STRCMP(arg + 5, expr_table[i]) == 0)
6620 {
6621 STRCPY(d, arg);
6622 break;
6623 }
6624 }
6625 else
6626 {
6627 // Recognize a few exceptions to the rule. Some strings that contain
6628 // '*' with "star". Otherwise '*' is recognized as a wildcard.
6629 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
6630 if (STRCMP(arg, mtable[i]) == 0)
6631 {
6632 STRCPY(d, rtable[i]);
6633 break;
6634 }
6635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006636
6637 if (i < 0) /* no match in table */
6638 {
6639 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6640 * Also replace "\%^" and "\%(", they match every tag too.
6641 * Also "\zs", "\z1", etc.
6642 * Also "\@<", "\@=", "\@<=", etc.
6643 * And also "\_$" and "\_^". */
6644 if (arg[0] == '\\'
6645 && ((arg[1] != NUL && arg[2] == NUL)
6646 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6647 && arg[2] != NUL)))
6648 {
6649 STRCPY(d, "/\\\\");
6650 STRCPY(d + 3, arg + 1);
6651 /* Check for "/\\_$", should be "/\\_\$" */
6652 if (d[3] == '_' && d[4] == '$')
6653 STRCPY(d + 4, "\\$");
6654 }
6655 else
6656 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006657 /* Replace:
6658 * "[:...:]" with "\[:...:]"
6659 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006660 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006661 */
6662 if ((arg[0] == '[' && (arg[1] == ':'
6663 || (arg[1] == '+' && arg[2] == '+')))
6664 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006665 *d++ = '\\';
6666
Bram Moolenaar00f9e0d2016-03-15 13:44:12 +01006667 /*
6668 * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'.
6669 */
6670 if (*arg == '(' && arg[1] == '\'')
6671 arg++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 for (s = arg; *s; ++s)
6673 {
6674 /*
6675 * Replace "|" with "bar" and '"' with "quote" to match the name of
6676 * the tags for these commands.
6677 * Replace "*" with ".*" and "?" with "." to match command line
6678 * completion.
6679 * Insert a backslash before '~', '$' and '.' to avoid their
6680 * special meaning.
6681 */
6682 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6683 break;
6684 switch (*s)
6685 {
6686 case '|': STRCPY(d, "bar");
6687 d += 3;
6688 continue;
6689 case '"': STRCPY(d, "quote");
6690 d += 5;
6691 continue;
6692 case '*': *d++ = '.';
6693 break;
6694 case '?': *d++ = '.';
6695 continue;
6696 case '$':
6697 case '.':
6698 case '~': *d++ = '\\';
6699 break;
6700 }
6701
6702 /*
6703 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6704 * ":help i_^_CTRL-D" work.
6705 * Insert '-' before and after "CTRL-X" when applicable.
6706 */
6707 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6708 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6709 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006710 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6711 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712 STRCPY(d, "CTRL-");
6713 d += 5;
6714 if (*s < ' ')
6715 {
6716#ifdef EBCDIC
6717 *d++ = CtrlChar(*s);
6718#else
6719 *d++ = *s + '@';
6720#endif
6721 if (d[-1] == '\\')
6722 *d++ = '\\'; /* double a backslash */
6723 }
6724 else
6725 *d++ = *++s;
6726 if (s[1] != NUL && s[1] != '_')
6727 *d++ = '_'; /* append a '_' */
6728 continue;
6729 }
6730 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6731 *d++ = '\\';
6732
6733 /*
6734 * Insert a backslash before a backslash after a slash, for search
6735 * pattern tags: "/\|" --> "/\\|".
6736 */
6737 else if (s[0] == '\\' && s[1] != '\\'
6738 && *arg == '/' && s == arg + 1)
6739 *d++ = '\\';
6740
6741 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6742 * "CTRL-\_CTRL-N" */
6743 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6744 {
6745 STRCPY(d, "CTRL-\\\\");
6746 d += 7;
6747 s += 6;
6748 }
6749
6750 *d++ = *s;
6751
6752 /*
Bram Moolenaar81edd172016-04-14 13:51:37 +02006753 * If tag contains "({" or "([", tag terminates at the "(".
6754 * This is for help on functions, e.g.: abs({expr}).
6755 */
6756 if (*s == '(' && (s[1] == '{' || s[1] =='['))
6757 break;
6758
6759 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760 * If tag starts with ', toss everything after a second '. Fixes
6761 * CTRL-] on 'option'. (would include the trailing '.').
6762 */
6763 if (*s == '\'' && s > arg && *arg == '\'')
6764 break;
Bram Moolenaar28b942a2016-06-04 22:31:27 +02006765 /* Also '{' and '}'. */
6766 if (*s == '}' && s > arg && *arg == '{')
6767 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006768 }
6769 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006770
6771 if (*IObuff == '`')
6772 {
6773 if (d > IObuff + 2 && d[-1] == '`')
6774 {
6775 /* remove the backticks from `command` */
6776 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6777 d[-2] = NUL;
6778 }
6779 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6780 {
6781 /* remove the backticks and comma from `command`, */
6782 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6783 d[-3] = NUL;
6784 }
6785 else if (d > IObuff + 4 && d[-3] == '`'
6786 && d[-2] == '\\' && d[-1] == '.')
6787 {
6788 /* remove the backticks and dot from `command`\. */
6789 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6790 d[-4] = NUL;
6791 }
6792 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006793 }
6794 }
6795
6796 *matches = (char_u **)"";
6797 *num_matches = 0;
6798 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6799 if (keep_lang)
6800 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006801 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006803 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006804 /* Sort the matches found on the heuristic number that is after the
6805 * tag name. */
6806 qsort((void *)*matches, (size_t)*num_matches,
6807 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006808 /* Delete more than TAG_MANY to reduce the size of the listing. */
6809 while (*num_matches > TAG_MANY)
6810 vim_free((*matches)[--*num_matches]);
6811 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006812 return OK;
6813}
6814
6815/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006816 * Called when starting to edit a buffer for a help file.
6817 */
6818 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006819prepare_help_buffer(void)
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006820{
6821 char_u *p;
6822
6823 curbuf->b_help = TRUE;
6824#ifdef FEAT_QUICKFIX
6825 set_string_option_direct((char_u *)"buftype", -1,
6826 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6827#endif
6828
6829 /*
6830 * Always set these options after jumping to a help tag, because the
6831 * user may have an autocommand that gets in the way.
6832 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6833 * latin1 word characters (for translated help files).
6834 * Only set it when needed, buf_init_chartab() is some work.
6835 */
6836 p =
6837#ifdef EBCDIC
6838 (char_u *)"65-255,^*,^|,^\"";
6839#else
6840 (char_u *)"!-~,^*,^|,^\",192-255";
6841#endif
6842 if (STRCMP(curbuf->b_p_isk, p) != 0)
6843 {
6844 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6845 check_buf_options(curbuf);
6846 (void)buf_init_chartab(curbuf, FALSE);
6847 }
6848
Bram Moolenaar0b105412014-11-30 13:34:23 +01006849#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006850 /* Don't use the global foldmethod.*/
6851 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6852 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006853#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006854
6855 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6856 curwin->w_p_list = FALSE; /* no list mode */
6857
6858 curbuf->b_p_ma = FALSE; /* not modifiable */
6859 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6860 curwin->w_p_nu = 0; /* no line numbers */
6861 curwin->w_p_rnu = 0; /* no relative line numbers */
6862 RESET_BINDING(curwin); /* no scroll or cursor binding */
6863#ifdef FEAT_ARABIC
6864 curwin->w_p_arab = FALSE; /* no arabic mode */
6865#endif
6866#ifdef FEAT_RIGHTLEFT
6867 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6868#endif
6869#ifdef FEAT_FOLDING
6870 curwin->w_p_fen = FALSE; /* No folding in the help window */
6871#endif
6872#ifdef FEAT_DIFF
6873 curwin->w_p_diff = FALSE; /* No 'diff' */
6874#endif
6875#ifdef FEAT_SPELL
6876 curwin->w_p_spell = FALSE; /* No spell checking */
6877#endif
6878
6879 set_buflisted(FALSE);
6880}
6881
6882/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883 * After reading a help file: May cleanup a help buffer when syntax
6884 * highlighting is not used.
6885 */
6886 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006887fix_help_buffer(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888{
6889 linenr_T lnum;
6890 char_u *line;
6891 int in_example = FALSE;
6892 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006893 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006894 char_u *p;
6895 char_u *rt;
6896 int mustfree;
6897
Bram Moolenaar90492982017-06-22 14:16:31 +02006898 /* Set filetype to "help" if still needed. */
6899 if (STRCMP(curbuf->b_p_ft, "help") != 0)
Bram Moolenaar18141832017-06-25 21:17:25 +02006900 {
6901 ++curbuf_lock;
Bram Moolenaar90492982017-06-22 14:16:31 +02006902 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
Bram Moolenaar18141832017-06-25 21:17:25 +02006903 --curbuf_lock;
6904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905
6906#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006907 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908#endif
6909 {
6910 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6911 {
6912 line = ml_get_buf(curbuf, lnum, FALSE);
6913 len = (int)STRLEN(line);
Bram Moolenaar1c465442017-03-12 20:10:05 +01006914 if (in_example && len > 0 && !VIM_ISWHITE(line[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006915 {
6916 /* End of example: non-white or '<' in first column. */
6917 if (line[0] == '<')
6918 {
6919 /* blank-out a '<' in the first column */
6920 line = ml_get_buf(curbuf, lnum, TRUE);
6921 line[0] = ' ';
6922 }
6923 in_example = FALSE;
6924 }
6925 if (!in_example && len > 0)
6926 {
6927 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6928 {
6929 /* blank-out a '>' in the last column (start of example) */
6930 line = ml_get_buf(curbuf, lnum, TRUE);
6931 line[len - 1] = ' ';
6932 in_example = TRUE;
6933 }
6934 else if (line[len - 1] == '~')
6935 {
6936 /* blank-out a '~' at the end of line (header marker) */
6937 line = ml_get_buf(curbuf, lnum, TRUE);
6938 line[len - 1] = ' ';
6939 }
6940 }
6941 }
6942 }
6943
6944 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006945 * In the "help.txt" and "help.abx" file, add the locally added help
6946 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006947 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006948 fname = gettail(curbuf->b_fname);
6949 if (fnamecmp(fname, "help.txt") == 0
6950#ifdef FEAT_MULTI_LANG
6951 || (fnamencmp(fname, "help.", 5) == 0
6952 && ASCII_ISALPHA(fname[5])
6953 && ASCII_ISALPHA(fname[6])
6954 && TOLOWER_ASC(fname[7]) == 'x'
6955 && fname[8] == NUL)
6956#endif
6957 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958 {
6959 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6960 {
6961 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006962 if (strstr((char *)line, "*local-additions*") == NULL)
6963 continue;
6964
6965 /* Go through all directories in 'runtimepath', skipping
6966 * $VIMRUNTIME. */
6967 p = p_rtp;
6968 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006970 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6971 mustfree = FALSE;
6972 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
Bram Moolenaare4db7ae2018-02-13 13:12:11 +01006973 if (rt != NULL && fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006975 int fcount;
6976 char_u **fnames;
6977 FILE *fd;
6978 char_u *s;
6979 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006981 vimconv_T vc;
6982 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006983#endif
6984
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006985 /* Find all "doc/ *.txt" files in this directory. */
6986 add_pathsep(NameBuff);
6987#ifdef FEAT_MULTI_LANG
6988 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006990 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006992 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6993 &fnames, EW_FILE|EW_SILENT) == OK
6994 && fcount > 0)
6995 {
6996#ifdef FEAT_MULTI_LANG
Bram Moolenaar35c5e812017-12-09 21:10:13 +01006997 int i1, i2;
6998 char_u *f1, *f2;
6999 char_u *t1, *t2;
7000 char_u *e1, *e2;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007001
7002 /* If foo.abx is found use it instead of foo.txt in
7003 * the same directory. */
7004 for (i1 = 0; i1 < fcount; ++i1)
7005 {
7006 for (i2 = 0; i2 < fcount; ++i2)
7007 {
7008 if (i1 == i2)
7009 continue;
7010 if (fnames[i1] == NULL || fnames[i2] == NULL)
7011 continue;
7012 f1 = fnames[i1];
7013 f2 = fnames[i2];
7014 t1 = gettail(f1);
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007015 t2 = gettail(f2);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007016 e1 = vim_strrchr(t1, '.');
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007017 e2 = vim_strrchr(t2, '.');
Bram Moolenaar7756e742016-10-21 20:35:37 +02007018 if (e1 == NULL || e2 == NULL)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007019 continue;
7020 if (fnamecmp(e1, ".txt") != 0
7021 && fnamecmp(e1, fname + 4) != 0)
7022 {
7023 /* Not .txt and not .abx, remove it. */
Bram Moolenaard23a8232018-02-10 18:45:26 +01007024 VIM_CLEAR(fnames[i1]);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007025 continue;
7026 }
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007027 if (e1 - f1 != e2 - f2
7028 || fnamencmp(f1, f2, e1 - f1) != 0)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007029 continue;
7030 if (fnamecmp(e1, ".txt") == 0
7031 && fnamecmp(e2, fname + 4) == 0)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007032 /* use .abx instead of .txt */
Bram Moolenaard23a8232018-02-10 18:45:26 +01007033 VIM_CLEAR(fnames[i1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007036#endif
7037 for (fi = 0; fi < fcount; ++fi)
7038 {
7039 if (fnames[fi] == NULL)
7040 continue;
7041 fd = mch_fopen((char *)fnames[fi], "r");
7042 if (fd != NULL)
7043 {
7044 vim_fgets(IObuff, IOSIZE, fd);
7045 if (IObuff[0] == '*'
7046 && (s = vim_strchr(IObuff + 1, '*'))
7047 != NULL)
7048 {
7049#ifdef FEAT_MBYTE
7050 int this_utf = MAYBE;
7051#endif
7052 /* Change tag definition to a
7053 * reference and remove <CR>/<NL>. */
7054 IObuff[0] = '|';
7055 *s = '|';
7056 while (*s != NUL)
7057 {
7058 if (*s == '\r' || *s == '\n')
7059 *s = NUL;
7060#ifdef FEAT_MBYTE
7061 /* The text is utf-8 when a byte
7062 * above 127 is found and no
7063 * illegal byte sequence is found.
7064 */
7065 if (*s >= 0x80 && this_utf != FALSE)
7066 {
7067 int l;
7068
7069 this_utf = TRUE;
7070 l = utf_ptr2len(s);
7071 if (l == 1)
7072 this_utf = FALSE;
7073 s += l - 1;
7074 }
7075#endif
7076 ++s;
7077 }
7078#ifdef FEAT_MBYTE
7079 /* The help file is latin1 or utf-8;
7080 * conversion to the current
7081 * 'encoding' may be required. */
7082 vc.vc_type = CONV_NONE;
7083 convert_setup(&vc, (char_u *)(
7084 this_utf == TRUE ? "utf-8"
7085 : "latin1"), p_enc);
7086 if (vc.vc_type == CONV_NONE)
7087 /* No conversion needed. */
7088 cp = IObuff;
7089 else
7090 {
7091 /* Do the conversion. If it fails
7092 * use the unconverted text. */
7093 cp = string_convert(&vc, IObuff,
7094 NULL);
7095 if (cp == NULL)
7096 cp = IObuff;
7097 }
7098 convert_setup(&vc, NULL, NULL);
7099
7100 ml_append(lnum, cp, (colnr_T)0, FALSE);
7101 if (cp != IObuff)
7102 vim_free(cp);
7103#else
7104 ml_append(lnum, IObuff, (colnr_T)0,
7105 FALSE);
7106#endif
7107 ++lnum;
7108 }
7109 fclose(fd);
7110 }
7111 }
7112 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007113 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007114 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007115 if (mustfree)
7116 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007118 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119 }
7120 }
7121}
7122
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007123/*
7124 * ":exusage"
7125 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007126 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007127ex_exusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007128{
7129 do_cmdline_cmd((char_u *)"help ex-cmd-index");
7130}
7131
7132/*
7133 * ":viusage"
7134 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007135 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007136ex_viusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007137{
7138 do_cmdline_cmd((char_u *)"help normal-index");
7139}
7140
Bram Moolenaar071d4272004-06-13 20:20:40 +00007141/*
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007142 * Generate tags in one help directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007144 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007145helptags_one(
7146 char_u *dir, /* doc directory */
7147 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */
7148 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */
7149 int add_help_tags) /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150{
7151 FILE *fd_tags;
7152 FILE *fd;
7153 garray_T ga;
7154 int filecount;
7155 char_u **files;
7156 char_u *p1, *p2;
7157 int fi;
7158 char_u *s;
7159 int i;
7160 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007161 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162# ifdef FEAT_MBYTE
7163 int utf8 = MAYBE;
7164 int this_utf8;
7165 int firstline;
7166 int mix = FALSE; /* detected mixed encodings */
7167# endif
7168
7169 /*
7170 * Find all *.txt files.
7171 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01007172 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007173 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007174 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 STRCAT(NameBuff, ext);
7176 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7177 EW_FILE|EW_SILENT) == FAIL
7178 || filecount == 0)
7179 {
7180 if (!got_int)
Bram Moolenaar5b302912016-08-24 22:11:55 +02007181 EMSG2(_("E151: No match: %s"), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182 return;
7183 }
7184
7185 /*
7186 * Open the tags file for writing.
7187 * Do this before scanning through all the files.
7188 */
7189 STRCPY(NameBuff, dir);
7190 add_pathsep(NameBuff);
7191 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007192 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007193 if (fd_tags == NULL)
7194 {
7195 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
7196 FreeWild(filecount, files);
7197 return;
7198 }
7199
7200 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007201 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
7202 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203 */
7204 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007205 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
7206 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 {
7208 if (ga_grow(&ga, 1) == FAIL)
7209 got_int = TRUE;
7210 else
7211 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007212 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007213 if (s == NULL)
7214 got_int = TRUE;
7215 else
7216 {
7217 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
7218 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7219 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007220 }
7221 }
7222 }
7223
7224 /*
7225 * Go over all the files and extract the tags.
7226 */
7227 for (fi = 0; fi < filecount && !got_int; ++fi)
7228 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007229 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 if (fd == NULL)
7231 {
7232 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
7233 continue;
7234 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007235 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007236
7237# ifdef FEAT_MBYTE
7238 firstline = TRUE;
7239# endif
7240 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
7241 {
7242# ifdef FEAT_MBYTE
7243 if (firstline)
7244 {
7245 /* Detect utf-8 file by a non-ASCII char in the first line. */
7246 this_utf8 = MAYBE;
7247 for (s = IObuff; *s != NUL; ++s)
7248 if (*s >= 0x80)
7249 {
7250 int l;
7251
7252 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007253 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007254 if (l == 1)
7255 {
7256 /* Illegal UTF-8 byte sequence. */
7257 this_utf8 = FALSE;
7258 break;
7259 }
7260 s += l - 1;
7261 }
7262 if (this_utf8 == MAYBE) /* only ASCII characters found */
7263 this_utf8 = FALSE;
7264 if (utf8 == MAYBE) /* first file */
7265 utf8 = this_utf8;
7266 else if (utf8 != this_utf8)
7267 {
7268 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
7269 mix = !got_int;
7270 got_int = TRUE;
7271 }
7272 firstline = FALSE;
7273 }
7274# endif
7275 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
7276 while (p1 != NULL)
7277 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02007278 /* Use vim_strbyte() instead of vim_strchr() so that when
7279 * 'encoding' is dbcs it still works, don't find '*' in the
7280 * second byte. */
7281 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007282 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
7283 {
7284 for (s = p1 + 1; s < p2; ++s)
7285 if (*s == ' ' || *s == '\t' || *s == '|')
7286 break;
7287
7288 /*
7289 * Only accept a *tag* when it consists of valid
7290 * characters, there is white space before it and is
7291 * followed by a white character or end-of-line.
7292 */
7293 if (s == p2
7294 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
7295 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
7296 || s[1] == '\0'))
7297 {
7298 *p2 = '\0';
7299 ++p1;
7300 if (ga_grow(&ga, 1) == FAIL)
7301 {
7302 got_int = TRUE;
7303 break;
7304 }
7305 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
7306 if (s == NULL)
7307 {
7308 got_int = TRUE;
7309 break;
7310 }
7311 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7312 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007313 sprintf((char *)s, "%s\t%s", p1, fname);
7314
7315 /* find next '*' */
7316 p2 = vim_strchr(p2 + 1, '*');
7317 }
7318 }
7319 p1 = p2;
7320 }
7321 line_breakcheck();
7322 }
7323
7324 fclose(fd);
7325 }
7326
7327 FreeWild(filecount, files);
7328
7329 if (!got_int)
7330 {
7331 /*
7332 * Sort the tags.
7333 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02007334 if (ga.ga_data != NULL)
7335 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336
7337 /*
7338 * Check for duplicates.
7339 */
7340 for (i = 1; i < ga.ga_len; ++i)
7341 {
7342 p1 = ((char_u **)ga.ga_data)[i - 1];
7343 p2 = ((char_u **)ga.ga_data)[i];
7344 while (*p1 == *p2)
7345 {
7346 if (*p2 == '\t')
7347 {
7348 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007349 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350 _("E154: Duplicate tag \"%s\" in file %s/%s"),
7351 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
7352 EMSG(NameBuff);
7353 *p2 = '\t';
7354 break;
7355 }
7356 ++p1;
7357 ++p2;
7358 }
7359 }
7360
7361# ifdef FEAT_MBYTE
7362 if (utf8 == TRUE)
7363 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
7364# endif
7365
7366 /*
7367 * Write the tags into the file.
7368 */
7369 for (i = 0; i < ga.ga_len; ++i)
7370 {
7371 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00007372 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007373 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00007374 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007375 else
7376 {
7377 fprintf(fd_tags, "%s\t/*", s);
7378 for (p1 = s; *p1 != '\t'; ++p1)
7379 {
7380 /* insert backslash before '\\' and '/' */
7381 if (*p1 == '\\' || *p1 == '/')
7382 putc('\\', fd_tags);
7383 putc(*p1, fd_tags);
7384 }
7385 fprintf(fd_tags, "*\n");
7386 }
7387 }
7388 }
7389#ifdef FEAT_MBYTE
7390 if (mix)
7391 got_int = FALSE; /* continue with other languages */
7392#endif
7393
7394 for (i = 0; i < ga.ga_len; ++i)
7395 vim_free(((char_u **)ga.ga_data)[i]);
7396 ga_clear(&ga);
7397 fclose(fd_tags); /* there is no check for an error... */
7398}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007399
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007400/*
7401 * Generate tags in one help directory, taking care of translations.
7402 */
7403 static void
7404do_helptags(char_u *dirname, int add_help_tags)
7405{
7406#ifdef FEAT_MULTI_LANG
7407 int len;
7408 int i, j;
7409 garray_T ga;
7410 char_u lang[2];
7411 char_u ext[5];
7412 char_u fname[8];
7413 int filecount;
7414 char_u **files;
7415
7416 /* Get a list of all files in the help directory and in subdirectories. */
7417 STRCPY(NameBuff, dirname);
7418 add_pathsep(NameBuff);
7419 STRCAT(NameBuff, "**");
7420 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7421 EW_FILE|EW_SILENT) == FAIL
7422 || filecount == 0)
7423 {
Bram Moolenaar5b302912016-08-24 22:11:55 +02007424 EMSG2(_("E151: No match: %s"), NameBuff);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007425 return;
7426 }
7427
7428 /* Go over all files in the directory to find out what languages are
7429 * present. */
7430 ga_init2(&ga, 1, 10);
7431 for (i = 0; i < filecount; ++i)
7432 {
7433 len = (int)STRLEN(files[i]);
7434 if (len > 4)
7435 {
7436 if (STRICMP(files[i] + len - 4, ".txt") == 0)
7437 {
7438 /* ".txt" -> language "en" */
7439 lang[0] = 'e';
7440 lang[1] = 'n';
7441 }
7442 else if (files[i][len - 4] == '.'
7443 && ASCII_ISALPHA(files[i][len - 3])
7444 && ASCII_ISALPHA(files[i][len - 2])
7445 && TOLOWER_ASC(files[i][len - 1]) == 'x')
7446 {
7447 /* ".abx" -> language "ab" */
7448 lang[0] = TOLOWER_ASC(files[i][len - 3]);
7449 lang[1] = TOLOWER_ASC(files[i][len - 2]);
7450 }
7451 else
7452 continue;
7453
7454 /* Did we find this language already? */
7455 for (j = 0; j < ga.ga_len; j += 2)
7456 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
7457 break;
7458 if (j == ga.ga_len)
7459 {
7460 /* New language, add it. */
7461 if (ga_grow(&ga, 2) == FAIL)
7462 break;
7463 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
7464 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
7465 }
7466 }
7467 }
7468
7469 /*
7470 * Loop over the found languages to generate a tags file for each one.
7471 */
7472 for (j = 0; j < ga.ga_len; j += 2)
7473 {
7474 STRCPY(fname, "tags-xx");
7475 fname[5] = ((char_u *)ga.ga_data)[j];
7476 fname[6] = ((char_u *)ga.ga_data)[j + 1];
7477 if (fname[5] == 'e' && fname[6] == 'n')
7478 {
7479 /* English is an exception: use ".txt" and "tags". */
7480 fname[4] = NUL;
7481 STRCPY(ext, ".txt");
7482 }
7483 else
7484 {
7485 /* Language "ab" uses ".abx" and "tags-ab". */
7486 STRCPY(ext, ".xxx");
7487 ext[1] = fname[5];
7488 ext[2] = fname[6];
7489 }
7490 helptags_one(dirname, ext, fname, add_help_tags);
7491 }
7492
7493 ga_clear(&ga);
7494 FreeWild(filecount, files);
7495
7496#else
7497 /* No language support, just use "*.txt" and "tags". */
7498 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
7499#endif
7500}
7501
7502 static void
7503helptags_cb(char_u *fname, void *cookie)
7504{
7505 do_helptags(fname, *(int *)cookie);
7506}
7507
7508/*
7509 * ":helptags"
7510 */
7511 void
7512ex_helptags(exarg_T *eap)
7513{
7514 expand_T xpc;
7515 char_u *dirname;
7516 int add_help_tags = FALSE;
7517
7518 /* Check for ":helptags ++t {dir}". */
Bram Moolenaar1c465442017-03-12 20:10:05 +01007519 if (STRNCMP(eap->arg, "++t", 3) == 0 && VIM_ISWHITE(eap->arg[3]))
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007520 {
7521 add_help_tags = TRUE;
7522 eap->arg = skipwhite(eap->arg + 3);
7523 }
7524
7525 if (STRCMP(eap->arg, "ALL") == 0)
7526 {
7527 do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR,
7528 helptags_cb, &add_help_tags);
7529 }
7530 else
7531 {
7532 ExpandInit(&xpc);
7533 xpc.xp_context = EXPAND_DIRECTORIES;
7534 dirname = ExpandOne(&xpc, eap->arg, NULL,
7535 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
7536 if (dirname == NULL || !mch_isdir(dirname))
7537 EMSG2(_("E150: Not a directory: %s"), eap->arg);
7538 else
7539 do_helptags(dirname, add_help_tags);
7540 vim_free(dirname);
7541 }
7542}
7543
Bram Moolenaar071d4272004-06-13 20:20:40 +00007544#if defined(FEAT_SIGNS) || defined(PROTO)
7545
7546/*
7547 * Struct to hold the sign properties.
7548 */
7549typedef struct sign sign_T;
7550
7551struct sign
7552{
7553 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02007554 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007555 char_u *sn_name; /* name of sign */
7556 char_u *sn_icon; /* name of pixmap */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007557# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558 void *sn_image; /* icon image */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007559# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560 char_u *sn_text; /* text used instead of pixmap */
7561 int sn_line_hl; /* highlight ID for line */
7562 int sn_text_hl; /* highlight ID for text */
7563};
7564
Bram Moolenaar071d4272004-06-13 20:20:40 +00007565static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007566static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007567
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01007568static int sign_cmd_idx(char_u *begin_cmd, char_u *end_cmd);
7569static void sign_list_defined(sign_T *sp);
7570static void sign_undefine(sign_T *sp, sign_T *sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007571
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007572static char *cmds[] = {
7573 "define",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007574# define SIGNCMD_DEFINE 0
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007575 "undefine",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007576# define SIGNCMD_UNDEFINE 1
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007577 "list",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007578# define SIGNCMD_LIST 2
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007579 "place",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007580# define SIGNCMD_PLACE 3
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007581 "unplace",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007582# define SIGNCMD_UNPLACE 4
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007583 "jump",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007584# define SIGNCMD_JUMP 5
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007585 NULL
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007586# define SIGNCMD_LAST 6
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007587};
7588
7589/*
7590 * Find index of a ":sign" subcmd from its name.
7591 * "*end_cmd" must be writable.
7592 */
7593 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007594sign_cmd_idx(
7595 char_u *begin_cmd, /* begin of sign subcmd */
7596 char_u *end_cmd) /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007597{
7598 int idx;
7599 char save = *end_cmd;
7600
7601 *end_cmd = NUL;
7602 for (idx = 0; ; ++idx)
7603 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
7604 break;
7605 *end_cmd = save;
7606 return idx;
7607}
7608
Bram Moolenaar071d4272004-06-13 20:20:40 +00007609/*
7610 * ":sign" command
7611 */
7612 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007613ex_sign(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007614{
7615 char_u *arg = eap->arg;
7616 char_u *p;
7617 int idx;
7618 sign_T *sp;
7619 sign_T *sp_prev;
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01007620 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007621
7622 /* Parse the subcommand. */
7623 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007624 idx = sign_cmd_idx(arg, p);
7625 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007626 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007627 EMSG2(_("E160: Unknown sign command: %s"), arg);
7628 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007629 }
7630 arg = skipwhite(p);
7631
7632 if (idx <= SIGNCMD_LIST)
7633 {
7634 /*
7635 * Define, undefine or list signs.
7636 */
7637 if (idx == SIGNCMD_LIST && *arg == NUL)
7638 {
7639 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007640 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641 sign_list_defined(sp);
7642 }
7643 else if (*arg == NUL)
7644 EMSG(_("E156: Missing sign name"));
7645 else
7646 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007647 /* Isolate the sign name. If it's a number skip leading zeroes,
7648 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007649 p = skiptowhite(arg);
7650 if (*p != NUL)
7651 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007652 while (arg[0] == '0' && arg[1] != NUL)
7653 ++arg;
7654
Bram Moolenaar071d4272004-06-13 20:20:40 +00007655 sp_prev = NULL;
7656 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7657 {
7658 if (STRCMP(sp->sn_name, arg) == 0)
7659 break;
7660 sp_prev = sp;
7661 }
7662 if (idx == SIGNCMD_DEFINE)
7663 {
7664 /* ":sign define {name} ...": define a sign */
7665 if (sp == NULL)
7666 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007667 sign_T *lp;
7668 int start = next_sign_typenr;
7669
Bram Moolenaar071d4272004-06-13 20:20:40 +00007670 /* Allocate a new sign. */
7671 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7672 if (sp == NULL)
7673 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007674
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007675 /* Check that next_sign_typenr is not already being used.
7676 * This only happens after wrapping around. Hopefully
7677 * another one got deleted and we can use its number. */
7678 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007679 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007680 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007681 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007682 ++next_sign_typenr;
7683 if (next_sign_typenr == MAX_TYPENR)
7684 next_sign_typenr = 1;
7685 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007686 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007687 vim_free(sp);
7688 EMSG(_("E612: Too many signs defined"));
7689 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007690 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007691 lp = first_sign; /* start all over */
7692 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007693 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007694 lp = lp->sn_next;
7695 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007696
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007697 sp->sn_typenr = next_sign_typenr;
7698 if (++next_sign_typenr == MAX_TYPENR)
7699 next_sign_typenr = 1; /* wrap around */
7700
7701 sp->sn_name = vim_strsave(arg);
7702 if (sp->sn_name == NULL) /* out of memory */
7703 {
7704 vim_free(sp);
7705 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007706 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007707
7708 /* add the new sign to the list of signs */
7709 if (sp_prev == NULL)
7710 first_sign = sp;
7711 else
7712 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007713 }
7714
7715 /* set values for a defined sign. */
7716 for (;;)
7717 {
7718 arg = skipwhite(p);
7719 if (*arg == NUL)
7720 break;
7721 p = skiptowhite_esc(arg);
7722 if (STRNCMP(arg, "icon=", 5) == 0)
7723 {
7724 arg += 5;
7725 vim_free(sp->sn_icon);
7726 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7727 backslash_halve(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007728# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007729 if (gui.in_use)
7730 {
7731 out_flush();
7732 if (sp->sn_image != NULL)
7733 gui_mch_destroy_sign(sp->sn_image);
7734 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7735 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007736# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007737 }
7738 else if (STRNCMP(arg, "text=", 5) == 0)
7739 {
7740 char_u *s;
7741 int cells;
7742 int len;
7743
7744 arg += 5;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007745# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007746 /* Count cells and check for non-printable chars */
7747 if (has_mbyte)
7748 {
7749 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007750 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007751 {
7752 if (!vim_isprintc((*mb_ptr2char)(s)))
7753 break;
7754 cells += (*mb_ptr2cells)(s);
7755 }
7756 }
7757 else
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007758# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007759 {
7760 for (s = arg; s < p; ++s)
7761 if (!vim_isprintc(*s))
7762 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007763 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007764 }
7765 /* Currently must be one or two display cells */
7766 if (s != p || cells < 1 || cells > 2)
7767 {
7768 *p = NUL;
7769 EMSG2(_("E239: Invalid sign text: %s"), arg);
7770 return;
7771 }
7772
7773 vim_free(sp->sn_text);
7774 /* Allocate one byte more if we need to pad up
7775 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007776 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007777 sp->sn_text = vim_strnsave(arg, len);
7778
7779 if (sp->sn_text != NULL && cells == 1)
7780 STRCPY(sp->sn_text + len - 1, " ");
7781 }
7782 else if (STRNCMP(arg, "linehl=", 7) == 0)
7783 {
7784 arg += 7;
7785 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7786 }
7787 else if (STRNCMP(arg, "texthl=", 7) == 0)
7788 {
7789 arg += 7;
7790 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7791 }
7792 else
7793 {
7794 EMSG2(_(e_invarg2), arg);
7795 return;
7796 }
7797 }
7798 }
7799 else if (sp == NULL)
7800 EMSG2(_("E155: Unknown sign: %s"), arg);
7801 else if (idx == SIGNCMD_LIST)
7802 /* ":sign list {name}" */
7803 sign_list_defined(sp);
7804 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007805 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007806 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007807 }
7808 }
7809 else
7810 {
7811 int id = -1;
7812 linenr_T lnum = -1;
7813 char_u *sign_name = NULL;
7814 char_u *arg1;
7815
7816 if (*arg == NUL)
7817 {
7818 if (idx == SIGNCMD_PLACE)
7819 {
7820 /* ":sign place": list placed signs in all buffers */
7821 sign_list_placed(NULL);
7822 }
7823 else if (idx == SIGNCMD_UNPLACE)
7824 {
7825 /* ":sign unplace": remove placed sign at cursor */
7826 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7827 if (id > 0)
7828 {
7829 buf_delsign(curwin->w_buffer, id);
7830 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7831 }
7832 else
7833 EMSG(_("E159: Missing sign number"));
7834 }
7835 else
7836 EMSG(_(e_argreq));
7837 return;
7838 }
7839
7840 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7841 {
7842 /* ":sign unplace *": remove all placed signs */
7843 buf_delete_all_signs();
7844 return;
7845 }
7846
7847 /* first arg could be placed sign id */
7848 arg1 = arg;
7849 if (VIM_ISDIGIT(*arg))
7850 {
7851 id = getdigits(&arg);
Bram Moolenaar1c465442017-03-12 20:10:05 +01007852 if (!VIM_ISWHITE(*arg) && *arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007853 {
7854 id = -1;
7855 arg = arg1;
7856 }
7857 else
7858 {
7859 arg = skipwhite(arg);
7860 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7861 {
7862 /* ":sign unplace {id}": remove placed sign by number */
Bram Moolenaar29323592016-07-24 22:04:11 +02007863 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007864 if ((lnum = buf_delsign(buf, id)) != 0)
7865 update_debug_sign(buf, lnum);
7866 return;
7867 }
7868 }
7869 }
7870
7871 /*
7872 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7873 * Leave "arg" pointing to {fname}.
7874 */
7875 for (;;)
7876 {
7877 if (STRNCMP(arg, "line=", 5) == 0)
7878 {
7879 arg += 5;
7880 lnum = atoi((char *)arg);
7881 arg = skiptowhite(arg);
7882 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007883 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7884 {
7885 if (id != -1)
7886 {
7887 EMSG(_(e_invarg));
7888 return;
7889 }
7890 id = -2;
7891 arg = skiptowhite(arg + 1);
7892 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007893 else if (STRNCMP(arg, "name=", 5) == 0)
7894 {
7895 arg += 5;
7896 sign_name = arg;
7897 arg = skiptowhite(arg);
7898 if (*arg != NUL)
7899 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007900 while (sign_name[0] == '0' && sign_name[1] != NUL)
7901 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007902 }
7903 else if (STRNCMP(arg, "file=", 5) == 0)
7904 {
7905 arg += 5;
7906 buf = buflist_findname(arg);
7907 break;
7908 }
7909 else if (STRNCMP(arg, "buffer=", 7) == 0)
7910 {
7911 arg += 7;
7912 buf = buflist_findnr((int)getdigits(&arg));
7913 if (*skipwhite(arg) != NUL)
7914 EMSG(_(e_trailing));
7915 break;
7916 }
7917 else
7918 {
7919 EMSG(_(e_invarg));
7920 return;
7921 }
7922 arg = skipwhite(arg);
7923 }
7924
7925 if (buf == NULL)
7926 {
7927 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7928 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007929 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007930 {
7931 if (lnum >= 0 || sign_name != NULL)
7932 EMSG(_(e_invarg));
7933 else
7934 /* ":sign place file={fname}": list placed signs in one file */
7935 sign_list_placed(buf);
7936 }
7937 else if (idx == SIGNCMD_JUMP)
7938 {
7939 /* ":sign jump {id} file={fname}" */
7940 if (lnum >= 0 || sign_name != NULL)
7941 EMSG(_(e_invarg));
7942 else if ((lnum = buf_findsign(buf, id)) > 0)
7943 { /* goto a sign ... */
7944 if (buf_jump_open_win(buf) != NULL)
7945 { /* ... in a current window */
7946 curwin->w_cursor.lnum = lnum;
7947 check_cursor_lnum();
7948 beginline(BL_WHITE);
7949 }
7950 else
7951 { /* ... not currently in a window */
7952 char_u *cmd;
7953
Bram Moolenaarbfd096d2016-08-17 22:29:09 +02007954 if (buf->b_fname == NULL)
7955 {
7956 EMSG(_("E934: Cannot jump to a buffer that does not have a name"));
7957 return;
7958 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007959 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7960 if (cmd == NULL)
7961 return;
7962 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7963 do_cmdline_cmd(cmd);
7964 vim_free(cmd);
7965 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007966# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00007967 foldOpenCursor();
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007968# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007969 }
7970 else
7971 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7972 }
7973 else if (idx == SIGNCMD_UNPLACE)
7974 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007975 if (lnum >= 0 || sign_name != NULL)
7976 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007977 else if (id == -2)
7978 {
7979 /* ":sign unplace * file={fname}" */
7980 redraw_buf_later(buf, NOT_VALID);
7981 buf_delete_signs(buf);
7982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007983 else
7984 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007985 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007986 lnum = buf_delsign(buf, id);
7987 update_debug_sign(buf, lnum);
7988 }
7989 }
7990 /* idx == SIGNCMD_PLACE */
7991 else if (sign_name != NULL)
7992 {
7993 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7994 if (STRCMP(sp->sn_name, sign_name) == 0)
7995 break;
7996 if (sp == NULL)
7997 {
7998 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7999 return;
8000 }
8001 if (lnum > 0)
8002 /* ":sign place {id} line={lnum} name={name} file={fname}":
8003 * place a sign */
8004 buf_addsign(buf, id, lnum, sp->sn_typenr);
8005 else
8006 /* ":sign place {id} file={fname}": change sign type */
8007 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02008008 if (lnum > 0)
8009 update_debug_sign(buf, lnum);
8010 else
8011 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008012 }
8013 else
8014 EMSG(_(e_invarg));
8015 }
8016}
8017
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008018# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008019/*
8020 * Allocate the icons. Called when the GUI has started. Allows defining
8021 * signs before it starts.
8022 */
8023 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008024sign_gui_started(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008025{
8026 sign_T *sp;
8027
8028 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8029 if (sp->sn_icon != NULL)
8030 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
8031}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008032# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008033
8034/*
8035 * List one sign.
8036 */
8037 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008038sign_list_defined(sign_T *sp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008039{
8040 char_u *p;
8041
Bram Moolenaar555b2802005-05-19 21:08:39 +00008042 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008043 if (sp->sn_icon != NULL)
8044 {
8045 MSG_PUTS(" icon=");
8046 msg_outtrans(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008047# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00008048 if (sp->sn_image == NULL)
8049 MSG_PUTS(_(" (NOT FOUND)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008050# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008051 MSG_PUTS(_(" (not supported)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008052# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008053 }
8054 if (sp->sn_text != NULL)
8055 {
8056 MSG_PUTS(" text=");
8057 msg_outtrans(sp->sn_text);
8058 }
8059 if (sp->sn_line_hl > 0)
8060 {
8061 MSG_PUTS(" linehl=");
Bram Moolenaarc96272e2017-03-26 13:50:09 +02008062 p = get_highlight_name_ext(NULL, sp->sn_line_hl - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008063 if (p == NULL)
8064 MSG_PUTS("NONE");
8065 else
8066 msg_puts(p);
8067 }
8068 if (sp->sn_text_hl > 0)
8069 {
8070 MSG_PUTS(" texthl=");
Bram Moolenaarc96272e2017-03-26 13:50:09 +02008071 p = get_highlight_name_ext(NULL, sp->sn_text_hl - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008072 if (p == NULL)
8073 MSG_PUTS("NONE");
8074 else
8075 msg_puts(p);
8076 }
8077}
8078
8079/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008080 * Undefine a sign and free its memory.
8081 */
8082 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008083sign_undefine(sign_T *sp, sign_T *sp_prev)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008084{
8085 vim_free(sp->sn_name);
8086 vim_free(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008087# ifdef FEAT_SIGN_ICONS
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008088 if (sp->sn_image != NULL)
8089 {
8090 out_flush();
8091 gui_mch_destroy_sign(sp->sn_image);
8092 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008093# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008094 vim_free(sp->sn_text);
8095 if (sp_prev == NULL)
8096 first_sign = sp->sn_next;
8097 else
8098 sp_prev->sn_next = sp->sn_next;
8099 vim_free(sp);
8100}
8101
8102/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008103 * Get highlighting attribute for sign "typenr".
8104 * If "line" is TRUE: line highl, if FALSE: text highl.
8105 */
8106 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008107sign_get_attr(int typenr, int line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008108{
8109 sign_T *sp;
8110
8111 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8112 if (sp->sn_typenr == typenr)
8113 {
8114 if (line)
8115 {
8116 if (sp->sn_line_hl > 0)
8117 return syn_id2attr(sp->sn_line_hl);
8118 }
8119 else
8120 {
8121 if (sp->sn_text_hl > 0)
8122 return syn_id2attr(sp->sn_text_hl);
8123 }
8124 break;
8125 }
8126 return 0;
8127}
8128
8129/*
8130 * Get text mark for sign "typenr".
8131 * Returns NULL if there isn't one.
8132 */
8133 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008134sign_get_text(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008135{
8136 sign_T *sp;
8137
8138 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8139 if (sp->sn_typenr == typenr)
8140 return sp->sn_text;
8141 return NULL;
8142}
8143
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008144# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008145 void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008146sign_get_image(
8147 int typenr) /* the attribute which may have a sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008148{
8149 sign_T *sp;
8150
8151 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8152 if (sp->sn_typenr == typenr)
8153 return sp->sn_image;
8154 return NULL;
8155}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008156# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008157
8158/*
8159 * Get the name of a sign by its typenr.
8160 */
8161 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008162sign_typenr2name(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008163{
8164 sign_T *sp;
8165
8166 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8167 if (sp->sn_typenr == typenr)
8168 return sp->sn_name;
8169 return (char_u *)_("[Deleted]");
8170}
8171
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008172# if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008173/*
8174 * Undefine/free all signs.
8175 */
8176 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008177free_signs(void)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008178{
8179 while (first_sign != NULL)
8180 sign_undefine(first_sign, NULL);
8181}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008182# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008183
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008184# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008185static enum
8186{
8187 EXP_SUBCMD, /* expand :sign sub-commands */
8188 EXP_DEFINE, /* expand :sign define {name} args */
8189 EXP_PLACE, /* expand :sign place {id} args */
8190 EXP_UNPLACE, /* expand :sign unplace" */
8191 EXP_SIGN_NAMES /* expand with name of placed signs */
8192} expand_what;
8193
8194/*
8195 * Function given to ExpandGeneric() to obtain the sign command
8196 * expansion.
8197 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008198 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008199get_sign_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008200{
8201 sign_T *sp;
8202 int current_idx;
8203
8204 switch (expand_what)
8205 {
8206 case EXP_SUBCMD:
8207 return (char_u *)cmds[idx];
8208 case EXP_DEFINE:
8209 {
8210 char *define_arg[] =
8211 {
8212 "icon=", "linehl=", "text=", "texthl=", NULL
8213 };
8214 return (char_u *)define_arg[idx];
8215 }
8216 case EXP_PLACE:
8217 {
8218 char *place_arg[] =
8219 {
8220 "line=", "name=", "file=", "buffer=", NULL
8221 };
8222 return (char_u *)place_arg[idx];
8223 }
8224 case EXP_UNPLACE:
8225 {
8226 char *unplace_arg[] = { "file=", "buffer=", NULL };
8227 return (char_u *)unplace_arg[idx];
8228 }
8229 case EXP_SIGN_NAMES:
8230 /* Complete with name of signs already defined */
8231 current_idx = 0;
8232 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8233 if (current_idx++ == idx)
8234 return sp->sn_name;
8235 return NULL;
8236 default:
8237 return NULL;
8238 }
8239}
8240
8241/*
8242 * Handle command line completion for :sign command.
8243 */
8244 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008245set_context_in_sign_cmd(expand_T *xp, char_u *arg)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008246{
8247 char_u *p;
8248 char_u *end_subcmd;
8249 char_u *last;
8250 int cmd_idx;
8251 char_u *begin_subcmd_args;
8252
8253 /* Default: expand subcommands. */
8254 xp->xp_context = EXPAND_SIGN;
8255 expand_what = EXP_SUBCMD;
8256 xp->xp_pattern = arg;
8257
8258 end_subcmd = skiptowhite(arg);
8259 if (*end_subcmd == NUL)
8260 /* expand subcmd name
8261 * :sign {subcmd}<CTRL-D>*/
8262 return;
8263
8264 cmd_idx = sign_cmd_idx(arg, end_subcmd);
8265
8266 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008267 * |
8268 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008269 begin_subcmd_args = skipwhite(end_subcmd);
8270 p = skiptowhite(begin_subcmd_args);
8271 if (*p == NUL)
8272 {
8273 /*
8274 * Expand first argument of subcmd when possible.
8275 * For ":jump {id}" and ":unplace {id}", we could
8276 * possibly expand the ids of all signs already placed.
8277 */
8278 xp->xp_pattern = begin_subcmd_args;
8279 switch (cmd_idx)
8280 {
8281 case SIGNCMD_LIST:
8282 case SIGNCMD_UNDEFINE:
8283 /* :sign list <CTRL-D>
8284 * :sign undefine <CTRL-D> */
8285 expand_what = EXP_SIGN_NAMES;
8286 break;
8287 default:
8288 xp->xp_context = EXPAND_NOTHING;
8289 }
8290 return;
8291 }
8292
8293 /* expand last argument of subcmd */
8294
8295 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008296 * |
8297 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008298
8299 /* Loop until reaching last argument. */
8300 do
8301 {
8302 p = skipwhite(p);
8303 last = p;
8304 p = skiptowhite(p);
8305 } while (*p != NUL);
8306
8307 p = vim_strchr(last, '=');
8308
8309 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008310 * | |
8311 * last p */
Bram Moolenaar7756e742016-10-21 20:35:37 +02008312 if (p == NULL)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008313 {
8314 /* Expand last argument name (before equal sign). */
8315 xp->xp_pattern = last;
8316 switch (cmd_idx)
8317 {
8318 case SIGNCMD_DEFINE:
8319 expand_what = EXP_DEFINE;
8320 break;
8321 case SIGNCMD_PLACE:
8322 expand_what = EXP_PLACE;
8323 break;
8324 case SIGNCMD_JUMP:
8325 case SIGNCMD_UNPLACE:
8326 expand_what = EXP_UNPLACE;
8327 break;
8328 default:
8329 xp->xp_context = EXPAND_NOTHING;
8330 }
8331 }
8332 else
8333 {
8334 /* Expand last argument value (after equal sign). */
8335 xp->xp_pattern = p + 1;
8336 switch (cmd_idx)
8337 {
8338 case SIGNCMD_DEFINE:
8339 if (STRNCMP(last, "texthl", p - last) == 0 ||
8340 STRNCMP(last, "linehl", p - last) == 0)
8341 xp->xp_context = EXPAND_HIGHLIGHT;
8342 else if (STRNCMP(last, "icon", p - last) == 0)
8343 xp->xp_context = EXPAND_FILES;
8344 else
8345 xp->xp_context = EXPAND_NOTHING;
8346 break;
8347 case SIGNCMD_PLACE:
8348 if (STRNCMP(last, "name", p - last) == 0)
8349 expand_what = EXP_SIGN_NAMES;
8350 else
8351 xp->xp_context = EXPAND_NOTHING;
8352 break;
8353 default:
8354 xp->xp_context = EXPAND_NOTHING;
8355 }
8356 }
8357}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008358# endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008359#endif
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008360
8361/*
8362 * Make the user happy.
8363 */
8364 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008365ex_smile(exarg_T *eap UNUSED)
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008366{
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008367 static char *code[] = {
8368 "\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$",
8369 "\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"
8370 };
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008371 char *p;
8372 int n;
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008373 int i;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008374
8375 msg_start();
8376 msg_putchar('\n');
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008377 for (i = 0; i < 2; ++i)
8378 for (p = code[i]; *p != NUL; ++p)
8379 if (*p == 'x')
8380 msg_putchar('\n');
8381 else
8382 for (n = *p++; n > 0; --n)
8383 if (*p == 'o' || *p == '$')
Bram Moolenaar8820b482017-03-16 17:23:31 +01008384 msg_putchar_attr(*p, HL_ATTR(HLF_L));
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008385 else
8386 msg_putchar(*p);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008387 msg_clr_eos();
8388}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008389
Bram Moolenaar071d4272004-06-13 20:20:40 +00008390/*
8391 * ":drop"
8392 * Opens the first argument in a window. When there are two or more arguments
8393 * the argument list is redefined.
8394 */
8395 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008396ex_drop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008397{
8398 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008399 win_T *wp;
8400 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008401 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008402
8403 /*
8404 * Check if the first argument is already being edited in a window. If
8405 * so, jump to that window.
8406 * We would actually need to check all arguments, but that's complicated
8407 * and mostly only one file is dropped.
8408 * This also ignores wildcards, since it is very unlikely the user is
8409 * editing a file name with a wildcard character.
8410 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008411 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008412
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00008413 /*
8414 * Expanding wildcards may result in an empty argument list. E.g. when
8415 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
8416 * already did an error message for this.
8417 */
8418 if (ARGCOUNT == 0)
8419 return;
8420
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008421 if (cmdmod.tab)
8422 {
8423 /* ":tab drop file ...": open a tab for each argument that isn't
8424 * edited in a window yet. It's like ":tab all" but without closing
8425 * windows or tabs. */
8426 ex_all(eap);
8427 }
8428 else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008429 {
8430 /* ":drop file ...": Edit the first argument. Jump to an existing
8431 * window if possible, edit in current window if the current buffer
8432 * can be abandoned, otherwise open a new window. */
8433 buf = buflist_findnr(ARGLIST[0].ae_fnum);
8434
8435 FOR_ALL_TAB_WINDOWS(tp, wp)
8436 {
8437 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008438 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00008439 goto_tabpage_win(tp, wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008440 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008441 return;
8442 }
8443 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008444
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008445 /*
8446 * Check whether the current buffer is changed. If so, we will need
8447 * to split the current window or data could be lost.
8448 * Skip the check if the 'hidden' option is set, as in this case the
8449 * buffer won't be lost.
8450 */
Bram Moolenaareb44a682017-08-03 22:44:55 +02008451 if (!buf_hide(curbuf))
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008452 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008453 ++emsg_off;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01008454 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008455 --emsg_off;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008456 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008457
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008458 /* Fake a ":sfirst" or ":first" command edit the first argument. */
8459 if (split)
8460 {
8461 eap->cmdidx = CMD_sfirst;
8462 eap->cmd[0] = 's';
8463 }
8464 else
8465 eap->cmdidx = CMD_first;
8466 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008468}
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008469
Bram Moolenaar9baf2972016-08-21 22:39:35 +02008470/*
8471 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
8472 * Put the start of the pattern in "*s", unless "s" is NULL.
8473 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
8474 * If "s" is not NULL terminate the pattern with a NUL.
8475 * Return a pointer to the char just past the pattern plus flags.
8476 */
8477 char_u *
8478skip_vimgrep_pat(char_u *p, char_u **s, int *flags)
8479{
8480 int c;
8481
8482 if (vim_isIDc(*p))
8483 {
8484 /* ":vimgrep pattern fname" */
8485 if (s != NULL)
8486 *s = p;
8487 p = skiptowhite(p);
8488 if (s != NULL && *p != NUL)
8489 *p++ = NUL;
8490 }
8491 else
8492 {
8493 /* ":vimgrep /pattern/[g][j] fname" */
8494 if (s != NULL)
8495 *s = p + 1;
8496 c = *p;
8497 p = skip_regexp(p + 1, c, TRUE, NULL);
8498 if (*p != c)
8499 return NULL;
8500
8501 /* Truncate the pattern. */
8502 if (s != NULL)
8503 *p = NUL;
8504 ++p;
8505
8506 /* Find the flags */
8507 while (*p == 'g' || *p == 'j')
8508 {
8509 if (flags != NULL)
8510 {
8511 if (*p == 'g')
8512 *flags |= VGR_GLOBAL;
8513 else
8514 *flags |= VGR_NOJUMP;
8515 }
8516 ++p;
8517 }
8518 }
8519 return p;
8520}
Bram Moolenaar9baf2972016-08-21 22:39:35 +02008521
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008522#if defined(FEAT_EVAL) || defined(PROTO)
8523/*
8524 * List v:oldfiles in a nice way.
8525 */
8526 void
8527ex_oldfiles(exarg_T *eap UNUSED)
8528{
8529 list_T *l = get_vim_var_list(VV_OLDFILES);
8530 listitem_T *li;
8531 int nr = 0;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008532 char_u *fname;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008533
8534 if (l == NULL)
8535 msg((char_u *)_("No old files"));
8536 else
8537 {
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008538 msg_start();
8539 msg_scroll = TRUE;
8540 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
8541 {
8542 ++nr;
8543 fname = get_tv_string(&li->li_tv);
Bram Moolenaard6f2ee32016-08-24 00:30:52 +02008544 if (!message_filtered(fname))
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008545 {
8546 msg_outnum((long)nr);
8547 MSG_PUTS(": ");
8548 msg_outtrans(fname);
Bram Moolenaar885c00e2016-08-28 17:08:17 +02008549 msg_clr_eos();
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008550 msg_putchar('\n');
8551 out_flush(); /* output one line at a time */
8552 ui_breakcheck();
8553 }
8554 }
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008555
8556 /* Assume "got_int" was set to truncate the listing. */
8557 got_int = FALSE;
8558
8559# ifdef FEAT_BROWSE_CMD
8560 if (cmdmod.browse)
8561 {
8562 quit_more = FALSE;
8563 nr = prompt_for_number(FALSE);
8564 msg_starthere();
8565 if (nr > 0)
8566 {
8567 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
8568 (long)nr);
8569
8570 if (p != NULL)
8571 {
8572 p = expand_env_save(p);
8573 eap->arg = p;
8574 eap->cmdidx = CMD_edit;
8575 cmdmod.browse = FALSE;
8576 do_exedit(eap, NULL);
8577 vim_free(p);
8578 }
8579 }
8580 }
8581# endif
8582 }
8583}
8584#endif