blob: 0c9644cc646a4ac1155d00f9bbad6f5d1148fd8f [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)
Bram Moolenaarb0e982b2018-09-21 12:46:22 +0200652 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000653 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
Bram Moolenaarb0e982b2018-09-21 12:46:22 +0200654 msgmore(-deleted);
655 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000656 else if (deleted < 0)
657 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
Bram Moolenaardc9e9552018-06-28 11:28:08 +0200658
659 if (change_occurred || deleted != 0)
660 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000661
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000662 curwin->w_cursor.lnum = eap->line1;
663 beginline(BL_WHITE | BL_FIX);
664
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000665sortend:
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000666 vim_free(nrs);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000667 vim_free(sortbuf1);
668 vim_free(sortbuf2);
Bram Moolenaar473de612013-06-08 18:19:48 +0200669 vim_regfree(regmatch.regprog);
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000670 if (got_int)
671 EMSG(_(e_interr));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000672}
673
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674/*
675 * ":retab".
676 */
677 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100678ex_retab(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679{
680 linenr_T lnum;
681 int got_tab = FALSE;
682 long num_spaces = 0;
683 long num_tabs;
684 long len;
685 long col;
686 long vcol;
687 long start_col = 0; /* For start of white-space string */
688 long start_vcol = 0; /* For start of white-space string */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 long old_len;
690 char_u *ptr;
691 char_u *new_line = (char_u *)1; /* init to non-NULL */
692 int did_undo; /* called u_save for current line */
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200693#ifdef FEAT_VARTABS
Bram Moolenaar0119a592018-06-24 23:53:28 +0200694 int *new_vts_array = NULL;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200695 char_u *new_ts_str; /* string value of tab argument */
696#else
697 int temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 int new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200699#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 int save_list;
701 linenr_T first_line = 0; /* first changed line */
702 linenr_T last_line = 0; /* last changed line */
703
704 save_list = curwin->w_p_list;
705 curwin->w_p_list = 0; /* don't want list mode here */
706
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200707#ifdef FEAT_VARTABS
708 new_ts_str = eap->arg;
Bram Moolenaar0119a592018-06-24 23:53:28 +0200709 if (!tabstop_set(eap->arg, &new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200710 return;
711 while (vim_isdigit(*(eap->arg)) || *(eap->arg) == ',')
712 ++(eap->arg);
713
Bram Moolenaar0119a592018-06-24 23:53:28 +0200714 // This ensures that either new_vts_array and new_ts_str are freshly
715 // allocated, or new_vts_array points to an existing array and new_ts_str
716 // is null.
717 if (new_vts_array == NULL)
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200718 {
Bram Moolenaar0119a592018-06-24 23:53:28 +0200719 new_vts_array = curbuf->b_p_vts_array;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200720 new_ts_str = NULL;
721 }
722 else
723 new_ts_str = vim_strnsave(new_ts_str, eap->arg - new_ts_str);
724#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 new_ts = getdigits(&(eap->arg));
726 if (new_ts < 0)
727 {
728 EMSG(_(e_positive));
729 return;
730 }
731 if (new_ts == 0)
732 new_ts = curbuf->b_p_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200733#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
735 {
736 ptr = ml_get(lnum);
737 col = 0;
738 vcol = 0;
739 did_undo = FALSE;
740 for (;;)
741 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100742 if (VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 {
744 if (!got_tab && num_spaces == 0)
745 {
746 /* First consecutive white-space */
747 start_vcol = vcol;
748 start_col = col;
749 }
750 if (ptr[col] == ' ')
751 num_spaces++;
752 else
753 got_tab = TRUE;
754 }
755 else
756 {
757 if (got_tab || (eap->forceit && num_spaces > 1))
758 {
759 /* Retabulate this string of white-space */
760
761 /* len is virtual length of white string */
762 len = num_spaces = vcol - start_vcol;
763 num_tabs = 0;
764 if (!curbuf->b_p_et)
765 {
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200766#ifdef FEAT_VARTABS
767 int t, s;
768
769 tabstop_fromto(start_vcol, vcol,
Bram Moolenaar0119a592018-06-24 23:53:28 +0200770 curbuf->b_p_ts, new_vts_array, &t, &s);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200771 num_tabs = t;
772 num_spaces = s;
773#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 temp = new_ts - (start_vcol % new_ts);
775 if (num_spaces >= temp)
776 {
777 num_spaces -= temp;
778 num_tabs++;
779 }
780 num_tabs += num_spaces / new_ts;
781 num_spaces -= (num_spaces / new_ts) * new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 }
784 if (curbuf->b_p_et || got_tab ||
785 (num_spaces + num_tabs < len))
786 {
787 if (did_undo == FALSE)
788 {
789 did_undo = TRUE;
790 if (u_save((linenr_T)(lnum - 1),
791 (linenr_T)(lnum + 1)) == FAIL)
792 {
793 new_line = NULL; /* flag out-of-memory */
794 break;
795 }
796 }
797
798 /* len is actual number of white characters used */
799 len = num_spaces + num_tabs;
800 old_len = (long)STRLEN(ptr);
801 new_line = lalloc(old_len - col + start_col + len + 1,
802 TRUE);
803 if (new_line == NULL)
804 break;
805 if (start_col > 0)
806 mch_memmove(new_line, ptr, (size_t)start_col);
807 mch_memmove(new_line + start_col + len,
808 ptr + col, (size_t)(old_len - col + 1));
809 ptr = new_line + start_col;
810 for (col = 0; col < len; col++)
811 ptr[col] = (col < num_tabs) ? '\t' : ' ';
812 ml_replace(lnum, new_line, FALSE);
813 if (first_line == 0)
814 first_line = lnum;
815 last_line = lnum;
816 ptr = new_line;
817 col = start_col + len;
818 }
819 }
820 got_tab = FALSE;
821 num_spaces = 0;
822 }
823 if (ptr[col] == NUL)
824 break;
825 vcol += chartabsize(ptr + col, (colnr_T)vcol);
826#ifdef FEAT_MBYTE
827 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000828 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 else
830#endif
831 ++col;
832 }
833 if (new_line == NULL) /* out of memory */
834 break;
835 line_breakcheck();
836 }
837 if (got_int)
838 EMSG(_(e_interr));
839
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200840#ifdef FEAT_VARTABS
841 // If a single value was given then it can be considered equal to
842 // either the value of 'tabstop' or the value of 'vartabstop'.
843 if (tabstop_count(curbuf->b_p_vts_array) == 0
Bram Moolenaar0119a592018-06-24 23:53:28 +0200844 && tabstop_count(new_vts_array) == 1
845 && curbuf->b_p_ts == tabstop_first(new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200846 ; /* not changed */
847 else if (tabstop_count(curbuf->b_p_vts_array) > 0
Bram Moolenaar0119a592018-06-24 23:53:28 +0200848 && tabstop_eq(curbuf->b_p_vts_array, new_vts_array))
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200849 ; /* not changed */
850 else
851 redraw_curbuf_later(NOT_VALID);
852#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 if (curbuf->b_p_ts != new_ts)
854 redraw_curbuf_later(NOT_VALID);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 if (first_line != 0)
857 changed_lines(first_line, 0, last_line + 1, 0L);
858
859 curwin->w_p_list = save_list; /* restore 'list' */
860
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200861#ifdef FEAT_VARTABS
862 if (new_ts_str != NULL) /* set the new tabstop */
863 {
864 // If 'vartabstop' is in use or if the value given to retab has more
865 // than one tabstop then update 'vartabstop'.
866 int *old_vts_ary = curbuf->b_p_vts_array;
867
Bram Moolenaar0119a592018-06-24 23:53:28 +0200868 if (tabstop_count(old_vts_ary) > 0 || tabstop_count(new_vts_array) > 1)
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200869 {
870 set_string_option_direct((char_u *)"vts", -1, new_ts_str,
871 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0119a592018-06-24 23:53:28 +0200872 curbuf->b_p_vts_array = new_vts_array;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200873 vim_free(old_vts_ary);
874 }
875 else
876 {
877 // 'vartabstop' wasn't in use and a single value was given to
878 // retab then update 'tabstop'.
Bram Moolenaar0119a592018-06-24 23:53:28 +0200879 curbuf->b_p_ts = tabstop_first(new_vts_array);
880 vim_free(new_vts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200881 }
Bram Moolenaar307ac5c2018-06-28 22:23:00 +0200882 vim_free(new_ts_str);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200883 }
884#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 curbuf->b_p_ts = new_ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 coladvance(curwin->w_curswant);
888
889 u_clearline();
890}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891
892/*
893 * :move command - move lines line1-line2 to line dest
894 *
895 * return FAIL for failure, OK otherwise
896 */
897 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100898do_move(linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899{
900 char_u *str;
901 linenr_T l;
902 linenr_T extra; /* Num lines added before line1 */
903 linenr_T num_lines; /* Num lines moved */
904 linenr_T last_line; /* Last line in file after adding new text */
Bram Moolenaard5f69332015-04-15 12:43:50 +0200905#ifdef FEAT_FOLDING
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100906 win_T *win;
907 tabpage_T *tp;
Bram Moolenaard5f69332015-04-15 12:43:50 +0200908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909
910 if (dest >= line1 && dest < line2)
911 {
912 EMSG(_("E134: Move lines into themselves"));
913 return FAIL;
914 }
915
916 num_lines = line2 - line1 + 1;
917
918 /*
919 * First we copy the old text to its new location -- webb
920 * Also copy the flag that ":global" command uses.
921 */
922 if (u_save(dest, dest + 1) == FAIL)
923 return FAIL;
924 for (extra = 0, l = line1; l <= line2; l++)
925 {
926 str = vim_strsave(ml_get(l + extra));
927 if (str != NULL)
928 {
929 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
930 vim_free(str);
931 if (dest < line1)
932 extra++;
933 }
934 }
935
936 /*
937 * Now we must be careful adjusting our marks so that we don't overlap our
938 * mark_adjust() calls.
939 *
940 * We adjust the marks within the old text so that they refer to the
941 * last lines of the file (temporarily), because we know no other marks
942 * will be set there since these line numbers did not exist until we added
943 * our new lines.
944 *
945 * Then we adjust the marks on lines between the old and new text positions
946 * (either forwards or backwards).
947 *
948 * And Finally we adjust the marks we put at the end of the file back to
949 * their final destination at the new text position -- webb
950 */
951 last_line = curbuf->b_ml.ml_line_count;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100952 mark_adjust_nofold(line1, line2, last_line - line2, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 if (dest >= line2)
954 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100955 mark_adjust_nofold(line2 + 1, dest, -num_lines, 0L);
956#ifdef FEAT_FOLDING
957 FOR_ALL_TAB_WINDOWS(tp, win) {
958 if (win->w_buffer == curbuf)
959 foldMoveRange(&win->w_folds, line1, line2, dest);
960 }
961#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 curbuf->b_op_start.lnum = dest - num_lines + 1;
963 curbuf->b_op_end.lnum = dest;
964 }
965 else
966 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100967 mark_adjust_nofold(dest + 1, line1 - 1, num_lines, 0L);
968#ifdef FEAT_FOLDING
969 FOR_ALL_TAB_WINDOWS(tp, win) {
970 if (win->w_buffer == curbuf)
971 foldMoveRange(&win->w_folds, dest + 1, line1 - 1, line2);
972 }
973#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 curbuf->b_op_start.lnum = dest + 1;
975 curbuf->b_op_end.lnum = dest + num_lines;
976 }
977 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100978 mark_adjust_nofold(last_line - num_lines + 1, last_line,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 -(last_line - dest - extra), 0L);
980
981 /*
982 * Now we delete the original text -- webb
983 */
984 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
985 return FAIL;
986
987 for (l = line1; l <= line2; l++)
988 ml_delete(line1 + extra, TRUE);
989
990 if (!global_busy && num_lines > p_report)
Bram Moolenaarda6e8912018-08-21 15:12:14 +0200991 smsg((char_u *)NGETTEXT("%ld line moved", "%ld lines moved", num_lines),
992 (long)num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993
994 /*
995 * Leave the cursor on the last of the moved lines.
996 */
997 if (dest >= line1)
998 curwin->w_cursor.lnum = dest;
999 else
1000 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
1001
1002 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +01001003 {
1004 dest += num_lines + 1;
1005 last_line = curbuf->b_ml.ml_line_count;
1006 if (dest > last_line + 1)
1007 dest = last_line + 1;
1008 changed_lines(line1, 0, dest, 0L);
1009 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 else
1011 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
1012
1013 return OK;
1014}
1015
1016/*
1017 * ":copy"
1018 */
1019 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001020ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021{
1022 linenr_T count;
1023 char_u *p;
1024
1025 count = line2 - line1 + 1;
1026 curbuf->b_op_start.lnum = n + 1;
1027 curbuf->b_op_end.lnum = n + count;
1028 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
1029
1030 /*
1031 * there are three situations:
1032 * 1. destination is above line1
1033 * 2. destination is between line1 and line2
1034 * 3. destination is below line2
1035 *
1036 * n = destination (when starting)
1037 * curwin->w_cursor.lnum = destination (while copying)
1038 * line1 = start of source (while copying)
1039 * line2 = end of source (while copying)
1040 */
1041 if (u_save(n, n + 1) == FAIL)
1042 return;
1043
1044 curwin->w_cursor.lnum = n;
1045 while (line1 <= line2)
1046 {
1047 /* need to use vim_strsave() because the line will be unlocked within
1048 * ml_append() */
1049 p = vim_strsave(ml_get(line1));
1050 if (p != NULL)
1051 {
1052 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
1053 vim_free(p);
1054 }
1055 /* situation 2: skip already copied lines */
1056 if (line1 == n)
1057 line1 = curwin->w_cursor.lnum;
1058 ++line1;
1059 if (curwin->w_cursor.lnum < line1)
1060 ++line1;
1061 if (curwin->w_cursor.lnum < line2)
1062 ++line2;
1063 ++curwin->w_cursor.lnum;
1064 }
1065
1066 appended_lines_mark(n, count);
1067
1068 msgmore((long)count);
1069}
1070
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001071static char_u *prevcmd = NULL; /* the previous command */
1072
1073#if defined(EXITFREE) || defined(PROTO)
1074 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001075free_prev_shellcmd(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001076{
1077 vim_free(prevcmd);
1078}
1079#endif
1080
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081/*
1082 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
1083 * Bangs in the argument are replaced with the previously entered command.
1084 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 */
1086 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001087do_bang(
1088 int addr_count,
1089 exarg_T *eap,
1090 int forceit,
1091 int do_in,
1092 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093{
1094 char_u *arg = eap->arg; /* command */
1095 linenr_T line1 = eap->line1; /* start of range */
1096 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 char_u *newcmd = NULL; /* the new command */
1098 int free_newcmd = FALSE; /* need to free() newcmd */
1099 int ins_prevcmd;
1100 char_u *t;
1101 char_u *p;
1102 char_u *trailarg;
1103 int len;
1104 int scroll_save = msg_scroll;
1105
1106 /*
1107 * Disallow shell commands for "rvim".
1108 * Disallow shell commands from .exrc and .vimrc in current directory for
1109 * security reasons.
1110 */
1111 if (check_restricted() || check_secure())
1112 return;
1113
1114 if (addr_count == 0) /* :! */
1115 {
1116 msg_scroll = FALSE; /* don't scroll here */
1117 autowrite_all();
1118 msg_scroll = scroll_save;
1119 }
1120
1121 /*
1122 * Try to find an embedded bang, like in :!<cmd> ! [args]
1123 * (:!! is indicated by the 'forceit' variable)
1124 */
1125 ins_prevcmd = forceit;
1126 trailarg = arg;
1127 do
1128 {
1129 len = (int)STRLEN(trailarg) + 1;
1130 if (newcmd != NULL)
1131 len += (int)STRLEN(newcmd);
1132 if (ins_prevcmd)
1133 {
1134 if (prevcmd == NULL)
1135 {
1136 EMSG(_(e_noprev));
1137 vim_free(newcmd);
1138 return;
1139 }
1140 len += (int)STRLEN(prevcmd);
1141 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001142 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 {
1144 vim_free(newcmd);
1145 return;
1146 }
1147 *t = NUL;
1148 if (newcmd != NULL)
1149 STRCAT(t, newcmd);
1150 if (ins_prevcmd)
1151 STRCAT(t, prevcmd);
1152 p = t + STRLEN(t);
1153 STRCAT(t, trailarg);
1154 vim_free(newcmd);
1155 newcmd = t;
1156
1157 /*
1158 * Scan the rest of the argument for '!', which is replaced by the
1159 * previous command. "\!" is replaced by "!" (this is vi compatible).
1160 */
1161 trailarg = NULL;
1162 while (*p)
1163 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001164 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 {
1166 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001167 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 else
1169 {
1170 trailarg = p;
1171 *trailarg++ = NUL;
1172 ins_prevcmd = TRUE;
1173 break;
1174 }
1175 }
1176 ++p;
1177 }
1178 } while (trailarg != NULL);
1179
1180 vim_free(prevcmd);
1181 prevcmd = newcmd;
1182
1183 if (bangredo) /* put cmd in redo buffer for ! command */
1184 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001185 /* If % or # appears in the command, it must have been escaped.
1186 * Reescape them, so that redoing them does not substitute them by the
1187 * buffername. */
1188 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1189
1190 if (cmd != NULL)
1191 {
1192 AppendToRedobuffLit(cmd, -1);
1193 vim_free(cmd);
1194 }
1195 else
1196 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 AppendToRedobuff((char_u *)"\n");
1198 bangredo = FALSE;
1199 }
1200 /*
1201 * Add quotes around the command, for shells that need them.
1202 */
1203 if (*p_shq != NUL)
1204 {
1205 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1206 if (newcmd == NULL)
1207 return;
1208 STRCPY(newcmd, p_shq);
1209 STRCAT(newcmd, prevcmd);
1210 STRCAT(newcmd, p_shq);
1211 free_newcmd = TRUE;
1212 }
1213 if (addr_count == 0) /* :! */
1214 {
1215 /* echo the command */
1216 msg_start();
1217 msg_putchar(':');
1218 msg_putchar('!');
1219 msg_outtrans(newcmd);
1220 msg_clr_eos();
1221 windgoto(msg_row, msg_col);
1222
1223 do_shell(newcmd, 0);
1224 }
1225 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001226 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 /* Careful: This may recursively call do_bang() again! (because of
1228 * autocommands) */
1229 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001230 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarade00832006-03-10 21:46:58 +00001231 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 if (free_newcmd)
1233 vim_free(newcmd);
1234}
1235
1236/*
1237 * do_filter: filter lines through a command given by the user
1238 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001239 * We mostly use temp files and the call_shell() routine here. This would
1240 * normally be done using pipes on a UNIX machine, but this is more portable
1241 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 * to deal with redirection somehow, and should handle things like looking
1243 * at the PATH env. variable, and adding reasonable extensions to the
1244 * command name given by the user. All reasonable versions of call_shell()
1245 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001246 * Alternatively, if on Unix and redirecting input or output, but not both,
1247 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 * We use input redirection if do_in is TRUE.
1249 * We use output redirection if do_out is TRUE.
1250 */
1251 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001252do_filter(
1253 linenr_T line1,
1254 linenr_T line2,
1255 exarg_T *eap, /* for forced 'ff' and 'fenc' */
1256 char_u *cmd,
1257 int do_in,
1258 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259{
1260 char_u *itmp = NULL;
1261 char_u *otmp = NULL;
1262 linenr_T linecount;
1263 linenr_T read_linecount;
1264 pos_T cursor_save;
1265 char_u *cmd_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 buf_T *old_curbuf = curbuf;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001267 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
1269 if (*cmd == NUL) /* no filter command */
1270 return;
1271
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 cursor_save = curwin->w_cursor;
1273 linecount = line2 - line1 + 1;
1274 curwin->w_cursor.lnum = line1;
1275 curwin->w_cursor.col = 0;
1276 changed_line_abv_curs();
1277 invalidate_botline();
1278
1279 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001280 * When using temp files:
1281 * 1. * Form temp file names
1282 * 2. * Write the lines to a temp file
1283 * 3. Run the filter command on the temp file
1284 * 4. * Read the output of the command into the buffer
1285 * 5. * Delete the original lines to be filtered
1286 * 6. * Remove the temp files
1287 *
1288 * When writing the input with a pipe or when catching the output with a
1289 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 */
1291
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001292 if (do_out)
1293 shell_flags |= SHELL_DOOUT;
1294
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001295#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001296 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001298 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1299 shell_flags |= SHELL_READ;
1300 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001302 else if (do_in && !do_out && !p_stmp)
1303 {
1304 /* Use a pipe to write stdin of the command, do not use a temp file. */
1305 shell_flags |= SHELL_WRITE;
1306 curbuf->b_op_start.lnum = line1;
1307 curbuf->b_op_end.lnum = line2;
1308 }
1309 else if (do_in && do_out && !p_stmp)
1310 {
1311 /* Use a pipe to write stdin and fetch stdout of the command, do not
1312 * use a temp file. */
1313 shell_flags |= SHELL_READ|SHELL_WRITE;
1314 curbuf->b_op_start.lnum = line1;
1315 curbuf->b_op_end.lnum = line2;
1316 curwin->w_cursor.lnum = line2;
1317 }
1318 else
1319#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001320 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1321 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001322 {
1323 EMSG(_(e_notmp));
1324 goto filterend;
1325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326
1327/*
1328 * The writing and reading of temp files will not be shown.
1329 * Vi also doesn't do this and the messages are not very informative.
1330 */
1331 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001332 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 FALSE, FALSE, FALSE, TRUE) == FAIL)
1334 {
1335 msg_putchar('\n'); /* keep message from buf_write() */
1336 --no_wait_return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001337#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 if (!aborting())
1339#endif
1340 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1341 goto filterend;
1342 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 if (curbuf != old_curbuf)
1344 goto filterend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345
1346 if (!do_out)
1347 msg_putchar('\n');
1348
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001349 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1351 if (cmd_buf == NULL)
1352 goto filterend;
1353
1354 windgoto((int)Rows - 1, 0);
1355 cursor_on();
1356
1357 /*
1358 * When not redirecting the output the command can write anything to the
1359 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1360 * stderr output of external command. Clear the screen later.
1361 * If do_in is FALSE, this could be something like ":r !cat", which may
1362 * also mess up the screen, clear it later.
1363 */
1364 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1365 redraw_later_clear();
1366
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001367 if (do_out)
1368 {
1369 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001370 {
1371 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001372 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001373 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001374 redraw_curbuf_later(VALID);
1375 }
1376 read_linecount = curbuf->b_ml.ml_line_count;
1377
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 /*
1379 * When call_shell() fails wait_return() is called to give the user a
1380 * chance to read the error messages. Otherwise errors are ignored, so you
1381 * can see the error messages from the command that appear on stdout; use
1382 * 'u' to fix the text
1383 * Switch to cooked mode when not redirecting stdin, avoids that something
1384 * like ":r !cat" hangs.
1385 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1386 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001387 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 {
1389 redraw_later_clear();
1390 wait_return(FALSE);
1391 }
1392 vim_free(cmd_buf);
1393
1394 did_check_timestamps = FALSE;
1395 need_check_timestamps = TRUE;
1396
1397 /* When interrupting the shell command, it may still have produced some
1398 * useful output. Reset got_int here, so that readfile() won't cancel
1399 * reading. */
1400 ui_breakcheck();
1401 got_int = FALSE;
1402
1403 if (do_out)
1404 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001405 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001407 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001408 eap, READ_FILTER) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001410#if defined(FEAT_EVAL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001411 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001413 {
1414 msg_putchar('\n');
1415 EMSG2(_(e_notread), otmp);
1416 }
1417 goto error;
1418 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001419 if (curbuf != old_curbuf)
1420 goto filterend;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001421 }
1422
1423 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1424
1425 if (shell_flags & SHELL_READ)
1426 {
1427 curbuf->b_op_start.lnum = line2 + 1;
1428 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1429 appended_lines_mark(line2, read_linecount);
1430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431
1432 if (do_in)
1433 {
1434 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1435 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 if (read_linecount >= linecount)
1437 /* move all marks from old lines to new lines */
1438 mark_adjust(line1, line2, linecount, 0L);
1439 else
1440 {
1441 /* move marks from old lines to new lines, delete marks
1442 * that are in deleted lines */
1443 mark_adjust(line1, line1 + read_linecount - 1,
1444 linecount, 0L);
1445 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1446 }
1447 }
1448
1449 /*
1450 * Put cursor on first filtered line for ":range!cmd".
1451 * Adjust '[ and '] (set by buf_write()).
1452 */
1453 curwin->w_cursor.lnum = line1;
1454 del_lines(linecount, TRUE);
1455 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1456 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1457 write_lnum_adjust(-linecount); /* adjust last line
1458 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001459#ifdef FEAT_FOLDING
1460 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1461#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 }
1463 else
1464 {
1465 /*
1466 * Put cursor on last new line for ":r !cmd".
1467 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001469 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001471
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1473 --no_wait_return;
1474
1475 if (linecount > p_report)
1476 {
1477 if (do_in)
1478 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001479 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1480 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001483 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 }
1485 else
1486 msgmore((long)linecount);
1487 }
1488 }
1489 else
1490 {
1491error:
1492 /* put cursor back in same position for ":w !cmd" */
1493 curwin->w_cursor = cursor_save;
1494 --no_wait_return;
1495 wait_return(FALSE);
1496 }
1497
1498filterend:
1499
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 if (curbuf != old_curbuf)
1501 {
1502 --no_wait_return;
1503 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 if (itmp != NULL)
1506 mch_remove(itmp);
1507 if (otmp != NULL)
1508 mch_remove(otmp);
1509 vim_free(itmp);
1510 vim_free(otmp);
1511}
1512
1513/*
1514 * Call a shell to execute a command.
1515 * When "cmd" is NULL start an interactive shell.
1516 */
1517 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001518do_shell(
1519 char_u *cmd,
1520 int flags) /* may be SHELL_DOOUT when output is redirected */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521{
1522 buf_T *buf;
1523#ifndef FEAT_GUI_MSWIN
1524 int save_nwr;
1525#endif
1526#ifdef MSWIN
1527 int winstart = FALSE;
1528#endif
1529
1530 /*
1531 * Disallow shell commands for "rvim".
1532 * Disallow shell commands from .exrc and .vimrc in current directory for
1533 * security reasons.
1534 */
1535 if (check_restricted() || check_secure())
1536 {
1537 msg_end();
1538 return;
1539 }
1540
1541#ifdef MSWIN
1542 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 * Check if ":!start" is used.
1544 */
1545 if (cmd != NULL)
1546 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1547#endif
1548
1549 /*
1550 * For autocommands we want to get the output on the current screen, to
1551 * avoid having to type return below.
1552 */
1553 msg_putchar('\r'); /* put cursor at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 if (!autocmd_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 {
1556#ifdef MSWIN
1557 if (!winstart)
1558#endif
1559 stoptermcap();
1560 }
1561#ifdef MSWIN
1562 if (!winstart)
1563#endif
1564 msg_putchar('\n'); /* may shift screen one line up */
1565
1566 /* warning message before calling the shell */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001567 if (p_warn && !autocmd_busy && msg_silent == 0)
Bram Moolenaar29323592016-07-24 22:04:11 +02001568 FOR_ALL_BUFFERS(buf)
Bram Moolenaarf405c8f2017-12-09 19:51:49 +01001569 if (bufIsChangedNotTerm(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 {
1571#ifdef FEAT_GUI_MSWIN
1572 if (!winstart)
1573 starttermcap(); /* don't want a message box here */
1574#endif
1575 MSG_PUTS(_("[No write since last change]\n"));
1576#ifdef FEAT_GUI_MSWIN
1577 if (!winstart)
1578 stoptermcap();
1579#endif
1580 break;
1581 }
1582
1583 /* This windgoto is required for when the '\n' resulted in a "delete line
1584 * 1" command to the terminal. */
1585 if (!swapping_screen())
1586 windgoto(msg_row, msg_col);
1587 cursor_on();
1588 (void)call_shell(cmd, SHELL_COOKED | flags);
1589 did_check_timestamps = FALSE;
1590 need_check_timestamps = TRUE;
1591
1592 /*
1593 * put the message cursor at the end of the screen, avoids wait_return()
1594 * to overwrite the text that the external command showed
1595 */
1596 if (!swapping_screen())
1597 {
1598 msg_row = Rows - 1;
1599 msg_col = 0;
1600 }
1601
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 if (autocmd_busy)
1603 {
1604 if (msg_silent == 0)
1605 redraw_later_clear();
1606 }
1607 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 {
1609 /*
1610 * For ":sh" there is no need to call wait_return(), just redraw.
1611 * Also for the Win32 GUI (the output is in a console window).
1612 * Otherwise there is probably text on the screen that the user wants
1613 * to read before redrawing, so call wait_return().
1614 */
1615#ifndef FEAT_GUI_MSWIN
1616 if (cmd == NULL
1617# ifdef WIN3264
1618 || (winstart && !need_wait_return)
1619# endif
1620 )
1621 {
1622 if (msg_silent == 0)
1623 redraw_later_clear();
1624 need_wait_return = FALSE;
1625 }
1626 else
1627 {
1628 /*
1629 * If we switch screens when starttermcap() is called, we really
1630 * want to wait for "hit return to continue".
1631 */
1632 save_nwr = no_wait_return;
1633 if (swapping_screen())
1634 no_wait_return = FALSE;
1635# ifdef AMIGA
1636 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1637# else
1638 wait_return(msg_silent == 0);
1639# endif
1640 no_wait_return = save_nwr;
1641 }
1642#endif /* FEAT_GUI_W32 */
1643
1644#ifdef MSWIN
1645 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1646#endif
1647 starttermcap(); /* start termcap if not done by wait_return() */
1648
1649 /*
1650 * In an Amiga window redrawing is caused by asking the window size.
1651 * If we got an interrupt this will not work. The chance that the
1652 * window size is wrong is very small, but we need to redraw the
1653 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1654 * but it saves an extra redraw.
1655 */
1656#ifdef AMIGA
1657 if (skip_redraw) /* ':' hit in wait_return() */
1658 {
1659 if (msg_silent == 0)
1660 redraw_later_clear();
1661 }
1662 else if (term_console)
1663 {
1664 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1665 if (got_int && msg_silent == 0)
1666 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1667 else
1668 must_redraw = 0; /* no extra redraw needed */
1669 }
1670#endif
1671 }
1672
1673 /* display any error messages now */
1674 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001675
Bram Moolenaarade00832006-03-10 21:46:58 +00001676 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677}
1678
1679/*
1680 * Create a shell command from a command string, input redirection file and
1681 * output redirection file.
1682 * Returns an allocated string with the shell command, or NULL for failure.
1683 */
1684 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001685make_filter_cmd(
1686 char_u *cmd, /* command */
1687 char_u *itmp, /* NULL or name of input file */
1688 char_u *otmp) /* NULL or name of output file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689{
1690 char_u *buf;
1691 long_u len;
1692
Bram Moolenaar53076832015-12-31 19:53:21 +01001693#if defined(UNIX)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001694 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001695 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001696
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001697 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001698 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1699 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001700 if (is_fish_shell)
1701 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1702 else
1703#endif
1704 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705 if (itmp != NULL)
1706 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1707 if (otmp != NULL)
1708 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1709 buf = lalloc(len, TRUE);
1710 if (buf == NULL)
1711 return NULL;
1712
Bram Moolenaar53076832015-12-31 19:53:21 +01001713#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001715 * Put braces around the command (for concatenated commands) when
1716 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001718 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001719 {
1720 if (is_fish_shell)
1721 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1722 else
1723 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1724 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001725 else
1726 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 if (itmp != NULL)
1728 {
1729 STRCAT(buf, " < ");
1730 STRCAT(buf, itmp);
1731 }
1732#else
1733 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001734 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 * the use of commands in a pipe.
1736 */
1737 STRCPY(buf, cmd);
1738 if (itmp != NULL)
1739 {
1740 char_u *p;
1741
1742 /*
1743 * If there is a pipe, we have to put the '<' in front of it.
1744 * Don't do this when 'shellquote' is not empty, otherwise the
1745 * redirection would be inside the quotes.
1746 */
1747 if (*p_shq == NUL)
1748 {
1749 p = vim_strchr(buf, '|');
1750 if (p != NULL)
1751 *p = NUL;
1752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1754 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 if (*p_shq == NUL)
1756 {
1757 p = vim_strchr(cmd, '|');
1758 if (p != NULL)
1759 {
1760 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1761 STRCAT(buf, p);
1762 }
1763 }
1764 }
1765#endif
1766 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001767 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768
1769 return buf;
1770}
1771
1772/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001773 * Append output redirection for file "fname" to the end of string buffer
1774 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 * Works with the 'shellredir' and 'shellpipe' options.
1776 * The caller should make sure that there is enough room:
1777 * STRLEN(opt) + STRLEN(fname) + 3
1778 */
1779 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001780append_redir(
1781 char_u *buf,
1782 int buflen,
1783 char_u *opt,
1784 char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785{
1786 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001787 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001789 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001790 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001792 {
1793 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001795 if (p[1] == '%') /* skip %% */
1796 ++p;
1797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 if (p != NULL)
1799 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001800 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1801 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1802 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 }
1804 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001805 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 " %s %s",
1808#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810#endif
1811 (char *)opt, (char *)fname);
1812}
1813
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001814#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001816static int no_viminfo(void);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001817static int read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02001818static void write_viminfo_version(FILE *fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001819static void write_viminfo_barlines(vir_T *virp, FILE *fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820static int viminfo_errcnt;
1821
1822 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001823no_viminfo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824{
1825 /* "vim -i NONE" does not read or write a viminfo file */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001826 return STRCMP(p_viminfofile, "NONE") == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827}
1828
1829/*
1830 * Report an error for reading a viminfo file.
1831 * Count the number of errors. When there are more than 10, return TRUE.
1832 */
1833 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001834viminfo_error(char *errnum, char *message, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001836 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1837 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001838 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001839 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1840 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 emsg(IObuff);
1842 if (++viminfo_errcnt >= 10)
1843 {
1844 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1845 return TRUE;
1846 }
1847 return FALSE;
1848}
1849
1850/*
1851 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001852 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 */
1854 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001855read_viminfo(
1856 char_u *file, /* file name or NULL to use default name */
1857 int flags) /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858{
1859 FILE *fp;
1860 char_u *fname;
1861
1862 if (no_viminfo())
1863 return FAIL;
1864
Bram Moolenaard812df62008-11-09 12:46:09 +00001865 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 if (fname == NULL)
1867 return FAIL;
1868 fp = mch_fopen((char *)fname, READBIN);
1869
1870 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001871 {
1872 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001873 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1874 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001875 (flags & VIF_WANT_INFO) ? _(" info") : "",
1876 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1877 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001878 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001879 verbose_leave();
1880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881
1882 vim_free(fname);
1883 if (fp == NULL)
1884 return FAIL;
1885
1886 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001887 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888
1889 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 return OK;
1891}
1892
1893/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001894 * Write the viminfo file. The old one is read in first so that effectively a
1895 * merge of current info and old info is done. This allows multiple vims to
1896 * run simultaneously, without losing any marks etc.
1897 * If "forceit" is TRUE, then the old file is not read in, and only internal
1898 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 */
1900 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001901write_viminfo(char_u *file, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902{
1903 char_u *fname;
1904 FILE *fp_in = NULL; /* input viminfo file, if any */
1905 FILE *fp_out = NULL; /* output viminfo file */
1906 char_u *tempname = NULL; /* name of temp viminfo file */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001907 stat_T st_new; /* mch_stat() of potential new file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908#if defined(UNIX) || defined(VMS)
1909 mode_t umask_save;
1910#endif
1911#ifdef UNIX
1912 int shortname = FALSE; /* use 8.3 file name */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001913 stat_T st_old; /* mch_stat() of existing viminfo file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001915#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001916 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918
1919 if (no_viminfo())
1920 return;
1921
1922 fname = viminfo_filename(file); /* may set to default if NULL */
1923 if (fname == NULL)
1924 return;
1925
1926 fp_in = mch_fopen((char *)fname, READBIN);
1927 if (fp_in == NULL)
1928 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001929 int fd;
1930
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 /* if it does exist, but we can't read it, don't try writing */
1932 if (mch_stat((char *)fname, &st_new) == 0)
1933 goto end;
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001934
1935 /* Create the new .viminfo non-accessible for others, because it may
1936 * contain text from non-accessible documents. It is up to the user to
1937 * widen access (e.g. to a group). This may also fail if there is a
1938 * race condition, then just give up. */
1939 fd = mch_open((char *)fname,
1940 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
1941 if (fd < 0)
1942 goto end;
1943 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 }
1945 else
1946 {
1947 /*
1948 * There is an existing viminfo file. Create a temporary file to
1949 * write the new viminfo into, in the same directory as the
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001950 * existing viminfo file, which will be renamed once all writing is
1951 * successful.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 */
1953#ifdef UNIX
1954 /*
1955 * For Unix we check the owner of the file. It's not very nice to
1956 * overwrite a user's viminfo file after a "su root", with a
1957 * viminfo file that the user can't read.
1958 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001959 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001960 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001962 if (mch_stat((char *)fname, &st_old) == 0
1963 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001964 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 ? (st_old.st_mode & 0200)
1966 : (st_old.st_gid == getgid()
1967 ? (st_old.st_mode & 0020)
1968 : (st_old.st_mode & 0002))))
1969 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001970 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971
1972 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1974 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001975 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 goto end;
1977 }
1978#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001979#ifdef WIN3264
1980 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001981 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001982#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983
1984 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001985 * Make tempname, find one that does not exist yet.
1986 * Beware of a race condition: If someone logs out and all Vim
1987 * instances exit at the same time a temp file might be created between
1988 * stat() and open(). Use mch_open() with O_EXCL to avoid that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 * May try twice: Once normal and once with shortname set, just in
1990 * case somebody puts his viminfo file in an 8.3 filesystem.
1991 */
1992 for (;;)
1993 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001994 int next_char = 'z';
1995 char_u *wp;
1996
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 tempname = buf_modname(
1998#ifdef UNIX
1999 shortname,
2000#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002#endif
2003 fname,
2004#ifdef VMS
2005 (char_u *)"-tmp",
2006#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008#endif
2009 FALSE);
2010 if (tempname == NULL) /* out of memory */
2011 break;
2012
2013 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002014 * Try a series of names. Change one character, just before
2015 * the extension. This should also work for an 8.3
2016 * file name, when after adding the extension it still is
2017 * the same file as the original.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002019 wp = tempname + STRLEN(tempname) - 5;
2020 if (wp < gettail(tempname)) /* empty file name? */
2021 wp = gettail(tempname);
2022 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002024 /*
2025 * Check if tempfile already exists. Never overwrite an
2026 * existing file!
2027 */
2028 if (mch_stat((char *)tempname, &st_new) == 0)
2029 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002032 * Check if tempfile is same as original file. May happen
2033 * when modname() gave the same file back. E.g. silly
2034 * link, or file name-length reached. Try again with
2035 * shortname set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002037 if (!shortname && st_new.st_dev == st_old.st_dev
2038 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002040 VIM_CLEAR(tempname);
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002041 shortname = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 break;
2043 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002044#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002046 else
2047 {
2048 /* Try creating the file exclusively. This may fail if
2049 * another Vim tries to do it at the same time. */
2050#ifdef VMS
2051 /* fdopen() fails for some reason */
2052 umask_save = umask(077);
2053 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2054 (void)umask(umask_save);
2055#else
2056 int fd;
2057
2058 /* Use mch_open() to be able to use O_NOFOLLOW and set file
2059 * protection:
2060 * Unix: same as original file, but strip s-bit. Reset
2061 * umask to avoid it getting in the way.
2062 * Others: r&w for user only. */
2063# ifdef UNIX
2064 umask_save = umask(0);
2065 fd = mch_open((char *)tempname,
2066 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
2067 (int)((st_old.st_mode & 0777) | 0600));
2068 (void)umask(umask_save);
2069# else
2070 fd = mch_open((char *)tempname,
2071 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
2072# endif
2073 if (fd < 0)
2074 {
2075 fp_out = NULL;
2076# ifdef EEXIST
2077 /* Avoid trying lots of names while the problem is lack
2078 * of premission, only retry if the file already
2079 * exists. */
2080 if (errno != EEXIST)
2081 break;
2082# endif
2083 }
2084 else
2085 fp_out = fdopen(fd, WRITEBIN);
2086#endif /* VMS */
2087 if (fp_out != NULL)
2088 break;
2089 }
2090
2091 /* Assume file exists, try again with another name. */
2092 if (next_char == 'a' - 1)
2093 {
2094 /* They all exist? Must be something wrong! Don't write
2095 * the viminfo file then. */
2096 EMSG2(_("E929: Too many viminfo temp files, like %s!"),
2097 tempname);
2098 break;
2099 }
2100 *wp = next_char;
2101 --next_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002103
2104 if (tempname != NULL)
2105 break;
2106 /* continue if shortname was set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 }
2108
Bram Moolenaara5792f52005-11-23 21:25:05 +00002109#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002110 if (tempname != NULL && fp_out != NULL)
2111 {
2112 stat_T tmp_st;
2113
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 /*
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002115 * Make sure the original owner can read/write the tempfile and
2116 * otherwise preserve permissions, making sure the group matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002118 if (mch_stat((char *)tempname, &tmp_st) >= 0)
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002119 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002120 if (st_old.st_uid != tmp_st.st_uid)
2121 /* Changing the owner might fail, in which case the
2122 * file will now owned by the current user, oh well. */
Bram Moolenaar42335f52018-09-13 15:33:43 +02002123 vim_ignored = fchown(fileno(fp_out), st_old.st_uid, -1);
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002124 if (st_old.st_gid != tmp_st.st_gid
2125 && fchown(fileno(fp_out), -1, st_old.st_gid) == -1)
2126 /* can't set the group to what it should be, remove
2127 * group permissions */
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002128 (void)mch_setperm(tempname, 0600);
2129 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002130 else
2131 /* can't stat the file, set conservative permissions */
2132 (void)mch_setperm(tempname, 0600);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002134#endif
Bram Moolenaare0aa23f2017-11-26 17:08:03 +01002135 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136
2137 /*
2138 * Check if the new viminfo file can be written to.
2139 */
2140 if (fp_out == NULL)
2141 {
2142 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002143 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 if (fp_in != NULL)
2145 fclose(fp_in);
2146 goto end;
2147 }
2148
2149 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002150 {
2151 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00002152 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002153 verbose_leave();
2154 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155
2156 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002157 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158
Bram Moolenaar927030a2016-03-15 18:23:55 +01002159 if (fclose(fp_out) == EOF)
2160 ++viminfo_errcnt;
2161
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 if (fp_in != NULL)
2163 {
2164 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002165
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002166 /* In case of an error keep the original viminfo file. Otherwise
2167 * rename the newly written file. Give an error if that fails. */
Bram Moolenaar927030a2016-03-15 18:23:55 +01002168 if (viminfo_errcnt == 0)
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002169 {
Bram Moolenaar927030a2016-03-15 18:23:55 +01002170 if (vim_rename(tempname, fname) == -1)
2171 {
2172 ++viminfo_errcnt;
2173 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2174 }
2175# ifdef WIN3264
2176 /* If the viminfo file was hidden then also hide the new file. */
2177 else if (hidden)
2178 mch_hide(fname);
2179# endif
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002180 }
2181 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 mch_remove(tempname);
2183 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002184
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185end:
2186 vim_free(fname);
2187 vim_free(tempname);
2188}
2189
2190/*
2191 * Get the viminfo file name to use.
2192 * If "file" is given and not empty, use it (has already been expanded by
2193 * cmdline functions).
2194 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2195 * expand environment variables.
2196 * Returns an allocated string. NULL when out of memory.
2197 */
2198 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002199viminfo_filename(char_u *file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200{
2201 if (file == NULL || *file == NUL)
2202 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002203 if (*p_viminfofile != NUL)
2204 file = p_viminfofile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2206 {
2207#ifdef VIMINFO_FILE2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208# ifdef VMS
2209 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2210# else
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002211# ifdef MSWIN
2212 /* Use $VIM only if $HOME is the default "C:/". */
2213 if (STRCMP(vim_getenv((char_u *)"HOME", NULL), "C:/") == 0
2214 && mch_getenv((char_u *)"HOME") == NULL)
2215# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 if (mch_getenv((char_u *)"HOME") == NULL)
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002217# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218# endif
2219 {
2220 /* don't use $VIM when not available. */
2221 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2222 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2223 file = (char_u *)VIMINFO_FILE2;
2224 else
2225 file = (char_u *)VIMINFO_FILE;
2226 }
2227 else
2228#endif
2229 file = (char_u *)VIMINFO_FILE;
2230 }
2231 expand_env(file, NameBuff, MAXPATHL);
2232 file = NameBuff;
2233 }
2234 return vim_strsave(file);
2235}
2236
2237/*
2238 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2239 */
2240 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002241do_viminfo(FILE *fp_in, FILE *fp_out, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 int eof = FALSE;
2244 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002245 int merge = FALSE;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002246 int do_copy_marks = FALSE;
2247 garray_T buflist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248
2249 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2250 return;
2251 vir.vir_fd = fp_in;
2252#ifdef FEAT_MBYTE
2253 vir.vir_conv.vc_type = CONV_NONE;
2254#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002255 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002256 vir.vir_version = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257
2258 if (fp_in != NULL)
2259 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002260 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002261 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002262 if (fp_out != NULL)
Bram Moolenaar2d358992016-06-12 21:20:54 +02002263 {
2264 /* Registers and marks are read and kept separate from what
2265 * this Vim is using. They are merged when writing. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002266 prepare_viminfo_registers();
Bram Moolenaar2d358992016-06-12 21:20:54 +02002267 prepare_viminfo_marks();
2268 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002269
Bram Moolenaard812df62008-11-09 12:46:09 +00002270 eof = read_viminfo_up_to_marks(&vir,
2271 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002272 merge = TRUE;
2273 }
2274 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 /* Skip info, find start of marks */
2276 while (!(eof = viminfo_readline(&vir))
2277 && vir.vir_line[0] != '>')
2278 ;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002279
2280 do_copy_marks = (flags &
2281 (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002283
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 if (fp_out != NULL)
2285 {
2286 /* Write the info: */
2287 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2288 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002289 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002290 write_viminfo_version(fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002292 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2294#endif
2295 write_viminfo_search_pattern(fp_out);
2296 write_viminfo_sub_string(fp_out);
2297#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002298 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299#endif
2300 write_viminfo_registers(fp_out);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002301 finish_viminfo_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302#ifdef FEAT_EVAL
2303 write_viminfo_varlist(fp_out);
2304#endif
2305 write_viminfo_filemarks(fp_out);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002306 finish_viminfo_marks();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 write_viminfo_bufferlist(fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002308 write_viminfo_barlines(&vir, fp_out);
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002309
2310 if (do_copy_marks)
2311 ga_init2(&buflist, sizeof(buf_T *), 50);
2312 write_viminfo_marks(fp_out, do_copy_marks ? &buflist : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002314
2315 if (do_copy_marks)
2316 {
2317 copy_viminfo_marks(&vir, fp_out, &buflist, eof, flags);
2318 if (fp_out != NULL)
2319 ga_clear(&buflist);
2320 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321
2322 vim_free(vir.vir_line);
2323#ifdef FEAT_MBYTE
2324 if (vir.vir_conv.vc_type != CONV_NONE)
2325 convert_setup(&vir.vir_conv, NULL, NULL);
2326#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002327 ga_clear_strings(&vir.vir_barlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328}
2329
2330/*
2331 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2332 * first part of the viminfo file which contains everything but the marks that
2333 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2334 */
2335 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002336read_viminfo_up_to_marks(
2337 vir_T *virp,
2338 int forceit,
2339 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340{
2341 int eof;
2342 buf_T *buf;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002343 int got_encoding = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344
2345#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002346 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002348
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 eof = viminfo_readline(virp);
2350 while (!eof && virp->vir_line[0] != '>')
2351 {
2352 switch (virp->vir_line[0])
2353 {
2354 /* Characters reserved for future expansion, ignored now */
2355 case '+': /* "+40 /path/dir file", for running vim without args */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 case '^': /* to be defined */
2357 case '<': /* long line - ignored */
2358 /* A comment or empty line. */
2359 case NUL:
2360 case '\r':
2361 case '\n':
2362 case '#':
2363 eof = viminfo_readline(virp);
2364 break;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002365 case '|':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002366 eof = read_viminfo_barline(virp, got_encoding,
2367 forceit, writing);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002368 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 case '*': /* "*encoding=value" */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002370 got_encoding = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 eof = viminfo_encoding(virp);
2372 break;
2373 case '!': /* global variable */
2374#ifdef FEAT_EVAL
2375 eof = read_viminfo_varlist(virp, writing);
2376#else
2377 eof = viminfo_readline(virp);
2378#endif
2379 break;
2380 case '%': /* entry for buffer list */
2381 eof = read_viminfo_bufferlist(virp, writing);
2382 break;
2383 case '"':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002384 /* When registers are in bar lines skip the old style register
2385 * lines. */
2386 if (virp->vir_version < VIMINFO_VERSION_WITH_REGISTERS)
2387 eof = read_viminfo_register(virp, forceit);
2388 else
2389 do {
2390 eof = viminfo_readline(virp);
2391 } while (!eof && (virp->vir_line[0] == TAB
2392 || virp->vir_line[0] == '<'));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 break;
2394 case '/': /* Search string */
2395 case '&': /* Substitute search string */
2396 case '~': /* Last search string, followed by '/' or '&' */
2397 eof = read_viminfo_search_pattern(virp, forceit);
2398 break;
2399 case '$':
2400 eof = read_viminfo_sub_string(virp, forceit);
2401 break;
2402 case ':':
2403 case '?':
2404 case '=':
2405 case '@':
2406#ifdef FEAT_CMDHIST
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002407 /* When history is in bar lines skip the old style history
2408 * lines. */
2409 if (virp->vir_version < VIMINFO_VERSION_WITH_HISTORY)
2410 eof = read_viminfo_history(virp, writing);
2411 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002413 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 break;
2415 case '-':
2416 case '\'':
Bram Moolenaara641e1d2016-06-13 21:16:03 +02002417 /* When file marks are in bar lines skip the old style lines. */
2418 if (virp->vir_version < VIMINFO_VERSION_WITH_MARKS)
2419 eof = read_viminfo_filemark(virp, forceit);
2420 else
2421 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 break;
2423 default:
2424 if (viminfo_error("E575: ", _("Illegal starting char"),
2425 virp->vir_line))
2426 eof = TRUE;
2427 else
2428 eof = viminfo_readline(virp);
2429 break;
2430 }
2431 }
2432
2433#ifdef FEAT_CMDHIST
2434 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002435 if (!writing)
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02002436 finish_viminfo_history(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437#endif
2438
2439 /* Change file names to buffer numbers for fmarks. */
Bram Moolenaar29323592016-07-24 22:04:11 +02002440 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 fmarks_check_names(buf);
2442
2443 return eof;
2444}
2445
2446/*
2447 * Compare the 'encoding' value in the viminfo file with the current value of
2448 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2449 * conversion of text with iconv() in viminfo_readstring().
2450 */
2451 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002452viminfo_encoding(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453{
2454#ifdef FEAT_MBYTE
2455 char_u *p;
2456 int i;
2457
2458 if (get_viminfo_parameter('c') != 0)
2459 {
2460 p = vim_strchr(virp->vir_line, '=');
2461 if (p != NULL)
2462 {
2463 /* remove trailing newline */
2464 ++p;
2465 for (i = 0; vim_isprintc(p[i]); ++i)
2466 ;
2467 p[i] = NUL;
2468
2469 convert_setup(&virp->vir_conv, p, p_enc);
2470 }
2471 }
2472#endif
2473 return viminfo_readline(virp);
2474}
2475
2476/*
2477 * Read a line from the viminfo file.
2478 * Returns TRUE for end-of-file;
2479 */
2480 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002481viminfo_readline(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482{
2483 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2484}
2485
2486/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002487 * Check string read from viminfo file.
2488 * Remove '\n' at the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 * - replace CTRL-V CTRL-V with CTRL-V
2490 * - replace CTRL-V 'n' with '\n'
2491 *
2492 * Check for a long line as written by viminfo_writestring().
2493 *
2494 * Return the string in allocated memory (NULL when out of memory).
2495 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002497viminfo_readstring(
2498 vir_T *virp,
2499 int off, /* offset for virp->vir_line */
2500 int convert UNUSED) /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501{
2502 char_u *retval;
2503 char_u *s, *d;
2504 long len;
2505
2506 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2507 {
2508 len = atol((char *)virp->vir_line + off + 1);
2509 retval = lalloc(len, TRUE);
2510 if (retval == NULL)
2511 {
2512 /* Line too long? File messed up? Skip next line. */
2513 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2514 return NULL;
2515 }
2516 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2517 s = retval + 1; /* Skip the leading '<' */
2518 }
2519 else
2520 {
2521 retval = vim_strsave(virp->vir_line + off);
2522 if (retval == NULL)
2523 return NULL;
2524 s = retval;
2525 }
2526
2527 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2528 d = retval;
2529 while (*s != NUL && *s != '\n')
2530 {
2531 if (s[0] == Ctrl_V && s[1] != NUL)
2532 {
2533 if (s[1] == 'n')
2534 *d++ = '\n';
2535 else
2536 *d++ = Ctrl_V;
2537 s += 2;
2538 }
2539 else
2540 *d++ = *s++;
2541 }
2542 *d = NUL;
2543
2544#ifdef FEAT_MBYTE
2545 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2546 {
2547 d = string_convert(&virp->vir_conv, retval, NULL);
2548 if (d != NULL)
2549 {
2550 vim_free(retval);
2551 retval = d;
2552 }
2553 }
2554#endif
2555
2556 return retval;
2557}
2558
2559/*
2560 * write string to viminfo file
2561 * - replace CTRL-V with CTRL-V CTRL-V
2562 * - replace '\n' with CTRL-V 'n'
2563 * - add a '\n' at the end
2564 *
2565 * For a long line:
2566 * - write " CTRL-V <length> \n " in first line
2567 * - write " < <string> \n " in second line
2568 */
2569 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002570viminfo_writestring(FILE *fd, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571{
2572 int c;
2573 char_u *s;
2574 int len = 0;
2575
2576 for (s = p; *s != NUL; ++s)
2577 {
2578 if (*s == Ctrl_V || *s == '\n')
2579 ++len;
2580 ++len;
2581 }
2582
2583 /* If the string will be too long, write its length and put it in the next
2584 * line. Take into account that some room is needed for what comes before
2585 * the string (e.g., variable name). Add something to the length for the
2586 * '<', NL and trailing NUL. */
2587 if (len > LSIZE / 2)
2588 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2589
2590 while ((c = *p++) != NUL)
2591 {
2592 if (c == Ctrl_V || c == '\n')
2593 {
2594 putc(Ctrl_V, fd);
2595 if (c == '\n')
2596 c = 'n';
2597 }
2598 putc(c, fd);
2599 }
2600 putc('\n', fd);
2601}
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002602
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002603/*
2604 * Write a string in quotes that barline_parse() can read back.
2605 * Breaks the line in less than LSIZE pieces when needed.
2606 * Returns remaining characters in the line.
2607 */
2608 int
2609barline_writestring(FILE *fd, char_u *s, int remaining_start)
2610{
2611 char_u *p;
2612 int remaining = remaining_start;
2613 int len = 2;
2614
2615 /* Count the number of characters produced, including quotes. */
2616 for (p = s; *p != NUL; ++p)
2617 {
2618 if (*p == NL)
2619 len += 2;
2620 else if (*p == '"' || *p == '\\')
2621 len += 2;
2622 else
2623 ++len;
2624 }
Bram Moolenaar25709572016-08-26 20:41:16 +02002625 if (len > remaining - 2)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002626 {
2627 fprintf(fd, ">%d\n|<", len);
2628 remaining = LSIZE - 20;
2629 }
2630
2631 putc('"', fd);
2632 for (p = s; *p != NUL; ++p)
2633 {
2634 if (*p == NL)
2635 {
2636 putc('\\', fd);
2637 putc('n', fd);
2638 --remaining;
2639 }
2640 else if (*p == '"' || *p == '\\')
2641 {
2642 putc('\\', fd);
2643 putc(*p, fd);
2644 --remaining;
2645 }
2646 else
2647 putc(*p, fd);
2648 --remaining;
2649
2650 if (remaining < 3)
2651 {
2652 putc('\n', fd);
2653 putc('|', fd);
2654 putc('<', fd);
2655 /* Leave enough space for another continuation. */
2656 remaining = LSIZE - 20;
2657 }
2658 }
2659 putc('"', fd);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002660 return remaining - 2;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002661}
2662
2663/*
2664 * Parse a viminfo line starting with '|'.
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002665 * Add each decoded value to "values".
Bram Moolenaarecefe712016-06-20 12:50:17 +02002666 * Returns TRUE if the next line is to be read after using the parsed values.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002667 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002668 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002669barline_parse(vir_T *virp, char_u *text, garray_T *values)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002670{
2671 char_u *p = text;
2672 char_u *nextp = NULL;
Bram Moolenaarfdd82fe2016-06-06 21:38:44 +02002673 char_u *buf = NULL;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002674 bval_T *value;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002675 int i;
2676 int allocated = FALSE;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002677 int eof;
Bram Moolenaar01227092016-06-11 14:47:40 +02002678#ifdef FEAT_MBYTE
2679 char_u *sconv;
2680 int converted;
2681#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002682
2683 while (*p == ',')
2684 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002685 ++p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002686 if (ga_grow(values, 1) == FAIL)
2687 break;
2688 value = (bval_T *)(values->ga_data) + values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002689
2690 if (*p == '>')
2691 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002692 /* Need to read a continuation line. Put strings in allocated
2693 * memory, because virp->vir_line is overwritten. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002694 if (!allocated)
2695 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002696 for (i = 0; i < values->ga_len; ++i)
2697 {
2698 bval_T *vp = (bval_T *)(values->ga_data) + i;
2699
2700 if (vp->bv_type == BVAL_STRING && !vp->bv_allocated)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002701 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002702 vp->bv_string = vim_strnsave(vp->bv_string, vp->bv_len);
2703 vp->bv_allocated = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002704 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002705 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002706 allocated = TRUE;
2707 }
2708
2709 if (vim_isdigit(p[1]))
2710 {
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002711 size_t len;
2712 size_t todo;
2713 size_t n;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002714
2715 /* String value was split into lines that are each shorter
2716 * than LSIZE:
2717 * |{bartype},>{length of "{text}{text2}"}
2718 * |<"{text1}
2719 * |<{text2}",{value}
Bram Moolenaarecefe712016-06-20 12:50:17 +02002720 * Length includes the quotes.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002721 */
2722 ++p;
2723 len = getdigits(&p);
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002724 buf = alloc((int)(len + 1));
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002725 if (buf == NULL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002726 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002727 p = buf;
2728 for (todo = len; todo > 0; todo -= n)
2729 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002730 eof = viminfo_readline(virp);
2731 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002732 || virp->vir_line[1] != '<')
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002733 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002734 /* File was truncated or garbled. Read another line if
2735 * this one starts with '|'. */
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002736 vim_free(buf);
Bram Moolenaarecefe712016-06-20 12:50:17 +02002737 return eof || virp->vir_line[0] == '|';
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002738 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002739 /* Get length of text, excluding |< and NL chars. */
2740 n = STRLEN(virp->vir_line);
2741 while (n > 0 && (virp->vir_line[n - 1] == NL
2742 || virp->vir_line[n - 1] == CAR))
2743 --n;
2744 n -= 2;
2745 if (n > todo)
2746 {
2747 /* more values follow after the string */
2748 nextp = virp->vir_line + 2 + todo;
2749 n = todo;
2750 }
2751 mch_memmove(p, virp->vir_line + 2, n);
2752 p += n;
2753 }
2754 *p = NUL;
2755 p = buf;
2756 }
2757 else
2758 {
2759 /* Line ending in ">" continues in the next line:
2760 * |{bartype},{lots of values},>
2761 * |<{value},{value}
2762 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002763 eof = viminfo_readline(virp);
2764 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002765 || virp->vir_line[1] != '<')
Bram Moolenaarecefe712016-06-20 12:50:17 +02002766 /* File was truncated or garbled. Read another line if
2767 * this one starts with '|'. */
2768 return eof || virp->vir_line[0] == '|';
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002769 p = virp->vir_line + 2;
2770 }
2771 }
2772
2773 if (isdigit(*p))
2774 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002775 value->bv_type = BVAL_NR;
2776 value->bv_nr = getdigits(&p);
2777 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002778 }
2779 else if (*p == '"')
2780 {
2781 int len = 0;
2782 char_u *s = p;
2783
2784 /* Unescape special characters in-place. */
2785 ++p;
2786 while (*p != '"')
2787 {
2788 if (*p == NL || *p == NUL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002789 return TRUE; /* syntax error, drop the value */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002790 if (*p == '\\')
2791 {
2792 ++p;
2793 if (*p == 'n')
2794 s[len++] = '\n';
2795 else
2796 s[len++] = *p;
2797 ++p;
2798 }
2799 else
2800 s[len++] = *p++;
2801 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002802 ++p;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002803 s[len] = NUL;
2804
Bram Moolenaar01227092016-06-11 14:47:40 +02002805#ifdef FEAT_MBYTE
2806 converted = FALSE;
2807 if (virp->vir_conv.vc_type != CONV_NONE && *s != NUL)
2808 {
2809 sconv = string_convert(&virp->vir_conv, s, NULL);
2810 if (sconv != NULL)
2811 {
2812 if (s == buf)
2813 vim_free(s);
2814 s = sconv;
2815 buf = s;
2816 converted = TRUE;
2817 }
2818 }
2819#endif
2820 /* Need to copy in allocated memory if the string wasn't allocated
2821 * above and we did allocate before, thus vir_line may change. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002822 if (s != buf && allocated)
2823 s = vim_strsave(s);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002824 value->bv_string = s;
2825 value->bv_type = BVAL_STRING;
2826 value->bv_len = len;
2827 value->bv_allocated = allocated
Bram Moolenaar01227092016-06-11 14:47:40 +02002828#ifdef FEAT_MBYTE
2829 || converted
2830#endif
2831 ;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002832 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002833 if (nextp != NULL)
2834 {
2835 /* values following a long string */
2836 p = nextp;
2837 nextp = NULL;
2838 }
2839 }
2840 else if (*p == ',')
2841 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002842 value->bv_type = BVAL_EMPTY;
2843 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002844 }
2845 else
2846 break;
2847 }
Bram Moolenaarecefe712016-06-20 12:50:17 +02002848 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002849}
2850
2851 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002852read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002853{
2854 char_u *p = virp->vir_line + 1;
2855 int bartype;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002856 garray_T values;
2857 bval_T *vp;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002858 int i;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002859 int read_next = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002860
2861 /* The format is: |{bartype},{value},...
2862 * For a very long string:
2863 * |{bartype},>{length of "{text}{text2}"}
2864 * |<{text1}
2865 * |<{text2},{value}
2866 * For a long line not using a string
2867 * |{bartype},{lots of values},>
2868 * |<{value},{value}
2869 */
2870 if (*p == '<')
2871 {
2872 /* Continuation line of an unrecognized item. */
2873 if (writing)
2874 ga_add_string(&virp->vir_barlines, virp->vir_line);
2875 }
2876 else
2877 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002878 ga_init2(&values, sizeof(bval_T), 20);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002879 bartype = getdigits(&p);
2880 switch (bartype)
2881 {
2882 case BARTYPE_VERSION:
2883 /* Only use the version when it comes before the encoding.
2884 * If it comes later it was copied by a Vim version that
2885 * doesn't understand the version. */
2886 if (!got_encoding)
2887 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002888 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002889 vp = (bval_T *)values.ga_data;
2890 if (values.ga_len > 0 && vp->bv_type == BVAL_NR)
2891 virp->vir_version = vp->bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002892 }
2893 break;
2894
2895 case BARTYPE_HISTORY:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002896 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002897 handle_viminfo_history(&values, writing);
2898 break;
2899
2900 case BARTYPE_REGISTER:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002901 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002902 handle_viminfo_register(&values, force);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002903 break;
2904
Bram Moolenaar2d358992016-06-12 21:20:54 +02002905 case BARTYPE_MARK:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002906 read_next = barline_parse(virp, p, &values);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002907 handle_viminfo_mark(&values, force);
2908 break;
2909
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002910 default:
2911 /* copy unrecognized line (for future use) */
2912 if (writing)
2913 ga_add_string(&virp->vir_barlines, virp->vir_line);
2914 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002915 for (i = 0; i < values.ga_len; ++i)
2916 {
2917 vp = (bval_T *)values.ga_data + i;
2918 if (vp->bv_type == BVAL_STRING && vp->bv_allocated)
2919 vim_free(vp->bv_string);
2920 }
2921 ga_clear(&values);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002922 }
2923
Bram Moolenaarecefe712016-06-20 12:50:17 +02002924 if (read_next)
2925 return viminfo_readline(virp);
2926 return FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002927}
2928
2929 static void
2930write_viminfo_version(FILE *fp_out)
2931{
2932 fprintf(fp_out, "# Viminfo version\n|%d,%d\n\n",
2933 BARTYPE_VERSION, VIMINFO_VERSION);
2934}
2935
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002936 static void
2937write_viminfo_barlines(vir_T *virp, FILE *fp_out)
2938{
2939 int i;
2940 garray_T *gap = &virp->vir_barlines;
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002941 int seen_useful = FALSE;
2942 char *line;
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002943
2944 if (gap->ga_len > 0)
2945 {
2946 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out);
2947
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002948 /* Skip over continuation lines until seeing a useful line. */
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002949 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002950 {
2951 line = ((char **)(gap->ga_data))[i];
2952 if (seen_useful || line[1] != '<')
2953 {
2954 fputs(line, fp_out);
2955 seen_useful = TRUE;
2956 }
2957 }
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002958 }
2959}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960#endif /* FEAT_VIMINFO */
2961
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002962/*
2963 * Return the current time in seconds. Calls time(), unless test_settime()
2964 * was used.
2965 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02002966 time_T
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002967vim_time(void)
2968{
2969# ifdef FEAT_EVAL
2970 return time_for_testing == 0 ? time(NULL) : time_for_testing;
2971# else
2972 return time(NULL);
2973# endif
2974}
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002975
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976/*
2977 * Implementation of ":fixdel", also used by get_stty().
2978 * <BS> resulting <Del>
2979 * ^? ^H
2980 * not ^? ^?
2981 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002983do_fixdel(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984{
2985 char_u *p;
2986
2987 p = find_termcode((char_u *)"kb");
2988 add_termcode((char_u *)"kD", p != NULL
2989 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2990}
2991
2992 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002993print_line_no_prefix(
2994 linenr_T lnum,
2995 int use_number,
2996 int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002998 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999
3000 if (curwin->w_p_nu || use_number)
3001 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003002 vim_snprintf((char *)numbuf, sizeof(numbuf),
3003 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar8820b482017-03-16 17:23:31 +01003004 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); /* Highlight line nrs */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003006 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007}
3008
3009/*
3010 * Print a text line. Also in silent mode ("ex -s").
3011 */
3012 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003013print_line(linenr_T lnum, int use_number, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014{
3015 int save_silent = silent_mode;
3016
Bram Moolenaard29459b2016-08-26 22:29:11 +02003017 /* apply :filter /pat/ */
3018 if (message_filtered(ml_get(lnum)))
3019 return;
3020
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003022 silent_mode = FALSE;
3023 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
3024 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 if (save_silent)
3026 {
3027 msg_putchar('\n');
3028 cursor_on(); /* msg_start() switches it off */
3029 out_flush();
3030 silent_mode = save_silent;
3031 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00003032 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033}
3034
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003035 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003036rename_buffer(char_u *new_fname)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003037{
3038 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02003039 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003040
Bram Moolenaar7e283842013-05-30 11:43:15 +02003041 buf = curbuf;
3042 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003043 /* buffer changed, don't change name now */
3044 if (buf != curbuf)
3045 return FAIL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003046#ifdef FEAT_EVAL
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003047 if (aborting()) /* autocmds may abort script processing */
3048 return FAIL;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003049#endif
3050 /*
3051 * The name of the current buffer will be changed.
3052 * A new (unlisted) buffer entry needs to be made to hold the old file
3053 * name, which will become the alternate file name.
3054 * But don't set the alternate file name if the buffer didn't have a
3055 * name.
3056 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02003057 fname = curbuf->b_ffname;
3058 sfname = curbuf->b_sfname;
3059 xfname = curbuf->b_fname;
3060 curbuf->b_ffname = NULL;
3061 curbuf->b_sfname = NULL;
3062 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003063 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02003064 curbuf->b_ffname = fname;
3065 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003066 return FAIL;
3067 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02003068 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003069 if (xfname != NULL && *xfname != NUL)
3070 {
3071 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
3072 if (buf != NULL && !cmdmod.keepalt)
3073 curwin->w_alt_fnum = buf->b_fnum;
3074 }
3075 vim_free(fname);
3076 vim_free(sfname);
Bram Moolenaar7e283842013-05-30 11:43:15 +02003077 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003078
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003079 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02003080 DO_AUTOCHDIR;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003081 return OK;
3082}
3083
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084/*
3085 * ":file[!] [fname]".
3086 */
3087 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003088ex_file(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003090 /* ":0file" removes the file name. Check for illegal uses ":3file",
3091 * "0file name", etc. */
3092 if (eap->addr_count > 0
3093 && (*eap->arg != NUL
3094 || eap->line2 > 0
3095 || eap->addr_count > 1))
3096 {
3097 EMSG(_(e_invarg));
3098 return;
3099 }
3100
3101 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003103 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 return;
Bram Moolenaarfc089602018-06-24 16:53:35 +02003105 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 }
Bram Moolenaarfc089602018-06-24 16:53:35 +02003107
3108 // print file name if no argument or 'F' is not in 'shortmess'
3109 if (*eap->arg == NUL || !shortmess(SHM_FILEINFO))
Bram Moolenaar426dd022016-03-15 15:09:29 +01003110 fileinfo(FALSE, FALSE, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111}
3112
3113/*
3114 * ":update".
3115 */
3116 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003117ex_update(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118{
3119 if (curbufIsChanged())
3120 (void)do_write(eap);
3121}
3122
3123/*
3124 * ":write" and ":saveas".
3125 */
3126 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003127ex_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128{
3129 if (eap->usefilter) /* input lines to shell command */
3130 do_bang(1, eap, FALSE, TRUE, FALSE);
3131 else
3132 (void)do_write(eap);
3133}
3134
3135/*
3136 * write current buffer to file 'eap->arg'
3137 * if 'eap->append' is TRUE, append to the file
3138 *
3139 * if *eap->arg == NUL write to current file
3140 *
3141 * return FAIL for failure, OK otherwise
3142 */
3143 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003144do_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145{
3146 int other;
3147 char_u *fname = NULL; /* init to shut up gcc */
3148 char_u *ffname;
3149 int retval = FAIL;
3150 char_u *free_fname = NULL;
3151#ifdef FEAT_BROWSE
3152 char_u *browse_file = NULL;
3153#endif
3154 buf_T *alt_buf = NULL;
Bram Moolenaar5c719942016-07-09 23:40:45 +02003155 int name_was_missing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156
3157 if (not_writing()) /* check 'write' option */
3158 return FAIL;
3159
3160 ffname = eap->arg;
3161#ifdef FEAT_BROWSE
3162 if (cmdmod.browse)
3163 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003164 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 NULL, NULL, NULL, curbuf);
3166 if (browse_file == NULL)
3167 goto theend;
3168 ffname = browse_file;
3169 }
3170#endif
3171 if (*ffname == NUL)
3172 {
3173 if (eap->cmdidx == CMD_saveas)
3174 {
3175 EMSG(_(e_argreq));
3176 goto theend;
3177 }
3178 other = FALSE;
3179 }
3180 else
3181 {
3182 fname = ffname;
3183 free_fname = fix_fname(ffname);
3184 /*
3185 * When out-of-memory, keep unexpanded file name, because we MUST be
3186 * able to write the file in this situation.
3187 */
3188 if (free_fname != NULL)
3189 ffname = free_fname;
3190 other = otherfile(ffname);
3191 }
3192
3193 /*
3194 * If we have a new file, put its name in the list of alternate file names.
3195 */
3196 if (other)
3197 {
3198 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
3199 || eap->cmdidx == CMD_saveas)
3200 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
3201 else
3202 alt_buf = buflist_findname(ffname);
3203 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
3204 {
3205 /* Overwriting a file that is loaded in another buffer is not a
3206 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00003207 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 goto theend;
3209 }
3210 }
3211
3212 /*
3213 * Writing to the current file is not allowed in readonly mode
3214 * and a file name is required.
3215 * "nofile" and "nowrite" buffers cannot be written implicitly either.
3216 */
3217 if (!other && (
3218#ifdef FEAT_QUICKFIX
3219 bt_dontwrite_msg(curbuf) ||
3220#endif
3221 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
3222 goto theend;
3223
3224 if (!other)
3225 {
3226 ffname = curbuf->b_ffname;
3227 fname = curbuf->b_fname;
3228 /*
3229 * Not writing the whole file is only allowed with '!'.
3230 */
3231 if ( (eap->line1 != 1
3232 || eap->line2 != curbuf->b_ml.ml_line_count)
3233 && !eap->forceit
3234 && !eap->append
3235 && !p_wa)
3236 {
3237#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3238 if (p_confirm || cmdmod.confirm)
3239 {
3240 if (vim_dialog_yesno(VIM_QUESTION, NULL,
3241 (char_u *)_("Write partial file?"), 2) != VIM_YES)
3242 goto theend;
3243 eap->forceit = TRUE;
3244 }
3245 else
3246#endif
3247 {
3248 EMSG(_("E140: Use ! to write partial buffer"));
3249 goto theend;
3250 }
3251 }
3252 }
3253
3254 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
3255 {
3256 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
3257 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 buf_T *was_curbuf = curbuf;
3259
3260 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003261 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003262#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 if (curbuf != was_curbuf || aborting())
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003264#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 if (curbuf != was_curbuf)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003266#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 {
3268 /* buffer changed, don't change name now */
3269 retval = FAIL;
3270 goto theend;
3271 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 /* Exchange the file names for the current and the alternate
3273 * buffer. This makes it look like we are now editing the buffer
3274 * under the new name. Must be done before buf_write(), because
3275 * if there is no file name and 'cpo' contains 'F', it will set
3276 * the file name. */
3277 fname = alt_buf->b_fname;
3278 alt_buf->b_fname = curbuf->b_fname;
3279 curbuf->b_fname = fname;
3280 fname = alt_buf->b_ffname;
3281 alt_buf->b_ffname = curbuf->b_ffname;
3282 curbuf->b_ffname = fname;
3283 fname = alt_buf->b_sfname;
3284 alt_buf->b_sfname = curbuf->b_sfname;
3285 curbuf->b_sfname = fname;
3286 buf_name_changed(curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003287
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003289 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 if (!alt_buf->b_p_bl)
3291 {
3292 alt_buf->b_p_bl = TRUE;
3293 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
3294 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003295#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 if (curbuf != was_curbuf || aborting())
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003297#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 if (curbuf != was_curbuf)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003299#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 {
3301 /* buffer changed, don't write the file */
3302 retval = FAIL;
3303 goto theend;
3304 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003305
3306 /* If 'filetype' was empty try detecting it now. */
3307 if (*curbuf->b_p_ft == NUL)
3308 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003309 if (au_has_group((char_u *)"filetypedetect"))
3310 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
Bram Moolenaar1610d052016-06-09 22:53:01 +02003311 TRUE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00003312 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003313 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01003314
3315 /* Autocommands may have changed buffer names, esp. when
3316 * 'autochdir' is set. */
3317 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 }
3319
Bram Moolenaar5c719942016-07-09 23:40:45 +02003320 name_was_missing = curbuf->b_ffname == NULL;
3321
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
3323 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003324
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003325 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003326 if (eap->cmdidx == CMD_saveas)
3327 {
3328 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00003329 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003330 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003331 redraw_tabline = TRUE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003332 }
Bram Moolenaar5c719942016-07-09 23:40:45 +02003333 }
3334
3335 /* Change directories when the 'acd' option is set and the file name
3336 * got changed or set. */
3337 if (eap->cmdidx == CMD_saveas || name_was_missing)
3338 {
Bram Moolenaar6f470022018-04-10 18:47:20 +02003339 DO_AUTOCHDIR;
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003340 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 }
3342
3343theend:
3344#ifdef FEAT_BROWSE
3345 vim_free(browse_file);
3346#endif
3347 vim_free(free_fname);
3348 return retval;
3349}
3350
3351/*
3352 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
3353 * BF_NEW or BF_READERR, check for overwriting current file.
3354 * May set eap->forceit if a dialog says it's OK to overwrite.
3355 * Return OK if it's OK, FAIL if it is not.
3356 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02003357 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003358check_overwrite(
3359 exarg_T *eap,
3360 buf_T *buf,
3361 char_u *fname, /* file name to be used (can differ from
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 buf->ffname) */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003363 char_u *ffname, /* full path version of fname */
3364 int other) /* writing under other name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365{
3366 /*
3367 * write to other file or b_flags set or not writing the whole file:
3368 * overwriting only allowed with '!'
3369 */
3370 if ( (other
3371 || (buf->b_flags & BF_NOTEDITED)
3372 || ((buf->b_flags & BF_NEW)
3373 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
3374 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00003376#ifdef FEAT_QUICKFIX
3377 && !bt_nofile(buf)
3378#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 && vim_fexists(ffname))
3380 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003381 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003383#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00003384 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003385 if (mch_isdir(ffname))
3386 {
3387 EMSG2(_(e_isadir2), ffname);
3388 return FAIL;
3389 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390#endif
3391#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003392 if (p_confirm || cmdmod.confirm)
3393 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003394 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003396 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
3397 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
3398 return FAIL;
3399 eap->forceit = TRUE;
3400 }
3401 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003403 {
3404 EMSG(_(e_exists));
3405 return FAIL;
3406 }
3407 }
3408
3409 /* For ":w! filename" check that no swap file exists for "filename". */
3410 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003412 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003413 char_u *p;
3414 int r;
3415 char_u *swapname;
3416
3417 /* We only try the first entry in 'directory', without checking if
3418 * it's writable. If the "." directory is not writable the write
3419 * will probably fail anyway.
3420 * Use 'shortname' of the current buffer, since there is no buffer
3421 * for the written file. */
3422 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02003423 {
3424 dir = alloc(5);
3425 if (dir == NULL)
3426 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003427 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003428 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003429 else
3430 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003431 dir = alloc(MAXPATHL);
3432 if (dir == NULL)
3433 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003434 p = p_dir;
3435 copy_option_part(&p, dir, MAXPATHL, ",");
3436 }
3437 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003438 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003439 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003440 if (r)
3441 {
3442#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3443 if (p_confirm || cmdmod.confirm)
3444 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003445 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003446
3447 dialog_msg(buff,
3448 _("Swap file \"%s\" exists, overwrite anyway?"),
3449 swapname);
3450 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
3451 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003452 {
3453 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003454 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003455 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003456 eap->forceit = TRUE;
3457 }
3458 else
3459#endif
3460 {
3461 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
3462 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003463 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003464 return FAIL;
3465 }
3466 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003467 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 }
3469 }
3470 return OK;
3471}
3472
3473/*
3474 * Handle ":wnext", ":wNext" and ":wprevious" commands.
3475 */
3476 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003477ex_wnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478{
3479 int i;
3480
3481 if (eap->cmd[1] == 'n')
3482 i = curwin->w_arg_idx + (int)eap->line2;
3483 else
3484 i = curwin->w_arg_idx - (int)eap->line2;
3485 eap->line1 = 1;
3486 eap->line2 = curbuf->b_ml.ml_line_count;
3487 if (do_write(eap) != FAIL)
3488 do_argfile(eap, i);
3489}
3490
3491/*
3492 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
3493 */
3494 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003495do_wqall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496{
3497 buf_T *buf;
3498 int error = 0;
3499 int save_forceit = eap->forceit;
3500
3501 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
3502 exiting = TRUE;
3503
Bram Moolenaar29323592016-07-24 22:04:11 +02003504 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 {
Bram Moolenaar7a760922018-02-19 23:10:02 +01003506#ifdef FEAT_TERMINAL
3507 if (exiting && term_job_running(buf->b_term))
3508 {
3509 no_write_message_nobang(buf);
3510 ++error;
3511 }
3512 else
3513#endif
Bram Moolenaar059db5c2017-10-15 22:42:23 +02003514 if (bufIsChanged(buf) && !bt_dontwrite(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 {
3516 /*
3517 * Check if there is a reason the buffer cannot be written:
3518 * 1. if the 'write' option is set
3519 * 2. if there is no file name (even after browsing)
3520 * 3. if the 'readonly' is set (even after a dialog)
3521 * 4. if overwriting is allowed (even after a dialog)
3522 */
3523 if (not_writing())
3524 {
3525 ++error;
3526 break;
3527 }
3528#ifdef FEAT_BROWSE
3529 /* ":browse wall": ask for file name if there isn't one */
3530 if (buf->b_ffname == NULL && cmdmod.browse)
3531 browse_save_fname(buf);
3532#endif
3533 if (buf->b_ffname == NULL)
3534 {
3535 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
3536 ++error;
3537 }
3538 else if (check_readonly(&eap->forceit, buf)
3539 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3540 FALSE) == FAIL)
3541 {
3542 ++error;
3543 }
3544 else
3545 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003546 bufref_T bufref;
3547
3548 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 if (buf_write_all(buf, eap->forceit) == FAIL)
3550 ++error;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 /* an autocommand may have deleted the buffer */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003552 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 buf = firstbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 }
3555 eap->forceit = save_forceit; /* check_overwrite() may set it */
3556 }
3557 }
3558 if (exiting)
3559 {
3560 if (!error)
3561 getout(0); /* exit Vim */
3562 not_exiting();
3563 }
3564}
3565
3566/*
3567 * Check the 'write' option.
3568 * Return TRUE and give a message when it's not st.
3569 */
3570 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003571not_writing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572{
3573 if (p_write)
3574 return FALSE;
3575 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
3576 return TRUE;
3577}
3578
3579/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003580 * Check if a buffer is read-only (either 'readonly' option is set or file is
3581 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3582 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 */
3584 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003585check_readonly(int *forceit, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003587 stat_T st;
Bram Moolenaar5386a122007-06-28 20:02:32 +00003588
3589 /* Handle a file being readonly when the 'readonly' option is set or when
3590 * the file exists and permissions are read-only.
3591 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3592 * important for device checks but not here. */
3593 if (!*forceit && (buf->b_p_ro
3594 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3595 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 {
3597#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3598 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3599 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003600 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601
Bram Moolenaar5386a122007-06-28 20:02:32 +00003602 if (buf->b_p_ro)
3603 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3604 buf->b_fname);
3605 else
3606 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 +00003607 buf->b_fname);
3608
3609 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3610 {
3611 /* Set forceit, to force the writing of a readonly file */
3612 *forceit = TRUE;
3613 return FALSE;
3614 }
3615 else
3616 return TRUE;
3617 }
3618 else
3619#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003620 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003622 else
3623 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3624 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 return TRUE;
3626 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003627
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 return FALSE;
3629}
3630
3631/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003632 * Try to abandon current file and edit a new or existing file.
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003633 * "fnum" is the number of the file, if zero use ffname/sfname.
3634 * "lnum" is the line number for the cursor in the new file (if non-zero).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 *
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003636 * Return:
3637 * GETFILE_ERROR for "normal" error,
3638 * GETFILE_NOT_WRITTEN for "not written" error,
3639 * GETFILE_SAME_FILE for success
3640 * GETFILE_OPEN_OTHER for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 */
3642 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003643getfile(
3644 int fnum,
3645 char_u *ffname,
3646 char_u *sfname,
3647 int setpm,
3648 linenr_T lnum,
3649 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650{
3651 int other;
3652 int retval;
3653 char_u *free_me = NULL;
3654
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003655 if (text_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003656 return GETFILE_ERROR;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003657 if (curbuf_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003658 return GETFILE_ERROR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659
3660 if (fnum == 0)
3661 {
3662 /* make ffname full path, set sfname */
3663 fname_expand(curbuf, &ffname, &sfname);
3664 other = otherfile(ffname);
3665 free_me = ffname; /* has been allocated, free() later */
3666 }
3667 else
3668 other = (fnum != curbuf->b_fnum);
3669
3670 if (other)
3671 ++no_wait_return; /* don't wait for autowrite message */
Bram Moolenaareb44a682017-08-03 22:44:55 +02003672 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3674 {
3675#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3676 if (p_confirm && p_write)
3677 dialog_changed(curbuf, FALSE);
3678 if (curbufIsChanged())
3679#endif
3680 {
3681 if (other)
3682 --no_wait_return;
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02003683 no_write_message();
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003684 retval = GETFILE_NOT_WRITTEN; /* file has been changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 goto theend;
3686 }
3687 }
3688 if (other)
3689 --no_wait_return;
3690 if (setpm)
3691 setpcmark();
3692 if (!other)
3693 {
3694 if (lnum != 0)
3695 curwin->w_cursor.lnum = lnum;
3696 check_cursor_lnum();
3697 beginline(BL_SOL | BL_FIX);
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003698 retval = GETFILE_SAME_FILE; /* it's in the same file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 }
3700 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaareb44a682017-08-03 22:44:55 +02003701 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003702 curwin) == OK)
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003703 retval = GETFILE_OPEN_OTHER; /* opened another file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 else
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003705 retval = GETFILE_ERROR; /* error encountered */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706
3707theend:
3708 vim_free(free_me);
3709 return retval;
3710}
3711
3712/*
3713 * start editing a new file
3714 *
3715 * fnum: file number; if zero use ffname/sfname
3716 * ffname: the file name
3717 * - full path if sfname used,
3718 * - any file name if sfname is NULL
3719 * - empty string to re-edit with the same file name (but may be
3720 * in a different directory)
3721 * - NULL to start an empty buffer
3722 * sfname: the short file name (or NULL)
3723 * eap: contains the command to be executed after loading the file and
3724 * forced 'ff' and 'fenc'
3725 * newlnum: if > 0: put cursor on this line number (if possible)
3726 * if ECMD_LASTL: use last position in loaded file
3727 * if ECMD_LAST: use last position in all files
3728 * if ECMD_ONE: use first line
3729 * flags:
3730 * ECMD_HIDE: if TRUE don't free the current buffer
3731 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3732 * ECMD_OLDBUF: use existing buffer if it exists
3733 * ECMD_FORCEIT: ! used for Ex command
3734 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003735 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003736 * window, NULL when splitting the window first. When not NULL info
3737 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 *
3739 * return FAIL for failure, OK otherwise
3740 */
3741 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003742do_ecmd(
3743 int fnum,
3744 char_u *ffname,
3745 char_u *sfname,
3746 exarg_T *eap, /* can be NULL! */
3747 linenr_T newlnum,
3748 int flags,
3749 win_T *oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750{
3751 int other_file; /* TRUE if editing another file */
3752 int oldbuf; /* TRUE if using existing buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 int auto_buf = FALSE; /* TRUE if autocommands brought us
3754 into the buffer unexpectedly */
3755 char_u *new_name = NULL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003756#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003757 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758#endif
3759 buf_T *buf;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003760 bufref_T bufref;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003761 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 char_u *free_fname = NULL;
3763#ifdef FEAT_BROWSE
3764 char_u *browse_file = NULL;
3765#endif
3766 int retval = FAIL;
3767 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003768 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 linenr_T topline = 0;
3770 int newcol = -1;
3771 int solcol = -1;
3772 pos_T *pos;
3773#ifdef FEAT_SUN_WORKSHOP
3774 char_u *cp;
3775#endif
3776 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003777#ifdef FEAT_SPELL
3778 int did_get_winopts = FALSE;
3779#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003780 int readfile_flags = 0;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003781 int did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782
3783 if (eap != NULL)
3784 command = eap->do_ecmd_cmd;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003785 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786
3787 if (fnum != 0)
3788 {
3789 if (fnum == curbuf->b_fnum) /* file is already being edited */
3790 return OK; /* nothing to do */
3791 other_file = TRUE;
3792 }
3793 else
3794 {
3795#ifdef FEAT_BROWSE
3796 if (cmdmod.browse)
3797 {
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003798 if (
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003799# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003800 !gui.in_use &&
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003801# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003802 au_has_group((char_u *)"FileExplorer"))
3803 {
3804 /* No browsing supported but we do have the file explorer:
3805 * Edit the directory. */
3806 if (ffname == NULL || !mch_isdir(ffname))
3807 ffname = (char_u *)".";
3808 }
3809 else
3810 {
3811 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003813 if (browse_file == NULL)
3814 goto theend;
3815 ffname = browse_file;
3816 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 }
3818#endif
3819 /* if no short name given, use ffname for short name */
3820 if (sfname == NULL)
3821 sfname = ffname;
3822#ifdef USE_FNAME_CASE
3823# ifdef USE_LONG_FNAME
3824 if (USE_LONG_FNAME)
3825# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003826 if (sfname != NULL)
3827 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828#endif
3829
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3831 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832
3833 if (ffname == NULL)
3834 other_file = TRUE;
3835 /* there is no file name */
3836 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3837 other_file = FALSE;
3838 else
3839 {
3840 if (*ffname == NUL) /* re-edit with same file name */
3841 {
3842 ffname = curbuf->b_ffname;
3843 sfname = curbuf->b_fname;
3844 }
3845 free_fname = fix_fname(ffname); /* may expand to full path name */
3846 if (free_fname != NULL)
3847 ffname = free_fname;
3848 other_file = otherfile(ffname);
3849#ifdef FEAT_SUN_WORKSHOP
3850 if (usingSunWorkShop && p_acd
3851 && (cp = vim_strrchr(sfname, '/')) != NULL)
3852 sfname = ++cp;
3853#endif
3854 }
3855 }
3856
3857 /*
3858 * if the file was changed we may not be allowed to abandon it
3859 * - if we are going to re-edit the same file
3860 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3861 */
3862 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3863 || (curbuf->b_nwindows == 1
3864 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003865 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3866 | (other_file ? 0 : CCGD_MULTWIN)
3867 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3868 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 {
3870 if (fnum == 0 && other_file && ffname != NULL)
3871 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3872 goto theend;
3873 }
3874
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 /*
3876 * End Visual mode before switching to another buffer, so the text can be
3877 * copied into the GUI selection buffer.
3878 */
3879 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003881#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003882 if ((command != NULL || newlnum > (linenr_T)0)
3883 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3884 {
3885 int len;
3886 char_u *p;
3887
3888 /* Set v:swapcommand for the SwapExists autocommands. */
3889 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003890 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003891 else
3892 len = 30;
3893 p = alloc((unsigned)len);
3894 if (p != NULL)
3895 {
3896 if (command != NULL)
3897 vim_snprintf((char *)p, len, ":%s\r", command);
3898 else
3899 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3900 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3901 did_set_swapcommand = TRUE;
3902 vim_free(p);
3903 }
3904 }
3905#endif
3906
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 /*
3908 * If we are starting to edit another file, open a (new) buffer.
3909 * Otherwise we re-use the current buffer.
3910 */
3911 if (other_file)
3912 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 if (!(flags & ECMD_ADDBUF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003915 if (!cmdmod.keepalt)
3916 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003917 if (oldwin != NULL)
3918 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 }
3920
3921 if (fnum)
3922 buf = buflist_findnr(fnum);
3923 else
3924 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 if (flags & ECMD_ADDBUF)
3926 {
3927 linenr_T tlnum = 1L;
3928
3929 if (command != NULL)
3930 {
3931 tlnum = atol((char *)command);
3932 if (tlnum <= 0)
3933 tlnum = 1L;
3934 }
3935 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3936 goto theend;
3937 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 buf = buflist_new(ffname, sfname, 0L,
3939 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003940
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003941 /* autocommands may change curwin and curbuf */
3942 if (oldwin != NULL)
3943 oldwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003944 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 }
3946 if (buf == NULL)
3947 goto theend;
3948 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3949 {
3950 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 }
3952 else /* existing memfile */
3953 {
3954 oldbuf = TRUE;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003955 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 (void)buf_check_timestamp(buf, FALSE);
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003957 /* Check if autocommands made the buffer invalid or changed the
3958 * current buffer. */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003959 if (!bufref_valid(&bufref) || curbuf != old_curbuf.br_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 goto theend;
3961#ifdef FEAT_EVAL
3962 if (aborting()) /* autocmds may abort script processing */
3963 goto theend;
3964#endif
3965 }
3966
3967 /* May jump to last used line number for a loaded buffer or when asked
3968 * for explicitly */
3969 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3970 {
3971 pos = buflist_findfpos(buf);
3972 newlnum = pos->lnum;
3973 solcol = pos->col;
3974 }
3975
3976 /*
3977 * Make the (new) buffer the one used by the current window.
3978 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3979 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003980 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 */
3982 if (buf != curbuf)
3983 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 /*
3985 * Be careful: The autocommands may delete any buffer and change
3986 * the current buffer.
3987 * - If the buffer we are going to edit is deleted, give up.
3988 * - If the current buffer is deleted, prefer to load the new
3989 * buffer when loading a buffer is required. This avoids
3990 * loading another buffer which then must be closed again.
3991 * - If we ended up in the new buffer already, need to skip a few
3992 * things, set auto_buf.
3993 */
3994 if (buf->b_fname != NULL)
3995 new_name = vim_strsave(buf->b_fname);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003996 set_bufref(&au_new_curbuf, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003998 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004000 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 delbuf_msg(new_name); /* frees new_name */
4002 goto theend;
4003 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004004#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 if (aborting()) /* autocmds may abort script processing */
4006 {
4007 vim_free(new_name);
4008 goto theend;
4009 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004010#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 if (buf == curbuf) /* already in new buffer */
4012 auto_buf = TRUE;
4013 else
4014 {
Bram Moolenaar5a497892016-09-03 16:29:04 +02004015 win_T *the_curwin = curwin;
4016
4017 /* Set the w_closing flag to avoid that autocommands close the
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004018 * window. And set b_locked for the same reason. */
Bram Moolenaar5a497892016-09-03 16:29:04 +02004019 the_curwin->w_closing = TRUE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004020 ++buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +02004021
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004022 if (curbuf == old_curbuf.br_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 buf_copy_options(buf, BCO_ENTER);
4024
Bram Moolenaar5a497892016-09-03 16:29:04 +02004025 /* Close the link to the current buffer. This will set
Bram Moolenaaraeac9002016-09-06 22:15:08 +02004026 * oldwin->w_buffer to NULL. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004027 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00004028 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01004029 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030
Bram Moolenaar5a497892016-09-03 16:29:04 +02004031 the_curwin->w_closing = FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02004032 --buf->b_locked;
Bram Moolenaarfc573802011-12-30 15:01:59 +01004033
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004034#ifdef FEAT_EVAL
Bram Moolenaar5a497892016-09-03 16:29:04 +02004035 /* autocmds may abort script processing */
4036 if (aborting() && curwin->w_buffer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 {
4038 vim_free(new_name);
4039 goto theend;
4040 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004041#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 /* Be careful again, like above. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004043 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004045 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 delbuf_msg(new_name); /* frees new_name */
4047 goto theend;
4048 }
4049 if (buf == curbuf) /* already in new buffer */
4050 auto_buf = TRUE;
4051 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02004053#ifdef FEAT_SYN_HL
4054 /*
4055 * <VN> We could instead free the synblock
4056 * and re-attach to buffer, perhaps.
4057 */
Bram Moolenaarf1d13472017-07-11 18:28:46 +02004058 if (curwin->w_buffer == NULL
4059 || curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02004060 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004061#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 curwin->w_buffer = buf;
4063 curbuf = buf;
4064 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004065
4066 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
4067 if (!oldbuf && eap != NULL)
4068 {
4069 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02004070#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004071 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02004072#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 }
4075
4076 /* May get the window options from the last time this buffer
4077 * was in this window (or another window). If not used
4078 * before, reset the local window options to the global
4079 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00004080 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004081#ifdef FEAT_SPELL
4082 did_get_winopts = TRUE;
4083#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 }
4085 vim_free(new_name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004086 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004087 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089
4090 curwin->w_pcmark.lnum = 1;
4091 curwin->w_pcmark.col = 0;
4092 }
4093 else /* !other_file */
4094 {
Bram Moolenaar0c72fe42018-03-29 16:04:08 +02004095 if ((flags & ECMD_ADDBUF) || check_fname() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01004097
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 oldbuf = (flags & ECMD_OLDBUF);
4099 }
4100
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004101 /* Don't redraw until the cursor is in the right line, otherwise
4102 * autocommands may cause ml_get errors. */
4103 ++RedrawingDisabled;
4104 did_inc_redrawing_disabled = TRUE;
4105
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004106 buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 if ((flags & ECMD_SET_HELP) || keep_help_flag)
4108 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004109 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 }
4111 else
4112 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 /* Don't make a buffer listed if it's a help buffer. Useful when
4114 * using CTRL-O to go back to a help file. */
4115 if (!curbuf->b_help)
4116 set_buflisted(TRUE);
4117 }
4118
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 /* If autocommands change buffers under our fingers, forget about
4120 * editing the file. */
4121 if (buf != curbuf)
4122 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004123#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 if (aborting()) /* autocmds may abort script processing */
4125 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004126#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127
4128 /* Since we are starting to edit a file, consider the filetype to be
4129 * unset. Helps for when an autocommand changes files and expects syntax
4130 * highlighting to work in the other file. */
4131 did_filetype = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132
4133/*
4134 * other_file oldbuf
4135 * FALSE FALSE re-edit same file, buffer is re-used
4136 * FALSE TRUE re-edit same file, nothing changes
4137 * TRUE FALSE start editing new file, new buffer
4138 * TRUE TRUE start editing in existing buffer (nothing to do)
4139 */
4140 if (!other_file && !oldbuf) /* re-use the buffer */
4141 {
4142 set_last_cursor(curwin); /* may set b_last_cursor */
4143 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
4144 {
4145 newlnum = curwin->w_cursor.lnum;
4146 solcol = curwin->w_cursor.col;
4147 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 buf = curbuf;
4149 if (buf->b_fname != NULL)
4150 new_name = vim_strsave(buf->b_fname);
4151 else
4152 new_name = NULL;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004153 set_bufref(&bufref, buf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004154
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004155 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
4156 {
4157 /* Save all the text, so that the reload can be undone.
4158 * Sync first so that this is a separate undo-able action. */
4159 u_sync(FALSE);
4160 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
4161 == FAIL)
Bram Moolenaar1e225822016-07-30 21:48:59 +02004162 {
4163 vim_free(new_name);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004164 goto theend;
Bram Moolenaar1e225822016-07-30 21:48:59 +02004165 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004166 u_unchanged(curbuf);
4167 buf_freeall(curbuf, BFA_KEEP_UNDO);
4168
4169 /* tell readfile() not to clear or reload undo info */
4170 readfile_flags = READ_KEEP_UNDO;
4171 }
4172 else
4173 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004174
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 /* If autocommands deleted the buffer we were going to re-edit, give
4176 * up and jump to the end. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004177 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 {
4179 delbuf_msg(new_name); /* frees new_name */
4180 goto theend;
4181 }
4182 vim_free(new_name);
4183
4184 /* If autocommands change buffers under our fingers, forget about
4185 * re-editing the file. Should do the buf_clear_file(), but perhaps
4186 * the autocommands changed the buffer... */
4187 if (buf != curbuf)
4188 goto theend;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004189#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 if (aborting()) /* autocmds may abort script processing */
4191 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192#endif
4193 buf_clear_file(curbuf);
4194 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
4195 curbuf->b_op_end.lnum = 0;
4196 }
4197
4198/*
4199 * If we get here we are sure to start editing
4200 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 /* Assume success now */
4202 retval = OK;
4203
4204 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 * Check if we are editing the w_arg_idx file in the argument list.
4206 */
4207 check_arg_idx(curwin);
4208
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 if (!auto_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 {
4211 /*
4212 * Set cursor and init window before reading the file and executing
4213 * autocommands. This allows for the autocommands to position the
4214 * cursor.
4215 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004216 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217
4218#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004219 /* It's possible that all lines in the buffer changed. Need to update
4220 * automatic folding for all windows where it's used. */
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004221 {
4222 win_T *win;
4223 tabpage_T *tp;
4224
4225 FOR_ALL_TAB_WINDOWS(tp, win)
4226 if (win->w_buffer == curbuf)
4227 foldUpdateAll(win);
4228 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229#endif
4230
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004231 /* Change directories when the 'acd' option is set. */
Bram Moolenaar6f470022018-04-10 18:47:20 +02004232 DO_AUTOCHDIR;
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004233
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 /*
4235 * Careful: open_buffer() and apply_autocmds() may change the current
4236 * buffer and window.
4237 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01004238 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 topline = curwin->w_topline;
4240 if (!oldbuf) /* need to read the file */
4241 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004242#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 swap_exists_action = SEA_DIALOG;
4244#endif
4245 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
4246
4247 /*
4248 * Open the buffer and read the file.
4249 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004250#if defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004251 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 retval = FAIL;
4253#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004254 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255#endif
4256
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004257#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 if (swap_exists_action == SEA_QUIT)
4259 retval = FAIL;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004260 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261#endif
4262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 else
4264 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004265 /* Read the modelines, but only to set window-local options. Any
4266 * buffer-local options have already been set and may have been
4267 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00004268 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004269
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
4271 &retval);
4272 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
4273 &retval);
4274 }
4275 check_arg_idx(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276
Bram Moolenaareab316b2015-03-24 11:46:30 +01004277 /* If autocommands change the cursor position or topline, we should
Bram Moolenaaradb8fbe2018-06-04 20:34:23 +02004278 * keep it. Also when it moves within a line. But not when it moves
4279 * to the first non-blank. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004280 if (!EQUAL_POS(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 {
Bram Moolenaaradb8fbe2018-06-04 20:34:23 +02004282 char_u *text = ml_get_curline();
4283
4284 if (curwin->w_cursor.lnum != orig_pos.lnum
4285 || curwin->w_cursor.col != (int)(skipwhite(text) - text))
4286 {
4287 newlnum = curwin->w_cursor.lnum;
4288 newcol = curwin->w_cursor.col;
4289 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 }
4291 if (curwin->w_topline == topline)
4292 topline = 0;
4293
4294 /* Even when cursor didn't move we need to recompute topline. */
4295 changed_line_abv_curs();
4296
4297#ifdef FEAT_TITLE
4298 maketitle();
4299#endif
4300 }
4301
4302#ifdef FEAT_DIFF
4303 /* Tell the diff stuff that this buffer is new and/or needs updating.
4304 * Also needed when re-editing the same buffer, because unloading will
4305 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004306 if (curwin->w_p_diff)
4307 {
4308 diff_buf_add(curbuf);
4309 diff_invalidate(curbuf);
4310 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311#endif
4312
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004313#ifdef FEAT_SPELL
4314 /* If the window options were changed may need to set the spell language.
4315 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02004316 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
4317 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004318#endif
4319
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 if (command == NULL)
4321 {
4322 if (newcol >= 0) /* position set by autocommands */
4323 {
4324 curwin->w_cursor.lnum = newlnum;
4325 curwin->w_cursor.col = newcol;
4326 check_cursor();
4327 }
4328 else if (newlnum > 0) /* line number from caller or old position */
4329 {
4330 curwin->w_cursor.lnum = newlnum;
4331 check_cursor_lnum();
4332 if (solcol >= 0 && !p_sol)
4333 {
4334 /* 'sol' is off: Use last known column. */
4335 curwin->w_cursor.col = solcol;
4336 check_cursor_col();
4337#ifdef FEAT_VIRTUALEDIT
4338 curwin->w_cursor.coladd = 0;
4339#endif
4340 curwin->w_set_curswant = TRUE;
4341 }
4342 else
4343 beginline(BL_SOL | BL_FIX);
4344 }
4345 else /* no line number, go to last line in Ex mode */
4346 {
4347 if (exmode_active)
4348 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4349 beginline(BL_WHITE | BL_FIX);
4350 }
4351 }
4352
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 /* Check if cursors in other windows on the same buffer are still valid */
4354 check_lnums(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355
4356 /*
4357 * Did not read the file, need to show some info about the file.
4358 * Do this after setting the cursor.
4359 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004360 if (oldbuf && !auto_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 {
4362 int msg_scroll_save = msg_scroll;
4363
4364 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
4365 * message. */
4366 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
4367 msg_scroll = FALSE;
4368 if (!msg_scroll) /* wait a bit when overwriting an error msg */
4369 check_for_delay(FALSE);
4370 msg_start();
4371 msg_scroll = msg_scroll_save;
4372 msg_scrolled_ign = TRUE;
4373
Bram Moolenaar426dd022016-03-15 15:09:29 +01004374 if (!shortmess(SHM_FILEINFO))
4375 fileinfo(FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376
4377 msg_scrolled_ign = FALSE;
4378 }
4379
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02004380#ifdef FEAT_VIMINFO
4381 curbuf->b_last_used = vim_time();
4382#endif
4383
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 if (command != NULL)
4385 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
4386
4387#ifdef FEAT_KEYMAP
4388 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004389 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390#endif
4391
4392 --RedrawingDisabled;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004393 did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 if (!skip_redraw)
4395 {
4396 n = p_so;
4397 if (topline == 0 && command == NULL)
4398 p_so = 999; /* force cursor halfway the window */
4399 update_topline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 curwin->w_scbind_pos = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 p_so = n;
4402 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
4403 }
4404
4405 if (p_im)
4406 need_start_insertmode = TRUE;
4407
Bram Moolenaar15833232018-02-03 18:33:17 +01004408#ifdef FEAT_AUTOCHDIR
4409 /* Change directories when the 'acd' option is set and we aren't already in
4410 * that directory (should already be done above). Expect getcwd() to be
4411 * faster than calling shorten_fnames() unnecessarily. */
4412 if (p_acd && curbuf->b_ffname != NULL)
4413 {
4414 char_u curdir[MAXPATHL];
4415 char_u filedir[MAXPATHL];
4416
4417 vim_strncpy(filedir, curbuf->b_ffname, MAXPATHL - 1);
4418 *gettail_sep(filedir) = NUL;
4419 if (mch_dirname(curdir, MAXPATHL) != FAIL
4420 && vim_fnamecmp(curdir, filedir) != 0)
4421 do_autochdir();
4422 }
4423#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00004425#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02004426 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 {
4428# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02004429 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
4431# endif
4432# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004433 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00004434 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435# endif
4436 }
4437#endif
4438
4439theend:
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004440 if (did_inc_redrawing_disabled)
4441 --RedrawingDisabled;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004442#if defined(FEAT_EVAL)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004443 if (did_set_swapcommand)
4444 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
4445#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446#ifdef FEAT_BROWSE
4447 vim_free(browse_file);
4448#endif
4449 vim_free(free_fname);
4450 return retval;
4451}
4452
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004454delbuf_msg(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455{
4456 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
4457 name == NULL ? (char_u *)"" : name);
4458 vim_free(name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004459 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004460 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004463static int append_indent = 0; /* autoindent for first line */
4464
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465/*
4466 * ":insert" and ":append", also used by ":change"
4467 */
4468 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004469ex_append(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470{
4471 char_u *theline;
4472 int did_undo = FALSE;
4473 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004474 int indent = 0;
4475 char_u *p;
4476 int vcol;
4477 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004479 /* the ! flag toggles autoindent */
4480 if (eap->forceit)
4481 curbuf->b_p_ai = !curbuf->b_p_ai;
4482
4483 /* First autoindent comes from the line we start on */
4484 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
4485 append_indent = get_indent_lnum(lnum);
4486
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 if (eap->cmdidx != CMD_append)
4488 --lnum;
4489
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004490 /* when the buffer is empty need to delete the dummy line */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004491 if (empty && lnum == 1)
4492 lnum = 0;
4493
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 State = INSERT; /* behave like in Insert mode */
4495 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
4496 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004497
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004498 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 {
4500 msg_scroll = TRUE;
4501 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004502 if (curbuf->b_p_ai)
4503 {
4504 if (append_indent >= 0)
4505 {
4506 indent = append_indent;
4507 append_indent = -1;
4508 }
4509 else if (lnum > 0)
4510 indent = get_indent_lnum(lnum);
4511 }
4512 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004514 {
4515 /* No getline() function, use the lines that follow. This ends
4516 * when there is no more. */
4517 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
4518 break;
4519 p = vim_strchr(eap->nextcmd, NL);
4520 if (p == NULL)
4521 p = eap->nextcmd + STRLEN(eap->nextcmd);
4522 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4523 if (*p != NUL)
4524 ++p;
4525 eap->nextcmd = p;
4526 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004528 {
4529 int save_State = State;
4530
4531 /* Set State to avoid the cursor shape to be set to INSERT mode
4532 * when getline() returns. */
4533 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 theline = eap->getline(
4535#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004536 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004538 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004539 State = save_State;
4540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004542 if (theline == NULL)
4543 break;
4544
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004545 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4546 if (ex_keep_indent)
4547 append_indent = indent;
4548
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004549 /* Look for the "." after automatic indent. */
4550 vcol = 0;
4551 for (p = theline; indent > vcol; ++p)
4552 {
4553 if (*p == ' ')
4554 ++vcol;
4555 else if (*p == TAB)
4556 vcol += 8 - vcol % 8;
4557 else
4558 break;
4559 }
4560 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004561 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4562 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 {
4564 vim_free(theline);
4565 break;
4566 }
4567
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004568 /* don't use autoindent if nothing was typed. */
4569 if (p[0] == NUL)
4570 theline[0] = NUL;
4571
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 did_undo = TRUE;
4573 ml_append(lnum, theline, (colnr_T)0, FALSE);
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004574 appended_lines_mark(lnum + (empty ? 1 : 0), 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575
4576 vim_free(theline);
4577 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004578
4579 if (empty)
4580 {
4581 ml_delete(2L, FALSE);
4582 empty = FALSE;
4583 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 }
4585 State = NORMAL;
4586
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004587 if (eap->forceit)
4588 curbuf->b_p_ai = !curbuf->b_p_ai;
4589
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004591 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 * "end" is set to lnum when something has been appended, otherwise
4593 * it is the same than "start" -- Acevedo */
4594 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4595 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4596 if (eap->cmdidx != CMD_append)
4597 --curbuf->b_op_start.lnum;
4598 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4599 ? lnum : curbuf->b_op_start.lnum;
4600 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4601 curwin->w_cursor.lnum = lnum;
4602 check_cursor_lnum();
4603 beginline(BL_SOL | BL_FIX);
4604
4605 need_wait_return = FALSE; /* don't use wait_return() now */
4606 ex_no_reprint = TRUE;
4607}
4608
4609/*
4610 * ":change"
4611 */
4612 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004613ex_change(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614{
4615 linenr_T lnum;
4616
4617 if (eap->line2 >= eap->line1
4618 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4619 return;
4620
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004621 /* the ! flag toggles autoindent */
4622 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4623 append_indent = get_indent_lnum(eap->line1);
4624
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4626 {
4627 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4628 break;
4629 ml_delete(eap->line1, FALSE);
4630 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004631
4632 /* make sure the cursor is not beyond the end of the file now */
4633 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4635
4636 /* ":append" on the line above the deleted lines. */
4637 eap->line2 = eap->line1;
4638 ex_append(eap);
4639}
4640
4641 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004642ex_z(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643{
4644 char_u *x;
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004645 long bigness;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004646 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 int minus = 0;
4648 linenr_T start, end, curs, i;
4649 int j;
4650 linenr_T lnum = eap->line2;
4651
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004652 /* Vi compatible: ":z!" uses display height, without a count uses
4653 * 'scroll' */
4654 if (eap->forceit)
4655 bigness = curwin->w_height;
Bram Moolenaar459ca562016-11-10 18:16:33 +01004656 else if (!ONE_WINDOW)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004657 bigness = curwin->w_height - 3;
Bram Moolenaar631abc32014-02-22 22:27:47 +01004658 else
4659 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 if (bigness < 1)
4661 bigness = 1;
4662
4663 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004664 kind = x;
4665 if (*kind == '-' || *kind == '+' || *kind == '='
4666 || *kind == '^' || *kind == '.')
4667 ++x;
4668 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 ++x;
4670
4671 if (*x != 0)
4672 {
4673 if (!VIM_ISDIGIT(*x))
4674 {
4675 EMSG(_("E144: non-numeric argument to :z"));
4676 return;
4677 }
4678 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004679 {
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004680 bigness = atol((char *)x);
4681
4682 /* bigness could be < 0 if atol(x) overflows. */
4683 if (bigness > 2 * curbuf->b_ml.ml_line_count || bigness < 0)
4684 bigness = 2 * curbuf->b_ml.ml_line_count;
4685
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004686 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004687 if (*kind == '=')
4688 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004689 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 }
4691
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004692 /* the number of '-' and '+' multiplies the distance */
4693 if (*kind == '-' || *kind == '+')
4694 for (x = kind + 1; *x == *kind; ++x)
4695 ;
4696
4697 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 {
4699 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004700 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4701 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004702 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 break;
4704
4705 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004706 start = lnum - (bigness + 1) / 2 + 1;
4707 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 curs = lnum;
4709 minus = 1;
4710 break;
4711
4712 case '^':
4713 start = lnum - bigness * 2;
4714 end = lnum - bigness;
4715 curs = lnum - bigness;
4716 break;
4717
4718 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004719 start = lnum - (bigness + 1) / 2 + 1;
4720 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 curs = end;
4722 break;
4723
4724 default: /* '+' */
4725 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004726 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004727 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004728 else if (eap->addr_count == 0)
4729 ++start;
4730 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 curs = end;
4732 break;
4733 }
4734
4735 if (start < 1)
4736 start = 1;
4737
4738 if (end > curbuf->b_ml.ml_line_count)
4739 end = curbuf->b_ml.ml_line_count;
4740
4741 if (curs > curbuf->b_ml.ml_line_count)
4742 curs = curbuf->b_ml.ml_line_count;
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004743 else if (curs < 1)
4744 curs = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745
4746 for (i = start; i <= end; i++)
4747 {
4748 if (minus && i == lnum)
4749 {
4750 msg_putchar('\n');
4751
4752 for (j = 1; j < Columns; j++)
4753 msg_putchar('-');
4754 }
4755
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004756 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757
4758 if (minus && i == lnum)
4759 {
4760 msg_putchar('\n');
4761
4762 for (j = 1; j < Columns; j++)
4763 msg_putchar('-');
4764 }
4765 }
4766
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004767 if (curwin->w_cursor.lnum != curs)
4768 {
4769 curwin->w_cursor.lnum = curs;
4770 curwin->w_cursor.col = 0;
4771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 ex_no_reprint = TRUE;
4773}
4774
4775/*
4776 * Check if the restricted flag is set.
4777 * If so, give an error message and return TRUE.
4778 * Otherwise, return FALSE.
4779 */
4780 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004781check_restricted(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782{
4783 if (restricted)
4784 {
4785 EMSG(_("E145: Shell commands not allowed in rvim"));
4786 return TRUE;
4787 }
4788 return FALSE;
4789}
4790
4791/*
4792 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4793 * If so, give an error message and return TRUE.
4794 * Otherwise, return FALSE.
4795 */
4796 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004797check_secure(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798{
4799 if (secure)
4800 {
4801 secure = 2;
4802 EMSG(_(e_curdir));
4803 return TRUE;
4804 }
4805#ifdef HAVE_SANDBOX
4806 /*
4807 * In the sandbox more things are not allowed, including the things
4808 * disallowed in secure mode.
4809 */
4810 if (sandbox != 0)
4811 {
4812 EMSG(_(e_sandbox));
4813 return TRUE;
4814 }
4815#endif
4816 return FALSE;
4817}
4818
4819static char_u *old_sub = NULL; /* previous substitute pattern */
4820static int global_need_beginline; /* call beginline() after ":g" */
4821
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004822/*
4823 * Flags that are kept between calls to :substitute.
4824 */
4825typedef struct {
4826 int do_all; /* do multiple substitutions per line */
4827 int do_ask; /* ask for confirmation */
4828 int do_count; /* count only */
4829 int do_error; /* if false, ignore errors */
4830 int do_print; /* print last line with subs. */
4831 int do_list; /* list last line with subs. */
4832 int do_number; /* list last line with line nr*/
4833 int do_ic; /* ignore case flag */
4834} subflags_T;
4835
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836/* do_sub()
4837 *
4838 * Perform a substitution from line eap->line1 to line eap->line2 using the
4839 * command pointed to by eap->arg which should be of the form:
4840 *
4841 * /pattern/substitution/{flags}
4842 *
4843 * The usual escapes are supported as described in the regexp docs.
4844 */
4845 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004846do_sub(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847{
4848 linenr_T lnum;
4849 long i = 0;
4850 regmmatch_T regmatch;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004851 static subflags_T subflags = {FALSE, FALSE, FALSE, TRUE, FALSE,
4852 FALSE, FALSE, 0};
4853#ifdef FEAT_EVAL
4854 subflags_T subflags_save;
4855#endif
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004856 int save_do_all; /* remember user specified 'g' flag */
4857 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4859 int delimiter;
4860 int sublen;
4861 int got_quit = FALSE;
4862 int got_match = FALSE;
4863 int temp;
4864 int which_pat;
4865 char_u *cmd;
4866 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004867 linenr_T first_line = 0; /* first changed line */
4868 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 * change */
4870 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4871 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004872 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004873 char_u *sub_firstline; /* allocated copy of first sub line */
4874 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004875 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004876 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004877#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004878 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880
4881 cmd = eap->arg;
4882 if (!global_busy)
4883 {
4884 sub_nsubs = 0;
4885 sub_nlines = 0;
4886 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004887 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 if (eap->cmdidx == CMD_tilde)
4890 which_pat = RE_LAST; /* use last used regexp */
4891 else
4892 which_pat = RE_SUBST; /* use last substitute regexp */
4893
4894 /* new pattern and substitution */
Bram Moolenaar1c465442017-03-12 20:10:05 +01004895 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4897 {
4898 /* don't accept alphanumeric for separator */
4899 if (isalpha(*cmd))
4900 {
4901 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4902 return;
4903 }
4904 /*
4905 * undocumented vi feature:
4906 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4907 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4908 */
4909 if (*cmd == '\\')
4910 {
4911 ++cmd;
4912 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4913 {
4914 EMSG(_(e_backslash));
4915 return;
4916 }
4917 if (*cmd != '&')
4918 which_pat = RE_SEARCH; /* use last '/' pattern */
4919 pat = (char_u *)""; /* empty search pattern */
4920 delimiter = *cmd++; /* remember delimiter character */
4921 }
4922 else /* find the end of the regexp */
4923 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004924#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4925 if (p_altkeymap && curwin->w_p_rl)
4926 lrF_sub(cmd);
4927#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 which_pat = RE_LAST; /* use last used regexp */
4929 delimiter = *cmd++; /* remember delimiter character */
4930 pat = cmd; /* remember start of search pat */
4931 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4932 if (cmd[0] == delimiter) /* end delimiter found */
4933 *cmd++ = NUL; /* replace it with a NUL */
4934 }
4935
4936 /*
4937 * Small incompatibility: vi sees '\n' as end of the command, but in
4938 * Vim we want to use '\n' to find/substitute a NUL.
4939 */
4940 sub = cmd; /* remember the start of the substitution */
4941
4942 while (cmd[0])
4943 {
4944 if (cmd[0] == delimiter) /* end delimiter found */
4945 {
4946 *cmd++ = NUL; /* replace it with a NUL */
4947 break;
4948 }
4949 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4950 ++cmd;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004951 MB_PTR_ADV(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 }
4953
4954 if (!eap->skip)
4955 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004956 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4957 if (STRCMP(sub, "%") == 0
4958 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4959 {
4960 if (old_sub == NULL) /* there is no previous command */
4961 {
4962 EMSG(_(e_nopresub));
4963 return;
4964 }
4965 sub = old_sub;
4966 }
4967 else
4968 {
4969 vim_free(old_sub);
4970 old_sub = vim_strsave(sub);
4971 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 }
4973 }
4974 else if (!eap->skip) /* use previous pattern and substitution */
4975 {
4976 if (old_sub == NULL) /* there is no previous command */
4977 {
4978 EMSG(_(e_nopresub));
4979 return;
4980 }
4981 pat = NULL; /* search_regcomp() will use previous pattern */
4982 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004983
4984 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4985 * last column after using "$". */
4986 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 }
4988
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004989 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4990 * more efficient.
4991 * TODO: find a generic solution to make line-joining operations more
4992 * efficient, avoid allocating a string that grows in size.
4993 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004994 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004995 && *sub == NUL
4996 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4997 || *cmd == 'p' || *cmd == '#'))))
4998 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004999 linenr_T joined_lines_count;
5000
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02005001 curwin->w_cursor.lnum = eap->line1;
5002 if (*cmd == 'l')
5003 eap->flags = EXFLAG_LIST;
5004 else if (*cmd == '#')
5005 eap->flags = EXFLAG_NR;
5006 else if (*cmd == 'p')
5007 eap->flags = EXFLAG_PRINT;
5008
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01005009 /* The number of lines joined is the number of lines in the range plus
5010 * one. One less when the last line is included. */
5011 joined_lines_count = eap->line2 - eap->line1 + 1;
5012 if (eap->line2 < curbuf->b_ml.ml_line_count)
5013 ++joined_lines_count;
5014 if (joined_lines_count > 1)
5015 {
5016 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
5017 sub_nsubs = joined_lines_count - 1;
5018 sub_nlines = 1;
5019 (void)do_sub_msg(FALSE);
5020 ex_may_print(eap);
5021 }
5022
5023 if (!cmdmod.keeppatterns)
5024 save_re_pat(RE_SUBST, pat, p_magic);
5025#ifdef FEAT_CMDHIST
5026 /* put pattern in history */
5027 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
5028#endif
5029
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02005030 return;
5031 }
5032
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 /*
5034 * Find trailing options. When '&' is used, keep old options.
5035 */
5036 if (*cmd == '&')
5037 ++cmd;
5038 else
5039 {
5040 if (!p_ed)
5041 {
5042 if (p_gd) /* default is global on */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005043 subflags.do_all = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005045 subflags.do_all = FALSE;
5046 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005048 subflags.do_error = TRUE;
5049 subflags.do_print = FALSE;
5050 subflags.do_count = FALSE;
5051 subflags.do_number = FALSE;
5052 subflags.do_ic = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 }
5054 while (*cmd)
5055 {
5056 /*
5057 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
5058 * 'r' is never inverted.
5059 */
5060 if (*cmd == 'g')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005061 subflags.do_all = !subflags.do_all;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 else if (*cmd == 'c')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005063 subflags.do_ask = !subflags.do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005064 else if (*cmd == 'n')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005065 subflags.do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 else if (*cmd == 'e')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005067 subflags.do_error = !subflags.do_error;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 else if (*cmd == 'r') /* use last used regexp */
5069 which_pat = RE_LAST;
5070 else if (*cmd == 'p')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005071 subflags.do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005072 else if (*cmd == '#')
5073 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005074 subflags.do_print = TRUE;
5075 subflags.do_number = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005076 }
5077 else if (*cmd == 'l')
5078 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005079 subflags.do_print = TRUE;
5080 subflags.do_list = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005081 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 else if (*cmd == 'i') /* ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005083 subflags.do_ic = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 else if (*cmd == 'I') /* don't ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005085 subflags.do_ic = 'I';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 else
5087 break;
5088 ++cmd;
5089 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005090 if (subflags.do_count)
5091 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005093 save_do_all = subflags.do_all;
5094 save_do_ask = subflags.do_ask;
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005095
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 /*
5097 * check for a trailing count
5098 */
5099 cmd = skipwhite(cmd);
5100 if (VIM_ISDIGIT(*cmd))
5101 {
5102 i = getdigits(&cmd);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005103 if (i <= 0 && !eap->skip && subflags.do_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 {
5105 EMSG(_(e_zerocount));
5106 return;
5107 }
5108 eap->line1 = eap->line2;
5109 eap->line2 += i - 1;
5110 if (eap->line2 > curbuf->b_ml.ml_line_count)
5111 eap->line2 = curbuf->b_ml.ml_line_count;
5112 }
5113
5114 /*
5115 * check for trailing command or garbage
5116 */
5117 cmd = skipwhite(cmd);
5118 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
5119 {
5120 eap->nextcmd = check_nextcmd(cmd);
5121 if (eap->nextcmd == NULL)
5122 {
5123 EMSG(_(e_trailing));
5124 return;
5125 }
5126 }
5127
5128 if (eap->skip) /* not executing commands, only parsing */
5129 return;
5130
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005131 if (!subflags.do_count && !curbuf->b_p_ma)
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005132 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005133 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005134 EMSG(_(e_modifiable));
5135 return;
5136 }
5137
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5139 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005140 if (subflags.do_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 EMSG(_(e_invcmd));
5142 return;
5143 }
5144
5145 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005146 if (subflags.do_ic == 'i')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 regmatch.rmm_ic = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005148 else if (subflags.do_ic == 'I')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 regmatch.rmm_ic = FALSE;
5150
5151 sub_firstline = NULL;
5152
5153 /*
5154 * ~ in the substitute pattern is replaced with the old pattern.
5155 * We do it here once to avoid it to be replaced over and over again.
5156 * But don't do it when it starts with "\=", then it's an expression.
5157 */
5158 if (!(sub[0] == '\\' && sub[1] == '='))
5159 sub = regtilde(sub, p_magic);
5160
5161 /*
5162 * Check for a match on each line.
5163 */
5164 line2 = eap->line2;
5165 for (lnum = eap->line1; lnum <= line2 && !(got_quit
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005166#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 || aborting()
5168#endif
5169 ); ++lnum)
5170 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005171 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005172 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 if (nmatch)
5174 {
5175 colnr_T copycol;
5176 colnr_T matchcol;
5177 colnr_T prev_matchcol = MAXCOL;
5178 char_u *new_end, *new_start = NULL;
5179 unsigned new_start_len = 0;
5180 char_u *p1;
5181 int did_sub = FALSE;
5182 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005183 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 long nmatch_tl = 0; /* nr of lines matched below lnum */
5185 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005186 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005187 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188
5189 /*
5190 * The new text is build up step by step, to avoid too much
5191 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00005192 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 * copycol Column in the old text where we started
5194 * looking for a match; from here old text still
5195 * needs to be copied to the new text.
5196 * matchcol Column number of the old text where to look
5197 * for the next match. It's just after the
5198 * previous match or one further.
5199 * prev_matchcol Column just after the previous match (if any).
5200 * Mostly equal to matchcol, except for the first
5201 * match and after skipping an empty match.
5202 * regmatch.*pos Where the pattern matched in the old text.
5203 * new_start The new text, all that has been produced so
5204 * far.
5205 * new_end The new text, where to append new text.
5206 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005207 * lnum The line number where we found the start of
5208 * the match. Can be below the line we searched
5209 * when there is a \n before a \zs in the
5210 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 * sub_firstlnum The line number in the buffer where to look
5212 * for a match. Can be different from "lnum"
5213 * when the pattern or substitute string contains
5214 * line breaks.
5215 *
5216 * Special situations:
5217 * - When the substitute string contains a line break, the part up
5218 * to the line break is inserted in the text, but the copy of
5219 * the original line is kept. "sub_firstlnum" is adjusted for
5220 * the inserted lines.
5221 * - When the matched pattern contains a line break, the old line
5222 * is taken from the line at the end of the pattern. The lines
5223 * in the match are deleted later, "sub_firstlnum" is adjusted
5224 * accordingly.
5225 *
5226 * The new text is built up in new_start[]. It has some extra
5227 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005228 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 *
5230 * Make a copy of the old line, so it won't be taken away when
5231 * updating the screen or handling a multi-line match. The "old_"
5232 * pointers point into this copy.
5233 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005234 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 copycol = 0;
5236 matchcol = 0;
5237
5238 /* At first match, remember current cursor position. */
5239 if (!got_match)
5240 {
5241 setpcmark();
5242 got_match = TRUE;
5243 }
5244
5245 /*
5246 * Loop until nothing more to replace in this line.
5247 * 1. Handle match with empty string.
5248 * 2. If do_ask is set, ask for confirmation.
5249 * 3. substitute the string.
5250 * 4. if do_all is set, find next match
5251 * 5. break if there isn't another match in this line
5252 */
5253 for (;;)
5254 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005255 /* Advance "lnum" to the line where the match starts. The
5256 * match does not start in the first line when there is a line
5257 * break before \zs. */
5258 if (regmatch.startpos[0].lnum > 0)
5259 {
5260 lnum += regmatch.startpos[0].lnum;
5261 sub_firstlnum += regmatch.startpos[0].lnum;
5262 nmatch -= regmatch.startpos[0].lnum;
Bram Moolenaard23a8232018-02-10 18:45:26 +01005263 VIM_CLEAR(sub_firstline);
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005264 }
5265
5266 if (sub_firstline == NULL)
5267 {
5268 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5269 if (sub_firstline == NULL)
5270 {
5271 vim_free(new_start);
5272 goto outofmem;
5273 }
5274 }
5275
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 /* Save the line number of the last change for the final
5277 * cursor position (just like Vi). */
5278 curwin->w_cursor.lnum = lnum;
5279 do_again = FALSE;
5280
5281 /*
5282 * 1. Match empty string does not count, except for first
5283 * match. This reproduces the strange vi behaviour.
5284 * This also catches endless loops.
5285 */
5286 if (matchcol == prev_matchcol
5287 && regmatch.endpos[0].lnum == 0
5288 && matchcol == regmatch.endpos[0].col)
5289 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00005290 if (sub_firstline[matchcol] == NUL)
5291 /* We already were at the end of the line. Don't look
5292 * for a match in this line again. */
5293 skip_match = TRUE;
5294 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02005295 {
5296 /* search for a match at next column */
5297#ifdef FEAT_MBYTE
5298 if (has_mbyte)
5299 matchcol += mb_ptr2len(sub_firstline + matchcol);
5300 else
5301#endif
5302 ++matchcol;
5303 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 goto skip;
5305 }
5306
5307 /* Normally we continue searching for a match just after the
5308 * previous match. */
5309 matchcol = regmatch.endpos[0].col;
5310 prev_matchcol = matchcol;
5311
5312 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00005313 * 2. If do_count is set only increase the counter.
5314 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005316 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005317 {
5318 /* For a multi-line match, put matchcol at the NUL at
5319 * the end of the line and set nmatch to one, so that
5320 * we continue looking for a match on the next line.
5321 * Avoids that ":s/\nB\@=//gc" get stuck. */
5322 if (nmatch > 1)
5323 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005324 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00005325 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00005326 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005327 }
5328 sub_nsubs++;
5329 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005330#ifdef FEAT_EVAL
5331 /* Skip the substitution, unless an expression is used,
5332 * then it is evaluated in the sandbox. */
5333 if (!(sub[0] == '\\' && sub[1] == '='))
5334#endif
5335 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005336 }
5337
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005338 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00005340 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005341
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 /* change State to CONFIRM, so that the mouse works
5343 * properly */
5344 save_State = State;
5345 State = CONFIRM;
5346#ifdef FEAT_MOUSE
5347 setmouse(); /* disable mouse in xterm */
5348#endif
5349 curwin->w_cursor.col = regmatch.startpos[0].col;
Bram Moolenaar41baa792017-01-21 14:45:09 +01005350 if (curwin->w_p_crb)
5351 do_check_cursorbind();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352
5353 /* When 'cpoptions' contains "u" don't sync undo when
5354 * asking for confirmation. */
5355 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5356 ++no_u_sync;
5357
5358 /*
5359 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
5360 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005361 while (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005363 if (exmode_active)
5364 {
5365 char_u *resp;
5366 colnr_T sc, ec;
5367
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005368 print_line_no_prefix(lnum,
5369 subflags.do_number, subflags.do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005370
5371 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
5372 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01005373 if (curwin->w_cursor.col < 0)
5374 curwin->w_cursor.col = 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005375 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005376 if (subflags.do_number || curwin->w_p_nu)
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02005377 {
5378 int numw = number_width(curwin) + 1;
5379 sc += numw;
5380 ec += numw;
5381 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005382 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00005383 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005384 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00005385 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005386 msg_putchar('^');
5387
5388 resp = getexmodeline('?', NULL, 0);
5389 if (resp != NULL)
5390 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005391 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005392 vim_free(resp);
5393 }
5394 }
5395 else
5396 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005397 char_u *orig_line = NULL;
5398 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005400 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005402 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005404 /* Invert the matched string.
5405 * Remove the inversion afterwards. */
5406 temp = RedrawingDisabled;
5407 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005409 if (new_start != NULL)
5410 {
5411 /* There already was a substitution, we would
5412 * like to show this to the user. We cannot
5413 * really update the line, it would change
5414 * what matches. Temporarily replace the line
5415 * and change it back afterwards. */
5416 orig_line = vim_strsave(ml_get(lnum));
5417 if (orig_line != NULL)
5418 {
5419 char_u *new_line = concat_str(new_start,
5420 sub_firstline + copycol);
5421
5422 if (new_line == NULL)
Bram Moolenaard23a8232018-02-10 18:45:26 +01005423 VIM_CLEAR(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005424 else
5425 {
5426 /* Position the cursor relative to the
5427 * end of the line, the previous
5428 * substitute may have inserted or
5429 * deleted characters before the
5430 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01005431 len_change = (int)STRLEN(new_line)
5432 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005433 curwin->w_cursor.col += len_change;
5434 ml_replace(lnum, new_line, FALSE);
5435 }
5436 }
5437 }
5438
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005439 search_match_lines = regmatch.endpos[0].lnum
5440 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005441 search_match_endcol = regmatch.endpos[0].col
5442 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005443 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005445 update_topline();
5446 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00005447 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005448 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00005449 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450
5451#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005452 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005454 if (msg_row == Rows - 1)
5455 msg_didout = FALSE; /* avoid a scroll-up */
5456 msg_starthere();
5457 i = msg_scroll;
5458 msg_scroll = 0; /* truncate msg when
5459 needed */
5460 msg_no_more = TRUE;
5461 /* write message same highlighting as for
5462 * wait_return */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005463 smsg_attr(HL_ATTR(HLF_R),
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005464 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
5465 msg_no_more = FALSE;
5466 msg_scroll = i;
5467 showruler(TRUE);
5468 windgoto(msg_row, msg_col);
5469 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470
5471#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005472 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005474 ++no_mapping; /* don't map this key */
5475 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005476 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005477 --allow_keys;
5478 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005480 /* clear the question */
5481 msg_didout = FALSE; /* don't scroll up */
5482 msg_col = 0;
5483 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005484
5485 /* restore the line */
5486 if (orig_line != NULL)
5487 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005488 }
5489
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005491 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005493 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494#endif
5495 )
5496 {
5497 got_quit = TRUE;
5498 break;
5499 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005500 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005502 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005504 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 {
5506 /* last: replace and then stop */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005507 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 line2 = lnum;
5509 break;
5510 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005511 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005513 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514 break;
5515 }
5516#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005517 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005519 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520 scrolldown_clamp();
5521#endif
5522 }
5523 State = save_State;
5524#ifdef FEAT_MOUSE
5525 setmouse();
5526#endif
5527 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5528 --no_u_sync;
5529
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005530 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 {
5532 /* For a multi-line match, put matchcol at the NUL at
5533 * the end of the line and set nmatch to one, so that
5534 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00005535 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
5536 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 if (nmatch > 1)
5538 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005539 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00005540 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 }
5542 goto skip;
5543 }
5544 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01005545 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 }
5547
5548 /* Move the cursor to the start of the match, so that we can
5549 * use "\=col("."). */
5550 curwin->w_cursor.col = regmatch.startpos[0].col;
5551
5552 /*
5553 * 3. substitute the string.
5554 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005555#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005556 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005557 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005558 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005559 save_ma = curbuf->b_p_ma;
5560 curbuf->b_p_ma = FALSE;
5561 sandbox++;
5562 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005563 /* Save flags for recursion. They can change for e.g.
5564 * :s/^/\=execute("s#^##gn") */
5565 subflags_save = subflags;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005566#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005568 sublen = vim_regsub_multi(&regmatch,
5569 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005571#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005572 /* Don't keep flags set by a recursive call. */
5573 subflags = subflags_save;
5574 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005575 {
5576 curbuf->b_p_ma = save_ma;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005577 if (sandbox > 0)
5578 sandbox--;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005579 goto skip;
5580 }
5581#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582
Bram Moolenaar4463f292005-09-25 22:20:24 +00005583 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005584 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005585 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5586 {
5587 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5588 skip_match = TRUE;
5589 }
5590
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 /* Need room for:
5592 * - result so far in new_start (not for first sub in line)
5593 * - original text up to match
5594 * - length of substituted part
5595 * - original text after match
5596 */
5597 if (nmatch == 1)
5598 p1 = sub_firstline;
5599 else
5600 {
5601 p1 = ml_get(sub_firstlnum + nmatch - 1);
5602 nmatch_tl += nmatch - 1;
5603 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005604 copy_len = regmatch.startpos[0].col - copycol;
5605 needed_len = copy_len + ((unsigned)STRLEN(p1)
5606 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 if (new_start == NULL)
5608 {
5609 /*
5610 * Get some space for a temporary buffer to do the
5611 * substitution into (and some extra space to avoid
5612 * too many calls to alloc()/free()).
5613 */
5614 new_start_len = needed_len + 50;
5615 if ((new_start = alloc_check(new_start_len)) == NULL)
5616 goto outofmem;
5617 *new_start = NUL;
5618 new_end = new_start;
5619 }
5620 else
5621 {
5622 /*
5623 * Check if the temporary buffer is long enough to do the
5624 * substitution into. If not, make it larger (with a bit
5625 * extra to avoid too many calls to alloc()/free()).
5626 */
5627 len = (unsigned)STRLEN(new_start);
5628 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005629 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 {
5631 new_start_len = needed_len + 50;
5632 if ((p1 = alloc_check(new_start_len)) == NULL)
5633 {
5634 vim_free(new_start);
5635 goto outofmem;
5636 }
5637 mch_memmove(p1, new_start, (size_t)(len + 1));
5638 vim_free(new_start);
5639 new_start = p1;
5640 }
5641 new_end = new_start + len;
5642 }
5643
5644 /*
5645 * copy the text up to the part that matched
5646 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005647 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5648 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005650 (void)vim_regsub_multi(&regmatch,
5651 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 sub, new_end, TRUE, p_magic, TRUE);
5653 sub_nsubs++;
5654 did_sub = TRUE;
5655
5656 /* Move the cursor to the start of the line, to avoid that it
5657 * is beyond the end of the line after the substitution. */
5658 curwin->w_cursor.col = 0;
5659
5660 /* For a multi-line match, make a copy of the last matched
5661 * line and continue in that one. */
5662 if (nmatch > 1)
5663 {
5664 sub_firstlnum += nmatch - 1;
5665 vim_free(sub_firstline);
5666 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5667 /* When going beyond the last line, stop substituting. */
5668 if (sub_firstlnum <= line2)
5669 do_again = TRUE;
5670 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005671 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 }
5673
5674 /* Remember next character to be copied. */
5675 copycol = regmatch.endpos[0].col;
5676
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005677 if (skip_match)
5678 {
5679 /* Already hit end of the buffer, sub_firstlnum is one
5680 * less than what it ought to be. */
5681 vim_free(sub_firstline);
5682 sub_firstline = vim_strsave((char_u *)"");
5683 copycol = 0;
5684 }
5685
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686 /*
5687 * Now the trick is to replace CTRL-M chars with a real line
5688 * break. This would make it impossible to insert a CTRL-M in
5689 * the text. The line break can be avoided by preceding the
5690 * CTRL-M with a backslash. To be able to insert a backslash,
5691 * they must be doubled in the string and are halved here.
5692 * That is Vi compatible.
5693 */
5694 for (p1 = new_end; *p1; ++p1)
5695 {
5696 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005697 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 else if (*p1 == CAR)
5699 {
5700 if (u_inssub(lnum) == OK) /* prepare for undo */
5701 {
5702 *p1 = NUL; /* truncate up to the CR */
5703 ml_append(lnum - 1, new_start,
5704 (colnr_T)(p1 - new_start + 1), FALSE);
5705 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005706 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 appended_lines(lnum - 1, 1L);
5708 else
5709 {
5710 if (first_line == 0)
5711 first_line = lnum;
5712 last_line = lnum + 1;
5713 }
5714 /* All line numbers increase. */
5715 ++sub_firstlnum;
5716 ++lnum;
5717 ++line2;
5718 /* move the cursor to the new line, like Vi */
5719 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005720 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005721 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722 p1 = new_start - 1;
5723 }
5724 }
5725#ifdef FEAT_MBYTE
5726 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005727 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005728#endif
5729 }
5730
5731 /*
5732 * 4. If do_all is set, find next match.
5733 * Prevent endless loop with patterns that match empty
5734 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5735 * But ":s/\n/#/" is OK.
5736 */
5737skip:
5738 /* We already know that we did the last subst when we are at
5739 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005740 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5741 * "line2" when there is a \zs in the pattern after a line
5742 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005743 lastone = (skip_match
5744 || got_int
5745 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005746 || lnum > line2
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005747 || !(subflags.do_all || do_again)
Bram Moolenaar8299df92004-07-10 09:47:34 +00005748 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5749 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 nmatch = -1;
5751
5752 /*
5753 * Replace the line in the buffer when needed. This is
5754 * skipped when there are more matches.
5755 * The check for nmatch_tl is needed for when multi-line
5756 * matching must replace the lines before trying to do another
5757 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005758 * When the match starts below where we start searching also
5759 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 */
5761 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 || nmatch_tl > 0
5763 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005764 curbuf, sub_firstlnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005765 matchcol, NULL, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005766 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 {
5768 if (new_start != NULL)
5769 {
5770 /*
5771 * Copy the rest of the line, that didn't match.
5772 * "matchcol" has to be adjusted, we use the end of
5773 * the line as reference, because the substitute may
5774 * have changed the number of characters. Same for
5775 * "prev_matchcol".
5776 */
5777 STRCAT(new_start, sub_firstline + copycol);
5778 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5779 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5780 - prev_matchcol;
5781
5782 if (u_savesub(lnum) != OK)
5783 break;
5784 ml_replace(lnum, new_start, TRUE);
5785
5786 if (nmatch_tl > 0)
5787 {
5788 /*
5789 * Matched lines have now been substituted and are
5790 * useless, delete them. The part after the match
5791 * has been appended to new_start, we don't need
5792 * it in the buffer.
5793 */
5794 ++lnum;
5795 if (u_savedel(lnum, nmatch_tl) != OK)
5796 break;
5797 for (i = 0; i < nmatch_tl; ++i)
5798 ml_delete(lnum, (int)FALSE);
5799 mark_adjust(lnum, lnum + nmatch_tl - 1,
5800 (long)MAXLNUM, -nmatch_tl);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005801 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802 deleted_lines(lnum, nmatch_tl);
5803 --lnum;
5804 line2 -= nmatch_tl; /* nr of lines decreases */
5805 nmatch_tl = 0;
5806 }
5807
5808 /* When asking, undo is saved each time, must also set
5809 * changed flag each time. */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005810 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 changed_bytes(lnum, 0);
5812 else
5813 {
5814 if (first_line == 0)
5815 first_line = lnum;
5816 last_line = lnum + 1;
5817 }
5818
5819 sub_firstlnum = lnum;
5820 vim_free(sub_firstline); /* free the temp buffer */
5821 sub_firstline = new_start;
5822 new_start = NULL;
5823 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5824 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5825 - prev_matchcol;
5826 copycol = 0;
5827 }
5828 if (nmatch == -1 && !lastone)
5829 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005830 sub_firstlnum, matchcol, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831
5832 /*
5833 * 5. break if there isn't another match in this line
5834 */
5835 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005836 {
5837 /* If the match found didn't start where we were
5838 * searching, do the next search in the line where we
5839 * found the match. */
5840 if (nmatch == -1)
5841 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 }
5845
5846 line_breakcheck();
5847 }
5848
5849 if (did_sub)
5850 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005851 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaard23a8232018-02-10 18:45:26 +01005852 VIM_CLEAR(sub_firstline); /* free the copy of the original line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853 }
5854
5855 line_breakcheck();
5856 }
5857
5858 if (first_line != 0)
5859 {
5860 /* Need to subtract the number of added lines from "last_line" to get
5861 * the line number before the change (same as adding the number of
5862 * deleted lines). */
5863 i = curbuf->b_ml.ml_line_count - old_line_count;
5864 changed_lines(first_line, 0, last_line - i, i);
5865 }
5866
5867outofmem:
5868 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005869
5870 /* ":s/pat//n" doesn't move the cursor */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005871 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005872 curwin->w_cursor = old_cursor;
5873
Bram Moolenaar46475522010-03-23 17:36:29 +01005874 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875 {
5876 /* Set the '[ and '] marks. */
5877 curbuf->b_op_start.lnum = eap->line1;
5878 curbuf->b_op_end.lnum = line2;
5879 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5880
5881 if (!global_busy)
5882 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005883 /* when interactive leave cursor on the match */
5884 if (!subflags.do_ask)
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005885 {
5886 if (endcolumn)
5887 coladvance((colnr_T)MAXCOL);
5888 else
5889 beginline(BL_WHITE | BL_FIX);
5890 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005891 if (!do_sub_msg(subflags.do_count) && subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892 MSG("");
5893 }
5894 else
5895 global_need_beginline = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005896 if (subflags.do_print)
5897 print_line(curwin->w_cursor.lnum,
5898 subflags.do_number, subflags.do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899 }
5900 else if (!global_busy)
5901 {
5902 if (got_int) /* interrupted */
5903 EMSG(_(e_interr));
5904 else if (got_match) /* did find something but nothing substituted */
5905 MSG("");
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005906 else if (subflags.do_error) /* nothing found */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907 EMSG2(_(e_patnotf2), get_search_pat());
5908 }
5909
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005910#ifdef FEAT_FOLDING
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005911 if (subflags.do_ask && hasAnyFolding(curwin))
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005912 /* Cursor position may require updating */
5913 changed_window_setting();
5914#endif
5915
Bram Moolenaar473de612013-06-08 18:19:48 +02005916 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005917
5918 /* Restore the flag values, they can be used for ":&&". */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005919 subflags.do_all = save_do_all;
5920 subflags.do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921}
5922
5923/*
5924 * Give message for number of substitutions.
5925 * Can also be used after a ":global" command.
5926 * Return TRUE if a message was given.
5927 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005928 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005929do_sub_msg(
5930 int count_only) /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931{
5932 /*
5933 * Only report substitutions when:
5934 * - more than 'report' substitutions
5935 * - command was typed by user, or number of changed lines > 'report'
5936 * - giving messages is not disabled by 'lazyredraw'
5937 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005938 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5939 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940 && messaging())
5941 {
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005942 char *msg_single;
5943 char *msg_plural;
5944
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945 if (got_int)
5946 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005947 else
5948 *msg_buf = NUL;
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005949
5950 msg_single = count_only
5951 ? NGETTEXT("%ld match on %ld line",
5952 "%ld matches on %ld line", sub_nsubs)
5953 : NGETTEXT("%ld substitution on %ld line",
5954 "%ld substitutions on %ld line", sub_nsubs);
5955 msg_plural = count_only
5956 ? NGETTEXT("%ld match on %ld lines",
5957 "%ld matches on %ld lines", sub_nsubs)
5958 : NGETTEXT("%ld substitution on %ld lines",
5959 "%ld substitutions on %ld lines", sub_nsubs);
5960
5961 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
5962 NGETTEXT(msg_single, msg_plural, sub_nlines),
5963 sub_nsubs, (long)sub_nlines);
5964
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005967 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 return TRUE;
5969 }
5970 if (got_int)
5971 {
5972 EMSG(_(e_interr));
5973 return TRUE;
5974 }
5975 return FALSE;
5976}
5977
Bram Moolenaarf84b1222017-06-10 14:29:52 +02005978 static void
5979global_exe_one(char_u *cmd, linenr_T lnum)
5980{
5981 curwin->w_cursor.lnum = lnum;
5982 curwin->w_cursor.col = 0;
5983 if (*cmd == NUL || *cmd == '\n')
5984 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5985 else
5986 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5987}
5988
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989/*
5990 * Execute a global command of the form:
5991 *
5992 * g/pattern/X : execute X on all lines where pattern matches
5993 * v/pattern/X : execute X on all lines where pattern does not match
5994 *
5995 * where 'X' is an EX command
5996 *
5997 * The command character (as well as the trailing slash) is optional, and
5998 * is assumed to be 'p' if missing.
5999 *
6000 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006001 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002 * for each line that has a mark. This is required because after deleting
6003 * lines we do not know where to search for the next match.
6004 */
6005 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006006ex_global(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007{
6008 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006009 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010 int type; /* first char of cmd: 'v' or 'g' */
6011 char_u *cmd; /* command argument */
6012
6013 char_u delim; /* delimiter, normally '/' */
6014 char_u *pat;
6015 regmmatch_T regmatch;
6016 int match;
6017 int which_pat;
6018
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006019 /* When nesting the command works on one line. This allows for
6020 * ":g/found/v/notfound/command". */
6021 if (global_busy && (eap->line1 != 1
6022 || eap->line2 != curbuf->b_ml.ml_line_count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006024 /* will increment global_busy to break out of the loop */
6025 EMSG(_("E147: Cannot do :global recursive with a range"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026 return;
6027 }
6028
6029 if (eap->forceit) /* ":global!" is like ":vglobal" */
6030 type = 'v';
6031 else
6032 type = *eap->cmd;
6033 cmd = eap->arg;
6034 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035
6036 /*
6037 * undocumented vi feature:
6038 * "\/" and "\?": use previous search pattern.
6039 * "\&": use previous substitute pattern.
6040 */
6041 if (*cmd == '\\')
6042 {
6043 ++cmd;
6044 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
6045 {
6046 EMSG(_(e_backslash));
6047 return;
6048 }
6049 if (*cmd == '&')
6050 which_pat = RE_SUBST; /* use previous substitute pattern */
6051 else
6052 which_pat = RE_SEARCH; /* use previous search pattern */
6053 ++cmd;
6054 pat = (char_u *)"";
6055 }
6056 else if (*cmd == NUL)
6057 {
6058 EMSG(_("E148: Regular expression missing from global"));
6059 return;
6060 }
6061 else
6062 {
6063 delim = *cmd; /* get the delimiter */
6064 if (delim)
6065 ++cmd; /* skip delimiter if there is one */
6066 pat = cmd; /* remember start of pattern */
6067 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
6068 if (cmd[0] == delim) /* end delimiter found */
6069 *cmd++ = NUL; /* replace it with a NUL */
6070 }
6071
6072#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
6073 if (p_altkeymap && curwin->w_p_rl)
6074 lrFswap(pat,0);
6075#endif
6076
6077 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
6078 {
6079 EMSG(_(e_invcmd));
6080 return;
6081 }
6082
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006083 if (global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006085 lnum = curwin->w_cursor.lnum;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00006086 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006087 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006088 if ((type == 'g' && match) || (type == 'v' && !match))
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006089 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 }
6091 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006092 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006093 /*
6094 * pass 1: set marks for each (not) matching line
6095 */
6096 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
6097 {
6098 /* a match on this line? */
6099 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006100 (colnr_T)0, NULL, NULL);
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006101 if ((type == 'g' && match) || (type == 'v' && !match))
6102 {
6103 ml_setmarked(lnum);
6104 ndone++;
6105 }
6106 line_breakcheck();
6107 }
6108
6109 /*
6110 * pass 2: execute the command for each line that has been marked
6111 */
6112 if (got_int)
6113 MSG(_(e_interr));
6114 else if (ndone == 0)
6115 {
6116 if (type == 'v')
6117 smsg((char_u *)_("Pattern found in every line: %s"), pat);
6118 else
6119 smsg((char_u *)_("Pattern not found: %s"), pat);
6120 }
6121 else
6122 {
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006123#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006124 start_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006125#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006126 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006127#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006128 end_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006129#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006130 }
6131
6132 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006133 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134
Bram Moolenaar473de612013-06-08 18:19:48 +02006135 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136}
6137
6138/*
6139 * Execute "cmd" on lines marked with ml_setmarked().
6140 */
6141 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006142global_exe(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143{
Bram Moolenaarbb993222011-05-10 16:00:47 +02006144 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
6145 buf_T *old_buf = curbuf; /* remember what buffer we started in */
6146 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147
6148 /*
6149 * Set current position only once for a global command.
6150 * If global_busy is set, setpcmark() will not do anything.
6151 * If there is an error, global_busy will be incremented.
6152 */
6153 setpcmark();
6154
6155 /* When the command writes a message, don't overwrite the command. */
6156 msg_didout = TRUE;
6157
Bram Moolenaard25bc232010-03-23 17:49:24 +01006158 sub_nsubs = 0;
6159 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 global_need_beginline = FALSE;
6161 global_busy = 1;
6162 old_lcount = curbuf->b_ml.ml_line_count;
6163 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
6164 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006165 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006166 ui_breakcheck();
6167 }
6168
6169 global_busy = 0;
6170 if (global_need_beginline)
6171 beginline(BL_WHITE | BL_FIX);
6172 else
6173 check_cursor(); /* cursor may be beyond the end of the line */
6174
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006175 /* the cursor may not have moved in the text but a change in a previous
6176 * line may move it on the screen */
6177 changed_line_abv_curs();
6178
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179 /* If it looks like no message was written, allow overwriting the
6180 * command with the report for number of changes. */
6181 if (msg_col == 0 && msg_scrolled == 0)
6182 msg_didout = FALSE;
6183
Bram Moolenaar45667512007-05-10 19:24:43 +00006184 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02006185 * number of extra or deleted lines.
6186 * Don't report extra or deleted lines in the edge case where the buffer
6187 * we are in after execution is different from the buffer we started in. */
6188 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
6190}
6191
6192#ifdef FEAT_VIMINFO
6193 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006194read_viminfo_sub_string(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01006196 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 vim_free(old_sub);
6198 if (force || old_sub == NULL)
6199 old_sub = viminfo_readstring(virp, 1, TRUE);
6200 return viminfo_readline(virp);
6201}
6202
6203 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006204write_viminfo_sub_string(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205{
6206 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
6207 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02006208 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209 viminfo_writestring(fp, old_sub);
6210 }
6211}
6212#endif /* FEAT_VIMINFO */
6213
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006214#if defined(EXITFREE) || defined(PROTO)
6215 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006216free_old_sub(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006217{
6218 vim_free(old_sub);
6219}
6220#endif
6221
Bram Moolenaar4033c552017-09-16 20:54:51 +02006222#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006223/*
6224 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006225 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006227 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006228prepare_tagpreview(
6229 int undo_sync) /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230{
6231 win_T *wp;
6232
6233# ifdef FEAT_GUI
6234 need_mouse_correct = TRUE;
6235# endif
6236
6237 /*
6238 * If there is already a preview window open, use that one.
6239 */
6240 if (!curwin->w_p_pvw)
6241 {
Bram Moolenaar29323592016-07-24 22:04:11 +02006242 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 if (wp->w_p_pvw)
6244 break;
6245 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00006246 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 else
6248 {
6249 /*
6250 * There is no preview window open yet. Create one.
6251 */
6252 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
6253 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006254 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006255 curwin->w_p_pvw = TRUE;
6256 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006257 RESET_BINDING(curwin); /* don't take over 'scrollbind'
6258 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006259# ifdef FEAT_DIFF
6260 curwin->w_p_diff = FALSE; /* no 'diff' */
6261# endif
6262# ifdef FEAT_FOLDING
6263 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
6264# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006265 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006266 }
6267 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006268 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269}
6270
6271#endif
6272
6273
6274/*
6275 * ":help": open a read-only window on a help file
6276 */
6277 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006278ex_help(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279{
6280 char_u *arg;
6281 char_u *tag;
6282 FILE *helpfd; /* file descriptor of help file */
6283 int n;
6284 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286 int num_matches;
6287 char_u **matches;
6288 char_u *p;
6289 int empty_fnum = 0;
6290 int alt_fnum = 0;
6291 buf_T *buf;
6292#ifdef FEAT_MULTI_LANG
6293 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006294 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006295#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02006296#ifdef FEAT_FOLDING
6297 int old_KeyTyped = KeyTyped;
6298#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299
6300 if (eap != NULL)
6301 {
6302 /*
6303 * A ":help" command ends at the first LF, or at a '|' that is
6304 * followed by some text. Set nextcmd to the following command.
6305 */
6306 for (arg = eap->arg; *arg; ++arg)
6307 {
6308 if (*arg == '\n' || *arg == '\r'
6309 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
6310 {
6311 *arg++ = NUL;
6312 eap->nextcmd = arg;
6313 break;
6314 }
6315 }
6316 arg = eap->arg;
6317
Bram Moolenaar3dbde622012-04-05 16:05:05 +02006318 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006319 {
6320 EMSG(_("E478: Don't panic!"));
6321 return;
6322 }
6323
6324 if (eap->skip) /* not executing commands */
6325 return;
6326 }
6327 else
6328 arg = (char_u *)"";
6329
6330 /* remove trailing blanks */
6331 p = arg + STRLEN(arg) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006332 while (p > arg && VIM_ISWHITE(*p) && p[-1] != '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006333 *p-- = NUL;
6334
6335#ifdef FEAT_MULTI_LANG
6336 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006337 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338#endif
6339
6340 /* When no argument given go to the index. */
6341 if (*arg == NUL)
6342 arg = (char_u *)"help.txt";
6343
6344 /*
6345 * Check if there is a match for the argument.
6346 */
6347 n = find_help_tags(arg, &num_matches, &matches,
6348 eap != NULL && eap->forceit);
6349
6350 i = 0;
6351#ifdef FEAT_MULTI_LANG
6352 if (n != FAIL && lang != NULL)
6353 /* Find first item with the requested language. */
6354 for (i = 0; i < num_matches; ++i)
6355 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006356 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357 if (len > 3 && matches[i][len - 3] == '@'
6358 && STRICMP(matches[i] + len - 2, lang) == 0)
6359 break;
6360 }
6361#endif
6362 if (i >= num_matches || n == FAIL)
6363 {
6364#ifdef FEAT_MULTI_LANG
6365 if (lang != NULL)
6366 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
6367 else
6368#endif
6369 EMSG2(_("E149: Sorry, no help for %s"), arg);
6370 if (n != FAIL)
6371 FreeWild(num_matches, matches);
6372 return;
6373 }
6374
6375 /* The first match (in the requested language) is the best match. */
6376 tag = vim_strsave(matches[i]);
6377 FreeWild(num_matches, matches);
6378
6379#ifdef FEAT_GUI
6380 need_mouse_correct = TRUE;
6381#endif
6382
6383 /*
6384 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006385 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386 */
Bram Moolenaar4033c552017-09-16 20:54:51 +02006387 if (!bt_help(curwin->w_buffer) || cmdmod.tab != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388 {
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006389 if (cmdmod.tab != 0)
6390 wp = NULL;
6391 else
Bram Moolenaar29323592016-07-24 22:04:11 +02006392 FOR_ALL_WINDOWS(wp)
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006393 if (bt_help(wp->w_buffer))
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006394 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
6396 win_enter(wp, TRUE);
6397 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006398 {
6399 /*
6400 * There is no help window yet.
6401 * Try to open the file specified by the "helpfile" option.
6402 */
6403 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
6404 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00006405 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 goto erret;
6407 }
6408 fclose(helpfd);
6409
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006411 * specified, the current window is vertically split and
6412 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413 n = WSP_HELP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006414 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006415 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416 n |= WSP_TOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006418 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420 if (curwin->w_height < p_hh)
6421 win_setheight((int)p_hh);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006422
6423 /*
6424 * Open help file (do_ecmd() will set b_help flag, readfile() will
6425 * set b_p_ro flag).
6426 * Set the alternate file to the previously edited file.
6427 */
6428 alt_fnum = curbuf->b_fnum;
6429 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006430 ECMD_HIDE + ECMD_SET_HELP,
Bram Moolenaar4033c552017-09-16 20:54:51 +02006431 NULL); /* buffer is still open, don't store info */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006432 if (!cmdmod.keepalt)
6433 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434 empty_fnum = curbuf->b_fnum;
6435 }
6436 }
6437
6438 if (!p_im)
6439 restart_edit = 0; /* don't want insert mode in help file */
6440
Bram Moolenaar8f535582011-09-30 17:30:31 +02006441#ifdef FEAT_FOLDING
6442 /* Restore KeyTyped, setting 'filetype=help' may reset it.
6443 * It is needed for do_tag top open folds under the cursor. */
6444 KeyTyped = old_KeyTyped;
6445#endif
6446
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447 if (tag != NULL)
6448 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
6449
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006450 /* Delete the empty buffer if we're not using it. Careful: autocommands
6451 * may have jumped to another window, check that the buffer is not in a
6452 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
6454 {
6455 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006456 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457 wipe_buffer(buf, TRUE);
6458 }
6459
6460 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006461 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462 curwin->w_alt_fnum = alt_fnum;
6463
6464erret:
6465 vim_free(tag);
6466}
6467
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006468/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006469 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006470 */
6471 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006472ex_helpclose(exarg_T *eap UNUSED)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006473{
6474 win_T *win;
6475
6476 FOR_ALL_WINDOWS(win)
6477 {
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006478 if (bt_help(win->w_buffer))
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006479 {
6480 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006481 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006482 }
6483 }
6484}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006485
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006486#if defined(FEAT_MULTI_LANG) || defined(PROTO)
6487/*
6488 * In an argument search for a language specifiers in the form "@xx".
6489 * Changes the "@" to NUL if found, and returns a pointer to "xx".
6490 * Returns NULL if not found.
6491 */
6492 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006493check_help_lang(char_u *arg)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006494{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006495 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006496
6497 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
6498 && ASCII_ISALPHA(arg[len - 1]))
6499 {
6500 arg[len - 3] = NUL; /* remove the '@' */
6501 return arg + len - 2;
6502 }
6503 return NULL;
6504}
6505#endif
6506
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507/*
6508 * Return a heuristic indicating how well the given string matches. The
6509 * smaller the number, the better the match. This is the order of priorities,
6510 * from best match to worst match:
6511 * - Match with least alpha-numeric characters is better.
6512 * - Match with least total characters is better.
6513 * - Match towards the start is better.
6514 * - Match starting with "+" is worse (feature instead of command)
6515 * Assumption is made that the matched_string passed has already been found to
6516 * match some string for which help is requested. webb.
6517 */
6518 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006519help_heuristic(
6520 char_u *matched_string,
6521 int offset, /* offset for match */
6522 int wrong_case) /* no matching case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523{
6524 int num_letters;
6525 char_u *p;
6526
6527 num_letters = 0;
6528 for (p = matched_string; *p; p++)
6529 if (ASCII_ISALNUM(*p))
6530 num_letters++;
6531
6532 /*
6533 * Multiply the number of letters by 100 to give it a much bigger
6534 * weighting than the number of characters.
6535 * If there only is a match while ignoring case, add 5000.
6536 * If the match starts in the middle of a word, add 10000 to put it
6537 * somewhere in the last half.
6538 * If the match is more than 2 chars from the start, multiply by 200 to
6539 * put it after matches at the start.
6540 */
6541 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
6542 && ASCII_ISALNUM(matched_string[offset - 1]))
6543 offset += 10000;
6544 else if (offset > 2)
6545 offset *= 200;
6546 if (wrong_case)
6547 offset += 5000;
6548 /* Features are less interesting than the subjects themselves, but "+"
6549 * alone is not a feature. */
6550 if (matched_string[0] == '+' && matched_string[1] != NUL)
6551 offset += 100;
6552 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
6553}
6554
6555/*
6556 * Compare functions for qsort() below, that checks the help heuristics number
6557 * that has been put after the tagname by find_tags().
6558 */
6559 static int
6560#ifdef __BORLANDC__
6561_RTLENTRYF
6562#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006563help_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564{
6565 char *p1;
6566 char *p2;
6567
6568 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
6569 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
6570 return strcmp(p1, p2);
6571}
6572
6573/*
6574 * Find all help tags matching "arg", sort them and return in matches[], with
6575 * the number of matches in num_matches.
6576 * The matches will be sorted with a "best" match algorithm.
6577 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6578 */
6579 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006580find_help_tags(
6581 char_u *arg,
6582 int *num_matches,
6583 char_u ***matches,
6584 int keep_lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006585{
6586 char_u *s, *d;
6587 int i;
6588 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006589 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006590 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006591 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
6592 "-?", "q?", "v_g?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006593 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006594 "[count]", "[quotex]",
6595 "[range]", ":[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006596 "[pattern]", "\\|", "\\%$",
6597 "s/\\~", "s/\\U", "s/\\L",
6598 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006600 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006601 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006602 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
6603 "-?", "q?", "v_g?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006604 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006605 "\\[count]", "\\[quotex]",
6606 "\\[range]", ":\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006607 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006608 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006609 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006610 static char *(expr_table[]) = {"!=?", "!~?", "<=?", "<?", "==?", "=~?",
6611 ">=?", ">?", "is?", "isnot?"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006612 int flags;
6613
6614 d = IObuff; /* assume IObuff is long enough! */
6615
Bram Moolenaar3bf5e6a2018-08-02 22:23:57 +02006616 if (STRNICMP(arg, "expr-", 5) == 0)
6617 {
6618 // When the string starting with "expr-" and containing '?' and matches
6619 // the table, it is taken literally. Otherwise '?' is recognized as a
6620 // wildcard.
6621 for (i = (int)(sizeof(expr_table) / sizeof(char *)); --i >= 0; )
6622 if (STRCMP(arg + 5, expr_table[i]) == 0)
6623 {
6624 STRCPY(d, arg);
6625 break;
6626 }
6627 }
6628 else
6629 {
6630 // Recognize a few exceptions to the rule. Some strings that contain
6631 // '*' with "star". Otherwise '*' is recognized as a wildcard.
6632 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
6633 if (STRCMP(arg, mtable[i]) == 0)
6634 {
6635 STRCPY(d, rtable[i]);
6636 break;
6637 }
6638 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006639
6640 if (i < 0) /* no match in table */
6641 {
6642 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6643 * Also replace "\%^" and "\%(", they match every tag too.
6644 * Also "\zs", "\z1", etc.
6645 * Also "\@<", "\@=", "\@<=", etc.
6646 * And also "\_$" and "\_^". */
6647 if (arg[0] == '\\'
6648 && ((arg[1] != NUL && arg[2] == NUL)
6649 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6650 && arg[2] != NUL)))
6651 {
6652 STRCPY(d, "/\\\\");
6653 STRCPY(d + 3, arg + 1);
6654 /* Check for "/\\_$", should be "/\\_\$" */
6655 if (d[3] == '_' && d[4] == '$')
6656 STRCPY(d + 4, "\\$");
6657 }
6658 else
6659 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006660 /* Replace:
6661 * "[:...:]" with "\[:...:]"
6662 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006663 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006664 */
6665 if ((arg[0] == '[' && (arg[1] == ':'
6666 || (arg[1] == '+' && arg[2] == '+')))
6667 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006668 *d++ = '\\';
6669
Bram Moolenaar00f9e0d2016-03-15 13:44:12 +01006670 /*
6671 * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'.
6672 */
6673 if (*arg == '(' && arg[1] == '\'')
6674 arg++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006675 for (s = arg; *s; ++s)
6676 {
6677 /*
6678 * Replace "|" with "bar" and '"' with "quote" to match the name of
6679 * the tags for these commands.
6680 * Replace "*" with ".*" and "?" with "." to match command line
6681 * completion.
6682 * Insert a backslash before '~', '$' and '.' to avoid their
6683 * special meaning.
6684 */
6685 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6686 break;
6687 switch (*s)
6688 {
6689 case '|': STRCPY(d, "bar");
6690 d += 3;
6691 continue;
6692 case '"': STRCPY(d, "quote");
6693 d += 5;
6694 continue;
6695 case '*': *d++ = '.';
6696 break;
6697 case '?': *d++ = '.';
6698 continue;
6699 case '$':
6700 case '.':
6701 case '~': *d++ = '\\';
6702 break;
6703 }
6704
6705 /*
6706 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6707 * ":help i_^_CTRL-D" work.
6708 * Insert '-' before and after "CTRL-X" when applicable.
6709 */
6710 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6711 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6712 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006713 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6714 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006715 STRCPY(d, "CTRL-");
6716 d += 5;
6717 if (*s < ' ')
6718 {
6719#ifdef EBCDIC
6720 *d++ = CtrlChar(*s);
6721#else
6722 *d++ = *s + '@';
6723#endif
6724 if (d[-1] == '\\')
6725 *d++ = '\\'; /* double a backslash */
6726 }
6727 else
6728 *d++ = *++s;
6729 if (s[1] != NUL && s[1] != '_')
6730 *d++ = '_'; /* append a '_' */
6731 continue;
6732 }
6733 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6734 *d++ = '\\';
6735
6736 /*
6737 * Insert a backslash before a backslash after a slash, for search
6738 * pattern tags: "/\|" --> "/\\|".
6739 */
6740 else if (s[0] == '\\' && s[1] != '\\'
6741 && *arg == '/' && s == arg + 1)
6742 *d++ = '\\';
6743
6744 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6745 * "CTRL-\_CTRL-N" */
6746 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6747 {
6748 STRCPY(d, "CTRL-\\\\");
6749 d += 7;
6750 s += 6;
6751 }
6752
6753 *d++ = *s;
6754
6755 /*
Bram Moolenaar81edd172016-04-14 13:51:37 +02006756 * If tag contains "({" or "([", tag terminates at the "(".
6757 * This is for help on functions, e.g.: abs({expr}).
6758 */
6759 if (*s == '(' && (s[1] == '{' || s[1] =='['))
6760 break;
6761
6762 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006763 * If tag starts with ', toss everything after a second '. Fixes
6764 * CTRL-] on 'option'. (would include the trailing '.').
6765 */
6766 if (*s == '\'' && s > arg && *arg == '\'')
6767 break;
Bram Moolenaar28b942a2016-06-04 22:31:27 +02006768 /* Also '{' and '}'. */
6769 if (*s == '}' && s > arg && *arg == '{')
6770 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006771 }
6772 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006773
6774 if (*IObuff == '`')
6775 {
6776 if (d > IObuff + 2 && d[-1] == '`')
6777 {
6778 /* remove the backticks from `command` */
6779 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6780 d[-2] = NUL;
6781 }
6782 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6783 {
6784 /* remove the backticks and comma from `command`, */
6785 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6786 d[-3] = NUL;
6787 }
6788 else if (d > IObuff + 4 && d[-3] == '`'
6789 && d[-2] == '\\' && d[-1] == '.')
6790 {
6791 /* remove the backticks and dot from `command`\. */
6792 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6793 d[-4] = NUL;
6794 }
6795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796 }
6797 }
6798
6799 *matches = (char_u **)"";
6800 *num_matches = 0;
6801 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6802 if (keep_lang)
6803 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006804 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006806 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807 /* Sort the matches found on the heuristic number that is after the
6808 * tag name. */
6809 qsort((void *)*matches, (size_t)*num_matches,
6810 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006811 /* Delete more than TAG_MANY to reduce the size of the listing. */
6812 while (*num_matches > TAG_MANY)
6813 vim_free((*matches)[--*num_matches]);
6814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815 return OK;
6816}
6817
6818/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006819 * Called when starting to edit a buffer for a help file.
6820 */
6821 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006822prepare_help_buffer(void)
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006823{
6824 char_u *p;
6825
6826 curbuf->b_help = TRUE;
6827#ifdef FEAT_QUICKFIX
6828 set_string_option_direct((char_u *)"buftype", -1,
6829 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6830#endif
6831
6832 /*
6833 * Always set these options after jumping to a help tag, because the
6834 * user may have an autocommand that gets in the way.
6835 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6836 * latin1 word characters (for translated help files).
6837 * Only set it when needed, buf_init_chartab() is some work.
6838 */
6839 p =
6840#ifdef EBCDIC
6841 (char_u *)"65-255,^*,^|,^\"";
6842#else
6843 (char_u *)"!-~,^*,^|,^\",192-255";
6844#endif
6845 if (STRCMP(curbuf->b_p_isk, p) != 0)
6846 {
6847 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6848 check_buf_options(curbuf);
6849 (void)buf_init_chartab(curbuf, FALSE);
6850 }
6851
Bram Moolenaar0b105412014-11-30 13:34:23 +01006852#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006853 /* Don't use the global foldmethod.*/
6854 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6855 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006856#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006857
6858 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6859 curwin->w_p_list = FALSE; /* no list mode */
6860
6861 curbuf->b_p_ma = FALSE; /* not modifiable */
6862 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6863 curwin->w_p_nu = 0; /* no line numbers */
6864 curwin->w_p_rnu = 0; /* no relative line numbers */
6865 RESET_BINDING(curwin); /* no scroll or cursor binding */
6866#ifdef FEAT_ARABIC
6867 curwin->w_p_arab = FALSE; /* no arabic mode */
6868#endif
6869#ifdef FEAT_RIGHTLEFT
6870 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6871#endif
6872#ifdef FEAT_FOLDING
6873 curwin->w_p_fen = FALSE; /* No folding in the help window */
6874#endif
6875#ifdef FEAT_DIFF
6876 curwin->w_p_diff = FALSE; /* No 'diff' */
6877#endif
6878#ifdef FEAT_SPELL
6879 curwin->w_p_spell = FALSE; /* No spell checking */
6880#endif
6881
6882 set_buflisted(FALSE);
6883}
6884
6885/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006886 * After reading a help file: May cleanup a help buffer when syntax
6887 * highlighting is not used.
6888 */
6889 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006890fix_help_buffer(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891{
6892 linenr_T lnum;
6893 char_u *line;
6894 int in_example = FALSE;
6895 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006896 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897 char_u *p;
6898 char_u *rt;
6899 int mustfree;
6900
Bram Moolenaar90492982017-06-22 14:16:31 +02006901 /* Set filetype to "help" if still needed. */
6902 if (STRCMP(curbuf->b_p_ft, "help") != 0)
Bram Moolenaar18141832017-06-25 21:17:25 +02006903 {
6904 ++curbuf_lock;
Bram Moolenaar90492982017-06-22 14:16:31 +02006905 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
Bram Moolenaar18141832017-06-25 21:17:25 +02006906 --curbuf_lock;
6907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908
6909#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006910 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006911#endif
6912 {
6913 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6914 {
6915 line = ml_get_buf(curbuf, lnum, FALSE);
6916 len = (int)STRLEN(line);
Bram Moolenaar1c465442017-03-12 20:10:05 +01006917 if (in_example && len > 0 && !VIM_ISWHITE(line[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006918 {
6919 /* End of example: non-white or '<' in first column. */
6920 if (line[0] == '<')
6921 {
6922 /* blank-out a '<' in the first column */
6923 line = ml_get_buf(curbuf, lnum, TRUE);
6924 line[0] = ' ';
6925 }
6926 in_example = FALSE;
6927 }
6928 if (!in_example && len > 0)
6929 {
6930 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6931 {
6932 /* blank-out a '>' in the last column (start of example) */
6933 line = ml_get_buf(curbuf, lnum, TRUE);
6934 line[len - 1] = ' ';
6935 in_example = TRUE;
6936 }
6937 else if (line[len - 1] == '~')
6938 {
6939 /* blank-out a '~' at the end of line (header marker) */
6940 line = ml_get_buf(curbuf, lnum, TRUE);
6941 line[len - 1] = ' ';
6942 }
6943 }
6944 }
6945 }
6946
6947 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006948 * In the "help.txt" and "help.abx" file, add the locally added help
6949 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006951 fname = gettail(curbuf->b_fname);
6952 if (fnamecmp(fname, "help.txt") == 0
6953#ifdef FEAT_MULTI_LANG
6954 || (fnamencmp(fname, "help.", 5) == 0
6955 && ASCII_ISALPHA(fname[5])
6956 && ASCII_ISALPHA(fname[6])
6957 && TOLOWER_ASC(fname[7]) == 'x'
6958 && fname[8] == NUL)
6959#endif
6960 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961 {
6962 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6963 {
6964 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006965 if (strstr((char *)line, "*local-additions*") == NULL)
6966 continue;
6967
6968 /* Go through all directories in 'runtimepath', skipping
6969 * $VIMRUNTIME. */
6970 p = p_rtp;
6971 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006972 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006973 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6974 mustfree = FALSE;
6975 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
Bram Moolenaare4db7ae2018-02-13 13:12:11 +01006976 if (rt != NULL && fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006977 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006978 int fcount;
6979 char_u **fnames;
6980 FILE *fd;
6981 char_u *s;
6982 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006983#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006984 vimconv_T vc;
6985 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986#endif
6987
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006988 /* Find all "doc/ *.txt" files in this directory. */
6989 add_pathsep(NameBuff);
6990#ifdef FEAT_MULTI_LANG
6991 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006993 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006995 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6996 &fnames, EW_FILE|EW_SILENT) == OK
6997 && fcount > 0)
6998 {
6999#ifdef FEAT_MULTI_LANG
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007000 int i1, i2;
7001 char_u *f1, *f2;
7002 char_u *t1, *t2;
7003 char_u *e1, *e2;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007004
7005 /* If foo.abx is found use it instead of foo.txt in
7006 * the same directory. */
7007 for (i1 = 0; i1 < fcount; ++i1)
7008 {
7009 for (i2 = 0; i2 < fcount; ++i2)
7010 {
7011 if (i1 == i2)
7012 continue;
7013 if (fnames[i1] == NULL || fnames[i2] == NULL)
7014 continue;
7015 f1 = fnames[i1];
7016 f2 = fnames[i2];
7017 t1 = gettail(f1);
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007018 t2 = gettail(f2);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007019 e1 = vim_strrchr(t1, '.');
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007020 e2 = vim_strrchr(t2, '.');
Bram Moolenaar7756e742016-10-21 20:35:37 +02007021 if (e1 == NULL || e2 == NULL)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007022 continue;
7023 if (fnamecmp(e1, ".txt") != 0
7024 && fnamecmp(e1, fname + 4) != 0)
7025 {
7026 /* Not .txt and not .abx, remove it. */
Bram Moolenaard23a8232018-02-10 18:45:26 +01007027 VIM_CLEAR(fnames[i1]);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007028 continue;
7029 }
Bram Moolenaar35c5e812017-12-09 21:10:13 +01007030 if (e1 - f1 != e2 - f2
7031 || fnamencmp(f1, f2, e1 - f1) != 0)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007032 continue;
7033 if (fnamecmp(e1, ".txt") == 0
7034 && fnamecmp(e2, fname + 4) == 0)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007035 /* use .abx instead of .txt */
Bram Moolenaard23a8232018-02-10 18:45:26 +01007036 VIM_CLEAR(fnames[i1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007039#endif
7040 for (fi = 0; fi < fcount; ++fi)
7041 {
7042 if (fnames[fi] == NULL)
7043 continue;
7044 fd = mch_fopen((char *)fnames[fi], "r");
7045 if (fd != NULL)
7046 {
7047 vim_fgets(IObuff, IOSIZE, fd);
7048 if (IObuff[0] == '*'
7049 && (s = vim_strchr(IObuff + 1, '*'))
7050 != NULL)
7051 {
7052#ifdef FEAT_MBYTE
7053 int this_utf = MAYBE;
7054#endif
7055 /* Change tag definition to a
7056 * reference and remove <CR>/<NL>. */
7057 IObuff[0] = '|';
7058 *s = '|';
7059 while (*s != NUL)
7060 {
7061 if (*s == '\r' || *s == '\n')
7062 *s = NUL;
7063#ifdef FEAT_MBYTE
7064 /* The text is utf-8 when a byte
7065 * above 127 is found and no
7066 * illegal byte sequence is found.
7067 */
7068 if (*s >= 0x80 && this_utf != FALSE)
7069 {
7070 int l;
7071
7072 this_utf = TRUE;
7073 l = utf_ptr2len(s);
7074 if (l == 1)
7075 this_utf = FALSE;
7076 s += l - 1;
7077 }
7078#endif
7079 ++s;
7080 }
7081#ifdef FEAT_MBYTE
7082 /* The help file is latin1 or utf-8;
7083 * conversion to the current
7084 * 'encoding' may be required. */
7085 vc.vc_type = CONV_NONE;
7086 convert_setup(&vc, (char_u *)(
7087 this_utf == TRUE ? "utf-8"
7088 : "latin1"), p_enc);
7089 if (vc.vc_type == CONV_NONE)
7090 /* No conversion needed. */
7091 cp = IObuff;
7092 else
7093 {
7094 /* Do the conversion. If it fails
7095 * use the unconverted text. */
7096 cp = string_convert(&vc, IObuff,
7097 NULL);
7098 if (cp == NULL)
7099 cp = IObuff;
7100 }
7101 convert_setup(&vc, NULL, NULL);
7102
7103 ml_append(lnum, cp, (colnr_T)0, FALSE);
7104 if (cp != IObuff)
7105 vim_free(cp);
7106#else
7107 ml_append(lnum, IObuff, (colnr_T)0,
7108 FALSE);
7109#endif
7110 ++lnum;
7111 }
7112 fclose(fd);
7113 }
7114 }
7115 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007118 if (mustfree)
7119 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007121 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007122 }
7123 }
7124}
7125
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007126/*
7127 * ":exusage"
7128 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007129 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007130ex_exusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007131{
7132 do_cmdline_cmd((char_u *)"help ex-cmd-index");
7133}
7134
7135/*
7136 * ":viusage"
7137 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007138 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007139ex_viusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007140{
7141 do_cmdline_cmd((char_u *)"help normal-index");
7142}
7143
Bram Moolenaar071d4272004-06-13 20:20:40 +00007144/*
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007145 * Generate tags in one help directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007146 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007148helptags_one(
7149 char_u *dir, /* doc directory */
7150 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */
7151 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */
7152 int add_help_tags) /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007153{
7154 FILE *fd_tags;
7155 FILE *fd;
7156 garray_T ga;
7157 int filecount;
7158 char_u **files;
7159 char_u *p1, *p2;
7160 int fi;
7161 char_u *s;
7162 int i;
7163 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007164 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165# ifdef FEAT_MBYTE
7166 int utf8 = MAYBE;
7167 int this_utf8;
7168 int firstline;
7169 int mix = FALSE; /* detected mixed encodings */
7170# endif
7171
7172 /*
7173 * Find all *.txt files.
7174 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01007175 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007176 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007177 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007178 STRCAT(NameBuff, ext);
7179 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7180 EW_FILE|EW_SILENT) == FAIL
7181 || filecount == 0)
7182 {
7183 if (!got_int)
Bram Moolenaar5b302912016-08-24 22:11:55 +02007184 EMSG2(_("E151: No match: %s"), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007185 return;
7186 }
7187
7188 /*
7189 * Open the tags file for writing.
7190 * Do this before scanning through all the files.
7191 */
7192 STRCPY(NameBuff, dir);
7193 add_pathsep(NameBuff);
7194 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007195 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007196 if (fd_tags == NULL)
7197 {
7198 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
7199 FreeWild(filecount, files);
7200 return;
7201 }
7202
7203 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007204 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
7205 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007206 */
7207 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007208 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
7209 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210 {
7211 if (ga_grow(&ga, 1) == FAIL)
7212 got_int = TRUE;
7213 else
7214 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007215 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007216 if (s == NULL)
7217 got_int = TRUE;
7218 else
7219 {
7220 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
7221 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7222 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007223 }
7224 }
7225 }
7226
7227 /*
7228 * Go over all the files and extract the tags.
7229 */
7230 for (fi = 0; fi < filecount && !got_int; ++fi)
7231 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007232 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007233 if (fd == NULL)
7234 {
7235 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
7236 continue;
7237 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007238 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007239
7240# ifdef FEAT_MBYTE
7241 firstline = TRUE;
7242# endif
7243 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
7244 {
7245# ifdef FEAT_MBYTE
7246 if (firstline)
7247 {
7248 /* Detect utf-8 file by a non-ASCII char in the first line. */
7249 this_utf8 = MAYBE;
7250 for (s = IObuff; *s != NUL; ++s)
7251 if (*s >= 0x80)
7252 {
7253 int l;
7254
7255 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007256 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007257 if (l == 1)
7258 {
7259 /* Illegal UTF-8 byte sequence. */
7260 this_utf8 = FALSE;
7261 break;
7262 }
7263 s += l - 1;
7264 }
7265 if (this_utf8 == MAYBE) /* only ASCII characters found */
7266 this_utf8 = FALSE;
7267 if (utf8 == MAYBE) /* first file */
7268 utf8 = this_utf8;
7269 else if (utf8 != this_utf8)
7270 {
7271 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
7272 mix = !got_int;
7273 got_int = TRUE;
7274 }
7275 firstline = FALSE;
7276 }
7277# endif
7278 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
7279 while (p1 != NULL)
7280 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02007281 /* Use vim_strbyte() instead of vim_strchr() so that when
7282 * 'encoding' is dbcs it still works, don't find '*' in the
7283 * second byte. */
7284 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
7286 {
7287 for (s = p1 + 1; s < p2; ++s)
7288 if (*s == ' ' || *s == '\t' || *s == '|')
7289 break;
7290
7291 /*
7292 * Only accept a *tag* when it consists of valid
7293 * characters, there is white space before it and is
7294 * followed by a white character or end-of-line.
7295 */
7296 if (s == p2
7297 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
7298 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
7299 || s[1] == '\0'))
7300 {
7301 *p2 = '\0';
7302 ++p1;
7303 if (ga_grow(&ga, 1) == FAIL)
7304 {
7305 got_int = TRUE;
7306 break;
7307 }
7308 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
7309 if (s == NULL)
7310 {
7311 got_int = TRUE;
7312 break;
7313 }
7314 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7315 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316 sprintf((char *)s, "%s\t%s", p1, fname);
7317
7318 /* find next '*' */
7319 p2 = vim_strchr(p2 + 1, '*');
7320 }
7321 }
7322 p1 = p2;
7323 }
7324 line_breakcheck();
7325 }
7326
7327 fclose(fd);
7328 }
7329
7330 FreeWild(filecount, files);
7331
7332 if (!got_int)
7333 {
7334 /*
7335 * Sort the tags.
7336 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02007337 if (ga.ga_data != NULL)
7338 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339
7340 /*
7341 * Check for duplicates.
7342 */
7343 for (i = 1; i < ga.ga_len; ++i)
7344 {
7345 p1 = ((char_u **)ga.ga_data)[i - 1];
7346 p2 = ((char_u **)ga.ga_data)[i];
7347 while (*p1 == *p2)
7348 {
7349 if (*p2 == '\t')
7350 {
7351 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007352 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007353 _("E154: Duplicate tag \"%s\" in file %s/%s"),
7354 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
7355 EMSG(NameBuff);
7356 *p2 = '\t';
7357 break;
7358 }
7359 ++p1;
7360 ++p2;
7361 }
7362 }
7363
7364# ifdef FEAT_MBYTE
7365 if (utf8 == TRUE)
7366 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
7367# endif
7368
7369 /*
7370 * Write the tags into the file.
7371 */
7372 for (i = 0; i < ga.ga_len; ++i)
7373 {
7374 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00007375 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007376 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00007377 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007378 else
7379 {
7380 fprintf(fd_tags, "%s\t/*", s);
7381 for (p1 = s; *p1 != '\t'; ++p1)
7382 {
7383 /* insert backslash before '\\' and '/' */
7384 if (*p1 == '\\' || *p1 == '/')
7385 putc('\\', fd_tags);
7386 putc(*p1, fd_tags);
7387 }
7388 fprintf(fd_tags, "*\n");
7389 }
7390 }
7391 }
7392#ifdef FEAT_MBYTE
7393 if (mix)
7394 got_int = FALSE; /* continue with other languages */
7395#endif
7396
7397 for (i = 0; i < ga.ga_len; ++i)
7398 vim_free(((char_u **)ga.ga_data)[i]);
7399 ga_clear(&ga);
7400 fclose(fd_tags); /* there is no check for an error... */
7401}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007403/*
7404 * Generate tags in one help directory, taking care of translations.
7405 */
7406 static void
7407do_helptags(char_u *dirname, int add_help_tags)
7408{
7409#ifdef FEAT_MULTI_LANG
7410 int len;
7411 int i, j;
7412 garray_T ga;
7413 char_u lang[2];
7414 char_u ext[5];
7415 char_u fname[8];
7416 int filecount;
7417 char_u **files;
7418
7419 /* Get a list of all files in the help directory and in subdirectories. */
7420 STRCPY(NameBuff, dirname);
7421 add_pathsep(NameBuff);
7422 STRCAT(NameBuff, "**");
7423 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7424 EW_FILE|EW_SILENT) == FAIL
7425 || filecount == 0)
7426 {
Bram Moolenaar5b302912016-08-24 22:11:55 +02007427 EMSG2(_("E151: No match: %s"), NameBuff);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007428 return;
7429 }
7430
7431 /* Go over all files in the directory to find out what languages are
7432 * present. */
7433 ga_init2(&ga, 1, 10);
7434 for (i = 0; i < filecount; ++i)
7435 {
7436 len = (int)STRLEN(files[i]);
7437 if (len > 4)
7438 {
7439 if (STRICMP(files[i] + len - 4, ".txt") == 0)
7440 {
7441 /* ".txt" -> language "en" */
7442 lang[0] = 'e';
7443 lang[1] = 'n';
7444 }
7445 else if (files[i][len - 4] == '.'
7446 && ASCII_ISALPHA(files[i][len - 3])
7447 && ASCII_ISALPHA(files[i][len - 2])
7448 && TOLOWER_ASC(files[i][len - 1]) == 'x')
7449 {
7450 /* ".abx" -> language "ab" */
7451 lang[0] = TOLOWER_ASC(files[i][len - 3]);
7452 lang[1] = TOLOWER_ASC(files[i][len - 2]);
7453 }
7454 else
7455 continue;
7456
7457 /* Did we find this language already? */
7458 for (j = 0; j < ga.ga_len; j += 2)
7459 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
7460 break;
7461 if (j == ga.ga_len)
7462 {
7463 /* New language, add it. */
7464 if (ga_grow(&ga, 2) == FAIL)
7465 break;
7466 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
7467 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
7468 }
7469 }
7470 }
7471
7472 /*
7473 * Loop over the found languages to generate a tags file for each one.
7474 */
7475 for (j = 0; j < ga.ga_len; j += 2)
7476 {
7477 STRCPY(fname, "tags-xx");
7478 fname[5] = ((char_u *)ga.ga_data)[j];
7479 fname[6] = ((char_u *)ga.ga_data)[j + 1];
7480 if (fname[5] == 'e' && fname[6] == 'n')
7481 {
7482 /* English is an exception: use ".txt" and "tags". */
7483 fname[4] = NUL;
7484 STRCPY(ext, ".txt");
7485 }
7486 else
7487 {
7488 /* Language "ab" uses ".abx" and "tags-ab". */
7489 STRCPY(ext, ".xxx");
7490 ext[1] = fname[5];
7491 ext[2] = fname[6];
7492 }
7493 helptags_one(dirname, ext, fname, add_help_tags);
7494 }
7495
7496 ga_clear(&ga);
7497 FreeWild(filecount, files);
7498
7499#else
7500 /* No language support, just use "*.txt" and "tags". */
7501 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
7502#endif
7503}
7504
7505 static void
7506helptags_cb(char_u *fname, void *cookie)
7507{
7508 do_helptags(fname, *(int *)cookie);
7509}
7510
7511/*
7512 * ":helptags"
7513 */
7514 void
7515ex_helptags(exarg_T *eap)
7516{
7517 expand_T xpc;
7518 char_u *dirname;
7519 int add_help_tags = FALSE;
7520
7521 /* Check for ":helptags ++t {dir}". */
Bram Moolenaar1c465442017-03-12 20:10:05 +01007522 if (STRNCMP(eap->arg, "++t", 3) == 0 && VIM_ISWHITE(eap->arg[3]))
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007523 {
7524 add_help_tags = TRUE;
7525 eap->arg = skipwhite(eap->arg + 3);
7526 }
7527
7528 if (STRCMP(eap->arg, "ALL") == 0)
7529 {
7530 do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR,
7531 helptags_cb, &add_help_tags);
7532 }
7533 else
7534 {
7535 ExpandInit(&xpc);
7536 xpc.xp_context = EXPAND_DIRECTORIES;
7537 dirname = ExpandOne(&xpc, eap->arg, NULL,
7538 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
7539 if (dirname == NULL || !mch_isdir(dirname))
7540 EMSG2(_("E150: Not a directory: %s"), eap->arg);
7541 else
7542 do_helptags(dirname, add_help_tags);
7543 vim_free(dirname);
7544 }
7545}
7546
Bram Moolenaar071d4272004-06-13 20:20:40 +00007547#if defined(FEAT_SIGNS) || defined(PROTO)
7548
7549/*
7550 * Struct to hold the sign properties.
7551 */
7552typedef struct sign sign_T;
7553
7554struct sign
7555{
7556 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02007557 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558 char_u *sn_name; /* name of sign */
7559 char_u *sn_icon; /* name of pixmap */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007560# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007561 void *sn_image; /* icon image */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007562# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007563 char_u *sn_text; /* text used instead of pixmap */
7564 int sn_line_hl; /* highlight ID for line */
7565 int sn_text_hl; /* highlight ID for text */
7566};
7567
Bram Moolenaar071d4272004-06-13 20:20:40 +00007568static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007569static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007570
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01007571static int sign_cmd_idx(char_u *begin_cmd, char_u *end_cmd);
7572static void sign_list_defined(sign_T *sp);
7573static void sign_undefine(sign_T *sp, sign_T *sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007574
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007575static char *cmds[] = {
7576 "define",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007577# define SIGNCMD_DEFINE 0
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007578 "undefine",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007579# define SIGNCMD_UNDEFINE 1
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007580 "list",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007581# define SIGNCMD_LIST 2
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007582 "place",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007583# define SIGNCMD_PLACE 3
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007584 "unplace",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007585# define SIGNCMD_UNPLACE 4
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007586 "jump",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007587# define SIGNCMD_JUMP 5
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007588 NULL
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007589# define SIGNCMD_LAST 6
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007590};
7591
7592/*
7593 * Find index of a ":sign" subcmd from its name.
7594 * "*end_cmd" must be writable.
7595 */
7596 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007597sign_cmd_idx(
7598 char_u *begin_cmd, /* begin of sign subcmd */
7599 char_u *end_cmd) /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007600{
7601 int idx;
7602 char save = *end_cmd;
7603
7604 *end_cmd = NUL;
7605 for (idx = 0; ; ++idx)
7606 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
7607 break;
7608 *end_cmd = save;
7609 return idx;
7610}
7611
Bram Moolenaar071d4272004-06-13 20:20:40 +00007612/*
7613 * ":sign" command
7614 */
7615 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007616ex_sign(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007617{
7618 char_u *arg = eap->arg;
7619 char_u *p;
7620 int idx;
7621 sign_T *sp;
7622 sign_T *sp_prev;
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01007623 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007624
7625 /* Parse the subcommand. */
7626 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007627 idx = sign_cmd_idx(arg, p);
7628 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007629 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007630 EMSG2(_("E160: Unknown sign command: %s"), arg);
7631 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007632 }
7633 arg = skipwhite(p);
7634
7635 if (idx <= SIGNCMD_LIST)
7636 {
7637 /*
7638 * Define, undefine or list signs.
7639 */
7640 if (idx == SIGNCMD_LIST && *arg == NUL)
7641 {
7642 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007643 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007644 sign_list_defined(sp);
7645 }
7646 else if (*arg == NUL)
7647 EMSG(_("E156: Missing sign name"));
7648 else
7649 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007650 /* Isolate the sign name. If it's a number skip leading zeroes,
7651 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007652 p = skiptowhite(arg);
7653 if (*p != NUL)
7654 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007655 while (arg[0] == '0' && arg[1] != NUL)
7656 ++arg;
7657
Bram Moolenaar071d4272004-06-13 20:20:40 +00007658 sp_prev = NULL;
7659 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7660 {
7661 if (STRCMP(sp->sn_name, arg) == 0)
7662 break;
7663 sp_prev = sp;
7664 }
7665 if (idx == SIGNCMD_DEFINE)
7666 {
7667 /* ":sign define {name} ...": define a sign */
7668 if (sp == NULL)
7669 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007670 sign_T *lp;
7671 int start = next_sign_typenr;
7672
Bram Moolenaar071d4272004-06-13 20:20:40 +00007673 /* Allocate a new sign. */
7674 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7675 if (sp == NULL)
7676 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007677
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007678 /* Check that next_sign_typenr is not already being used.
7679 * This only happens after wrapping around. Hopefully
7680 * another one got deleted and we can use its number. */
7681 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007682 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007683 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007684 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007685 ++next_sign_typenr;
7686 if (next_sign_typenr == MAX_TYPENR)
7687 next_sign_typenr = 1;
7688 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007689 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007690 vim_free(sp);
7691 EMSG(_("E612: Too many signs defined"));
7692 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007693 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007694 lp = first_sign; /* start all over */
7695 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007696 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007697 lp = lp->sn_next;
7698 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007699
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007700 sp->sn_typenr = next_sign_typenr;
7701 if (++next_sign_typenr == MAX_TYPENR)
7702 next_sign_typenr = 1; /* wrap around */
7703
7704 sp->sn_name = vim_strsave(arg);
7705 if (sp->sn_name == NULL) /* out of memory */
7706 {
7707 vim_free(sp);
7708 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007709 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007710
7711 /* add the new sign to the list of signs */
7712 if (sp_prev == NULL)
7713 first_sign = sp;
7714 else
7715 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007716 }
7717
7718 /* set values for a defined sign. */
7719 for (;;)
7720 {
7721 arg = skipwhite(p);
7722 if (*arg == NUL)
7723 break;
7724 p = skiptowhite_esc(arg);
7725 if (STRNCMP(arg, "icon=", 5) == 0)
7726 {
7727 arg += 5;
7728 vim_free(sp->sn_icon);
7729 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7730 backslash_halve(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007731# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007732 if (gui.in_use)
7733 {
7734 out_flush();
7735 if (sp->sn_image != NULL)
7736 gui_mch_destroy_sign(sp->sn_image);
7737 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7738 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007739# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007740 }
7741 else if (STRNCMP(arg, "text=", 5) == 0)
7742 {
7743 char_u *s;
7744 int cells;
7745 int len;
7746
7747 arg += 5;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007748# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007749 /* Count cells and check for non-printable chars */
7750 if (has_mbyte)
7751 {
7752 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007753 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007754 {
7755 if (!vim_isprintc((*mb_ptr2char)(s)))
7756 break;
7757 cells += (*mb_ptr2cells)(s);
7758 }
7759 }
7760 else
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007761# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007762 {
7763 for (s = arg; s < p; ++s)
7764 if (!vim_isprintc(*s))
7765 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007766 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007767 }
7768 /* Currently must be one or two display cells */
7769 if (s != p || cells < 1 || cells > 2)
7770 {
7771 *p = NUL;
7772 EMSG2(_("E239: Invalid sign text: %s"), arg);
7773 return;
7774 }
7775
7776 vim_free(sp->sn_text);
7777 /* Allocate one byte more if we need to pad up
7778 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007779 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007780 sp->sn_text = vim_strnsave(arg, len);
7781
7782 if (sp->sn_text != NULL && cells == 1)
7783 STRCPY(sp->sn_text + len - 1, " ");
7784 }
7785 else if (STRNCMP(arg, "linehl=", 7) == 0)
7786 {
7787 arg += 7;
7788 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7789 }
7790 else if (STRNCMP(arg, "texthl=", 7) == 0)
7791 {
7792 arg += 7;
7793 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7794 }
7795 else
7796 {
7797 EMSG2(_(e_invarg2), arg);
7798 return;
7799 }
7800 }
7801 }
7802 else if (sp == NULL)
7803 EMSG2(_("E155: Unknown sign: %s"), arg);
7804 else if (idx == SIGNCMD_LIST)
7805 /* ":sign list {name}" */
7806 sign_list_defined(sp);
7807 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007808 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007809 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007810 }
7811 }
7812 else
7813 {
7814 int id = -1;
7815 linenr_T lnum = -1;
7816 char_u *sign_name = NULL;
7817 char_u *arg1;
7818
7819 if (*arg == NUL)
7820 {
7821 if (idx == SIGNCMD_PLACE)
7822 {
7823 /* ":sign place": list placed signs in all buffers */
7824 sign_list_placed(NULL);
7825 }
7826 else if (idx == SIGNCMD_UNPLACE)
7827 {
7828 /* ":sign unplace": remove placed sign at cursor */
7829 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7830 if (id > 0)
7831 {
7832 buf_delsign(curwin->w_buffer, id);
7833 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7834 }
7835 else
7836 EMSG(_("E159: Missing sign number"));
7837 }
7838 else
7839 EMSG(_(e_argreq));
7840 return;
7841 }
7842
7843 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7844 {
7845 /* ":sign unplace *": remove all placed signs */
7846 buf_delete_all_signs();
7847 return;
7848 }
7849
7850 /* first arg could be placed sign id */
7851 arg1 = arg;
7852 if (VIM_ISDIGIT(*arg))
7853 {
7854 id = getdigits(&arg);
Bram Moolenaar1c465442017-03-12 20:10:05 +01007855 if (!VIM_ISWHITE(*arg) && *arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007856 {
7857 id = -1;
7858 arg = arg1;
7859 }
7860 else
7861 {
7862 arg = skipwhite(arg);
7863 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7864 {
7865 /* ":sign unplace {id}": remove placed sign by number */
Bram Moolenaar29323592016-07-24 22:04:11 +02007866 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007867 if ((lnum = buf_delsign(buf, id)) != 0)
7868 update_debug_sign(buf, lnum);
7869 return;
7870 }
7871 }
7872 }
7873
7874 /*
7875 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7876 * Leave "arg" pointing to {fname}.
7877 */
7878 for (;;)
7879 {
7880 if (STRNCMP(arg, "line=", 5) == 0)
7881 {
7882 arg += 5;
7883 lnum = atoi((char *)arg);
7884 arg = skiptowhite(arg);
7885 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007886 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7887 {
7888 if (id != -1)
7889 {
7890 EMSG(_(e_invarg));
7891 return;
7892 }
7893 id = -2;
7894 arg = skiptowhite(arg + 1);
7895 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007896 else if (STRNCMP(arg, "name=", 5) == 0)
7897 {
7898 arg += 5;
7899 sign_name = arg;
7900 arg = skiptowhite(arg);
7901 if (*arg != NUL)
7902 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007903 while (sign_name[0] == '0' && sign_name[1] != NUL)
7904 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007905 }
7906 else if (STRNCMP(arg, "file=", 5) == 0)
7907 {
7908 arg += 5;
7909 buf = buflist_findname(arg);
7910 break;
7911 }
7912 else if (STRNCMP(arg, "buffer=", 7) == 0)
7913 {
7914 arg += 7;
7915 buf = buflist_findnr((int)getdigits(&arg));
7916 if (*skipwhite(arg) != NUL)
7917 EMSG(_(e_trailing));
7918 break;
7919 }
7920 else
7921 {
7922 EMSG(_(e_invarg));
7923 return;
7924 }
7925 arg = skipwhite(arg);
7926 }
7927
7928 if (buf == NULL)
7929 {
7930 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7931 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007932 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007933 {
7934 if (lnum >= 0 || sign_name != NULL)
7935 EMSG(_(e_invarg));
7936 else
7937 /* ":sign place file={fname}": list placed signs in one file */
7938 sign_list_placed(buf);
7939 }
7940 else if (idx == SIGNCMD_JUMP)
7941 {
7942 /* ":sign jump {id} file={fname}" */
7943 if (lnum >= 0 || sign_name != NULL)
7944 EMSG(_(e_invarg));
7945 else if ((lnum = buf_findsign(buf, id)) > 0)
7946 { /* goto a sign ... */
7947 if (buf_jump_open_win(buf) != NULL)
7948 { /* ... in a current window */
7949 curwin->w_cursor.lnum = lnum;
7950 check_cursor_lnum();
7951 beginline(BL_WHITE);
7952 }
7953 else
7954 { /* ... not currently in a window */
7955 char_u *cmd;
7956
Bram Moolenaarbfd096d2016-08-17 22:29:09 +02007957 if (buf->b_fname == NULL)
7958 {
7959 EMSG(_("E934: Cannot jump to a buffer that does not have a name"));
7960 return;
7961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007962 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7963 if (cmd == NULL)
7964 return;
7965 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7966 do_cmdline_cmd(cmd);
7967 vim_free(cmd);
7968 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007969# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00007970 foldOpenCursor();
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007971# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007972 }
7973 else
7974 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7975 }
7976 else if (idx == SIGNCMD_UNPLACE)
7977 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007978 if (lnum >= 0 || sign_name != NULL)
7979 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007980 else if (id == -2)
7981 {
7982 /* ":sign unplace * file={fname}" */
7983 redraw_buf_later(buf, NOT_VALID);
7984 buf_delete_signs(buf);
7985 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007986 else
7987 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007988 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007989 lnum = buf_delsign(buf, id);
7990 update_debug_sign(buf, lnum);
7991 }
7992 }
7993 /* idx == SIGNCMD_PLACE */
7994 else if (sign_name != NULL)
7995 {
7996 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7997 if (STRCMP(sp->sn_name, sign_name) == 0)
7998 break;
7999 if (sp == NULL)
8000 {
8001 EMSG2(_("E155: Unknown sign: %s"), sign_name);
8002 return;
8003 }
8004 if (lnum > 0)
8005 /* ":sign place {id} line={lnum} name={name} file={fname}":
8006 * place a sign */
8007 buf_addsign(buf, id, lnum, sp->sn_typenr);
8008 else
8009 /* ":sign place {id} file={fname}": change sign type */
8010 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02008011 if (lnum > 0)
8012 update_debug_sign(buf, lnum);
8013 else
8014 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008015 }
8016 else
8017 EMSG(_(e_invarg));
8018 }
8019}
8020
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008021# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008022/*
8023 * Allocate the icons. Called when the GUI has started. Allows defining
8024 * signs before it starts.
8025 */
8026 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008027sign_gui_started(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008028{
8029 sign_T *sp;
8030
8031 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8032 if (sp->sn_icon != NULL)
8033 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
8034}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008035# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008036
8037/*
8038 * List one sign.
8039 */
8040 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008041sign_list_defined(sign_T *sp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008042{
8043 char_u *p;
8044
Bram Moolenaar555b2802005-05-19 21:08:39 +00008045 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008046 if (sp->sn_icon != NULL)
8047 {
8048 MSG_PUTS(" icon=");
8049 msg_outtrans(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008050# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00008051 if (sp->sn_image == NULL)
8052 MSG_PUTS(_(" (NOT FOUND)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008053# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008054 MSG_PUTS(_(" (not supported)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008055# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008056 }
8057 if (sp->sn_text != NULL)
8058 {
8059 MSG_PUTS(" text=");
8060 msg_outtrans(sp->sn_text);
8061 }
8062 if (sp->sn_line_hl > 0)
8063 {
8064 MSG_PUTS(" linehl=");
Bram Moolenaarc96272e2017-03-26 13:50:09 +02008065 p = get_highlight_name_ext(NULL, sp->sn_line_hl - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008066 if (p == NULL)
8067 MSG_PUTS("NONE");
8068 else
8069 msg_puts(p);
8070 }
8071 if (sp->sn_text_hl > 0)
8072 {
8073 MSG_PUTS(" texthl=");
Bram Moolenaarc96272e2017-03-26 13:50:09 +02008074 p = get_highlight_name_ext(NULL, sp->sn_text_hl - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008075 if (p == NULL)
8076 MSG_PUTS("NONE");
8077 else
8078 msg_puts(p);
8079 }
8080}
8081
8082/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008083 * Undefine a sign and free its memory.
8084 */
8085 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008086sign_undefine(sign_T *sp, sign_T *sp_prev)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008087{
8088 vim_free(sp->sn_name);
8089 vim_free(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008090# ifdef FEAT_SIGN_ICONS
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008091 if (sp->sn_image != NULL)
8092 {
8093 out_flush();
8094 gui_mch_destroy_sign(sp->sn_image);
8095 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008096# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008097 vim_free(sp->sn_text);
8098 if (sp_prev == NULL)
8099 first_sign = sp->sn_next;
8100 else
8101 sp_prev->sn_next = sp->sn_next;
8102 vim_free(sp);
8103}
8104
8105/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008106 * Get highlighting attribute for sign "typenr".
8107 * If "line" is TRUE: line highl, if FALSE: text highl.
8108 */
8109 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008110sign_get_attr(int typenr, int line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008111{
8112 sign_T *sp;
8113
8114 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8115 if (sp->sn_typenr == typenr)
8116 {
8117 if (line)
8118 {
8119 if (sp->sn_line_hl > 0)
8120 return syn_id2attr(sp->sn_line_hl);
8121 }
8122 else
8123 {
8124 if (sp->sn_text_hl > 0)
8125 return syn_id2attr(sp->sn_text_hl);
8126 }
8127 break;
8128 }
8129 return 0;
8130}
8131
8132/*
8133 * Get text mark for sign "typenr".
8134 * Returns NULL if there isn't one.
8135 */
8136 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008137sign_get_text(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008138{
8139 sign_T *sp;
8140
8141 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8142 if (sp->sn_typenr == typenr)
8143 return sp->sn_text;
8144 return NULL;
8145}
8146
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008147# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008148 void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008149sign_get_image(
8150 int typenr) /* the attribute which may have a sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008151{
8152 sign_T *sp;
8153
8154 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8155 if (sp->sn_typenr == typenr)
8156 return sp->sn_image;
8157 return NULL;
8158}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008159# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008160
8161/*
8162 * Get the name of a sign by its typenr.
8163 */
8164 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008165sign_typenr2name(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008166{
8167 sign_T *sp;
8168
8169 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8170 if (sp->sn_typenr == typenr)
8171 return sp->sn_name;
8172 return (char_u *)_("[Deleted]");
8173}
8174
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008175# if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008176/*
8177 * Undefine/free all signs.
8178 */
8179 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008180free_signs(void)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008181{
8182 while (first_sign != NULL)
8183 sign_undefine(first_sign, NULL);
8184}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008185# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008186
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008187# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008188static enum
8189{
8190 EXP_SUBCMD, /* expand :sign sub-commands */
8191 EXP_DEFINE, /* expand :sign define {name} args */
8192 EXP_PLACE, /* expand :sign place {id} args */
8193 EXP_UNPLACE, /* expand :sign unplace" */
8194 EXP_SIGN_NAMES /* expand with name of placed signs */
8195} expand_what;
8196
8197/*
8198 * Function given to ExpandGeneric() to obtain the sign command
8199 * expansion.
8200 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008201 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008202get_sign_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008203{
8204 sign_T *sp;
8205 int current_idx;
8206
8207 switch (expand_what)
8208 {
8209 case EXP_SUBCMD:
8210 return (char_u *)cmds[idx];
8211 case EXP_DEFINE:
8212 {
8213 char *define_arg[] =
8214 {
8215 "icon=", "linehl=", "text=", "texthl=", NULL
8216 };
8217 return (char_u *)define_arg[idx];
8218 }
8219 case EXP_PLACE:
8220 {
8221 char *place_arg[] =
8222 {
8223 "line=", "name=", "file=", "buffer=", NULL
8224 };
8225 return (char_u *)place_arg[idx];
8226 }
8227 case EXP_UNPLACE:
8228 {
8229 char *unplace_arg[] = { "file=", "buffer=", NULL };
8230 return (char_u *)unplace_arg[idx];
8231 }
8232 case EXP_SIGN_NAMES:
8233 /* Complete with name of signs already defined */
8234 current_idx = 0;
8235 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8236 if (current_idx++ == idx)
8237 return sp->sn_name;
8238 return NULL;
8239 default:
8240 return NULL;
8241 }
8242}
8243
8244/*
8245 * Handle command line completion for :sign command.
8246 */
8247 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008248set_context_in_sign_cmd(expand_T *xp, char_u *arg)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008249{
8250 char_u *p;
8251 char_u *end_subcmd;
8252 char_u *last;
8253 int cmd_idx;
8254 char_u *begin_subcmd_args;
8255
8256 /* Default: expand subcommands. */
8257 xp->xp_context = EXPAND_SIGN;
8258 expand_what = EXP_SUBCMD;
8259 xp->xp_pattern = arg;
8260
8261 end_subcmd = skiptowhite(arg);
8262 if (*end_subcmd == NUL)
8263 /* expand subcmd name
8264 * :sign {subcmd}<CTRL-D>*/
8265 return;
8266
8267 cmd_idx = sign_cmd_idx(arg, end_subcmd);
8268
8269 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008270 * |
8271 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008272 begin_subcmd_args = skipwhite(end_subcmd);
8273 p = skiptowhite(begin_subcmd_args);
8274 if (*p == NUL)
8275 {
8276 /*
8277 * Expand first argument of subcmd when possible.
8278 * For ":jump {id}" and ":unplace {id}", we could
8279 * possibly expand the ids of all signs already placed.
8280 */
8281 xp->xp_pattern = begin_subcmd_args;
8282 switch (cmd_idx)
8283 {
8284 case SIGNCMD_LIST:
8285 case SIGNCMD_UNDEFINE:
8286 /* :sign list <CTRL-D>
8287 * :sign undefine <CTRL-D> */
8288 expand_what = EXP_SIGN_NAMES;
8289 break;
8290 default:
8291 xp->xp_context = EXPAND_NOTHING;
8292 }
8293 return;
8294 }
8295
8296 /* expand last argument of subcmd */
8297
8298 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008299 * |
8300 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008301
8302 /* Loop until reaching last argument. */
8303 do
8304 {
8305 p = skipwhite(p);
8306 last = p;
8307 p = skiptowhite(p);
8308 } while (*p != NUL);
8309
8310 p = vim_strchr(last, '=');
8311
8312 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008313 * | |
8314 * last p */
Bram Moolenaar7756e742016-10-21 20:35:37 +02008315 if (p == NULL)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008316 {
8317 /* Expand last argument name (before equal sign). */
8318 xp->xp_pattern = last;
8319 switch (cmd_idx)
8320 {
8321 case SIGNCMD_DEFINE:
8322 expand_what = EXP_DEFINE;
8323 break;
8324 case SIGNCMD_PLACE:
8325 expand_what = EXP_PLACE;
8326 break;
8327 case SIGNCMD_JUMP:
8328 case SIGNCMD_UNPLACE:
8329 expand_what = EXP_UNPLACE;
8330 break;
8331 default:
8332 xp->xp_context = EXPAND_NOTHING;
8333 }
8334 }
8335 else
8336 {
8337 /* Expand last argument value (after equal sign). */
8338 xp->xp_pattern = p + 1;
8339 switch (cmd_idx)
8340 {
8341 case SIGNCMD_DEFINE:
8342 if (STRNCMP(last, "texthl", p - last) == 0 ||
8343 STRNCMP(last, "linehl", p - last) == 0)
8344 xp->xp_context = EXPAND_HIGHLIGHT;
8345 else if (STRNCMP(last, "icon", p - last) == 0)
8346 xp->xp_context = EXPAND_FILES;
8347 else
8348 xp->xp_context = EXPAND_NOTHING;
8349 break;
8350 case SIGNCMD_PLACE:
8351 if (STRNCMP(last, "name", p - last) == 0)
8352 expand_what = EXP_SIGN_NAMES;
8353 else
8354 xp->xp_context = EXPAND_NOTHING;
8355 break;
8356 default:
8357 xp->xp_context = EXPAND_NOTHING;
8358 }
8359 }
8360}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008361# endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008362#endif
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008363
8364/*
8365 * Make the user happy.
8366 */
8367 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008368ex_smile(exarg_T *eap UNUSED)
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008369{
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008370 static char *code[] = {
8371 "\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$",
8372 "\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"
8373 };
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008374 char *p;
8375 int n;
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008376 int i;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008377
8378 msg_start();
8379 msg_putchar('\n');
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008380 for (i = 0; i < 2; ++i)
8381 for (p = code[i]; *p != NUL; ++p)
8382 if (*p == 'x')
8383 msg_putchar('\n');
8384 else
8385 for (n = *p++; n > 0; --n)
8386 if (*p == 'o' || *p == '$')
Bram Moolenaar8820b482017-03-16 17:23:31 +01008387 msg_putchar_attr(*p, HL_ATTR(HLF_L));
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008388 else
8389 msg_putchar(*p);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008390 msg_clr_eos();
8391}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008392
Bram Moolenaar071d4272004-06-13 20:20:40 +00008393/*
8394 * ":drop"
8395 * Opens the first argument in a window. When there are two or more arguments
8396 * the argument list is redefined.
8397 */
8398 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008399ex_drop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008400{
8401 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008402 win_T *wp;
8403 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008404 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008405
8406 /*
8407 * Check if the first argument is already being edited in a window. If
8408 * so, jump to that window.
8409 * We would actually need to check all arguments, but that's complicated
8410 * and mostly only one file is dropped.
8411 * This also ignores wildcards, since it is very unlikely the user is
8412 * editing a file name with a wildcard character.
8413 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008414 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008415
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00008416 /*
8417 * Expanding wildcards may result in an empty argument list. E.g. when
8418 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
8419 * already did an error message for this.
8420 */
8421 if (ARGCOUNT == 0)
8422 return;
8423
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008424 if (cmdmod.tab)
8425 {
8426 /* ":tab drop file ...": open a tab for each argument that isn't
8427 * edited in a window yet. It's like ":tab all" but without closing
8428 * windows or tabs. */
8429 ex_all(eap);
8430 }
8431 else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008432 {
8433 /* ":drop file ...": Edit the first argument. Jump to an existing
8434 * window if possible, edit in current window if the current buffer
8435 * can be abandoned, otherwise open a new window. */
8436 buf = buflist_findnr(ARGLIST[0].ae_fnum);
8437
8438 FOR_ALL_TAB_WINDOWS(tp, wp)
8439 {
8440 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008441 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00008442 goto_tabpage_win(tp, wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008443 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008444 return;
8445 }
8446 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008447
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008448 /*
8449 * Check whether the current buffer is changed. If so, we will need
8450 * to split the current window or data could be lost.
8451 * Skip the check if the 'hidden' option is set, as in this case the
8452 * buffer won't be lost.
8453 */
Bram Moolenaareb44a682017-08-03 22:44:55 +02008454 if (!buf_hide(curbuf))
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008455 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008456 ++emsg_off;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01008457 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008458 --emsg_off;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008459 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008460
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008461 /* Fake a ":sfirst" or ":first" command edit the first argument. */
8462 if (split)
8463 {
8464 eap->cmdidx = CMD_sfirst;
8465 eap->cmd[0] = 's';
8466 }
8467 else
8468 eap->cmdidx = CMD_first;
8469 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008470 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008471}
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008472
Bram Moolenaar9baf2972016-08-21 22:39:35 +02008473/*
8474 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
8475 * Put the start of the pattern in "*s", unless "s" is NULL.
8476 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
8477 * If "s" is not NULL terminate the pattern with a NUL.
8478 * Return a pointer to the char just past the pattern plus flags.
8479 */
8480 char_u *
8481skip_vimgrep_pat(char_u *p, char_u **s, int *flags)
8482{
8483 int c;
8484
8485 if (vim_isIDc(*p))
8486 {
8487 /* ":vimgrep pattern fname" */
8488 if (s != NULL)
8489 *s = p;
8490 p = skiptowhite(p);
8491 if (s != NULL && *p != NUL)
8492 *p++ = NUL;
8493 }
8494 else
8495 {
8496 /* ":vimgrep /pattern/[g][j] fname" */
8497 if (s != NULL)
8498 *s = p + 1;
8499 c = *p;
8500 p = skip_regexp(p + 1, c, TRUE, NULL);
8501 if (*p != c)
8502 return NULL;
8503
8504 /* Truncate the pattern. */
8505 if (s != NULL)
8506 *p = NUL;
8507 ++p;
8508
8509 /* Find the flags */
8510 while (*p == 'g' || *p == 'j')
8511 {
8512 if (flags != NULL)
8513 {
8514 if (*p == 'g')
8515 *flags |= VGR_GLOBAL;
8516 else
8517 *flags |= VGR_NOJUMP;
8518 }
8519 ++p;
8520 }
8521 }
8522 return p;
8523}
Bram Moolenaar9baf2972016-08-21 22:39:35 +02008524
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008525#if defined(FEAT_EVAL) || defined(PROTO)
8526/*
8527 * List v:oldfiles in a nice way.
8528 */
8529 void
8530ex_oldfiles(exarg_T *eap UNUSED)
8531{
8532 list_T *l = get_vim_var_list(VV_OLDFILES);
8533 listitem_T *li;
8534 int nr = 0;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008535 char_u *fname;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008536
8537 if (l == NULL)
8538 msg((char_u *)_("No old files"));
8539 else
8540 {
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008541 msg_start();
8542 msg_scroll = TRUE;
8543 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
8544 {
8545 ++nr;
8546 fname = get_tv_string(&li->li_tv);
Bram Moolenaard6f2ee32016-08-24 00:30:52 +02008547 if (!message_filtered(fname))
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008548 {
8549 msg_outnum((long)nr);
8550 MSG_PUTS(": ");
8551 msg_outtrans(fname);
Bram Moolenaar885c00e2016-08-28 17:08:17 +02008552 msg_clr_eos();
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008553 msg_putchar('\n');
8554 out_flush(); /* output one line at a time */
8555 ui_breakcheck();
8556 }
8557 }
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008558
8559 /* Assume "got_int" was set to truncate the listing. */
8560 got_int = FALSE;
8561
8562# ifdef FEAT_BROWSE_CMD
8563 if (cmdmod.browse)
8564 {
8565 quit_more = FALSE;
8566 nr = prompt_for_number(FALSE);
8567 msg_starthere();
8568 if (nr > 0)
8569 {
8570 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
8571 (long)nr);
8572
8573 if (p != NULL)
8574 {
8575 p = expand_env_save(p);
8576 eap->arg = p;
8577 eap->cmdidx = CMD_edit;
8578 cmdmod.browse = FALSE;
8579 do_exedit(eap, NULL);
8580 vim_free(p);
8581 }
8582 }
8583 }
8584# endif
8585 }
8586}
8587#endif