blob: d93a7ec7fcf476d3642f31d0f0747aefec4520e1 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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)
180 width = W_WIDTH(curwin) - curbuf->b_p_wm;
181 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);
259 last > first && vim_iswhite(last[-1]); --last)
260 ;
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 {
403 if (vim_iswhite(*p))
404 ;
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 {
686 if (vim_iswhite(ptr[col]))
687 {
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
802 int isFolded;
803
804 /* Moving lines seems to corrupt the folds, delete folding info now
805 * and recreate it when finished. Don't do this for manual folding, it
806 * would delete all folds. */
807 isFolded = hasAnyFolding(curwin) && !foldmethodIsManual(curwin);
808 if (isFolded)
809 deleteFoldRecurse(&curwin->w_folds);
810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
812 if (dest >= line1 && dest < line2)
813 {
814 EMSG(_("E134: Move lines into themselves"));
815 return FAIL;
816 }
817
818 num_lines = line2 - line1 + 1;
819
820 /*
821 * First we copy the old text to its new location -- webb
822 * Also copy the flag that ":global" command uses.
823 */
824 if (u_save(dest, dest + 1) == FAIL)
825 return FAIL;
826 for (extra = 0, l = line1; l <= line2; l++)
827 {
828 str = vim_strsave(ml_get(l + extra));
829 if (str != NULL)
830 {
831 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
832 vim_free(str);
833 if (dest < line1)
834 extra++;
835 }
836 }
837
838 /*
839 * Now we must be careful adjusting our marks so that we don't overlap our
840 * mark_adjust() calls.
841 *
842 * We adjust the marks within the old text so that they refer to the
843 * last lines of the file (temporarily), because we know no other marks
844 * will be set there since these line numbers did not exist until we added
845 * our new lines.
846 *
847 * Then we adjust the marks on lines between the old and new text positions
848 * (either forwards or backwards).
849 *
850 * And Finally we adjust the marks we put at the end of the file back to
851 * their final destination at the new text position -- webb
852 */
853 last_line = curbuf->b_ml.ml_line_count;
854 mark_adjust(line1, line2, last_line - line2, 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200855 changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 if (dest >= line2)
857 {
858 mark_adjust(line2 + 1, dest, -num_lines, 0L);
859 curbuf->b_op_start.lnum = dest - num_lines + 1;
860 curbuf->b_op_end.lnum = dest;
861 }
862 else
863 {
864 mark_adjust(dest + 1, line1 - 1, num_lines, 0L);
865 curbuf->b_op_start.lnum = dest + 1;
866 curbuf->b_op_end.lnum = dest + num_lines;
867 }
868 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
869 mark_adjust(last_line - num_lines + 1, last_line,
870 -(last_line - dest - extra), 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200871 changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872
873 /*
874 * Now we delete the original text -- webb
875 */
876 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
877 return FAIL;
878
879 for (l = line1; l <= line2; l++)
880 ml_delete(line1 + extra, TRUE);
881
882 if (!global_busy && num_lines > p_report)
883 {
884 if (num_lines == 1)
885 MSG(_("1 line moved"));
886 else
887 smsg((char_u *)_("%ld lines moved"), num_lines);
888 }
889
890 /*
891 * Leave the cursor on the last of the moved lines.
892 */
893 if (dest >= line1)
894 curwin->w_cursor.lnum = dest;
895 else
896 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
897
898 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +0100899 {
900 dest += num_lines + 1;
901 last_line = curbuf->b_ml.ml_line_count;
902 if (dest > last_line + 1)
903 dest = last_line + 1;
904 changed_lines(line1, 0, dest, 0L);
905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 else
907 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
908
Bram Moolenaard5f69332015-04-15 12:43:50 +0200909#ifdef FEAT_FOLDING
910 /* recreate folds */
911 if (isFolded)
912 foldUpdateAll(curwin);
913#endif
914
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 return OK;
916}
917
918/*
919 * ":copy"
920 */
921 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100922ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923{
924 linenr_T count;
925 char_u *p;
926
927 count = line2 - line1 + 1;
928 curbuf->b_op_start.lnum = n + 1;
929 curbuf->b_op_end.lnum = n + count;
930 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
931
932 /*
933 * there are three situations:
934 * 1. destination is above line1
935 * 2. destination is between line1 and line2
936 * 3. destination is below line2
937 *
938 * n = destination (when starting)
939 * curwin->w_cursor.lnum = destination (while copying)
940 * line1 = start of source (while copying)
941 * line2 = end of source (while copying)
942 */
943 if (u_save(n, n + 1) == FAIL)
944 return;
945
946 curwin->w_cursor.lnum = n;
947 while (line1 <= line2)
948 {
949 /* need to use vim_strsave() because the line will be unlocked within
950 * ml_append() */
951 p = vim_strsave(ml_get(line1));
952 if (p != NULL)
953 {
954 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
955 vim_free(p);
956 }
957 /* situation 2: skip already copied lines */
958 if (line1 == n)
959 line1 = curwin->w_cursor.lnum;
960 ++line1;
961 if (curwin->w_cursor.lnum < line1)
962 ++line1;
963 if (curwin->w_cursor.lnum < line2)
964 ++line2;
965 ++curwin->w_cursor.lnum;
966 }
967
968 appended_lines_mark(n, count);
969
970 msgmore((long)count);
971}
972
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000973static char_u *prevcmd = NULL; /* the previous command */
974
975#if defined(EXITFREE) || defined(PROTO)
976 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100977free_prev_shellcmd(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000978{
979 vim_free(prevcmd);
980}
981#endif
982
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983/*
984 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
985 * Bangs in the argument are replaced with the previously entered command.
986 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 */
988 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100989do_bang(
990 int addr_count,
991 exarg_T *eap,
992 int forceit,
993 int do_in,
994 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995{
996 char_u *arg = eap->arg; /* command */
997 linenr_T line1 = eap->line1; /* start of range */
998 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 char_u *newcmd = NULL; /* the new command */
1000 int free_newcmd = FALSE; /* need to free() newcmd */
1001 int ins_prevcmd;
1002 char_u *t;
1003 char_u *p;
1004 char_u *trailarg;
1005 int len;
1006 int scroll_save = msg_scroll;
1007
1008 /*
1009 * Disallow shell commands for "rvim".
1010 * Disallow shell commands from .exrc and .vimrc in current directory for
1011 * security reasons.
1012 */
1013 if (check_restricted() || check_secure())
1014 return;
1015
1016 if (addr_count == 0) /* :! */
1017 {
1018 msg_scroll = FALSE; /* don't scroll here */
1019 autowrite_all();
1020 msg_scroll = scroll_save;
1021 }
1022
1023 /*
1024 * Try to find an embedded bang, like in :!<cmd> ! [args]
1025 * (:!! is indicated by the 'forceit' variable)
1026 */
1027 ins_prevcmd = forceit;
1028 trailarg = arg;
1029 do
1030 {
1031 len = (int)STRLEN(trailarg) + 1;
1032 if (newcmd != NULL)
1033 len += (int)STRLEN(newcmd);
1034 if (ins_prevcmd)
1035 {
1036 if (prevcmd == NULL)
1037 {
1038 EMSG(_(e_noprev));
1039 vim_free(newcmd);
1040 return;
1041 }
1042 len += (int)STRLEN(prevcmd);
1043 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001044 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 {
1046 vim_free(newcmd);
1047 return;
1048 }
1049 *t = NUL;
1050 if (newcmd != NULL)
1051 STRCAT(t, newcmd);
1052 if (ins_prevcmd)
1053 STRCAT(t, prevcmd);
1054 p = t + STRLEN(t);
1055 STRCAT(t, trailarg);
1056 vim_free(newcmd);
1057 newcmd = t;
1058
1059 /*
1060 * Scan the rest of the argument for '!', which is replaced by the
1061 * previous command. "\!" is replaced by "!" (this is vi compatible).
1062 */
1063 trailarg = NULL;
1064 while (*p)
1065 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001066 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 {
1068 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001069 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 else
1071 {
1072 trailarg = p;
1073 *trailarg++ = NUL;
1074 ins_prevcmd = TRUE;
1075 break;
1076 }
1077 }
1078 ++p;
1079 }
1080 } while (trailarg != NULL);
1081
1082 vim_free(prevcmd);
1083 prevcmd = newcmd;
1084
1085 if (bangredo) /* put cmd in redo buffer for ! command */
1086 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001087 /* If % or # appears in the command, it must have been escaped.
1088 * Reescape them, so that redoing them does not substitute them by the
1089 * buffername. */
1090 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1091
1092 if (cmd != NULL)
1093 {
1094 AppendToRedobuffLit(cmd, -1);
1095 vim_free(cmd);
1096 }
1097 else
1098 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 AppendToRedobuff((char_u *)"\n");
1100 bangredo = FALSE;
1101 }
1102 /*
1103 * Add quotes around the command, for shells that need them.
1104 */
1105 if (*p_shq != NUL)
1106 {
1107 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1108 if (newcmd == NULL)
1109 return;
1110 STRCPY(newcmd, p_shq);
1111 STRCAT(newcmd, prevcmd);
1112 STRCAT(newcmd, p_shq);
1113 free_newcmd = TRUE;
1114 }
1115 if (addr_count == 0) /* :! */
1116 {
1117 /* echo the command */
1118 msg_start();
1119 msg_putchar(':');
1120 msg_putchar('!');
1121 msg_outtrans(newcmd);
1122 msg_clr_eos();
1123 windgoto(msg_row, msg_col);
1124
1125 do_shell(newcmd, 0);
1126 }
1127 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001128 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 /* Careful: This may recursively call do_bang() again! (because of
1130 * autocommands) */
1131 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001132#ifdef FEAT_AUTOCMD
1133 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
1134#endif
1135 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 if (free_newcmd)
1137 vim_free(newcmd);
1138}
1139
1140/*
1141 * do_filter: filter lines through a command given by the user
1142 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001143 * We mostly use temp files and the call_shell() routine here. This would
1144 * normally be done using pipes on a UNIX machine, but this is more portable
1145 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 * to deal with redirection somehow, and should handle things like looking
1147 * at the PATH env. variable, and adding reasonable extensions to the
1148 * command name given by the user. All reasonable versions of call_shell()
1149 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001150 * Alternatively, if on Unix and redirecting input or output, but not both,
1151 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 * We use input redirection if do_in is TRUE.
1153 * We use output redirection if do_out is TRUE.
1154 */
1155 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001156do_filter(
1157 linenr_T line1,
1158 linenr_T line2,
1159 exarg_T *eap, /* for forced 'ff' and 'fenc' */
1160 char_u *cmd,
1161 int do_in,
1162 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163{
1164 char_u *itmp = NULL;
1165 char_u *otmp = NULL;
1166 linenr_T linecount;
1167 linenr_T read_linecount;
1168 pos_T cursor_save;
1169 char_u *cmd_buf;
1170#ifdef FEAT_AUTOCMD
1171 buf_T *old_curbuf = curbuf;
1172#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001173 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174
1175 if (*cmd == NUL) /* no filter command */
1176 return;
1177
1178#ifdef WIN3264
1179 /*
1180 * Check if external commands are allowed now.
1181 */
1182 if (can_end_termcap_mode(TRUE) == FALSE)
1183 return;
1184#endif
1185
1186 cursor_save = curwin->w_cursor;
1187 linecount = line2 - line1 + 1;
1188 curwin->w_cursor.lnum = line1;
1189 curwin->w_cursor.col = 0;
1190 changed_line_abv_curs();
1191 invalidate_botline();
1192
1193 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001194 * When using temp files:
1195 * 1. * Form temp file names
1196 * 2. * Write the lines to a temp file
1197 * 3. Run the filter command on the temp file
1198 * 4. * Read the output of the command into the buffer
1199 * 5. * Delete the original lines to be filtered
1200 * 6. * Remove the temp files
1201 *
1202 * When writing the input with a pipe or when catching the output with a
1203 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 */
1205
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001206 if (do_out)
1207 shell_flags |= SHELL_DOOUT;
1208
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001209#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001210 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001212 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1213 shell_flags |= SHELL_READ;
1214 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001216 else if (do_in && !do_out && !p_stmp)
1217 {
1218 /* Use a pipe to write stdin of the command, do not use a temp file. */
1219 shell_flags |= SHELL_WRITE;
1220 curbuf->b_op_start.lnum = line1;
1221 curbuf->b_op_end.lnum = line2;
1222 }
1223 else if (do_in && do_out && !p_stmp)
1224 {
1225 /* Use a pipe to write stdin and fetch stdout of the command, do not
1226 * use a temp file. */
1227 shell_flags |= SHELL_READ|SHELL_WRITE;
1228 curbuf->b_op_start.lnum = line1;
1229 curbuf->b_op_end.lnum = line2;
1230 curwin->w_cursor.lnum = line2;
1231 }
1232 else
1233#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001234 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1235 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001236 {
1237 EMSG(_(e_notmp));
1238 goto filterend;
1239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240
1241/*
1242 * The writing and reading of temp files will not be shown.
1243 * Vi also doesn't do this and the messages are not very informative.
1244 */
1245 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001246 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 FALSE, FALSE, FALSE, TRUE) == FAIL)
1248 {
1249 msg_putchar('\n'); /* keep message from buf_write() */
1250 --no_wait_return;
1251#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1252 if (!aborting())
1253#endif
1254 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1255 goto filterend;
1256 }
1257#ifdef FEAT_AUTOCMD
1258 if (curbuf != old_curbuf)
1259 goto filterend;
1260#endif
1261
1262 if (!do_out)
1263 msg_putchar('\n');
1264
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001265 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1267 if (cmd_buf == NULL)
1268 goto filterend;
1269
1270 windgoto((int)Rows - 1, 0);
1271 cursor_on();
1272
1273 /*
1274 * When not redirecting the output the command can write anything to the
1275 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1276 * stderr output of external command. Clear the screen later.
1277 * If do_in is FALSE, this could be something like ":r !cat", which may
1278 * also mess up the screen, clear it later.
1279 */
1280 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1281 redraw_later_clear();
1282
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001283 if (do_out)
1284 {
1285 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001286 {
1287 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001288 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001289 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001290 redraw_curbuf_later(VALID);
1291 }
1292 read_linecount = curbuf->b_ml.ml_line_count;
1293
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 /*
1295 * When call_shell() fails wait_return() is called to give the user a
1296 * chance to read the error messages. Otherwise errors are ignored, so you
1297 * can see the error messages from the command that appear on stdout; use
1298 * 'u' to fix the text
1299 * Switch to cooked mode when not redirecting stdin, avoids that something
1300 * like ":r !cat" hangs.
1301 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1302 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001303 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 {
1305 redraw_later_clear();
1306 wait_return(FALSE);
1307 }
1308 vim_free(cmd_buf);
1309
1310 did_check_timestamps = FALSE;
1311 need_check_timestamps = TRUE;
1312
1313 /* When interrupting the shell command, it may still have produced some
1314 * useful output. Reset got_int here, so that readfile() won't cancel
1315 * reading. */
1316 ui_breakcheck();
1317 got_int = FALSE;
1318
1319 if (do_out)
1320 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001321 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001323 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
1324 eap, READ_FILTER) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001326#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1327 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001329 {
1330 msg_putchar('\n');
1331 EMSG2(_(e_notread), otmp);
1332 }
1333 goto error;
1334 }
1335#ifdef FEAT_AUTOCMD
1336 if (curbuf != old_curbuf)
1337 goto filterend;
1338#endif
1339 }
1340
1341 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1342
1343 if (shell_flags & SHELL_READ)
1344 {
1345 curbuf->b_op_start.lnum = line2 + 1;
1346 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1347 appended_lines_mark(line2, read_linecount);
1348 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349
1350 if (do_in)
1351 {
1352 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1353 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 if (read_linecount >= linecount)
1355 /* move all marks from old lines to new lines */
1356 mark_adjust(line1, line2, linecount, 0L);
1357 else
1358 {
1359 /* move marks from old lines to new lines, delete marks
1360 * that are in deleted lines */
1361 mark_adjust(line1, line1 + read_linecount - 1,
1362 linecount, 0L);
1363 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1364 }
1365 }
1366
1367 /*
1368 * Put cursor on first filtered line for ":range!cmd".
1369 * Adjust '[ and '] (set by buf_write()).
1370 */
1371 curwin->w_cursor.lnum = line1;
1372 del_lines(linecount, TRUE);
1373 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1374 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1375 write_lnum_adjust(-linecount); /* adjust last line
1376 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001377#ifdef FEAT_FOLDING
1378 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1379#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 }
1381 else
1382 {
1383 /*
1384 * Put cursor on last new line for ":r !cmd".
1385 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001387 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001389
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1391 --no_wait_return;
1392
1393 if (linecount > p_report)
1394 {
1395 if (do_in)
1396 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001397 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1398 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001401 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 }
1403 else
1404 msgmore((long)linecount);
1405 }
1406 }
1407 else
1408 {
1409error:
1410 /* put cursor back in same position for ":w !cmd" */
1411 curwin->w_cursor = cursor_save;
1412 --no_wait_return;
1413 wait_return(FALSE);
1414 }
1415
1416filterend:
1417
1418#ifdef FEAT_AUTOCMD
1419 if (curbuf != old_curbuf)
1420 {
1421 --no_wait_return;
1422 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1423 }
1424#endif
1425 if (itmp != NULL)
1426 mch_remove(itmp);
1427 if (otmp != NULL)
1428 mch_remove(otmp);
1429 vim_free(itmp);
1430 vim_free(otmp);
1431}
1432
1433/*
1434 * Call a shell to execute a command.
1435 * When "cmd" is NULL start an interactive shell.
1436 */
1437 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001438do_shell(
1439 char_u *cmd,
1440 int flags) /* may be SHELL_DOOUT when output is redirected */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441{
1442 buf_T *buf;
1443#ifndef FEAT_GUI_MSWIN
1444 int save_nwr;
1445#endif
1446#ifdef MSWIN
1447 int winstart = FALSE;
1448#endif
1449
1450 /*
1451 * Disallow shell commands for "rvim".
1452 * Disallow shell commands from .exrc and .vimrc in current directory for
1453 * security reasons.
1454 */
1455 if (check_restricted() || check_secure())
1456 {
1457 msg_end();
1458 return;
1459 }
1460
1461#ifdef MSWIN
1462 /*
1463 * Check if external commands are allowed now.
1464 */
1465 if (can_end_termcap_mode(TRUE) == FALSE)
1466 return;
1467
1468 /*
1469 * Check if ":!start" is used.
1470 */
1471 if (cmd != NULL)
1472 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1473#endif
1474
1475 /*
1476 * For autocommands we want to get the output on the current screen, to
1477 * avoid having to type return below.
1478 */
1479 msg_putchar('\r'); /* put cursor at start of line */
1480#ifdef FEAT_AUTOCMD
1481 if (!autocmd_busy)
1482#endif
1483 {
1484#ifdef MSWIN
1485 if (!winstart)
1486#endif
1487 stoptermcap();
1488 }
1489#ifdef MSWIN
1490 if (!winstart)
1491#endif
1492 msg_putchar('\n'); /* may shift screen one line up */
1493
1494 /* warning message before calling the shell */
1495 if (p_warn
1496#ifdef FEAT_AUTOCMD
1497 && !autocmd_busy
1498#endif
1499 && msg_silent == 0)
1500 for (buf = firstbuf; buf; buf = buf->b_next)
1501 if (bufIsChanged(buf))
1502 {
1503#ifdef FEAT_GUI_MSWIN
1504 if (!winstart)
1505 starttermcap(); /* don't want a message box here */
1506#endif
1507 MSG_PUTS(_("[No write since last change]\n"));
1508#ifdef FEAT_GUI_MSWIN
1509 if (!winstart)
1510 stoptermcap();
1511#endif
1512 break;
1513 }
1514
1515 /* This windgoto is required for when the '\n' resulted in a "delete line
1516 * 1" command to the terminal. */
1517 if (!swapping_screen())
1518 windgoto(msg_row, msg_col);
1519 cursor_on();
1520 (void)call_shell(cmd, SHELL_COOKED | flags);
1521 did_check_timestamps = FALSE;
1522 need_check_timestamps = TRUE;
1523
1524 /*
1525 * put the message cursor at the end of the screen, avoids wait_return()
1526 * to overwrite the text that the external command showed
1527 */
1528 if (!swapping_screen())
1529 {
1530 msg_row = Rows - 1;
1531 msg_col = 0;
1532 }
1533
1534#ifdef FEAT_AUTOCMD
1535 if (autocmd_busy)
1536 {
1537 if (msg_silent == 0)
1538 redraw_later_clear();
1539 }
1540 else
1541#endif
1542 {
1543 /*
1544 * For ":sh" there is no need to call wait_return(), just redraw.
1545 * Also for the Win32 GUI (the output is in a console window).
1546 * Otherwise there is probably text on the screen that the user wants
1547 * to read before redrawing, so call wait_return().
1548 */
1549#ifndef FEAT_GUI_MSWIN
1550 if (cmd == NULL
1551# ifdef WIN3264
1552 || (winstart && !need_wait_return)
1553# endif
1554 )
1555 {
1556 if (msg_silent == 0)
1557 redraw_later_clear();
1558 need_wait_return = FALSE;
1559 }
1560 else
1561 {
1562 /*
1563 * If we switch screens when starttermcap() is called, we really
1564 * want to wait for "hit return to continue".
1565 */
1566 save_nwr = no_wait_return;
1567 if (swapping_screen())
1568 no_wait_return = FALSE;
1569# ifdef AMIGA
1570 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1571# else
1572 wait_return(msg_silent == 0);
1573# endif
1574 no_wait_return = save_nwr;
1575 }
1576#endif /* FEAT_GUI_W32 */
1577
1578#ifdef MSWIN
1579 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1580#endif
1581 starttermcap(); /* start termcap if not done by wait_return() */
1582
1583 /*
1584 * In an Amiga window redrawing is caused by asking the window size.
1585 * If we got an interrupt this will not work. The chance that the
1586 * window size is wrong is very small, but we need to redraw the
1587 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1588 * but it saves an extra redraw.
1589 */
1590#ifdef AMIGA
1591 if (skip_redraw) /* ':' hit in wait_return() */
1592 {
1593 if (msg_silent == 0)
1594 redraw_later_clear();
1595 }
1596 else if (term_console)
1597 {
1598 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1599 if (got_int && msg_silent == 0)
1600 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1601 else
1602 must_redraw = 0; /* no extra redraw needed */
1603 }
1604#endif
1605 }
1606
1607 /* display any error messages now */
1608 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001609
1610#ifdef FEAT_AUTOCMD
1611 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
1612#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613}
1614
1615/*
1616 * Create a shell command from a command string, input redirection file and
1617 * output redirection file.
1618 * Returns an allocated string with the shell command, or NULL for failure.
1619 */
1620 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001621make_filter_cmd(
1622 char_u *cmd, /* command */
1623 char_u *itmp, /* NULL or name of input file */
1624 char_u *otmp) /* NULL or name of output file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625{
1626 char_u *buf;
1627 long_u len;
1628
Bram Moolenaar53076832015-12-31 19:53:21 +01001629#if defined(UNIX)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001630 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001631 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001632
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001633 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001634 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1635 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001636 if (is_fish_shell)
1637 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1638 else
1639#endif
1640 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 if (itmp != NULL)
1642 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1643 if (otmp != NULL)
1644 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1645 buf = lalloc(len, TRUE);
1646 if (buf == NULL)
1647 return NULL;
1648
Bram Moolenaar53076832015-12-31 19:53:21 +01001649#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001651 * Put braces around the command (for concatenated commands) when
1652 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001654 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001655 {
1656 if (is_fish_shell)
1657 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1658 else
1659 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1660 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001661 else
1662 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 if (itmp != NULL)
1664 {
1665 STRCAT(buf, " < ");
1666 STRCAT(buf, itmp);
1667 }
1668#else
1669 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001670 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 * the use of commands in a pipe.
1672 */
1673 STRCPY(buf, cmd);
1674 if (itmp != NULL)
1675 {
1676 char_u *p;
1677
1678 /*
1679 * If there is a pipe, we have to put the '<' in front of it.
1680 * Don't do this when 'shellquote' is not empty, otherwise the
1681 * redirection would be inside the quotes.
1682 */
1683 if (*p_shq == NUL)
1684 {
1685 p = vim_strchr(buf, '|');
1686 if (p != NULL)
1687 *p = NUL;
1688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1690 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 if (*p_shq == NUL)
1692 {
1693 p = vim_strchr(cmd, '|');
1694 if (p != NULL)
1695 {
1696 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1697 STRCAT(buf, p);
1698 }
1699 }
1700 }
1701#endif
1702 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001703 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704
1705 return buf;
1706}
1707
1708/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001709 * Append output redirection for file "fname" to the end of string buffer
1710 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 * Works with the 'shellredir' and 'shellpipe' options.
1712 * The caller should make sure that there is enough room:
1713 * STRLEN(opt) + STRLEN(fname) + 3
1714 */
1715 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001716append_redir(
1717 char_u *buf,
1718 int buflen,
1719 char_u *opt,
1720 char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721{
1722 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001723 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001725 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001726 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001728 {
1729 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001731 if (p[1] == '%') /* skip %% */
1732 ++p;
1733 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 if (p != NULL)
1735 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001736 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1737 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1738 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 }
1740 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001741 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 " %s %s",
1744#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746#endif
1747 (char *)opt, (char *)fname);
1748}
1749
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001750#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001752static int no_viminfo(void);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001753static int read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02001754static void write_viminfo_version(FILE *fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001755static void write_viminfo_barlines(vir_T *virp, FILE *fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756static int viminfo_errcnt;
1757
1758 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001759no_viminfo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760{
1761 /* "vim -i NONE" does not read or write a viminfo file */
1762 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0);
1763}
1764
1765/*
1766 * Report an error for reading a viminfo file.
1767 * Count the number of errors. When there are more than 10, return TRUE.
1768 */
1769 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001770viminfo_error(char *errnum, char *message, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001772 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1773 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001774 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001775 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1776 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 emsg(IObuff);
1778 if (++viminfo_errcnt >= 10)
1779 {
1780 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1781 return TRUE;
1782 }
1783 return FALSE;
1784}
1785
1786/*
1787 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001788 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 */
1790 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001791read_viminfo(
1792 char_u *file, /* file name or NULL to use default name */
1793 int flags) /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794{
1795 FILE *fp;
1796 char_u *fname;
1797
1798 if (no_viminfo())
1799 return FAIL;
1800
Bram Moolenaard812df62008-11-09 12:46:09 +00001801 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 if (fname == NULL)
1803 return FAIL;
1804 fp = mch_fopen((char *)fname, READBIN);
1805
1806 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001807 {
1808 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001809 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1810 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001811 (flags & VIF_WANT_INFO) ? _(" info") : "",
1812 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1813 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001814 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001815 verbose_leave();
1816 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817
1818 vim_free(fname);
1819 if (fp == NULL)
1820 return FAIL;
1821
1822 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001823 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824
1825 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 return OK;
1827}
1828
1829/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001830 * Write the viminfo file. The old one is read in first so that effectively a
1831 * merge of current info and old info is done. This allows multiple vims to
1832 * run simultaneously, without losing any marks etc.
1833 * If "forceit" is TRUE, then the old file is not read in, and only internal
1834 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 */
1836 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001837write_viminfo(char_u *file, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838{
1839 char_u *fname;
1840 FILE *fp_in = NULL; /* input viminfo file, if any */
1841 FILE *fp_out = NULL; /* output viminfo file */
1842 char_u *tempname = NULL; /* name of temp viminfo file */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001843 stat_T st_new; /* mch_stat() of potential new file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 char_u *wp;
1845#if defined(UNIX) || defined(VMS)
1846 mode_t umask_save;
1847#endif
1848#ifdef UNIX
1849 int shortname = FALSE; /* use 8.3 file name */
Bram Moolenaar8767f522016-07-01 17:17:39 +02001850 stat_T st_old; /* mch_stat() of existing viminfo file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001852#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001853 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001854#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855
1856 if (no_viminfo())
1857 return;
1858
1859 fname = viminfo_filename(file); /* may set to default if NULL */
1860 if (fname == NULL)
1861 return;
1862
1863 fp_in = mch_fopen((char *)fname, READBIN);
1864 if (fp_in == NULL)
1865 {
1866 /* if it does exist, but we can't read it, don't try writing */
1867 if (mch_stat((char *)fname, &st_new) == 0)
1868 goto end;
1869#if defined(UNIX) || defined(VMS)
1870 /*
1871 * For Unix we create the .viminfo non-accessible for others,
1872 * because it may contain text from non-accessible documents.
1873 */
1874 umask_save = umask(077);
1875#endif
1876 fp_out = mch_fopen((char *)fname, WRITEBIN);
1877#if defined(UNIX) || defined(VMS)
1878 (void)umask(umask_save);
1879#endif
1880 }
1881 else
1882 {
1883 /*
1884 * There is an existing viminfo file. Create a temporary file to
1885 * write the new viminfo into, in the same directory as the
1886 * existing viminfo file, which will be renamed later.
1887 */
1888#ifdef UNIX
1889 /*
1890 * For Unix we check the owner of the file. It's not very nice to
1891 * overwrite a user's viminfo file after a "su root", with a
1892 * viminfo file that the user can't read.
1893 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001894 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001895 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001897 if (mch_stat((char *)fname, &st_old) == 0
1898 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001899 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 ? (st_old.st_mode & 0200)
1901 : (st_old.st_gid == getgid()
1902 ? (st_old.st_mode & 0020)
1903 : (st_old.st_mode & 0002))))
1904 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001905 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906
1907 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1909 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001910 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 goto end;
1912 }
1913#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001914#ifdef WIN3264
1915 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001916 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918
1919 /*
1920 * Make tempname.
1921 * May try twice: Once normal and once with shortname set, just in
1922 * case somebody puts his viminfo file in an 8.3 filesystem.
1923 */
1924 for (;;)
1925 {
1926 tempname = buf_modname(
1927#ifdef UNIX
1928 shortname,
1929#else
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001930# ifdef FEAT_GUI_W32
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 gui_is_win32s(),
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001932# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934# endif
1935#endif
1936 fname,
1937#ifdef VMS
1938 (char_u *)"-tmp",
1939#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941#endif
1942 FALSE);
1943 if (tempname == NULL) /* out of memory */
1944 break;
1945
1946 /*
1947 * Check if tempfile already exists. Never overwrite an
1948 * existing file!
1949 */
1950 if (mch_stat((char *)tempname, &st_new) == 0)
1951 {
1952#ifdef UNIX
1953 /*
1954 * Check if tempfile is same as original file. May happen
1955 * when modname() gave the same file back. E.g. silly
1956 * link, or file name-length reached. Try again with
1957 * shortname set.
1958 */
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001959 if (!shortname && st_new.st_dev == st_old.st_dev
1960 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 {
1962 vim_free(tempname);
1963 tempname = NULL;
1964 shortname = TRUE;
1965 continue;
1966 }
1967#endif
1968 /*
1969 * Try another name. Change one character, just before
1970 * the extension. This should also work for an 8.3
1971 * file name, when after adding the extension it still is
1972 * the same file as the original.
1973 */
1974 wp = tempname + STRLEN(tempname) - 5;
1975 if (wp < gettail(tempname)) /* empty file name? */
1976 wp = gettail(tempname);
1977 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0;
1978 --*wp)
1979 {
1980 /*
1981 * They all exist? Must be something wrong! Don't
1982 * write the viminfo file then.
1983 */
1984 if (*wp == 'a')
1985 {
Bram Moolenaar2d358992016-06-12 21:20:54 +02001986 EMSG2(_("E929: Too many viminfo temp files, like %s!"),
1987 tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 vim_free(tempname);
1989 tempname = NULL;
1990 break;
1991 }
1992 }
1993 }
1994 break;
1995 }
1996
1997 if (tempname != NULL)
1998 {
Bram Moolenaar114216c2006-03-14 23:08:30 +00001999#ifdef VMS
2000 /* fdopen() fails for some reason */
Bram Moolenaarcf034472006-03-15 23:07:59 +00002001 umask_save = umask(077);
2002 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2003 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002004#else
Bram Moolenaara5792f52005-11-23 21:25:05 +00002005 int fd;
2006
2007 /* Use mch_open() to be able to use O_NOFOLLOW and set file
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002008 * protection:
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002009 * Unix: same as original file, but strip s-bit. Reset umask to
2010 * avoid it getting in the way.
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002011 * Others: r&w for user only. */
Bram Moolenaar114216c2006-03-14 23:08:30 +00002012# ifdef UNIX
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002013 umask_save = umask(0);
Bram Moolenaara5792f52005-11-23 21:25:05 +00002014 fd = mch_open((char *)tempname,
2015 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
Bram Moolenaarbba577a2005-11-28 23:05:55 +00002016 (int)((st_old.st_mode & 0777) | 0600));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002017 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002018# else
Bram Moolenaarbba577a2005-11-28 23:05:55 +00002019 fd = mch_open((char *)tempname,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002020 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002021# endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00002022 if (fd < 0)
2023 fp_out = NULL;
2024 else
2025 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002026#endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027
2028 /*
2029 * If we can't create in the same directory, try creating a
2030 * "normal" temp file.
2031 */
2032 if (fp_out == NULL)
2033 {
2034 vim_free(tempname);
Bram Moolenaare5c421c2015-03-31 13:33:08 +02002035 if ((tempname = vim_tempname('o', TRUE)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2037 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00002038
2039#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 /*
Bram Moolenaara5792f52005-11-23 21:25:05 +00002041 * Make sure the owner can read/write it. This only works for
2042 * root.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 */
2044 if (fp_out != NULL)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002045 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046#endif
2047 }
2048 }
2049
2050 /*
2051 * Check if the new viminfo file can be written to.
2052 */
2053 if (fp_out == NULL)
2054 {
2055 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002056 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 if (fp_in != NULL)
2058 fclose(fp_in);
2059 goto end;
2060 }
2061
2062 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002063 {
2064 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00002065 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002066 verbose_leave();
2067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068
2069 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002070 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071
Bram Moolenaar927030a2016-03-15 18:23:55 +01002072 if (fclose(fp_out) == EOF)
2073 ++viminfo_errcnt;
2074
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 if (fp_in != NULL)
2076 {
2077 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002078
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002079 /* In case of an error keep the original viminfo file. Otherwise
2080 * rename the newly written file. Give an error if that fails. */
Bram Moolenaar927030a2016-03-15 18:23:55 +01002081 if (viminfo_errcnt == 0)
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002082 {
Bram Moolenaar927030a2016-03-15 18:23:55 +01002083 if (vim_rename(tempname, fname) == -1)
2084 {
2085 ++viminfo_errcnt;
2086 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2087 }
2088# ifdef WIN3264
2089 /* If the viminfo file was hidden then also hide the new file. */
2090 else if (hidden)
2091 mch_hide(fname);
2092# endif
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002093 }
2094 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 mch_remove(tempname);
2096 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002097
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098end:
2099 vim_free(fname);
2100 vim_free(tempname);
2101}
2102
2103/*
2104 * Get the viminfo file name to use.
2105 * If "file" is given and not empty, use it (has already been expanded by
2106 * cmdline functions).
2107 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2108 * expand environment variables.
2109 * Returns an allocated string. NULL when out of memory.
2110 */
2111 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002112viminfo_filename(char_u *file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113{
2114 if (file == NULL || *file == NUL)
2115 {
2116 if (use_viminfo != NULL)
2117 file = use_viminfo;
2118 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2119 {
2120#ifdef VIMINFO_FILE2
2121 /* don't use $HOME when not defined (turned into "c:/"!). */
2122# ifdef VMS
2123 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2124# else
2125 if (mch_getenv((char_u *)"HOME") == NULL)
2126# endif
2127 {
2128 /* don't use $VIM when not available. */
2129 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2130 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2131 file = (char_u *)VIMINFO_FILE2;
2132 else
2133 file = (char_u *)VIMINFO_FILE;
2134 }
2135 else
2136#endif
2137 file = (char_u *)VIMINFO_FILE;
2138 }
2139 expand_env(file, NameBuff, MAXPATHL);
2140 file = NameBuff;
2141 }
2142 return vim_strsave(file);
2143}
2144
2145/*
2146 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2147 */
2148 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002149do_viminfo(FILE *fp_in, FILE *fp_out, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 int eof = FALSE;
2152 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002153 int merge = FALSE;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002154 int do_copy_marks = FALSE;
2155 garray_T buflist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156
2157 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2158 return;
2159 vir.vir_fd = fp_in;
2160#ifdef FEAT_MBYTE
2161 vir.vir_conv.vc_type = CONV_NONE;
2162#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002163 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002164 vir.vir_version = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165
2166 if (fp_in != NULL)
2167 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002168 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002169 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002170 if (fp_out != NULL)
Bram Moolenaar2d358992016-06-12 21:20:54 +02002171 {
2172 /* Registers and marks are read and kept separate from what
2173 * this Vim is using. They are merged when writing. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002174 prepare_viminfo_registers();
Bram Moolenaar2d358992016-06-12 21:20:54 +02002175 prepare_viminfo_marks();
2176 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002177
Bram Moolenaard812df62008-11-09 12:46:09 +00002178 eof = read_viminfo_up_to_marks(&vir,
2179 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002180 merge = TRUE;
2181 }
2182 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 /* Skip info, find start of marks */
2184 while (!(eof = viminfo_readline(&vir))
2185 && vir.vir_line[0] != '>')
2186 ;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002187
2188 do_copy_marks = (flags &
2189 (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002191
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 if (fp_out != NULL)
2193 {
2194 /* Write the info: */
2195 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2196 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002197 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002198 write_viminfo_version(fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002200 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2202#endif
2203 write_viminfo_search_pattern(fp_out);
2204 write_viminfo_sub_string(fp_out);
2205#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002206 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207#endif
2208 write_viminfo_registers(fp_out);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002209 finish_viminfo_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210#ifdef FEAT_EVAL
2211 write_viminfo_varlist(fp_out);
2212#endif
2213 write_viminfo_filemarks(fp_out);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002214 finish_viminfo_marks();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 write_viminfo_bufferlist(fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002216 write_viminfo_barlines(&vir, fp_out);
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002217
2218 if (do_copy_marks)
2219 ga_init2(&buflist, sizeof(buf_T *), 50);
2220 write_viminfo_marks(fp_out, do_copy_marks ? &buflist : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002222
2223 if (do_copy_marks)
2224 {
2225 copy_viminfo_marks(&vir, fp_out, &buflist, eof, flags);
2226 if (fp_out != NULL)
2227 ga_clear(&buflist);
2228 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229
2230 vim_free(vir.vir_line);
2231#ifdef FEAT_MBYTE
2232 if (vir.vir_conv.vc_type != CONV_NONE)
2233 convert_setup(&vir.vir_conv, NULL, NULL);
2234#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002235 ga_clear_strings(&vir.vir_barlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236}
2237
2238/*
2239 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2240 * first part of the viminfo file which contains everything but the marks that
2241 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2242 */
2243 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002244read_viminfo_up_to_marks(
2245 vir_T *virp,
2246 int forceit,
2247 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248{
2249 int eof;
2250 buf_T *buf;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002251 int got_encoding = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252
2253#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002254 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002256
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 eof = viminfo_readline(virp);
2258 while (!eof && virp->vir_line[0] != '>')
2259 {
2260 switch (virp->vir_line[0])
2261 {
2262 /* Characters reserved for future expansion, ignored now */
2263 case '+': /* "+40 /path/dir file", for running vim without args */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 case '^': /* to be defined */
2265 case '<': /* long line - ignored */
2266 /* A comment or empty line. */
2267 case NUL:
2268 case '\r':
2269 case '\n':
2270 case '#':
2271 eof = viminfo_readline(virp);
2272 break;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002273 case '|':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002274 eof = read_viminfo_barline(virp, got_encoding,
2275 forceit, writing);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002276 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 case '*': /* "*encoding=value" */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002278 got_encoding = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 eof = viminfo_encoding(virp);
2280 break;
2281 case '!': /* global variable */
2282#ifdef FEAT_EVAL
2283 eof = read_viminfo_varlist(virp, writing);
2284#else
2285 eof = viminfo_readline(virp);
2286#endif
2287 break;
2288 case '%': /* entry for buffer list */
2289 eof = read_viminfo_bufferlist(virp, writing);
2290 break;
2291 case '"':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002292 /* When registers are in bar lines skip the old style register
2293 * lines. */
2294 if (virp->vir_version < VIMINFO_VERSION_WITH_REGISTERS)
2295 eof = read_viminfo_register(virp, forceit);
2296 else
2297 do {
2298 eof = viminfo_readline(virp);
2299 } while (!eof && (virp->vir_line[0] == TAB
2300 || virp->vir_line[0] == '<'));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 break;
2302 case '/': /* Search string */
2303 case '&': /* Substitute search string */
2304 case '~': /* Last search string, followed by '/' or '&' */
2305 eof = read_viminfo_search_pattern(virp, forceit);
2306 break;
2307 case '$':
2308 eof = read_viminfo_sub_string(virp, forceit);
2309 break;
2310 case ':':
2311 case '?':
2312 case '=':
2313 case '@':
2314#ifdef FEAT_CMDHIST
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002315 /* When history is in bar lines skip the old style history
2316 * lines. */
2317 if (virp->vir_version < VIMINFO_VERSION_WITH_HISTORY)
2318 eof = read_viminfo_history(virp, writing);
2319 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002321 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 break;
2323 case '-':
2324 case '\'':
Bram Moolenaara641e1d2016-06-13 21:16:03 +02002325 /* When file marks are in bar lines skip the old style lines. */
2326 if (virp->vir_version < VIMINFO_VERSION_WITH_MARKS)
2327 eof = read_viminfo_filemark(virp, forceit);
2328 else
2329 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 break;
2331 default:
2332 if (viminfo_error("E575: ", _("Illegal starting char"),
2333 virp->vir_line))
2334 eof = TRUE;
2335 else
2336 eof = viminfo_readline(virp);
2337 break;
2338 }
2339 }
2340
2341#ifdef FEAT_CMDHIST
2342 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002343 if (!writing)
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02002344 finish_viminfo_history(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345#endif
2346
2347 /* Change file names to buffer numbers for fmarks. */
2348 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2349 fmarks_check_names(buf);
2350
2351 return eof;
2352}
2353
2354/*
2355 * Compare the 'encoding' value in the viminfo file with the current value of
2356 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2357 * conversion of text with iconv() in viminfo_readstring().
2358 */
2359 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002360viminfo_encoding(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361{
2362#ifdef FEAT_MBYTE
2363 char_u *p;
2364 int i;
2365
2366 if (get_viminfo_parameter('c') != 0)
2367 {
2368 p = vim_strchr(virp->vir_line, '=');
2369 if (p != NULL)
2370 {
2371 /* remove trailing newline */
2372 ++p;
2373 for (i = 0; vim_isprintc(p[i]); ++i)
2374 ;
2375 p[i] = NUL;
2376
2377 convert_setup(&virp->vir_conv, p, p_enc);
2378 }
2379 }
2380#endif
2381 return viminfo_readline(virp);
2382}
2383
2384/*
2385 * Read a line from the viminfo file.
2386 * Returns TRUE for end-of-file;
2387 */
2388 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002389viminfo_readline(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390{
2391 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2392}
2393
2394/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002395 * Check string read from viminfo file.
2396 * Remove '\n' at the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 * - replace CTRL-V CTRL-V with CTRL-V
2398 * - replace CTRL-V 'n' with '\n'
2399 *
2400 * Check for a long line as written by viminfo_writestring().
2401 *
2402 * Return the string in allocated memory (NULL when out of memory).
2403 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002405viminfo_readstring(
2406 vir_T *virp,
2407 int off, /* offset for virp->vir_line */
2408 int convert UNUSED) /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409{
2410 char_u *retval;
2411 char_u *s, *d;
2412 long len;
2413
2414 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2415 {
2416 len = atol((char *)virp->vir_line + off + 1);
2417 retval = lalloc(len, TRUE);
2418 if (retval == NULL)
2419 {
2420 /* Line too long? File messed up? Skip next line. */
2421 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2422 return NULL;
2423 }
2424 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2425 s = retval + 1; /* Skip the leading '<' */
2426 }
2427 else
2428 {
2429 retval = vim_strsave(virp->vir_line + off);
2430 if (retval == NULL)
2431 return NULL;
2432 s = retval;
2433 }
2434
2435 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2436 d = retval;
2437 while (*s != NUL && *s != '\n')
2438 {
2439 if (s[0] == Ctrl_V && s[1] != NUL)
2440 {
2441 if (s[1] == 'n')
2442 *d++ = '\n';
2443 else
2444 *d++ = Ctrl_V;
2445 s += 2;
2446 }
2447 else
2448 *d++ = *s++;
2449 }
2450 *d = NUL;
2451
2452#ifdef FEAT_MBYTE
2453 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2454 {
2455 d = string_convert(&virp->vir_conv, retval, NULL);
2456 if (d != NULL)
2457 {
2458 vim_free(retval);
2459 retval = d;
2460 }
2461 }
2462#endif
2463
2464 return retval;
2465}
2466
2467/*
2468 * write string to viminfo file
2469 * - replace CTRL-V with CTRL-V CTRL-V
2470 * - replace '\n' with CTRL-V 'n'
2471 * - add a '\n' at the end
2472 *
2473 * For a long line:
2474 * - write " CTRL-V <length> \n " in first line
2475 * - write " < <string> \n " in second line
2476 */
2477 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002478viminfo_writestring(FILE *fd, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479{
2480 int c;
2481 char_u *s;
2482 int len = 0;
2483
2484 for (s = p; *s != NUL; ++s)
2485 {
2486 if (*s == Ctrl_V || *s == '\n')
2487 ++len;
2488 ++len;
2489 }
2490
2491 /* If the string will be too long, write its length and put it in the next
2492 * line. Take into account that some room is needed for what comes before
2493 * the string (e.g., variable name). Add something to the length for the
2494 * '<', NL and trailing NUL. */
2495 if (len > LSIZE / 2)
2496 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2497
2498 while ((c = *p++) != NUL)
2499 {
2500 if (c == Ctrl_V || c == '\n')
2501 {
2502 putc(Ctrl_V, fd);
2503 if (c == '\n')
2504 c = 'n';
2505 }
2506 putc(c, fd);
2507 }
2508 putc('\n', fd);
2509}
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002510
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002511/*
2512 * Write a string in quotes that barline_parse() can read back.
2513 * Breaks the line in less than LSIZE pieces when needed.
2514 * Returns remaining characters in the line.
2515 */
2516 int
2517barline_writestring(FILE *fd, char_u *s, int remaining_start)
2518{
2519 char_u *p;
2520 int remaining = remaining_start;
2521 int len = 2;
2522
2523 /* Count the number of characters produced, including quotes. */
2524 for (p = s; *p != NUL; ++p)
2525 {
2526 if (*p == NL)
2527 len += 2;
2528 else if (*p == '"' || *p == '\\')
2529 len += 2;
2530 else
2531 ++len;
2532 }
2533 if (len > remaining)
2534 {
2535 fprintf(fd, ">%d\n|<", len);
2536 remaining = LSIZE - 20;
2537 }
2538
2539 putc('"', fd);
2540 for (p = s; *p != NUL; ++p)
2541 {
2542 if (*p == NL)
2543 {
2544 putc('\\', fd);
2545 putc('n', fd);
2546 --remaining;
2547 }
2548 else if (*p == '"' || *p == '\\')
2549 {
2550 putc('\\', fd);
2551 putc(*p, fd);
2552 --remaining;
2553 }
2554 else
2555 putc(*p, fd);
2556 --remaining;
2557
2558 if (remaining < 3)
2559 {
2560 putc('\n', fd);
2561 putc('|', fd);
2562 putc('<', fd);
2563 /* Leave enough space for another continuation. */
2564 remaining = LSIZE - 20;
2565 }
2566 }
2567 putc('"', fd);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002568 return remaining - 2;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002569}
2570
2571/*
2572 * Parse a viminfo line starting with '|'.
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002573 * Add each decoded value to "values".
Bram Moolenaarecefe712016-06-20 12:50:17 +02002574 * Returns TRUE if the next line is to be read after using the parsed values.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002575 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002576 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002577barline_parse(vir_T *virp, char_u *text, garray_T *values)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002578{
2579 char_u *p = text;
2580 char_u *nextp = NULL;
Bram Moolenaarfdd82fe2016-06-06 21:38:44 +02002581 char_u *buf = NULL;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002582 bval_T *value;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002583 int i;
2584 int allocated = FALSE;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002585 int eof;
Bram Moolenaar01227092016-06-11 14:47:40 +02002586#ifdef FEAT_MBYTE
2587 char_u *sconv;
2588 int converted;
2589#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002590
2591 while (*p == ',')
2592 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002593 ++p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002594 if (ga_grow(values, 1) == FAIL)
2595 break;
2596 value = (bval_T *)(values->ga_data) + values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002597
2598 if (*p == '>')
2599 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002600 /* Need to read a continuation line. Put strings in allocated
2601 * memory, because virp->vir_line is overwritten. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002602 if (!allocated)
2603 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002604 for (i = 0; i < values->ga_len; ++i)
2605 {
2606 bval_T *vp = (bval_T *)(values->ga_data) + i;
2607
2608 if (vp->bv_type == BVAL_STRING && !vp->bv_allocated)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002609 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002610 vp->bv_string = vim_strnsave(vp->bv_string, vp->bv_len);
2611 vp->bv_allocated = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002612 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002613 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002614 allocated = TRUE;
2615 }
2616
2617 if (vim_isdigit(p[1]))
2618 {
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002619 size_t len;
2620 size_t todo;
2621 size_t n;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002622
2623 /* String value was split into lines that are each shorter
2624 * than LSIZE:
2625 * |{bartype},>{length of "{text}{text2}"}
2626 * |<"{text1}
2627 * |<{text2}",{value}
Bram Moolenaarecefe712016-06-20 12:50:17 +02002628 * Length includes the quotes.
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002629 */
2630 ++p;
2631 len = getdigits(&p);
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002632 buf = alloc((int)(len + 1));
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002633 if (buf == NULL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002634 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002635 p = buf;
2636 for (todo = len; todo > 0; todo -= n)
2637 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002638 eof = viminfo_readline(virp);
2639 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002640 || virp->vir_line[1] != '<')
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002641 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002642 /* File was truncated or garbled. Read another line if
2643 * this one starts with '|'. */
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002644 vim_free(buf);
Bram Moolenaarecefe712016-06-20 12:50:17 +02002645 return eof || virp->vir_line[0] == '|';
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002646 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002647 /* Get length of text, excluding |< and NL chars. */
2648 n = STRLEN(virp->vir_line);
2649 while (n > 0 && (virp->vir_line[n - 1] == NL
2650 || virp->vir_line[n - 1] == CAR))
2651 --n;
2652 n -= 2;
2653 if (n > todo)
2654 {
2655 /* more values follow after the string */
2656 nextp = virp->vir_line + 2 + todo;
2657 n = todo;
2658 }
2659 mch_memmove(p, virp->vir_line + 2, n);
2660 p += n;
2661 }
2662 *p = NUL;
2663 p = buf;
2664 }
2665 else
2666 {
2667 /* Line ending in ">" continues in the next line:
2668 * |{bartype},{lots of values},>
2669 * |<{value},{value}
2670 */
Bram Moolenaarecefe712016-06-20 12:50:17 +02002671 eof = viminfo_readline(virp);
2672 if (eof || virp->vir_line[0] != '|'
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002673 || virp->vir_line[1] != '<')
Bram Moolenaarecefe712016-06-20 12:50:17 +02002674 /* File was truncated or garbled. Read another line if
2675 * this one starts with '|'. */
2676 return eof || virp->vir_line[0] == '|';
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002677 p = virp->vir_line + 2;
2678 }
2679 }
2680
2681 if (isdigit(*p))
2682 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002683 value->bv_type = BVAL_NR;
2684 value->bv_nr = getdigits(&p);
2685 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002686 }
2687 else if (*p == '"')
2688 {
2689 int len = 0;
2690 char_u *s = p;
2691
2692 /* Unescape special characters in-place. */
2693 ++p;
2694 while (*p != '"')
2695 {
2696 if (*p == NL || *p == NUL)
Bram Moolenaarecefe712016-06-20 12:50:17 +02002697 return TRUE; /* syntax error, drop the value */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002698 if (*p == '\\')
2699 {
2700 ++p;
2701 if (*p == 'n')
2702 s[len++] = '\n';
2703 else
2704 s[len++] = *p;
2705 ++p;
2706 }
2707 else
2708 s[len++] = *p++;
2709 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002710 ++p;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002711 s[len] = NUL;
2712
Bram Moolenaar01227092016-06-11 14:47:40 +02002713#ifdef FEAT_MBYTE
2714 converted = FALSE;
2715 if (virp->vir_conv.vc_type != CONV_NONE && *s != NUL)
2716 {
2717 sconv = string_convert(&virp->vir_conv, s, NULL);
2718 if (sconv != NULL)
2719 {
2720 if (s == buf)
2721 vim_free(s);
2722 s = sconv;
2723 buf = s;
2724 converted = TRUE;
2725 }
2726 }
2727#endif
2728 /* Need to copy in allocated memory if the string wasn't allocated
2729 * above and we did allocate before, thus vir_line may change. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002730 if (s != buf && allocated)
2731 s = vim_strsave(s);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002732 value->bv_string = s;
2733 value->bv_type = BVAL_STRING;
2734 value->bv_len = len;
2735 value->bv_allocated = allocated
Bram Moolenaar01227092016-06-11 14:47:40 +02002736#ifdef FEAT_MBYTE
2737 || converted
2738#endif
2739 ;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002740 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002741 if (nextp != NULL)
2742 {
2743 /* values following a long string */
2744 p = nextp;
2745 nextp = NULL;
2746 }
2747 }
2748 else if (*p == ',')
2749 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002750 value->bv_type = BVAL_EMPTY;
2751 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002752 }
2753 else
2754 break;
2755 }
Bram Moolenaarecefe712016-06-20 12:50:17 +02002756 return TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002757}
2758
2759 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002760read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002761{
2762 char_u *p = virp->vir_line + 1;
2763 int bartype;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002764 garray_T values;
2765 bval_T *vp;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002766 int i;
Bram Moolenaarecefe712016-06-20 12:50:17 +02002767 int read_next = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002768
2769 /* The format is: |{bartype},{value},...
2770 * For a very long string:
2771 * |{bartype},>{length of "{text}{text2}"}
2772 * |<{text1}
2773 * |<{text2},{value}
2774 * For a long line not using a string
2775 * |{bartype},{lots of values},>
2776 * |<{value},{value}
2777 */
2778 if (*p == '<')
2779 {
2780 /* Continuation line of an unrecognized item. */
2781 if (writing)
2782 ga_add_string(&virp->vir_barlines, virp->vir_line);
2783 }
2784 else
2785 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002786 ga_init2(&values, sizeof(bval_T), 20);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002787 bartype = getdigits(&p);
2788 switch (bartype)
2789 {
2790 case BARTYPE_VERSION:
2791 /* Only use the version when it comes before the encoding.
2792 * If it comes later it was copied by a Vim version that
2793 * doesn't understand the version. */
2794 if (!got_encoding)
2795 {
Bram Moolenaarecefe712016-06-20 12:50:17 +02002796 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002797 vp = (bval_T *)values.ga_data;
2798 if (values.ga_len > 0 && vp->bv_type == BVAL_NR)
2799 virp->vir_version = vp->bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002800 }
2801 break;
2802
2803 case BARTYPE_HISTORY:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002804 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002805 handle_viminfo_history(&values, writing);
2806 break;
2807
2808 case BARTYPE_REGISTER:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002809 read_next = barline_parse(virp, p, &values);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002810 handle_viminfo_register(&values, force);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002811 break;
2812
Bram Moolenaar2d358992016-06-12 21:20:54 +02002813 case BARTYPE_MARK:
Bram Moolenaarecefe712016-06-20 12:50:17 +02002814 read_next = barline_parse(virp, p, &values);
Bram Moolenaar2d358992016-06-12 21:20:54 +02002815 handle_viminfo_mark(&values, force);
2816 break;
2817
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002818 default:
2819 /* copy unrecognized line (for future use) */
2820 if (writing)
2821 ga_add_string(&virp->vir_barlines, virp->vir_line);
2822 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002823 for (i = 0; i < values.ga_len; ++i)
2824 {
2825 vp = (bval_T *)values.ga_data + i;
2826 if (vp->bv_type == BVAL_STRING && vp->bv_allocated)
2827 vim_free(vp->bv_string);
2828 }
2829 ga_clear(&values);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002830 }
2831
Bram Moolenaarecefe712016-06-20 12:50:17 +02002832 if (read_next)
2833 return viminfo_readline(virp);
2834 return FALSE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002835}
2836
2837 static void
2838write_viminfo_version(FILE *fp_out)
2839{
2840 fprintf(fp_out, "# Viminfo version\n|%d,%d\n\n",
2841 BARTYPE_VERSION, VIMINFO_VERSION);
2842}
2843
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002844 static void
2845write_viminfo_barlines(vir_T *virp, FILE *fp_out)
2846{
2847 int i;
2848 garray_T *gap = &virp->vir_barlines;
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002849 int seen_useful = FALSE;
2850 char *line;
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002851
2852 if (gap->ga_len > 0)
2853 {
2854 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out);
2855
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002856 /* Skip over continuation lines until seeing a useful line. */
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002857 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaardec85cf2016-07-02 22:33:46 +02002858 {
2859 line = ((char **)(gap->ga_data))[i];
2860 if (seen_useful || line[1] != '<')
2861 {
2862 fputs(line, fp_out);
2863 seen_useful = TRUE;
2864 }
2865 }
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002866 }
2867}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868#endif /* FEAT_VIMINFO */
2869
Bram Moolenaar724f2ed2016-06-11 22:21:17 +02002870#if defined(FEAT_CMDHIST) || defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002871/*
2872 * Return the current time in seconds. Calls time(), unless test_settime()
2873 * was used.
2874 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02002875 time_T
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002876vim_time(void)
2877{
2878# ifdef FEAT_EVAL
2879 return time_for_testing == 0 ? time(NULL) : time_for_testing;
2880# else
2881 return time(NULL);
2882# endif
2883}
2884#endif
2885
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886/*
2887 * Implementation of ":fixdel", also used by get_stty().
2888 * <BS> resulting <Del>
2889 * ^? ^H
2890 * not ^? ^?
2891 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002893do_fixdel(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894{
2895 char_u *p;
2896
2897 p = find_termcode((char_u *)"kb");
2898 add_termcode((char_u *)"kD", p != NULL
2899 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2900}
2901
2902 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002903print_line_no_prefix(
2904 linenr_T lnum,
2905 int use_number,
2906 int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002908 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909
2910 if (curwin->w_p_nu || use_number)
2911 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002912 vim_snprintf((char *)numbuf, sizeof(numbuf),
2913 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */
2915 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002916 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917}
2918
2919/*
2920 * Print a text line. Also in silent mode ("ex -s").
2921 */
2922 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002923print_line(linenr_T lnum, int use_number, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924{
2925 int save_silent = silent_mode;
2926
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002928 silent_mode = FALSE;
2929 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
2930 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 if (save_silent)
2932 {
2933 msg_putchar('\n');
2934 cursor_on(); /* msg_start() switches it off */
2935 out_flush();
2936 silent_mode = save_silent;
2937 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00002938 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939}
2940
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002941 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002942rename_buffer(char_u *new_fname)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002943{
2944 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02002945 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002946
Bram Moolenaar7e283842013-05-30 11:43:15 +02002947#ifdef FEAT_AUTOCMD
2948 buf = curbuf;
2949 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002950 /* buffer changed, don't change name now */
2951 if (buf != curbuf)
2952 return FAIL;
2953# ifdef FEAT_EVAL
2954 if (aborting()) /* autocmds may abort script processing */
2955 return FAIL;
2956# endif
2957#endif
2958 /*
2959 * The name of the current buffer will be changed.
2960 * A new (unlisted) buffer entry needs to be made to hold the old file
2961 * name, which will become the alternate file name.
2962 * But don't set the alternate file name if the buffer didn't have a
2963 * name.
2964 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02002965 fname = curbuf->b_ffname;
2966 sfname = curbuf->b_sfname;
2967 xfname = curbuf->b_fname;
2968 curbuf->b_ffname = NULL;
2969 curbuf->b_sfname = NULL;
2970 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002971 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02002972 curbuf->b_ffname = fname;
2973 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002974 return FAIL;
2975 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02002976 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002977 if (xfname != NULL && *xfname != NUL)
2978 {
2979 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
2980 if (buf != NULL && !cmdmod.keepalt)
2981 curwin->w_alt_fnum = buf->b_fnum;
2982 }
2983 vim_free(fname);
2984 vim_free(sfname);
2985#ifdef FEAT_AUTOCMD
Bram Moolenaar7e283842013-05-30 11:43:15 +02002986 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002987#endif
2988 /* Change directories when the 'acd' option is set. */
2989 DO_AUTOCHDIR
2990 return OK;
2991}
2992
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993/*
2994 * ":file[!] [fname]".
2995 */
2996 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002997ex_file(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002999 /* ":0file" removes the file name. Check for illegal uses ":3file",
3000 * "0file name", etc. */
3001 if (eap->addr_count > 0
3002 && (*eap->arg != NUL
3003 || eap->line2 > 0
3004 || eap->addr_count > 1))
3005 {
3006 EMSG(_(e_invarg));
3007 return;
3008 }
3009
3010 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003012 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 }
3015 /* print full file name if :cd used */
Bram Moolenaar426dd022016-03-15 15:09:29 +01003016 if (!shortmess(SHM_FILEINFO))
3017 fileinfo(FALSE, FALSE, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018}
3019
3020/*
3021 * ":update".
3022 */
3023 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003024ex_update(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025{
3026 if (curbufIsChanged())
3027 (void)do_write(eap);
3028}
3029
3030/*
3031 * ":write" and ":saveas".
3032 */
3033 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003034ex_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035{
3036 if (eap->usefilter) /* input lines to shell command */
3037 do_bang(1, eap, FALSE, TRUE, FALSE);
3038 else
3039 (void)do_write(eap);
3040}
3041
3042/*
3043 * write current buffer to file 'eap->arg'
3044 * if 'eap->append' is TRUE, append to the file
3045 *
3046 * if *eap->arg == NUL write to current file
3047 *
3048 * return FAIL for failure, OK otherwise
3049 */
3050 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003051do_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052{
3053 int other;
3054 char_u *fname = NULL; /* init to shut up gcc */
3055 char_u *ffname;
3056 int retval = FAIL;
3057 char_u *free_fname = NULL;
3058#ifdef FEAT_BROWSE
3059 char_u *browse_file = NULL;
3060#endif
3061 buf_T *alt_buf = NULL;
Bram Moolenaar5c719942016-07-09 23:40:45 +02003062 int name_was_missing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063
3064 if (not_writing()) /* check 'write' option */
3065 return FAIL;
3066
3067 ffname = eap->arg;
3068#ifdef FEAT_BROWSE
3069 if (cmdmod.browse)
3070 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003071 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072 NULL, NULL, NULL, curbuf);
3073 if (browse_file == NULL)
3074 goto theend;
3075 ffname = browse_file;
3076 }
3077#endif
3078 if (*ffname == NUL)
3079 {
3080 if (eap->cmdidx == CMD_saveas)
3081 {
3082 EMSG(_(e_argreq));
3083 goto theend;
3084 }
3085 other = FALSE;
3086 }
3087 else
3088 {
3089 fname = ffname;
3090 free_fname = fix_fname(ffname);
3091 /*
3092 * When out-of-memory, keep unexpanded file name, because we MUST be
3093 * able to write the file in this situation.
3094 */
3095 if (free_fname != NULL)
3096 ffname = free_fname;
3097 other = otherfile(ffname);
3098 }
3099
3100 /*
3101 * If we have a new file, put its name in the list of alternate file names.
3102 */
3103 if (other)
3104 {
3105 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
3106 || eap->cmdidx == CMD_saveas)
3107 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
3108 else
3109 alt_buf = buflist_findname(ffname);
3110 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
3111 {
3112 /* Overwriting a file that is loaded in another buffer is not a
3113 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00003114 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 goto theend;
3116 }
3117 }
3118
3119 /*
3120 * Writing to the current file is not allowed in readonly mode
3121 * and a file name is required.
3122 * "nofile" and "nowrite" buffers cannot be written implicitly either.
3123 */
3124 if (!other && (
3125#ifdef FEAT_QUICKFIX
3126 bt_dontwrite_msg(curbuf) ||
3127#endif
3128 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
3129 goto theend;
3130
3131 if (!other)
3132 {
3133 ffname = curbuf->b_ffname;
3134 fname = curbuf->b_fname;
3135 /*
3136 * Not writing the whole file is only allowed with '!'.
3137 */
3138 if ( (eap->line1 != 1
3139 || eap->line2 != curbuf->b_ml.ml_line_count)
3140 && !eap->forceit
3141 && !eap->append
3142 && !p_wa)
3143 {
3144#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3145 if (p_confirm || cmdmod.confirm)
3146 {
3147 if (vim_dialog_yesno(VIM_QUESTION, NULL,
3148 (char_u *)_("Write partial file?"), 2) != VIM_YES)
3149 goto theend;
3150 eap->forceit = TRUE;
3151 }
3152 else
3153#endif
3154 {
3155 EMSG(_("E140: Use ! to write partial buffer"));
3156 goto theend;
3157 }
3158 }
3159 }
3160
3161 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
3162 {
3163 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
3164 {
3165#ifdef FEAT_AUTOCMD
3166 buf_T *was_curbuf = curbuf;
3167
3168 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003169 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170# ifdef FEAT_EVAL
3171 if (curbuf != was_curbuf || aborting())
3172# else
3173 if (curbuf != was_curbuf)
3174# endif
3175 {
3176 /* buffer changed, don't change name now */
3177 retval = FAIL;
3178 goto theend;
3179 }
3180#endif
3181 /* Exchange the file names for the current and the alternate
3182 * buffer. This makes it look like we are now editing the buffer
3183 * under the new name. Must be done before buf_write(), because
3184 * if there is no file name and 'cpo' contains 'F', it will set
3185 * the file name. */
3186 fname = alt_buf->b_fname;
3187 alt_buf->b_fname = curbuf->b_fname;
3188 curbuf->b_fname = fname;
3189 fname = alt_buf->b_ffname;
3190 alt_buf->b_ffname = curbuf->b_ffname;
3191 curbuf->b_ffname = fname;
3192 fname = alt_buf->b_sfname;
3193 alt_buf->b_sfname = curbuf->b_sfname;
3194 curbuf->b_sfname = fname;
3195 buf_name_changed(curbuf);
3196#ifdef FEAT_AUTOCMD
3197 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003198 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 if (!alt_buf->b_p_bl)
3200 {
3201 alt_buf->b_p_bl = TRUE;
3202 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
3203 }
3204# ifdef FEAT_EVAL
3205 if (curbuf != was_curbuf || aborting())
3206# else
3207 if (curbuf != was_curbuf)
3208# endif
3209 {
3210 /* buffer changed, don't write the file */
3211 retval = FAIL;
3212 goto theend;
3213 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003214
3215 /* If 'filetype' was empty try detecting it now. */
3216 if (*curbuf->b_p_ft == NUL)
3217 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003218 if (au_has_group((char_u *)"filetypedetect"))
3219 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
Bram Moolenaar1610d052016-06-09 22:53:01 +02003220 TRUE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00003221 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003222 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01003223
3224 /* Autocommands may have changed buffer names, esp. when
3225 * 'autochdir' is set. */
3226 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227#endif
3228 }
3229
Bram Moolenaar5c719942016-07-09 23:40:45 +02003230 name_was_missing = curbuf->b_ffname == NULL;
3231
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
3233 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003234
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003235 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003236 if (eap->cmdidx == CMD_saveas)
3237 {
3238 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00003239 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003240 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003241#ifdef FEAT_WINDOWS
3242 redraw_tabline = TRUE;
3243#endif
3244 }
Bram Moolenaar5c719942016-07-09 23:40:45 +02003245 }
3246
3247 /* Change directories when the 'acd' option is set and the file name
3248 * got changed or set. */
3249 if (eap->cmdidx == CMD_saveas || name_was_missing)
3250 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003251 DO_AUTOCHDIR
3252 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 }
3254
3255theend:
3256#ifdef FEAT_BROWSE
3257 vim_free(browse_file);
3258#endif
3259 vim_free(free_fname);
3260 return retval;
3261}
3262
3263/*
3264 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
3265 * BF_NEW or BF_READERR, check for overwriting current file.
3266 * May set eap->forceit if a dialog says it's OK to overwrite.
3267 * Return OK if it's OK, FAIL if it is not.
3268 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02003269 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003270check_overwrite(
3271 exarg_T *eap,
3272 buf_T *buf,
3273 char_u *fname, /* file name to be used (can differ from
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 buf->ffname) */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003275 char_u *ffname, /* full path version of fname */
3276 int other) /* writing under other name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277{
3278 /*
3279 * write to other file or b_flags set or not writing the whole file:
3280 * overwriting only allowed with '!'
3281 */
3282 if ( (other
3283 || (buf->b_flags & BF_NOTEDITED)
3284 || ((buf->b_flags & BF_NEW)
3285 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
3286 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00003288#ifdef FEAT_QUICKFIX
3289 && !bt_nofile(buf)
3290#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 && vim_fexists(ffname))
3292 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003293 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003295#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00003296 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003297 if (mch_isdir(ffname))
3298 {
3299 EMSG2(_(e_isadir2), ffname);
3300 return FAIL;
3301 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302#endif
3303#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003304 if (p_confirm || cmdmod.confirm)
3305 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003306 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003308 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
3309 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
3310 return FAIL;
3311 eap->forceit = TRUE;
3312 }
3313 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003315 {
3316 EMSG(_(e_exists));
3317 return FAIL;
3318 }
3319 }
3320
3321 /* For ":w! filename" check that no swap file exists for "filename". */
3322 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003324 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003325 char_u *p;
3326 int r;
3327 char_u *swapname;
3328
3329 /* We only try the first entry in 'directory', without checking if
3330 * it's writable. If the "." directory is not writable the write
3331 * will probably fail anyway.
3332 * Use 'shortname' of the current buffer, since there is no buffer
3333 * for the written file. */
3334 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02003335 {
3336 dir = alloc(5);
3337 if (dir == NULL)
3338 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003339 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003340 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003341 else
3342 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003343 dir = alloc(MAXPATHL);
3344 if (dir == NULL)
3345 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003346 p = p_dir;
3347 copy_option_part(&p, dir, MAXPATHL, ",");
3348 }
3349 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003350 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003351 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003352 if (r)
3353 {
3354#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3355 if (p_confirm || cmdmod.confirm)
3356 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003357 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003358
3359 dialog_msg(buff,
3360 _("Swap file \"%s\" exists, overwrite anyway?"),
3361 swapname);
3362 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
3363 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003364 {
3365 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003366 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003367 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003368 eap->forceit = TRUE;
3369 }
3370 else
3371#endif
3372 {
3373 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
3374 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003375 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003376 return FAIL;
3377 }
3378 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003379 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 }
3381 }
3382 return OK;
3383}
3384
3385/*
3386 * Handle ":wnext", ":wNext" and ":wprevious" commands.
3387 */
3388 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003389ex_wnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390{
3391 int i;
3392
3393 if (eap->cmd[1] == 'n')
3394 i = curwin->w_arg_idx + (int)eap->line2;
3395 else
3396 i = curwin->w_arg_idx - (int)eap->line2;
3397 eap->line1 = 1;
3398 eap->line2 = curbuf->b_ml.ml_line_count;
3399 if (do_write(eap) != FAIL)
3400 do_argfile(eap, i);
3401}
3402
3403/*
3404 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
3405 */
3406 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003407do_wqall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408{
3409 buf_T *buf;
3410 int error = 0;
3411 int save_forceit = eap->forceit;
3412
3413 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
3414 exiting = TRUE;
3415
3416 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
3417 {
3418 if (bufIsChanged(buf))
3419 {
3420 /*
3421 * Check if there is a reason the buffer cannot be written:
3422 * 1. if the 'write' option is set
3423 * 2. if there is no file name (even after browsing)
3424 * 3. if the 'readonly' is set (even after a dialog)
3425 * 4. if overwriting is allowed (even after a dialog)
3426 */
3427 if (not_writing())
3428 {
3429 ++error;
3430 break;
3431 }
3432#ifdef FEAT_BROWSE
3433 /* ":browse wall": ask for file name if there isn't one */
3434 if (buf->b_ffname == NULL && cmdmod.browse)
3435 browse_save_fname(buf);
3436#endif
3437 if (buf->b_ffname == NULL)
3438 {
3439 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
3440 ++error;
3441 }
3442 else if (check_readonly(&eap->forceit, buf)
3443 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3444 FALSE) == FAIL)
3445 {
3446 ++error;
3447 }
3448 else
3449 {
3450 if (buf_write_all(buf, eap->forceit) == FAIL)
3451 ++error;
3452#ifdef FEAT_AUTOCMD
3453 /* an autocommand may have deleted the buffer */
3454 if (!buf_valid(buf))
3455 buf = firstbuf;
3456#endif
3457 }
3458 eap->forceit = save_forceit; /* check_overwrite() may set it */
3459 }
3460 }
3461 if (exiting)
3462 {
3463 if (!error)
3464 getout(0); /* exit Vim */
3465 not_exiting();
3466 }
3467}
3468
3469/*
3470 * Check the 'write' option.
3471 * Return TRUE and give a message when it's not st.
3472 */
3473 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003474not_writing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475{
3476 if (p_write)
3477 return FALSE;
3478 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
3479 return TRUE;
3480}
3481
3482/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003483 * Check if a buffer is read-only (either 'readonly' option is set or file is
3484 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3485 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 */
3487 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003488check_readonly(int *forceit, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003490 stat_T st;
Bram Moolenaar5386a122007-06-28 20:02:32 +00003491
3492 /* Handle a file being readonly when the 'readonly' option is set or when
3493 * the file exists and permissions are read-only.
3494 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3495 * important for device checks but not here. */
3496 if (!*forceit && (buf->b_p_ro
3497 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3498 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 {
3500#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3501 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3502 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003503 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504
Bram Moolenaar5386a122007-06-28 20:02:32 +00003505 if (buf->b_p_ro)
3506 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3507 buf->b_fname);
3508 else
3509 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 +00003510 buf->b_fname);
3511
3512 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3513 {
3514 /* Set forceit, to force the writing of a readonly file */
3515 *forceit = TRUE;
3516 return FALSE;
3517 }
3518 else
3519 return TRUE;
3520 }
3521 else
3522#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003523 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003525 else
3526 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3527 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528 return TRUE;
3529 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003530
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531 return FALSE;
3532}
3533
3534/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003535 * Try to abandon current file and edit a new or existing file.
3536 * 'fnum' is the number of the file, if zero use ffname/sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 *
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003538 * Return 1 for "normal" error, 2 for "not written" error, 0 for success
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003539 * -1 for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 * 'lnum' is the line number for the cursor in the new file (if non-zero).
3541 */
3542 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003543getfile(
3544 int fnum,
3545 char_u *ffname,
3546 char_u *sfname,
3547 int setpm,
3548 linenr_T lnum,
3549 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550{
3551 int other;
3552 int retval;
3553 char_u *free_me = NULL;
3554
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003555 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 return 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003557#ifdef FEAT_AUTOCMD
3558 if (curbuf_locked())
3559 return 1;
3560#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561
3562 if (fnum == 0)
3563 {
3564 /* make ffname full path, set sfname */
3565 fname_expand(curbuf, &ffname, &sfname);
3566 other = otherfile(ffname);
3567 free_me = ffname; /* has been allocated, free() later */
3568 }
3569 else
3570 other = (fnum != curbuf->b_fnum);
3571
3572 if (other)
3573 ++no_wait_return; /* don't wait for autowrite message */
3574 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf)
3575 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3576 {
3577#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3578 if (p_confirm && p_write)
3579 dialog_changed(curbuf, FALSE);
3580 if (curbufIsChanged())
3581#endif
3582 {
3583 if (other)
3584 --no_wait_return;
3585 EMSG(_(e_nowrtmsg));
3586 retval = 2; /* file has been changed */
3587 goto theend;
3588 }
3589 }
3590 if (other)
3591 --no_wait_return;
3592 if (setpm)
3593 setpcmark();
3594 if (!other)
3595 {
3596 if (lnum != 0)
3597 curwin->w_cursor.lnum = lnum;
3598 check_cursor_lnum();
3599 beginline(BL_SOL | BL_FIX);
3600 retval = 0; /* it's in the same file */
3601 }
3602 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003603 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
3604 curwin) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605 retval = -1; /* opened another file */
3606 else
3607 retval = 1; /* error encountered */
3608
3609theend:
3610 vim_free(free_me);
3611 return retval;
3612}
3613
3614/*
3615 * start editing a new file
3616 *
3617 * fnum: file number; if zero use ffname/sfname
3618 * ffname: the file name
3619 * - full path if sfname used,
3620 * - any file name if sfname is NULL
3621 * - empty string to re-edit with the same file name (but may be
3622 * in a different directory)
3623 * - NULL to start an empty buffer
3624 * sfname: the short file name (or NULL)
3625 * eap: contains the command to be executed after loading the file and
3626 * forced 'ff' and 'fenc'
3627 * newlnum: if > 0: put cursor on this line number (if possible)
3628 * if ECMD_LASTL: use last position in loaded file
3629 * if ECMD_LAST: use last position in all files
3630 * if ECMD_ONE: use first line
3631 * flags:
3632 * ECMD_HIDE: if TRUE don't free the current buffer
3633 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3634 * ECMD_OLDBUF: use existing buffer if it exists
3635 * ECMD_FORCEIT: ! used for Ex command
3636 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003637 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003638 * window, NULL when splitting the window first. When not NULL info
3639 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 *
3641 * return FAIL for failure, OK otherwise
3642 */
3643 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003644do_ecmd(
3645 int fnum,
3646 char_u *ffname,
3647 char_u *sfname,
3648 exarg_T *eap, /* can be NULL! */
3649 linenr_T newlnum,
3650 int flags,
3651 win_T *oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652{
3653 int other_file; /* TRUE if editing another file */
3654 int oldbuf; /* TRUE if using existing buffer */
3655#ifdef FEAT_AUTOCMD
3656 int auto_buf = FALSE; /* TRUE if autocommands brought us
3657 into the buffer unexpectedly */
3658 char_u *new_name = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003659 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660#endif
3661 buf_T *buf;
3662#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3663 buf_T *old_curbuf = curbuf;
3664#endif
3665 char_u *free_fname = NULL;
3666#ifdef FEAT_BROWSE
3667 char_u *browse_file = NULL;
3668#endif
3669 int retval = FAIL;
3670 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003671 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 linenr_T topline = 0;
3673 int newcol = -1;
3674 int solcol = -1;
3675 pos_T *pos;
3676#ifdef FEAT_SUN_WORKSHOP
3677 char_u *cp;
3678#endif
3679 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003680#ifdef FEAT_SPELL
3681 int did_get_winopts = FALSE;
3682#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003683 int readfile_flags = 0;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003684 int did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685
3686 if (eap != NULL)
3687 command = eap->do_ecmd_cmd;
3688
3689 if (fnum != 0)
3690 {
3691 if (fnum == curbuf->b_fnum) /* file is already being edited */
3692 return OK; /* nothing to do */
3693 other_file = TRUE;
3694 }
3695 else
3696 {
3697#ifdef FEAT_BROWSE
3698 if (cmdmod.browse)
3699 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003700# ifdef FEAT_AUTOCMD
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003701 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003702# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003703 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003704# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003705 au_has_group((char_u *)"FileExplorer"))
3706 {
3707 /* No browsing supported but we do have the file explorer:
3708 * Edit the directory. */
3709 if (ffname == NULL || !mch_isdir(ffname))
3710 ffname = (char_u *)".";
3711 }
3712 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003713# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003714 {
3715 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003717 if (browse_file == NULL)
3718 goto theend;
3719 ffname = browse_file;
3720 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 }
3722#endif
3723 /* if no short name given, use ffname for short name */
3724 if (sfname == NULL)
3725 sfname = ffname;
3726#ifdef USE_FNAME_CASE
3727# ifdef USE_LONG_FNAME
3728 if (USE_LONG_FNAME)
3729# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003730 if (sfname != NULL)
3731 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732#endif
3733
3734#ifdef FEAT_LISTCMDS
3735 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3736 goto theend;
3737#endif
3738
3739 if (ffname == NULL)
3740 other_file = TRUE;
3741 /* there is no file name */
3742 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3743 other_file = FALSE;
3744 else
3745 {
3746 if (*ffname == NUL) /* re-edit with same file name */
3747 {
3748 ffname = curbuf->b_ffname;
3749 sfname = curbuf->b_fname;
3750 }
3751 free_fname = fix_fname(ffname); /* may expand to full path name */
3752 if (free_fname != NULL)
3753 ffname = free_fname;
3754 other_file = otherfile(ffname);
3755#ifdef FEAT_SUN_WORKSHOP
3756 if (usingSunWorkShop && p_acd
3757 && (cp = vim_strrchr(sfname, '/')) != NULL)
3758 sfname = ++cp;
3759#endif
3760 }
3761 }
3762
3763 /*
3764 * if the file was changed we may not be allowed to abandon it
3765 * - if we are going to re-edit the same file
3766 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3767 */
3768 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3769 || (curbuf->b_nwindows == 1
3770 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003771 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3772 | (other_file ? 0 : CCGD_MULTWIN)
3773 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3774 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 {
3776 if (fnum == 0 && other_file && ffname != NULL)
3777 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3778 goto theend;
3779 }
3780
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 /*
3782 * End Visual mode before switching to another buffer, so the text can be
3783 * copied into the GUI selection buffer.
3784 */
3785 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003787#ifdef FEAT_AUTOCMD
3788 if ((command != NULL || newlnum > (linenr_T)0)
3789 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3790 {
3791 int len;
3792 char_u *p;
3793
3794 /* Set v:swapcommand for the SwapExists autocommands. */
3795 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003796 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003797 else
3798 len = 30;
3799 p = alloc((unsigned)len);
3800 if (p != NULL)
3801 {
3802 if (command != NULL)
3803 vim_snprintf((char *)p, len, ":%s\r", command);
3804 else
3805 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3806 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3807 did_set_swapcommand = TRUE;
3808 vim_free(p);
3809 }
3810 }
3811#endif
3812
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 /*
3814 * If we are starting to edit another file, open a (new) buffer.
3815 * Otherwise we re-use the current buffer.
3816 */
3817 if (other_file)
3818 {
3819#ifdef FEAT_LISTCMDS
3820 if (!(flags & ECMD_ADDBUF))
3821#endif
3822 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003823 if (!cmdmod.keepalt)
3824 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003825 if (oldwin != NULL)
3826 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 }
3828
3829 if (fnum)
3830 buf = buflist_findnr(fnum);
3831 else
3832 {
3833#ifdef FEAT_LISTCMDS
3834 if (flags & ECMD_ADDBUF)
3835 {
3836 linenr_T tlnum = 1L;
3837
3838 if (command != NULL)
3839 {
3840 tlnum = atol((char *)command);
3841 if (tlnum <= 0)
3842 tlnum = 1L;
3843 }
3844 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3845 goto theend;
3846 }
3847#endif
3848 buf = buflist_new(ffname, sfname, 0L,
3849 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003850#ifdef FEAT_AUTOCMD
3851 /* autocommands may change curwin and curbuf */
3852 if (oldwin != NULL)
3853 oldwin = curwin;
3854 old_curbuf = curbuf;
3855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 }
3857 if (buf == NULL)
3858 goto theend;
3859 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3860 {
3861 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 }
3863 else /* existing memfile */
3864 {
3865 oldbuf = TRUE;
3866 (void)buf_check_timestamp(buf, FALSE);
3867 /* Check if autocommands made buffer invalid or changed the current
3868 * buffer. */
3869 if (!buf_valid(buf)
3870#ifdef FEAT_AUTOCMD
3871 || curbuf != old_curbuf
3872#endif
3873 )
3874 goto theend;
3875#ifdef FEAT_EVAL
3876 if (aborting()) /* autocmds may abort script processing */
3877 goto theend;
3878#endif
3879 }
3880
3881 /* May jump to last used line number for a loaded buffer or when asked
3882 * for explicitly */
3883 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3884 {
3885 pos = buflist_findfpos(buf);
3886 newlnum = pos->lnum;
3887 solcol = pos->col;
3888 }
3889
3890 /*
3891 * Make the (new) buffer the one used by the current window.
3892 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3893 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003894 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 */
3896 if (buf != curbuf)
3897 {
3898#ifdef FEAT_AUTOCMD
3899 /*
3900 * Be careful: The autocommands may delete any buffer and change
3901 * the current buffer.
3902 * - If the buffer we are going to edit is deleted, give up.
3903 * - If the current buffer is deleted, prefer to load the new
3904 * buffer when loading a buffer is required. This avoids
3905 * loading another buffer which then must be closed again.
3906 * - If we ended up in the new buffer already, need to skip a few
3907 * things, set auto_buf.
3908 */
3909 if (buf->b_fname != NULL)
3910 new_name = vim_strsave(buf->b_fname);
3911 au_new_curbuf = buf;
3912 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3913 if (!buf_valid(buf)) /* new buffer has been deleted */
3914 {
3915 delbuf_msg(new_name); /* frees new_name */
3916 goto theend;
3917 }
3918# ifdef FEAT_EVAL
3919 if (aborting()) /* autocmds may abort script processing */
3920 {
3921 vim_free(new_name);
3922 goto theend;
3923 }
3924# endif
3925 if (buf == curbuf) /* already in new buffer */
3926 auto_buf = TRUE;
3927 else
3928 {
3929 if (curbuf == old_curbuf)
3930#endif
3931 buf_copy_options(buf, BCO_ENTER);
3932
3933 /* close the link to the current buffer */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003934 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003935 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003936 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937
3938#ifdef FEAT_AUTOCMD
Bram Moolenaarfc573802011-12-30 15:01:59 +01003939 /* Autocommands may open a new window and leave oldwin open
3940 * which leads to crashes since the above call sets
3941 * oldwin->w_buffer to NULL. */
3942 if (curwin != oldwin && oldwin != aucmd_win
3943 && win_valid(oldwin) && oldwin->w_buffer == NULL)
3944 win_close(oldwin, FALSE);
3945
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946# ifdef FEAT_EVAL
3947 if (aborting()) /* autocmds may abort script processing */
3948 {
3949 vim_free(new_name);
3950 goto theend;
3951 }
3952# endif
3953 /* Be careful again, like above. */
3954 if (!buf_valid(buf)) /* new buffer has been deleted */
3955 {
3956 delbuf_msg(new_name); /* frees new_name */
3957 goto theend;
3958 }
3959 if (buf == curbuf) /* already in new buffer */
3960 auto_buf = TRUE;
3961 else
3962#endif
3963 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02003964#ifdef FEAT_SYN_HL
3965 /*
3966 * <VN> We could instead free the synblock
3967 * and re-attach to buffer, perhaps.
3968 */
3969 if (curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02003970 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003971#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 curwin->w_buffer = buf;
3973 curbuf = buf;
3974 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003975
3976 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
3977 if (!oldbuf && eap != NULL)
3978 {
3979 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003980#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003981 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003982#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 }
3985
3986 /* May get the window options from the last time this buffer
3987 * was in this window (or another window). If not used
3988 * before, reset the local window options to the global
3989 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00003990 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003991#ifdef FEAT_SPELL
3992 did_get_winopts = TRUE;
3993#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994
3995#ifdef FEAT_AUTOCMD
3996 }
3997 vim_free(new_name);
3998 au_new_curbuf = NULL;
3999#endif
4000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001
4002 curwin->w_pcmark.lnum = 1;
4003 curwin->w_pcmark.col = 0;
4004 }
4005 else /* !other_file */
4006 {
4007 if (
4008#ifdef FEAT_LISTCMDS
4009 (flags & ECMD_ADDBUF) ||
4010#endif
4011 check_fname() == FAIL)
4012 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01004013
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014 oldbuf = (flags & ECMD_OLDBUF);
4015 }
4016
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004017 /* Don't redraw until the cursor is in the right line, otherwise
4018 * autocommands may cause ml_get errors. */
4019 ++RedrawingDisabled;
4020 did_inc_redrawing_disabled = TRUE;
4021
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004022#ifdef FEAT_AUTOCMD
4023 buf = curbuf;
4024#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025 if ((flags & ECMD_SET_HELP) || keep_help_flag)
4026 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01004027 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 }
4029 else
4030 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 /* Don't make a buffer listed if it's a help buffer. Useful when
4032 * using CTRL-O to go back to a help file. */
4033 if (!curbuf->b_help)
4034 set_buflisted(TRUE);
4035 }
4036
4037#ifdef FEAT_AUTOCMD
4038 /* If autocommands change buffers under our fingers, forget about
4039 * editing the file. */
4040 if (buf != curbuf)
4041 goto theend;
4042# ifdef FEAT_EVAL
4043 if (aborting()) /* autocmds may abort script processing */
4044 goto theend;
4045# endif
4046
4047 /* Since we are starting to edit a file, consider the filetype to be
4048 * unset. Helps for when an autocommand changes files and expects syntax
4049 * highlighting to work in the other file. */
4050 did_filetype = FALSE;
4051#endif
4052
4053/*
4054 * other_file oldbuf
4055 * FALSE FALSE re-edit same file, buffer is re-used
4056 * FALSE TRUE re-edit same file, nothing changes
4057 * TRUE FALSE start editing new file, new buffer
4058 * TRUE TRUE start editing in existing buffer (nothing to do)
4059 */
4060 if (!other_file && !oldbuf) /* re-use the buffer */
4061 {
4062 set_last_cursor(curwin); /* may set b_last_cursor */
4063 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
4064 {
4065 newlnum = curwin->w_cursor.lnum;
4066 solcol = curwin->w_cursor.col;
4067 }
4068#ifdef FEAT_AUTOCMD
4069 buf = curbuf;
4070 if (buf->b_fname != NULL)
4071 new_name = vim_strsave(buf->b_fname);
4072 else
4073 new_name = NULL;
4074#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004075 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
4076 {
4077 /* Save all the text, so that the reload can be undone.
4078 * Sync first so that this is a separate undo-able action. */
4079 u_sync(FALSE);
4080 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
4081 == FAIL)
4082 goto theend;
4083 u_unchanged(curbuf);
4084 buf_freeall(curbuf, BFA_KEEP_UNDO);
4085
4086 /* tell readfile() not to clear or reload undo info */
4087 readfile_flags = READ_KEEP_UNDO;
4088 }
4089 else
4090 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091#ifdef FEAT_AUTOCMD
4092 /* If autocommands deleted the buffer we were going to re-edit, give
4093 * up and jump to the end. */
4094 if (!buf_valid(buf))
4095 {
4096 delbuf_msg(new_name); /* frees new_name */
4097 goto theend;
4098 }
4099 vim_free(new_name);
4100
4101 /* If autocommands change buffers under our fingers, forget about
4102 * re-editing the file. Should do the buf_clear_file(), but perhaps
4103 * the autocommands changed the buffer... */
4104 if (buf != curbuf)
4105 goto theend;
4106# ifdef FEAT_EVAL
4107 if (aborting()) /* autocmds may abort script processing */
4108 goto theend;
4109# endif
4110#endif
4111 buf_clear_file(curbuf);
4112 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
4113 curbuf->b_op_end.lnum = 0;
4114 }
4115
4116/*
4117 * If we get here we are sure to start editing
4118 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 /* Assume success now */
4120 retval = OK;
4121
4122 /*
4123 * Reset cursor position, could be used by autocommands.
4124 */
4125 check_cursor();
4126
4127 /*
4128 * Check if we are editing the w_arg_idx file in the argument list.
4129 */
4130 check_arg_idx(curwin);
4131
4132#ifdef FEAT_AUTOCMD
4133 if (!auto_buf)
4134#endif
4135 {
4136 /*
4137 * Set cursor and init window before reading the file and executing
4138 * autocommands. This allows for the autocommands to position the
4139 * cursor.
4140 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004141 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142
4143#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004144 /* It's possible that all lines in the buffer changed. Need to update
4145 * automatic folding for all windows where it's used. */
4146# ifdef FEAT_WINDOWS
4147 {
4148 win_T *win;
4149 tabpage_T *tp;
4150
4151 FOR_ALL_TAB_WINDOWS(tp, win)
4152 if (win->w_buffer == curbuf)
4153 foldUpdateAll(win);
4154 }
4155# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 foldUpdateAll(curwin);
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004157# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158#endif
4159
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004160 /* Change directories when the 'acd' option is set. */
4161 DO_AUTOCHDIR
4162
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 /*
4164 * Careful: open_buffer() and apply_autocmds() may change the current
4165 * buffer and window.
4166 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01004167 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 topline = curwin->w_topline;
4169 if (!oldbuf) /* need to read the file */
4170 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004171#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 swap_exists_action = SEA_DIALOG;
4173#endif
4174 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
4175
4176 /*
4177 * Open the buffer and read the file.
4178 */
4179#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004180 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 retval = FAIL;
4182#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004183 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184#endif
4185
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004186#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 if (swap_exists_action == SEA_QUIT)
4188 retval = FAIL;
4189 handle_swap_exists(old_curbuf);
4190#endif
4191 }
4192#ifdef FEAT_AUTOCMD
4193 else
4194 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004195 /* Read the modelines, but only to set window-local options. Any
4196 * buffer-local options have already been set and may have been
4197 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00004198 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004199
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
4201 &retval);
4202 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
4203 &retval);
4204 }
4205 check_arg_idx(curwin);
4206#endif
4207
Bram Moolenaareab316b2015-03-24 11:46:30 +01004208 /* If autocommands change the cursor position or topline, we should
4209 * keep it. Also when it moves within a line. */
4210 if (!equalpos(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 {
4212 newlnum = curwin->w_cursor.lnum;
4213 newcol = curwin->w_cursor.col;
4214 }
4215 if (curwin->w_topline == topline)
4216 topline = 0;
4217
4218 /* Even when cursor didn't move we need to recompute topline. */
4219 changed_line_abv_curs();
4220
4221#ifdef FEAT_TITLE
4222 maketitle();
4223#endif
4224 }
4225
4226#ifdef FEAT_DIFF
4227 /* Tell the diff stuff that this buffer is new and/or needs updating.
4228 * Also needed when re-editing the same buffer, because unloading will
4229 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004230 if (curwin->w_p_diff)
4231 {
4232 diff_buf_add(curbuf);
4233 diff_invalidate(curbuf);
4234 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235#endif
4236
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004237#ifdef FEAT_SPELL
4238 /* If the window options were changed may need to set the spell language.
4239 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02004240 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
4241 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004242#endif
4243
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 if (command == NULL)
4245 {
4246 if (newcol >= 0) /* position set by autocommands */
4247 {
4248 curwin->w_cursor.lnum = newlnum;
4249 curwin->w_cursor.col = newcol;
4250 check_cursor();
4251 }
4252 else if (newlnum > 0) /* line number from caller or old position */
4253 {
4254 curwin->w_cursor.lnum = newlnum;
4255 check_cursor_lnum();
4256 if (solcol >= 0 && !p_sol)
4257 {
4258 /* 'sol' is off: Use last known column. */
4259 curwin->w_cursor.col = solcol;
4260 check_cursor_col();
4261#ifdef FEAT_VIRTUALEDIT
4262 curwin->w_cursor.coladd = 0;
4263#endif
4264 curwin->w_set_curswant = TRUE;
4265 }
4266 else
4267 beginline(BL_SOL | BL_FIX);
4268 }
4269 else /* no line number, go to last line in Ex mode */
4270 {
4271 if (exmode_active)
4272 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4273 beginline(BL_WHITE | BL_FIX);
4274 }
4275 }
4276
4277#ifdef FEAT_WINDOWS
4278 /* Check if cursors in other windows on the same buffer are still valid */
4279 check_lnums(FALSE);
4280#endif
4281
4282 /*
4283 * Did not read the file, need to show some info about the file.
4284 * Do this after setting the cursor.
4285 */
4286 if (oldbuf
4287#ifdef FEAT_AUTOCMD
4288 && !auto_buf
4289#endif
4290 )
4291 {
4292 int msg_scroll_save = msg_scroll;
4293
4294 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
4295 * message. */
4296 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
4297 msg_scroll = FALSE;
4298 if (!msg_scroll) /* wait a bit when overwriting an error msg */
4299 check_for_delay(FALSE);
4300 msg_start();
4301 msg_scroll = msg_scroll_save;
4302 msg_scrolled_ign = TRUE;
4303
Bram Moolenaar426dd022016-03-15 15:09:29 +01004304 if (!shortmess(SHM_FILEINFO))
4305 fileinfo(FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306
4307 msg_scrolled_ign = FALSE;
4308 }
4309
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02004310#ifdef FEAT_VIMINFO
4311 curbuf->b_last_used = vim_time();
4312#endif
4313
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 if (command != NULL)
4315 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
4316
4317#ifdef FEAT_KEYMAP
4318 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004319 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320#endif
4321
4322 --RedrawingDisabled;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004323 did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 if (!skip_redraw)
4325 {
4326 n = p_so;
4327 if (topline == 0 && command == NULL)
4328 p_so = 999; /* force cursor halfway the window */
4329 update_topline();
4330#ifdef FEAT_SCROLLBIND
4331 curwin->w_scbind_pos = curwin->w_topline;
4332#endif
4333 p_so = n;
4334 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
4335 }
4336
4337 if (p_im)
4338 need_start_insertmode = TRUE;
4339
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004340 /* Change directories when the 'acd' option is set. */
4341 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00004343#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02004344 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 {
4346# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02004347 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
4349# endif
4350# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004351 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00004352 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353# endif
4354 }
4355#endif
4356
4357theend:
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004358 if (did_inc_redrawing_disabled)
4359 --RedrawingDisabled;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004360#ifdef FEAT_AUTOCMD
4361 if (did_set_swapcommand)
4362 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
4363#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364#ifdef FEAT_BROWSE
4365 vim_free(browse_file);
4366#endif
4367 vim_free(free_fname);
4368 return retval;
4369}
4370
4371#ifdef FEAT_AUTOCMD
4372 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004373delbuf_msg(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374{
4375 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
4376 name == NULL ? (char_u *)"" : name);
4377 vim_free(name);
4378 au_new_curbuf = NULL;
4379}
4380#endif
4381
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004382static int append_indent = 0; /* autoindent for first line */
4383
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384/*
4385 * ":insert" and ":append", also used by ":change"
4386 */
4387 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004388ex_append(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389{
4390 char_u *theline;
4391 int did_undo = FALSE;
4392 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004393 int indent = 0;
4394 char_u *p;
4395 int vcol;
4396 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004398 /* the ! flag toggles autoindent */
4399 if (eap->forceit)
4400 curbuf->b_p_ai = !curbuf->b_p_ai;
4401
4402 /* First autoindent comes from the line we start on */
4403 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
4404 append_indent = get_indent_lnum(lnum);
4405
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 if (eap->cmdidx != CMD_append)
4407 --lnum;
4408
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004409 /* when the buffer is empty need to delete the dummy line */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004410 if (empty && lnum == 1)
4411 lnum = 0;
4412
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 State = INSERT; /* behave like in Insert mode */
4414 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
4415 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004416
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004417 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 {
4419 msg_scroll = TRUE;
4420 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004421 if (curbuf->b_p_ai)
4422 {
4423 if (append_indent >= 0)
4424 {
4425 indent = append_indent;
4426 append_indent = -1;
4427 }
4428 else if (lnum > 0)
4429 indent = get_indent_lnum(lnum);
4430 }
4431 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004433 {
4434 /* No getline() function, use the lines that follow. This ends
4435 * when there is no more. */
4436 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
4437 break;
4438 p = vim_strchr(eap->nextcmd, NL);
4439 if (p == NULL)
4440 p = eap->nextcmd + STRLEN(eap->nextcmd);
4441 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4442 if (*p != NUL)
4443 ++p;
4444 eap->nextcmd = p;
4445 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004447 {
4448 int save_State = State;
4449
4450 /* Set State to avoid the cursor shape to be set to INSERT mode
4451 * when getline() returns. */
4452 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 theline = eap->getline(
4454#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004455 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004457 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004458 State = save_State;
4459 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004461 if (theline == NULL)
4462 break;
4463
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004464 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4465 if (ex_keep_indent)
4466 append_indent = indent;
4467
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004468 /* Look for the "." after automatic indent. */
4469 vcol = 0;
4470 for (p = theline; indent > vcol; ++p)
4471 {
4472 if (*p == ' ')
4473 ++vcol;
4474 else if (*p == TAB)
4475 vcol += 8 - vcol % 8;
4476 else
4477 break;
4478 }
4479 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004480 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4481 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 {
4483 vim_free(theline);
4484 break;
4485 }
4486
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004487 /* don't use autoindent if nothing was typed. */
4488 if (p[0] == NUL)
4489 theline[0] = NUL;
4490
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 did_undo = TRUE;
4492 ml_append(lnum, theline, (colnr_T)0, FALSE);
Bram Moolenaar70e136e2016-07-01 14:04:51 +02004493 appended_lines_mark(lnum + (empty ? 1 : 0), 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494
4495 vim_free(theline);
4496 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004497
4498 if (empty)
4499 {
4500 ml_delete(2L, FALSE);
4501 empty = FALSE;
4502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 }
4504 State = NORMAL;
4505
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004506 if (eap->forceit)
4507 curbuf->b_p_ai = !curbuf->b_p_ai;
4508
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004510 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511 * "end" is set to lnum when something has been appended, otherwise
4512 * it is the same than "start" -- Acevedo */
4513 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4514 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4515 if (eap->cmdidx != CMD_append)
4516 --curbuf->b_op_start.lnum;
4517 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4518 ? lnum : curbuf->b_op_start.lnum;
4519 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4520 curwin->w_cursor.lnum = lnum;
4521 check_cursor_lnum();
4522 beginline(BL_SOL | BL_FIX);
4523
4524 need_wait_return = FALSE; /* don't use wait_return() now */
4525 ex_no_reprint = TRUE;
4526}
4527
4528/*
4529 * ":change"
4530 */
4531 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004532ex_change(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533{
4534 linenr_T lnum;
4535
4536 if (eap->line2 >= eap->line1
4537 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4538 return;
4539
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004540 /* the ! flag toggles autoindent */
4541 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4542 append_indent = get_indent_lnum(eap->line1);
4543
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4545 {
4546 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4547 break;
4548 ml_delete(eap->line1, FALSE);
4549 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004550
4551 /* make sure the cursor is not beyond the end of the file now */
4552 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4554
4555 /* ":append" on the line above the deleted lines. */
4556 eap->line2 = eap->line1;
4557 ex_append(eap);
4558}
4559
4560 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004561ex_z(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562{
4563 char_u *x;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004564 int bigness;
4565 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 int minus = 0;
4567 linenr_T start, end, curs, i;
4568 int j;
4569 linenr_T lnum = eap->line2;
4570
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004571 /* Vi compatible: ":z!" uses display height, without a count uses
4572 * 'scroll' */
4573 if (eap->forceit)
4574 bigness = curwin->w_height;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004575#ifdef FEAT_WINDOWS
Bram Moolenaar631abc32014-02-22 22:27:47 +01004576 else if (firstwin != lastwin)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004577 bigness = curwin->w_height - 3;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004578#endif
Bram Moolenaar631abc32014-02-22 22:27:47 +01004579 else
4580 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 if (bigness < 1)
4582 bigness = 1;
4583
4584 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004585 kind = x;
4586 if (*kind == '-' || *kind == '+' || *kind == '='
4587 || *kind == '^' || *kind == '.')
4588 ++x;
4589 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 ++x;
4591
4592 if (*x != 0)
4593 {
4594 if (!VIM_ISDIGIT(*x))
4595 {
4596 EMSG(_("E144: non-numeric argument to :z"));
4597 return;
4598 }
4599 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004600 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 bigness = atoi((char *)x);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004602 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004603 if (*kind == '=')
4604 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004605 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 }
4607
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004608 /* the number of '-' and '+' multiplies the distance */
4609 if (*kind == '-' || *kind == '+')
4610 for (x = kind + 1; *x == *kind; ++x)
4611 ;
4612
4613 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 {
4615 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004616 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4617 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004618 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 break;
4620
4621 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004622 start = lnum - (bigness + 1) / 2 + 1;
4623 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 curs = lnum;
4625 minus = 1;
4626 break;
4627
4628 case '^':
4629 start = lnum - bigness * 2;
4630 end = lnum - bigness;
4631 curs = lnum - bigness;
4632 break;
4633
4634 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004635 start = lnum - (bigness + 1) / 2 + 1;
4636 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 curs = end;
4638 break;
4639
4640 default: /* '+' */
4641 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004642 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004643 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004644 else if (eap->addr_count == 0)
4645 ++start;
4646 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 curs = end;
4648 break;
4649 }
4650
4651 if (start < 1)
4652 start = 1;
4653
4654 if (end > curbuf->b_ml.ml_line_count)
4655 end = curbuf->b_ml.ml_line_count;
4656
4657 if (curs > curbuf->b_ml.ml_line_count)
4658 curs = curbuf->b_ml.ml_line_count;
4659
4660 for (i = start; i <= end; i++)
4661 {
4662 if (minus && i == lnum)
4663 {
4664 msg_putchar('\n');
4665
4666 for (j = 1; j < Columns; j++)
4667 msg_putchar('-');
4668 }
4669
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004670 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671
4672 if (minus && i == lnum)
4673 {
4674 msg_putchar('\n');
4675
4676 for (j = 1; j < Columns; j++)
4677 msg_putchar('-');
4678 }
4679 }
4680
4681 curwin->w_cursor.lnum = curs;
4682 ex_no_reprint = TRUE;
4683}
4684
4685/*
4686 * Check if the restricted flag is set.
4687 * If so, give an error message and return TRUE.
4688 * Otherwise, return FALSE.
4689 */
4690 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004691check_restricted(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692{
4693 if (restricted)
4694 {
4695 EMSG(_("E145: Shell commands not allowed in rvim"));
4696 return TRUE;
4697 }
4698 return FALSE;
4699}
4700
4701/*
4702 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4703 * If so, give an error message and return TRUE.
4704 * Otherwise, return FALSE.
4705 */
4706 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004707check_secure(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708{
4709 if (secure)
4710 {
4711 secure = 2;
4712 EMSG(_(e_curdir));
4713 return TRUE;
4714 }
4715#ifdef HAVE_SANDBOX
4716 /*
4717 * In the sandbox more things are not allowed, including the things
4718 * disallowed in secure mode.
4719 */
4720 if (sandbox != 0)
4721 {
4722 EMSG(_(e_sandbox));
4723 return TRUE;
4724 }
4725#endif
4726 return FALSE;
4727}
4728
4729static char_u *old_sub = NULL; /* previous substitute pattern */
4730static int global_need_beginline; /* call beginline() after ":g" */
4731
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732/* do_sub()
4733 *
4734 * Perform a substitution from line eap->line1 to line eap->line2 using the
4735 * command pointed to by eap->arg which should be of the form:
4736 *
4737 * /pattern/substitution/{flags}
4738 *
4739 * The usual escapes are supported as described in the regexp docs.
4740 */
4741 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004742do_sub(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743{
4744 linenr_T lnum;
4745 long i = 0;
4746 regmmatch_T regmatch;
4747 static int do_all = FALSE; /* do multiple substitutions per line */
4748 static int do_ask = FALSE; /* ask for confirmation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004749 static int do_count = FALSE; /* count only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750 static int do_error = TRUE; /* if false, ignore errors */
4751 static int do_print = FALSE; /* print last line with subs. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004752 static int do_list = FALSE; /* list last line with subs. */
4753 static int do_number = FALSE; /* list last line with line nr*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 static int do_ic = 0; /* ignore case flag */
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004755 int save_do_all; /* remember user specified 'g' flag */
4756 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4758 int delimiter;
4759 int sublen;
4760 int got_quit = FALSE;
4761 int got_match = FALSE;
4762 int temp;
4763 int which_pat;
4764 char_u *cmd;
4765 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004766 linenr_T first_line = 0; /* first changed line */
4767 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 * change */
4769 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4770 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004771 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004772 char_u *sub_firstline; /* allocated copy of first sub line */
4773 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004774 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004775 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004776#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004777 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004778#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779
4780 cmd = eap->arg;
4781 if (!global_busy)
4782 {
4783 sub_nsubs = 0;
4784 sub_nlines = 0;
4785 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004786 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 if (eap->cmdidx == CMD_tilde)
4789 which_pat = RE_LAST; /* use last used regexp */
4790 else
4791 which_pat = RE_SUBST; /* use last substitute regexp */
4792
4793 /* new pattern and substitution */
4794 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd)
4795 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4796 {
4797 /* don't accept alphanumeric for separator */
4798 if (isalpha(*cmd))
4799 {
4800 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4801 return;
4802 }
4803 /*
4804 * undocumented vi feature:
4805 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4806 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4807 */
4808 if (*cmd == '\\')
4809 {
4810 ++cmd;
4811 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4812 {
4813 EMSG(_(e_backslash));
4814 return;
4815 }
4816 if (*cmd != '&')
4817 which_pat = RE_SEARCH; /* use last '/' pattern */
4818 pat = (char_u *)""; /* empty search pattern */
4819 delimiter = *cmd++; /* remember delimiter character */
4820 }
4821 else /* find the end of the regexp */
4822 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004823#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4824 if (p_altkeymap && curwin->w_p_rl)
4825 lrF_sub(cmd);
4826#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 which_pat = RE_LAST; /* use last used regexp */
4828 delimiter = *cmd++; /* remember delimiter character */
4829 pat = cmd; /* remember start of search pat */
4830 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4831 if (cmd[0] == delimiter) /* end delimiter found */
4832 *cmd++ = NUL; /* replace it with a NUL */
4833 }
4834
4835 /*
4836 * Small incompatibility: vi sees '\n' as end of the command, but in
4837 * Vim we want to use '\n' to find/substitute a NUL.
4838 */
4839 sub = cmd; /* remember the start of the substitution */
4840
4841 while (cmd[0])
4842 {
4843 if (cmd[0] == delimiter) /* end delimiter found */
4844 {
4845 *cmd++ = NUL; /* replace it with a NUL */
4846 break;
4847 }
4848 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4849 ++cmd;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004850 mb_ptr_adv(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 }
4852
4853 if (!eap->skip)
4854 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004855 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4856 if (STRCMP(sub, "%") == 0
4857 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4858 {
4859 if (old_sub == NULL) /* there is no previous command */
4860 {
4861 EMSG(_(e_nopresub));
4862 return;
4863 }
4864 sub = old_sub;
4865 }
4866 else
4867 {
4868 vim_free(old_sub);
4869 old_sub = vim_strsave(sub);
4870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 }
4872 }
4873 else if (!eap->skip) /* use previous pattern and substitution */
4874 {
4875 if (old_sub == NULL) /* there is no previous command */
4876 {
4877 EMSG(_(e_nopresub));
4878 return;
4879 }
4880 pat = NULL; /* search_regcomp() will use previous pattern */
4881 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004882
4883 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4884 * last column after using "$". */
4885 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 }
4887
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004888 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4889 * more efficient.
4890 * TODO: find a generic solution to make line-joining operations more
4891 * efficient, avoid allocating a string that grows in size.
4892 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004893 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004894 && *sub == NUL
4895 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4896 || *cmd == 'p' || *cmd == '#'))))
4897 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004898 linenr_T joined_lines_count;
4899
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004900 curwin->w_cursor.lnum = eap->line1;
4901 if (*cmd == 'l')
4902 eap->flags = EXFLAG_LIST;
4903 else if (*cmd == '#')
4904 eap->flags = EXFLAG_NR;
4905 else if (*cmd == 'p')
4906 eap->flags = EXFLAG_PRINT;
4907
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004908 /* The number of lines joined is the number of lines in the range plus
4909 * one. One less when the last line is included. */
4910 joined_lines_count = eap->line2 - eap->line1 + 1;
4911 if (eap->line2 < curbuf->b_ml.ml_line_count)
4912 ++joined_lines_count;
4913 if (joined_lines_count > 1)
4914 {
4915 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
4916 sub_nsubs = joined_lines_count - 1;
4917 sub_nlines = 1;
4918 (void)do_sub_msg(FALSE);
4919 ex_may_print(eap);
4920 }
4921
4922 if (!cmdmod.keeppatterns)
4923 save_re_pat(RE_SUBST, pat, p_magic);
4924#ifdef FEAT_CMDHIST
4925 /* put pattern in history */
4926 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
4927#endif
4928
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004929 return;
4930 }
4931
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 /*
4933 * Find trailing options. When '&' is used, keep old options.
4934 */
4935 if (*cmd == '&')
4936 ++cmd;
4937 else
4938 {
4939 if (!p_ed)
4940 {
4941 if (p_gd) /* default is global on */
4942 do_all = TRUE;
4943 else
4944 do_all = FALSE;
4945 do_ask = FALSE;
4946 }
4947 do_error = TRUE;
4948 do_print = FALSE;
Bram Moolenaarcc016f52005-12-10 20:23:46 +00004949 do_count = FALSE;
Bram Moolenaarfe40d1a2007-07-24 09:16:38 +00004950 do_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 do_ic = 0;
4952 }
4953 while (*cmd)
4954 {
4955 /*
4956 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
4957 * 'r' is never inverted.
4958 */
4959 if (*cmd == 'g')
4960 do_all = !do_all;
4961 else if (*cmd == 'c')
4962 do_ask = !do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004963 else if (*cmd == 'n')
4964 do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 else if (*cmd == 'e')
4966 do_error = !do_error;
4967 else if (*cmd == 'r') /* use last used regexp */
4968 which_pat = RE_LAST;
4969 else if (*cmd == 'p')
4970 do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004971 else if (*cmd == '#')
4972 {
4973 do_print = TRUE;
4974 do_number = TRUE;
4975 }
4976 else if (*cmd == 'l')
4977 {
4978 do_print = TRUE;
4979 do_list = TRUE;
4980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 else if (*cmd == 'i') /* ignore case */
4982 do_ic = 'i';
4983 else if (*cmd == 'I') /* don't ignore case */
4984 do_ic = 'I';
4985 else
4986 break;
4987 ++cmd;
4988 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004989 if (do_count)
4990 do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004992 save_do_all = do_all;
4993 save_do_ask = do_ask;
4994
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 /*
4996 * check for a trailing count
4997 */
4998 cmd = skipwhite(cmd);
4999 if (VIM_ISDIGIT(*cmd))
5000 {
5001 i = getdigits(&cmd);
5002 if (i <= 0 && !eap->skip && do_error)
5003 {
5004 EMSG(_(e_zerocount));
5005 return;
5006 }
5007 eap->line1 = eap->line2;
5008 eap->line2 += i - 1;
5009 if (eap->line2 > curbuf->b_ml.ml_line_count)
5010 eap->line2 = curbuf->b_ml.ml_line_count;
5011 }
5012
5013 /*
5014 * check for trailing command or garbage
5015 */
5016 cmd = skipwhite(cmd);
5017 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
5018 {
5019 eap->nextcmd = check_nextcmd(cmd);
5020 if (eap->nextcmd == NULL)
5021 {
5022 EMSG(_(e_trailing));
5023 return;
5024 }
5025 }
5026
5027 if (eap->skip) /* not executing commands, only parsing */
5028 return;
5029
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005030 if (!do_count && !curbuf->b_p_ma)
5031 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005032 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00005033 EMSG(_(e_modifiable));
5034 return;
5035 }
5036
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5038 {
5039 if (do_error)
5040 EMSG(_(e_invcmd));
5041 return;
5042 }
5043
5044 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
5045 if (do_ic == 'i')
5046 regmatch.rmm_ic = TRUE;
5047 else if (do_ic == 'I')
5048 regmatch.rmm_ic = FALSE;
5049
5050 sub_firstline = NULL;
5051
5052 /*
5053 * ~ in the substitute pattern is replaced with the old pattern.
5054 * We do it here once to avoid it to be replaced over and over again.
5055 * But don't do it when it starts with "\=", then it's an expression.
5056 */
5057 if (!(sub[0] == '\\' && sub[1] == '='))
5058 sub = regtilde(sub, p_magic);
5059
5060 /*
5061 * Check for a match on each line.
5062 */
5063 line2 = eap->line2;
5064 for (lnum = eap->line1; lnum <= line2 && !(got_quit
5065#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD)
5066 || aborting()
5067#endif
5068 ); ++lnum)
5069 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005070 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
5071 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 if (nmatch)
5073 {
5074 colnr_T copycol;
5075 colnr_T matchcol;
5076 colnr_T prev_matchcol = MAXCOL;
5077 char_u *new_end, *new_start = NULL;
5078 unsigned new_start_len = 0;
5079 char_u *p1;
5080 int did_sub = FALSE;
5081 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005082 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 long nmatch_tl = 0; /* nr of lines matched below lnum */
5084 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005085 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005086 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087
5088 /*
5089 * The new text is build up step by step, to avoid too much
5090 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00005091 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 * copycol Column in the old text where we started
5093 * looking for a match; from here old text still
5094 * needs to be copied to the new text.
5095 * matchcol Column number of the old text where to look
5096 * for the next match. It's just after the
5097 * previous match or one further.
5098 * prev_matchcol Column just after the previous match (if any).
5099 * Mostly equal to matchcol, except for the first
5100 * match and after skipping an empty match.
5101 * regmatch.*pos Where the pattern matched in the old text.
5102 * new_start The new text, all that has been produced so
5103 * far.
5104 * new_end The new text, where to append new text.
5105 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005106 * lnum The line number where we found the start of
5107 * the match. Can be below the line we searched
5108 * when there is a \n before a \zs in the
5109 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 * sub_firstlnum The line number in the buffer where to look
5111 * for a match. Can be different from "lnum"
5112 * when the pattern or substitute string contains
5113 * line breaks.
5114 *
5115 * Special situations:
5116 * - When the substitute string contains a line break, the part up
5117 * to the line break is inserted in the text, but the copy of
5118 * the original line is kept. "sub_firstlnum" is adjusted for
5119 * the inserted lines.
5120 * - When the matched pattern contains a line break, the old line
5121 * is taken from the line at the end of the pattern. The lines
5122 * in the match are deleted later, "sub_firstlnum" is adjusted
5123 * accordingly.
5124 *
5125 * The new text is built up in new_start[]. It has some extra
5126 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005127 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 *
5129 * Make a copy of the old line, so it won't be taken away when
5130 * updating the screen or handling a multi-line match. The "old_"
5131 * pointers point into this copy.
5132 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005133 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 copycol = 0;
5135 matchcol = 0;
5136
5137 /* At first match, remember current cursor position. */
5138 if (!got_match)
5139 {
5140 setpcmark();
5141 got_match = TRUE;
5142 }
5143
5144 /*
5145 * Loop until nothing more to replace in this line.
5146 * 1. Handle match with empty string.
5147 * 2. If do_ask is set, ask for confirmation.
5148 * 3. substitute the string.
5149 * 4. if do_all is set, find next match
5150 * 5. break if there isn't another match in this line
5151 */
5152 for (;;)
5153 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005154 /* Advance "lnum" to the line where the match starts. The
5155 * match does not start in the first line when there is a line
5156 * break before \zs. */
5157 if (regmatch.startpos[0].lnum > 0)
5158 {
5159 lnum += regmatch.startpos[0].lnum;
5160 sub_firstlnum += regmatch.startpos[0].lnum;
5161 nmatch -= regmatch.startpos[0].lnum;
5162 vim_free(sub_firstline);
5163 sub_firstline = NULL;
5164 }
5165
5166 if (sub_firstline == NULL)
5167 {
5168 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5169 if (sub_firstline == NULL)
5170 {
5171 vim_free(new_start);
5172 goto outofmem;
5173 }
5174 }
5175
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 /* Save the line number of the last change for the final
5177 * cursor position (just like Vi). */
5178 curwin->w_cursor.lnum = lnum;
5179 do_again = FALSE;
5180
5181 /*
5182 * 1. Match empty string does not count, except for first
5183 * match. This reproduces the strange vi behaviour.
5184 * This also catches endless loops.
5185 */
5186 if (matchcol == prev_matchcol
5187 && regmatch.endpos[0].lnum == 0
5188 && matchcol == regmatch.endpos[0].col)
5189 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00005190 if (sub_firstline[matchcol] == NUL)
5191 /* We already were at the end of the line. Don't look
5192 * for a match in this line again. */
5193 skip_match = TRUE;
5194 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02005195 {
5196 /* search for a match at next column */
5197#ifdef FEAT_MBYTE
5198 if (has_mbyte)
5199 matchcol += mb_ptr2len(sub_firstline + matchcol);
5200 else
5201#endif
5202 ++matchcol;
5203 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 goto skip;
5205 }
5206
5207 /* Normally we continue searching for a match just after the
5208 * previous match. */
5209 matchcol = regmatch.endpos[0].col;
5210 prev_matchcol = matchcol;
5211
5212 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00005213 * 2. If do_count is set only increase the counter.
5214 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005216 if (do_count)
5217 {
5218 /* For a multi-line match, put matchcol at the NUL at
5219 * the end of the line and set nmatch to one, so that
5220 * we continue looking for a match on the next line.
5221 * Avoids that ":s/\nB\@=//gc" get stuck. */
5222 if (nmatch > 1)
5223 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005224 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00005225 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00005226 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005227 }
5228 sub_nsubs++;
5229 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005230#ifdef FEAT_EVAL
5231 /* Skip the substitution, unless an expression is used,
5232 * then it is evaluated in the sandbox. */
5233 if (!(sub[0] == '\\' && sub[1] == '='))
5234#endif
5235 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005236 }
5237
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 if (do_ask)
5239 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00005240 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005241
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 /* change State to CONFIRM, so that the mouse works
5243 * properly */
5244 save_State = State;
5245 State = CONFIRM;
5246#ifdef FEAT_MOUSE
5247 setmouse(); /* disable mouse in xterm */
5248#endif
5249 curwin->w_cursor.col = regmatch.startpos[0].col;
5250
5251 /* When 'cpoptions' contains "u" don't sync undo when
5252 * asking for confirmation. */
5253 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5254 ++no_u_sync;
5255
5256 /*
5257 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
5258 */
5259 while (do_ask)
5260 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005261 if (exmode_active)
5262 {
5263 char_u *resp;
5264 colnr_T sc, ec;
5265
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02005266 print_line_no_prefix(lnum, do_number, do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005267
5268 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
5269 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
5270 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02005271 if (do_number || curwin->w_p_nu)
5272 {
5273 int numw = number_width(curwin) + 1;
5274 sc += numw;
5275 ec += numw;
5276 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005277 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00005278 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005279 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00005280 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005281 msg_putchar('^');
5282
5283 resp = getexmodeline('?', NULL, 0);
5284 if (resp != NULL)
5285 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005286 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005287 vim_free(resp);
5288 }
5289 }
5290 else
5291 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005292 char_u *orig_line = NULL;
5293 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005295 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005297 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005299 /* Invert the matched string.
5300 * Remove the inversion afterwards. */
5301 temp = RedrawingDisabled;
5302 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005304 if (new_start != NULL)
5305 {
5306 /* There already was a substitution, we would
5307 * like to show this to the user. We cannot
5308 * really update the line, it would change
5309 * what matches. Temporarily replace the line
5310 * and change it back afterwards. */
5311 orig_line = vim_strsave(ml_get(lnum));
5312 if (orig_line != NULL)
5313 {
5314 char_u *new_line = concat_str(new_start,
5315 sub_firstline + copycol);
5316
5317 if (new_line == NULL)
5318 {
5319 vim_free(orig_line);
5320 orig_line = NULL;
5321 }
5322 else
5323 {
5324 /* Position the cursor relative to the
5325 * end of the line, the previous
5326 * substitute may have inserted or
5327 * deleted characters before the
5328 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01005329 len_change = (int)STRLEN(new_line)
5330 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005331 curwin->w_cursor.col += len_change;
5332 ml_replace(lnum, new_line, FALSE);
5333 }
5334 }
5335 }
5336
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005337 search_match_lines = regmatch.endpos[0].lnum
5338 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005339 search_match_endcol = regmatch.endpos[0].col
5340 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005341 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005343 update_topline();
5344 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00005345 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005346 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00005347 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348
5349#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005350 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005352 if (msg_row == Rows - 1)
5353 msg_didout = FALSE; /* avoid a scroll-up */
5354 msg_starthere();
5355 i = msg_scroll;
5356 msg_scroll = 0; /* truncate msg when
5357 needed */
5358 msg_no_more = TRUE;
5359 /* write message same highlighting as for
5360 * wait_return */
5361 smsg_attr(hl_attr(HLF_R),
5362 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
5363 msg_no_more = FALSE;
5364 msg_scroll = i;
5365 showruler(TRUE);
5366 windgoto(msg_row, msg_col);
5367 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368
5369#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005370 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005372 ++no_mapping; /* don't map this key */
5373 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005374 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005375 --allow_keys;
5376 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005378 /* clear the question */
5379 msg_didout = FALSE; /* don't scroll up */
5380 msg_col = 0;
5381 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005382
5383 /* restore the line */
5384 if (orig_line != NULL)
5385 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005386 }
5387
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005389 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005391 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392#endif
5393 )
5394 {
5395 got_quit = TRUE;
5396 break;
5397 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005398 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005400 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005402 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 {
5404 /* last: replace and then stop */
5405 do_all = FALSE;
5406 line2 = lnum;
5407 break;
5408 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005409 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 {
5411 do_ask = FALSE;
5412 break;
5413 }
5414#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005415 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005417 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 scrolldown_clamp();
5419#endif
5420 }
5421 State = save_State;
5422#ifdef FEAT_MOUSE
5423 setmouse();
5424#endif
5425 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5426 --no_u_sync;
5427
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005428 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 {
5430 /* For a multi-line match, put matchcol at the NUL at
5431 * the end of the line and set nmatch to one, so that
5432 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00005433 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
5434 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 if (nmatch > 1)
5436 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005437 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00005438 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439 }
5440 goto skip;
5441 }
5442 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01005443 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 }
5445
5446 /* Move the cursor to the start of the match, so that we can
5447 * use "\=col("."). */
5448 curwin->w_cursor.col = regmatch.startpos[0].col;
5449
5450 /*
5451 * 3. substitute the string.
5452 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005453#ifdef FEAT_EVAL
5454 if (do_count)
5455 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005456 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005457 save_ma = curbuf->b_p_ma;
5458 curbuf->b_p_ma = FALSE;
5459 sandbox++;
5460 }
5461#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005463 sublen = vim_regsub_multi(&regmatch,
5464 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005466#ifdef FEAT_EVAL
5467 if (do_count)
5468 {
5469 curbuf->b_p_ma = save_ma;
5470 sandbox--;
5471 goto skip;
5472 }
5473#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474
Bram Moolenaar4463f292005-09-25 22:20:24 +00005475 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005476 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005477 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5478 {
5479 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5480 skip_match = TRUE;
5481 }
5482
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 /* Need room for:
5484 * - result so far in new_start (not for first sub in line)
5485 * - original text up to match
5486 * - length of substituted part
5487 * - original text after match
5488 */
5489 if (nmatch == 1)
5490 p1 = sub_firstline;
5491 else
5492 {
5493 p1 = ml_get(sub_firstlnum + nmatch - 1);
5494 nmatch_tl += nmatch - 1;
5495 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005496 copy_len = regmatch.startpos[0].col - copycol;
5497 needed_len = copy_len + ((unsigned)STRLEN(p1)
5498 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 if (new_start == NULL)
5500 {
5501 /*
5502 * Get some space for a temporary buffer to do the
5503 * substitution into (and some extra space to avoid
5504 * too many calls to alloc()/free()).
5505 */
5506 new_start_len = needed_len + 50;
5507 if ((new_start = alloc_check(new_start_len)) == NULL)
5508 goto outofmem;
5509 *new_start = NUL;
5510 new_end = new_start;
5511 }
5512 else
5513 {
5514 /*
5515 * Check if the temporary buffer is long enough to do the
5516 * substitution into. If not, make it larger (with a bit
5517 * extra to avoid too many calls to alloc()/free()).
5518 */
5519 len = (unsigned)STRLEN(new_start);
5520 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005521 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 {
5523 new_start_len = needed_len + 50;
5524 if ((p1 = alloc_check(new_start_len)) == NULL)
5525 {
5526 vim_free(new_start);
5527 goto outofmem;
5528 }
5529 mch_memmove(p1, new_start, (size_t)(len + 1));
5530 vim_free(new_start);
5531 new_start = p1;
5532 }
5533 new_end = new_start + len;
5534 }
5535
5536 /*
5537 * copy the text up to the part that matched
5538 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005539 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5540 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005542 (void)vim_regsub_multi(&regmatch,
5543 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 sub, new_end, TRUE, p_magic, TRUE);
5545 sub_nsubs++;
5546 did_sub = TRUE;
5547
5548 /* Move the cursor to the start of the line, to avoid that it
5549 * is beyond the end of the line after the substitution. */
5550 curwin->w_cursor.col = 0;
5551
5552 /* For a multi-line match, make a copy of the last matched
5553 * line and continue in that one. */
5554 if (nmatch > 1)
5555 {
5556 sub_firstlnum += nmatch - 1;
5557 vim_free(sub_firstline);
5558 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5559 /* When going beyond the last line, stop substituting. */
5560 if (sub_firstlnum <= line2)
5561 do_again = TRUE;
5562 else
5563 do_all = FALSE;
5564 }
5565
5566 /* Remember next character to be copied. */
5567 copycol = regmatch.endpos[0].col;
5568
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005569 if (skip_match)
5570 {
5571 /* Already hit end of the buffer, sub_firstlnum is one
5572 * less than what it ought to be. */
5573 vim_free(sub_firstline);
5574 sub_firstline = vim_strsave((char_u *)"");
5575 copycol = 0;
5576 }
5577
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578 /*
5579 * Now the trick is to replace CTRL-M chars with a real line
5580 * break. This would make it impossible to insert a CTRL-M in
5581 * the text. The line break can be avoided by preceding the
5582 * CTRL-M with a backslash. To be able to insert a backslash,
5583 * they must be doubled in the string and are halved here.
5584 * That is Vi compatible.
5585 */
5586 for (p1 = new_end; *p1; ++p1)
5587 {
5588 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005589 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 else if (*p1 == CAR)
5591 {
5592 if (u_inssub(lnum) == OK) /* prepare for undo */
5593 {
5594 *p1 = NUL; /* truncate up to the CR */
5595 ml_append(lnum - 1, new_start,
5596 (colnr_T)(p1 - new_start + 1), FALSE);
5597 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
5598 if (do_ask)
5599 appended_lines(lnum - 1, 1L);
5600 else
5601 {
5602 if (first_line == 0)
5603 first_line = lnum;
5604 last_line = lnum + 1;
5605 }
5606 /* All line numbers increase. */
5607 ++sub_firstlnum;
5608 ++lnum;
5609 ++line2;
5610 /* move the cursor to the new line, like Vi */
5611 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005612 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005613 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 p1 = new_start - 1;
5615 }
5616 }
5617#ifdef FEAT_MBYTE
5618 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005619 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620#endif
5621 }
5622
5623 /*
5624 * 4. If do_all is set, find next match.
5625 * Prevent endless loop with patterns that match empty
5626 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5627 * But ":s/\n/#/" is OK.
5628 */
5629skip:
5630 /* We already know that we did the last subst when we are at
5631 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005632 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5633 * "line2" when there is a \zs in the pattern after a line
5634 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005635 lastone = (skip_match
5636 || got_int
5637 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005638 || lnum > line2
Bram Moolenaar8299df92004-07-10 09:47:34 +00005639 || !(do_all || do_again)
5640 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5641 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 nmatch = -1;
5643
5644 /*
5645 * Replace the line in the buffer when needed. This is
5646 * skipped when there are more matches.
5647 * The check for nmatch_tl is needed for when multi-line
5648 * matching must replace the lines before trying to do another
5649 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005650 * When the match starts below where we start searching also
5651 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 */
5653 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 || nmatch_tl > 0
5655 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005656 curbuf, sub_firstlnum,
5657 matchcol, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005658 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 {
5660 if (new_start != NULL)
5661 {
5662 /*
5663 * Copy the rest of the line, that didn't match.
5664 * "matchcol" has to be adjusted, we use the end of
5665 * the line as reference, because the substitute may
5666 * have changed the number of characters. Same for
5667 * "prev_matchcol".
5668 */
5669 STRCAT(new_start, sub_firstline + copycol);
5670 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5671 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5672 - prev_matchcol;
5673
5674 if (u_savesub(lnum) != OK)
5675 break;
5676 ml_replace(lnum, new_start, TRUE);
5677
5678 if (nmatch_tl > 0)
5679 {
5680 /*
5681 * Matched lines have now been substituted and are
5682 * useless, delete them. The part after the match
5683 * has been appended to new_start, we don't need
5684 * it in the buffer.
5685 */
5686 ++lnum;
5687 if (u_savedel(lnum, nmatch_tl) != OK)
5688 break;
5689 for (i = 0; i < nmatch_tl; ++i)
5690 ml_delete(lnum, (int)FALSE);
5691 mark_adjust(lnum, lnum + nmatch_tl - 1,
5692 (long)MAXLNUM, -nmatch_tl);
5693 if (do_ask)
5694 deleted_lines(lnum, nmatch_tl);
5695 --lnum;
5696 line2 -= nmatch_tl; /* nr of lines decreases */
5697 nmatch_tl = 0;
5698 }
5699
5700 /* When asking, undo is saved each time, must also set
5701 * changed flag each time. */
5702 if (do_ask)
5703 changed_bytes(lnum, 0);
5704 else
5705 {
5706 if (first_line == 0)
5707 first_line = lnum;
5708 last_line = lnum + 1;
5709 }
5710
5711 sub_firstlnum = lnum;
5712 vim_free(sub_firstline); /* free the temp buffer */
5713 sub_firstline = new_start;
5714 new_start = NULL;
5715 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5716 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5717 - prev_matchcol;
5718 copycol = 0;
5719 }
5720 if (nmatch == -1 && !lastone)
5721 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005722 sub_firstlnum, matchcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723
5724 /*
5725 * 5. break if there isn't another match in this line
5726 */
5727 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005728 {
5729 /* If the match found didn't start where we were
5730 * searching, do the next search in the line where we
5731 * found the match. */
5732 if (nmatch == -1)
5733 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005735 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 }
5737
5738 line_breakcheck();
5739 }
5740
5741 if (did_sub)
5742 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005743 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744 vim_free(sub_firstline); /* free the copy of the original line */
5745 sub_firstline = NULL;
5746 }
5747
5748 line_breakcheck();
5749 }
5750
5751 if (first_line != 0)
5752 {
5753 /* Need to subtract the number of added lines from "last_line" to get
5754 * the line number before the change (same as adding the number of
5755 * deleted lines). */
5756 i = curbuf->b_ml.ml_line_count - old_line_count;
5757 changed_lines(first_line, 0, last_line - i, i);
5758 }
5759
5760outofmem:
5761 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005762
5763 /* ":s/pat//n" doesn't move the cursor */
5764 if (do_count)
5765 curwin->w_cursor = old_cursor;
5766
Bram Moolenaar46475522010-03-23 17:36:29 +01005767 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 {
5769 /* Set the '[ and '] marks. */
5770 curbuf->b_op_start.lnum = eap->line1;
5771 curbuf->b_op_end.lnum = line2;
5772 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5773
5774 if (!global_busy)
5775 {
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005776 if (!do_ask) /* when interactive leave cursor on the match */
5777 {
5778 if (endcolumn)
5779 coladvance((colnr_T)MAXCOL);
5780 else
5781 beginline(BL_WHITE | BL_FIX);
5782 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00005783 if (!do_sub_msg(do_count) && do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 MSG("");
5785 }
5786 else
5787 global_need_beginline = TRUE;
5788 if (do_print)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005789 print_line(curwin->w_cursor.lnum, do_number, do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 }
5791 else if (!global_busy)
5792 {
5793 if (got_int) /* interrupted */
5794 EMSG(_(e_interr));
5795 else if (got_match) /* did find something but nothing substituted */
5796 MSG("");
5797 else if (do_error) /* nothing found */
5798 EMSG2(_(e_patnotf2), get_search_pat());
5799 }
5800
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005801#ifdef FEAT_FOLDING
5802 if (do_ask && hasAnyFolding(curwin))
5803 /* Cursor position may require updating */
5804 changed_window_setting();
5805#endif
5806
Bram Moolenaar473de612013-06-08 18:19:48 +02005807 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005808
5809 /* Restore the flag values, they can be used for ":&&". */
5810 do_all = save_do_all;
5811 do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812}
5813
5814/*
5815 * Give message for number of substitutions.
5816 * Can also be used after a ":global" command.
5817 * Return TRUE if a message was given.
5818 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005819 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005820do_sub_msg(
5821 int count_only) /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822{
5823 /*
5824 * Only report substitutions when:
5825 * - more than 'report' substitutions
5826 * - command was typed by user, or number of changed lines > 'report'
5827 * - giving messages is not disabled by 'lazyredraw'
5828 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005829 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5830 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 && messaging())
5832 {
5833 if (got_int)
5834 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005835 else
5836 *msg_buf = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005837 if (sub_nsubs == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005838 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005839 "%s", count_only ? _("1 match") : _("1 substitution"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005841 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar05159a02005-02-26 23:04:13 +00005842 count_only ? _("%ld matches") : _("%ld substitutions"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843 sub_nsubs);
5844 if (sub_nlines == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005845 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005846 "%s", _(" on 1 line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005848 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005849 _(" on %ld lines"), (long)sub_nlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005852 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853 return TRUE;
5854 }
5855 if (got_int)
5856 {
5857 EMSG(_(e_interr));
5858 return TRUE;
5859 }
5860 return FALSE;
5861}
5862
5863/*
5864 * Execute a global command of the form:
5865 *
5866 * g/pattern/X : execute X on all lines where pattern matches
5867 * v/pattern/X : execute X on all lines where pattern does not match
5868 *
5869 * where 'X' is an EX command
5870 *
5871 * The command character (as well as the trailing slash) is optional, and
5872 * is assumed to be 'p' if missing.
5873 *
5874 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005875 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 * for each line that has a mark. This is required because after deleting
5877 * lines we do not know where to search for the next match.
5878 */
5879 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005880ex_global(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881{
5882 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005883 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884 int type; /* first char of cmd: 'v' or 'g' */
5885 char_u *cmd; /* command argument */
5886
5887 char_u delim; /* delimiter, normally '/' */
5888 char_u *pat;
5889 regmmatch_T regmatch;
5890 int match;
5891 int which_pat;
5892
5893 if (global_busy)
5894 {
5895 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */
5896 return;
5897 }
5898
5899 if (eap->forceit) /* ":global!" is like ":vglobal" */
5900 type = 'v';
5901 else
5902 type = *eap->cmd;
5903 cmd = eap->arg;
5904 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905
5906 /*
5907 * undocumented vi feature:
5908 * "\/" and "\?": use previous search pattern.
5909 * "\&": use previous substitute pattern.
5910 */
5911 if (*cmd == '\\')
5912 {
5913 ++cmd;
5914 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
5915 {
5916 EMSG(_(e_backslash));
5917 return;
5918 }
5919 if (*cmd == '&')
5920 which_pat = RE_SUBST; /* use previous substitute pattern */
5921 else
5922 which_pat = RE_SEARCH; /* use previous search pattern */
5923 ++cmd;
5924 pat = (char_u *)"";
5925 }
5926 else if (*cmd == NUL)
5927 {
5928 EMSG(_("E148: Regular expression missing from global"));
5929 return;
5930 }
5931 else
5932 {
5933 delim = *cmd; /* get the delimiter */
5934 if (delim)
5935 ++cmd; /* skip delimiter if there is one */
5936 pat = cmd; /* remember start of pattern */
5937 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
5938 if (cmd[0] == delim) /* end delimiter found */
5939 *cmd++ = NUL; /* replace it with a NUL */
5940 }
5941
5942#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
5943 if (p_altkeymap && curwin->w_p_rl)
5944 lrFswap(pat,0);
5945#endif
5946
5947 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5948 {
5949 EMSG(_(e_invcmd));
5950 return;
5951 }
5952
5953 /*
5954 * pass 1: set marks for each (not) matching line
5955 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
5957 {
5958 /* a match on this line? */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005959 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
5960 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 if ((type == 'g' && match) || (type == 'v' && !match))
5962 {
5963 ml_setmarked(lnum);
5964 ndone++;
5965 }
5966 line_breakcheck();
5967 }
5968
5969 /*
5970 * pass 2: execute the command for each line that has been marked
5971 */
5972 if (got_int)
5973 MSG(_(e_interr));
5974 else if (ndone == 0)
5975 {
5976 if (type == 'v')
Bram Moolenaar555b2802005-05-19 21:08:39 +00005977 smsg((char_u *)_("Pattern found in every line: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978 else
Bram Moolenaarc389fd32013-03-07 16:08:35 +01005979 smsg((char_u *)_("Pattern not found: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005980 }
5981 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005982 {
5983#ifdef FEAT_CLIPBOARD
5984 start_global_changes();
5985#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005987#ifdef FEAT_CLIPBOARD
5988 end_global_changes();
5989#endif
5990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991
5992 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar473de612013-06-08 18:19:48 +02005993 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994}
5995
5996/*
5997 * Execute "cmd" on lines marked with ml_setmarked().
5998 */
5999 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006000global_exe(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001{
Bram Moolenaarbb993222011-05-10 16:00:47 +02006002 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
6003 buf_T *old_buf = curbuf; /* remember what buffer we started in */
6004 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005
6006 /*
6007 * Set current position only once for a global command.
6008 * If global_busy is set, setpcmark() will not do anything.
6009 * If there is an error, global_busy will be incremented.
6010 */
6011 setpcmark();
6012
6013 /* When the command writes a message, don't overwrite the command. */
6014 msg_didout = TRUE;
6015
Bram Moolenaard25bc232010-03-23 17:49:24 +01006016 sub_nsubs = 0;
6017 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018 global_need_beginline = FALSE;
6019 global_busy = 1;
6020 old_lcount = curbuf->b_ml.ml_line_count;
6021 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
6022 {
6023 curwin->w_cursor.lnum = lnum;
6024 curwin->w_cursor.col = 0;
6025 if (*cmd == NUL || *cmd == '\n')
6026 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
6027 else
6028 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
6029 ui_breakcheck();
6030 }
6031
6032 global_busy = 0;
6033 if (global_need_beginline)
6034 beginline(BL_WHITE | BL_FIX);
6035 else
6036 check_cursor(); /* cursor may be beyond the end of the line */
6037
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006038 /* the cursor may not have moved in the text but a change in a previous
6039 * line may move it on the screen */
6040 changed_line_abv_curs();
6041
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042 /* If it looks like no message was written, allow overwriting the
6043 * command with the report for number of changes. */
6044 if (msg_col == 0 && msg_scrolled == 0)
6045 msg_didout = FALSE;
6046
Bram Moolenaar45667512007-05-10 19:24:43 +00006047 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02006048 * number of extra or deleted lines.
6049 * Don't report extra or deleted lines in the edge case where the buffer
6050 * we are in after execution is different from the buffer we started in. */
6051 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
6053}
6054
6055#ifdef FEAT_VIMINFO
6056 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006057read_viminfo_sub_string(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01006059 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060 vim_free(old_sub);
6061 if (force || old_sub == NULL)
6062 old_sub = viminfo_readstring(virp, 1, TRUE);
6063 return viminfo_readline(virp);
6064}
6065
6066 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006067write_viminfo_sub_string(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068{
6069 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
6070 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02006071 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 viminfo_writestring(fp, old_sub);
6073 }
6074}
6075#endif /* FEAT_VIMINFO */
6076
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006077#if defined(EXITFREE) || defined(PROTO)
6078 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006079free_old_sub(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006080{
6081 vim_free(old_sub);
6082}
6083#endif
6084
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085#if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO)
6086/*
6087 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006088 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006090 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006091prepare_tagpreview(
6092 int undo_sync) /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006093{
6094 win_T *wp;
6095
6096# ifdef FEAT_GUI
6097 need_mouse_correct = TRUE;
6098# endif
6099
6100 /*
6101 * If there is already a preview window open, use that one.
6102 */
6103 if (!curwin->w_p_pvw)
6104 {
6105 for (wp = firstwin; wp != NULL; wp = wp->w_next)
6106 if (wp->w_p_pvw)
6107 break;
6108 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00006109 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006110 else
6111 {
6112 /*
6113 * There is no preview window open yet. Create one.
6114 */
6115 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
6116 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006117 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118 curwin->w_p_pvw = TRUE;
6119 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006120 RESET_BINDING(curwin); /* don't take over 'scrollbind'
6121 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122# ifdef FEAT_DIFF
6123 curwin->w_p_diff = FALSE; /* no 'diff' */
6124# endif
6125# ifdef FEAT_FOLDING
6126 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
6127# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006128 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129 }
6130 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006131 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132}
6133
6134#endif
6135
6136
6137/*
6138 * ":help": open a read-only window on a help file
6139 */
6140 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006141ex_help(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006142{
6143 char_u *arg;
6144 char_u *tag;
6145 FILE *helpfd; /* file descriptor of help file */
6146 int n;
6147 int i;
6148#ifdef FEAT_WINDOWS
6149 win_T *wp;
6150#endif
6151 int num_matches;
6152 char_u **matches;
6153 char_u *p;
6154 int empty_fnum = 0;
6155 int alt_fnum = 0;
6156 buf_T *buf;
6157#ifdef FEAT_MULTI_LANG
6158 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006159 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02006161#ifdef FEAT_FOLDING
6162 int old_KeyTyped = KeyTyped;
6163#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164
6165 if (eap != NULL)
6166 {
6167 /*
6168 * A ":help" command ends at the first LF, or at a '|' that is
6169 * followed by some text. Set nextcmd to the following command.
6170 */
6171 for (arg = eap->arg; *arg; ++arg)
6172 {
6173 if (*arg == '\n' || *arg == '\r'
6174 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
6175 {
6176 *arg++ = NUL;
6177 eap->nextcmd = arg;
6178 break;
6179 }
6180 }
6181 arg = eap->arg;
6182
Bram Moolenaar3dbde622012-04-05 16:05:05 +02006183 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184 {
6185 EMSG(_("E478: Don't panic!"));
6186 return;
6187 }
6188
6189 if (eap->skip) /* not executing commands */
6190 return;
6191 }
6192 else
6193 arg = (char_u *)"";
6194
6195 /* remove trailing blanks */
6196 p = arg + STRLEN(arg) - 1;
6197 while (p > arg && vim_iswhite(*p) && p[-1] != '\\')
6198 *p-- = NUL;
6199
6200#ifdef FEAT_MULTI_LANG
6201 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006202 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203#endif
6204
6205 /* When no argument given go to the index. */
6206 if (*arg == NUL)
6207 arg = (char_u *)"help.txt";
6208
6209 /*
6210 * Check if there is a match for the argument.
6211 */
6212 n = find_help_tags(arg, &num_matches, &matches,
6213 eap != NULL && eap->forceit);
6214
6215 i = 0;
6216#ifdef FEAT_MULTI_LANG
6217 if (n != FAIL && lang != NULL)
6218 /* Find first item with the requested language. */
6219 for (i = 0; i < num_matches; ++i)
6220 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006221 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222 if (len > 3 && matches[i][len - 3] == '@'
6223 && STRICMP(matches[i] + len - 2, lang) == 0)
6224 break;
6225 }
6226#endif
6227 if (i >= num_matches || n == FAIL)
6228 {
6229#ifdef FEAT_MULTI_LANG
6230 if (lang != NULL)
6231 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
6232 else
6233#endif
6234 EMSG2(_("E149: Sorry, no help for %s"), arg);
6235 if (n != FAIL)
6236 FreeWild(num_matches, matches);
6237 return;
6238 }
6239
6240 /* The first match (in the requested language) is the best match. */
6241 tag = vim_strsave(matches[i]);
6242 FreeWild(num_matches, matches);
6243
6244#ifdef FEAT_GUI
6245 need_mouse_correct = TRUE;
6246#endif
6247
6248 /*
6249 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006250 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251 */
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006252 if (!curwin->w_buffer->b_help
6253#ifdef FEAT_WINDOWS
6254 || cmdmod.tab != 0
6255#endif
6256 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 {
6258#ifdef FEAT_WINDOWS
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006259 if (cmdmod.tab != 0)
6260 wp = NULL;
6261 else
6262 for (wp = firstwin; wp != NULL; wp = wp->w_next)
6263 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
6264 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006265 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
6266 win_enter(wp, TRUE);
6267 else
6268#endif
6269 {
6270 /*
6271 * There is no help window yet.
6272 * Try to open the file specified by the "helpfile" option.
6273 */
6274 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
6275 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00006276 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277 goto erret;
6278 }
6279 fclose(helpfd);
6280
6281#ifdef FEAT_WINDOWS
6282 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006283 * specified, the current window is vertically split and
6284 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 n = WSP_HELP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006287 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288 n |= WSP_TOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006290 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291#else
6292 /* use current window */
6293 if (!can_abandon(curbuf, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006294 goto erret;
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006295#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296
6297#ifdef FEAT_WINDOWS
6298 if (curwin->w_height < p_hh)
6299 win_setheight((int)p_hh);
6300#endif
6301
6302 /*
6303 * Open help file (do_ecmd() will set b_help flag, readfile() will
6304 * set b_p_ro flag).
6305 * Set the alternate file to the previously edited file.
6306 */
6307 alt_fnum = curbuf->b_fnum;
6308 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006309 ECMD_HIDE + ECMD_SET_HELP,
6310#ifdef FEAT_WINDOWS
6311 NULL /* buffer is still open, don't store info */
6312#else
6313 curwin
6314#endif
6315 );
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006316 if (!cmdmod.keepalt)
6317 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318 empty_fnum = curbuf->b_fnum;
6319 }
6320 }
6321
6322 if (!p_im)
6323 restart_edit = 0; /* don't want insert mode in help file */
6324
Bram Moolenaar8f535582011-09-30 17:30:31 +02006325#ifdef FEAT_FOLDING
6326 /* Restore KeyTyped, setting 'filetype=help' may reset it.
6327 * It is needed for do_tag top open folds under the cursor. */
6328 KeyTyped = old_KeyTyped;
6329#endif
6330
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331 if (tag != NULL)
6332 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
6333
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006334 /* Delete the empty buffer if we're not using it. Careful: autocommands
6335 * may have jumped to another window, check that the buffer is not in a
6336 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
6338 {
6339 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006340 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 wipe_buffer(buf, TRUE);
6342 }
6343
6344 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006345 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346 curwin->w_alt_fnum = alt_fnum;
6347
6348erret:
6349 vim_free(tag);
6350}
6351
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006352/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006353 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006354 */
6355 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006356ex_helpclose(exarg_T *eap UNUSED)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006357{
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02006358#if defined(FEAT_WINDOWS)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006359 win_T *win;
6360
6361 FOR_ALL_WINDOWS(win)
6362 {
6363 if (win->w_buffer->b_help)
6364 {
6365 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006366 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006367 }
6368 }
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02006369#endif
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006370}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006372#if defined(FEAT_MULTI_LANG) || defined(PROTO)
6373/*
6374 * In an argument search for a language specifiers in the form "@xx".
6375 * Changes the "@" to NUL if found, and returns a pointer to "xx".
6376 * Returns NULL if not found.
6377 */
6378 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006379check_help_lang(char_u *arg)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006380{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006381 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006382
6383 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
6384 && ASCII_ISALPHA(arg[len - 1]))
6385 {
6386 arg[len - 3] = NUL; /* remove the '@' */
6387 return arg + len - 2;
6388 }
6389 return NULL;
6390}
6391#endif
6392
Bram Moolenaar071d4272004-06-13 20:20:40 +00006393/*
6394 * Return a heuristic indicating how well the given string matches. The
6395 * smaller the number, the better the match. This is the order of priorities,
6396 * from best match to worst match:
6397 * - Match with least alpha-numeric characters is better.
6398 * - Match with least total characters is better.
6399 * - Match towards the start is better.
6400 * - Match starting with "+" is worse (feature instead of command)
6401 * Assumption is made that the matched_string passed has already been found to
6402 * match some string for which help is requested. webb.
6403 */
6404 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006405help_heuristic(
6406 char_u *matched_string,
6407 int offset, /* offset for match */
6408 int wrong_case) /* no matching case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006409{
6410 int num_letters;
6411 char_u *p;
6412
6413 num_letters = 0;
6414 for (p = matched_string; *p; p++)
6415 if (ASCII_ISALNUM(*p))
6416 num_letters++;
6417
6418 /*
6419 * Multiply the number of letters by 100 to give it a much bigger
6420 * weighting than the number of characters.
6421 * If there only is a match while ignoring case, add 5000.
6422 * If the match starts in the middle of a word, add 10000 to put it
6423 * somewhere in the last half.
6424 * If the match is more than 2 chars from the start, multiply by 200 to
6425 * put it after matches at the start.
6426 */
6427 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
6428 && ASCII_ISALNUM(matched_string[offset - 1]))
6429 offset += 10000;
6430 else if (offset > 2)
6431 offset *= 200;
6432 if (wrong_case)
6433 offset += 5000;
6434 /* Features are less interesting than the subjects themselves, but "+"
6435 * alone is not a feature. */
6436 if (matched_string[0] == '+' && matched_string[1] != NUL)
6437 offset += 100;
6438 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
6439}
6440
6441/*
6442 * Compare functions for qsort() below, that checks the help heuristics number
6443 * that has been put after the tagname by find_tags().
6444 */
6445 static int
6446#ifdef __BORLANDC__
6447_RTLENTRYF
6448#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006449help_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450{
6451 char *p1;
6452 char *p2;
6453
6454 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
6455 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
6456 return strcmp(p1, p2);
6457}
6458
6459/*
6460 * Find all help tags matching "arg", sort them and return in matches[], with
6461 * the number of matches in num_matches.
6462 * The matches will be sorted with a "best" match algorithm.
6463 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6464 */
6465 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006466find_help_tags(
6467 char_u *arg,
6468 int *num_matches,
6469 char_u ***matches,
6470 int keep_lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471{
6472 char_u *s, *d;
6473 int i;
6474 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006475 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006476 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006477 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006478 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 "[count]", "[quotex]", "[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006480 "[pattern]", "\\|", "\\%$",
6481 "s/\\~", "s/\\U", "s/\\L",
6482 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006484 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006485 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006486 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006487 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 "\\[count]", "\\[quotex]", "\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006489 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006490 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006491 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006492 int flags;
6493
6494 d = IObuff; /* assume IObuff is long enough! */
6495
6496 /*
6497 * Recognize a few exceptions to the rule. Some strings that contain '*'
6498 * with "star". Otherwise '*' is recognized as a wildcard.
6499 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006500 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501 if (STRCMP(arg, mtable[i]) == 0)
6502 {
6503 STRCPY(d, rtable[i]);
6504 break;
6505 }
6506
6507 if (i < 0) /* no match in table */
6508 {
6509 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6510 * Also replace "\%^" and "\%(", they match every tag too.
6511 * Also "\zs", "\z1", etc.
6512 * Also "\@<", "\@=", "\@<=", etc.
6513 * And also "\_$" and "\_^". */
6514 if (arg[0] == '\\'
6515 && ((arg[1] != NUL && arg[2] == NUL)
6516 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6517 && arg[2] != NUL)))
6518 {
6519 STRCPY(d, "/\\\\");
6520 STRCPY(d + 3, arg + 1);
6521 /* Check for "/\\_$", should be "/\\_\$" */
6522 if (d[3] == '_' && d[4] == '$')
6523 STRCPY(d + 4, "\\$");
6524 }
6525 else
6526 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006527 /* Replace:
6528 * "[:...:]" with "\[:...:]"
6529 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006530 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006531 */
6532 if ((arg[0] == '[' && (arg[1] == ':'
6533 || (arg[1] == '+' && arg[2] == '+')))
6534 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535 *d++ = '\\';
6536
Bram Moolenaar00f9e0d2016-03-15 13:44:12 +01006537 /*
6538 * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'.
6539 */
6540 if (*arg == '(' && arg[1] == '\'')
6541 arg++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006542 for (s = arg; *s; ++s)
6543 {
6544 /*
6545 * Replace "|" with "bar" and '"' with "quote" to match the name of
6546 * the tags for these commands.
6547 * Replace "*" with ".*" and "?" with "." to match command line
6548 * completion.
6549 * Insert a backslash before '~', '$' and '.' to avoid their
6550 * special meaning.
6551 */
6552 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6553 break;
6554 switch (*s)
6555 {
6556 case '|': STRCPY(d, "bar");
6557 d += 3;
6558 continue;
6559 case '"': STRCPY(d, "quote");
6560 d += 5;
6561 continue;
6562 case '*': *d++ = '.';
6563 break;
6564 case '?': *d++ = '.';
6565 continue;
6566 case '$':
6567 case '.':
6568 case '~': *d++ = '\\';
6569 break;
6570 }
6571
6572 /*
6573 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6574 * ":help i_^_CTRL-D" work.
6575 * Insert '-' before and after "CTRL-X" when applicable.
6576 */
6577 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6578 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6579 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006580 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6581 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582 STRCPY(d, "CTRL-");
6583 d += 5;
6584 if (*s < ' ')
6585 {
6586#ifdef EBCDIC
6587 *d++ = CtrlChar(*s);
6588#else
6589 *d++ = *s + '@';
6590#endif
6591 if (d[-1] == '\\')
6592 *d++ = '\\'; /* double a backslash */
6593 }
6594 else
6595 *d++ = *++s;
6596 if (s[1] != NUL && s[1] != '_')
6597 *d++ = '_'; /* append a '_' */
6598 continue;
6599 }
6600 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6601 *d++ = '\\';
6602
6603 /*
6604 * Insert a backslash before a backslash after a slash, for search
6605 * pattern tags: "/\|" --> "/\\|".
6606 */
6607 else if (s[0] == '\\' && s[1] != '\\'
6608 && *arg == '/' && s == arg + 1)
6609 *d++ = '\\';
6610
6611 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6612 * "CTRL-\_CTRL-N" */
6613 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6614 {
6615 STRCPY(d, "CTRL-\\\\");
6616 d += 7;
6617 s += 6;
6618 }
6619
6620 *d++ = *s;
6621
6622 /*
Bram Moolenaar81edd172016-04-14 13:51:37 +02006623 * If tag contains "({" or "([", tag terminates at the "(".
6624 * This is for help on functions, e.g.: abs({expr}).
6625 */
6626 if (*s == '(' && (s[1] == '{' || s[1] =='['))
6627 break;
6628
6629 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006630 * If tag starts with ', toss everything after a second '. Fixes
6631 * CTRL-] on 'option'. (would include the trailing '.').
6632 */
6633 if (*s == '\'' && s > arg && *arg == '\'')
6634 break;
Bram Moolenaar28b942a2016-06-04 22:31:27 +02006635 /* Also '{' and '}'. */
6636 if (*s == '}' && s > arg && *arg == '{')
6637 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638 }
6639 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006640
6641 if (*IObuff == '`')
6642 {
6643 if (d > IObuff + 2 && d[-1] == '`')
6644 {
6645 /* remove the backticks from `command` */
6646 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6647 d[-2] = NUL;
6648 }
6649 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6650 {
6651 /* remove the backticks and comma from `command`, */
6652 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6653 d[-3] = NUL;
6654 }
6655 else if (d > IObuff + 4 && d[-3] == '`'
6656 && d[-2] == '\\' && d[-1] == '.')
6657 {
6658 /* remove the backticks and dot from `command`\. */
6659 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6660 d[-4] = NUL;
6661 }
6662 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006663 }
6664 }
6665
6666 *matches = (char_u **)"";
6667 *num_matches = 0;
6668 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6669 if (keep_lang)
6670 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006671 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006673 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006674 /* Sort the matches found on the heuristic number that is after the
6675 * tag name. */
6676 qsort((void *)*matches, (size_t)*num_matches,
6677 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006678 /* Delete more than TAG_MANY to reduce the size of the listing. */
6679 while (*num_matches > TAG_MANY)
6680 vim_free((*matches)[--*num_matches]);
6681 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006682 return OK;
6683}
6684
6685/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006686 * Called when starting to edit a buffer for a help file.
6687 */
6688 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006689prepare_help_buffer(void)
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006690{
6691 char_u *p;
6692
6693 curbuf->b_help = TRUE;
6694#ifdef FEAT_QUICKFIX
6695 set_string_option_direct((char_u *)"buftype", -1,
6696 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6697#endif
6698
6699 /*
6700 * Always set these options after jumping to a help tag, because the
6701 * user may have an autocommand that gets in the way.
6702 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6703 * latin1 word characters (for translated help files).
6704 * Only set it when needed, buf_init_chartab() is some work.
6705 */
6706 p =
6707#ifdef EBCDIC
6708 (char_u *)"65-255,^*,^|,^\"";
6709#else
6710 (char_u *)"!-~,^*,^|,^\",192-255";
6711#endif
6712 if (STRCMP(curbuf->b_p_isk, p) != 0)
6713 {
6714 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6715 check_buf_options(curbuf);
6716 (void)buf_init_chartab(curbuf, FALSE);
6717 }
6718
Bram Moolenaar0b105412014-11-30 13:34:23 +01006719#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006720 /* Don't use the global foldmethod.*/
6721 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6722 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006723#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006724
6725 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6726 curwin->w_p_list = FALSE; /* no list mode */
6727
6728 curbuf->b_p_ma = FALSE; /* not modifiable */
6729 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6730 curwin->w_p_nu = 0; /* no line numbers */
6731 curwin->w_p_rnu = 0; /* no relative line numbers */
6732 RESET_BINDING(curwin); /* no scroll or cursor binding */
6733#ifdef FEAT_ARABIC
6734 curwin->w_p_arab = FALSE; /* no arabic mode */
6735#endif
6736#ifdef FEAT_RIGHTLEFT
6737 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6738#endif
6739#ifdef FEAT_FOLDING
6740 curwin->w_p_fen = FALSE; /* No folding in the help window */
6741#endif
6742#ifdef FEAT_DIFF
6743 curwin->w_p_diff = FALSE; /* No 'diff' */
6744#endif
6745#ifdef FEAT_SPELL
6746 curwin->w_p_spell = FALSE; /* No spell checking */
6747#endif
6748
6749 set_buflisted(FALSE);
6750}
6751
6752/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006753 * After reading a help file: May cleanup a help buffer when syntax
6754 * highlighting is not used.
6755 */
6756 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006757fix_help_buffer(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758{
6759 linenr_T lnum;
6760 char_u *line;
6761 int in_example = FALSE;
6762 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006763 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006764 char_u *p;
6765 char_u *rt;
6766 int mustfree;
6767
6768 /* set filetype to "help". */
6769 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
6770
6771#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006772 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006773#endif
6774 {
6775 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6776 {
6777 line = ml_get_buf(curbuf, lnum, FALSE);
6778 len = (int)STRLEN(line);
6779 if (in_example && len > 0 && !vim_iswhite(line[0]))
6780 {
6781 /* End of example: non-white or '<' in first column. */
6782 if (line[0] == '<')
6783 {
6784 /* blank-out a '<' in the first column */
6785 line = ml_get_buf(curbuf, lnum, TRUE);
6786 line[0] = ' ';
6787 }
6788 in_example = FALSE;
6789 }
6790 if (!in_example && len > 0)
6791 {
6792 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6793 {
6794 /* blank-out a '>' in the last column (start of example) */
6795 line = ml_get_buf(curbuf, lnum, TRUE);
6796 line[len - 1] = ' ';
6797 in_example = TRUE;
6798 }
6799 else if (line[len - 1] == '~')
6800 {
6801 /* blank-out a '~' at the end of line (header marker) */
6802 line = ml_get_buf(curbuf, lnum, TRUE);
6803 line[len - 1] = ' ';
6804 }
6805 }
6806 }
6807 }
6808
6809 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006810 * In the "help.txt" and "help.abx" file, add the locally added help
6811 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006812 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006813 fname = gettail(curbuf->b_fname);
6814 if (fnamecmp(fname, "help.txt") == 0
6815#ifdef FEAT_MULTI_LANG
6816 || (fnamencmp(fname, "help.", 5) == 0
6817 && ASCII_ISALPHA(fname[5])
6818 && ASCII_ISALPHA(fname[6])
6819 && TOLOWER_ASC(fname[7]) == 'x'
6820 && fname[8] == NUL)
6821#endif
6822 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006823 {
6824 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6825 {
6826 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006827 if (strstr((char *)line, "*local-additions*") == NULL)
6828 continue;
6829
6830 /* Go through all directories in 'runtimepath', skipping
6831 * $VIMRUNTIME. */
6832 p = p_rtp;
6833 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006834 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006835 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6836 mustfree = FALSE;
6837 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
6838 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006840 int fcount;
6841 char_u **fnames;
6842 FILE *fd;
6843 char_u *s;
6844 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006846 vimconv_T vc;
6847 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848#endif
6849
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006850 /* Find all "doc/ *.txt" files in this directory. */
6851 add_pathsep(NameBuff);
6852#ifdef FEAT_MULTI_LANG
6853 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006855 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006857 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6858 &fnames, EW_FILE|EW_SILENT) == OK
6859 && fcount > 0)
6860 {
6861#ifdef FEAT_MULTI_LANG
6862 int i1;
6863 int i2;
6864 char_u *f1;
6865 char_u *f2;
6866 char_u *t1;
6867 char_u *e1;
6868 char_u *e2;
6869
6870 /* If foo.abx is found use it instead of foo.txt in
6871 * the same directory. */
6872 for (i1 = 0; i1 < fcount; ++i1)
6873 {
6874 for (i2 = 0; i2 < fcount; ++i2)
6875 {
6876 if (i1 == i2)
6877 continue;
6878 if (fnames[i1] == NULL || fnames[i2] == NULL)
6879 continue;
6880 f1 = fnames[i1];
6881 f2 = fnames[i2];
6882 t1 = gettail(f1);
6883 if (fnamencmp(f1, f2, t1 - f1) != 0)
6884 continue;
6885 e1 = vim_strrchr(t1, '.');
6886 e2 = vim_strrchr(gettail(f2), '.');
6887 if (e1 == NUL || e2 == NUL)
6888 continue;
6889 if (fnamecmp(e1, ".txt") != 0
6890 && fnamecmp(e1, fname + 4) != 0)
6891 {
6892 /* Not .txt and not .abx, remove it. */
6893 vim_free(fnames[i1]);
6894 fnames[i1] = NULL;
6895 continue;
6896 }
6897 if (fnamencmp(f1, f2, e1 - f1) != 0)
6898 continue;
6899 if (fnamecmp(e1, ".txt") == 0
6900 && fnamecmp(e2, fname + 4) == 0)
6901 {
6902 /* use .abx instead of .txt */
6903 vim_free(fnames[i1]);
6904 fnames[i1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 }
6906 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006908#endif
6909 for (fi = 0; fi < fcount; ++fi)
6910 {
6911 if (fnames[fi] == NULL)
6912 continue;
6913 fd = mch_fopen((char *)fnames[fi], "r");
6914 if (fd != NULL)
6915 {
6916 vim_fgets(IObuff, IOSIZE, fd);
6917 if (IObuff[0] == '*'
6918 && (s = vim_strchr(IObuff + 1, '*'))
6919 != NULL)
6920 {
6921#ifdef FEAT_MBYTE
6922 int this_utf = MAYBE;
6923#endif
6924 /* Change tag definition to a
6925 * reference and remove <CR>/<NL>. */
6926 IObuff[0] = '|';
6927 *s = '|';
6928 while (*s != NUL)
6929 {
6930 if (*s == '\r' || *s == '\n')
6931 *s = NUL;
6932#ifdef FEAT_MBYTE
6933 /* The text is utf-8 when a byte
6934 * above 127 is found and no
6935 * illegal byte sequence is found.
6936 */
6937 if (*s >= 0x80 && this_utf != FALSE)
6938 {
6939 int l;
6940
6941 this_utf = TRUE;
6942 l = utf_ptr2len(s);
6943 if (l == 1)
6944 this_utf = FALSE;
6945 s += l - 1;
6946 }
6947#endif
6948 ++s;
6949 }
6950#ifdef FEAT_MBYTE
6951 /* The help file is latin1 or utf-8;
6952 * conversion to the current
6953 * 'encoding' may be required. */
6954 vc.vc_type = CONV_NONE;
6955 convert_setup(&vc, (char_u *)(
6956 this_utf == TRUE ? "utf-8"
6957 : "latin1"), p_enc);
6958 if (vc.vc_type == CONV_NONE)
6959 /* No conversion needed. */
6960 cp = IObuff;
6961 else
6962 {
6963 /* Do the conversion. If it fails
6964 * use the unconverted text. */
6965 cp = string_convert(&vc, IObuff,
6966 NULL);
6967 if (cp == NULL)
6968 cp = IObuff;
6969 }
6970 convert_setup(&vc, NULL, NULL);
6971
6972 ml_append(lnum, cp, (colnr_T)0, FALSE);
6973 if (cp != IObuff)
6974 vim_free(cp);
6975#else
6976 ml_append(lnum, IObuff, (colnr_T)0,
6977 FALSE);
6978#endif
6979 ++lnum;
6980 }
6981 fclose(fd);
6982 }
6983 }
6984 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006987 if (mustfree)
6988 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006990 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991 }
6992 }
6993}
6994
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006995/*
6996 * ":exusage"
6997 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006998 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006999ex_exusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007000{
7001 do_cmdline_cmd((char_u *)"help ex-cmd-index");
7002}
7003
7004/*
7005 * ":viusage"
7006 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007007 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007008ex_viusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007009{
7010 do_cmdline_cmd((char_u *)"help normal-index");
7011}
7012
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013/*
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007014 * Generate tags in one help directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007017helptags_one(
7018 char_u *dir, /* doc directory */
7019 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */
7020 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */
7021 int add_help_tags) /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022{
7023 FILE *fd_tags;
7024 FILE *fd;
7025 garray_T ga;
7026 int filecount;
7027 char_u **files;
7028 char_u *p1, *p2;
7029 int fi;
7030 char_u *s;
7031 int i;
7032 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007033 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034# ifdef FEAT_MBYTE
7035 int utf8 = MAYBE;
7036 int this_utf8;
7037 int firstline;
7038 int mix = FALSE; /* detected mixed encodings */
7039# endif
7040
7041 /*
7042 * Find all *.txt files.
7043 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01007044 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007046 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047 STRCAT(NameBuff, ext);
7048 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7049 EW_FILE|EW_SILENT) == FAIL
7050 || filecount == 0)
7051 {
7052 if (!got_int)
7053 EMSG2("E151: No match: %s", NameBuff);
7054 return;
7055 }
7056
7057 /*
7058 * Open the tags file for writing.
7059 * Do this before scanning through all the files.
7060 */
7061 STRCPY(NameBuff, dir);
7062 add_pathsep(NameBuff);
7063 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007064 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 if (fd_tags == NULL)
7066 {
7067 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
7068 FreeWild(filecount, files);
7069 return;
7070 }
7071
7072 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007073 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
7074 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 */
7076 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007077 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
7078 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007079 {
7080 if (ga_grow(&ga, 1) == FAIL)
7081 got_int = TRUE;
7082 else
7083 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007084 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085 if (s == NULL)
7086 got_int = TRUE;
7087 else
7088 {
7089 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
7090 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7091 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092 }
7093 }
7094 }
7095
7096 /*
7097 * Go over all the files and extract the tags.
7098 */
7099 for (fi = 0; fi < filecount && !got_int; ++fi)
7100 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007101 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102 if (fd == NULL)
7103 {
7104 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
7105 continue;
7106 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007107 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108
7109# ifdef FEAT_MBYTE
7110 firstline = TRUE;
7111# endif
7112 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
7113 {
7114# ifdef FEAT_MBYTE
7115 if (firstline)
7116 {
7117 /* Detect utf-8 file by a non-ASCII char in the first line. */
7118 this_utf8 = MAYBE;
7119 for (s = IObuff; *s != NUL; ++s)
7120 if (*s >= 0x80)
7121 {
7122 int l;
7123
7124 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007125 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 if (l == 1)
7127 {
7128 /* Illegal UTF-8 byte sequence. */
7129 this_utf8 = FALSE;
7130 break;
7131 }
7132 s += l - 1;
7133 }
7134 if (this_utf8 == MAYBE) /* only ASCII characters found */
7135 this_utf8 = FALSE;
7136 if (utf8 == MAYBE) /* first file */
7137 utf8 = this_utf8;
7138 else if (utf8 != this_utf8)
7139 {
7140 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
7141 mix = !got_int;
7142 got_int = TRUE;
7143 }
7144 firstline = FALSE;
7145 }
7146# endif
7147 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
7148 while (p1 != NULL)
7149 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02007150 /* Use vim_strbyte() instead of vim_strchr() so that when
7151 * 'encoding' is dbcs it still works, don't find '*' in the
7152 * second byte. */
7153 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
7155 {
7156 for (s = p1 + 1; s < p2; ++s)
7157 if (*s == ' ' || *s == '\t' || *s == '|')
7158 break;
7159
7160 /*
7161 * Only accept a *tag* when it consists of valid
7162 * characters, there is white space before it and is
7163 * followed by a white character or end-of-line.
7164 */
7165 if (s == p2
7166 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
7167 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
7168 || s[1] == '\0'))
7169 {
7170 *p2 = '\0';
7171 ++p1;
7172 if (ga_grow(&ga, 1) == FAIL)
7173 {
7174 got_int = TRUE;
7175 break;
7176 }
7177 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
7178 if (s == NULL)
7179 {
7180 got_int = TRUE;
7181 break;
7182 }
7183 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7184 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007185 sprintf((char *)s, "%s\t%s", p1, fname);
7186
7187 /* find next '*' */
7188 p2 = vim_strchr(p2 + 1, '*');
7189 }
7190 }
7191 p1 = p2;
7192 }
7193 line_breakcheck();
7194 }
7195
7196 fclose(fd);
7197 }
7198
7199 FreeWild(filecount, files);
7200
7201 if (!got_int)
7202 {
7203 /*
7204 * Sort the tags.
7205 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02007206 if (ga.ga_data != NULL)
7207 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007208
7209 /*
7210 * Check for duplicates.
7211 */
7212 for (i = 1; i < ga.ga_len; ++i)
7213 {
7214 p1 = ((char_u **)ga.ga_data)[i - 1];
7215 p2 = ((char_u **)ga.ga_data)[i];
7216 while (*p1 == *p2)
7217 {
7218 if (*p2 == '\t')
7219 {
7220 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007221 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222 _("E154: Duplicate tag \"%s\" in file %s/%s"),
7223 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
7224 EMSG(NameBuff);
7225 *p2 = '\t';
7226 break;
7227 }
7228 ++p1;
7229 ++p2;
7230 }
7231 }
7232
7233# ifdef FEAT_MBYTE
7234 if (utf8 == TRUE)
7235 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
7236# endif
7237
7238 /*
7239 * Write the tags into the file.
7240 */
7241 for (i = 0; i < ga.ga_len; ++i)
7242 {
7243 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00007244 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007245 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00007246 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 else
7248 {
7249 fprintf(fd_tags, "%s\t/*", s);
7250 for (p1 = s; *p1 != '\t'; ++p1)
7251 {
7252 /* insert backslash before '\\' and '/' */
7253 if (*p1 == '\\' || *p1 == '/')
7254 putc('\\', fd_tags);
7255 putc(*p1, fd_tags);
7256 }
7257 fprintf(fd_tags, "*\n");
7258 }
7259 }
7260 }
7261#ifdef FEAT_MBYTE
7262 if (mix)
7263 got_int = FALSE; /* continue with other languages */
7264#endif
7265
7266 for (i = 0; i < ga.ga_len; ++i)
7267 vim_free(((char_u **)ga.ga_data)[i]);
7268 ga_clear(&ga);
7269 fclose(fd_tags); /* there is no check for an error... */
7270}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007271
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007272/*
7273 * Generate tags in one help directory, taking care of translations.
7274 */
7275 static void
7276do_helptags(char_u *dirname, int add_help_tags)
7277{
7278#ifdef FEAT_MULTI_LANG
7279 int len;
7280 int i, j;
7281 garray_T ga;
7282 char_u lang[2];
7283 char_u ext[5];
7284 char_u fname[8];
7285 int filecount;
7286 char_u **files;
7287
7288 /* Get a list of all files in the help directory and in subdirectories. */
7289 STRCPY(NameBuff, dirname);
7290 add_pathsep(NameBuff);
7291 STRCAT(NameBuff, "**");
7292 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7293 EW_FILE|EW_SILENT) == FAIL
7294 || filecount == 0)
7295 {
7296 EMSG2("E151: No match: %s", NameBuff);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007297 return;
7298 }
7299
7300 /* Go over all files in the directory to find out what languages are
7301 * present. */
7302 ga_init2(&ga, 1, 10);
7303 for (i = 0; i < filecount; ++i)
7304 {
7305 len = (int)STRLEN(files[i]);
7306 if (len > 4)
7307 {
7308 if (STRICMP(files[i] + len - 4, ".txt") == 0)
7309 {
7310 /* ".txt" -> language "en" */
7311 lang[0] = 'e';
7312 lang[1] = 'n';
7313 }
7314 else if (files[i][len - 4] == '.'
7315 && ASCII_ISALPHA(files[i][len - 3])
7316 && ASCII_ISALPHA(files[i][len - 2])
7317 && TOLOWER_ASC(files[i][len - 1]) == 'x')
7318 {
7319 /* ".abx" -> language "ab" */
7320 lang[0] = TOLOWER_ASC(files[i][len - 3]);
7321 lang[1] = TOLOWER_ASC(files[i][len - 2]);
7322 }
7323 else
7324 continue;
7325
7326 /* Did we find this language already? */
7327 for (j = 0; j < ga.ga_len; j += 2)
7328 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
7329 break;
7330 if (j == ga.ga_len)
7331 {
7332 /* New language, add it. */
7333 if (ga_grow(&ga, 2) == FAIL)
7334 break;
7335 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
7336 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
7337 }
7338 }
7339 }
7340
7341 /*
7342 * Loop over the found languages to generate a tags file for each one.
7343 */
7344 for (j = 0; j < ga.ga_len; j += 2)
7345 {
7346 STRCPY(fname, "tags-xx");
7347 fname[5] = ((char_u *)ga.ga_data)[j];
7348 fname[6] = ((char_u *)ga.ga_data)[j + 1];
7349 if (fname[5] == 'e' && fname[6] == 'n')
7350 {
7351 /* English is an exception: use ".txt" and "tags". */
7352 fname[4] = NUL;
7353 STRCPY(ext, ".txt");
7354 }
7355 else
7356 {
7357 /* Language "ab" uses ".abx" and "tags-ab". */
7358 STRCPY(ext, ".xxx");
7359 ext[1] = fname[5];
7360 ext[2] = fname[6];
7361 }
7362 helptags_one(dirname, ext, fname, add_help_tags);
7363 }
7364
7365 ga_clear(&ga);
7366 FreeWild(filecount, files);
7367
7368#else
7369 /* No language support, just use "*.txt" and "tags". */
7370 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
7371#endif
7372}
7373
7374 static void
7375helptags_cb(char_u *fname, void *cookie)
7376{
7377 do_helptags(fname, *(int *)cookie);
7378}
7379
7380/*
7381 * ":helptags"
7382 */
7383 void
7384ex_helptags(exarg_T *eap)
7385{
7386 expand_T xpc;
7387 char_u *dirname;
7388 int add_help_tags = FALSE;
7389
7390 /* Check for ":helptags ++t {dir}". */
7391 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3]))
7392 {
7393 add_help_tags = TRUE;
7394 eap->arg = skipwhite(eap->arg + 3);
7395 }
7396
7397 if (STRCMP(eap->arg, "ALL") == 0)
7398 {
7399 do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR,
7400 helptags_cb, &add_help_tags);
7401 }
7402 else
7403 {
7404 ExpandInit(&xpc);
7405 xpc.xp_context = EXPAND_DIRECTORIES;
7406 dirname = ExpandOne(&xpc, eap->arg, NULL,
7407 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
7408 if (dirname == NULL || !mch_isdir(dirname))
7409 EMSG2(_("E150: Not a directory: %s"), eap->arg);
7410 else
7411 do_helptags(dirname, add_help_tags);
7412 vim_free(dirname);
7413 }
7414}
7415
Bram Moolenaar071d4272004-06-13 20:20:40 +00007416#if defined(FEAT_SIGNS) || defined(PROTO)
7417
7418/*
7419 * Struct to hold the sign properties.
7420 */
7421typedef struct sign sign_T;
7422
7423struct sign
7424{
7425 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02007426 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007427 char_u *sn_name; /* name of sign */
7428 char_u *sn_icon; /* name of pixmap */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007429# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007430 void *sn_image; /* icon image */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007431# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007432 char_u *sn_text; /* text used instead of pixmap */
7433 int sn_line_hl; /* highlight ID for line */
7434 int sn_text_hl; /* highlight ID for text */
7435};
7436
Bram Moolenaar071d4272004-06-13 20:20:40 +00007437static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007438static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007439
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01007440static int sign_cmd_idx(char_u *begin_cmd, char_u *end_cmd);
7441static void sign_list_defined(sign_T *sp);
7442static void sign_undefine(sign_T *sp, sign_T *sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007443
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007444static char *cmds[] = {
7445 "define",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007446# define SIGNCMD_DEFINE 0
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007447 "undefine",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007448# define SIGNCMD_UNDEFINE 1
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007449 "list",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007450# define SIGNCMD_LIST 2
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007451 "place",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007452# define SIGNCMD_PLACE 3
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007453 "unplace",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007454# define SIGNCMD_UNPLACE 4
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007455 "jump",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007456# define SIGNCMD_JUMP 5
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007457 NULL
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007458# define SIGNCMD_LAST 6
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007459};
7460
7461/*
7462 * Find index of a ":sign" subcmd from its name.
7463 * "*end_cmd" must be writable.
7464 */
7465 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007466sign_cmd_idx(
7467 char_u *begin_cmd, /* begin of sign subcmd */
7468 char_u *end_cmd) /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007469{
7470 int idx;
7471 char save = *end_cmd;
7472
7473 *end_cmd = NUL;
7474 for (idx = 0; ; ++idx)
7475 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
7476 break;
7477 *end_cmd = save;
7478 return idx;
7479}
7480
Bram Moolenaar071d4272004-06-13 20:20:40 +00007481/*
7482 * ":sign" command
7483 */
7484 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007485ex_sign(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007486{
7487 char_u *arg = eap->arg;
7488 char_u *p;
7489 int idx;
7490 sign_T *sp;
7491 sign_T *sp_prev;
7492 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007493
7494 /* Parse the subcommand. */
7495 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007496 idx = sign_cmd_idx(arg, p);
7497 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007498 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007499 EMSG2(_("E160: Unknown sign command: %s"), arg);
7500 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007501 }
7502 arg = skipwhite(p);
7503
7504 if (idx <= SIGNCMD_LIST)
7505 {
7506 /*
7507 * Define, undefine or list signs.
7508 */
7509 if (idx == SIGNCMD_LIST && *arg == NUL)
7510 {
7511 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007512 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007513 sign_list_defined(sp);
7514 }
7515 else if (*arg == NUL)
7516 EMSG(_("E156: Missing sign name"));
7517 else
7518 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007519 /* Isolate the sign name. If it's a number skip leading zeroes,
7520 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007521 p = skiptowhite(arg);
7522 if (*p != NUL)
7523 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007524 while (arg[0] == '0' && arg[1] != NUL)
7525 ++arg;
7526
Bram Moolenaar071d4272004-06-13 20:20:40 +00007527 sp_prev = NULL;
7528 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7529 {
7530 if (STRCMP(sp->sn_name, arg) == 0)
7531 break;
7532 sp_prev = sp;
7533 }
7534 if (idx == SIGNCMD_DEFINE)
7535 {
7536 /* ":sign define {name} ...": define a sign */
7537 if (sp == NULL)
7538 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007539 sign_T *lp;
7540 int start = next_sign_typenr;
7541
Bram Moolenaar071d4272004-06-13 20:20:40 +00007542 /* Allocate a new sign. */
7543 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7544 if (sp == NULL)
7545 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007546
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007547 /* Check that next_sign_typenr is not already being used.
7548 * This only happens after wrapping around. Hopefully
7549 * another one got deleted and we can use its number. */
7550 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007551 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007552 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007553 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007554 ++next_sign_typenr;
7555 if (next_sign_typenr == MAX_TYPENR)
7556 next_sign_typenr = 1;
7557 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007559 vim_free(sp);
7560 EMSG(_("E612: Too many signs defined"));
7561 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007562 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007563 lp = first_sign; /* start all over */
7564 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007565 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007566 lp = lp->sn_next;
7567 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007568
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007569 sp->sn_typenr = next_sign_typenr;
7570 if (++next_sign_typenr == MAX_TYPENR)
7571 next_sign_typenr = 1; /* wrap around */
7572
7573 sp->sn_name = vim_strsave(arg);
7574 if (sp->sn_name == NULL) /* out of memory */
7575 {
7576 vim_free(sp);
7577 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007578 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007579
7580 /* add the new sign to the list of signs */
7581 if (sp_prev == NULL)
7582 first_sign = sp;
7583 else
7584 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007585 }
7586
7587 /* set values for a defined sign. */
7588 for (;;)
7589 {
7590 arg = skipwhite(p);
7591 if (*arg == NUL)
7592 break;
7593 p = skiptowhite_esc(arg);
7594 if (STRNCMP(arg, "icon=", 5) == 0)
7595 {
7596 arg += 5;
7597 vim_free(sp->sn_icon);
7598 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7599 backslash_halve(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007600# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007601 if (gui.in_use)
7602 {
7603 out_flush();
7604 if (sp->sn_image != NULL)
7605 gui_mch_destroy_sign(sp->sn_image);
7606 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7607 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007608# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007609 }
7610 else if (STRNCMP(arg, "text=", 5) == 0)
7611 {
7612 char_u *s;
7613 int cells;
7614 int len;
7615
7616 arg += 5;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007617# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007618 /* Count cells and check for non-printable chars */
7619 if (has_mbyte)
7620 {
7621 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007622 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007623 {
7624 if (!vim_isprintc((*mb_ptr2char)(s)))
7625 break;
7626 cells += (*mb_ptr2cells)(s);
7627 }
7628 }
7629 else
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007630# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007631 {
7632 for (s = arg; s < p; ++s)
7633 if (!vim_isprintc(*s))
7634 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007635 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007636 }
7637 /* Currently must be one or two display cells */
7638 if (s != p || cells < 1 || cells > 2)
7639 {
7640 *p = NUL;
7641 EMSG2(_("E239: Invalid sign text: %s"), arg);
7642 return;
7643 }
7644
7645 vim_free(sp->sn_text);
7646 /* Allocate one byte more if we need to pad up
7647 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007648 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007649 sp->sn_text = vim_strnsave(arg, len);
7650
7651 if (sp->sn_text != NULL && cells == 1)
7652 STRCPY(sp->sn_text + len - 1, " ");
7653 }
7654 else if (STRNCMP(arg, "linehl=", 7) == 0)
7655 {
7656 arg += 7;
7657 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7658 }
7659 else if (STRNCMP(arg, "texthl=", 7) == 0)
7660 {
7661 arg += 7;
7662 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7663 }
7664 else
7665 {
7666 EMSG2(_(e_invarg2), arg);
7667 return;
7668 }
7669 }
7670 }
7671 else if (sp == NULL)
7672 EMSG2(_("E155: Unknown sign: %s"), arg);
7673 else if (idx == SIGNCMD_LIST)
7674 /* ":sign list {name}" */
7675 sign_list_defined(sp);
7676 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007677 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007678 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007679 }
7680 }
7681 else
7682 {
7683 int id = -1;
7684 linenr_T lnum = -1;
7685 char_u *sign_name = NULL;
7686 char_u *arg1;
7687
7688 if (*arg == NUL)
7689 {
7690 if (idx == SIGNCMD_PLACE)
7691 {
7692 /* ":sign place": list placed signs in all buffers */
7693 sign_list_placed(NULL);
7694 }
7695 else if (idx == SIGNCMD_UNPLACE)
7696 {
7697 /* ":sign unplace": remove placed sign at cursor */
7698 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7699 if (id > 0)
7700 {
7701 buf_delsign(curwin->w_buffer, id);
7702 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7703 }
7704 else
7705 EMSG(_("E159: Missing sign number"));
7706 }
7707 else
7708 EMSG(_(e_argreq));
7709 return;
7710 }
7711
7712 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7713 {
7714 /* ":sign unplace *": remove all placed signs */
7715 buf_delete_all_signs();
7716 return;
7717 }
7718
7719 /* first arg could be placed sign id */
7720 arg1 = arg;
7721 if (VIM_ISDIGIT(*arg))
7722 {
7723 id = getdigits(&arg);
7724 if (!vim_iswhite(*arg) && *arg != NUL)
7725 {
7726 id = -1;
7727 arg = arg1;
7728 }
7729 else
7730 {
7731 arg = skipwhite(arg);
7732 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7733 {
7734 /* ":sign unplace {id}": remove placed sign by number */
7735 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
7736 if ((lnum = buf_delsign(buf, id)) != 0)
7737 update_debug_sign(buf, lnum);
7738 return;
7739 }
7740 }
7741 }
7742
7743 /*
7744 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7745 * Leave "arg" pointing to {fname}.
7746 */
7747 for (;;)
7748 {
7749 if (STRNCMP(arg, "line=", 5) == 0)
7750 {
7751 arg += 5;
7752 lnum = atoi((char *)arg);
7753 arg = skiptowhite(arg);
7754 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007755 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7756 {
7757 if (id != -1)
7758 {
7759 EMSG(_(e_invarg));
7760 return;
7761 }
7762 id = -2;
7763 arg = skiptowhite(arg + 1);
7764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007765 else if (STRNCMP(arg, "name=", 5) == 0)
7766 {
7767 arg += 5;
7768 sign_name = arg;
7769 arg = skiptowhite(arg);
7770 if (*arg != NUL)
7771 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007772 while (sign_name[0] == '0' && sign_name[1] != NUL)
7773 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007774 }
7775 else if (STRNCMP(arg, "file=", 5) == 0)
7776 {
7777 arg += 5;
7778 buf = buflist_findname(arg);
7779 break;
7780 }
7781 else if (STRNCMP(arg, "buffer=", 7) == 0)
7782 {
7783 arg += 7;
7784 buf = buflist_findnr((int)getdigits(&arg));
7785 if (*skipwhite(arg) != NUL)
7786 EMSG(_(e_trailing));
7787 break;
7788 }
7789 else
7790 {
7791 EMSG(_(e_invarg));
7792 return;
7793 }
7794 arg = skipwhite(arg);
7795 }
7796
7797 if (buf == NULL)
7798 {
7799 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7800 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007801 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007802 {
7803 if (lnum >= 0 || sign_name != NULL)
7804 EMSG(_(e_invarg));
7805 else
7806 /* ":sign place file={fname}": list placed signs in one file */
7807 sign_list_placed(buf);
7808 }
7809 else if (idx == SIGNCMD_JUMP)
7810 {
7811 /* ":sign jump {id} file={fname}" */
7812 if (lnum >= 0 || sign_name != NULL)
7813 EMSG(_(e_invarg));
7814 else if ((lnum = buf_findsign(buf, id)) > 0)
7815 { /* goto a sign ... */
7816 if (buf_jump_open_win(buf) != NULL)
7817 { /* ... in a current window */
7818 curwin->w_cursor.lnum = lnum;
7819 check_cursor_lnum();
7820 beginline(BL_WHITE);
7821 }
7822 else
7823 { /* ... not currently in a window */
7824 char_u *cmd;
7825
7826 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7827 if (cmd == NULL)
7828 return;
7829 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7830 do_cmdline_cmd(cmd);
7831 vim_free(cmd);
7832 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007833# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00007834 foldOpenCursor();
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007835# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007836 }
7837 else
7838 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7839 }
7840 else if (idx == SIGNCMD_UNPLACE)
7841 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007842 if (lnum >= 0 || sign_name != NULL)
7843 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007844 else if (id == -2)
7845 {
7846 /* ":sign unplace * file={fname}" */
7847 redraw_buf_later(buf, NOT_VALID);
7848 buf_delete_signs(buf);
7849 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007850 else
7851 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007852 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007853 lnum = buf_delsign(buf, id);
7854 update_debug_sign(buf, lnum);
7855 }
7856 }
7857 /* idx == SIGNCMD_PLACE */
7858 else if (sign_name != NULL)
7859 {
7860 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7861 if (STRCMP(sp->sn_name, sign_name) == 0)
7862 break;
7863 if (sp == NULL)
7864 {
7865 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7866 return;
7867 }
7868 if (lnum > 0)
7869 /* ":sign place {id} line={lnum} name={name} file={fname}":
7870 * place a sign */
7871 buf_addsign(buf, id, lnum, sp->sn_typenr);
7872 else
7873 /* ":sign place {id} file={fname}": change sign type */
7874 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02007875 if (lnum > 0)
7876 update_debug_sign(buf, lnum);
7877 else
7878 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007879 }
7880 else
7881 EMSG(_(e_invarg));
7882 }
7883}
7884
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007885# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007886/*
7887 * Allocate the icons. Called when the GUI has started. Allows defining
7888 * signs before it starts.
7889 */
7890 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007891sign_gui_started(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007892{
7893 sign_T *sp;
7894
7895 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7896 if (sp->sn_icon != NULL)
7897 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7898}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007899# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007900
7901/*
7902 * List one sign.
7903 */
7904 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007905sign_list_defined(sign_T *sp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007906{
7907 char_u *p;
7908
Bram Moolenaar555b2802005-05-19 21:08:39 +00007909 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007910 if (sp->sn_icon != NULL)
7911 {
7912 MSG_PUTS(" icon=");
7913 msg_outtrans(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007914# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007915 if (sp->sn_image == NULL)
7916 MSG_PUTS(_(" (NOT FOUND)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007917# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007918 MSG_PUTS(_(" (not supported)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007919# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007920 }
7921 if (sp->sn_text != NULL)
7922 {
7923 MSG_PUTS(" text=");
7924 msg_outtrans(sp->sn_text);
7925 }
7926 if (sp->sn_line_hl > 0)
7927 {
7928 MSG_PUTS(" linehl=");
7929 p = get_highlight_name(NULL, sp->sn_line_hl - 1);
7930 if (p == NULL)
7931 MSG_PUTS("NONE");
7932 else
7933 msg_puts(p);
7934 }
7935 if (sp->sn_text_hl > 0)
7936 {
7937 MSG_PUTS(" texthl=");
7938 p = get_highlight_name(NULL, sp->sn_text_hl - 1);
7939 if (p == NULL)
7940 MSG_PUTS("NONE");
7941 else
7942 msg_puts(p);
7943 }
7944}
7945
7946/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007947 * Undefine a sign and free its memory.
7948 */
7949 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007950sign_undefine(sign_T *sp, sign_T *sp_prev)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007951{
7952 vim_free(sp->sn_name);
7953 vim_free(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007954# ifdef FEAT_SIGN_ICONS
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007955 if (sp->sn_image != NULL)
7956 {
7957 out_flush();
7958 gui_mch_destroy_sign(sp->sn_image);
7959 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007960# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007961 vim_free(sp->sn_text);
7962 if (sp_prev == NULL)
7963 first_sign = sp->sn_next;
7964 else
7965 sp_prev->sn_next = sp->sn_next;
7966 vim_free(sp);
7967}
7968
7969/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007970 * Get highlighting attribute for sign "typenr".
7971 * If "line" is TRUE: line highl, if FALSE: text highl.
7972 */
7973 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007974sign_get_attr(int typenr, int line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007975{
7976 sign_T *sp;
7977
7978 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7979 if (sp->sn_typenr == typenr)
7980 {
7981 if (line)
7982 {
7983 if (sp->sn_line_hl > 0)
7984 return syn_id2attr(sp->sn_line_hl);
7985 }
7986 else
7987 {
7988 if (sp->sn_text_hl > 0)
7989 return syn_id2attr(sp->sn_text_hl);
7990 }
7991 break;
7992 }
7993 return 0;
7994}
7995
7996/*
7997 * Get text mark for sign "typenr".
7998 * Returns NULL if there isn't one.
7999 */
8000 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008001sign_get_text(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008002{
8003 sign_T *sp;
8004
8005 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8006 if (sp->sn_typenr == typenr)
8007 return sp->sn_text;
8008 return NULL;
8009}
8010
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008011# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008012 void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008013sign_get_image(
8014 int typenr) /* the attribute which may have a sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008015{
8016 sign_T *sp;
8017
8018 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8019 if (sp->sn_typenr == typenr)
8020 return sp->sn_image;
8021 return NULL;
8022}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008023# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008024
8025/*
8026 * Get the name of a sign by its typenr.
8027 */
8028 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008029sign_typenr2name(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008030{
8031 sign_T *sp;
8032
8033 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8034 if (sp->sn_typenr == typenr)
8035 return sp->sn_name;
8036 return (char_u *)_("[Deleted]");
8037}
8038
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008039# if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008040/*
8041 * Undefine/free all signs.
8042 */
8043 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008044free_signs(void)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008045{
8046 while (first_sign != NULL)
8047 sign_undefine(first_sign, NULL);
8048}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008049# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00008050
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008051# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008052static enum
8053{
8054 EXP_SUBCMD, /* expand :sign sub-commands */
8055 EXP_DEFINE, /* expand :sign define {name} args */
8056 EXP_PLACE, /* expand :sign place {id} args */
8057 EXP_UNPLACE, /* expand :sign unplace" */
8058 EXP_SIGN_NAMES /* expand with name of placed signs */
8059} expand_what;
8060
8061/*
8062 * Function given to ExpandGeneric() to obtain the sign command
8063 * expansion.
8064 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008065 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008066get_sign_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008067{
8068 sign_T *sp;
8069 int current_idx;
8070
8071 switch (expand_what)
8072 {
8073 case EXP_SUBCMD:
8074 return (char_u *)cmds[idx];
8075 case EXP_DEFINE:
8076 {
8077 char *define_arg[] =
8078 {
8079 "icon=", "linehl=", "text=", "texthl=", NULL
8080 };
8081 return (char_u *)define_arg[idx];
8082 }
8083 case EXP_PLACE:
8084 {
8085 char *place_arg[] =
8086 {
8087 "line=", "name=", "file=", "buffer=", NULL
8088 };
8089 return (char_u *)place_arg[idx];
8090 }
8091 case EXP_UNPLACE:
8092 {
8093 char *unplace_arg[] = { "file=", "buffer=", NULL };
8094 return (char_u *)unplace_arg[idx];
8095 }
8096 case EXP_SIGN_NAMES:
8097 /* Complete with name of signs already defined */
8098 current_idx = 0;
8099 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8100 if (current_idx++ == idx)
8101 return sp->sn_name;
8102 return NULL;
8103 default:
8104 return NULL;
8105 }
8106}
8107
8108/*
8109 * Handle command line completion for :sign command.
8110 */
8111 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008112set_context_in_sign_cmd(expand_T *xp, char_u *arg)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008113{
8114 char_u *p;
8115 char_u *end_subcmd;
8116 char_u *last;
8117 int cmd_idx;
8118 char_u *begin_subcmd_args;
8119
8120 /* Default: expand subcommands. */
8121 xp->xp_context = EXPAND_SIGN;
8122 expand_what = EXP_SUBCMD;
8123 xp->xp_pattern = arg;
8124
8125 end_subcmd = skiptowhite(arg);
8126 if (*end_subcmd == NUL)
8127 /* expand subcmd name
8128 * :sign {subcmd}<CTRL-D>*/
8129 return;
8130
8131 cmd_idx = sign_cmd_idx(arg, end_subcmd);
8132
8133 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008134 * |
8135 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008136 begin_subcmd_args = skipwhite(end_subcmd);
8137 p = skiptowhite(begin_subcmd_args);
8138 if (*p == NUL)
8139 {
8140 /*
8141 * Expand first argument of subcmd when possible.
8142 * For ":jump {id}" and ":unplace {id}", we could
8143 * possibly expand the ids of all signs already placed.
8144 */
8145 xp->xp_pattern = begin_subcmd_args;
8146 switch (cmd_idx)
8147 {
8148 case SIGNCMD_LIST:
8149 case SIGNCMD_UNDEFINE:
8150 /* :sign list <CTRL-D>
8151 * :sign undefine <CTRL-D> */
8152 expand_what = EXP_SIGN_NAMES;
8153 break;
8154 default:
8155 xp->xp_context = EXPAND_NOTHING;
8156 }
8157 return;
8158 }
8159
8160 /* expand last argument of subcmd */
8161
8162 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008163 * |
8164 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008165
8166 /* Loop until reaching last argument. */
8167 do
8168 {
8169 p = skipwhite(p);
8170 last = p;
8171 p = skiptowhite(p);
8172 } while (*p != NUL);
8173
8174 p = vim_strchr(last, '=');
8175
8176 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008177 * | |
8178 * last p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008179 if (p == NUL)
8180 {
8181 /* Expand last argument name (before equal sign). */
8182 xp->xp_pattern = last;
8183 switch (cmd_idx)
8184 {
8185 case SIGNCMD_DEFINE:
8186 expand_what = EXP_DEFINE;
8187 break;
8188 case SIGNCMD_PLACE:
8189 expand_what = EXP_PLACE;
8190 break;
8191 case SIGNCMD_JUMP:
8192 case SIGNCMD_UNPLACE:
8193 expand_what = EXP_UNPLACE;
8194 break;
8195 default:
8196 xp->xp_context = EXPAND_NOTHING;
8197 }
8198 }
8199 else
8200 {
8201 /* Expand last argument value (after equal sign). */
8202 xp->xp_pattern = p + 1;
8203 switch (cmd_idx)
8204 {
8205 case SIGNCMD_DEFINE:
8206 if (STRNCMP(last, "texthl", p - last) == 0 ||
8207 STRNCMP(last, "linehl", p - last) == 0)
8208 xp->xp_context = EXPAND_HIGHLIGHT;
8209 else if (STRNCMP(last, "icon", p - last) == 0)
8210 xp->xp_context = EXPAND_FILES;
8211 else
8212 xp->xp_context = EXPAND_NOTHING;
8213 break;
8214 case SIGNCMD_PLACE:
8215 if (STRNCMP(last, "name", p - last) == 0)
8216 expand_what = EXP_SIGN_NAMES;
8217 else
8218 xp->xp_context = EXPAND_NOTHING;
8219 break;
8220 default:
8221 xp->xp_context = EXPAND_NOTHING;
8222 }
8223 }
8224}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008225# endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008226#endif
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008227
8228/*
8229 * Make the user happy.
8230 */
8231 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008232ex_smile(exarg_T *eap UNUSED)
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008233{
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008234 static char *code[] = {
8235 "\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$",
8236 "\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"
8237 };
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008238 char *p;
8239 int n;
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008240 int i;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008241
8242 msg_start();
8243 msg_putchar('\n');
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008244 for (i = 0; i < 2; ++i)
8245 for (p = code[i]; *p != NUL; ++p)
8246 if (*p == 'x')
8247 msg_putchar('\n');
8248 else
8249 for (n = *p++; n > 0; --n)
8250 if (*p == 'o' || *p == '$')
8251 msg_putchar_attr(*p, hl_attr(HLF_L));
8252 else
8253 msg_putchar(*p);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008254 msg_clr_eos();
8255}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008256
8257#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO)
8258/*
8259 * ":drop"
8260 * Opens the first argument in a window. When there are two or more arguments
8261 * the argument list is redefined.
8262 */
8263 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008264ex_drop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008265{
8266 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008267 win_T *wp;
8268 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008269# ifdef FEAT_WINDOWS
8270 tabpage_T *tp;
8271# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008272
8273 /*
8274 * Check if the first argument is already being edited in a window. If
8275 * so, jump to that window.
8276 * We would actually need to check all arguments, but that's complicated
8277 * and mostly only one file is dropped.
8278 * This also ignores wildcards, since it is very unlikely the user is
8279 * editing a file name with a wildcard character.
8280 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008281 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008282
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00008283 /*
8284 * Expanding wildcards may result in an empty argument list. E.g. when
8285 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
8286 * already did an error message for this.
8287 */
8288 if (ARGCOUNT == 0)
8289 return;
8290
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008291# ifdef FEAT_WINDOWS
8292 if (cmdmod.tab)
8293 {
8294 /* ":tab drop file ...": open a tab for each argument that isn't
8295 * edited in a window yet. It's like ":tab all" but without closing
8296 * windows or tabs. */
8297 ex_all(eap);
8298 }
8299 else
8300# endif
8301 {
8302 /* ":drop file ...": Edit the first argument. Jump to an existing
8303 * window if possible, edit in current window if the current buffer
8304 * can be abandoned, otherwise open a new window. */
8305 buf = buflist_findnr(ARGLIST[0].ae_fnum);
8306
8307 FOR_ALL_TAB_WINDOWS(tp, wp)
8308 {
8309 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008310 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008311# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00008312 goto_tabpage_win(tp, wp);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008313# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008314 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008315 return;
8316 }
8317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008318
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008319 /*
8320 * Check whether the current buffer is changed. If so, we will need
8321 * to split the current window or data could be lost.
8322 * Skip the check if the 'hidden' option is set, as in this case the
8323 * buffer won't be lost.
8324 */
8325 if (!P_HID(curbuf))
8326 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008327# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008328 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008329# endif
Bram Moolenaar45d3b142013-11-09 03:31:51 +01008330 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008331# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008332 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008333# else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008334 if (split)
8335 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008336# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008338
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008339 /* Fake a ":sfirst" or ":first" command edit the first argument. */
8340 if (split)
8341 {
8342 eap->cmdidx = CMD_sfirst;
8343 eap->cmd[0] = 's';
8344 }
8345 else
8346 eap->cmdidx = CMD_first;
8347 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008348 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008349}
8350#endif