blob: e05215a596ee40e987d26adedab2cac6477509be [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ex_cmds.c: some functions for command line commands
12 */
13
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014#include "vim.h"
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#include "version.h"
16
Bram Moolenaar17576a12016-01-20 20:05:44 +010017#ifdef FEAT_FLOAT
18# include <float.h>
19#endif
20
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010021static int linelen(int *has_tab);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010022static void do_filter(linenr_T line1, linenr_T line2, exarg_T *eap, char_u *cmd, int do_in, int do_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +000023#ifdef FEAT_VIMINFO
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010024static char_u *viminfo_filename(char_u *);
25static void do_viminfo(FILE *fp_in, FILE *fp_out, int flags);
26static int viminfo_encoding(vir_T *virp);
27static int read_viminfo_up_to_marks(vir_T *virp, int forceit, int writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#endif
29
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010030static int check_readonly(int *forceit, buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000031#ifdef FEAT_AUTOCMD
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010032static void delbuf_msg(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000034static int
35#ifdef __BORLANDC__
36 _RTLENTRYF
37#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038 help_compare(const void *s1, const void *s2);
39static void prepare_help_buffer(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040
41/*
42 * ":ascii" and "ga".
43 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000044 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010045do_ascii(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +000046{
47 int c;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000048 int cval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000049 char buf1[20];
50 char buf2[20];
51 char_u buf3[7];
52#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +000053 int cc[MAX_MCO];
54 int ci = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000055 int len;
56
57 if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000058 c = utfc_ptr2char(ml_get_cursor(), cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000059 else
60#endif
61 c = gchar_cursor();
62 if (c == NUL)
63 {
64 MSG("NUL");
65 return;
66 }
67
68#ifdef FEAT_MBYTE
69 IObuff[0] = NUL;
70 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80)
71#endif
72 {
73 if (c == NL) /* NUL is stored as NL */
74 c = NUL;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000075 if (c == CAR && get_fileformat(curbuf) == EOL_MAC)
76 cval = NL; /* NL is stored as CR */
77 else
78 cval = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 if (vim_isprintc_strict(c) && (c < ' '
80#ifndef EBCDIC
81 || c > '~'
82#endif
83 ))
84 {
85 transchar_nonprint(buf3, c);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000086 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000087 }
88 else
89 buf1[0] = NUL;
90#ifndef EBCDIC
91 if (c >= 0x80)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000092 vim_snprintf(buf2, sizeof(buf2), " <M-%s>",
93 (char *)transchar(c & 0x7f));
Bram Moolenaar071d4272004-06-13 20:20:40 +000094 else
95#endif
96 buf2[0] = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +000097 vim_snprintf((char *)IObuff, IOSIZE,
98 _("<%s>%s%s %d, Hex %02x, Octal %03o"),
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000099 transchar(c), buf1, buf2, cval, cval, cval);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#ifdef FEAT_MBYTE
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000101 if (enc_utf8)
102 c = cc[ci++];
103 else
104 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105#endif
106 }
107
108#ifdef FEAT_MBYTE
109 /* Repeat for combining characters. */
110 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80)))
111 {
112 len = (int)STRLEN(IObuff);
113 /* This assumes every multi-byte char is printable... */
114 if (len > 0)
115 IObuff[len++] = ' ';
116 IObuff[len++] = '<';
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000117 if (enc_utf8 && utf_iscomposing(c)
Bram Moolenaar4770d092006-01-12 23:22:24 +0000118# ifdef USE_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119 && !gui.in_use
Bram Moolenaar4770d092006-01-12 23:22:24 +0000120# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 )
122 IObuff[len++] = ' '; /* draw composing char on top of a space */
Bram Moolenaar555b2802005-05-19 21:08:39 +0000123 len += (*mb_char2bytes)(c, IObuff + len);
124 vim_snprintf((char *)IObuff + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125 c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
126 : _("> %d, Hex %08x, Octal %o"), c, c, c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000127 if (ci == MAX_MCO)
128 break;
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000129 if (enc_utf8)
130 c = cc[ci++];
131 else
132 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 }
134#endif
135
136 msg(IObuff);
137}
138
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139/*
140 * ":left", ":center" and ":right": align text.
141 */
142 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100143ex_align(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144{
145 pos_T save_curpos;
146 int len;
147 int indent = 0;
148 int new_indent;
149 int has_tab;
150 int width;
151
152#ifdef FEAT_RIGHTLEFT
153 if (curwin->w_p_rl)
154 {
155 /* switch left and right aligning */
156 if (eap->cmdidx == CMD_right)
157 eap->cmdidx = CMD_left;
158 else if (eap->cmdidx == CMD_left)
159 eap->cmdidx = CMD_right;
160 }
161#endif
162
163 width = atoi((char *)eap->arg);
164 save_curpos = curwin->w_cursor;
165 if (eap->cmdidx == CMD_left) /* width is used for new indent */
166 {
167 if (width >= 0)
168 indent = width;
169 }
170 else
171 {
172 /*
173 * if 'textwidth' set, use it
174 * else if 'wrapmargin' set, use it
175 * if invalid value, use 80
176 */
177 if (width <= 0)
178 width = curbuf->b_p_tw;
179 if (width == 0 && curbuf->b_p_wm > 0)
Bram Moolenaar02631462017-09-22 15:20:32 +0200180 width = curwin->w_width - curbuf->b_p_wm;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 if (width <= 0)
182 width = 80;
183 }
184
185 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
186 return;
187
188 for (curwin->w_cursor.lnum = eap->line1;
189 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum)
190 {
191 if (eap->cmdidx == CMD_left) /* left align */
192 new_indent = indent;
193 else
194 {
Bram Moolenaar89d40322006-08-29 15:30:07 +0000195 has_tab = FALSE; /* avoid uninit warnings */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 len = linelen(eap->cmdidx == CMD_right ? &has_tab
197 : NULL) - get_indent();
198
199 if (len <= 0) /* skip blank lines */
200 continue;
201
202 if (eap->cmdidx == CMD_center)
203 new_indent = (width - len) / 2;
204 else
205 {
206 new_indent = width - len; /* right align */
207
208 /*
209 * Make sure that embedded TABs don't make the text go too far
210 * to the right.
211 */
212 if (has_tab)
213 while (new_indent > 0)
214 {
215 (void)set_indent(new_indent, 0);
216 if (linelen(NULL) <= width)
217 {
218 /*
219 * Now try to move the line as much as possible to
220 * the right. Stop when it moves too far.
221 */
222 do
223 (void)set_indent(++new_indent, 0);
224 while (linelen(NULL) <= width);
225 --new_indent;
226 break;
227 }
228 --new_indent;
229 }
230 }
231 }
232 if (new_indent < 0)
233 new_indent = 0;
234 (void)set_indent(new_indent, 0); /* set indent */
235 }
236 changed_lines(eap->line1, 0, eap->line2 + 1, 0L);
237 curwin->w_cursor = save_curpos;
238 beginline(BL_WHITE | BL_FIX);
239}
240
241/*
242 * Get the length of the current line, excluding trailing white space.
243 */
244 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100245linelen(int *has_tab)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246{
247 char_u *line;
248 char_u *first;
249 char_u *last;
250 int save;
251 int len;
252
253 /* find the first non-blank character */
254 line = ml_get_curline();
255 first = skipwhite(line);
256
257 /* find the character after the last non-blank character */
258 for (last = first + STRLEN(first);
Bram Moolenaar1c465442017-03-12 20:10:05 +0100259 last > first && VIM_ISWHITE(last[-1]); --last)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 ;
261 save = *last;
262 *last = NUL;
263 len = linetabsize(line); /* get line length */
264 if (has_tab != NULL) /* check for embedded TAB */
265 *has_tab = (vim_strrchr(first, TAB) != NULL);
266 *last = save;
267
268 return len;
269}
270
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000271/* Buffer for two lines used during sorting. They are allocated to
272 * contain the longest line being sorted. */
273static char_u *sortbuf1;
274static char_u *sortbuf2;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000275
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100276static int sort_ic; /* ignore case */
277static int sort_nr; /* sort on number */
278static int sort_rx; /* sort on regex instead of skipping it */
279#ifdef FEAT_FLOAT
280static int sort_flt; /* sort on floating number */
281#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000282
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100283static int sort_abort; /* flag to indicate if sorting has been interrupted */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000284
285/* Struct to store info to be sorted. */
286typedef struct
287{
288 linenr_T lnum; /* line number */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100289 union {
290 struct
291 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +0200292 varnumber_T start_col_nr; /* starting column number */
293 varnumber_T end_col_nr; /* ending column number */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100294 } line;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +0200295 varnumber_T value; /* value if sorting by integer */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100296#ifdef FEAT_FLOAT
297 float_T value_flt; /* value if sorting by float */
298#endif
299 } st_u;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000300} sorti_T;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000301
302static int
303#ifdef __BORLANDC__
304_RTLENTRYF
305#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100306sort_compare(const void *s1, const void *s2);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000307
308 static int
309#ifdef __BORLANDC__
310_RTLENTRYF
311#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100312sort_compare(const void *s1, const void *s2)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000313{
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000314 sorti_T l1 = *(sorti_T *)s1;
315 sorti_T l2 = *(sorti_T *)s2;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000316 int result = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000317
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000318 /* If the user interrupts, there's no way to stop qsort() immediately, but
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000319 * if we return 0 every time, qsort will assume it's done sorting and
320 * exit. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000321 if (sort_abort)
322 return 0;
323 fast_breakcheck();
324 if (got_int)
325 sort_abort = TRUE;
326
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000327 /* When sorting numbers "start_col_nr" is the number, not the column
328 * number. */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000329 if (sort_nr)
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100330 result = l1.st_u.value == l2.st_u.value ? 0
331 : l1.st_u.value > l2.st_u.value ? 1 : -1;
332#ifdef FEAT_FLOAT
333 else if (sort_flt)
334 result = l1.st_u.value_flt == l2.st_u.value_flt ? 0
335 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1;
336#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000337 else
338 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000339 /* We need to copy one line into "sortbuf1", because there is no
340 * guarantee that the first pointer becomes invalid when obtaining the
341 * second one. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100342 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.st_u.line.start_col_nr,
343 l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr + 1);
344 sortbuf1[l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr] = 0;
345 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.st_u.line.start_col_nr,
346 l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr + 1);
347 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000348
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000349 result = sort_ic ? STRICMP(sortbuf1, sortbuf2)
350 : STRCMP(sortbuf1, sortbuf2);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000351 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000352
353 /* If two lines have the same value, preserve the original line order. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000354 if (result == 0)
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000355 return (int)(l1.lnum - l2.lnum);
356 return result;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000357}
358
359/*
360 * ":sort".
361 */
362 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100363ex_sort(exarg_T *eap)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000364{
365 regmatch_T regmatch;
366 int len;
367 linenr_T lnum;
368 long maxlen = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000369 sorti_T *nrs;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000370 size_t count = (size_t)(eap->line2 - eap->line1 + 1);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000371 size_t i;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000372 char_u *p;
373 char_u *s;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000374 char_u *s2;
375 char_u c; /* temporary character storage */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000376 int unique = FALSE;
377 long deleted;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000378 colnr_T start_col;
379 colnr_T end_col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100380 int sort_what = 0;
381 int format_found = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000382
Bram Moolenaar48c99162008-02-18 18:42:52 +0000383 /* Sorting one line is really quick! */
384 if (count <= 1)
385 return;
386
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000387 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
388 return;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000389 sortbuf1 = NULL;
390 sortbuf2 = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000391 regmatch.regprog = NULL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000392 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000393 if (nrs == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000394 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000395
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100396 sort_abort = sort_ic = sort_rx = sort_nr = 0;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100397#ifdef FEAT_FLOAT
398 sort_flt = 0;
399#endif
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000400
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000401 for (p = eap->arg; *p != NUL; ++p)
402 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100403 if (VIM_ISWHITE(*p))
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000404 ;
405 else if (*p == 'i')
406 sort_ic = TRUE;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000407 else if (*p == 'r')
408 sort_rx = TRUE;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000409 else if (*p == 'n')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100410 {
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100411 sort_nr = 1;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100412 ++format_found;
413 }
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100414#ifdef FEAT_FLOAT
415 else if (*p == 'f')
416 {
417 sort_flt = 1;
418 ++format_found;
419 }
420#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100421 else if (*p == 'b')
422 {
423 sort_what = STR2NR_BIN + STR2NR_FORCE;
424 ++format_found;
425 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000426 else if (*p == 'o')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100427 {
428 sort_what = STR2NR_OCT + STR2NR_FORCE;
429 ++format_found;
430 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000431 else if (*p == 'x')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100432 {
433 sort_what = STR2NR_HEX + STR2NR_FORCE;
434 ++format_found;
435 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000436 else if (*p == 'u')
437 unique = TRUE;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000438 else if (*p == '"') /* comment start */
439 break;
440 else if (check_nextcmd(p) != NULL)
441 {
442 eap->nextcmd = check_nextcmd(p);
443 break;
444 }
445 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000446 {
447 s = skip_regexp(p + 1, *p, TRUE, NULL);
448 if (*s != *p)
449 {
450 EMSG(_(e_invalpat));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000451 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000452 }
453 *s = NUL;
Bram Moolenaar1256e722007-07-10 15:26:20 +0000454 /* Use last search pattern if sort pattern is empty. */
Bram Moolenaar210f3702013-03-07 16:41:30 +0100455 if (s == p + 1)
456 {
457 if (last_search_pat() == NULL)
458 {
459 EMSG(_(e_noprevre));
460 goto sortend;
461 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000462 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
Bram Moolenaar210f3702013-03-07 16:41:30 +0100463 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000464 else
465 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000466 if (regmatch.regprog == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000467 goto sortend;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000468 p = s; /* continue after the regexp */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000469 regmatch.rm_ic = p_ic;
470 }
471 else
472 {
473 EMSG2(_(e_invarg2), p);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000474 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000475 }
476 }
477
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100478 /* Can only have one of 'n', 'b', 'o' and 'x'. */
479 if (format_found > 1)
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000480 {
481 EMSG(_(e_invarg));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000482 goto sortend;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000483 }
484
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100485 /* From here on "sort_nr" is used as a flag for any integer number
486 * sorting. */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100487 sort_nr += sort_what;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000488
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000489 /*
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000490 * Make an array with all line numbers. This avoids having to copy all
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000491 * the lines into allocated memory.
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000492 * When sorting on strings "start_col_nr" is the offset in the line, for
493 * numbers sorting it's the number to sort on. This means the pattern
494 * matching and number conversion only has to be done once per line.
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000495 * Also get the longest line length for allocating "sortbuf".
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000496 */
497 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
498 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000499 s = ml_get(lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000500 len = (int)STRLEN(s);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000501 if (maxlen < len)
502 maxlen = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000503
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000504 start_col = 0;
505 end_col = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000506 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0))
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000507 {
508 if (sort_rx)
509 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000510 start_col = (colnr_T)(regmatch.startp[0] - s);
511 end_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000512 }
513 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000514 start_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000515 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000516 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000517 if (regmatch.regprog != NULL)
518 end_col = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000519
Bram Moolenaar937204a2016-01-30 23:37:38 +0100520 if (sort_nr
521#ifdef FEAT_FLOAT
522 || sort_flt
523#endif
524 )
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000525 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000526 /* Make sure vim_str2nr doesn't read any digits past the end
527 * of the match, by temporarily terminating the string there */
528 s2 = s + end_col;
529 c = *s2;
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200530 *s2 = NUL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000531 /* Sorting on number: Store the number itself. */
Bram Moolenaar1387a602008-07-24 19:31:11 +0000532 p = s + start_col;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100533 if (sort_nr)
534 {
535 if (sort_what & STR2NR_HEX)
536 s = skiptohex(p);
537 else if (sort_what & STR2NR_BIN)
538 s = skiptobin(p);
539 else
540 s = skiptodigit(p);
541 if (s > p && s[-1] == '-')
542 --s; /* include preceding negative sign */
543 if (*s == NUL)
544 /* empty line should sort before any number */
545 nrs[lnum - eap->line1].st_u.value = -MAXLNUM;
546 else
547 vim_str2nr(s, NULL, NULL, sort_what,
548 &nrs[lnum - eap->line1].st_u.value, NULL, 0);
549 }
550#ifdef FEAT_FLOAT
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000551 else
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100552 {
553 s = skipwhite(p);
554 if (*s == '+')
555 s = skipwhite(s + 1);
556
557 if (*s == NUL)
558 /* empty line should sort before any number */
559 nrs[lnum - eap->line1].st_u.value_flt = -DBL_MAX;
560 else
561 nrs[lnum - eap->line1].st_u.value_flt =
562 strtod((char *)s, NULL);
563 }
564#endif
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200565 *s2 = c;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000566 }
567 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000568 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000569 /* Store the column to sort at. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100570 nrs[lnum - eap->line1].st_u.line.start_col_nr = start_col;
571 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000572 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000573
574 nrs[lnum - eap->line1].lnum = lnum;
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000575
576 if (regmatch.regprog != NULL)
577 fast_breakcheck();
578 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000579 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000580 }
581
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000582 /* Allocate a buffer that can hold the longest line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000583 sortbuf1 = alloc((unsigned)maxlen + 1);
584 if (sortbuf1 == NULL)
585 goto sortend;
586 sortbuf2 = alloc((unsigned)maxlen + 1);
587 if (sortbuf2 == NULL)
588 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000589
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000590 /* Sort the array of line numbers. Note: can't be interrupted! */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000591 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000592
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000593 if (sort_abort)
594 goto sortend;
595
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000596 /* Insert the lines in the sorted order below the last one. */
597 lnum = eap->line2;
598 for (i = 0; i < count; ++i)
599 {
600 s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum);
601 if (!unique || i == 0
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000602 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000603 {
Bram Moolenaar75e3ad02015-12-17 15:07:32 +0100604 /* Copy the line into a buffer, it may become invalid in
605 * ml_append(). And it's needed for "unique". */
606 STRCPY(sortbuf1, s);
607 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000608 break;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000609 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000610 fast_breakcheck();
611 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000612 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000613 }
614
615 /* delete the original lines if appending worked */
616 if (i == count)
617 for (i = 0; i < count; ++i)
618 ml_delete(eap->line1, FALSE);
619 else
620 count = 0;
621
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000622 /* Adjust marks for deleted (or added) lines and prepare for displaying. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000623 deleted = (long)(count - (lnum - eap->line2));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000624 if (deleted > 0)
625 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
626 else if (deleted < 0)
627 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
628 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000629
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000630 curwin->w_cursor.lnum = eap->line1;
631 beginline(BL_WHITE | BL_FIX);
632
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000633sortend:
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000634 vim_free(nrs);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000635 vim_free(sortbuf1);
636 vim_free(sortbuf2);
Bram Moolenaar473de612013-06-08 18:19:48 +0200637 vim_regfree(regmatch.regprog);
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000638 if (got_int)
639 EMSG(_(e_interr));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000640}
641
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642/*
643 * ":retab".
644 */
645 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100646ex_retab(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647{
648 linenr_T lnum;
649 int got_tab = FALSE;
650 long num_spaces = 0;
651 long num_tabs;
652 long len;
653 long col;
654 long vcol;
655 long start_col = 0; /* For start of white-space string */
656 long start_vcol = 0; /* For start of white-space string */
657 int temp;
658 long old_len;
659 char_u *ptr;
660 char_u *new_line = (char_u *)1; /* init to non-NULL */
661 int did_undo; /* called u_save for current line */
662 int new_ts;
663 int save_list;
664 linenr_T first_line = 0; /* first changed line */
665 linenr_T last_line = 0; /* last changed line */
666
667 save_list = curwin->w_p_list;
668 curwin->w_p_list = 0; /* don't want list mode here */
669
670 new_ts = getdigits(&(eap->arg));
671 if (new_ts < 0)
672 {
673 EMSG(_(e_positive));
674 return;
675 }
676 if (new_ts == 0)
677 new_ts = curbuf->b_p_ts;
678 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
679 {
680 ptr = ml_get(lnum);
681 col = 0;
682 vcol = 0;
683 did_undo = FALSE;
684 for (;;)
685 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100686 if (VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 {
688 if (!got_tab && num_spaces == 0)
689 {
690 /* First consecutive white-space */
691 start_vcol = vcol;
692 start_col = col;
693 }
694 if (ptr[col] == ' ')
695 num_spaces++;
696 else
697 got_tab = TRUE;
698 }
699 else
700 {
701 if (got_tab || (eap->forceit && num_spaces > 1))
702 {
703 /* Retabulate this string of white-space */
704
705 /* len is virtual length of white string */
706 len = num_spaces = vcol - start_vcol;
707 num_tabs = 0;
708 if (!curbuf->b_p_et)
709 {
710 temp = new_ts - (start_vcol % new_ts);
711 if (num_spaces >= temp)
712 {
713 num_spaces -= temp;
714 num_tabs++;
715 }
716 num_tabs += num_spaces / new_ts;
717 num_spaces -= (num_spaces / new_ts) * new_ts;
718 }
719 if (curbuf->b_p_et || got_tab ||
720 (num_spaces + num_tabs < len))
721 {
722 if (did_undo == FALSE)
723 {
724 did_undo = TRUE;
725 if (u_save((linenr_T)(lnum - 1),
726 (linenr_T)(lnum + 1)) == FAIL)
727 {
728 new_line = NULL; /* flag out-of-memory */
729 break;
730 }
731 }
732
733 /* len is actual number of white characters used */
734 len = num_spaces + num_tabs;
735 old_len = (long)STRLEN(ptr);
736 new_line = lalloc(old_len - col + start_col + len + 1,
737 TRUE);
738 if (new_line == NULL)
739 break;
740 if (start_col > 0)
741 mch_memmove(new_line, ptr, (size_t)start_col);
742 mch_memmove(new_line + start_col + len,
743 ptr + col, (size_t)(old_len - col + 1));
744 ptr = new_line + start_col;
745 for (col = 0; col < len; col++)
746 ptr[col] = (col < num_tabs) ? '\t' : ' ';
747 ml_replace(lnum, new_line, FALSE);
748 if (first_line == 0)
749 first_line = lnum;
750 last_line = lnum;
751 ptr = new_line;
752 col = start_col + len;
753 }
754 }
755 got_tab = FALSE;
756 num_spaces = 0;
757 }
758 if (ptr[col] == NUL)
759 break;
760 vcol += chartabsize(ptr + col, (colnr_T)vcol);
761#ifdef FEAT_MBYTE
762 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000763 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 else
765#endif
766 ++col;
767 }
768 if (new_line == NULL) /* out of memory */
769 break;
770 line_breakcheck();
771 }
772 if (got_int)
773 EMSG(_(e_interr));
774
775 if (curbuf->b_p_ts != new_ts)
776 redraw_curbuf_later(NOT_VALID);
777 if (first_line != 0)
778 changed_lines(first_line, 0, last_line + 1, 0L);
779
780 curwin->w_p_list = save_list; /* restore 'list' */
781
782 curbuf->b_p_ts = new_ts;
783 coladvance(curwin->w_curswant);
784
785 u_clearline();
786}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787
788/*
789 * :move command - move lines line1-line2 to line dest
790 *
791 * return FAIL for failure, OK otherwise
792 */
793 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100794do_move(linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795{
796 char_u *str;
797 linenr_T l;
798 linenr_T extra; /* Num lines added before line1 */
799 linenr_T num_lines; /* Num lines moved */
800 linenr_T last_line; /* Last line in file after adding new text */
Bram Moolenaard5f69332015-04-15 12:43:50 +0200801#ifdef FEAT_FOLDING
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100802 win_T *win;
803 tabpage_T *tp;
Bram Moolenaard5f69332015-04-15 12:43:50 +0200804#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805
806 if (dest >= line1 && dest < line2)
807 {
808 EMSG(_("E134: Move lines into themselves"));
809 return FAIL;
810 }
811
812 num_lines = line2 - line1 + 1;
813
814 /*
815 * First we copy the old text to its new location -- webb
816 * Also copy the flag that ":global" command uses.
817 */
818 if (u_save(dest, dest + 1) == FAIL)
819 return FAIL;
820 for (extra = 0, l = line1; l <= line2; l++)
821 {
822 str = vim_strsave(ml_get(l + extra));
823 if (str != NULL)
824 {
825 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
826 vim_free(str);
827 if (dest < line1)
828 extra++;
829 }
830 }
831
832 /*
833 * Now we must be careful adjusting our marks so that we don't overlap our
834 * mark_adjust() calls.
835 *
836 * We adjust the marks within the old text so that they refer to the
837 * last lines of the file (temporarily), because we know no other marks
838 * will be set there since these line numbers did not exist until we added
839 * our new lines.
840 *
841 * Then we adjust the marks on lines between the old and new text positions
842 * (either forwards or backwards).
843 *
844 * And Finally we adjust the marks we put at the end of the file back to
845 * their final destination at the new text position -- webb
846 */
847 last_line = curbuf->b_ml.ml_line_count;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100848 mark_adjust_nofold(line1, line2, last_line - line2, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 if (dest >= line2)
850 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100851 mark_adjust_nofold(line2 + 1, dest, -num_lines, 0L);
852#ifdef FEAT_FOLDING
853 FOR_ALL_TAB_WINDOWS(tp, win) {
854 if (win->w_buffer == curbuf)
855 foldMoveRange(&win->w_folds, line1, line2, dest);
856 }
857#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 curbuf->b_op_start.lnum = dest - num_lines + 1;
859 curbuf->b_op_end.lnum = dest;
860 }
861 else
862 {
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100863 mark_adjust_nofold(dest + 1, line1 - 1, num_lines, 0L);
864#ifdef FEAT_FOLDING
865 FOR_ALL_TAB_WINDOWS(tp, win) {
866 if (win->w_buffer == curbuf)
867 foldMoveRange(&win->w_folds, dest + 1, line1 - 1, line2);
868 }
869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 curbuf->b_op_start.lnum = dest + 1;
871 curbuf->b_op_end.lnum = dest + num_lines;
872 }
873 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
Bram Moolenaar88d298a2017-03-14 21:53:58 +0100874 mark_adjust_nofold(last_line - num_lines + 1, last_line,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 -(last_line - dest - extra), 0L);
876
877 /*
878 * Now we delete the original text -- webb
879 */
880 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
881 return FAIL;
882
883 for (l = line1; l <= line2; l++)
884 ml_delete(line1 + extra, TRUE);
885
886 if (!global_busy && num_lines > p_report)
887 {
888 if (num_lines == 1)
889 MSG(_("1 line moved"));
890 else
891 smsg((char_u *)_("%ld lines moved"), num_lines);
892 }
893
894 /*
895 * Leave the cursor on the last of the moved lines.
896 */
897 if (dest >= line1)
898 curwin->w_cursor.lnum = dest;
899 else
900 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
901
902 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +0100903 {
904 dest += num_lines + 1;
905 last_line = curbuf->b_ml.ml_line_count;
906 if (dest > last_line + 1)
907 dest = last_line + 1;
908 changed_lines(line1, 0, dest, 0L);
909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 else
911 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
912
913 return OK;
914}
915
916/*
917 * ":copy"
918 */
919 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100920ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921{
922 linenr_T count;
923 char_u *p;
924
925 count = line2 - line1 + 1;
926 curbuf->b_op_start.lnum = n + 1;
927 curbuf->b_op_end.lnum = n + count;
928 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
929
930 /*
931 * there are three situations:
932 * 1. destination is above line1
933 * 2. destination is between line1 and line2
934 * 3. destination is below line2
935 *
936 * n = destination (when starting)
937 * curwin->w_cursor.lnum = destination (while copying)
938 * line1 = start of source (while copying)
939 * line2 = end of source (while copying)
940 */
941 if (u_save(n, n + 1) == FAIL)
942 return;
943
944 curwin->w_cursor.lnum = n;
945 while (line1 <= line2)
946 {
947 /* need to use vim_strsave() because the line will be unlocked within
948 * ml_append() */
949 p = vim_strsave(ml_get(line1));
950 if (p != NULL)
951 {
952 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
953 vim_free(p);
954 }
955 /* situation 2: skip already copied lines */
956 if (line1 == n)
957 line1 = curwin->w_cursor.lnum;
958 ++line1;
959 if (curwin->w_cursor.lnum < line1)
960 ++line1;
961 if (curwin->w_cursor.lnum < line2)
962 ++line2;
963 ++curwin->w_cursor.lnum;
964 }
965
966 appended_lines_mark(n, count);
967
968 msgmore((long)count);
969}
970
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000971static char_u *prevcmd = NULL; /* the previous command */
972
973#if defined(EXITFREE) || defined(PROTO)
974 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100975free_prev_shellcmd(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000976{
977 vim_free(prevcmd);
978}
979#endif
980
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981/*
982 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
983 * Bangs in the argument are replaced with the previously entered command.
984 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 */
986 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100987do_bang(
988 int addr_count,
989 exarg_T *eap,
990 int forceit,
991 int do_in,
992 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993{
994 char_u *arg = eap->arg; /* command */
995 linenr_T line1 = eap->line1; /* start of range */
996 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 char_u *newcmd = NULL; /* the new command */
998 int free_newcmd = FALSE; /* need to free() newcmd */
999 int ins_prevcmd;
1000 char_u *t;
1001 char_u *p;
1002 char_u *trailarg;
1003 int len;
1004 int scroll_save = msg_scroll;
1005
1006 /*
1007 * Disallow shell commands for "rvim".
1008 * Disallow shell commands from .exrc and .vimrc in current directory for
1009 * security reasons.
1010 */
1011 if (check_restricted() || check_secure())
1012 return;
1013
1014 if (addr_count == 0) /* :! */
1015 {
1016 msg_scroll = FALSE; /* don't scroll here */
1017 autowrite_all();
1018 msg_scroll = scroll_save;
1019 }
1020
1021 /*
1022 * Try to find an embedded bang, like in :!<cmd> ! [args]
1023 * (:!! is indicated by the 'forceit' variable)
1024 */
1025 ins_prevcmd = forceit;
1026 trailarg = arg;
1027 do
1028 {
1029 len = (int)STRLEN(trailarg) + 1;
1030 if (newcmd != NULL)
1031 len += (int)STRLEN(newcmd);
1032 if (ins_prevcmd)
1033 {
1034 if (prevcmd == NULL)
1035 {
1036 EMSG(_(e_noprev));
1037 vim_free(newcmd);
1038 return;
1039 }
1040 len += (int)STRLEN(prevcmd);
1041 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001042 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 {
1044 vim_free(newcmd);
1045 return;
1046 }
1047 *t = NUL;
1048 if (newcmd != NULL)
1049 STRCAT(t, newcmd);
1050 if (ins_prevcmd)
1051 STRCAT(t, prevcmd);
1052 p = t + STRLEN(t);
1053 STRCAT(t, trailarg);
1054 vim_free(newcmd);
1055 newcmd = t;
1056
1057 /*
1058 * Scan the rest of the argument for '!', which is replaced by the
1059 * previous command. "\!" is replaced by "!" (this is vi compatible).
1060 */
1061 trailarg = NULL;
1062 while (*p)
1063 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001064 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 {
1066 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001067 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 else
1069 {
1070 trailarg = p;
1071 *trailarg++ = NUL;
1072 ins_prevcmd = TRUE;
1073 break;
1074 }
1075 }
1076 ++p;
1077 }
1078 } while (trailarg != NULL);
1079
1080 vim_free(prevcmd);
1081 prevcmd = newcmd;
1082
1083 if (bangredo) /* put cmd in redo buffer for ! command */
1084 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001085 /* If % or # appears in the command, it must have been escaped.
1086 * Reescape them, so that redoing them does not substitute them by the
1087 * buffername. */
1088 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1089
1090 if (cmd != NULL)
1091 {
1092 AppendToRedobuffLit(cmd, -1);
1093 vim_free(cmd);
1094 }
1095 else
1096 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 AppendToRedobuff((char_u *)"\n");
1098 bangredo = FALSE;
1099 }
1100 /*
1101 * Add quotes around the command, for shells that need them.
1102 */
1103 if (*p_shq != NUL)
1104 {
1105 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1106 if (newcmd == NULL)
1107 return;
1108 STRCPY(newcmd, p_shq);
1109 STRCAT(newcmd, prevcmd);
1110 STRCAT(newcmd, p_shq);
1111 free_newcmd = TRUE;
1112 }
1113 if (addr_count == 0) /* :! */
1114 {
1115 /* echo the command */
1116 msg_start();
1117 msg_putchar(':');
1118 msg_putchar('!');
1119 msg_outtrans(newcmd);
1120 msg_clr_eos();
1121 windgoto(msg_row, msg_col);
1122
1123 do_shell(newcmd, 0);
1124 }
1125 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001126 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 /* Careful: This may recursively call do_bang() again! (because of
1128 * autocommands) */
1129 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001130#ifdef FEAT_AUTOCMD
1131 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
1132#endif
1133 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 if (free_newcmd)
1135 vim_free(newcmd);
1136}
1137
1138/*
1139 * do_filter: filter lines through a command given by the user
1140 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001141 * We mostly use temp files and the call_shell() routine here. This would
1142 * normally be done using pipes on a UNIX machine, but this is more portable
1143 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 * to deal with redirection somehow, and should handle things like looking
1145 * at the PATH env. variable, and adding reasonable extensions to the
1146 * command name given by the user. All reasonable versions of call_shell()
1147 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001148 * Alternatively, if on Unix and redirecting input or output, but not both,
1149 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 * We use input redirection if do_in is TRUE.
1151 * We use output redirection if do_out is TRUE.
1152 */
1153 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001154do_filter(
1155 linenr_T line1,
1156 linenr_T line2,
1157 exarg_T *eap, /* for forced 'ff' and 'fenc' */
1158 char_u *cmd,
1159 int do_in,
1160 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161{
1162 char_u *itmp = NULL;
1163 char_u *otmp = NULL;
1164 linenr_T linecount;
1165 linenr_T read_linecount;
1166 pos_T cursor_save;
1167 char_u *cmd_buf;
1168#ifdef FEAT_AUTOCMD
1169 buf_T *old_curbuf = curbuf;
1170#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001171 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172
1173 if (*cmd == NUL) /* no filter command */
1174 return;
1175
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 cursor_save = curwin->w_cursor;
1177 linecount = line2 - line1 + 1;
1178 curwin->w_cursor.lnum = line1;
1179 curwin->w_cursor.col = 0;
1180 changed_line_abv_curs();
1181 invalidate_botline();
1182
1183 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001184 * When using temp files:
1185 * 1. * Form temp file names
1186 * 2. * Write the lines to a temp file
1187 * 3. Run the filter command on the temp file
1188 * 4. * Read the output of the command into the buffer
1189 * 5. * Delete the original lines to be filtered
1190 * 6. * Remove the temp files
1191 *
1192 * When writing the input with a pipe or when catching the output with a
1193 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 */
1195
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001196 if (do_out)
1197 shell_flags |= SHELL_DOOUT;
1198
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001199#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001200 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001202 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1203 shell_flags |= SHELL_READ;
1204 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001206 else if (do_in && !do_out && !p_stmp)
1207 {
1208 /* Use a pipe to write stdin of the command, do not use a temp file. */
1209 shell_flags |= SHELL_WRITE;
1210 curbuf->b_op_start.lnum = line1;
1211 curbuf->b_op_end.lnum = line2;
1212 }
1213 else if (do_in && do_out && !p_stmp)
1214 {
1215 /* Use a pipe to write stdin and fetch stdout of the command, do not
1216 * use a temp file. */
1217 shell_flags |= SHELL_READ|SHELL_WRITE;
1218 curbuf->b_op_start.lnum = line1;
1219 curbuf->b_op_end.lnum = line2;
1220 curwin->w_cursor.lnum = line2;
1221 }
1222 else
1223#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001224 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1225 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001226 {
1227 EMSG(_(e_notmp));
1228 goto filterend;
1229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230
1231/*
1232 * The writing and reading of temp files will not be shown.
1233 * Vi also doesn't do this and the messages are not very informative.
1234 */
1235 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001236 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 FALSE, FALSE, FALSE, TRUE) == FAIL)
1238 {
1239 msg_putchar('\n'); /* keep message from buf_write() */
1240 --no_wait_return;
1241#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1242 if (!aborting())
1243#endif
1244 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1245 goto filterend;
1246 }
1247#ifdef FEAT_AUTOCMD
1248 if (curbuf != old_curbuf)
1249 goto filterend;
1250#endif
1251
1252 if (!do_out)
1253 msg_putchar('\n');
1254
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001255 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1257 if (cmd_buf == NULL)
1258 goto filterend;
1259
1260 windgoto((int)Rows - 1, 0);
1261 cursor_on();
1262
1263 /*
1264 * When not redirecting the output the command can write anything to the
1265 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1266 * stderr output of external command. Clear the screen later.
1267 * If do_in is FALSE, this could be something like ":r !cat", which may
1268 * also mess up the screen, clear it later.
1269 */
1270 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1271 redraw_later_clear();
1272
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001273 if (do_out)
1274 {
1275 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001276 {
1277 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001278 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001279 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001280 redraw_curbuf_later(VALID);
1281 }
1282 read_linecount = curbuf->b_ml.ml_line_count;
1283
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 /*
1285 * When call_shell() fails wait_return() is called to give the user a
1286 * chance to read the error messages. Otherwise errors are ignored, so you
1287 * can see the error messages from the command that appear on stdout; use
1288 * 'u' to fix the text
1289 * Switch to cooked mode when not redirecting stdin, avoids that something
1290 * like ":r !cat" hangs.
1291 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1292 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001293 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 {
1295 redraw_later_clear();
1296 wait_return(FALSE);
1297 }
1298 vim_free(cmd_buf);
1299
1300 did_check_timestamps = FALSE;
1301 need_check_timestamps = TRUE;
1302
1303 /* When interrupting the shell command, it may still have produced some
1304 * useful output. Reset got_int here, so that readfile() won't cancel
1305 * reading. */
1306 ui_breakcheck();
1307 got_int = FALSE;
1308
1309 if (do_out)
1310 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001311 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001313 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001314 eap, READ_FILTER) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001316#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1317 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001319 {
1320 msg_putchar('\n');
1321 EMSG2(_(e_notread), otmp);
1322 }
1323 goto error;
1324 }
1325#ifdef FEAT_AUTOCMD
1326 if (curbuf != old_curbuf)
1327 goto filterend;
1328#endif
1329 }
1330
1331 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1332
1333 if (shell_flags & SHELL_READ)
1334 {
1335 curbuf->b_op_start.lnum = line2 + 1;
1336 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1337 appended_lines_mark(line2, read_linecount);
1338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339
1340 if (do_in)
1341 {
1342 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1343 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 if (read_linecount >= linecount)
1345 /* move all marks from old lines to new lines */
1346 mark_adjust(line1, line2, linecount, 0L);
1347 else
1348 {
1349 /* move marks from old lines to new lines, delete marks
1350 * that are in deleted lines */
1351 mark_adjust(line1, line1 + read_linecount - 1,
1352 linecount, 0L);
1353 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1354 }
1355 }
1356
1357 /*
1358 * Put cursor on first filtered line for ":range!cmd".
1359 * Adjust '[ and '] (set by buf_write()).
1360 */
1361 curwin->w_cursor.lnum = line1;
1362 del_lines(linecount, TRUE);
1363 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1364 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1365 write_lnum_adjust(-linecount); /* adjust last line
1366 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001367#ifdef FEAT_FOLDING
1368 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 }
1371 else
1372 {
1373 /*
1374 * Put cursor on last new line for ":r !cmd".
1375 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001377 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001379
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1381 --no_wait_return;
1382
1383 if (linecount > p_report)
1384 {
1385 if (do_in)
1386 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001387 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1388 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001391 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 }
1393 else
1394 msgmore((long)linecount);
1395 }
1396 }
1397 else
1398 {
1399error:
1400 /* put cursor back in same position for ":w !cmd" */
1401 curwin->w_cursor = cursor_save;
1402 --no_wait_return;
1403 wait_return(FALSE);
1404 }
1405
1406filterend:
1407
1408#ifdef FEAT_AUTOCMD
1409 if (curbuf != old_curbuf)
1410 {
1411 --no_wait_return;
1412 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1413 }
1414#endif
1415 if (itmp != NULL)
1416 mch_remove(itmp);
1417 if (otmp != NULL)
1418 mch_remove(otmp);
1419 vim_free(itmp);
1420 vim_free(otmp);
1421}
1422
1423/*
1424 * Call a shell to execute a command.
1425 * When "cmd" is NULL start an interactive shell.
1426 */
1427 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001428do_shell(
1429 char_u *cmd,
1430 int flags) /* may be SHELL_DOOUT when output is redirected */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431{
1432 buf_T *buf;
1433#ifndef FEAT_GUI_MSWIN
1434 int save_nwr;
1435#endif
1436#ifdef MSWIN
1437 int winstart = FALSE;
1438#endif
1439
1440 /*
1441 * Disallow shell commands for "rvim".
1442 * Disallow shell commands from .exrc and .vimrc in current directory for
1443 * security reasons.
1444 */
1445 if (check_restricted() || check_secure())
1446 {
1447 msg_end();
1448 return;
1449 }
1450
1451#ifdef MSWIN
1452 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453 * Check if ":!start" is used.
1454 */
1455 if (cmd != NULL)
1456 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1457#endif
1458
1459 /*
1460 * For autocommands we want to get the output on the current screen, to
1461 * avoid having to type return below.
1462 */
1463 msg_putchar('\r'); /* put cursor at start of line */
1464#ifdef FEAT_AUTOCMD
1465 if (!autocmd_busy)
1466#endif
1467 {
1468#ifdef MSWIN
1469 if (!winstart)
1470#endif
1471 stoptermcap();
1472 }
1473#ifdef MSWIN
1474 if (!winstart)
1475#endif
1476 msg_putchar('\n'); /* may shift screen one line up */
1477
1478 /* warning message before calling the shell */
1479 if (p_warn
1480#ifdef FEAT_AUTOCMD
1481 && !autocmd_busy
1482#endif
1483 && msg_silent == 0)
Bram Moolenaar29323592016-07-24 22:04:11 +02001484 FOR_ALL_BUFFERS(buf)
Bram Moolenaarf405c8f2017-12-09 19:51:49 +01001485 if (bufIsChangedNotTerm(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 {
1487#ifdef FEAT_GUI_MSWIN
1488 if (!winstart)
1489 starttermcap(); /* don't want a message box here */
1490#endif
1491 MSG_PUTS(_("[No write since last change]\n"));
1492#ifdef FEAT_GUI_MSWIN
1493 if (!winstart)
1494 stoptermcap();
1495#endif
1496 break;
1497 }
1498
1499 /* This windgoto is required for when the '\n' resulted in a "delete line
1500 * 1" command to the terminal. */
1501 if (!swapping_screen())
1502 windgoto(msg_row, msg_col);
1503 cursor_on();
1504 (void)call_shell(cmd, SHELL_COOKED | flags);
1505 did_check_timestamps = FALSE;
1506 need_check_timestamps = TRUE;
1507
1508 /*
1509 * put the message cursor at the end of the screen, avoids wait_return()
1510 * to overwrite the text that the external command showed
1511 */
1512 if (!swapping_screen())
1513 {
1514 msg_row = Rows - 1;
1515 msg_col = 0;
1516 }
1517
1518#ifdef FEAT_AUTOCMD
1519 if (autocmd_busy)
1520 {
1521 if (msg_silent == 0)
1522 redraw_later_clear();
1523 }
1524 else
1525#endif
1526 {
1527 /*
1528 * For ":sh" there is no need to call wait_return(), just redraw.
1529 * Also for the Win32 GUI (the output is in a console window).
1530 * Otherwise there is probably text on the screen that the user wants
1531 * to read before redrawing, so call wait_return().
1532 */
1533#ifndef FEAT_GUI_MSWIN
1534 if (cmd == NULL
1535# ifdef WIN3264
1536 || (winstart && !need_wait_return)
1537# endif
1538 )
1539 {
1540 if (msg_silent == 0)
1541 redraw_later_clear();
1542 need_wait_return = FALSE;
1543 }
1544 else
1545 {
1546 /*
1547 * If we switch screens when starttermcap() is called, we really
1548 * want to wait for "hit return to continue".
1549 */
1550 save_nwr = no_wait_return;
1551 if (swapping_screen())
1552 no_wait_return = FALSE;
1553# ifdef AMIGA
1554 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1555# else
1556 wait_return(msg_silent == 0);
1557# endif
1558 no_wait_return = save_nwr;
1559 }
1560#endif /* FEAT_GUI_W32 */
1561
1562#ifdef MSWIN
1563 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1564#endif
1565 starttermcap(); /* start termcap if not done by wait_return() */
1566
1567 /*
1568 * In an Amiga window redrawing is caused by asking the window size.
1569 * If we got an interrupt this will not work. The chance that the
1570 * window size is wrong is very small, but we need to redraw the
1571 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1572 * but it saves an extra redraw.
1573 */
1574#ifdef AMIGA
1575 if (skip_redraw) /* ':' hit in wait_return() */
1576 {
1577 if (msg_silent == 0)
1578 redraw_later_clear();
1579 }
1580 else if (term_console)
1581 {
1582 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1583 if (got_int && msg_silent == 0)
1584 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1585 else
1586 must_redraw = 0; /* no extra redraw needed */
1587 }
1588#endif
1589 }
1590
1591 /* display any error messages now */
1592 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001593
1594#ifdef FEAT_AUTOCMD
1595 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
1596#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597}
1598
1599/*
1600 * Create a shell command from a command string, input redirection file and
1601 * output redirection file.
1602 * Returns an allocated string with the shell command, or NULL for failure.
1603 */
1604 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001605make_filter_cmd(
1606 char_u *cmd, /* command */
1607 char_u *itmp, /* NULL or name of input file */
1608 char_u *otmp) /* NULL or name of output file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609{
1610 char_u *buf;
1611 long_u len;
1612
Bram Moolenaar53076832015-12-31 19:53:21 +01001613#if defined(UNIX)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001614 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001615 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001616
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001617 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001618 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1619 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001620 if (is_fish_shell)
1621 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1622 else
1623#endif
1624 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 if (itmp != NULL)
1626 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1627 if (otmp != NULL)
1628 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1629 buf = lalloc(len, TRUE);
1630 if (buf == NULL)
1631 return NULL;
1632
Bram Moolenaar53076832015-12-31 19:53:21 +01001633#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001635 * Put braces around the command (for concatenated commands) when
1636 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001638 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001639 {
1640 if (is_fish_shell)
1641 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1642 else
1643 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1644 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001645 else
1646 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 if (itmp != NULL)
1648 {
1649 STRCAT(buf, " < ");
1650 STRCAT(buf, itmp);
1651 }
1652#else
1653 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001654 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 * the use of commands in a pipe.
1656 */
1657 STRCPY(buf, cmd);
1658 if (itmp != NULL)
1659 {
1660 char_u *p;
1661
1662 /*
1663 * If there is a pipe, we have to put the '<' in front of it.
1664 * Don't do this when 'shellquote' is not empty, otherwise the
1665 * redirection would be inside the quotes.
1666 */
1667 if (*p_shq == NUL)
1668 {
1669 p = vim_strchr(buf, '|');
1670 if (p != NULL)
1671 *p = NUL;
1672 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1674 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 if (*p_shq == NUL)
1676 {
1677 p = vim_strchr(cmd, '|');
1678 if (p != NULL)
1679 {
1680 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1681 STRCAT(buf, p);
1682 }
1683 }
1684 }
1685#endif
1686 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001687 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688
1689 return buf;
1690}
1691
1692/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001693 * Append output redirection for file "fname" to the end of string buffer
1694 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 * Works with the 'shellredir' and 'shellpipe' options.
1696 * The caller should make sure that there is enough room:
1697 * STRLEN(opt) + STRLEN(fname) + 3
1698 */
1699 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001700append_redir(
1701 char_u *buf,
1702 int buflen,
1703 char_u *opt,
1704 char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705{
1706 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001707 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001709 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001710 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001712 {
1713 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001715 if (p[1] == '%') /* skip %% */
1716 ++p;
1717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 if (p != NULL)
1719 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001720 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1721 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1722 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 }
1724 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001725 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 " %s %s",
1728#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730#endif
1731 (char *)opt, (char *)fname);
1732}
1733
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001734#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001736static int no_viminfo(void);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001737static int read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02001738static void write_viminfo_version(FILE *fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001739static void write_viminfo_barlines(vir_T *virp, FILE *fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740static int viminfo_errcnt;
1741
1742 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001743no_viminfo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744{
1745 /* "vim -i NONE" does not read or write a viminfo file */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001746 return STRCMP(p_viminfofile, "NONE") == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747}
1748
1749/*
1750 * Report an error for reading a viminfo file.
1751 * Count the number of errors. When there are more than 10, return TRUE.
1752 */
1753 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001754viminfo_error(char *errnum, char *message, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001756 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1757 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001758 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001759 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1760 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 emsg(IObuff);
1762 if (++viminfo_errcnt >= 10)
1763 {
1764 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1765 return TRUE;
1766 }
1767 return FALSE;
1768}
1769
1770/*
1771 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001772 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 */
1774 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001775read_viminfo(
1776 char_u *file, /* file name or NULL to use default name */
1777 int flags) /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778{
1779 FILE *fp;
1780 char_u *fname;
1781
1782 if (no_viminfo())
1783 return FAIL;
1784
Bram Moolenaard812df62008-11-09 12:46:09 +00001785 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 if (fname == NULL)
1787 return FAIL;
1788 fp = mch_fopen((char *)fname, READBIN);
1789
1790 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001791 {
1792 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001793 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1794 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001795 (flags & VIF_WANT_INFO) ? _(" info") : "",
1796 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1797 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001798 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001799 verbose_leave();
1800 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801
1802 vim_free(fname);
1803 if (fp == NULL)
1804 return FAIL;
1805
1806 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001807 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808
1809 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 return OK;
1811}
1812
1813/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001814 * Write the viminfo file. The old one is read in first so that effectively a
1815 * merge of current info and old info is done. This allows multiple vims to
1816 * run simultaneously, without losing any marks etc.
1817 * If "forceit" is TRUE, then the old file is not read in, and only internal
1818 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 */
1820 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001821write_viminfo(char_u *file, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822{
1823 char_u *fname;
1824 FILE *fp_in = NULL; /* input viminfo file, if any */
1825 FILE *fp_out = NULL; /* output viminfo file */
1826 char_u *tempname = NULL; /* name of temp viminfo file */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001827 stat_T st_new; /* mch_stat() of potential new file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828#if defined(UNIX) || defined(VMS)
1829 mode_t umask_save;
1830#endif
1831#ifdef UNIX
1832 int shortname = FALSE; /* use 8.3 file name */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001833 stat_T st_old; /* mch_stat() of existing viminfo file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001835#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001836 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001837#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838
1839 if (no_viminfo())
1840 return;
1841
1842 fname = viminfo_filename(file); /* may set to default if NULL */
1843 if (fname == NULL)
1844 return;
1845
1846 fp_in = mch_fopen((char *)fname, READBIN);
1847 if (fp_in == NULL)
1848 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001849 int fd;
1850
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 /* if it does exist, but we can't read it, don't try writing */
1852 if (mch_stat((char *)fname, &st_new) == 0)
1853 goto end;
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001854
1855 /* Create the new .viminfo non-accessible for others, because it may
1856 * contain text from non-accessible documents. It is up to the user to
1857 * widen access (e.g. to a group). This may also fail if there is a
1858 * race condition, then just give up. */
1859 fd = mch_open((char *)fname,
1860 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
1861 if (fd < 0)
1862 goto end;
1863 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 }
1865 else
1866 {
1867 /*
1868 * There is an existing viminfo file. Create a temporary file to
1869 * write the new viminfo into, in the same directory as the
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001870 * existing viminfo file, which will be renamed once all writing is
1871 * successful.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 */
1873#ifdef UNIX
1874 /*
1875 * For Unix we check the owner of the file. It's not very nice to
1876 * overwrite a user's viminfo file after a "su root", with a
1877 * viminfo file that the user can't read.
1878 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001879 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001880 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001882 if (mch_stat((char *)fname, &st_old) == 0
1883 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001884 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 ? (st_old.st_mode & 0200)
1886 : (st_old.st_gid == getgid()
1887 ? (st_old.st_mode & 0020)
1888 : (st_old.st_mode & 0002))))
1889 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001890 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891
1892 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1894 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001895 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 goto end;
1897 }
1898#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001899#ifdef WIN3264
1900 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001901 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903
1904 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001905 * Make tempname, find one that does not exist yet.
1906 * Beware of a race condition: If someone logs out and all Vim
1907 * instances exit at the same time a temp file might be created between
1908 * stat() and open(). Use mch_open() with O_EXCL to avoid that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 * May try twice: Once normal and once with shortname set, just in
1910 * case somebody puts his viminfo file in an 8.3 filesystem.
1911 */
1912 for (;;)
1913 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001914 int next_char = 'z';
1915 char_u *wp;
1916
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 tempname = buf_modname(
1918#ifdef UNIX
1919 shortname,
1920#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922#endif
1923 fname,
1924#ifdef VMS
1925 (char_u *)"-tmp",
1926#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928#endif
1929 FALSE);
1930 if (tempname == NULL) /* out of memory */
1931 break;
1932
1933 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001934 * Try a series of names. Change one character, just before
1935 * the extension. This should also work for an 8.3
1936 * file name, when after adding the extension it still is
1937 * the same file as the original.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001939 wp = tempname + STRLEN(tempname) - 5;
1940 if (wp < gettail(tempname)) /* empty file name? */
1941 wp = gettail(tempname);
1942 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001944 /*
1945 * Check if tempfile already exists. Never overwrite an
1946 * existing file!
1947 */
1948 if (mch_stat((char *)tempname, &st_new) == 0)
1949 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950#ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 /*
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001952 * Check if tempfile is same as original file. May happen
1953 * when modname() gave the same file back. E.g. silly
1954 * link, or file name-length reached. Try again with
1955 * shortname set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001957 if (!shortname && st_new.st_dev == st_old.st_dev
1958 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001960 VIM_CLEAR(tempname);
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001961 shortname = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 break;
1963 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001964#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01001966 else
1967 {
1968 /* Try creating the file exclusively. This may fail if
1969 * another Vim tries to do it at the same time. */
1970#ifdef VMS
1971 /* fdopen() fails for some reason */
1972 umask_save = umask(077);
1973 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1974 (void)umask(umask_save);
1975#else
1976 int fd;
1977
1978 /* Use mch_open() to be able to use O_NOFOLLOW and set file
1979 * protection:
1980 * Unix: same as original file, but strip s-bit. Reset
1981 * umask to avoid it getting in the way.
1982 * Others: r&w for user only. */
1983# ifdef UNIX
1984 umask_save = umask(0);
1985 fd = mch_open((char *)tempname,
1986 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
1987 (int)((st_old.st_mode & 0777) | 0600));
1988 (void)umask(umask_save);
1989# else
1990 fd = mch_open((char *)tempname,
1991 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
1992# endif
1993 if (fd < 0)
1994 {
1995 fp_out = NULL;
1996# ifdef EEXIST
1997 /* Avoid trying lots of names while the problem is lack
1998 * of premission, only retry if the file already
1999 * exists. */
2000 if (errno != EEXIST)
2001 break;
2002# endif
2003 }
2004 else
2005 fp_out = fdopen(fd, WRITEBIN);
2006#endif /* VMS */
2007 if (fp_out != NULL)
2008 break;
2009 }
2010
2011 /* Assume file exists, try again with another name. */
2012 if (next_char == 'a' - 1)
2013 {
2014 /* They all exist? Must be something wrong! Don't write
2015 * the viminfo file then. */
2016 EMSG2(_("E929: Too many viminfo temp files, like %s!"),
2017 tempname);
2018 break;
2019 }
2020 *wp = next_char;
2021 --next_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002023
2024 if (tempname != NULL)
2025 break;
2026 /* continue if shortname was set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 }
2028
Bram Moolenaara5792f52005-11-23 21:25:05 +00002029#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002030 if (tempname != NULL && fp_out != NULL)
2031 {
2032 stat_T tmp_st;
2033
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 /*
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002035 * Make sure the original owner can read/write the tempfile and
2036 * otherwise preserve permissions, making sure the group matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 */
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002038 if (mch_stat((char *)tempname, &tmp_st) >= 0)
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002039 {
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002040 if (st_old.st_uid != tmp_st.st_uid)
2041 /* Changing the owner might fail, in which case the
2042 * file will now owned by the current user, oh well. */
2043 ignored = fchown(fileno(fp_out), st_old.st_uid, -1);
2044 if (st_old.st_gid != tmp_st.st_gid
2045 && fchown(fileno(fp_out), -1, st_old.st_gid) == -1)
2046 /* can't set the group to what it should be, remove
2047 * group permissions */
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01002048 (void)mch_setperm(tempname, 0600);
2049 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002050 else
2051 /* can't stat the file, set conservative permissions */
2052 (void)mch_setperm(tempname, 0600);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 }
Bram Moolenaarc41838a2017-11-26 16:50:41 +01002054#endif
Bram Moolenaare0aa23f2017-11-26 17:08:03 +01002055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056
2057 /*
2058 * Check if the new viminfo file can be written to.
2059 */
2060 if (fp_out == NULL)
2061 {
2062 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002063 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 if (fp_in != NULL)
2065 fclose(fp_in);
2066 goto end;
2067 }
2068
2069 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002070 {
2071 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00002072 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002073 verbose_leave();
2074 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075
2076 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002077 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078
Bram Moolenaar927030a2016-03-15 18:23:55 +01002079 if (fclose(fp_out) == EOF)
2080 ++viminfo_errcnt;
2081
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 if (fp_in != NULL)
2083 {
2084 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002085
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002086 /* In case of an error keep the original viminfo file. Otherwise
2087 * rename the newly written file. Give an error if that fails. */
Bram Moolenaar927030a2016-03-15 18:23:55 +01002088 if (viminfo_errcnt == 0)
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002089 {
Bram Moolenaar927030a2016-03-15 18:23:55 +01002090 if (vim_rename(tempname, fname) == -1)
2091 {
2092 ++viminfo_errcnt;
2093 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2094 }
2095# ifdef WIN3264
2096 /* If the viminfo file was hidden then also hide the new file. */
2097 else if (hidden)
2098 mch_hide(fname);
2099# endif
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002100 }
2101 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 mch_remove(tempname);
2103 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002104
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105end:
2106 vim_free(fname);
2107 vim_free(tempname);
2108}
2109
2110/*
2111 * Get the viminfo file name to use.
2112 * If "file" is given and not empty, use it (has already been expanded by
2113 * cmdline functions).
2114 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2115 * expand environment variables.
2116 * Returns an allocated string. NULL when out of memory.
2117 */
2118 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002119viminfo_filename(char_u *file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120{
2121 if (file == NULL || *file == NUL)
2122 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002123 if (*p_viminfofile != NUL)
2124 file = p_viminfofile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2126 {
2127#ifdef VIMINFO_FILE2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128# ifdef VMS
2129 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2130# else
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002131# ifdef MSWIN
2132 /* Use $VIM only if $HOME is the default "C:/". */
2133 if (STRCMP(vim_getenv((char_u *)"HOME", NULL), "C:/") == 0
2134 && mch_getenv((char_u *)"HOME") == NULL)
2135# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 if (mch_getenv((char_u *)"HOME") == NULL)
Bram Moolenaar3d593c22017-08-31 20:42:18 +02002137# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138# endif
2139 {
2140 /* don't use $VIM when not available. */
2141 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2142 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2143 file = (char_u *)VIMINFO_FILE2;
2144 else
2145 file = (char_u *)VIMINFO_FILE;
2146 }
2147 else
2148#endif
2149 file = (char_u *)VIMINFO_FILE;
2150 }
2151 expand_env(file, NameBuff, MAXPATHL);
2152 file = NameBuff;
2153 }
2154 return vim_strsave(file);
2155}
2156
2157/*
2158 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2159 */
2160 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002161do_viminfo(FILE *fp_in, FILE *fp_out, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 int eof = FALSE;
2164 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002165 int merge = FALSE;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002166 int do_copy_marks = FALSE;
2167 garray_T buflist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168
2169 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2170 return;
2171 vir.vir_fd = fp_in;
2172#ifdef FEAT_MBYTE
2173 vir.vir_conv.vc_type = CONV_NONE;
2174#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002175 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002176 vir.vir_version = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177
2178 if (fp_in != NULL)
2179 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002180 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002181 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002182 if (fp_out != NULL)
Bram Moolenaar2d358992016-06-12 21:20:54 +02002183 {
2184 /* Registers and marks are read and kept separate from what
2185 * this Vim is using. They are merged when writing. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002186 prepare_viminfo_registers();
Bram Moolenaar2d358992016-06-12 21:20:54 +02002187 prepare_viminfo_marks();
2188 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002189
Bram Moolenaard812df62008-11-09 12:46:09 +00002190 eof = read_viminfo_up_to_marks(&vir,
2191 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002192 merge = TRUE;
2193 }
2194 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 /* Skip info, find start of marks */
2196 while (!(eof = viminfo_readline(&vir))
2197 && vir.vir_line[0] != '>')
2198 ;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002199
2200 do_copy_marks = (flags &
2201 (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002203
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 if (fp_out != NULL)
2205 {
2206 /* Write the info: */
2207 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2208 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002209 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002210 write_viminfo_version(fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002212 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2214#endif
2215 write_viminfo_search_pattern(fp_out);
2216 write_viminfo_sub_string(fp_out);
2217#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002218 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219#endif
2220 write_viminfo_registers(fp_out);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002221 finish_viminfo_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222#ifdef FEAT_EVAL
2223 write_viminfo_varlist(fp_out);
2224#endif
2225 write_viminfo_filemarks(fp_out);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002226 finish_viminfo_marks();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 write_viminfo_bufferlist(fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002228 write_viminfo_barlines(&vir, fp_out);
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002229
2230 if (do_copy_marks)
2231 ga_init2(&buflist, sizeof(buf_T *), 50);
2232 write_viminfo_marks(fp_out, do_copy_marks ? &buflist : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002234
2235 if (do_copy_marks)
2236 {
2237 copy_viminfo_marks(&vir, fp_out, &buflist, eof, flags);
2238 if (fp_out != NULL)
2239 ga_clear(&buflist);
2240 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241
2242 vim_free(vir.vir_line);
2243#ifdef FEAT_MBYTE
2244 if (vir.vir_conv.vc_type != CONV_NONE)
2245 convert_setup(&vir.vir_conv, NULL, NULL);
2246#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002247 ga_clear_strings(&vir.vir_barlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248}
2249
2250/*
2251 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2252 * first part of the viminfo file which contains everything but the marks that
2253 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2254 */
2255 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002256read_viminfo_up_to_marks(
2257 vir_T *virp,
2258 int forceit,
2259 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260{
2261 int eof;
2262 buf_T *buf;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002263 int got_encoding = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264
2265#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002266 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002268
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 eof = viminfo_readline(virp);
2270 while (!eof && virp->vir_line[0] != '>')
2271 {
2272 switch (virp->vir_line[0])
2273 {
2274 /* Characters reserved for future expansion, ignored now */
2275 case '+': /* "+40 /path/dir file", for running vim without args */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 case '^': /* to be defined */
2277 case '<': /* long line - ignored */
2278 /* A comment or empty line. */
2279 case NUL:
2280 case '\r':
2281 case '\n':
2282 case '#':
2283 eof = viminfo_readline(virp);
2284 break;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002285 case '|':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002286 eof = read_viminfo_barline(virp, got_encoding,
2287 forceit, writing);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002288 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 case '*': /* "*encoding=value" */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002290 got_encoding = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 eof = viminfo_encoding(virp);
2292 break;
2293 case '!': /* global variable */
2294#ifdef FEAT_EVAL
2295 eof = read_viminfo_varlist(virp, writing);
2296#else
2297 eof = viminfo_readline(virp);
2298#endif
2299 break;
2300 case '%': /* entry for buffer list */
2301 eof = read_viminfo_bufferlist(virp, writing);
2302 break;
2303 case '"':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002304 /* When registers are in bar lines skip the old style register
2305 * lines. */
2306 if (virp->vir_version < VIMINFO_VERSION_WITH_REGISTERS)
2307 eof = read_viminfo_register(virp, forceit);
2308 else
2309 do {
2310 eof = viminfo_readline(virp);
2311 } while (!eof && (virp->vir_line[0] == TAB
2312 || virp->vir_line[0] == '<'));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 break;
2314 case '/': /* Search string */
2315 case '&': /* Substitute search string */
2316 case '~': /* Last search string, followed by '/' or '&' */
2317 eof = read_viminfo_search_pattern(virp, forceit);
2318 break;
2319 case '$':
2320 eof = read_viminfo_sub_string(virp, forceit);
2321 break;
2322 case ':':
2323 case '?':
2324 case '=':
2325 case '@':
2326#ifdef FEAT_CMDHIST
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002327 /* When history is in bar lines skip the old style history
2328 * lines. */
2329 if (virp->vir_version < VIMINFO_VERSION_WITH_HISTORY)
2330 eof = read_viminfo_history(virp, writing);
2331 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002333 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 break;
2335 case '-':
2336 case '\'':
Bram Moolenaara641e1d2016-06-13 21:16:03 +02002337 /* When file marks are in bar lines skip the old style lines. */
2338 if (virp->vir_version < VIMINFO_VERSION_WITH_MARKS)
2339 eof = read_viminfo_filemark(virp, forceit);
2340 else
2341 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 break;
2343 default:
2344 if (viminfo_error("E575: ", _("Illegal starting char"),
2345 virp->vir_line))
2346 eof = TRUE;
2347 else
2348 eof = viminfo_readline(virp);
2349 break;
2350 }
2351 }
2352
2353#ifdef FEAT_CMDHIST
2354 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002355 if (!writing)
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02002356 finish_viminfo_history(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357#endif
2358
2359 /* Change file names to buffer numbers for fmarks. */
Bram Moolenaar29323592016-07-24 22:04:11 +02002360 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 fmarks_check_names(buf);
2362
2363 return eof;
2364}
2365
2366/*
2367 * Compare the 'encoding' value in the viminfo file with the current value of
2368 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2369 * conversion of text with iconv() in viminfo_readstring().
2370 */
2371 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002372viminfo_encoding(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373{
2374#ifdef FEAT_MBYTE
2375 char_u *p;
2376 int i;
2377
2378 if (get_viminfo_parameter('c') != 0)
2379 {
2380 p = vim_strchr(virp->vir_line, '=');
2381 if (p != NULL)
2382 {
2383 /* remove trailing newline */
2384 ++p;
2385 for (i = 0; vim_isprintc(p[i]); ++i)
2386 ;
2387 p[i] = NUL;
2388
2389 convert_setup(&virp->vir_conv, p, p_enc);
2390 }
2391 }
2392#endif
2393 return viminfo_readline(virp);
2394}
2395
2396/*
2397 * Read a line from the viminfo file.
2398 * Returns TRUE for end-of-file;
2399 */
2400 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002401viminfo_readline(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402{
2403 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2404}
2405
2406/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002407 * Check string read from viminfo file.
2408 * Remove '\n' at the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 * - replace CTRL-V CTRL-V with CTRL-V
2410 * - replace CTRL-V 'n' with '\n'
2411 *
2412 * Check for a long line as written by viminfo_writestring().
2413 *
2414 * Return the string in allocated memory (NULL when out of memory).
2415 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002417viminfo_readstring(
2418 vir_T *virp,
2419 int off, /* offset for virp->vir_line */
2420 int convert UNUSED) /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421{
2422 char_u *retval;
2423 char_u *s, *d;
2424 long len;
2425
2426 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2427 {
2428 len = atol((char *)virp->vir_line + off + 1);
2429 retval = lalloc(len, TRUE);
2430 if (retval == NULL)
2431 {
2432 /* Line too long? File messed up? Skip next line. */
2433 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2434 return NULL;
2435 }
2436 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2437 s = retval + 1; /* Skip the leading '<' */
2438 }
2439 else
2440 {
2441 retval = vim_strsave(virp->vir_line + off);
2442 if (retval == NULL)
2443 return NULL;
2444 s = retval;
2445 }
2446
2447 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2448 d = retval;
2449 while (*s != NUL && *s != '\n')
2450 {
2451 if (s[0] == Ctrl_V && s[1] != NUL)
2452 {
2453 if (s[1] == 'n')
2454 *d++ = '\n';
2455 else
2456 *d++ = Ctrl_V;
2457 s += 2;
2458 }
2459 else
2460 *d++ = *s++;
2461 }
2462 *d = NUL;
2463
2464#ifdef FEAT_MBYTE
2465 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2466 {
2467 d = string_convert(&virp->vir_conv, retval, NULL);
2468 if (d != NULL)
2469 {
2470 vim_free(retval);
2471 retval = d;
2472 }
2473 }
2474#endif
2475
2476 return retval;
2477}
2478
2479/*
2480 * write string to viminfo file
2481 * - replace CTRL-V with CTRL-V CTRL-V
2482 * - replace '\n' with CTRL-V 'n'
2483 * - add a '\n' at the end
2484 *
2485 * For a long line:
2486 * - write " CTRL-V <length> \n " in first line
2487 * - write " < <string> \n " in second line
2488 */
2489 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002490viminfo_writestring(FILE *fd, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491{
2492 int c;
2493 char_u *s;
2494 int len = 0;
2495
2496 for (s = p; *s != NUL; ++s)
2497 {
2498 if (*s == Ctrl_V || *s == '\n')
2499 ++len;
2500 ++len;
2501 }
2502
2503 /* If the string will be too long, write its length and put it in the next
2504 * line. Take into account that some room is needed for what comes before
2505 * the string (e.g., variable name). Add something to the length for the
2506 * '<', NL and trailing NUL. */
2507 if (len > LSIZE / 2)
2508 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2509
2510 while ((c = *p++) != NUL)
2511 {
2512 if (c == Ctrl_V || c == '\n')
2513 {
2514 putc(Ctrl_V, fd);
2515 if (c == '\n')
2516 c = 'n';
2517 }
2518 putc(c, fd);
2519 }
2520 putc('\n', fd);
2521}
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002522
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002523/*
2524 * Write a string in quotes that barline_parse() can read back.
2525 * Breaks the line in less than LSIZE pieces when needed.
2526 * Returns remaining characters in the line.
2527 */
2528 int
2529barline_writestring(FILE *fd, char_u *s, int remaining_start)
2530{
2531 char_u *p;
2532 int remaining = remaining_start;
2533 int len = 2;
2534
2535 /* Count the number of characters produced, including quotes. */
2536 for (p = s; *p != NUL; ++p)
2537 {
2538 if (*p == NL)
2539 len += 2;
2540 else if (*p == '"' || *p == '\\')
2541 len += 2;
2542 else
2543 ++len;
2544 }
Bram Moolenaar25709572016-08-26 20:41:16 +02002545 if (len > remaining - 2)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002546 {
2547 fprintf(fd, ">%d\n|<", len);
2548 remaining = LSIZE - 20;
2549 }
2550
2551 putc('"', fd);
2552 for (p = s; *p != NUL; ++p)
2553 {
2554 if (*p == NL)
2555 {
2556 putc('\\', fd);
2557 putc('n', fd);
2558 --remaining;
2559 }
2560 else if (*p == '"' || *p == '\\')
2561 {
2562 putc('\\', fd);
2563 putc(*p, fd);
2564 --remaining;
2565 }
2566 else
2567 putc(*p, fd);
2568 --remaining;
2569
2570 if (remaining < 3)
2571 {
2572 putc('\n', fd);
2573 putc('|', fd);
2574 putc('<', fd);
2575 /* Leave enough space for another continuation. */
2576 remaining = LSIZE - 20;
2577 }
2578 }
2579 putc('"', fd);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002580 return remaining - 2;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002581}
2582
2583/*
2584 * Parse a viminfo line starting with '|'.
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002585 * Add each decoded value to "values".
Bram Moolenaarecefe712016-06-20 12:50:17 +02002586 * Returns TRUE if the next line is to be read after using the parsed values.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002587 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002588 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002589barline_parse(vir_T *virp, char_u *text, garray_T *values)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002590{
2591 char_u *p = text;
2592 char_u *nextp = NULL;
Bram Moolenaarfdd82fe2016-06-06 21:38:44 +02002593 char_u *buf = NULL;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002594 bval_T *value;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002595 int i;
2596 int allocated = FALSE;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002597 int eof;
Bram Moolenaar01227092016-06-11 14:47:40 +02002598#ifdef FEAT_MBYTE
2599 char_u *sconv;
2600 int converted;
2601#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002602
2603 while (*p == ',')
2604 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002605 ++p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002606 if (ga_grow(values, 1) == FAIL)
2607 break;
2608 value = (bval_T *)(values->ga_data) + values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002609
2610 if (*p == '>')
2611 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002612 /* Need to read a continuation line. Put strings in allocated
2613 * memory, because virp->vir_line is overwritten. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002614 if (!allocated)
2615 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002616 for (i = 0; i < values->ga_len; ++i)
2617 {
2618 bval_T *vp = (bval_T *)(values->ga_data) + i;
2619
2620 if (vp->bv_type == BVAL_STRING && !vp->bv_allocated)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002621 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002622 vp->bv_string = vim_strnsave(vp->bv_string, vp->bv_len);
2623 vp->bv_allocated = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002624 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002625 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002626 allocated = TRUE;
2627 }
2628
2629 if (vim_isdigit(p[1]))
2630 {
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002631 size_t len;
2632 size_t todo;
2633 size_t n;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002634
2635 /* String value was split into lines that are each shorter
2636 * than LSIZE:
2637 * |{bartype},>{length of "{text}{text2}"}
2638 * |<"{text1}
2639 * |<{text2}",{value}
Bram Moolenaarecefe712016-06-20 12:50:17 +02002640 * Length includes the quotes.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002641 */
2642 ++p;
2643 len = getdigits(&p);
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002644 buf = alloc((int)(len + 1));
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002645 if (buf == NULL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002646 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002647 p = buf;
2648 for (todo = len; todo > 0; todo -= n)
2649 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002650 eof = viminfo_readline(virp);
2651 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002652 || virp->vir_line[1] != '<')
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002653 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002654 /* File was truncated or garbled. Read another line if
2655 * this one starts with '|'. */
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002656 vim_free(buf);
Bram Moolenaarecefe712016-06-20 12:50:17 +02002657 return eof || virp->vir_line[0] == '|';
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002658 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002659 /* Get length of text, excluding |< and NL chars. */
2660 n = STRLEN(virp->vir_line);
2661 while (n > 0 && (virp->vir_line[n - 1] == NL
2662 || virp->vir_line[n - 1] == CAR))
2663 --n;
2664 n -= 2;
2665 if (n > todo)
2666 {
2667 /* more values follow after the string */
2668 nextp = virp->vir_line + 2 + todo;
2669 n = todo;
2670 }
2671 mch_memmove(p, virp->vir_line + 2, n);
2672 p += n;
2673 }
2674 *p = NUL;
2675 p = buf;
2676 }
2677 else
2678 {
2679 /* Line ending in ">" continues in the next line:
2680 * |{bartype},{lots of values},>
2681 * |<{value},{value}
2682 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002683 eof = viminfo_readline(virp);
2684 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002685 || virp->vir_line[1] != '<')
Bram Moolenaarecefe712016-06-20 12:50:17 +02002686 /* File was truncated or garbled. Read another line if
2687 * this one starts with '|'. */
2688 return eof || virp->vir_line[0] == '|';
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002689 p = virp->vir_line + 2;
2690 }
2691 }
2692
2693 if (isdigit(*p))
2694 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002695 value->bv_type = BVAL_NR;
2696 value->bv_nr = getdigits(&p);
2697 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002698 }
2699 else if (*p == '"')
2700 {
2701 int len = 0;
2702 char_u *s = p;
2703
2704 /* Unescape special characters in-place. */
2705 ++p;
2706 while (*p != '"')
2707 {
2708 if (*p == NL || *p == NUL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002709 return TRUE; /* syntax error, drop the value */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002710 if (*p == '\\')
2711 {
2712 ++p;
2713 if (*p == 'n')
2714 s[len++] = '\n';
2715 else
2716 s[len++] = *p;
2717 ++p;
2718 }
2719 else
2720 s[len++] = *p++;
2721 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002722 ++p;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002723 s[len] = NUL;
2724
Bram Moolenaar01227092016-06-11 14:47:40 +02002725#ifdef FEAT_MBYTE
2726 converted = FALSE;
2727 if (virp->vir_conv.vc_type != CONV_NONE && *s != NUL)
2728 {
2729 sconv = string_convert(&virp->vir_conv, s, NULL);
2730 if (sconv != NULL)
2731 {
2732 if (s == buf)
2733 vim_free(s);
2734 s = sconv;
2735 buf = s;
2736 converted = TRUE;
2737 }
2738 }
2739#endif
2740 /* Need to copy in allocated memory if the string wasn't allocated
2741 * above and we did allocate before, thus vir_line may change. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002742 if (s != buf && allocated)
2743 s = vim_strsave(s);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002744 value->bv_string = s;
2745 value->bv_type = BVAL_STRING;
2746 value->bv_len = len;
2747 value->bv_allocated = allocated
Bram Moolenaar01227092016-06-11 14:47:40 +02002748#ifdef FEAT_MBYTE
2749 || converted
2750#endif
2751 ;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002752 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002753 if (nextp != NULL)
2754 {
2755 /* values following a long string */
2756 p = nextp;
2757 nextp = NULL;
2758 }
2759 }
2760 else if (*p == ',')
2761 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002762 value->bv_type = BVAL_EMPTY;
2763 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002764 }
2765 else
2766 break;
2767 }
Bram Moolenaarecefe712016-06-20 12:50:17 +02002768 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002769}
2770
2771 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002772read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002773{
2774 char_u *p = virp->vir_line + 1;
2775 int bartype;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002776 garray_T values;
2777 bval_T *vp;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002778 int i;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002779 int read_next = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002780
2781 /* The format is: |{bartype},{value},...
2782 * For a very long string:
2783 * |{bartype},>{length of "{text}{text2}"}
2784 * |<{text1}
2785 * |<{text2},{value}
2786 * For a long line not using a string
2787 * |{bartype},{lots of values},>
2788 * |<{value},{value}
2789 */
2790 if (*p == '<')
2791 {
2792 /* Continuation line of an unrecognized item. */
2793 if (writing)
2794 ga_add_string(&virp->vir_barlines, virp->vir_line);
2795 }
2796 else
2797 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002798 ga_init2(&values, sizeof(bval_T), 20);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002799 bartype = getdigits(&p);
2800 switch (bartype)
2801 {
2802 case BARTYPE_VERSION:
2803 /* Only use the version when it comes before the encoding.
2804 * If it comes later it was copied by a Vim version that
2805 * doesn't understand the version. */
2806 if (!got_encoding)
2807 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002808 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002809 vp = (bval_T *)values.ga_data;
2810 if (values.ga_len > 0 && vp->bv_type == BVAL_NR)
2811 virp->vir_version = vp->bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002812 }
2813 break;
2814
2815 case BARTYPE_HISTORY:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002816 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002817 handle_viminfo_history(&values, writing);
2818 break;
2819
2820 case BARTYPE_REGISTER:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002821 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002822 handle_viminfo_register(&values, force);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002823 break;
2824
Bram Moolenaar2d358992016-06-12 21:20:54 +02002825 case BARTYPE_MARK:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002826 read_next = barline_parse(virp, p, &values);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002827 handle_viminfo_mark(&values, force);
2828 break;
2829
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002830 default:
2831 /* copy unrecognized line (for future use) */
2832 if (writing)
2833 ga_add_string(&virp->vir_barlines, virp->vir_line);
2834 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002835 for (i = 0; i < values.ga_len; ++i)
2836 {
2837 vp = (bval_T *)values.ga_data + i;
2838 if (vp->bv_type == BVAL_STRING && vp->bv_allocated)
2839 vim_free(vp->bv_string);
2840 }
2841 ga_clear(&values);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002842 }
2843
Bram Moolenaarecefe712016-06-20 12:50:17 +02002844 if (read_next)
2845 return viminfo_readline(virp);
2846 return FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002847}
2848
2849 static void
2850write_viminfo_version(FILE *fp_out)
2851{
2852 fprintf(fp_out, "# Viminfo version\n|%d,%d\n\n",
2853 BARTYPE_VERSION, VIMINFO_VERSION);
2854}
2855
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002856 static void
2857write_viminfo_barlines(vir_T *virp, FILE *fp_out)
2858{
2859 int i;
2860 garray_T *gap = &virp->vir_barlines;
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002861 int seen_useful = FALSE;
2862 char *line;
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002863
2864 if (gap->ga_len > 0)
2865 {
2866 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out);
2867
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002868 /* Skip over continuation lines until seeing a useful line. */
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002869 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002870 {
2871 line = ((char **)(gap->ga_data))[i];
2872 if (seen_useful || line[1] != '<')
2873 {
2874 fputs(line, fp_out);
2875 seen_useful = TRUE;
2876 }
2877 }
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002878 }
2879}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880#endif /* FEAT_VIMINFO */
2881
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002882/*
2883 * Return the current time in seconds. Calls time(), unless test_settime()
2884 * was used.
2885 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02002886 time_T
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002887vim_time(void)
2888{
2889# ifdef FEAT_EVAL
2890 return time_for_testing == 0 ? time(NULL) : time_for_testing;
2891# else
2892 return time(NULL);
2893# endif
2894}
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002895
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896/*
2897 * Implementation of ":fixdel", also used by get_stty().
2898 * <BS> resulting <Del>
2899 * ^? ^H
2900 * not ^? ^?
2901 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002903do_fixdel(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904{
2905 char_u *p;
2906
2907 p = find_termcode((char_u *)"kb");
2908 add_termcode((char_u *)"kD", p != NULL
2909 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2910}
2911
2912 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002913print_line_no_prefix(
2914 linenr_T lnum,
2915 int use_number,
2916 int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002918 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919
2920 if (curwin->w_p_nu || use_number)
2921 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002922 vim_snprintf((char *)numbuf, sizeof(numbuf),
2923 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar8820b482017-03-16 17:23:31 +01002924 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); /* Highlight line nrs */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002926 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927}
2928
2929/*
2930 * Print a text line. Also in silent mode ("ex -s").
2931 */
2932 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002933print_line(linenr_T lnum, int use_number, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934{
2935 int save_silent = silent_mode;
2936
Bram Moolenaard29459b2016-08-26 22:29:11 +02002937 /* apply :filter /pat/ */
2938 if (message_filtered(ml_get(lnum)))
2939 return;
2940
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002942 silent_mode = FALSE;
2943 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
2944 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 if (save_silent)
2946 {
2947 msg_putchar('\n');
2948 cursor_on(); /* msg_start() switches it off */
2949 out_flush();
2950 silent_mode = save_silent;
2951 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00002952 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953}
2954
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002955 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002956rename_buffer(char_u *new_fname)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002957{
2958 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02002959 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002960
Bram Moolenaar7e283842013-05-30 11:43:15 +02002961#ifdef FEAT_AUTOCMD
2962 buf = curbuf;
2963 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002964 /* buffer changed, don't change name now */
2965 if (buf != curbuf)
2966 return FAIL;
2967# ifdef FEAT_EVAL
2968 if (aborting()) /* autocmds may abort script processing */
2969 return FAIL;
2970# endif
2971#endif
2972 /*
2973 * The name of the current buffer will be changed.
2974 * A new (unlisted) buffer entry needs to be made to hold the old file
2975 * name, which will become the alternate file name.
2976 * But don't set the alternate file name if the buffer didn't have a
2977 * name.
2978 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02002979 fname = curbuf->b_ffname;
2980 sfname = curbuf->b_sfname;
2981 xfname = curbuf->b_fname;
2982 curbuf->b_ffname = NULL;
2983 curbuf->b_sfname = NULL;
2984 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002985 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02002986 curbuf->b_ffname = fname;
2987 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002988 return FAIL;
2989 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02002990 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002991 if (xfname != NULL && *xfname != NUL)
2992 {
2993 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
2994 if (buf != NULL && !cmdmod.keepalt)
2995 curwin->w_alt_fnum = buf->b_fnum;
2996 }
2997 vim_free(fname);
2998 vim_free(sfname);
2999#ifdef FEAT_AUTOCMD
Bram Moolenaar7e283842013-05-30 11:43:15 +02003000 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003001#endif
3002 /* Change directories when the 'acd' option is set. */
3003 DO_AUTOCHDIR
3004 return OK;
3005}
3006
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007/*
3008 * ":file[!] [fname]".
3009 */
3010 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003011ex_file(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003013 /* ":0file" removes the file name. Check for illegal uses ":3file",
3014 * "0file name", etc. */
3015 if (eap->addr_count > 0
3016 && (*eap->arg != NUL
3017 || eap->line2 > 0
3018 || eap->addr_count > 1))
3019 {
3020 EMSG(_(e_invarg));
3021 return;
3022 }
3023
3024 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003026 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 }
3029 /* print full file name if :cd used */
Bram Moolenaar426dd022016-03-15 15:09:29 +01003030 if (!shortmess(SHM_FILEINFO))
3031 fileinfo(FALSE, FALSE, eap->forceit);
Bram Moolenaar6ce65042017-10-24 22:32:59 +02003032 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033}
3034
3035/*
3036 * ":update".
3037 */
3038 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003039ex_update(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040{
3041 if (curbufIsChanged())
3042 (void)do_write(eap);
3043}
3044
3045/*
3046 * ":write" and ":saveas".
3047 */
3048 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003049ex_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050{
3051 if (eap->usefilter) /* input lines to shell command */
3052 do_bang(1, eap, FALSE, TRUE, FALSE);
3053 else
3054 (void)do_write(eap);
3055}
3056
3057/*
3058 * write current buffer to file 'eap->arg'
3059 * if 'eap->append' is TRUE, append to the file
3060 *
3061 * if *eap->arg == NUL write to current file
3062 *
3063 * return FAIL for failure, OK otherwise
3064 */
3065 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003066do_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067{
3068 int other;
3069 char_u *fname = NULL; /* init to shut up gcc */
3070 char_u *ffname;
3071 int retval = FAIL;
3072 char_u *free_fname = NULL;
3073#ifdef FEAT_BROWSE
3074 char_u *browse_file = NULL;
3075#endif
3076 buf_T *alt_buf = NULL;
Bram Moolenaar5c719942016-07-09 23:40:45 +02003077 int name_was_missing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078
3079 if (not_writing()) /* check 'write' option */
3080 return FAIL;
3081
3082 ffname = eap->arg;
3083#ifdef FEAT_BROWSE
3084 if (cmdmod.browse)
3085 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003086 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 NULL, NULL, NULL, curbuf);
3088 if (browse_file == NULL)
3089 goto theend;
3090 ffname = browse_file;
3091 }
3092#endif
3093 if (*ffname == NUL)
3094 {
3095 if (eap->cmdidx == CMD_saveas)
3096 {
3097 EMSG(_(e_argreq));
3098 goto theend;
3099 }
3100 other = FALSE;
3101 }
3102 else
3103 {
3104 fname = ffname;
3105 free_fname = fix_fname(ffname);
3106 /*
3107 * When out-of-memory, keep unexpanded file name, because we MUST be
3108 * able to write the file in this situation.
3109 */
3110 if (free_fname != NULL)
3111 ffname = free_fname;
3112 other = otherfile(ffname);
3113 }
3114
3115 /*
3116 * If we have a new file, put its name in the list of alternate file names.
3117 */
3118 if (other)
3119 {
3120 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
3121 || eap->cmdidx == CMD_saveas)
3122 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
3123 else
3124 alt_buf = buflist_findname(ffname);
3125 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
3126 {
3127 /* Overwriting a file that is loaded in another buffer is not a
3128 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00003129 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 goto theend;
3131 }
3132 }
3133
3134 /*
3135 * Writing to the current file is not allowed in readonly mode
3136 * and a file name is required.
3137 * "nofile" and "nowrite" buffers cannot be written implicitly either.
3138 */
3139 if (!other && (
3140#ifdef FEAT_QUICKFIX
3141 bt_dontwrite_msg(curbuf) ||
3142#endif
3143 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
3144 goto theend;
3145
3146 if (!other)
3147 {
3148 ffname = curbuf->b_ffname;
3149 fname = curbuf->b_fname;
3150 /*
3151 * Not writing the whole file is only allowed with '!'.
3152 */
3153 if ( (eap->line1 != 1
3154 || eap->line2 != curbuf->b_ml.ml_line_count)
3155 && !eap->forceit
3156 && !eap->append
3157 && !p_wa)
3158 {
3159#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3160 if (p_confirm || cmdmod.confirm)
3161 {
3162 if (vim_dialog_yesno(VIM_QUESTION, NULL,
3163 (char_u *)_("Write partial file?"), 2) != VIM_YES)
3164 goto theend;
3165 eap->forceit = TRUE;
3166 }
3167 else
3168#endif
3169 {
3170 EMSG(_("E140: Use ! to write partial buffer"));
3171 goto theend;
3172 }
3173 }
3174 }
3175
3176 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
3177 {
3178 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
3179 {
3180#ifdef FEAT_AUTOCMD
3181 buf_T *was_curbuf = curbuf;
3182
3183 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003184 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185# ifdef FEAT_EVAL
3186 if (curbuf != was_curbuf || aborting())
3187# else
3188 if (curbuf != was_curbuf)
3189# endif
3190 {
3191 /* buffer changed, don't change name now */
3192 retval = FAIL;
3193 goto theend;
3194 }
3195#endif
3196 /* Exchange the file names for the current and the alternate
3197 * buffer. This makes it look like we are now editing the buffer
3198 * under the new name. Must be done before buf_write(), because
3199 * if there is no file name and 'cpo' contains 'F', it will set
3200 * the file name. */
3201 fname = alt_buf->b_fname;
3202 alt_buf->b_fname = curbuf->b_fname;
3203 curbuf->b_fname = fname;
3204 fname = alt_buf->b_ffname;
3205 alt_buf->b_ffname = curbuf->b_ffname;
3206 curbuf->b_ffname = fname;
3207 fname = alt_buf->b_sfname;
3208 alt_buf->b_sfname = curbuf->b_sfname;
3209 curbuf->b_sfname = fname;
3210 buf_name_changed(curbuf);
3211#ifdef FEAT_AUTOCMD
3212 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003213 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 if (!alt_buf->b_p_bl)
3215 {
3216 alt_buf->b_p_bl = TRUE;
3217 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
3218 }
3219# ifdef FEAT_EVAL
3220 if (curbuf != was_curbuf || aborting())
3221# else
3222 if (curbuf != was_curbuf)
3223# endif
3224 {
3225 /* buffer changed, don't write the file */
3226 retval = FAIL;
3227 goto theend;
3228 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003229
3230 /* If 'filetype' was empty try detecting it now. */
3231 if (*curbuf->b_p_ft == NUL)
3232 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003233 if (au_has_group((char_u *)"filetypedetect"))
3234 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
Bram Moolenaar1610d052016-06-09 22:53:01 +02003235 TRUE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00003236 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003237 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01003238
3239 /* Autocommands may have changed buffer names, esp. when
3240 * 'autochdir' is set. */
3241 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242#endif
3243 }
3244
Bram Moolenaar5c719942016-07-09 23:40:45 +02003245 name_was_missing = curbuf->b_ffname == NULL;
3246
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
3248 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003249
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003250 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003251 if (eap->cmdidx == CMD_saveas)
3252 {
3253 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00003254 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003255 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003256 redraw_tabline = TRUE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003257 }
Bram Moolenaar5c719942016-07-09 23:40:45 +02003258 }
3259
3260 /* Change directories when the 'acd' option is set and the file name
3261 * got changed or set. */
3262 if (eap->cmdidx == CMD_saveas || name_was_missing)
3263 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003264 DO_AUTOCHDIR
3265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 }
3267
3268theend:
3269#ifdef FEAT_BROWSE
3270 vim_free(browse_file);
3271#endif
3272 vim_free(free_fname);
3273 return retval;
3274}
3275
3276/*
3277 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
3278 * BF_NEW or BF_READERR, check for overwriting current file.
3279 * May set eap->forceit if a dialog says it's OK to overwrite.
3280 * Return OK if it's OK, FAIL if it is not.
3281 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02003282 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003283check_overwrite(
3284 exarg_T *eap,
3285 buf_T *buf,
3286 char_u *fname, /* file name to be used (can differ from
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 buf->ffname) */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003288 char_u *ffname, /* full path version of fname */
3289 int other) /* writing under other name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290{
3291 /*
3292 * write to other file or b_flags set or not writing the whole file:
3293 * overwriting only allowed with '!'
3294 */
3295 if ( (other
3296 || (buf->b_flags & BF_NOTEDITED)
3297 || ((buf->b_flags & BF_NEW)
3298 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
3299 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00003301#ifdef FEAT_QUICKFIX
3302 && !bt_nofile(buf)
3303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 && vim_fexists(ffname))
3305 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003306 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003308#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00003309 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003310 if (mch_isdir(ffname))
3311 {
3312 EMSG2(_(e_isadir2), ffname);
3313 return FAIL;
3314 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315#endif
3316#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003317 if (p_confirm || cmdmod.confirm)
3318 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003319 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003321 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
3322 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
3323 return FAIL;
3324 eap->forceit = TRUE;
3325 }
3326 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003328 {
3329 EMSG(_(e_exists));
3330 return FAIL;
3331 }
3332 }
3333
3334 /* For ":w! filename" check that no swap file exists for "filename". */
3335 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003337 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003338 char_u *p;
3339 int r;
3340 char_u *swapname;
3341
3342 /* We only try the first entry in 'directory', without checking if
3343 * it's writable. If the "." directory is not writable the write
3344 * will probably fail anyway.
3345 * Use 'shortname' of the current buffer, since there is no buffer
3346 * for the written file. */
3347 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02003348 {
3349 dir = alloc(5);
3350 if (dir == NULL)
3351 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003352 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003353 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003354 else
3355 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003356 dir = alloc(MAXPATHL);
3357 if (dir == NULL)
3358 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003359 p = p_dir;
3360 copy_option_part(&p, dir, MAXPATHL, ",");
3361 }
3362 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003363 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003364 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003365 if (r)
3366 {
3367#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3368 if (p_confirm || cmdmod.confirm)
3369 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003370 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003371
3372 dialog_msg(buff,
3373 _("Swap file \"%s\" exists, overwrite anyway?"),
3374 swapname);
3375 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
3376 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003377 {
3378 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003379 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003380 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003381 eap->forceit = TRUE;
3382 }
3383 else
3384#endif
3385 {
3386 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
3387 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003388 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003389 return FAIL;
3390 }
3391 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003392 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393 }
3394 }
3395 return OK;
3396}
3397
3398/*
3399 * Handle ":wnext", ":wNext" and ":wprevious" commands.
3400 */
3401 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003402ex_wnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403{
3404 int i;
3405
3406 if (eap->cmd[1] == 'n')
3407 i = curwin->w_arg_idx + (int)eap->line2;
3408 else
3409 i = curwin->w_arg_idx - (int)eap->line2;
3410 eap->line1 = 1;
3411 eap->line2 = curbuf->b_ml.ml_line_count;
3412 if (do_write(eap) != FAIL)
3413 do_argfile(eap, i);
3414}
3415
3416/*
3417 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
3418 */
3419 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003420do_wqall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421{
3422 buf_T *buf;
3423 int error = 0;
3424 int save_forceit = eap->forceit;
3425
3426 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
3427 exiting = TRUE;
3428
Bram Moolenaar29323592016-07-24 22:04:11 +02003429 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 {
Bram Moolenaar7a760922018-02-19 23:10:02 +01003431#ifdef FEAT_TERMINAL
3432 if (exiting && term_job_running(buf->b_term))
3433 {
3434 no_write_message_nobang(buf);
3435 ++error;
3436 }
3437 else
3438#endif
Bram Moolenaar059db5c2017-10-15 22:42:23 +02003439 if (bufIsChanged(buf) && !bt_dontwrite(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 {
3441 /*
3442 * Check if there is a reason the buffer cannot be written:
3443 * 1. if the 'write' option is set
3444 * 2. if there is no file name (even after browsing)
3445 * 3. if the 'readonly' is set (even after a dialog)
3446 * 4. if overwriting is allowed (even after a dialog)
3447 */
3448 if (not_writing())
3449 {
3450 ++error;
3451 break;
3452 }
3453#ifdef FEAT_BROWSE
3454 /* ":browse wall": ask for file name if there isn't one */
3455 if (buf->b_ffname == NULL && cmdmod.browse)
3456 browse_save_fname(buf);
3457#endif
3458 if (buf->b_ffname == NULL)
3459 {
3460 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
3461 ++error;
3462 }
3463 else if (check_readonly(&eap->forceit, buf)
3464 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3465 FALSE) == FAIL)
3466 {
3467 ++error;
3468 }
3469 else
3470 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003471#ifdef FEAT_AUTOCMD
3472 bufref_T bufref;
3473
3474 set_bufref(&bufref, buf);
3475#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 if (buf_write_all(buf, eap->forceit) == FAIL)
3477 ++error;
3478#ifdef FEAT_AUTOCMD
3479 /* an autocommand may have deleted the buffer */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003480 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 buf = firstbuf;
3482#endif
3483 }
3484 eap->forceit = save_forceit; /* check_overwrite() may set it */
3485 }
3486 }
3487 if (exiting)
3488 {
3489 if (!error)
3490 getout(0); /* exit Vim */
3491 not_exiting();
3492 }
3493}
3494
3495/*
3496 * Check the 'write' option.
3497 * Return TRUE and give a message when it's not st.
3498 */
3499 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003500not_writing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501{
3502 if (p_write)
3503 return FALSE;
3504 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
3505 return TRUE;
3506}
3507
3508/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003509 * Check if a buffer is read-only (either 'readonly' option is set or file is
3510 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3511 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 */
3513 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003514check_readonly(int *forceit, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003516 stat_T st;
Bram Moolenaar5386a122007-06-28 20:02:32 +00003517
3518 /* Handle a file being readonly when the 'readonly' option is set or when
3519 * the file exists and permissions are read-only.
3520 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3521 * important for device checks but not here. */
3522 if (!*forceit && (buf->b_p_ro
3523 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3524 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 {
3526#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3527 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3528 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003529 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530
Bram Moolenaar5386a122007-06-28 20:02:32 +00003531 if (buf->b_p_ro)
3532 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3533 buf->b_fname);
3534 else
3535 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 +00003536 buf->b_fname);
3537
3538 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3539 {
3540 /* Set forceit, to force the writing of a readonly file */
3541 *forceit = TRUE;
3542 return FALSE;
3543 }
3544 else
3545 return TRUE;
3546 }
3547 else
3548#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003549 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003551 else
3552 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3553 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 return TRUE;
3555 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003556
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 return FALSE;
3558}
3559
3560/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003561 * Try to abandon current file and edit a new or existing file.
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003562 * "fnum" is the number of the file, if zero use ffname/sfname.
3563 * "lnum" is the line number for the cursor in the new file (if non-zero).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 *
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003565 * Return:
3566 * GETFILE_ERROR for "normal" error,
3567 * GETFILE_NOT_WRITTEN for "not written" error,
3568 * GETFILE_SAME_FILE for success
3569 * GETFILE_OPEN_OTHER for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 */
3571 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003572getfile(
3573 int fnum,
3574 char_u *ffname,
3575 char_u *sfname,
3576 int setpm,
3577 linenr_T lnum,
3578 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579{
3580 int other;
3581 int retval;
3582 char_u *free_me = NULL;
3583
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003584 if (text_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003585 return GETFILE_ERROR;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003586#ifdef FEAT_AUTOCMD
3587 if (curbuf_locked())
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003588 return GETFILE_ERROR;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003589#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590
3591 if (fnum == 0)
3592 {
3593 /* make ffname full path, set sfname */
3594 fname_expand(curbuf, &ffname, &sfname);
3595 other = otherfile(ffname);
3596 free_me = ffname; /* has been allocated, free() later */
3597 }
3598 else
3599 other = (fnum != curbuf->b_fnum);
3600
3601 if (other)
3602 ++no_wait_return; /* don't wait for autowrite message */
Bram Moolenaareb44a682017-08-03 22:44:55 +02003603 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3605 {
3606#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3607 if (p_confirm && p_write)
3608 dialog_changed(curbuf, FALSE);
3609 if (curbufIsChanged())
3610#endif
3611 {
3612 if (other)
3613 --no_wait_return;
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02003614 no_write_message();
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003615 retval = GETFILE_NOT_WRITTEN; /* file has been changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 goto theend;
3617 }
3618 }
3619 if (other)
3620 --no_wait_return;
3621 if (setpm)
3622 setpcmark();
3623 if (!other)
3624 {
3625 if (lnum != 0)
3626 curwin->w_cursor.lnum = lnum;
3627 check_cursor_lnum();
3628 beginline(BL_SOL | BL_FIX);
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003629 retval = GETFILE_SAME_FILE; /* it's in the same file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630 }
3631 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaareb44a682017-08-03 22:44:55 +02003632 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003633 curwin) == OK)
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003634 retval = GETFILE_OPEN_OTHER; /* opened another file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 else
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003636 retval = GETFILE_ERROR; /* error encountered */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637
3638theend:
3639 vim_free(free_me);
3640 return retval;
3641}
3642
3643/*
3644 * start editing a new file
3645 *
3646 * fnum: file number; if zero use ffname/sfname
3647 * ffname: the file name
3648 * - full path if sfname used,
3649 * - any file name if sfname is NULL
3650 * - empty string to re-edit with the same file name (but may be
3651 * in a different directory)
3652 * - NULL to start an empty buffer
3653 * sfname: the short file name (or NULL)
3654 * eap: contains the command to be executed after loading the file and
3655 * forced 'ff' and 'fenc'
3656 * newlnum: if > 0: put cursor on this line number (if possible)
3657 * if ECMD_LASTL: use last position in loaded file
3658 * if ECMD_LAST: use last position in all files
3659 * if ECMD_ONE: use first line
3660 * flags:
3661 * ECMD_HIDE: if TRUE don't free the current buffer
3662 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3663 * ECMD_OLDBUF: use existing buffer if it exists
3664 * ECMD_FORCEIT: ! used for Ex command
3665 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003666 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003667 * window, NULL when splitting the window first. When not NULL info
3668 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 *
3670 * return FAIL for failure, OK otherwise
3671 */
3672 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003673do_ecmd(
3674 int fnum,
3675 char_u *ffname,
3676 char_u *sfname,
3677 exarg_T *eap, /* can be NULL! */
3678 linenr_T newlnum,
3679 int flags,
3680 win_T *oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681{
3682 int other_file; /* TRUE if editing another file */
3683 int oldbuf; /* TRUE if using existing buffer */
3684#ifdef FEAT_AUTOCMD
3685 int auto_buf = FALSE; /* TRUE if autocommands brought us
3686 into the buffer unexpectedly */
3687 char_u *new_name = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003688 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689#endif
3690 buf_T *buf;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003691 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003693 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694#endif
3695 char_u *free_fname = NULL;
3696#ifdef FEAT_BROWSE
3697 char_u *browse_file = NULL;
3698#endif
3699 int retval = FAIL;
3700 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003701 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 linenr_T topline = 0;
3703 int newcol = -1;
3704 int solcol = -1;
3705 pos_T *pos;
3706#ifdef FEAT_SUN_WORKSHOP
3707 char_u *cp;
3708#endif
3709 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003710#ifdef FEAT_SPELL
3711 int did_get_winopts = FALSE;
3712#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003713 int readfile_flags = 0;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003714 int did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715
3716 if (eap != NULL)
3717 command = eap->do_ecmd_cmd;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003718#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3719 set_bufref(&old_curbuf, curbuf);
3720#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721
3722 if (fnum != 0)
3723 {
3724 if (fnum == curbuf->b_fnum) /* file is already being edited */
3725 return OK; /* nothing to do */
3726 other_file = TRUE;
3727 }
3728 else
3729 {
3730#ifdef FEAT_BROWSE
3731 if (cmdmod.browse)
3732 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003733# ifdef FEAT_AUTOCMD
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003734 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003735# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003736 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003737# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003738 au_has_group((char_u *)"FileExplorer"))
3739 {
3740 /* No browsing supported but we do have the file explorer:
3741 * Edit the directory. */
3742 if (ffname == NULL || !mch_isdir(ffname))
3743 ffname = (char_u *)".";
3744 }
3745 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003746# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003747 {
3748 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003750 if (browse_file == NULL)
3751 goto theend;
3752 ffname = browse_file;
3753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 }
3755#endif
3756 /* if no short name given, use ffname for short name */
3757 if (sfname == NULL)
3758 sfname = ffname;
3759#ifdef USE_FNAME_CASE
3760# ifdef USE_LONG_FNAME
3761 if (USE_LONG_FNAME)
3762# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003763 if (sfname != NULL)
3764 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765#endif
3766
3767#ifdef FEAT_LISTCMDS
3768 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3769 goto theend;
3770#endif
3771
3772 if (ffname == NULL)
3773 other_file = TRUE;
3774 /* there is no file name */
3775 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3776 other_file = FALSE;
3777 else
3778 {
3779 if (*ffname == NUL) /* re-edit with same file name */
3780 {
3781 ffname = curbuf->b_ffname;
3782 sfname = curbuf->b_fname;
3783 }
3784 free_fname = fix_fname(ffname); /* may expand to full path name */
3785 if (free_fname != NULL)
3786 ffname = free_fname;
3787 other_file = otherfile(ffname);
3788#ifdef FEAT_SUN_WORKSHOP
3789 if (usingSunWorkShop && p_acd
3790 && (cp = vim_strrchr(sfname, '/')) != NULL)
3791 sfname = ++cp;
3792#endif
3793 }
3794 }
3795
3796 /*
3797 * if the file was changed we may not be allowed to abandon it
3798 * - if we are going to re-edit the same file
3799 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3800 */
3801 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3802 || (curbuf->b_nwindows == 1
3803 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003804 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3805 | (other_file ? 0 : CCGD_MULTWIN)
3806 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3807 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 {
3809 if (fnum == 0 && other_file && ffname != NULL)
3810 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3811 goto theend;
3812 }
3813
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 /*
3815 * End Visual mode before switching to another buffer, so the text can be
3816 * copied into the GUI selection buffer.
3817 */
3818 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003820#ifdef FEAT_AUTOCMD
3821 if ((command != NULL || newlnum > (linenr_T)0)
3822 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3823 {
3824 int len;
3825 char_u *p;
3826
3827 /* Set v:swapcommand for the SwapExists autocommands. */
3828 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003829 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003830 else
3831 len = 30;
3832 p = alloc((unsigned)len);
3833 if (p != NULL)
3834 {
3835 if (command != NULL)
3836 vim_snprintf((char *)p, len, ":%s\r", command);
3837 else
3838 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3839 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3840 did_set_swapcommand = TRUE;
3841 vim_free(p);
3842 }
3843 }
3844#endif
3845
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846 /*
3847 * If we are starting to edit another file, open a (new) buffer.
3848 * Otherwise we re-use the current buffer.
3849 */
3850 if (other_file)
3851 {
3852#ifdef FEAT_LISTCMDS
3853 if (!(flags & ECMD_ADDBUF))
3854#endif
3855 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003856 if (!cmdmod.keepalt)
3857 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003858 if (oldwin != NULL)
3859 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 }
3861
3862 if (fnum)
3863 buf = buflist_findnr(fnum);
3864 else
3865 {
3866#ifdef FEAT_LISTCMDS
3867 if (flags & ECMD_ADDBUF)
3868 {
3869 linenr_T tlnum = 1L;
3870
3871 if (command != NULL)
3872 {
3873 tlnum = atol((char *)command);
3874 if (tlnum <= 0)
3875 tlnum = 1L;
3876 }
3877 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3878 goto theend;
3879 }
3880#endif
3881 buf = buflist_new(ffname, sfname, 0L,
3882 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003883#ifdef FEAT_AUTOCMD
3884 /* autocommands may change curwin and curbuf */
3885 if (oldwin != NULL)
3886 oldwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003887 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003888#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 }
3890 if (buf == NULL)
3891 goto theend;
3892 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3893 {
3894 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 }
3896 else /* existing memfile */
3897 {
3898 oldbuf = TRUE;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003899 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 (void)buf_check_timestamp(buf, FALSE);
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003901 /* Check if autocommands made the buffer invalid or changed the
3902 * current buffer. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003903 if (!bufref_valid(&bufref)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904#ifdef FEAT_AUTOCMD
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003905 || curbuf != old_curbuf.br_buf
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906#endif
3907 )
3908 goto theend;
3909#ifdef FEAT_EVAL
3910 if (aborting()) /* autocmds may abort script processing */
3911 goto theend;
3912#endif
3913 }
3914
3915 /* May jump to last used line number for a loaded buffer or when asked
3916 * for explicitly */
3917 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3918 {
3919 pos = buflist_findfpos(buf);
3920 newlnum = pos->lnum;
3921 solcol = pos->col;
3922 }
3923
3924 /*
3925 * Make the (new) buffer the one used by the current window.
3926 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3927 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003928 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 */
3930 if (buf != curbuf)
3931 {
3932#ifdef FEAT_AUTOCMD
3933 /*
3934 * Be careful: The autocommands may delete any buffer and change
3935 * the current buffer.
3936 * - If the buffer we are going to edit is deleted, give up.
3937 * - If the current buffer is deleted, prefer to load the new
3938 * buffer when loading a buffer is required. This avoids
3939 * loading another buffer which then must be closed again.
3940 * - If we ended up in the new buffer already, need to skip a few
3941 * things, set auto_buf.
3942 */
3943 if (buf->b_fname != NULL)
3944 new_name = vim_strsave(buf->b_fname);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003945 set_bufref(&au_new_curbuf, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003947 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003949 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 delbuf_msg(new_name); /* frees new_name */
3951 goto theend;
3952 }
3953# ifdef FEAT_EVAL
3954 if (aborting()) /* autocmds may abort script processing */
3955 {
3956 vim_free(new_name);
3957 goto theend;
3958 }
3959# endif
3960 if (buf == curbuf) /* already in new buffer */
3961 auto_buf = TRUE;
3962 else
3963 {
Bram Moolenaar5a497892016-09-03 16:29:04 +02003964 win_T *the_curwin = curwin;
3965
3966 /* Set the w_closing flag to avoid that autocommands close the
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003967 * window. And set b_locked for the same reason. */
Bram Moolenaar5a497892016-09-03 16:29:04 +02003968 the_curwin->w_closing = TRUE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003969 ++buf->b_locked;
Bram Moolenaar5a497892016-09-03 16:29:04 +02003970
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003971 if (curbuf == old_curbuf.br_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972#endif
3973 buf_copy_options(buf, BCO_ENTER);
3974
Bram Moolenaar5a497892016-09-03 16:29:04 +02003975 /* Close the link to the current buffer. This will set
Bram Moolenaaraeac9002016-09-06 22:15:08 +02003976 * oldwin->w_buffer to NULL. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003977 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003978 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003979 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980
3981#ifdef FEAT_AUTOCMD
Bram Moolenaar5a497892016-09-03 16:29:04 +02003982 the_curwin->w_closing = FALSE;
Bram Moolenaare0ab94e2016-09-04 19:50:54 +02003983 --buf->b_locked;
Bram Moolenaarfc573802011-12-30 15:01:59 +01003984
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985# ifdef FEAT_EVAL
Bram Moolenaar5a497892016-09-03 16:29:04 +02003986 /* autocmds may abort script processing */
3987 if (aborting() && curwin->w_buffer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 {
3989 vim_free(new_name);
3990 goto theend;
3991 }
3992# endif
3993 /* Be careful again, like above. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003994 if (!bufref_valid(&au_new_curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 {
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02003996 /* new buffer has been deleted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 delbuf_msg(new_name); /* frees new_name */
3998 goto theend;
3999 }
4000 if (buf == curbuf) /* already in new buffer */
4001 auto_buf = TRUE;
4002 else
4003#endif
4004 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02004005#ifdef FEAT_SYN_HL
4006 /*
4007 * <VN> We could instead free the synblock
4008 * and re-attach to buffer, perhaps.
4009 */
Bram Moolenaarf1d13472017-07-11 18:28:46 +02004010 if (curwin->w_buffer == NULL
4011 || curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02004012 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004013#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014 curwin->w_buffer = buf;
4015 curbuf = buf;
4016 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004017
4018 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
4019 if (!oldbuf && eap != NULL)
4020 {
4021 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02004022#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004023 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02004024#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02004025 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 }
4027
4028 /* May get the window options from the last time this buffer
4029 * was in this window (or another window). If not used
4030 * before, reset the local window options to the global
4031 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00004032 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004033#ifdef FEAT_SPELL
4034 did_get_winopts = TRUE;
4035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036
4037#ifdef FEAT_AUTOCMD
4038 }
4039 vim_free(new_name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004040 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004041 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042#endif
4043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044
4045 curwin->w_pcmark.lnum = 1;
4046 curwin->w_pcmark.col = 0;
4047 }
4048 else /* !other_file */
4049 {
4050 if (
4051#ifdef FEAT_LISTCMDS
4052 (flags & ECMD_ADDBUF) ||
4053#endif
4054 check_fname() == FAIL)
4055 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01004056
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 oldbuf = (flags & ECMD_OLDBUF);
4058 }
4059
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004060 /* Don't redraw until the cursor is in the right line, otherwise
4061 * autocommands may cause ml_get errors. */
4062 ++RedrawingDisabled;
4063 did_inc_redrawing_disabled = TRUE;
4064
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004065#ifdef FEAT_AUTOCMD
4066 buf = curbuf;
4067#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 if ((flags & ECMD_SET_HELP) || keep_help_flag)
4069 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004070 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 }
4072 else
4073 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 /* Don't make a buffer listed if it's a help buffer. Useful when
4075 * using CTRL-O to go back to a help file. */
4076 if (!curbuf->b_help)
4077 set_buflisted(TRUE);
4078 }
4079
4080#ifdef FEAT_AUTOCMD
4081 /* If autocommands change buffers under our fingers, forget about
4082 * editing the file. */
4083 if (buf != curbuf)
4084 goto theend;
4085# ifdef FEAT_EVAL
4086 if (aborting()) /* autocmds may abort script processing */
4087 goto theend;
4088# endif
4089
4090 /* Since we are starting to edit a file, consider the filetype to be
4091 * unset. Helps for when an autocommand changes files and expects syntax
4092 * highlighting to work in the other file. */
4093 did_filetype = FALSE;
4094#endif
4095
4096/*
4097 * other_file oldbuf
4098 * FALSE FALSE re-edit same file, buffer is re-used
4099 * FALSE TRUE re-edit same file, nothing changes
4100 * TRUE FALSE start editing new file, new buffer
4101 * TRUE TRUE start editing in existing buffer (nothing to do)
4102 */
4103 if (!other_file && !oldbuf) /* re-use the buffer */
4104 {
4105 set_last_cursor(curwin); /* may set b_last_cursor */
4106 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
4107 {
4108 newlnum = curwin->w_cursor.lnum;
4109 solcol = curwin->w_cursor.col;
4110 }
4111#ifdef FEAT_AUTOCMD
4112 buf = curbuf;
4113 if (buf->b_fname != NULL)
4114 new_name = vim_strsave(buf->b_fname);
4115 else
4116 new_name = NULL;
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004117 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004119 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
4120 {
4121 /* Save all the text, so that the reload can be undone.
4122 * Sync first so that this is a separate undo-able action. */
4123 u_sync(FALSE);
4124 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
4125 == FAIL)
Bram Moolenaar1e225822016-07-30 21:48:59 +02004126 {
Bram Moolenaarfc1f2012016-07-30 23:18:47 +02004127#ifdef FEAT_AUTOCMD
Bram Moolenaar1e225822016-07-30 21:48:59 +02004128 vim_free(new_name);
Bram Moolenaarfc1f2012016-07-30 23:18:47 +02004129#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004130 goto theend;
Bram Moolenaar1e225822016-07-30 21:48:59 +02004131 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004132 u_unchanged(curbuf);
4133 buf_freeall(curbuf, BFA_KEEP_UNDO);
4134
4135 /* tell readfile() not to clear or reload undo info */
4136 readfile_flags = READ_KEEP_UNDO;
4137 }
4138 else
4139 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140#ifdef FEAT_AUTOCMD
4141 /* If autocommands deleted the buffer we were going to re-edit, give
4142 * up and jump to the end. */
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004143 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 {
4145 delbuf_msg(new_name); /* frees new_name */
4146 goto theend;
4147 }
4148 vim_free(new_name);
4149
4150 /* If autocommands change buffers under our fingers, forget about
4151 * re-editing the file. Should do the buf_clear_file(), but perhaps
4152 * the autocommands changed the buffer... */
4153 if (buf != curbuf)
4154 goto theend;
4155# ifdef FEAT_EVAL
4156 if (aborting()) /* autocmds may abort script processing */
4157 goto theend;
4158# endif
4159#endif
4160 buf_clear_file(curbuf);
4161 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
4162 curbuf->b_op_end.lnum = 0;
4163 }
4164
4165/*
4166 * If we get here we are sure to start editing
4167 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 /* Assume success now */
4169 retval = OK;
4170
4171 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 * Check if we are editing the w_arg_idx file in the argument list.
4173 */
4174 check_arg_idx(curwin);
4175
4176#ifdef FEAT_AUTOCMD
4177 if (!auto_buf)
4178#endif
4179 {
4180 /*
4181 * Set cursor and init window before reading the file and executing
4182 * autocommands. This allows for the autocommands to position the
4183 * cursor.
4184 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004185 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186
4187#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004188 /* It's possible that all lines in the buffer changed. Need to update
4189 * automatic folding for all windows where it's used. */
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004190 {
4191 win_T *win;
4192 tabpage_T *tp;
4193
4194 FOR_ALL_TAB_WINDOWS(tp, win)
4195 if (win->w_buffer == curbuf)
4196 foldUpdateAll(win);
4197 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198#endif
4199
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004200 /* Change directories when the 'acd' option is set. */
4201 DO_AUTOCHDIR
4202
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 /*
4204 * Careful: open_buffer() and apply_autocmds() may change the current
4205 * buffer and window.
4206 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01004207 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 topline = curwin->w_topline;
4209 if (!oldbuf) /* need to read the file */
4210 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004211#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212 swap_exists_action = SEA_DIALOG;
4213#endif
4214 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
4215
4216 /*
4217 * Open the buffer and read the file.
4218 */
4219#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004220 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 retval = FAIL;
4222#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004223 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224#endif
4225
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004226#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 if (swap_exists_action == SEA_QUIT)
4228 retval = FAIL;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004229 handle_swap_exists(&old_curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230#endif
4231 }
4232#ifdef FEAT_AUTOCMD
4233 else
4234 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004235 /* Read the modelines, but only to set window-local options. Any
4236 * buffer-local options have already been set and may have been
4237 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00004238 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004239
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
4241 &retval);
4242 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
4243 &retval);
4244 }
4245 check_arg_idx(curwin);
4246#endif
4247
Bram Moolenaareab316b2015-03-24 11:46:30 +01004248 /* If autocommands change the cursor position or topline, we should
4249 * keep it. Also when it moves within a line. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004250 if (!EQUAL_POS(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 {
4252 newlnum = curwin->w_cursor.lnum;
4253 newcol = curwin->w_cursor.col;
4254 }
4255 if (curwin->w_topline == topline)
4256 topline = 0;
4257
4258 /* Even when cursor didn't move we need to recompute topline. */
4259 changed_line_abv_curs();
4260
4261#ifdef FEAT_TITLE
4262 maketitle();
4263#endif
4264 }
4265
4266#ifdef FEAT_DIFF
4267 /* Tell the diff stuff that this buffer is new and/or needs updating.
4268 * Also needed when re-editing the same buffer, because unloading will
4269 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004270 if (curwin->w_p_diff)
4271 {
4272 diff_buf_add(curbuf);
4273 diff_invalidate(curbuf);
4274 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275#endif
4276
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004277#ifdef FEAT_SPELL
4278 /* If the window options were changed may need to set the spell language.
4279 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02004280 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
4281 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004282#endif
4283
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 if (command == NULL)
4285 {
4286 if (newcol >= 0) /* position set by autocommands */
4287 {
4288 curwin->w_cursor.lnum = newlnum;
4289 curwin->w_cursor.col = newcol;
4290 check_cursor();
4291 }
4292 else if (newlnum > 0) /* line number from caller or old position */
4293 {
4294 curwin->w_cursor.lnum = newlnum;
4295 check_cursor_lnum();
4296 if (solcol >= 0 && !p_sol)
4297 {
4298 /* 'sol' is off: Use last known column. */
4299 curwin->w_cursor.col = solcol;
4300 check_cursor_col();
4301#ifdef FEAT_VIRTUALEDIT
4302 curwin->w_cursor.coladd = 0;
4303#endif
4304 curwin->w_set_curswant = TRUE;
4305 }
4306 else
4307 beginline(BL_SOL | BL_FIX);
4308 }
4309 else /* no line number, go to last line in Ex mode */
4310 {
4311 if (exmode_active)
4312 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4313 beginline(BL_WHITE | BL_FIX);
4314 }
4315 }
4316
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 /* Check if cursors in other windows on the same buffer are still valid */
4318 check_lnums(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319
4320 /*
4321 * Did not read the file, need to show some info about the file.
4322 * Do this after setting the cursor.
4323 */
4324 if (oldbuf
4325#ifdef FEAT_AUTOCMD
4326 && !auto_buf
4327#endif
4328 )
4329 {
4330 int msg_scroll_save = msg_scroll;
4331
4332 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
4333 * message. */
4334 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
4335 msg_scroll = FALSE;
4336 if (!msg_scroll) /* wait a bit when overwriting an error msg */
4337 check_for_delay(FALSE);
4338 msg_start();
4339 msg_scroll = msg_scroll_save;
4340 msg_scrolled_ign = TRUE;
4341
Bram Moolenaar426dd022016-03-15 15:09:29 +01004342 if (!shortmess(SHM_FILEINFO))
4343 fileinfo(FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344
4345 msg_scrolled_ign = FALSE;
4346 }
4347
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02004348#ifdef FEAT_VIMINFO
4349 curbuf->b_last_used = vim_time();
4350#endif
4351
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 if (command != NULL)
4353 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
4354
4355#ifdef FEAT_KEYMAP
4356 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004357 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358#endif
4359
4360 --RedrawingDisabled;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004361 did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 if (!skip_redraw)
4363 {
4364 n = p_so;
4365 if (topline == 0 && command == NULL)
4366 p_so = 999; /* force cursor halfway the window */
4367 update_topline();
4368#ifdef FEAT_SCROLLBIND
4369 curwin->w_scbind_pos = curwin->w_topline;
4370#endif
4371 p_so = n;
4372 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
4373 }
4374
4375 if (p_im)
4376 need_start_insertmode = TRUE;
4377
Bram Moolenaar15833232018-02-03 18:33:17 +01004378#ifdef FEAT_AUTOCHDIR
4379 /* Change directories when the 'acd' option is set and we aren't already in
4380 * that directory (should already be done above). Expect getcwd() to be
4381 * faster than calling shorten_fnames() unnecessarily. */
4382 if (p_acd && curbuf->b_ffname != NULL)
4383 {
4384 char_u curdir[MAXPATHL];
4385 char_u filedir[MAXPATHL];
4386
4387 vim_strncpy(filedir, curbuf->b_ffname, MAXPATHL - 1);
4388 *gettail_sep(filedir) = NUL;
4389 if (mch_dirname(curdir, MAXPATHL) != FAIL
4390 && vim_fnamecmp(curdir, filedir) != 0)
4391 do_autochdir();
4392 }
4393#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00004395#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02004396 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 {
4398# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02004399 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
4401# endif
4402# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004403 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00004404 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405# endif
4406 }
4407#endif
4408
4409theend:
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004410 if (did_inc_redrawing_disabled)
4411 --RedrawingDisabled;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004412#ifdef FEAT_AUTOCMD
4413 if (did_set_swapcommand)
4414 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
4415#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416#ifdef FEAT_BROWSE
4417 vim_free(browse_file);
4418#endif
4419 vim_free(free_fname);
4420 return retval;
4421}
4422
4423#ifdef FEAT_AUTOCMD
4424 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004425delbuf_msg(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426{
4427 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
4428 name == NULL ? (char_u *)"" : name);
4429 vim_free(name);
Bram Moolenaar19ff9bf2016-07-10 19:03:57 +02004430 au_new_curbuf.br_buf = NULL;
Bram Moolenaarac77aec2016-07-26 22:02:54 +02004431 au_new_curbuf.br_buf_free_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432}
4433#endif
4434
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004435static int append_indent = 0; /* autoindent for first line */
4436
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437/*
4438 * ":insert" and ":append", also used by ":change"
4439 */
4440 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004441ex_append(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442{
4443 char_u *theline;
4444 int did_undo = FALSE;
4445 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004446 int indent = 0;
4447 char_u *p;
4448 int vcol;
4449 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004451 /* the ! flag toggles autoindent */
4452 if (eap->forceit)
4453 curbuf->b_p_ai = !curbuf->b_p_ai;
4454
4455 /* First autoindent comes from the line we start on */
4456 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
4457 append_indent = get_indent_lnum(lnum);
4458
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 if (eap->cmdidx != CMD_append)
4460 --lnum;
4461
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004462 /* when the buffer is empty need to delete the dummy line */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004463 if (empty && lnum == 1)
4464 lnum = 0;
4465
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 State = INSERT; /* behave like in Insert mode */
4467 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
4468 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004469
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004470 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 {
4472 msg_scroll = TRUE;
4473 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004474 if (curbuf->b_p_ai)
4475 {
4476 if (append_indent >= 0)
4477 {
4478 indent = append_indent;
4479 append_indent = -1;
4480 }
4481 else if (lnum > 0)
4482 indent = get_indent_lnum(lnum);
4483 }
4484 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004486 {
4487 /* No getline() function, use the lines that follow. This ends
4488 * when there is no more. */
4489 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
4490 break;
4491 p = vim_strchr(eap->nextcmd, NL);
4492 if (p == NULL)
4493 p = eap->nextcmd + STRLEN(eap->nextcmd);
4494 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4495 if (*p != NUL)
4496 ++p;
4497 eap->nextcmd = p;
4498 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004500 {
4501 int save_State = State;
4502
4503 /* Set State to avoid the cursor shape to be set to INSERT mode
4504 * when getline() returns. */
4505 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 theline = eap->getline(
4507#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004508 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004510 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004511 State = save_State;
4512 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004514 if (theline == NULL)
4515 break;
4516
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004517 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4518 if (ex_keep_indent)
4519 append_indent = indent;
4520
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004521 /* Look for the "." after automatic indent. */
4522 vcol = 0;
4523 for (p = theline; indent > vcol; ++p)
4524 {
4525 if (*p == ' ')
4526 ++vcol;
4527 else if (*p == TAB)
4528 vcol += 8 - vcol % 8;
4529 else
4530 break;
4531 }
4532 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004533 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4534 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 {
4536 vim_free(theline);
4537 break;
4538 }
4539
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004540 /* don't use autoindent if nothing was typed. */
4541 if (p[0] == NUL)
4542 theline[0] = NUL;
4543
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 did_undo = TRUE;
4545 ml_append(lnum, theline, (colnr_T)0, FALSE);
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004546 appended_lines_mark(lnum + (empty ? 1 : 0), 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547
4548 vim_free(theline);
4549 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004550
4551 if (empty)
4552 {
4553 ml_delete(2L, FALSE);
4554 empty = FALSE;
4555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 }
4557 State = NORMAL;
4558
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004559 if (eap->forceit)
4560 curbuf->b_p_ai = !curbuf->b_p_ai;
4561
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004563 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 * "end" is set to lnum when something has been appended, otherwise
4565 * it is the same than "start" -- Acevedo */
4566 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4567 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4568 if (eap->cmdidx != CMD_append)
4569 --curbuf->b_op_start.lnum;
4570 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4571 ? lnum : curbuf->b_op_start.lnum;
4572 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4573 curwin->w_cursor.lnum = lnum;
4574 check_cursor_lnum();
4575 beginline(BL_SOL | BL_FIX);
4576
4577 need_wait_return = FALSE; /* don't use wait_return() now */
4578 ex_no_reprint = TRUE;
4579}
4580
4581/*
4582 * ":change"
4583 */
4584 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004585ex_change(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586{
4587 linenr_T lnum;
4588
4589 if (eap->line2 >= eap->line1
4590 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4591 return;
4592
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004593 /* the ! flag toggles autoindent */
4594 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4595 append_indent = get_indent_lnum(eap->line1);
4596
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4598 {
4599 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4600 break;
4601 ml_delete(eap->line1, FALSE);
4602 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004603
4604 /* make sure the cursor is not beyond the end of the file now */
4605 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4607
4608 /* ":append" on the line above the deleted lines. */
4609 eap->line2 = eap->line1;
4610 ex_append(eap);
4611}
4612
4613 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004614ex_z(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615{
4616 char_u *x;
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004617 long bigness;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004618 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 int minus = 0;
4620 linenr_T start, end, curs, i;
4621 int j;
4622 linenr_T lnum = eap->line2;
4623
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004624 /* Vi compatible: ":z!" uses display height, without a count uses
4625 * 'scroll' */
4626 if (eap->forceit)
4627 bigness = curwin->w_height;
Bram Moolenaar459ca562016-11-10 18:16:33 +01004628 else if (!ONE_WINDOW)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004629 bigness = curwin->w_height - 3;
Bram Moolenaar631abc32014-02-22 22:27:47 +01004630 else
4631 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 if (bigness < 1)
4633 bigness = 1;
4634
4635 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004636 kind = x;
4637 if (*kind == '-' || *kind == '+' || *kind == '='
4638 || *kind == '^' || *kind == '.')
4639 ++x;
4640 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 ++x;
4642
4643 if (*x != 0)
4644 {
4645 if (!VIM_ISDIGIT(*x))
4646 {
4647 EMSG(_("E144: non-numeric argument to :z"));
4648 return;
4649 }
4650 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004651 {
Bram Moolenaarfa0ad0b2017-04-02 15:45:17 +02004652 bigness = atol((char *)x);
4653
4654 /* bigness could be < 0 if atol(x) overflows. */
4655 if (bigness > 2 * curbuf->b_ml.ml_line_count || bigness < 0)
4656 bigness = 2 * curbuf->b_ml.ml_line_count;
4657
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004658 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004659 if (*kind == '=')
4660 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 }
4663
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004664 /* the number of '-' and '+' multiplies the distance */
4665 if (*kind == '-' || *kind == '+')
4666 for (x = kind + 1; *x == *kind; ++x)
4667 ;
4668
4669 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 {
4671 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004672 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4673 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004674 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 break;
4676
4677 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004678 start = lnum - (bigness + 1) / 2 + 1;
4679 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 curs = lnum;
4681 minus = 1;
4682 break;
4683
4684 case '^':
4685 start = lnum - bigness * 2;
4686 end = lnum - bigness;
4687 curs = lnum - bigness;
4688 break;
4689
4690 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004691 start = lnum - (bigness + 1) / 2 + 1;
4692 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 curs = end;
4694 break;
4695
4696 default: /* '+' */
4697 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004698 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004699 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004700 else if (eap->addr_count == 0)
4701 ++start;
4702 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 curs = end;
4704 break;
4705 }
4706
4707 if (start < 1)
4708 start = 1;
4709
4710 if (end > curbuf->b_ml.ml_line_count)
4711 end = curbuf->b_ml.ml_line_count;
4712
4713 if (curs > curbuf->b_ml.ml_line_count)
4714 curs = curbuf->b_ml.ml_line_count;
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004715 else if (curs < 1)
4716 curs = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717
4718 for (i = start; i <= end; i++)
4719 {
4720 if (minus && i == lnum)
4721 {
4722 msg_putchar('\n');
4723
4724 for (j = 1; j < Columns; j++)
4725 msg_putchar('-');
4726 }
4727
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004728 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729
4730 if (minus && i == lnum)
4731 {
4732 msg_putchar('\n');
4733
4734 for (j = 1; j < Columns; j++)
4735 msg_putchar('-');
4736 }
4737 }
4738
Bram Moolenaara364cdb2017-04-20 21:12:30 +02004739 if (curwin->w_cursor.lnum != curs)
4740 {
4741 curwin->w_cursor.lnum = curs;
4742 curwin->w_cursor.col = 0;
4743 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 ex_no_reprint = TRUE;
4745}
4746
4747/*
4748 * Check if the restricted flag is set.
4749 * If so, give an error message and return TRUE.
4750 * Otherwise, return FALSE.
4751 */
4752 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004753check_restricted(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754{
4755 if (restricted)
4756 {
4757 EMSG(_("E145: Shell commands not allowed in rvim"));
4758 return TRUE;
4759 }
4760 return FALSE;
4761}
4762
4763/*
4764 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4765 * If so, give an error message and return TRUE.
4766 * Otherwise, return FALSE.
4767 */
4768 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004769check_secure(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770{
4771 if (secure)
4772 {
4773 secure = 2;
4774 EMSG(_(e_curdir));
4775 return TRUE;
4776 }
4777#ifdef HAVE_SANDBOX
4778 /*
4779 * In the sandbox more things are not allowed, including the things
4780 * disallowed in secure mode.
4781 */
4782 if (sandbox != 0)
4783 {
4784 EMSG(_(e_sandbox));
4785 return TRUE;
4786 }
4787#endif
4788 return FALSE;
4789}
4790
4791static char_u *old_sub = NULL; /* previous substitute pattern */
4792static int global_need_beginline; /* call beginline() after ":g" */
4793
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004794/*
4795 * Flags that are kept between calls to :substitute.
4796 */
4797typedef struct {
4798 int do_all; /* do multiple substitutions per line */
4799 int do_ask; /* ask for confirmation */
4800 int do_count; /* count only */
4801 int do_error; /* if false, ignore errors */
4802 int do_print; /* print last line with subs. */
4803 int do_list; /* list last line with subs. */
4804 int do_number; /* list last line with line nr*/
4805 int do_ic; /* ignore case flag */
4806} subflags_T;
4807
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808/* do_sub()
4809 *
4810 * Perform a substitution from line eap->line1 to line eap->line2 using the
4811 * command pointed to by eap->arg which should be of the form:
4812 *
4813 * /pattern/substitution/{flags}
4814 *
4815 * The usual escapes are supported as described in the regexp docs.
4816 */
4817 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004818do_sub(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819{
4820 linenr_T lnum;
4821 long i = 0;
4822 regmmatch_T regmatch;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02004823 static subflags_T subflags = {FALSE, FALSE, FALSE, TRUE, FALSE,
4824 FALSE, FALSE, 0};
4825#ifdef FEAT_EVAL
4826 subflags_T subflags_save;
4827#endif
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004828 int save_do_all; /* remember user specified 'g' flag */
4829 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4831 int delimiter;
4832 int sublen;
4833 int got_quit = FALSE;
4834 int got_match = FALSE;
4835 int temp;
4836 int which_pat;
4837 char_u *cmd;
4838 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004839 linenr_T first_line = 0; /* first changed line */
4840 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 * change */
4842 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4843 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004844 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004845 char_u *sub_firstline; /* allocated copy of first sub line */
4846 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004847 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004848 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004849#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004850 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004851#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852
4853 cmd = eap->arg;
4854 if (!global_busy)
4855 {
4856 sub_nsubs = 0;
4857 sub_nlines = 0;
4858 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004859 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 if (eap->cmdidx == CMD_tilde)
4862 which_pat = RE_LAST; /* use last used regexp */
4863 else
4864 which_pat = RE_SUBST; /* use last substitute regexp */
4865
4866 /* new pattern and substitution */
Bram Moolenaar1c465442017-03-12 20:10:05 +01004867 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4869 {
4870 /* don't accept alphanumeric for separator */
4871 if (isalpha(*cmd))
4872 {
4873 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4874 return;
4875 }
4876 /*
4877 * undocumented vi feature:
4878 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4879 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4880 */
4881 if (*cmd == '\\')
4882 {
4883 ++cmd;
4884 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4885 {
4886 EMSG(_(e_backslash));
4887 return;
4888 }
4889 if (*cmd != '&')
4890 which_pat = RE_SEARCH; /* use last '/' pattern */
4891 pat = (char_u *)""; /* empty search pattern */
4892 delimiter = *cmd++; /* remember delimiter character */
4893 }
4894 else /* find the end of the regexp */
4895 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004896#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4897 if (p_altkeymap && curwin->w_p_rl)
4898 lrF_sub(cmd);
4899#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900 which_pat = RE_LAST; /* use last used regexp */
4901 delimiter = *cmd++; /* remember delimiter character */
4902 pat = cmd; /* remember start of search pat */
4903 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4904 if (cmd[0] == delimiter) /* end delimiter found */
4905 *cmd++ = NUL; /* replace it with a NUL */
4906 }
4907
4908 /*
4909 * Small incompatibility: vi sees '\n' as end of the command, but in
4910 * Vim we want to use '\n' to find/substitute a NUL.
4911 */
4912 sub = cmd; /* remember the start of the substitution */
4913
4914 while (cmd[0])
4915 {
4916 if (cmd[0] == delimiter) /* end delimiter found */
4917 {
4918 *cmd++ = NUL; /* replace it with a NUL */
4919 break;
4920 }
4921 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4922 ++cmd;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004923 MB_PTR_ADV(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 }
4925
4926 if (!eap->skip)
4927 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004928 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4929 if (STRCMP(sub, "%") == 0
4930 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4931 {
4932 if (old_sub == NULL) /* there is no previous command */
4933 {
4934 EMSG(_(e_nopresub));
4935 return;
4936 }
4937 sub = old_sub;
4938 }
4939 else
4940 {
4941 vim_free(old_sub);
4942 old_sub = vim_strsave(sub);
4943 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 }
4945 }
4946 else if (!eap->skip) /* use previous pattern and substitution */
4947 {
4948 if (old_sub == NULL) /* there is no previous command */
4949 {
4950 EMSG(_(e_nopresub));
4951 return;
4952 }
4953 pat = NULL; /* search_regcomp() will use previous pattern */
4954 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004955
4956 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4957 * last column after using "$". */
4958 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 }
4960
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004961 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4962 * more efficient.
4963 * TODO: find a generic solution to make line-joining operations more
4964 * efficient, avoid allocating a string that grows in size.
4965 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004966 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004967 && *sub == NUL
4968 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4969 || *cmd == 'p' || *cmd == '#'))))
4970 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004971 linenr_T joined_lines_count;
4972
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004973 curwin->w_cursor.lnum = eap->line1;
4974 if (*cmd == 'l')
4975 eap->flags = EXFLAG_LIST;
4976 else if (*cmd == '#')
4977 eap->flags = EXFLAG_NR;
4978 else if (*cmd == 'p')
4979 eap->flags = EXFLAG_PRINT;
4980
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004981 /* The number of lines joined is the number of lines in the range plus
4982 * one. One less when the last line is included. */
4983 joined_lines_count = eap->line2 - eap->line1 + 1;
4984 if (eap->line2 < curbuf->b_ml.ml_line_count)
4985 ++joined_lines_count;
4986 if (joined_lines_count > 1)
4987 {
4988 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
4989 sub_nsubs = joined_lines_count - 1;
4990 sub_nlines = 1;
4991 (void)do_sub_msg(FALSE);
4992 ex_may_print(eap);
4993 }
4994
4995 if (!cmdmod.keeppatterns)
4996 save_re_pat(RE_SUBST, pat, p_magic);
4997#ifdef FEAT_CMDHIST
4998 /* put pattern in history */
4999 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
5000#endif
5001
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02005002 return;
5003 }
5004
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 /*
5006 * Find trailing options. When '&' is used, keep old options.
5007 */
5008 if (*cmd == '&')
5009 ++cmd;
5010 else
5011 {
5012 if (!p_ed)
5013 {
5014 if (p_gd) /* default is global on */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005015 subflags.do_all = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005017 subflags.do_all = FALSE;
5018 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005020 subflags.do_error = TRUE;
5021 subflags.do_print = FALSE;
5022 subflags.do_count = FALSE;
5023 subflags.do_number = FALSE;
5024 subflags.do_ic = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 }
5026 while (*cmd)
5027 {
5028 /*
5029 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
5030 * 'r' is never inverted.
5031 */
5032 if (*cmd == 'g')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005033 subflags.do_all = !subflags.do_all;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 else if (*cmd == 'c')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005035 subflags.do_ask = !subflags.do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005036 else if (*cmd == 'n')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005037 subflags.do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 else if (*cmd == 'e')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005039 subflags.do_error = !subflags.do_error;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 else if (*cmd == 'r') /* use last used regexp */
5041 which_pat = RE_LAST;
5042 else if (*cmd == 'p')
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005043 subflags.do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005044 else if (*cmd == '#')
5045 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005046 subflags.do_print = TRUE;
5047 subflags.do_number = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005048 }
5049 else if (*cmd == 'l')
5050 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005051 subflags.do_print = TRUE;
5052 subflags.do_list = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005053 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 else if (*cmd == 'i') /* ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005055 subflags.do_ic = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 else if (*cmd == 'I') /* don't ignore case */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005057 subflags.do_ic = 'I';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 else
5059 break;
5060 ++cmd;
5061 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005062 if (subflags.do_count)
5063 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005065 save_do_all = subflags.do_all;
5066 save_do_ask = subflags.do_ask;
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005067
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 /*
5069 * check for a trailing count
5070 */
5071 cmd = skipwhite(cmd);
5072 if (VIM_ISDIGIT(*cmd))
5073 {
5074 i = getdigits(&cmd);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005075 if (i <= 0 && !eap->skip && subflags.do_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 {
5077 EMSG(_(e_zerocount));
5078 return;
5079 }
5080 eap->line1 = eap->line2;
5081 eap->line2 += i - 1;
5082 if (eap->line2 > curbuf->b_ml.ml_line_count)
5083 eap->line2 = curbuf->b_ml.ml_line_count;
5084 }
5085
5086 /*
5087 * check for trailing command or garbage
5088 */
5089 cmd = skipwhite(cmd);
5090 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
5091 {
5092 eap->nextcmd = check_nextcmd(cmd);
5093 if (eap->nextcmd == NULL)
5094 {
5095 EMSG(_(e_trailing));
5096 return;
5097 }
5098 }
5099
5100 if (eap->skip) /* not executing commands, only parsing */
5101 return;
5102
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005103 if (!subflags.do_count && !curbuf->b_p_ma)
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005104 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005105 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005106 EMSG(_(e_modifiable));
5107 return;
5108 }
5109
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5111 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005112 if (subflags.do_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 EMSG(_(e_invcmd));
5114 return;
5115 }
5116
5117 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005118 if (subflags.do_ic == 'i')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 regmatch.rmm_ic = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005120 else if (subflags.do_ic == 'I')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 regmatch.rmm_ic = FALSE;
5122
5123 sub_firstline = NULL;
5124
5125 /*
5126 * ~ in the substitute pattern is replaced with the old pattern.
5127 * We do it here once to avoid it to be replaced over and over again.
5128 * But don't do it when it starts with "\=", then it's an expression.
5129 */
5130 if (!(sub[0] == '\\' && sub[1] == '='))
5131 sub = regtilde(sub, p_magic);
5132
5133 /*
5134 * Check for a match on each line.
5135 */
5136 line2 = eap->line2;
5137 for (lnum = eap->line1; lnum <= line2 && !(got_quit
5138#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD)
5139 || aborting()
5140#endif
5141 ); ++lnum)
5142 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005143 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005144 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 if (nmatch)
5146 {
5147 colnr_T copycol;
5148 colnr_T matchcol;
5149 colnr_T prev_matchcol = MAXCOL;
5150 char_u *new_end, *new_start = NULL;
5151 unsigned new_start_len = 0;
5152 char_u *p1;
5153 int did_sub = FALSE;
5154 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005155 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 long nmatch_tl = 0; /* nr of lines matched below lnum */
5157 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005158 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005159 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160
5161 /*
5162 * The new text is build up step by step, to avoid too much
5163 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00005164 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 * copycol Column in the old text where we started
5166 * looking for a match; from here old text still
5167 * needs to be copied to the new text.
5168 * matchcol Column number of the old text where to look
5169 * for the next match. It's just after the
5170 * previous match or one further.
5171 * prev_matchcol Column just after the previous match (if any).
5172 * Mostly equal to matchcol, except for the first
5173 * match and after skipping an empty match.
5174 * regmatch.*pos Where the pattern matched in the old text.
5175 * new_start The new text, all that has been produced so
5176 * far.
5177 * new_end The new text, where to append new text.
5178 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005179 * lnum The line number where we found the start of
5180 * the match. Can be below the line we searched
5181 * when there is a \n before a \zs in the
5182 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 * sub_firstlnum The line number in the buffer where to look
5184 * for a match. Can be different from "lnum"
5185 * when the pattern or substitute string contains
5186 * line breaks.
5187 *
5188 * Special situations:
5189 * - When the substitute string contains a line break, the part up
5190 * to the line break is inserted in the text, but the copy of
5191 * the original line is kept. "sub_firstlnum" is adjusted for
5192 * the inserted lines.
5193 * - When the matched pattern contains a line break, the old line
5194 * is taken from the line at the end of the pattern. The lines
5195 * in the match are deleted later, "sub_firstlnum" is adjusted
5196 * accordingly.
5197 *
5198 * The new text is built up in new_start[]. It has some extra
5199 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005200 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 *
5202 * Make a copy of the old line, so it won't be taken away when
5203 * updating the screen or handling a multi-line match. The "old_"
5204 * pointers point into this copy.
5205 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005206 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207 copycol = 0;
5208 matchcol = 0;
5209
5210 /* At first match, remember current cursor position. */
5211 if (!got_match)
5212 {
5213 setpcmark();
5214 got_match = TRUE;
5215 }
5216
5217 /*
5218 * Loop until nothing more to replace in this line.
5219 * 1. Handle match with empty string.
5220 * 2. If do_ask is set, ask for confirmation.
5221 * 3. substitute the string.
5222 * 4. if do_all is set, find next match
5223 * 5. break if there isn't another match in this line
5224 */
5225 for (;;)
5226 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005227 /* Advance "lnum" to the line where the match starts. The
5228 * match does not start in the first line when there is a line
5229 * break before \zs. */
5230 if (regmatch.startpos[0].lnum > 0)
5231 {
5232 lnum += regmatch.startpos[0].lnum;
5233 sub_firstlnum += regmatch.startpos[0].lnum;
5234 nmatch -= regmatch.startpos[0].lnum;
Bram Moolenaard23a8232018-02-10 18:45:26 +01005235 VIM_CLEAR(sub_firstline);
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005236 }
5237
5238 if (sub_firstline == NULL)
5239 {
5240 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5241 if (sub_firstline == NULL)
5242 {
5243 vim_free(new_start);
5244 goto outofmem;
5245 }
5246 }
5247
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 /* Save the line number of the last change for the final
5249 * cursor position (just like Vi). */
5250 curwin->w_cursor.lnum = lnum;
5251 do_again = FALSE;
5252
5253 /*
5254 * 1. Match empty string does not count, except for first
5255 * match. This reproduces the strange vi behaviour.
5256 * This also catches endless loops.
5257 */
5258 if (matchcol == prev_matchcol
5259 && regmatch.endpos[0].lnum == 0
5260 && matchcol == regmatch.endpos[0].col)
5261 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00005262 if (sub_firstline[matchcol] == NUL)
5263 /* We already were at the end of the line. Don't look
5264 * for a match in this line again. */
5265 skip_match = TRUE;
5266 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02005267 {
5268 /* search for a match at next column */
5269#ifdef FEAT_MBYTE
5270 if (has_mbyte)
5271 matchcol += mb_ptr2len(sub_firstline + matchcol);
5272 else
5273#endif
5274 ++matchcol;
5275 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 goto skip;
5277 }
5278
5279 /* Normally we continue searching for a match just after the
5280 * previous match. */
5281 matchcol = regmatch.endpos[0].col;
5282 prev_matchcol = matchcol;
5283
5284 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00005285 * 2. If do_count is set only increase the counter.
5286 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005288 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005289 {
5290 /* For a multi-line match, put matchcol at the NUL at
5291 * the end of the line and set nmatch to one, so that
5292 * we continue looking for a match on the next line.
5293 * Avoids that ":s/\nB\@=//gc" get stuck. */
5294 if (nmatch > 1)
5295 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005296 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00005297 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00005298 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005299 }
5300 sub_nsubs++;
5301 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005302#ifdef FEAT_EVAL
5303 /* Skip the substitution, unless an expression is used,
5304 * then it is evaluated in the sandbox. */
5305 if (!(sub[0] == '\\' && sub[1] == '='))
5306#endif
5307 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005308 }
5309
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005310 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00005312 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005313
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 /* change State to CONFIRM, so that the mouse works
5315 * properly */
5316 save_State = State;
5317 State = CONFIRM;
5318#ifdef FEAT_MOUSE
5319 setmouse(); /* disable mouse in xterm */
5320#endif
5321 curwin->w_cursor.col = regmatch.startpos[0].col;
Bram Moolenaar41baa792017-01-21 14:45:09 +01005322#ifdef FEAT_CURSORBIND
5323 if (curwin->w_p_crb)
5324 do_check_cursorbind();
5325#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326
5327 /* When 'cpoptions' contains "u" don't sync undo when
5328 * asking for confirmation. */
5329 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5330 ++no_u_sync;
5331
5332 /*
5333 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
5334 */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005335 while (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005337 if (exmode_active)
5338 {
5339 char_u *resp;
5340 colnr_T sc, ec;
5341
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005342 print_line_no_prefix(lnum,
5343 subflags.do_number, subflags.do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005344
5345 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
5346 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
Bram Moolenaarba748c82017-02-26 14:00:07 +01005347 if (curwin->w_cursor.col < 0)
5348 curwin->w_cursor.col = 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005349 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005350 if (subflags.do_number || curwin->w_p_nu)
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02005351 {
5352 int numw = number_width(curwin) + 1;
5353 sc += numw;
5354 ec += numw;
5355 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005356 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00005357 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005358 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00005359 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005360 msg_putchar('^');
5361
5362 resp = getexmodeline('?', NULL, 0);
5363 if (resp != NULL)
5364 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005365 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005366 vim_free(resp);
5367 }
5368 }
5369 else
5370 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005371 char_u *orig_line = NULL;
5372 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005374 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005376 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005378 /* Invert the matched string.
5379 * Remove the inversion afterwards. */
5380 temp = RedrawingDisabled;
5381 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005383 if (new_start != NULL)
5384 {
5385 /* There already was a substitution, we would
5386 * like to show this to the user. We cannot
5387 * really update the line, it would change
5388 * what matches. Temporarily replace the line
5389 * and change it back afterwards. */
5390 orig_line = vim_strsave(ml_get(lnum));
5391 if (orig_line != NULL)
5392 {
5393 char_u *new_line = concat_str(new_start,
5394 sub_firstline + copycol);
5395
5396 if (new_line == NULL)
Bram Moolenaard23a8232018-02-10 18:45:26 +01005397 VIM_CLEAR(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005398 else
5399 {
5400 /* Position the cursor relative to the
5401 * end of the line, the previous
5402 * substitute may have inserted or
5403 * deleted characters before the
5404 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01005405 len_change = (int)STRLEN(new_line)
5406 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005407 curwin->w_cursor.col += len_change;
5408 ml_replace(lnum, new_line, FALSE);
5409 }
5410 }
5411 }
5412
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005413 search_match_lines = regmatch.endpos[0].lnum
5414 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005415 search_match_endcol = regmatch.endpos[0].col
5416 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005417 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005419 update_topline();
5420 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00005421 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005422 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00005423 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424
5425#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005426 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005428 if (msg_row == Rows - 1)
5429 msg_didout = FALSE; /* avoid a scroll-up */
5430 msg_starthere();
5431 i = msg_scroll;
5432 msg_scroll = 0; /* truncate msg when
5433 needed */
5434 msg_no_more = TRUE;
5435 /* write message same highlighting as for
5436 * wait_return */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005437 smsg_attr(HL_ATTR(HLF_R),
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005438 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
5439 msg_no_more = FALSE;
5440 msg_scroll = i;
5441 showruler(TRUE);
5442 windgoto(msg_row, msg_col);
5443 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444
5445#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005446 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005448 ++no_mapping; /* don't map this key */
5449 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005450 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005451 --allow_keys;
5452 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005454 /* clear the question */
5455 msg_didout = FALSE; /* don't scroll up */
5456 msg_col = 0;
5457 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005458
5459 /* restore the line */
5460 if (orig_line != NULL)
5461 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005462 }
5463
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005465 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005467 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468#endif
5469 )
5470 {
5471 got_quit = TRUE;
5472 break;
5473 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005474 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005476 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005478 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 {
5480 /* last: replace and then stop */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005481 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 line2 = lnum;
5483 break;
5484 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005485 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005487 subflags.do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488 break;
5489 }
5490#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005491 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005493 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 scrolldown_clamp();
5495#endif
5496 }
5497 State = save_State;
5498#ifdef FEAT_MOUSE
5499 setmouse();
5500#endif
5501 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5502 --no_u_sync;
5503
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005504 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 {
5506 /* For a multi-line match, put matchcol at the NUL at
5507 * the end of the line and set nmatch to one, so that
5508 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00005509 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
5510 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 if (nmatch > 1)
5512 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005513 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00005514 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 }
5516 goto skip;
5517 }
5518 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01005519 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520 }
5521
5522 /* Move the cursor to the start of the match, so that we can
5523 * use "\=col("."). */
5524 curwin->w_cursor.col = regmatch.startpos[0].col;
5525
5526 /*
5527 * 3. substitute the string.
5528 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005529#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005530 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005531 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005532 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005533 save_ma = curbuf->b_p_ma;
5534 curbuf->b_p_ma = FALSE;
5535 sandbox++;
5536 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005537 /* Save flags for recursion. They can change for e.g.
5538 * :s/^/\=execute("s#^##gn") */
5539 subflags_save = subflags;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005540#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005542 sublen = vim_regsub_multi(&regmatch,
5543 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005545#ifdef FEAT_EVAL
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005546 /* Don't keep flags set by a recursive call. */
5547 subflags = subflags_save;
5548 if (subflags.do_count)
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005549 {
5550 curbuf->b_p_ma = save_ma;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005551 if (sandbox > 0)
5552 sandbox--;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005553 goto skip;
5554 }
5555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556
Bram Moolenaar4463f292005-09-25 22:20:24 +00005557 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005558 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005559 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5560 {
5561 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5562 skip_match = TRUE;
5563 }
5564
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 /* Need room for:
5566 * - result so far in new_start (not for first sub in line)
5567 * - original text up to match
5568 * - length of substituted part
5569 * - original text after match
5570 */
5571 if (nmatch == 1)
5572 p1 = sub_firstline;
5573 else
5574 {
5575 p1 = ml_get(sub_firstlnum + nmatch - 1);
5576 nmatch_tl += nmatch - 1;
5577 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005578 copy_len = regmatch.startpos[0].col - copycol;
5579 needed_len = copy_len + ((unsigned)STRLEN(p1)
5580 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 if (new_start == NULL)
5582 {
5583 /*
5584 * Get some space for a temporary buffer to do the
5585 * substitution into (and some extra space to avoid
5586 * too many calls to alloc()/free()).
5587 */
5588 new_start_len = needed_len + 50;
5589 if ((new_start = alloc_check(new_start_len)) == NULL)
5590 goto outofmem;
5591 *new_start = NUL;
5592 new_end = new_start;
5593 }
5594 else
5595 {
5596 /*
5597 * Check if the temporary buffer is long enough to do the
5598 * substitution into. If not, make it larger (with a bit
5599 * extra to avoid too many calls to alloc()/free()).
5600 */
5601 len = (unsigned)STRLEN(new_start);
5602 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005603 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604 {
5605 new_start_len = needed_len + 50;
5606 if ((p1 = alloc_check(new_start_len)) == NULL)
5607 {
5608 vim_free(new_start);
5609 goto outofmem;
5610 }
5611 mch_memmove(p1, new_start, (size_t)(len + 1));
5612 vim_free(new_start);
5613 new_start = p1;
5614 }
5615 new_end = new_start + len;
5616 }
5617
5618 /*
5619 * copy the text up to the part that matched
5620 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005621 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5622 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005624 (void)vim_regsub_multi(&regmatch,
5625 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005626 sub, new_end, TRUE, p_magic, TRUE);
5627 sub_nsubs++;
5628 did_sub = TRUE;
5629
5630 /* Move the cursor to the start of the line, to avoid that it
5631 * is beyond the end of the line after the substitution. */
5632 curwin->w_cursor.col = 0;
5633
5634 /* For a multi-line match, make a copy of the last matched
5635 * line and continue in that one. */
5636 if (nmatch > 1)
5637 {
5638 sub_firstlnum += nmatch - 1;
5639 vim_free(sub_firstline);
5640 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5641 /* When going beyond the last line, stop substituting. */
5642 if (sub_firstlnum <= line2)
5643 do_again = TRUE;
5644 else
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005645 subflags.do_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 }
5647
5648 /* Remember next character to be copied. */
5649 copycol = regmatch.endpos[0].col;
5650
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005651 if (skip_match)
5652 {
5653 /* Already hit end of the buffer, sub_firstlnum is one
5654 * less than what it ought to be. */
5655 vim_free(sub_firstline);
5656 sub_firstline = vim_strsave((char_u *)"");
5657 copycol = 0;
5658 }
5659
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 /*
5661 * Now the trick is to replace CTRL-M chars with a real line
5662 * break. This would make it impossible to insert a CTRL-M in
5663 * the text. The line break can be avoided by preceding the
5664 * CTRL-M with a backslash. To be able to insert a backslash,
5665 * they must be doubled in the string and are halved here.
5666 * That is Vi compatible.
5667 */
5668 for (p1 = new_end; *p1; ++p1)
5669 {
5670 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005671 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 else if (*p1 == CAR)
5673 {
5674 if (u_inssub(lnum) == OK) /* prepare for undo */
5675 {
5676 *p1 = NUL; /* truncate up to the CR */
5677 ml_append(lnum - 1, new_start,
5678 (colnr_T)(p1 - new_start + 1), FALSE);
5679 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005680 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 appended_lines(lnum - 1, 1L);
5682 else
5683 {
5684 if (first_line == 0)
5685 first_line = lnum;
5686 last_line = lnum + 1;
5687 }
5688 /* All line numbers increase. */
5689 ++sub_firstlnum;
5690 ++lnum;
5691 ++line2;
5692 /* move the cursor to the new line, like Vi */
5693 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005694 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005695 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696 p1 = new_start - 1;
5697 }
5698 }
5699#ifdef FEAT_MBYTE
5700 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005701 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702#endif
5703 }
5704
5705 /*
5706 * 4. If do_all is set, find next match.
5707 * Prevent endless loop with patterns that match empty
5708 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5709 * But ":s/\n/#/" is OK.
5710 */
5711skip:
5712 /* We already know that we did the last subst when we are at
5713 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005714 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5715 * "line2" when there is a \zs in the pattern after a line
5716 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005717 lastone = (skip_match
5718 || got_int
5719 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005720 || lnum > line2
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005721 || !(subflags.do_all || do_again)
Bram Moolenaar8299df92004-07-10 09:47:34 +00005722 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5723 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 nmatch = -1;
5725
5726 /*
5727 * Replace the line in the buffer when needed. This is
5728 * skipped when there are more matches.
5729 * The check for nmatch_tl is needed for when multi-line
5730 * matching must replace the lines before trying to do another
5731 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005732 * When the match starts below where we start searching also
5733 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 */
5735 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 || nmatch_tl > 0
5737 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005738 curbuf, sub_firstlnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005739 matchcol, NULL, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005740 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 {
5742 if (new_start != NULL)
5743 {
5744 /*
5745 * Copy the rest of the line, that didn't match.
5746 * "matchcol" has to be adjusted, we use the end of
5747 * the line as reference, because the substitute may
5748 * have changed the number of characters. Same for
5749 * "prev_matchcol".
5750 */
5751 STRCAT(new_start, sub_firstline + copycol);
5752 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5753 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5754 - prev_matchcol;
5755
5756 if (u_savesub(lnum) != OK)
5757 break;
5758 ml_replace(lnum, new_start, TRUE);
5759
5760 if (nmatch_tl > 0)
5761 {
5762 /*
5763 * Matched lines have now been substituted and are
5764 * useless, delete them. The part after the match
5765 * has been appended to new_start, we don't need
5766 * it in the buffer.
5767 */
5768 ++lnum;
5769 if (u_savedel(lnum, nmatch_tl) != OK)
5770 break;
5771 for (i = 0; i < nmatch_tl; ++i)
5772 ml_delete(lnum, (int)FALSE);
5773 mark_adjust(lnum, lnum + nmatch_tl - 1,
5774 (long)MAXLNUM, -nmatch_tl);
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005775 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776 deleted_lines(lnum, nmatch_tl);
5777 --lnum;
5778 line2 -= nmatch_tl; /* nr of lines decreases */
5779 nmatch_tl = 0;
5780 }
5781
5782 /* When asking, undo is saved each time, must also set
5783 * changed flag each time. */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005784 if (subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 changed_bytes(lnum, 0);
5786 else
5787 {
5788 if (first_line == 0)
5789 first_line = lnum;
5790 last_line = lnum + 1;
5791 }
5792
5793 sub_firstlnum = lnum;
5794 vim_free(sub_firstline); /* free the temp buffer */
5795 sub_firstline = new_start;
5796 new_start = NULL;
5797 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5798 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5799 - prev_matchcol;
5800 copycol = 0;
5801 }
5802 if (nmatch == -1 && !lastone)
5803 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02005804 sub_firstlnum, matchcol, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805
5806 /*
5807 * 5. break if there isn't another match in this line
5808 */
5809 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005810 {
5811 /* If the match found didn't start where we were
5812 * searching, do the next search in the line where we
5813 * found the match. */
5814 if (nmatch == -1)
5815 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005817 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 }
5819
5820 line_breakcheck();
5821 }
5822
5823 if (did_sub)
5824 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005825 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaard23a8232018-02-10 18:45:26 +01005826 VIM_CLEAR(sub_firstline); /* free the copy of the original line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 }
5828
5829 line_breakcheck();
5830 }
5831
5832 if (first_line != 0)
5833 {
5834 /* Need to subtract the number of added lines from "last_line" to get
5835 * the line number before the change (same as adding the number of
5836 * deleted lines). */
5837 i = curbuf->b_ml.ml_line_count - old_line_count;
5838 changed_lines(first_line, 0, last_line - i, i);
5839 }
5840
5841outofmem:
5842 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005843
5844 /* ":s/pat//n" doesn't move the cursor */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005845 if (subflags.do_count)
Bram Moolenaar05159a02005-02-26 23:04:13 +00005846 curwin->w_cursor = old_cursor;
5847
Bram Moolenaar46475522010-03-23 17:36:29 +01005848 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849 {
5850 /* Set the '[ and '] marks. */
5851 curbuf->b_op_start.lnum = eap->line1;
5852 curbuf->b_op_end.lnum = line2;
5853 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5854
5855 if (!global_busy)
5856 {
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005857 /* when interactive leave cursor on the match */
5858 if (!subflags.do_ask)
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005859 {
5860 if (endcolumn)
5861 coladvance((colnr_T)MAXCOL);
5862 else
5863 beginline(BL_WHITE | BL_FIX);
5864 }
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005865 if (!do_sub_msg(subflags.do_count) && subflags.do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866 MSG("");
5867 }
5868 else
5869 global_need_beginline = TRUE;
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005870 if (subflags.do_print)
5871 print_line(curwin->w_cursor.lnum,
5872 subflags.do_number, subflags.do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873 }
5874 else if (!global_busy)
5875 {
5876 if (got_int) /* interrupted */
5877 EMSG(_(e_interr));
5878 else if (got_match) /* did find something but nothing substituted */
5879 MSG("");
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005880 else if (subflags.do_error) /* nothing found */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881 EMSG2(_(e_patnotf2), get_search_pat());
5882 }
5883
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005884#ifdef FEAT_FOLDING
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005885 if (subflags.do_ask && hasAnyFolding(curwin))
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005886 /* Cursor position may require updating */
5887 changed_window_setting();
5888#endif
5889
Bram Moolenaar473de612013-06-08 18:19:48 +02005890 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005891
5892 /* Restore the flag values, they can be used for ":&&". */
Bram Moolenaarf5a39442016-08-16 21:04:41 +02005893 subflags.do_all = save_do_all;
5894 subflags.do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895}
5896
5897/*
5898 * Give message for number of substitutions.
5899 * Can also be used after a ":global" command.
5900 * Return TRUE if a message was given.
5901 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005902 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005903do_sub_msg(
5904 int count_only) /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905{
5906 /*
5907 * Only report substitutions when:
5908 * - more than 'report' substitutions
5909 * - command was typed by user, or number of changed lines > 'report'
5910 * - giving messages is not disabled by 'lazyredraw'
5911 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005912 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5913 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 && messaging())
5915 {
5916 if (got_int)
5917 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005918 else
5919 *msg_buf = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 if (sub_nsubs == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005921 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005922 "%s", count_only ? _("1 match") : _("1 substitution"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005924 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar05159a02005-02-26 23:04:13 +00005925 count_only ? _("%ld matches") : _("%ld substitutions"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926 sub_nsubs);
5927 if (sub_nlines == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005928 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005929 "%s", _(" on 1 line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005931 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005932 _(" on %ld lines"), (long)sub_nlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005935 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936 return TRUE;
5937 }
5938 if (got_int)
5939 {
5940 EMSG(_(e_interr));
5941 return TRUE;
5942 }
5943 return FALSE;
5944}
5945
Bram Moolenaarf84b1222017-06-10 14:29:52 +02005946 static void
5947global_exe_one(char_u *cmd, linenr_T lnum)
5948{
5949 curwin->w_cursor.lnum = lnum;
5950 curwin->w_cursor.col = 0;
5951 if (*cmd == NUL || *cmd == '\n')
5952 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5953 else
5954 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5955}
5956
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957/*
5958 * Execute a global command of the form:
5959 *
5960 * g/pattern/X : execute X on all lines where pattern matches
5961 * v/pattern/X : execute X on all lines where pattern does not match
5962 *
5963 * where 'X' is an EX command
5964 *
5965 * The command character (as well as the trailing slash) is optional, and
5966 * is assumed to be 'p' if missing.
5967 *
5968 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005969 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970 * for each line that has a mark. This is required because after deleting
5971 * lines we do not know where to search for the next match.
5972 */
5973 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005974ex_global(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975{
5976 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005977 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978 int type; /* first char of cmd: 'v' or 'g' */
5979 char_u *cmd; /* command argument */
5980
5981 char_u delim; /* delimiter, normally '/' */
5982 char_u *pat;
5983 regmmatch_T regmatch;
5984 int match;
5985 int which_pat;
5986
Bram Moolenaarf84b1222017-06-10 14:29:52 +02005987 /* When nesting the command works on one line. This allows for
5988 * ":g/found/v/notfound/command". */
5989 if (global_busy && (eap->line1 != 1
5990 || eap->line2 != curbuf->b_ml.ml_line_count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02005992 /* will increment global_busy to break out of the loop */
5993 EMSG(_("E147: Cannot do :global recursive with a range"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994 return;
5995 }
5996
5997 if (eap->forceit) /* ":global!" is like ":vglobal" */
5998 type = 'v';
5999 else
6000 type = *eap->cmd;
6001 cmd = eap->arg;
6002 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003
6004 /*
6005 * undocumented vi feature:
6006 * "\/" and "\?": use previous search pattern.
6007 * "\&": use previous substitute pattern.
6008 */
6009 if (*cmd == '\\')
6010 {
6011 ++cmd;
6012 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
6013 {
6014 EMSG(_(e_backslash));
6015 return;
6016 }
6017 if (*cmd == '&')
6018 which_pat = RE_SUBST; /* use previous substitute pattern */
6019 else
6020 which_pat = RE_SEARCH; /* use previous search pattern */
6021 ++cmd;
6022 pat = (char_u *)"";
6023 }
6024 else if (*cmd == NUL)
6025 {
6026 EMSG(_("E148: Regular expression missing from global"));
6027 return;
6028 }
6029 else
6030 {
6031 delim = *cmd; /* get the delimiter */
6032 if (delim)
6033 ++cmd; /* skip delimiter if there is one */
6034 pat = cmd; /* remember start of pattern */
6035 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
6036 if (cmd[0] == delim) /* end delimiter found */
6037 *cmd++ = NUL; /* replace it with a NUL */
6038 }
6039
6040#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
6041 if (p_altkeymap && curwin->w_p_rl)
6042 lrFswap(pat,0);
6043#endif
6044
6045 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
6046 {
6047 EMSG(_(e_invcmd));
6048 return;
6049 }
6050
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006051 if (global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006053 lnum = curwin->w_cursor.lnum;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00006054 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006055 (colnr_T)0, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056 if ((type == 'g' && match) || (type == 'v' && !match))
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006057 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058 }
6059 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006060 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006061 /*
6062 * pass 1: set marks for each (not) matching line
6063 */
6064 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
6065 {
6066 /* a match on this line? */
6067 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006068 (colnr_T)0, NULL, NULL);
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006069 if ((type == 'g' && match) || (type == 'v' && !match))
6070 {
6071 ml_setmarked(lnum);
6072 ndone++;
6073 }
6074 line_breakcheck();
6075 }
6076
6077 /*
6078 * pass 2: execute the command for each line that has been marked
6079 */
6080 if (got_int)
6081 MSG(_(e_interr));
6082 else if (ndone == 0)
6083 {
6084 if (type == 'v')
6085 smsg((char_u *)_("Pattern found in every line: %s"), pat);
6086 else
6087 smsg((char_u *)_("Pattern not found: %s"), pat);
6088 }
6089 else
6090 {
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006091#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006092 start_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006093#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006094 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006095#ifdef FEAT_CLIPBOARD
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006096 end_global_changes();
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006097#endif
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006098 }
6099
6100 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02006101 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102
Bram Moolenaar473de612013-06-08 18:19:48 +02006103 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104}
6105
6106/*
6107 * Execute "cmd" on lines marked with ml_setmarked().
6108 */
6109 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006110global_exe(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111{
Bram Moolenaarbb993222011-05-10 16:00:47 +02006112 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
6113 buf_T *old_buf = curbuf; /* remember what buffer we started in */
6114 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115
6116 /*
6117 * Set current position only once for a global command.
6118 * If global_busy is set, setpcmark() will not do anything.
6119 * If there is an error, global_busy will be incremented.
6120 */
6121 setpcmark();
6122
6123 /* When the command writes a message, don't overwrite the command. */
6124 msg_didout = TRUE;
6125
Bram Moolenaard25bc232010-03-23 17:49:24 +01006126 sub_nsubs = 0;
6127 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128 global_need_beginline = FALSE;
6129 global_busy = 1;
6130 old_lcount = curbuf->b_ml.ml_line_count;
6131 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
6132 {
Bram Moolenaarf84b1222017-06-10 14:29:52 +02006133 global_exe_one(cmd, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134 ui_breakcheck();
6135 }
6136
6137 global_busy = 0;
6138 if (global_need_beginline)
6139 beginline(BL_WHITE | BL_FIX);
6140 else
6141 check_cursor(); /* cursor may be beyond the end of the line */
6142
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006143 /* the cursor may not have moved in the text but a change in a previous
6144 * line may move it on the screen */
6145 changed_line_abv_curs();
6146
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147 /* If it looks like no message was written, allow overwriting the
6148 * command with the report for number of changes. */
6149 if (msg_col == 0 && msg_scrolled == 0)
6150 msg_didout = FALSE;
6151
Bram Moolenaar45667512007-05-10 19:24:43 +00006152 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02006153 * number of extra or deleted lines.
6154 * Don't report extra or deleted lines in the edge case where the buffer
6155 * we are in after execution is different from the buffer we started in. */
6156 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
6158}
6159
6160#ifdef FEAT_VIMINFO
6161 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006162read_viminfo_sub_string(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01006164 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 vim_free(old_sub);
6166 if (force || old_sub == NULL)
6167 old_sub = viminfo_readstring(virp, 1, TRUE);
6168 return viminfo_readline(virp);
6169}
6170
6171 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006172write_viminfo_sub_string(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173{
6174 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
6175 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02006176 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177 viminfo_writestring(fp, old_sub);
6178 }
6179}
6180#endif /* FEAT_VIMINFO */
6181
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006182#if defined(EXITFREE) || defined(PROTO)
6183 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006184free_old_sub(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006185{
6186 vim_free(old_sub);
6187}
6188#endif
6189
Bram Moolenaar4033c552017-09-16 20:54:51 +02006190#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191/*
6192 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006193 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006195 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006196prepare_tagpreview(
6197 int undo_sync) /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198{
6199 win_T *wp;
6200
6201# ifdef FEAT_GUI
6202 need_mouse_correct = TRUE;
6203# endif
6204
6205 /*
6206 * If there is already a preview window open, use that one.
6207 */
6208 if (!curwin->w_p_pvw)
6209 {
Bram Moolenaar29323592016-07-24 22:04:11 +02006210 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006211 if (wp->w_p_pvw)
6212 break;
6213 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00006214 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 else
6216 {
6217 /*
6218 * There is no preview window open yet. Create one.
6219 */
6220 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
6221 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006222 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006223 curwin->w_p_pvw = TRUE;
6224 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006225 RESET_BINDING(curwin); /* don't take over 'scrollbind'
6226 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227# ifdef FEAT_DIFF
6228 curwin->w_p_diff = FALSE; /* no 'diff' */
6229# endif
6230# ifdef FEAT_FOLDING
6231 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
6232# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006233 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234 }
6235 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006236 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006237}
6238
6239#endif
6240
6241
6242/*
6243 * ":help": open a read-only window on a help file
6244 */
6245 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006246ex_help(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247{
6248 char_u *arg;
6249 char_u *tag;
6250 FILE *helpfd; /* file descriptor of help file */
6251 int n;
6252 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006253 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 int num_matches;
6255 char_u **matches;
6256 char_u *p;
6257 int empty_fnum = 0;
6258 int alt_fnum = 0;
6259 buf_T *buf;
6260#ifdef FEAT_MULTI_LANG
6261 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006262 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02006264#ifdef FEAT_FOLDING
6265 int old_KeyTyped = KeyTyped;
6266#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267
6268 if (eap != NULL)
6269 {
6270 /*
6271 * A ":help" command ends at the first LF, or at a '|' that is
6272 * followed by some text. Set nextcmd to the following command.
6273 */
6274 for (arg = eap->arg; *arg; ++arg)
6275 {
6276 if (*arg == '\n' || *arg == '\r'
6277 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
6278 {
6279 *arg++ = NUL;
6280 eap->nextcmd = arg;
6281 break;
6282 }
6283 }
6284 arg = eap->arg;
6285
Bram Moolenaar3dbde622012-04-05 16:05:05 +02006286 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 {
6288 EMSG(_("E478: Don't panic!"));
6289 return;
6290 }
6291
6292 if (eap->skip) /* not executing commands */
6293 return;
6294 }
6295 else
6296 arg = (char_u *)"";
6297
6298 /* remove trailing blanks */
6299 p = arg + STRLEN(arg) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006300 while (p > arg && VIM_ISWHITE(*p) && p[-1] != '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301 *p-- = NUL;
6302
6303#ifdef FEAT_MULTI_LANG
6304 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006305 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306#endif
6307
6308 /* When no argument given go to the index. */
6309 if (*arg == NUL)
6310 arg = (char_u *)"help.txt";
6311
6312 /*
6313 * Check if there is a match for the argument.
6314 */
6315 n = find_help_tags(arg, &num_matches, &matches,
6316 eap != NULL && eap->forceit);
6317
6318 i = 0;
6319#ifdef FEAT_MULTI_LANG
6320 if (n != FAIL && lang != NULL)
6321 /* Find first item with the requested language. */
6322 for (i = 0; i < num_matches; ++i)
6323 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006324 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006325 if (len > 3 && matches[i][len - 3] == '@'
6326 && STRICMP(matches[i] + len - 2, lang) == 0)
6327 break;
6328 }
6329#endif
6330 if (i >= num_matches || n == FAIL)
6331 {
6332#ifdef FEAT_MULTI_LANG
6333 if (lang != NULL)
6334 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
6335 else
6336#endif
6337 EMSG2(_("E149: Sorry, no help for %s"), arg);
6338 if (n != FAIL)
6339 FreeWild(num_matches, matches);
6340 return;
6341 }
6342
6343 /* The first match (in the requested language) is the best match. */
6344 tag = vim_strsave(matches[i]);
6345 FreeWild(num_matches, matches);
6346
6347#ifdef FEAT_GUI
6348 need_mouse_correct = TRUE;
6349#endif
6350
6351 /*
6352 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006353 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354 */
Bram Moolenaar4033c552017-09-16 20:54:51 +02006355 if (!bt_help(curwin->w_buffer) || cmdmod.tab != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356 {
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006357 if (cmdmod.tab != 0)
6358 wp = NULL;
6359 else
Bram Moolenaar29323592016-07-24 22:04:11 +02006360 FOR_ALL_WINDOWS(wp)
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006361 if (bt_help(wp->w_buffer))
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006362 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
6364 win_enter(wp, TRUE);
6365 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366 {
6367 /*
6368 * There is no help window yet.
6369 * Try to open the file specified by the "helpfile" option.
6370 */
6371 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
6372 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00006373 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 goto erret;
6375 }
6376 fclose(helpfd);
6377
Bram Moolenaar071d4272004-06-13 20:20:40 +00006378 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006379 * specified, the current window is vertically split and
6380 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381 n = WSP_HELP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006383 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006384 n |= WSP_TOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006386 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388 if (curwin->w_height < p_hh)
6389 win_setheight((int)p_hh);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390
6391 /*
6392 * Open help file (do_ecmd() will set b_help flag, readfile() will
6393 * set b_p_ro flag).
6394 * Set the alternate file to the previously edited file.
6395 */
6396 alt_fnum = curbuf->b_fnum;
6397 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006398 ECMD_HIDE + ECMD_SET_HELP,
Bram Moolenaar4033c552017-09-16 20:54:51 +02006399 NULL); /* buffer is still open, don't store info */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006400 if (!cmdmod.keepalt)
6401 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402 empty_fnum = curbuf->b_fnum;
6403 }
6404 }
6405
6406 if (!p_im)
6407 restart_edit = 0; /* don't want insert mode in help file */
6408
Bram Moolenaar8f535582011-09-30 17:30:31 +02006409#ifdef FEAT_FOLDING
6410 /* Restore KeyTyped, setting 'filetype=help' may reset it.
6411 * It is needed for do_tag top open folds under the cursor. */
6412 KeyTyped = old_KeyTyped;
6413#endif
6414
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415 if (tag != NULL)
6416 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
6417
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006418 /* Delete the empty buffer if we're not using it. Careful: autocommands
6419 * may have jumped to another window, check that the buffer is not in a
6420 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
6422 {
6423 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006424 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425 wipe_buffer(buf, TRUE);
6426 }
6427
6428 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006429 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430 curwin->w_alt_fnum = alt_fnum;
6431
6432erret:
6433 vim_free(tag);
6434}
6435
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006436/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006437 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006438 */
6439 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006440ex_helpclose(exarg_T *eap UNUSED)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006441{
6442 win_T *win;
6443
6444 FOR_ALL_WINDOWS(win)
6445 {
Bram Moolenaard28cc3f2017-07-27 22:03:50 +02006446 if (bt_help(win->w_buffer))
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006447 {
6448 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006449 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006450 }
6451 }
6452}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006454#if defined(FEAT_MULTI_LANG) || defined(PROTO)
6455/*
6456 * In an argument search for a language specifiers in the form "@xx".
6457 * Changes the "@" to NUL if found, and returns a pointer to "xx".
6458 * Returns NULL if not found.
6459 */
6460 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006461check_help_lang(char_u *arg)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006462{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006463 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006464
6465 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
6466 && ASCII_ISALPHA(arg[len - 1]))
6467 {
6468 arg[len - 3] = NUL; /* remove the '@' */
6469 return arg + len - 2;
6470 }
6471 return NULL;
6472}
6473#endif
6474
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475/*
6476 * Return a heuristic indicating how well the given string matches. The
6477 * smaller the number, the better the match. This is the order of priorities,
6478 * from best match to worst match:
6479 * - Match with least alpha-numeric characters is better.
6480 * - Match with least total characters is better.
6481 * - Match towards the start is better.
6482 * - Match starting with "+" is worse (feature instead of command)
6483 * Assumption is made that the matched_string passed has already been found to
6484 * match some string for which help is requested. webb.
6485 */
6486 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006487help_heuristic(
6488 char_u *matched_string,
6489 int offset, /* offset for match */
6490 int wrong_case) /* no matching case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491{
6492 int num_letters;
6493 char_u *p;
6494
6495 num_letters = 0;
6496 for (p = matched_string; *p; p++)
6497 if (ASCII_ISALNUM(*p))
6498 num_letters++;
6499
6500 /*
6501 * Multiply the number of letters by 100 to give it a much bigger
6502 * weighting than the number of characters.
6503 * If there only is a match while ignoring case, add 5000.
6504 * If the match starts in the middle of a word, add 10000 to put it
6505 * somewhere in the last half.
6506 * If the match is more than 2 chars from the start, multiply by 200 to
6507 * put it after matches at the start.
6508 */
6509 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
6510 && ASCII_ISALNUM(matched_string[offset - 1]))
6511 offset += 10000;
6512 else if (offset > 2)
6513 offset *= 200;
6514 if (wrong_case)
6515 offset += 5000;
6516 /* Features are less interesting than the subjects themselves, but "+"
6517 * alone is not a feature. */
6518 if (matched_string[0] == '+' && matched_string[1] != NUL)
6519 offset += 100;
6520 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
6521}
6522
6523/*
6524 * Compare functions for qsort() below, that checks the help heuristics number
6525 * that has been put after the tagname by find_tags().
6526 */
6527 static int
6528#ifdef __BORLANDC__
6529_RTLENTRYF
6530#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006531help_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532{
6533 char *p1;
6534 char *p2;
6535
6536 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
6537 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
6538 return strcmp(p1, p2);
6539}
6540
6541/*
6542 * Find all help tags matching "arg", sort them and return in matches[], with
6543 * the number of matches in num_matches.
6544 * The matches will be sorted with a "best" match algorithm.
6545 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6546 */
6547 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006548find_help_tags(
6549 char_u *arg,
6550 int *num_matches,
6551 char_u ***matches,
6552 int keep_lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553{
6554 char_u *s, *d;
6555 int i;
6556 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006557 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006558 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaardad73092017-02-09 11:54:50 +01006559 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006560 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006561 "[count]", "[quotex]",
6562 "[range]", ":[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006563 "[pattern]", "\\|", "\\%$",
6564 "s/\\~", "s/\\U", "s/\\L",
6565 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006566 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006567 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006568 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaardad73092017-02-09 11:54:50 +01006569 "?", ":?", "?<CR>", "g?", "g?g?", "g??",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006570 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaara76f59d2017-02-09 11:41:01 +01006571 "\\[count]", "\\[quotex]",
6572 "\\[range]", ":\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006573 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006574 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006575 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576 int flags;
6577
6578 d = IObuff; /* assume IObuff is long enough! */
6579
6580 /*
6581 * Recognize a few exceptions to the rule. Some strings that contain '*'
6582 * with "star". Otherwise '*' is recognized as a wildcard.
6583 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006584 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006585 if (STRCMP(arg, mtable[i]) == 0)
6586 {
6587 STRCPY(d, rtable[i]);
6588 break;
6589 }
6590
6591 if (i < 0) /* no match in table */
6592 {
6593 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6594 * Also replace "\%^" and "\%(", they match every tag too.
6595 * Also "\zs", "\z1", etc.
6596 * Also "\@<", "\@=", "\@<=", etc.
6597 * And also "\_$" and "\_^". */
6598 if (arg[0] == '\\'
6599 && ((arg[1] != NUL && arg[2] == NUL)
6600 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6601 && arg[2] != NUL)))
6602 {
6603 STRCPY(d, "/\\\\");
6604 STRCPY(d + 3, arg + 1);
6605 /* Check for "/\\_$", should be "/\\_\$" */
6606 if (d[3] == '_' && d[4] == '$')
6607 STRCPY(d + 4, "\\$");
6608 }
6609 else
6610 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006611 /* Replace:
6612 * "[:...:]" with "\[:...:]"
6613 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006614 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006615 */
6616 if ((arg[0] == '[' && (arg[1] == ':'
6617 || (arg[1] == '+' && arg[2] == '+')))
6618 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619 *d++ = '\\';
6620
Bram Moolenaar00f9e0d2016-03-15 13:44:12 +01006621 /*
6622 * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'.
6623 */
6624 if (*arg == '(' && arg[1] == '\'')
6625 arg++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626 for (s = arg; *s; ++s)
6627 {
6628 /*
6629 * Replace "|" with "bar" and '"' with "quote" to match the name of
6630 * the tags for these commands.
6631 * Replace "*" with ".*" and "?" with "." to match command line
6632 * completion.
6633 * Insert a backslash before '~', '$' and '.' to avoid their
6634 * special meaning.
6635 */
6636 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6637 break;
6638 switch (*s)
6639 {
6640 case '|': STRCPY(d, "bar");
6641 d += 3;
6642 continue;
6643 case '"': STRCPY(d, "quote");
6644 d += 5;
6645 continue;
6646 case '*': *d++ = '.';
6647 break;
6648 case '?': *d++ = '.';
6649 continue;
6650 case '$':
6651 case '.':
6652 case '~': *d++ = '\\';
6653 break;
6654 }
6655
6656 /*
6657 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6658 * ":help i_^_CTRL-D" work.
6659 * Insert '-' before and after "CTRL-X" when applicable.
6660 */
6661 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6662 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6663 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006664 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6665 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666 STRCPY(d, "CTRL-");
6667 d += 5;
6668 if (*s < ' ')
6669 {
6670#ifdef EBCDIC
6671 *d++ = CtrlChar(*s);
6672#else
6673 *d++ = *s + '@';
6674#endif
6675 if (d[-1] == '\\')
6676 *d++ = '\\'; /* double a backslash */
6677 }
6678 else
6679 *d++ = *++s;
6680 if (s[1] != NUL && s[1] != '_')
6681 *d++ = '_'; /* append a '_' */
6682 continue;
6683 }
6684 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6685 *d++ = '\\';
6686
6687 /*
6688 * Insert a backslash before a backslash after a slash, for search
6689 * pattern tags: "/\|" --> "/\\|".
6690 */
6691 else if (s[0] == '\\' && s[1] != '\\'
6692 && *arg == '/' && s == arg + 1)
6693 *d++ = '\\';
6694
6695 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6696 * "CTRL-\_CTRL-N" */
6697 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6698 {
6699 STRCPY(d, "CTRL-\\\\");
6700 d += 7;
6701 s += 6;
6702 }
6703
6704 *d++ = *s;
6705
6706 /*
Bram Moolenaar81edd172016-04-14 13:51:37 +02006707 * If tag contains "({" or "([", tag terminates at the "(".
6708 * This is for help on functions, e.g.: abs({expr}).
6709 */
6710 if (*s == '(' && (s[1] == '{' || s[1] =='['))
6711 break;
6712
6713 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714 * If tag starts with ', toss everything after a second '. Fixes
6715 * CTRL-] on 'option'. (would include the trailing '.').
6716 */
6717 if (*s == '\'' && s > arg && *arg == '\'')
6718 break;
Bram Moolenaar28b942a2016-06-04 22:31:27 +02006719 /* Also '{' and '}'. */
6720 if (*s == '}' && s > arg && *arg == '{')
6721 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006722 }
6723 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006724
6725 if (*IObuff == '`')
6726 {
6727 if (d > IObuff + 2 && d[-1] == '`')
6728 {
6729 /* remove the backticks from `command` */
6730 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6731 d[-2] = NUL;
6732 }
6733 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6734 {
6735 /* remove the backticks and comma from `command`, */
6736 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6737 d[-3] = NUL;
6738 }
6739 else if (d > IObuff + 4 && d[-3] == '`'
6740 && d[-2] == '\\' && d[-1] == '.')
6741 {
6742 /* remove the backticks and dot from `command`\. */
6743 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6744 d[-4] = NUL;
6745 }
6746 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006747 }
6748 }
6749
6750 *matches = (char_u **)"";
6751 *num_matches = 0;
6752 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6753 if (keep_lang)
6754 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006755 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006756 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006757 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758 /* Sort the matches found on the heuristic number that is after the
6759 * tag name. */
6760 qsort((void *)*matches, (size_t)*num_matches,
6761 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006762 /* Delete more than TAG_MANY to reduce the size of the listing. */
6763 while (*num_matches > TAG_MANY)
6764 vim_free((*matches)[--*num_matches]);
6765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006766 return OK;
6767}
6768
6769/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006770 * Called when starting to edit a buffer for a help file.
6771 */
6772 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006773prepare_help_buffer(void)
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006774{
6775 char_u *p;
6776
6777 curbuf->b_help = TRUE;
6778#ifdef FEAT_QUICKFIX
6779 set_string_option_direct((char_u *)"buftype", -1,
6780 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6781#endif
6782
6783 /*
6784 * Always set these options after jumping to a help tag, because the
6785 * user may have an autocommand that gets in the way.
6786 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6787 * latin1 word characters (for translated help files).
6788 * Only set it when needed, buf_init_chartab() is some work.
6789 */
6790 p =
6791#ifdef EBCDIC
6792 (char_u *)"65-255,^*,^|,^\"";
6793#else
6794 (char_u *)"!-~,^*,^|,^\",192-255";
6795#endif
6796 if (STRCMP(curbuf->b_p_isk, p) != 0)
6797 {
6798 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6799 check_buf_options(curbuf);
6800 (void)buf_init_chartab(curbuf, FALSE);
6801 }
6802
Bram Moolenaar0b105412014-11-30 13:34:23 +01006803#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006804 /* Don't use the global foldmethod.*/
6805 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6806 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006807#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006808
6809 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6810 curwin->w_p_list = FALSE; /* no list mode */
6811
6812 curbuf->b_p_ma = FALSE; /* not modifiable */
6813 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6814 curwin->w_p_nu = 0; /* no line numbers */
6815 curwin->w_p_rnu = 0; /* no relative line numbers */
6816 RESET_BINDING(curwin); /* no scroll or cursor binding */
6817#ifdef FEAT_ARABIC
6818 curwin->w_p_arab = FALSE; /* no arabic mode */
6819#endif
6820#ifdef FEAT_RIGHTLEFT
6821 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6822#endif
6823#ifdef FEAT_FOLDING
6824 curwin->w_p_fen = FALSE; /* No folding in the help window */
6825#endif
6826#ifdef FEAT_DIFF
6827 curwin->w_p_diff = FALSE; /* No 'diff' */
6828#endif
6829#ifdef FEAT_SPELL
6830 curwin->w_p_spell = FALSE; /* No spell checking */
6831#endif
6832
6833 set_buflisted(FALSE);
6834}
6835
6836/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006837 * After reading a help file: May cleanup a help buffer when syntax
6838 * highlighting is not used.
6839 */
6840 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006841fix_help_buffer(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842{
6843 linenr_T lnum;
6844 char_u *line;
6845 int in_example = FALSE;
6846 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006847 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848 char_u *p;
6849 char_u *rt;
6850 int mustfree;
6851
Bram Moolenaar157069b2017-06-22 14:56:12 +02006852#ifdef FEAT_AUTOCMD
Bram Moolenaar90492982017-06-22 14:16:31 +02006853 /* Set filetype to "help" if still needed. */
6854 if (STRCMP(curbuf->b_p_ft, "help") != 0)
Bram Moolenaar18141832017-06-25 21:17:25 +02006855 {
6856 ++curbuf_lock;
Bram Moolenaar90492982017-06-22 14:16:31 +02006857 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
Bram Moolenaar18141832017-06-25 21:17:25 +02006858 --curbuf_lock;
6859 }
Bram Moolenaar157069b2017-06-22 14:56:12 +02006860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861
6862#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006863 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864#endif
6865 {
6866 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6867 {
6868 line = ml_get_buf(curbuf, lnum, FALSE);
6869 len = (int)STRLEN(line);
Bram Moolenaar1c465442017-03-12 20:10:05 +01006870 if (in_example && len > 0 && !VIM_ISWHITE(line[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006871 {
6872 /* End of example: non-white or '<' in first column. */
6873 if (line[0] == '<')
6874 {
6875 /* blank-out a '<' in the first column */
6876 line = ml_get_buf(curbuf, lnum, TRUE);
6877 line[0] = ' ';
6878 }
6879 in_example = FALSE;
6880 }
6881 if (!in_example && len > 0)
6882 {
6883 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6884 {
6885 /* blank-out a '>' in the last column (start of example) */
6886 line = ml_get_buf(curbuf, lnum, TRUE);
6887 line[len - 1] = ' ';
6888 in_example = TRUE;
6889 }
6890 else if (line[len - 1] == '~')
6891 {
6892 /* blank-out a '~' at the end of line (header marker) */
6893 line = ml_get_buf(curbuf, lnum, TRUE);
6894 line[len - 1] = ' ';
6895 }
6896 }
6897 }
6898 }
6899
6900 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006901 * In the "help.txt" and "help.abx" file, add the locally added help
6902 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006904 fname = gettail(curbuf->b_fname);
6905 if (fnamecmp(fname, "help.txt") == 0
6906#ifdef FEAT_MULTI_LANG
6907 || (fnamencmp(fname, "help.", 5) == 0
6908 && ASCII_ISALPHA(fname[5])
6909 && ASCII_ISALPHA(fname[6])
6910 && TOLOWER_ASC(fname[7]) == 'x'
6911 && fname[8] == NUL)
6912#endif
6913 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914 {
6915 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6916 {
6917 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006918 if (strstr((char *)line, "*local-additions*") == NULL)
6919 continue;
6920
6921 /* Go through all directories in 'runtimepath', skipping
6922 * $VIMRUNTIME. */
6923 p = p_rtp;
6924 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006925 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006926 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6927 mustfree = FALSE;
6928 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
Bram Moolenaare4db7ae2018-02-13 13:12:11 +01006929 if (rt != NULL && fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006931 int fcount;
6932 char_u **fnames;
6933 FILE *fd;
6934 char_u *s;
6935 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006937 vimconv_T vc;
6938 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939#endif
6940
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006941 /* Find all "doc/ *.txt" files in this directory. */
6942 add_pathsep(NameBuff);
6943#ifdef FEAT_MULTI_LANG
6944 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006945#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006946 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006947#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006948 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6949 &fnames, EW_FILE|EW_SILENT) == OK
6950 && fcount > 0)
6951 {
6952#ifdef FEAT_MULTI_LANG
Bram Moolenaar35c5e812017-12-09 21:10:13 +01006953 int i1, i2;
6954 char_u *f1, *f2;
6955 char_u *t1, *t2;
6956 char_u *e1, *e2;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006957
6958 /* If foo.abx is found use it instead of foo.txt in
6959 * the same directory. */
6960 for (i1 = 0; i1 < fcount; ++i1)
6961 {
6962 for (i2 = 0; i2 < fcount; ++i2)
6963 {
6964 if (i1 == i2)
6965 continue;
6966 if (fnames[i1] == NULL || fnames[i2] == NULL)
6967 continue;
6968 f1 = fnames[i1];
6969 f2 = fnames[i2];
6970 t1 = gettail(f1);
Bram Moolenaar35c5e812017-12-09 21:10:13 +01006971 t2 = gettail(f2);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006972 e1 = vim_strrchr(t1, '.');
Bram Moolenaar35c5e812017-12-09 21:10:13 +01006973 e2 = vim_strrchr(t2, '.');
Bram Moolenaar7756e742016-10-21 20:35:37 +02006974 if (e1 == NULL || e2 == NULL)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006975 continue;
6976 if (fnamecmp(e1, ".txt") != 0
6977 && fnamecmp(e1, fname + 4) != 0)
6978 {
6979 /* Not .txt and not .abx, remove it. */
Bram Moolenaard23a8232018-02-10 18:45:26 +01006980 VIM_CLEAR(fnames[i1]);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006981 continue;
6982 }
Bram Moolenaar35c5e812017-12-09 21:10:13 +01006983 if (e1 - f1 != e2 - f2
6984 || fnamencmp(f1, f2, e1 - f1) != 0)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006985 continue;
6986 if (fnamecmp(e1, ".txt") == 0
6987 && fnamecmp(e2, fname + 4) == 0)
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006988 /* use .abx instead of .txt */
Bram Moolenaard23a8232018-02-10 18:45:26 +01006989 VIM_CLEAR(fnames[i1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006992#endif
6993 for (fi = 0; fi < fcount; ++fi)
6994 {
6995 if (fnames[fi] == NULL)
6996 continue;
6997 fd = mch_fopen((char *)fnames[fi], "r");
6998 if (fd != NULL)
6999 {
7000 vim_fgets(IObuff, IOSIZE, fd);
7001 if (IObuff[0] == '*'
7002 && (s = vim_strchr(IObuff + 1, '*'))
7003 != NULL)
7004 {
7005#ifdef FEAT_MBYTE
7006 int this_utf = MAYBE;
7007#endif
7008 /* Change tag definition to a
7009 * reference and remove <CR>/<NL>. */
7010 IObuff[0] = '|';
7011 *s = '|';
7012 while (*s != NUL)
7013 {
7014 if (*s == '\r' || *s == '\n')
7015 *s = NUL;
7016#ifdef FEAT_MBYTE
7017 /* The text is utf-8 when a byte
7018 * above 127 is found and no
7019 * illegal byte sequence is found.
7020 */
7021 if (*s >= 0x80 && this_utf != FALSE)
7022 {
7023 int l;
7024
7025 this_utf = TRUE;
7026 l = utf_ptr2len(s);
7027 if (l == 1)
7028 this_utf = FALSE;
7029 s += l - 1;
7030 }
7031#endif
7032 ++s;
7033 }
7034#ifdef FEAT_MBYTE
7035 /* The help file is latin1 or utf-8;
7036 * conversion to the current
7037 * 'encoding' may be required. */
7038 vc.vc_type = CONV_NONE;
7039 convert_setup(&vc, (char_u *)(
7040 this_utf == TRUE ? "utf-8"
7041 : "latin1"), p_enc);
7042 if (vc.vc_type == CONV_NONE)
7043 /* No conversion needed. */
7044 cp = IObuff;
7045 else
7046 {
7047 /* Do the conversion. If it fails
7048 * use the unconverted text. */
7049 cp = string_convert(&vc, IObuff,
7050 NULL);
7051 if (cp == NULL)
7052 cp = IObuff;
7053 }
7054 convert_setup(&vc, NULL, NULL);
7055
7056 ml_append(lnum, cp, (colnr_T)0, FALSE);
7057 if (cp != IObuff)
7058 vim_free(cp);
7059#else
7060 ml_append(lnum, IObuff, (colnr_T)0,
7061 FALSE);
7062#endif
7063 ++lnum;
7064 }
7065 fclose(fd);
7066 }
7067 }
7068 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007069 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007071 if (mustfree)
7072 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007073 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02007074 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 }
7076 }
7077}
7078
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007079/*
7080 * ":exusage"
7081 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007082 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007083ex_exusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007084{
7085 do_cmdline_cmd((char_u *)"help ex-cmd-index");
7086}
7087
7088/*
7089 * ":viusage"
7090 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007091 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007092ex_viusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007093{
7094 do_cmdline_cmd((char_u *)"help normal-index");
7095}
7096
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097/*
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007098 * Generate tags in one help directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007099 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007100 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007101helptags_one(
7102 char_u *dir, /* doc directory */
7103 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */
7104 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */
7105 int add_help_tags) /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007106{
7107 FILE *fd_tags;
7108 FILE *fd;
7109 garray_T ga;
7110 int filecount;
7111 char_u **files;
7112 char_u *p1, *p2;
7113 int fi;
7114 char_u *s;
7115 int i;
7116 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007117 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007118# ifdef FEAT_MBYTE
7119 int utf8 = MAYBE;
7120 int this_utf8;
7121 int firstline;
7122 int mix = FALSE; /* detected mixed encodings */
7123# endif
7124
7125 /*
7126 * Find all *.txt files.
7127 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01007128 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007129 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007130 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131 STRCAT(NameBuff, ext);
7132 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7133 EW_FILE|EW_SILENT) == FAIL
7134 || filecount == 0)
7135 {
7136 if (!got_int)
Bram Moolenaar5b302912016-08-24 22:11:55 +02007137 EMSG2(_("E151: No match: %s"), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138 return;
7139 }
7140
7141 /*
7142 * Open the tags file for writing.
7143 * Do this before scanning through all the files.
7144 */
7145 STRCPY(NameBuff, dir);
7146 add_pathsep(NameBuff);
7147 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007148 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007149 if (fd_tags == NULL)
7150 {
7151 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
7152 FreeWild(filecount, files);
7153 return;
7154 }
7155
7156 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007157 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
7158 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 */
7160 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007161 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
7162 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163 {
7164 if (ga_grow(&ga, 1) == FAIL)
7165 got_int = TRUE;
7166 else
7167 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007168 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007169 if (s == NULL)
7170 got_int = TRUE;
7171 else
7172 {
7173 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
7174 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7175 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007176 }
7177 }
7178 }
7179
7180 /*
7181 * Go over all the files and extract the tags.
7182 */
7183 for (fi = 0; fi < filecount && !got_int; ++fi)
7184 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007185 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007186 if (fd == NULL)
7187 {
7188 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
7189 continue;
7190 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007191 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007192
7193# ifdef FEAT_MBYTE
7194 firstline = TRUE;
7195# endif
7196 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
7197 {
7198# ifdef FEAT_MBYTE
7199 if (firstline)
7200 {
7201 /* Detect utf-8 file by a non-ASCII char in the first line. */
7202 this_utf8 = MAYBE;
7203 for (s = IObuff; *s != NUL; ++s)
7204 if (*s >= 0x80)
7205 {
7206 int l;
7207
7208 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007209 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210 if (l == 1)
7211 {
7212 /* Illegal UTF-8 byte sequence. */
7213 this_utf8 = FALSE;
7214 break;
7215 }
7216 s += l - 1;
7217 }
7218 if (this_utf8 == MAYBE) /* only ASCII characters found */
7219 this_utf8 = FALSE;
7220 if (utf8 == MAYBE) /* first file */
7221 utf8 = this_utf8;
7222 else if (utf8 != this_utf8)
7223 {
7224 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
7225 mix = !got_int;
7226 got_int = TRUE;
7227 }
7228 firstline = FALSE;
7229 }
7230# endif
7231 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
7232 while (p1 != NULL)
7233 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02007234 /* Use vim_strbyte() instead of vim_strchr() so that when
7235 * 'encoding' is dbcs it still works, don't find '*' in the
7236 * second byte. */
7237 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007238 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
7239 {
7240 for (s = p1 + 1; s < p2; ++s)
7241 if (*s == ' ' || *s == '\t' || *s == '|')
7242 break;
7243
7244 /*
7245 * Only accept a *tag* when it consists of valid
7246 * characters, there is white space before it and is
7247 * followed by a white character or end-of-line.
7248 */
7249 if (s == p2
7250 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
7251 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
7252 || s[1] == '\0'))
7253 {
7254 *p2 = '\0';
7255 ++p1;
7256 if (ga_grow(&ga, 1) == FAIL)
7257 {
7258 got_int = TRUE;
7259 break;
7260 }
7261 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
7262 if (s == NULL)
7263 {
7264 got_int = TRUE;
7265 break;
7266 }
7267 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7268 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007269 sprintf((char *)s, "%s\t%s", p1, fname);
7270
7271 /* find next '*' */
7272 p2 = vim_strchr(p2 + 1, '*');
7273 }
7274 }
7275 p1 = p2;
7276 }
7277 line_breakcheck();
7278 }
7279
7280 fclose(fd);
7281 }
7282
7283 FreeWild(filecount, files);
7284
7285 if (!got_int)
7286 {
7287 /*
7288 * Sort the tags.
7289 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02007290 if (ga.ga_data != NULL)
7291 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007292
7293 /*
7294 * Check for duplicates.
7295 */
7296 for (i = 1; i < ga.ga_len; ++i)
7297 {
7298 p1 = ((char_u **)ga.ga_data)[i - 1];
7299 p2 = ((char_u **)ga.ga_data)[i];
7300 while (*p1 == *p2)
7301 {
7302 if (*p2 == '\t')
7303 {
7304 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007305 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007306 _("E154: Duplicate tag \"%s\" in file %s/%s"),
7307 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
7308 EMSG(NameBuff);
7309 *p2 = '\t';
7310 break;
7311 }
7312 ++p1;
7313 ++p2;
7314 }
7315 }
7316
7317# ifdef FEAT_MBYTE
7318 if (utf8 == TRUE)
7319 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
7320# endif
7321
7322 /*
7323 * Write the tags into the file.
7324 */
7325 for (i = 0; i < ga.ga_len; ++i)
7326 {
7327 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00007328 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007329 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00007330 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007331 else
7332 {
7333 fprintf(fd_tags, "%s\t/*", s);
7334 for (p1 = s; *p1 != '\t'; ++p1)
7335 {
7336 /* insert backslash before '\\' and '/' */
7337 if (*p1 == '\\' || *p1 == '/')
7338 putc('\\', fd_tags);
7339 putc(*p1, fd_tags);
7340 }
7341 fprintf(fd_tags, "*\n");
7342 }
7343 }
7344 }
7345#ifdef FEAT_MBYTE
7346 if (mix)
7347 got_int = FALSE; /* continue with other languages */
7348#endif
7349
7350 for (i = 0; i < ga.ga_len; ++i)
7351 vim_free(((char_u **)ga.ga_data)[i]);
7352 ga_clear(&ga);
7353 fclose(fd_tags); /* there is no check for an error... */
7354}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007356/*
7357 * Generate tags in one help directory, taking care of translations.
7358 */
7359 static void
7360do_helptags(char_u *dirname, int add_help_tags)
7361{
7362#ifdef FEAT_MULTI_LANG
7363 int len;
7364 int i, j;
7365 garray_T ga;
7366 char_u lang[2];
7367 char_u ext[5];
7368 char_u fname[8];
7369 int filecount;
7370 char_u **files;
7371
7372 /* Get a list of all files in the help directory and in subdirectories. */
7373 STRCPY(NameBuff, dirname);
7374 add_pathsep(NameBuff);
7375 STRCAT(NameBuff, "**");
7376 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7377 EW_FILE|EW_SILENT) == FAIL
7378 || filecount == 0)
7379 {
Bram Moolenaar5b302912016-08-24 22:11:55 +02007380 EMSG2(_("E151: No match: %s"), NameBuff);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007381 return;
7382 }
7383
7384 /* Go over all files in the directory to find out what languages are
7385 * present. */
7386 ga_init2(&ga, 1, 10);
7387 for (i = 0; i < filecount; ++i)
7388 {
7389 len = (int)STRLEN(files[i]);
7390 if (len > 4)
7391 {
7392 if (STRICMP(files[i] + len - 4, ".txt") == 0)
7393 {
7394 /* ".txt" -> language "en" */
7395 lang[0] = 'e';
7396 lang[1] = 'n';
7397 }
7398 else if (files[i][len - 4] == '.'
7399 && ASCII_ISALPHA(files[i][len - 3])
7400 && ASCII_ISALPHA(files[i][len - 2])
7401 && TOLOWER_ASC(files[i][len - 1]) == 'x')
7402 {
7403 /* ".abx" -> language "ab" */
7404 lang[0] = TOLOWER_ASC(files[i][len - 3]);
7405 lang[1] = TOLOWER_ASC(files[i][len - 2]);
7406 }
7407 else
7408 continue;
7409
7410 /* Did we find this language already? */
7411 for (j = 0; j < ga.ga_len; j += 2)
7412 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
7413 break;
7414 if (j == ga.ga_len)
7415 {
7416 /* New language, add it. */
7417 if (ga_grow(&ga, 2) == FAIL)
7418 break;
7419 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
7420 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
7421 }
7422 }
7423 }
7424
7425 /*
7426 * Loop over the found languages to generate a tags file for each one.
7427 */
7428 for (j = 0; j < ga.ga_len; j += 2)
7429 {
7430 STRCPY(fname, "tags-xx");
7431 fname[5] = ((char_u *)ga.ga_data)[j];
7432 fname[6] = ((char_u *)ga.ga_data)[j + 1];
7433 if (fname[5] == 'e' && fname[6] == 'n')
7434 {
7435 /* English is an exception: use ".txt" and "tags". */
7436 fname[4] = NUL;
7437 STRCPY(ext, ".txt");
7438 }
7439 else
7440 {
7441 /* Language "ab" uses ".abx" and "tags-ab". */
7442 STRCPY(ext, ".xxx");
7443 ext[1] = fname[5];
7444 ext[2] = fname[6];
7445 }
7446 helptags_one(dirname, ext, fname, add_help_tags);
7447 }
7448
7449 ga_clear(&ga);
7450 FreeWild(filecount, files);
7451
7452#else
7453 /* No language support, just use "*.txt" and "tags". */
7454 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
7455#endif
7456}
7457
7458 static void
7459helptags_cb(char_u *fname, void *cookie)
7460{
7461 do_helptags(fname, *(int *)cookie);
7462}
7463
7464/*
7465 * ":helptags"
7466 */
7467 void
7468ex_helptags(exarg_T *eap)
7469{
7470 expand_T xpc;
7471 char_u *dirname;
7472 int add_help_tags = FALSE;
7473
7474 /* Check for ":helptags ++t {dir}". */
Bram Moolenaar1c465442017-03-12 20:10:05 +01007475 if (STRNCMP(eap->arg, "++t", 3) == 0 && VIM_ISWHITE(eap->arg[3]))
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007476 {
7477 add_help_tags = TRUE;
7478 eap->arg = skipwhite(eap->arg + 3);
7479 }
7480
7481 if (STRCMP(eap->arg, "ALL") == 0)
7482 {
7483 do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR,
7484 helptags_cb, &add_help_tags);
7485 }
7486 else
7487 {
7488 ExpandInit(&xpc);
7489 xpc.xp_context = EXPAND_DIRECTORIES;
7490 dirname = ExpandOne(&xpc, eap->arg, NULL,
7491 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
7492 if (dirname == NULL || !mch_isdir(dirname))
7493 EMSG2(_("E150: Not a directory: %s"), eap->arg);
7494 else
7495 do_helptags(dirname, add_help_tags);
7496 vim_free(dirname);
7497 }
7498}
7499
Bram Moolenaar071d4272004-06-13 20:20:40 +00007500#if defined(FEAT_SIGNS) || defined(PROTO)
7501
7502/*
7503 * Struct to hold the sign properties.
7504 */
7505typedef struct sign sign_T;
7506
7507struct sign
7508{
7509 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02007510 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007511 char_u *sn_name; /* name of sign */
7512 char_u *sn_icon; /* name of pixmap */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007513# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007514 void *sn_image; /* icon image */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007515# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007516 char_u *sn_text; /* text used instead of pixmap */
7517 int sn_line_hl; /* highlight ID for line */
7518 int sn_text_hl; /* highlight ID for text */
7519};
7520
Bram Moolenaar071d4272004-06-13 20:20:40 +00007521static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007522static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007523
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01007524static int sign_cmd_idx(char_u *begin_cmd, char_u *end_cmd);
7525static void sign_list_defined(sign_T *sp);
7526static void sign_undefine(sign_T *sp, sign_T *sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007527
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007528static char *cmds[] = {
7529 "define",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007530# define SIGNCMD_DEFINE 0
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007531 "undefine",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007532# define SIGNCMD_UNDEFINE 1
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007533 "list",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007534# define SIGNCMD_LIST 2
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007535 "place",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007536# define SIGNCMD_PLACE 3
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007537 "unplace",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007538# define SIGNCMD_UNPLACE 4
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007539 "jump",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007540# define SIGNCMD_JUMP 5
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007541 NULL
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007542# define SIGNCMD_LAST 6
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007543};
7544
7545/*
7546 * Find index of a ":sign" subcmd from its name.
7547 * "*end_cmd" must be writable.
7548 */
7549 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007550sign_cmd_idx(
7551 char_u *begin_cmd, /* begin of sign subcmd */
7552 char_u *end_cmd) /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007553{
7554 int idx;
7555 char save = *end_cmd;
7556
7557 *end_cmd = NUL;
7558 for (idx = 0; ; ++idx)
7559 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
7560 break;
7561 *end_cmd = save;
7562 return idx;
7563}
7564
Bram Moolenaar071d4272004-06-13 20:20:40 +00007565/*
7566 * ":sign" command
7567 */
7568 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007569ex_sign(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007570{
7571 char_u *arg = eap->arg;
7572 char_u *p;
7573 int idx;
7574 sign_T *sp;
7575 sign_T *sp_prev;
Bram Moolenaaraeeb6882017-11-11 16:45:19 +01007576 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007577
7578 /* Parse the subcommand. */
7579 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007580 idx = sign_cmd_idx(arg, p);
7581 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007582 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007583 EMSG2(_("E160: Unknown sign command: %s"), arg);
7584 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007585 }
7586 arg = skipwhite(p);
7587
7588 if (idx <= SIGNCMD_LIST)
7589 {
7590 /*
7591 * Define, undefine or list signs.
7592 */
7593 if (idx == SIGNCMD_LIST && *arg == NUL)
7594 {
7595 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007596 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007597 sign_list_defined(sp);
7598 }
7599 else if (*arg == NUL)
7600 EMSG(_("E156: Missing sign name"));
7601 else
7602 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007603 /* Isolate the sign name. If it's a number skip leading zeroes,
7604 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007605 p = skiptowhite(arg);
7606 if (*p != NUL)
7607 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007608 while (arg[0] == '0' && arg[1] != NUL)
7609 ++arg;
7610
Bram Moolenaar071d4272004-06-13 20:20:40 +00007611 sp_prev = NULL;
7612 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7613 {
7614 if (STRCMP(sp->sn_name, arg) == 0)
7615 break;
7616 sp_prev = sp;
7617 }
7618 if (idx == SIGNCMD_DEFINE)
7619 {
7620 /* ":sign define {name} ...": define a sign */
7621 if (sp == NULL)
7622 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007623 sign_T *lp;
7624 int start = next_sign_typenr;
7625
Bram Moolenaar071d4272004-06-13 20:20:40 +00007626 /* Allocate a new sign. */
7627 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7628 if (sp == NULL)
7629 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007630
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007631 /* Check that next_sign_typenr is not already being used.
7632 * This only happens after wrapping around. Hopefully
7633 * another one got deleted and we can use its number. */
7634 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007635 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007636 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007638 ++next_sign_typenr;
7639 if (next_sign_typenr == MAX_TYPENR)
7640 next_sign_typenr = 1;
7641 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007642 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007643 vim_free(sp);
7644 EMSG(_("E612: Too many signs defined"));
7645 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007646 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007647 lp = first_sign; /* start all over */
7648 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007649 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007650 lp = lp->sn_next;
7651 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007652
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007653 sp->sn_typenr = next_sign_typenr;
7654 if (++next_sign_typenr == MAX_TYPENR)
7655 next_sign_typenr = 1; /* wrap around */
7656
7657 sp->sn_name = vim_strsave(arg);
7658 if (sp->sn_name == NULL) /* out of memory */
7659 {
7660 vim_free(sp);
7661 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007662 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007663
7664 /* add the new sign to the list of signs */
7665 if (sp_prev == NULL)
7666 first_sign = sp;
7667 else
7668 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007669 }
7670
7671 /* set values for a defined sign. */
7672 for (;;)
7673 {
7674 arg = skipwhite(p);
7675 if (*arg == NUL)
7676 break;
7677 p = skiptowhite_esc(arg);
7678 if (STRNCMP(arg, "icon=", 5) == 0)
7679 {
7680 arg += 5;
7681 vim_free(sp->sn_icon);
7682 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7683 backslash_halve(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007684# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007685 if (gui.in_use)
7686 {
7687 out_flush();
7688 if (sp->sn_image != NULL)
7689 gui_mch_destroy_sign(sp->sn_image);
7690 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7691 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007692# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007693 }
7694 else if (STRNCMP(arg, "text=", 5) == 0)
7695 {
7696 char_u *s;
7697 int cells;
7698 int len;
7699
7700 arg += 5;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007701# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007702 /* Count cells and check for non-printable chars */
7703 if (has_mbyte)
7704 {
7705 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007706 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007707 {
7708 if (!vim_isprintc((*mb_ptr2char)(s)))
7709 break;
7710 cells += (*mb_ptr2cells)(s);
7711 }
7712 }
7713 else
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007714# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007715 {
7716 for (s = arg; s < p; ++s)
7717 if (!vim_isprintc(*s))
7718 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007719 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007720 }
7721 /* Currently must be one or two display cells */
7722 if (s != p || cells < 1 || cells > 2)
7723 {
7724 *p = NUL;
7725 EMSG2(_("E239: Invalid sign text: %s"), arg);
7726 return;
7727 }
7728
7729 vim_free(sp->sn_text);
7730 /* Allocate one byte more if we need to pad up
7731 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007732 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007733 sp->sn_text = vim_strnsave(arg, len);
7734
7735 if (sp->sn_text != NULL && cells == 1)
7736 STRCPY(sp->sn_text + len - 1, " ");
7737 }
7738 else if (STRNCMP(arg, "linehl=", 7) == 0)
7739 {
7740 arg += 7;
7741 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7742 }
7743 else if (STRNCMP(arg, "texthl=", 7) == 0)
7744 {
7745 arg += 7;
7746 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7747 }
7748 else
7749 {
7750 EMSG2(_(e_invarg2), arg);
7751 return;
7752 }
7753 }
7754 }
7755 else if (sp == NULL)
7756 EMSG2(_("E155: Unknown sign: %s"), arg);
7757 else if (idx == SIGNCMD_LIST)
7758 /* ":sign list {name}" */
7759 sign_list_defined(sp);
7760 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007761 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007762 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007763 }
7764 }
7765 else
7766 {
7767 int id = -1;
7768 linenr_T lnum = -1;
7769 char_u *sign_name = NULL;
7770 char_u *arg1;
7771
7772 if (*arg == NUL)
7773 {
7774 if (idx == SIGNCMD_PLACE)
7775 {
7776 /* ":sign place": list placed signs in all buffers */
7777 sign_list_placed(NULL);
7778 }
7779 else if (idx == SIGNCMD_UNPLACE)
7780 {
7781 /* ":sign unplace": remove placed sign at cursor */
7782 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7783 if (id > 0)
7784 {
7785 buf_delsign(curwin->w_buffer, id);
7786 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7787 }
7788 else
7789 EMSG(_("E159: Missing sign number"));
7790 }
7791 else
7792 EMSG(_(e_argreq));
7793 return;
7794 }
7795
7796 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7797 {
7798 /* ":sign unplace *": remove all placed signs */
7799 buf_delete_all_signs();
7800 return;
7801 }
7802
7803 /* first arg could be placed sign id */
7804 arg1 = arg;
7805 if (VIM_ISDIGIT(*arg))
7806 {
7807 id = getdigits(&arg);
Bram Moolenaar1c465442017-03-12 20:10:05 +01007808 if (!VIM_ISWHITE(*arg) && *arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007809 {
7810 id = -1;
7811 arg = arg1;
7812 }
7813 else
7814 {
7815 arg = skipwhite(arg);
7816 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7817 {
7818 /* ":sign unplace {id}": remove placed sign by number */
Bram Moolenaar29323592016-07-24 22:04:11 +02007819 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007820 if ((lnum = buf_delsign(buf, id)) != 0)
7821 update_debug_sign(buf, lnum);
7822 return;
7823 }
7824 }
7825 }
7826
7827 /*
7828 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7829 * Leave "arg" pointing to {fname}.
7830 */
7831 for (;;)
7832 {
7833 if (STRNCMP(arg, "line=", 5) == 0)
7834 {
7835 arg += 5;
7836 lnum = atoi((char *)arg);
7837 arg = skiptowhite(arg);
7838 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007839 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7840 {
7841 if (id != -1)
7842 {
7843 EMSG(_(e_invarg));
7844 return;
7845 }
7846 id = -2;
7847 arg = skiptowhite(arg + 1);
7848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007849 else if (STRNCMP(arg, "name=", 5) == 0)
7850 {
7851 arg += 5;
7852 sign_name = arg;
7853 arg = skiptowhite(arg);
7854 if (*arg != NUL)
7855 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007856 while (sign_name[0] == '0' && sign_name[1] != NUL)
7857 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007858 }
7859 else if (STRNCMP(arg, "file=", 5) == 0)
7860 {
7861 arg += 5;
7862 buf = buflist_findname(arg);
7863 break;
7864 }
7865 else if (STRNCMP(arg, "buffer=", 7) == 0)
7866 {
7867 arg += 7;
7868 buf = buflist_findnr((int)getdigits(&arg));
7869 if (*skipwhite(arg) != NUL)
7870 EMSG(_(e_trailing));
7871 break;
7872 }
7873 else
7874 {
7875 EMSG(_(e_invarg));
7876 return;
7877 }
7878 arg = skipwhite(arg);
7879 }
7880
7881 if (buf == NULL)
7882 {
7883 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7884 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007885 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007886 {
7887 if (lnum >= 0 || sign_name != NULL)
7888 EMSG(_(e_invarg));
7889 else
7890 /* ":sign place file={fname}": list placed signs in one file */
7891 sign_list_placed(buf);
7892 }
7893 else if (idx == SIGNCMD_JUMP)
7894 {
7895 /* ":sign jump {id} file={fname}" */
7896 if (lnum >= 0 || sign_name != NULL)
7897 EMSG(_(e_invarg));
7898 else if ((lnum = buf_findsign(buf, id)) > 0)
7899 { /* goto a sign ... */
7900 if (buf_jump_open_win(buf) != NULL)
7901 { /* ... in a current window */
7902 curwin->w_cursor.lnum = lnum;
7903 check_cursor_lnum();
7904 beginline(BL_WHITE);
7905 }
7906 else
7907 { /* ... not currently in a window */
7908 char_u *cmd;
7909
Bram Moolenaarbfd096d2016-08-17 22:29:09 +02007910 if (buf->b_fname == NULL)
7911 {
7912 EMSG(_("E934: Cannot jump to a buffer that does not have a name"));
7913 return;
7914 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007915 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7916 if (cmd == NULL)
7917 return;
7918 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7919 do_cmdline_cmd(cmd);
7920 vim_free(cmd);
7921 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007922# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00007923 foldOpenCursor();
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007924# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007925 }
7926 else
7927 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7928 }
7929 else if (idx == SIGNCMD_UNPLACE)
7930 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007931 if (lnum >= 0 || sign_name != NULL)
7932 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007933 else if (id == -2)
7934 {
7935 /* ":sign unplace * file={fname}" */
7936 redraw_buf_later(buf, NOT_VALID);
7937 buf_delete_signs(buf);
7938 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007939 else
7940 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007941 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007942 lnum = buf_delsign(buf, id);
7943 update_debug_sign(buf, lnum);
7944 }
7945 }
7946 /* idx == SIGNCMD_PLACE */
7947 else if (sign_name != NULL)
7948 {
7949 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7950 if (STRCMP(sp->sn_name, sign_name) == 0)
7951 break;
7952 if (sp == NULL)
7953 {
7954 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7955 return;
7956 }
7957 if (lnum > 0)
7958 /* ":sign place {id} line={lnum} name={name} file={fname}":
7959 * place a sign */
7960 buf_addsign(buf, id, lnum, sp->sn_typenr);
7961 else
7962 /* ":sign place {id} file={fname}": change sign type */
7963 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02007964 if (lnum > 0)
7965 update_debug_sign(buf, lnum);
7966 else
7967 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007968 }
7969 else
7970 EMSG(_(e_invarg));
7971 }
7972}
7973
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007974# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007975/*
7976 * Allocate the icons. Called when the GUI has started. Allows defining
7977 * signs before it starts.
7978 */
7979 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007980sign_gui_started(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007981{
7982 sign_T *sp;
7983
7984 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7985 if (sp->sn_icon != NULL)
7986 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7987}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007988# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007989
7990/*
7991 * List one sign.
7992 */
7993 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007994sign_list_defined(sign_T *sp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007995{
7996 char_u *p;
7997
Bram Moolenaar555b2802005-05-19 21:08:39 +00007998 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007999 if (sp->sn_icon != NULL)
8000 {
8001 MSG_PUTS(" icon=");
8002 msg_outtrans(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008003# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00008004 if (sp->sn_image == NULL)
8005 MSG_PUTS(_(" (NOT FOUND)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008006# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008007 MSG_PUTS(_(" (not supported)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008008# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008009 }
8010 if (sp->sn_text != NULL)
8011 {
8012 MSG_PUTS(" text=");
8013 msg_outtrans(sp->sn_text);
8014 }
8015 if (sp->sn_line_hl > 0)
8016 {
8017 MSG_PUTS(" linehl=");
Bram Moolenaarc96272e2017-03-26 13:50:09 +02008018 p = get_highlight_name_ext(NULL, sp->sn_line_hl - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008019 if (p == NULL)
8020 MSG_PUTS("NONE");
8021 else
8022 msg_puts(p);
8023 }
8024 if (sp->sn_text_hl > 0)
8025 {
8026 MSG_PUTS(" texthl=");
Bram Moolenaarc96272e2017-03-26 13:50:09 +02008027 p = get_highlight_name_ext(NULL, sp->sn_text_hl - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008028 if (p == NULL)
8029 MSG_PUTS("NONE");
8030 else
8031 msg_puts(p);
8032 }
8033}
8034
8035/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008036 * Undefine a sign and free its memory.
8037 */
8038 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008039sign_undefine(sign_T *sp, sign_T *sp_prev)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008040{
8041 vim_free(sp->sn_name);
8042 vim_free(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008043# ifdef FEAT_SIGN_ICONS
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008044 if (sp->sn_image != NULL)
8045 {
8046 out_flush();
8047 gui_mch_destroy_sign(sp->sn_image);
8048 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008049# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008050 vim_free(sp->sn_text);
8051 if (sp_prev == NULL)
8052 first_sign = sp->sn_next;
8053 else
8054 sp_prev->sn_next = sp->sn_next;
8055 vim_free(sp);
8056}
8057
8058/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008059 * Get highlighting attribute for sign "typenr".
8060 * If "line" is TRUE: line highl, if FALSE: text highl.
8061 */
8062 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008063sign_get_attr(int typenr, int line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008064{
8065 sign_T *sp;
8066
8067 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8068 if (sp->sn_typenr == typenr)
8069 {
8070 if (line)
8071 {
8072 if (sp->sn_line_hl > 0)
8073 return syn_id2attr(sp->sn_line_hl);
8074 }
8075 else
8076 {
8077 if (sp->sn_text_hl > 0)
8078 return syn_id2attr(sp->sn_text_hl);
8079 }
8080 break;
8081 }
8082 return 0;
8083}
8084
8085/*
8086 * Get text mark for sign "typenr".
8087 * Returns NULL if there isn't one.
8088 */
8089 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008090sign_get_text(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008091{
8092 sign_T *sp;
8093
8094 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8095 if (sp->sn_typenr == typenr)
8096 return sp->sn_text;
8097 return NULL;
8098}
8099
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008100# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008101 void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008102sign_get_image(
8103 int typenr) /* the attribute which may have a sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008104{
8105 sign_T *sp;
8106
8107 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8108 if (sp->sn_typenr == typenr)
8109 return sp->sn_image;
8110 return NULL;
8111}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008112# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113
8114/*
8115 * Get the name of a sign by its typenr.
8116 */
8117 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008118sign_typenr2name(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008119{
8120 sign_T *sp;
8121
8122 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8123 if (sp->sn_typenr == typenr)
8124 return sp->sn_name;
8125 return (char_u *)_("[Deleted]");
8126}
8127
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008128# if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008129/*
8130 * Undefine/free all signs.
8131 */
8132 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008133free_signs(void)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008134{
8135 while (first_sign != NULL)
8136 sign_undefine(first_sign, NULL);
8137}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008138# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008139
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008140# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008141static enum
8142{
8143 EXP_SUBCMD, /* expand :sign sub-commands */
8144 EXP_DEFINE, /* expand :sign define {name} args */
8145 EXP_PLACE, /* expand :sign place {id} args */
8146 EXP_UNPLACE, /* expand :sign unplace" */
8147 EXP_SIGN_NAMES /* expand with name of placed signs */
8148} expand_what;
8149
8150/*
8151 * Function given to ExpandGeneric() to obtain the sign command
8152 * expansion.
8153 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008154 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008155get_sign_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008156{
8157 sign_T *sp;
8158 int current_idx;
8159
8160 switch (expand_what)
8161 {
8162 case EXP_SUBCMD:
8163 return (char_u *)cmds[idx];
8164 case EXP_DEFINE:
8165 {
8166 char *define_arg[] =
8167 {
8168 "icon=", "linehl=", "text=", "texthl=", NULL
8169 };
8170 return (char_u *)define_arg[idx];
8171 }
8172 case EXP_PLACE:
8173 {
8174 char *place_arg[] =
8175 {
8176 "line=", "name=", "file=", "buffer=", NULL
8177 };
8178 return (char_u *)place_arg[idx];
8179 }
8180 case EXP_UNPLACE:
8181 {
8182 char *unplace_arg[] = { "file=", "buffer=", NULL };
8183 return (char_u *)unplace_arg[idx];
8184 }
8185 case EXP_SIGN_NAMES:
8186 /* Complete with name of signs already defined */
8187 current_idx = 0;
8188 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8189 if (current_idx++ == idx)
8190 return sp->sn_name;
8191 return NULL;
8192 default:
8193 return NULL;
8194 }
8195}
8196
8197/*
8198 * Handle command line completion for :sign command.
8199 */
8200 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008201set_context_in_sign_cmd(expand_T *xp, char_u *arg)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008202{
8203 char_u *p;
8204 char_u *end_subcmd;
8205 char_u *last;
8206 int cmd_idx;
8207 char_u *begin_subcmd_args;
8208
8209 /* Default: expand subcommands. */
8210 xp->xp_context = EXPAND_SIGN;
8211 expand_what = EXP_SUBCMD;
8212 xp->xp_pattern = arg;
8213
8214 end_subcmd = skiptowhite(arg);
8215 if (*end_subcmd == NUL)
8216 /* expand subcmd name
8217 * :sign {subcmd}<CTRL-D>*/
8218 return;
8219
8220 cmd_idx = sign_cmd_idx(arg, end_subcmd);
8221
8222 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008223 * |
8224 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008225 begin_subcmd_args = skipwhite(end_subcmd);
8226 p = skiptowhite(begin_subcmd_args);
8227 if (*p == NUL)
8228 {
8229 /*
8230 * Expand first argument of subcmd when possible.
8231 * For ":jump {id}" and ":unplace {id}", we could
8232 * possibly expand the ids of all signs already placed.
8233 */
8234 xp->xp_pattern = begin_subcmd_args;
8235 switch (cmd_idx)
8236 {
8237 case SIGNCMD_LIST:
8238 case SIGNCMD_UNDEFINE:
8239 /* :sign list <CTRL-D>
8240 * :sign undefine <CTRL-D> */
8241 expand_what = EXP_SIGN_NAMES;
8242 break;
8243 default:
8244 xp->xp_context = EXPAND_NOTHING;
8245 }
8246 return;
8247 }
8248
8249 /* expand last argument of subcmd */
8250
8251 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008252 * |
8253 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008254
8255 /* Loop until reaching last argument. */
8256 do
8257 {
8258 p = skipwhite(p);
8259 last = p;
8260 p = skiptowhite(p);
8261 } while (*p != NUL);
8262
8263 p = vim_strchr(last, '=');
8264
8265 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008266 * | |
8267 * last p */
Bram Moolenaar7756e742016-10-21 20:35:37 +02008268 if (p == NULL)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008269 {
8270 /* Expand last argument name (before equal sign). */
8271 xp->xp_pattern = last;
8272 switch (cmd_idx)
8273 {
8274 case SIGNCMD_DEFINE:
8275 expand_what = EXP_DEFINE;
8276 break;
8277 case SIGNCMD_PLACE:
8278 expand_what = EXP_PLACE;
8279 break;
8280 case SIGNCMD_JUMP:
8281 case SIGNCMD_UNPLACE:
8282 expand_what = EXP_UNPLACE;
8283 break;
8284 default:
8285 xp->xp_context = EXPAND_NOTHING;
8286 }
8287 }
8288 else
8289 {
8290 /* Expand last argument value (after equal sign). */
8291 xp->xp_pattern = p + 1;
8292 switch (cmd_idx)
8293 {
8294 case SIGNCMD_DEFINE:
8295 if (STRNCMP(last, "texthl", p - last) == 0 ||
8296 STRNCMP(last, "linehl", p - last) == 0)
8297 xp->xp_context = EXPAND_HIGHLIGHT;
8298 else if (STRNCMP(last, "icon", p - last) == 0)
8299 xp->xp_context = EXPAND_FILES;
8300 else
8301 xp->xp_context = EXPAND_NOTHING;
8302 break;
8303 case SIGNCMD_PLACE:
8304 if (STRNCMP(last, "name", p - last) == 0)
8305 expand_what = EXP_SIGN_NAMES;
8306 else
8307 xp->xp_context = EXPAND_NOTHING;
8308 break;
8309 default:
8310 xp->xp_context = EXPAND_NOTHING;
8311 }
8312 }
8313}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008314# endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008315#endif
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008316
8317/*
8318 * Make the user happy.
8319 */
8320 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008321ex_smile(exarg_T *eap UNUSED)
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008322{
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008323 static char *code[] = {
8324 "\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$",
8325 "\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"
8326 };
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008327 char *p;
8328 int n;
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008329 int i;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008330
8331 msg_start();
8332 msg_putchar('\n');
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008333 for (i = 0; i < 2; ++i)
8334 for (p = code[i]; *p != NUL; ++p)
8335 if (*p == 'x')
8336 msg_putchar('\n');
8337 else
8338 for (n = *p++; n > 0; --n)
8339 if (*p == 'o' || *p == '$')
Bram Moolenaar8820b482017-03-16 17:23:31 +01008340 msg_putchar_attr(*p, HL_ATTR(HLF_L));
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008341 else
8342 msg_putchar(*p);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008343 msg_clr_eos();
8344}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008345
Bram Moolenaar071d4272004-06-13 20:20:40 +00008346/*
8347 * ":drop"
8348 * Opens the first argument in a window. When there are two or more arguments
8349 * the argument list is redefined.
8350 */
8351 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008352ex_drop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008353{
8354 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008355 win_T *wp;
8356 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008357 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008358
8359 /*
8360 * Check if the first argument is already being edited in a window. If
8361 * so, jump to that window.
8362 * We would actually need to check all arguments, but that's complicated
8363 * and mostly only one file is dropped.
8364 * This also ignores wildcards, since it is very unlikely the user is
8365 * editing a file name with a wildcard character.
8366 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008367 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008368
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00008369 /*
8370 * Expanding wildcards may result in an empty argument list. E.g. when
8371 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
8372 * already did an error message for this.
8373 */
8374 if (ARGCOUNT == 0)
8375 return;
8376
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008377 if (cmdmod.tab)
8378 {
8379 /* ":tab drop file ...": open a tab for each argument that isn't
8380 * edited in a window yet. It's like ":tab all" but without closing
8381 * windows or tabs. */
8382 ex_all(eap);
8383 }
8384 else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008385 {
8386 /* ":drop file ...": Edit the first argument. Jump to an existing
8387 * window if possible, edit in current window if the current buffer
8388 * can be abandoned, otherwise open a new window. */
8389 buf = buflist_findnr(ARGLIST[0].ae_fnum);
8390
8391 FOR_ALL_TAB_WINDOWS(tp, wp)
8392 {
8393 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008394 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00008395 goto_tabpage_win(tp, wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008396 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008397 return;
8398 }
8399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008400
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008401 /*
8402 * Check whether the current buffer is changed. If so, we will need
8403 * to split the current window or data could be lost.
8404 * Skip the check if the 'hidden' option is set, as in this case the
8405 * buffer won't be lost.
8406 */
Bram Moolenaareb44a682017-08-03 22:44:55 +02008407 if (!buf_hide(curbuf))
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008408 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008409 ++emsg_off;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01008410 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008411 --emsg_off;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008412 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008413
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008414 /* Fake a ":sfirst" or ":first" command edit the first argument. */
8415 if (split)
8416 {
8417 eap->cmdidx = CMD_sfirst;
8418 eap->cmd[0] = 's';
8419 }
8420 else
8421 eap->cmdidx = CMD_first;
8422 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008424}
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008425
Bram Moolenaar9baf2972016-08-21 22:39:35 +02008426/*
8427 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
8428 * Put the start of the pattern in "*s", unless "s" is NULL.
8429 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
8430 * If "s" is not NULL terminate the pattern with a NUL.
8431 * Return a pointer to the char just past the pattern plus flags.
8432 */
8433 char_u *
8434skip_vimgrep_pat(char_u *p, char_u **s, int *flags)
8435{
8436 int c;
8437
8438 if (vim_isIDc(*p))
8439 {
8440 /* ":vimgrep pattern fname" */
8441 if (s != NULL)
8442 *s = p;
8443 p = skiptowhite(p);
8444 if (s != NULL && *p != NUL)
8445 *p++ = NUL;
8446 }
8447 else
8448 {
8449 /* ":vimgrep /pattern/[g][j] fname" */
8450 if (s != NULL)
8451 *s = p + 1;
8452 c = *p;
8453 p = skip_regexp(p + 1, c, TRUE, NULL);
8454 if (*p != c)
8455 return NULL;
8456
8457 /* Truncate the pattern. */
8458 if (s != NULL)
8459 *p = NUL;
8460 ++p;
8461
8462 /* Find the flags */
8463 while (*p == 'g' || *p == 'j')
8464 {
8465 if (flags != NULL)
8466 {
8467 if (*p == 'g')
8468 *flags |= VGR_GLOBAL;
8469 else
8470 *flags |= VGR_NOJUMP;
8471 }
8472 ++p;
8473 }
8474 }
8475 return p;
8476}
Bram Moolenaar9baf2972016-08-21 22:39:35 +02008477
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008478#if defined(FEAT_EVAL) || defined(PROTO)
8479/*
8480 * List v:oldfiles in a nice way.
8481 */
8482 void
8483ex_oldfiles(exarg_T *eap UNUSED)
8484{
8485 list_T *l = get_vim_var_list(VV_OLDFILES);
8486 listitem_T *li;
8487 int nr = 0;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008488 char_u *fname;
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008489
8490 if (l == NULL)
8491 msg((char_u *)_("No old files"));
8492 else
8493 {
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008494 msg_start();
8495 msg_scroll = TRUE;
8496 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
8497 {
8498 ++nr;
8499 fname = get_tv_string(&li->li_tv);
Bram Moolenaard6f2ee32016-08-24 00:30:52 +02008500 if (!message_filtered(fname))
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008501 {
8502 msg_outnum((long)nr);
8503 MSG_PUTS(": ");
8504 msg_outtrans(fname);
Bram Moolenaar885c00e2016-08-28 17:08:17 +02008505 msg_clr_eos();
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008506 msg_putchar('\n');
8507 out_flush(); /* output one line at a time */
8508 ui_breakcheck();
8509 }
8510 }
Bram Moolenaare11d61a2016-08-20 18:36:54 +02008511
8512 /* Assume "got_int" was set to truncate the listing. */
8513 got_int = FALSE;
8514
8515# ifdef FEAT_BROWSE_CMD
8516 if (cmdmod.browse)
8517 {
8518 quit_more = FALSE;
8519 nr = prompt_for_number(FALSE);
8520 msg_starthere();
8521 if (nr > 0)
8522 {
8523 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
8524 (long)nr);
8525
8526 if (p != NULL)
8527 {
8528 p = expand_env_save(p);
8529 eap->arg = p;
8530 eap->cmdidx = CMD_edit;
8531 cmdmod.browse = FALSE;
8532 do_exedit(eap, NULL);
8533 vim_free(p);
8534 }
8535 }
8536 }
8537# endif
8538 }
8539}
8540#endif